AI SummaryAn emergency response toolkit combining shellcode analysis and Linux incident response for security researchers and DevOps teams performing threat investigation and system forensics.
Install
Copy this and paste it into Claude Code, Cursor, or any AI assistant:
I want to install the "ai-emergency-tools" skill in my project. Please run this command in my terminal: # Install skill into the correct directory mkdir -p .claude/skills/AIEmergencyTools && curl --retry 3 --retry-delay 2 --retry-all-errors -o .claude/skills/AIEmergencyTools/SKILL.md "https://raw.githubusercontent.com/b0bac/AIEmergencyTools/master/SKILL.md" Then restart Claude Code (or reload the window in Cursor) so the skill is picked up.
Description
AI 应急响应工具集,整合 Shellcode 分析和 Linux 应急响应两大功能模块,提供安全研究和应急响应的完整解决方案。
使用前必须完成的配置
• VirusTotal API 配置(可选) 本工具集包含 VirusTotal 威胁情报查询功能。如需使用此功能,需要配置 VirusTotal API Key。 获取 API Key: • 访问 https://www.virustotal.com/ • 注册账号并申请免费 API Key • 获取您的 API Key 配置方法: `bash
方式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 ` > ⚠️ 安全警告: > - 不要将真实的 API Key 提交到版本控制系统 > - 不要在公开场合分享您的 API Key > - 定期轮换 API Key • SSH 连接信息配置 Linux 应急响应功能需要提供目标主机的 SSH 连接信息: ` hostname: <目标主机 IP 或域名> port: <SSH 端口,默认 22> username: <SSH 用户名(建议使用有权限的账户)> password: <SSH 密码> ` 安全建议: • 使用 SSH 密钥认证(更安全) • 创建专用的应急响应账户 • 使用完毕后及时修改密码 • Python 依赖安装 `bash
安装必要依赖
pip install capstone psutil `
Discussion
Health Signals
My Fox Den
Community Rating
Sign in to rate this booster