在菜单中找到Windows -> Orgainer


利用strings 检测iOS ipa包是否调用私有api
1

然后选中其中你要检测的文件那一栏,右键Show in Finder,右键.xcarchive文件显示包内容,在下图路径下找到.app文件,cd到该文件路径下:


利用strings 检测iOS ipa包是否调用私有api
2

此时,可以通过两种方式可以检测打包文件是否包含字符串

        (1) strings - -a -arch armv7 ".app文件名" | grep canOpenUrl

        (2)strings - -a -arch armv7 ".app文件名" > 指定文件名.txt

第二种在指定 "文件名.txt" 文件里去搜索相应字符串。

相关文章:

  • 2022-12-23
  • 2021-12-12
  • 2022-12-23
  • 2022-03-01
  • 2022-01-19
  • 2022-12-23
  • 2022-01-06
  • 2021-05-19
猜你喜欢
  • 2021-06-12
  • 2021-12-03
  • 2022-12-23
  • 2021-09-25
  • 2021-07-26
  • 2022-01-16
  • 2022-12-23
相关资源
相似解决方案