AI 应急响应工具集
⚠️ 重要:配置必读
使用前必须完成的配置
1. VirusTotal API 配置(可选)
本工具集包含 VirusTotal 威胁情报查询功能。如需使用此功能,需要配置 VirusTotal API Key。
获取 API Key:
- 访问 https://www.virustotal.com/
- 注册账号并申请免费 API Key
- 获取您的 API Key
配置方法:
# 方式1:使用环境变量(推荐,最安全)
export VIRUSTOTAL_API_KEY=$(echo -n "your-api-key+your-username" | base64)
# 方式2:永久设置(添加到 ~/.bashrc 或 ~/.zshrc)
echo 'export VIRUSTOTAL_API_KEY=$(echo -n "your-api-key+your-username" | base64)' >> ~/.bashrc
source ~/.bashrc
⚠️
[Description truncada. Veja o README completo no GitHub.]