检测.framework是否包含UIWebView
cd xxxxxx/Payload
find . -type f | grep -e ".a" -e ".framework" | xargs grep -s UIWebView
.app生成的字符串
cd xxxxxx/Payload/xxx.app
strings - -a -arch armv7 "xxx.app文件名" > xxx.txt
ipa包预检
QuickSDK
检测.framework是否包含UIWebView
cd xxxxxx/Payload
find . -type f | grep -e ".a" -e ".framework" | xargs grep -s UIWebView
.app生成的字符串
cd xxxxxx/Payload/xxx.app
strings - -a -arch armv7 "xxx.app文件名" > xxx.txt
ipa包预检
QuickSDK