MCPcopy Create free account
hub / github.com/d78ui98/APKDeepLens / scan_all

Method scan_all

static_tools/code_scanner.py:23–34  ·  view source on GitHub ↗
(self)

Source from the content-addressed store, hash-verified

21 # ------------------------------------------------------------------
22
23 def scan_all(self) -> list:
24 findings = []
25 findings += self.check_crypto()
26 findings += self.check_webview()
27 findings += self.check_ssl()
28 findings += self.check_dynamic_code()
29 findings += self.check_data_storage()
30 findings += self.check_logging()
31 findings += self.check_intent_issues()
32 findings += self.check_zip_traversal()
33 findings.sort(key=lambda f: SEVERITY_ORDER.get(f["severity"], 99))
34 return findings
35
36 # ------------------------------------------------------------------
37 # Crypto

Callers 1

APKDeepLens.pyFile · 0.80

Calls 8

check_cryptoMethod · 0.95
check_webviewMethod · 0.95
check_sslMethod · 0.95
check_dynamic_codeMethod · 0.95
check_data_storageMethod · 0.95
check_loggingMethod · 0.95
check_intent_issuesMethod · 0.95
check_zip_traversalMethod · 0.95

Tested by

no test coverage detected