iOS reverse some simple commands

Mac System:

  • ps
    Process status display, CPU usage, memory usage
  • netstat
    Display network connections, routing tables, interface status, etc.
  • ifconfig
    View Network Configuration
  • sudo tcpdump
    Network packet capture analysis
  • lsof
    List files that the current system is open, do not forget everything is a file, including network connectivity, hardware, etc.

iOS Development:

  • otool -ov 二进制文件
    It will output the Objective-C class structures and their defined methods.
  • nm 二进制文
    Symbol table
  • strings - -a -arch armv7 "xxx" | grep StopAuth
    You need to cd to xxx.app path, then execute these commands, xxx is the binary file name, StopAuth for the content to be queried
  • strings - -a -arch armv7 "lcx" > test.txt
    Above, the result is introduced into the test.txt file
  • security cms -D -i xxx.mobileprovision
    .mobileprovision tools such as sublime and so is not open, you can see through the shell command.

Guess you like

Origin www.cnblogs.com/qiyer/p/12568548.html