请教个mac osx 上反调试问题
最近要分析一个mac 上程序,有反调试,lldb r 的时候出错code:Process 8806 exited with status = 222 (0x000000ce) 自己看了网上的一些反调试手段,还没有解决。程序是加了 vmp 的壳
View ArticleSBSLaunchApplicationWithIdentifier 不能在Daemon打开吗?
原先之前有使用cydia的插件open 去打开一个app,是可以实现的,但是每次安装deb的时候就得先安装open,也挺麻烦的,现在想直接在daemon打开app,但是一直报 SBSLaunchApplicationWithIdentifier 没有定义:Undefined symbols for architecture armv7:...
View ArticleSBSLaunchApplicationWithIdentifier 不能在Daemon打开吗?
通过dlopen 解决了这问题了~ 想不通为何 .m的文件 执行SBSLaunchApplicationWithIdentifier 可以编译通过,.mm的文件去执行的情况编译就不能通过!!
View ArticleEcdh 如何通过另1方传过来的公钥来生成共享密钥?
如题,在openssl中 ECDH_compute_key方法可以生成共享密钥,但pub_key参数是1个EC_POINT的结构体,要如何把另1方传过来的字符串公钥,通过这个方法生成共享密钥?int ECDH_compute_key(void *out, size_t outlen, const EC_POINT *pub_key, EC_KEY *ecdh, void (KDF) (const...
View ArticleEcdh 如何通过另1方传过来的公钥来生成共享密钥?
咦官网不是有Demo吗,虽然我个人没玩过ECDH啦https://wiki.openssl.org/index.php/Elliptic_Curve_Diffie_Hellman
View ArticleEcdh 如何通过另1方传过来的公钥来生成共享密钥?
你是说ecdh_low方法里面的代码么?它没有写从另1方传过来的字符串公钥,转换成EC_POINT结构的代码。 我在另1篇文章中找到了,但也是有问题的代码。。。。 http://bbs.csdn.net/topics/360001596
View ArticleSBSLaunchApplicationWithIdentifier 不能在Daemon打开吗?
我猜:你在.m里,定义的是extern void SBSLaunchApplicationWithIdentifier(__CFString const*, unsigned char)对吧?
View ArticleSBSLaunchApplicationWithIdentifier 不能在Daemon打开吗?
不是的。 .m文件的定义是 #ifndef SPRINGBOARDSERVICES_H_ extern int SBSLaunchApplicationWithIdentifier(CFStringRef identifier, Boolean suspended); extern CFStringRef SBSApplicationLaunchingErrorString(int error);...
View ArticleSBSLaunchApplicationWithIdentifier 不能在Daemon打开吗?
在.mm里,改成: #ifndef SPRINGBOARDSERVICES_H_ extern "C" int SBSLaunchApplicationWithIdentifier(CFStringRef identifier, Boolean suspended); extern "C" CFStringRef SBSApplicationLaunchingErrorString(int...
View ArticleSBSLaunchApplicationWithIdentifier 不能在Daemon打开吗?
嗯 好的! 谢谢! 还有一个问题,就是daemon 为写入plist 是可以的,tweak 写入不成功!是权限不足吧,只能通过与daemon通信才能写入到plist文件吗?
View ArticleAPP开Siri接口的怎么读取?
RT,如“发微博说我是汉几”,是微博新鲜事的接口,“给XX发短信”,短信的接口。。 查了下资料 似乎是用URL SCHEME,有办法看得到吗?(不是看URL SCHEME,是操作的SCHEME URL)
View Article'_Prefix/NullabilityCompat.h' file not found
小弟新学,安装Theos后,第一个demo,make时出错,提示如下,我是少装了什么东西吗,找不到NullabilityCompat.h文件呢? ==> Preprocessing Tweak.xm…==> Compiling Tweak.xm (armv7)…In file included from :349:In file included from...
View Article