(self)
| 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 |
no test coverage detected