iOS一些简单的逆向命令

Mac系统:

  • ps
    显示进程状态,CPU使用率,内存使用情况
  • netstat
    显示网络连接,路由表,接口状态等
  • ifconfig
    查看网络配置
  • sudo tcpdump
    截获分析网络数据包
  • lsof
    列出当前系统打开的文件列表,别忘记一切皆文件,包括网络连接、硬件等

iOS开发:

  • otool -ov 二进制文件
    It will output the Objective-C class structures and their defined methods.
  • nm 二进制文
    显示符号表
  • strings - -a -arch armv7 "xxx" | grep StopAuth
    需要先cd 到 xxx.app路径下,再执行上述命令,xxx为二进制文件名称,StopAuth为要查询的内容
  • strings - -a -arch armv7 "lcx" > test.txt
    同上,将结果导入到test.txt文件内
  • security cms -D -i xxx.mobileprovision
    .mobileprovision 用诸如sublime 等工具是无法打开,可以通过shell命令查看。

猜你喜欢

转载自www.cnblogs.com/qiyer/p/12568548.html
今日推荐