逆向工程读后感

常用命令

plutil

查看头文件

  • cd ...SMSNinja.app
  • plutil -p Info.plist | grep CFBundleExecutable//查看执行文件名字
  • class-dump -S -s -H JTagView -o path
    其中“JTagView”为执行文件名字,path为要导出的文件路径.
    class-dump --help 查看更多命令

    where options are:
    -a show instance variable offsets
    -A show implementation addresses
    --arch choose a specific architecture from a universal binary (ppc, ppc64, i386, x86_64, armv6, armv7, armv7s, arm64)
    -C only display classes matching regular expression
    -f find string in method name
    -H generate header files in current directory, or directory specified with -o
    -I sort classes, categories, and protocols by inheritance (overrides -s)
    -o
    output directory used for -H
    -r recursively expand frameworks and fixed VM shared libraries
    -s sort classes and categories by name
    -S sort methods by name
    -t suppress header in output, for testing
    --list-arches list the arches in the file, then exit
    --sdk-ios specify iOS SDK version (will look in /Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS.sdk
    --sdk-mac specify Mac OS X version (will look in /Developer/SDKs/MacOSX.sdk
    --sdk-root specify the full SDK root path (or use --sdk-ios/--sdk-mac for a shortcut)

你可能感兴趣的:(逆向工程读后感)