继续浏览精彩内容
慕课网APP
程序员的梦工厂
打开
继续
感谢您的支持,我会继续努力的
赞赏金额会直接到老师账户
将二维码发送给自己后长按识别
微信支付
支付宝支付

Frida WIFI连接

逆向工程sudolong
关注TA
已关注
手记 2
粉丝 0
获赞 0

0x00 备注

我们经常用旧的手机来做越狱和调试, 这个usb连接真的是差强人意, 老是关键时刻掉线

0x01 iPhone ssh运行:

frida-server -l 0.0.0.0

0x02 MacOS 中运行 :

frida-ps -H 192.168.111.120

0x03 执行frida操作

frida-trace -H 192.168.1.3:1337 -i "open*"

记得加上-H IP:Port

# listen on 127.0.0.1:27042 (the default)
$ frida-server

# listen on all interfaces
$ frida-server -l 0.0.0.0

# listen on a specific interface
$ frida-server -l 192.168.1.3

# listen on a specific interface and port
$ frida-server -l 192.168.1.3:1337

# connect to specific IP
$ frida-trace -H 192.168.1.3 -i "open*"

# connect to specific IP/port
$ frida-trace -H 192.168.1.3:1337 -i "open*"
打开App,阅读手记
0人推荐
发表评论
随时随地看视频慕课网APP