├── AndroidCodeCheck.py ├── config.py ├── lib ├── AXMLPrinter2.jar ├── aapt2 ├── baksmali.jar ├── funcInvokeConfig.txt ├── funcNameConfig.txt ├── methodCallGenerator.py ├── output.png └── readme.md ├── logs └── exec_logs.log ├── plugin ├── __init__.py ├── apkInfoCrawler.py ├── fastanalyze.py ├── manifestAnalysis.py ├── mobileSDKAnalysis.py ├── permissionAnalyzer.py └── shellDetector.py ├── readme.txt └── report ├── .DS_Store ├── My Application.html └── My Application.json /AndroidCodeCheck.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zsdlove/ApkVulCheck/HEAD/AndroidCodeCheck.py -------------------------------------------------------------------------------- /config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zsdlove/ApkVulCheck/HEAD/config.py -------------------------------------------------------------------------------- /lib/AXMLPrinter2.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zsdlove/ApkVulCheck/HEAD/lib/AXMLPrinter2.jar -------------------------------------------------------------------------------- /lib/aapt2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zsdlove/ApkVulCheck/HEAD/lib/aapt2 -------------------------------------------------------------------------------- /lib/baksmali.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zsdlove/ApkVulCheck/HEAD/lib/baksmali.jar -------------------------------------------------------------------------------- /lib/funcInvokeConfig.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zsdlove/ApkVulCheck/HEAD/lib/funcInvokeConfig.txt -------------------------------------------------------------------------------- /lib/funcNameConfig.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zsdlove/ApkVulCheck/HEAD/lib/funcNameConfig.txt -------------------------------------------------------------------------------- /lib/methodCallGenerator.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zsdlove/ApkVulCheck/HEAD/lib/methodCallGenerator.py -------------------------------------------------------------------------------- /lib/output.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zsdlove/ApkVulCheck/HEAD/lib/output.png -------------------------------------------------------------------------------- /lib/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zsdlove/ApkVulCheck/HEAD/lib/readme.md -------------------------------------------------------------------------------- /logs/exec_logs.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zsdlove/ApkVulCheck/HEAD/logs/exec_logs.log -------------------------------------------------------------------------------- /plugin/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /plugin/apkInfoCrawler.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zsdlove/ApkVulCheck/HEAD/plugin/apkInfoCrawler.py -------------------------------------------------------------------------------- /plugin/fastanalyze.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zsdlove/ApkVulCheck/HEAD/plugin/fastanalyze.py -------------------------------------------------------------------------------- /plugin/manifestAnalysis.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zsdlove/ApkVulCheck/HEAD/plugin/manifestAnalysis.py -------------------------------------------------------------------------------- /plugin/mobileSDKAnalysis.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zsdlove/ApkVulCheck/HEAD/plugin/mobileSDKAnalysis.py -------------------------------------------------------------------------------- /plugin/permissionAnalyzer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zsdlove/ApkVulCheck/HEAD/plugin/permissionAnalyzer.py -------------------------------------------------------------------------------- /plugin/shellDetector.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zsdlove/ApkVulCheck/HEAD/plugin/shellDetector.py -------------------------------------------------------------------------------- /readme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zsdlove/ApkVulCheck/HEAD/readme.txt -------------------------------------------------------------------------------- /report/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zsdlove/ApkVulCheck/HEAD/report/.DS_Store -------------------------------------------------------------------------------- /report/My Application.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zsdlove/ApkVulCheck/HEAD/report/My Application.html -------------------------------------------------------------------------------- /report/My Application.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zsdlove/ApkVulCheck/HEAD/report/My Application.json --------------------------------------------------------------------------------