Help hook Message app
I haven't any problem for the user interaction with ballon, my problem is only to grab text
View ArticleHelp hook Message app
Mind sharing your code? gist.github.com would do. And PM me the address so your code would be keep secret. I'll try my best to help you but I can't promise : (
View ArticleHelp hook Message app
This is my code now: %hook CKTranscriptCollectionViewController - (NSArray *)menuItemsForBalloonView:(id)view { NSMutableArray *menuItems = [%orig mutableCopy]; NSString *title =...
View ArticleHelp hook Message app
dyldCache is broken and I don't have a JB device. The rest solution are based experience of dealing with similar situations. if CKTranscriptCollectionViewController is CKBalloonTextView's...
View ArticleHelp hook Message app
%hook CKBalloonTextView- (NSString*)attributedText{ id ret=%orig;NSLog(@"Text:%@ ",ret);return ret;} %end
View ArticleHelp hook Message app
The result: : Text:SMS test!{ NSColor = "UIDeviceWhiteColorSpace 0 1"; NSFont = " font-family: \".HelveticaNeueInterface-Regular\"; font-weight: normal; font-style: normal; font-size: 17.00pt"; } but...
View ArticleHelp hook Message app
%hook CKTranscriptCollectionViewController (NSArray *)menuItemsForBalloonView:(id)view { NSMutableArray *menuItems = [%orig mutableCopy]; NSString *title = @"Like"[objectAtIndex:0]]; UIMenuItem *like...
View ArticleHelp hook Message app
oh shit I forgot that was ViewController hook.You need to find the proper property of the ViewController containing the views. Try Hopper Disassembler and see XREFs : )
View Article非越狱环境下自动抢红包的实现原理
其实不难,步骤如下:1.生成一个dylib,抢红包的Hook代码Github上早就有了,不过是Tweak的,但是没关系,方法都是一样的。2.将微信APP敲壳注入dylib3.对dylib和微信app重新签名4.打包成IPA安装
View Article如何识别CFNetwork是否hook成功
我使用如下代码,成功在手机上安装了插件.但是不知道是否运行有效。想到过要查看syslog文件,但是使用openSSH + syslogd 能时时查看嘛,不知道思路对不对。现在就是想验证这个hook是否有效运行。希望大家提供几个思路。谢谢大家! 后期是想实现监听网络通信,并能在网页上时时现实,好像是用CocoaHTTPServer 和WebSocketServer神马的可以实现,目前正在研究...
View Article如何识别CFNetwork是否hook成功
假设你编译的dylib名为ABC.dylib;那么ssh到iOS中并输入:grep ABC.dylib /var/log/syslog如果有形如 MS:Notice: Loading: /Library/MobileSubstrate/DynamicLibraries/ABC.dylib 的字样出现,则说明dylib被加载了; 把你的NSLog(@"sss")改成NSLog(@"comtex:...
View ArticleHow to use usbmuxd and ssh to copy file?
We know that we can use these commends to copy file with the SSH.~scp /path/to/localFile user@iOSIP:/path/to/remoteFile~scp user@iOSIP:/path/to/remoteFile /path/to/localFileBut how can I copy file...
View ArticleiOS 8.1.3上无法获取SBApplicationController这个类
你这个类应该在/System/Library/CoreServices/SpringBoard.app/SpringBoard里吧
View Article