usage: main.py [-h] [--debug] [--analyze-apk APK_PATH] [--monitor-apks-folder] A python program that finds API-KEYS and secrets hidden inside strings optional arguments: -h, --help show this help message and exit --debug Print debug information --analyze-apk APK_PATH Analyze a single apk to find hidden API Keys --monitor-apks-folder Monitors the configured apks folder for new apks. When a new apk is detected, the file is locked and analysis starts.
时间: 2024-02-10 20:21:26 浏览: 74
这是一个 Python 程序,用于在字符串中查找隐藏的 API 密钥和秘密信息。您可以使用以下参数运行该程序:
- `--debug`: 打印调试信息。
- `--analyze-apk APK_PATH`: 分析单个 APK 文件以查找隐藏的 API 密钥。
- `--monitor-apks-folder`: 监视已配置的 APK 文件夹以查找新的 APK 文件。当检测到新的 APK 文件时,该文件将被锁定并进行分析。
您可以根据需要选择这些参数来运行程序。
阅读全文