转:http://blog.csdn.net/yiyaaixuexi/article/details/8288077
Hack必备的命令与工具
你的应用正在被其他对手反向工程、跟踪和操作!你的应用是否依旧裸奔豪不防御?
郑重声明一下,懂得如何攻击才会懂得如何防御,一切都是为了之后的防御作准备。废话少说,进入正题。
今天总结一下为hack而做的准备工作。
ps ——显示进程状态,CPU使用率,内存使用情况等
sysctl ——检查设定Kernel配置
netstat ——显示网络连接,路由表,接口状态等
route ——路由修改
renice ——调整程序运行的优先级
ifconfig ——查看网络配置
tcpdump ——截获分析网络数据包
lsof ——列出当前系统打开的文件列表,别忘记一切皆文件,包括网络连接、硬件等
otool ① ——查看程序依赖哪些动态库信息,反编代码段……等等等等
nm ② ——显示符号表
ldid ③ ——签名工具
gdb ——调试工具
patch ——补丁工具
SSH ——远程控制
otool -L WQAlbum
可以得到:
WQAlbum:
/System/Library/Frameworks/StoreKit.framework/StoreKit (compatibility version 1.0.0, current version 1.0.0)
/System/Library/Frameworks/AdSupport.framework/AdSupport (compatibility version 1.0.0, current version 1.0.0)
/usr/lib/libz.1.dylib (compatibility version 1.0.0, current version 1.2.5)
/System/Library/Frameworks//MediaPlayer.framework/MediaPlayer (compatibility version 1.0.0, current version 1.0.0)
/System/Library/Frameworks/MobileCoreServices.framework/MobileCoreServices (compatibility version 1.0.0, current version 40.0.0)
/System/Library/Frameworks/CoreMedia.framework/CoreMedia (compatibility version 1.0.0, current version 1.0.0)
……
可以反编译WQAlbum的__TEXT__段内容, 截前10行:
otool -tV WQAlbum |head -n 10
可以得到:
WQAlbum:
(__TEXT,__text) section
start:
00002de0 pushl $0x00
00002de2 movl %esp,%ebp
00002de4 andl $0xf0,%esp
00002de7 subl $0x10,%esp
00002dea movl 0x04(%ebp),%ebx
……
nm -g WQAlbum ( -g 代表 global)
可以得到:
001e5eec S _OBJC_IVAR_$_WQPhotoViewController.albumObject
001e5efc S _OBJC_IVAR_$_WQPhotoViewController.int_current
001e5f00 S _OBJC_IVAR_$_WQPhotoViewController.int_total
其中,WQPhotoViewController为类名,albumObject为该类的成员
arm-apple-darwin10-llvm-gcc-4.2 就是了。
为了方便起见,可以在.bashrc或者profile 配置下环境变量,方便编译。
编译我们自己的程序的时候需要指定该目录下的SDK。
其中 -isysroot用来指定build时的SDK
file查看一下类型,没问题。
前提是,设备已经越狱并且安装了SSH,且必须在同一网段。
$scp helloworld [email protected]:hello world
$ssh -l root x.x.x.x
#ldid -S helloworld
#./helloworld
Hello world !!!
运行成功,这就完成了最简单的手动执行自己的应用程序。
评论的关注点:
1.
PS:Xcode 5.1 + iPhone 5S
编译的时候使用的是 clang -o helloworld -arch arm64 helloworld.c -isysroot /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS7.1.sdk
估计其他设备要更换一下arch后面的平台代码~
2.
xcode 6:
xcrun -sdk iphoneos clang -arch armv7 -o hello.bin hello.c
3.
我的是iPod Touch 4,iOS 6.1.3,但是lsof命令出现错误:
lsof: PID 4709 information error: Cannot allocate memory
lsof: PID 4695 information error: Cannot allocate memory
lsof: PID 4693 information error: Cannot allocate memory
lsof: PID 4691 information error: Cannot allocate memory
lsof: PID 4688 information error: Cannot allocate memory
......
最终找到解决办法:http://stackoverflow.com/a/23123947/1548523