Skip to content
KitploitKITPLOIT
工具博客
提交
工具博客
提交

黑客、渗透测试和网络安全工具,武装您的安全武器库!

Kitploit 是一个黑客、网络安全和渗透测试工具的目录。发现最新的项目更新,查找漏洞、分析系统、自动化测试并加强你的安全。

··订阅源·联系·隐私·© 2026 Kitploit

工具目录

分类

查看所有分类
Loading categories
amcache-evilhunter — 解析和分析 Windows Amcache.hve 注册表配置单元,VirusTotal 集成。 | Kitploit
工具/GitHubGitHub/cristianzsh/amcache-evilhunter
取证分析恶意软件分析数字取证威胁情报事件响应
GitHubcristianzsh/amcache-evilhunter

amcache-evilhunter

解析和分析 Windows Amcache.hve 注册表配置单元,VirusTotal 集成。

查看仓库
11481年前Kitploit 审核通过

最受欢迎

查看全部 →

发现我们社区最常用的工具。

探索所有工具

浏览我们的工具集合

查看所有工具 →
分享

AmCache-EvilHunter

AmCache-EvilHunter 是一款命令行工具,用于解析和分析 Windows Amcache.hve 注册表配置单元,识别执行痕迹、可疑可执行文件,并集成 VirusTotal/OpenTIP 查询以增强威胁情报。

https://github.com/user-attachments/assets/e23fb99b-48ad-4260-b372-2f15e5320c74

功能特性

  • 解析离线的 Amcache.hve 注册表配置单元。
  • 按日期范围筛选记录(--start,--end)。
  • 使用关键词搜索记录(--search)。
  • 识别已知可疑可执行文件(--find-suspicious)。
  • 识别缺少发布者的可执行文件(--missing-publisher)。
  • 集成 Kaspersky OpenTIP 进行哈希查询(--opentip,--only-detections)。
  • 集成 VirusTotal 进行哈希查询(--vt,--only-detections)。
  • 将结果导出为 JSON(--json)或 CSV(--csv)。

环境要求

  • Python 3.7 或更高版本
  • requests
  • python-registry
  • rich

通过 pip 安装依赖:

root@kitploit:~
pip3 install -r requirements.txt

安装

root@kitploit:~
git clone https://github.com/cristianzsh/amcache-evilhunter.git
cd amcache-evilhunter
pip3 install -r requirements.txt

用法

root@kitploit:~
python3 amcache_evilhunter.py -i path/to/Amcache.hve [选项]

选项

示例

  • 解析并显示所有记录:

    root@kitploit:~
    python3 amcache_evilhunter.py -i Amcache.hve
    
  • 按日期范围筛选并搜索 "notepad":

    root@kitploit:~
    python3 amcache_evilhunter.py -i Amcache.hve --start 2021-01-01 --end 2021-12-31 --search notepad
    
  • 识别可疑可执行文件并查询 VirusTotal:

    root@kitploit:~
    python3 amcache_evilhunter.py -i Amcache.hve --find-suspicious -v
    
  • 将 VirusTotal 检测结果导出为 JSON:

    root@kitploit:~
    export VT_API_KEY=YOUR_API_KEY
    python3 amcache_evilhunter.py -i Amcache.hve -v --only-detections --json detections.json
    

环境变量

  • VT_API_KEY:你的 VirusTotal API 密钥,用于文件哈希查询。
  • OPENTIP_API_KEY:你的 OpenTIP API 密钥,用于文件哈希查询。

构建可执行文件

提供了一个 build.sh 脚本,用于为 Linux 和 Windows(通过 Wine)生成独立的二进制文件。

root@kitploit:~
chmod +x build.sh
./build.sh

许可证

本项目采用 MIT 许可证。详见 LICENSE。

下载工具
标志描述
-i, --input PATHAmcache.hve 的路径(必需)
--start YYYY-MM-DD仅包含该日期及之后的记录
--end YYYY-MM-DD仅包含该日期及之前的记录
--search TERMS逗号分隔、不区分大小写的搜索词
--find-suspicious仅筛选匹配已知可疑模式的记录
--missing-publisher仅筛选缺少发布者的记录
--exclude-os仅包含非操作系统组件文件
--opentip启用 Kaspersky OpenTIP 查询(需要设置 OPENTIP_API_KEY 环境变量)
-v, --vt启用 VirusTotal 查询(需要设置 VT_API_KEY 环境变量)
--only-detections仅显示/保存至少有一个 VT 检测的文件
--json PATH写入完整 JSON 输出的路径
--csv PATH写入完整 CSV 输出的路径
-V, --version显示版本信息