美文网首页
iOS开发私有api检测

iOS开发私有api检测

作者: 常绿箩 | 来源:发表于2018-04-12 17:16 被阅读17次
加急

https://github.com/NetEaseGame/iOS-private-api-checker

申请加急回复

检测私有api的位置:

cuiyongqindeMacBook-Pro:xubing_doc_ios 已发版 cuiyongqin$ find . | grep -v .svn | grep "\.a" | grep -v "\.app" | xargs grep locationServicesEnabled:

cuiyongqindeMacBook-Pro:xubing_doc_ios 已发版 cuiyongqin$ grep -lr "locationServicesEnabled:" * | grep -v .svn | grep -v .md

otool命令:

-f print the fat headers

-a print the archive header

-h print the mach header

-l print the load commands

-L print shared libraries used

-D print shared library id name

-t print the text section (disassemble with -v)

-p   start dissassemble from routine name

-s print contents of section

-d print the data section

-o print the Objective-C segment

-r print the relocation entries

-S print the table of contents of a library

-T print the table of contents of a dynamic shared library

-M print the module table of a dynamic shared library

-R print the reference table of a dynamic shared library

-I print the indirect symbol table

-H print the two-level hints table

-G print the data in code table

-v print verbosely (symbolically) when possible

-V print disassembled operands symbolically

-c print argument strings of a core file

-X print no leading addresses or headers

-m don't use archive(member) syntax

-B force Thumb disassembly (ARM objects only)

-q use llvm's disassembler (the default)

-Q use otool(1)'s disassembler

-mcpu=arg use `arg' as the cpu for disassembly

-j print opcode bytes

-P print the info plist section as strings

-C print linker optimization hints

--version print the version of /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/otool

相关文章

  • iOS私有Api检测

    iOS私有Api检测 iOS私有Api检测

  • iOS开发私有api检测

    https://github.com/NetEaseGame/iOS-private-api-checker 检测...

  • 关于 iOS 私有 API 扫描

    关于 iOS 私有 API 扫描 关于 iOS 私有 API 扫描

  • iOS私有API检测

    1.cd 到项目目录 grep -r prefs . //-r递归检测 prefs你需要检测的私有api方法 ...

  • iOS私有Api检测

    最近提交APP审核, 一直都说是使用了私有API 在网上找了一些检测私有API的方法才发现在SDK里面涉及到了 下...

  • iOS私有Api检测

    最近提交APP审核被苹果的审核人员是虐的不要不要的, 一直都说是使用了私有API 但是我使出了浑身解数, 也没找到...

  • iOS私有Api检测

    个人原文博客地址: iOS私有Api检测 最近提交APP审核被苹果的审核人员是虐的不要不要的, 一直都说是使用了私...

  • iOS-私有API与runtime

    iOS-私有API与runtime iOS-私有API与runtime

  • iOS 查找私有 API 的终极方案 · 逆向

    iOS 查找私有 API 的终极方案 · 逆向iOS 查找私有 API 的终极方案 · 逆向

  • IOS私有API

    IOS私有API的了解 IOS的API分为四种:Published API(公开的API)(或者Documente...

网友评论

      本文标题:iOS开发私有api检测

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