美文网首页
逆向工程读后感

逆向工程读后感

作者: 金抽抽o | 来源:发表于2017-08-17 17:41 被阅读0次

    常用命令

    plutil

    查看头文件

    • cd ...SMSNinja.app
    • plutil -p Info.plist | grep CFBundleExecutable//查看执行文件名字
    • class-dump -S -s -H JTagView -o path
      其中“JTagView”为执行文件名字,path为要导出的文件路径.
      class-dump --help 查看更多命令
      <pre><code>
      where options are:
      -a show instance variable offsets
      -A show implementation addresses
      --arch <arch> choose a specific architecture from a universal binary (ppc, ppc64, i386, x86_64, armv6, armv7, armv7s, arm64)
      -C <regex> only display classes matching regular expression
      -f <str> 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 <dir> 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<version>.sdk
      --sdk-mac specify Mac OS X version (will look in /Developer/SDKs/MacOSX<version>.sdk
      --sdk-root specify the full SDK root path (or use --sdk-ios/--sdk-mac for a shortcut)</code></pre>

    相关文章

      网友评论

          本文标题:逆向工程读后感

          本文链接:https://www.haomeiwen.com/subject/qmzbcxtx.html