Skip to content
KitploitKITPLOIT
ToolsBlog
Submit
ToolsBlog
Submit

Hacking, PenTest, and Cybersecurity Tools for Your Security Arsenal!

Kitploit is a directory of hacking, cybersecurity, and pentesting tools. Discover the latest project updates to find vulnerabilities, analyze systems, automate testing, and strengthen your security.

··Feeds·Contact·Privacy·© 2026 Kitploit

Tool Directory

Categories

View all categories
Loading categories
HashDump-BypassEDR — Windows绕过EDR实现DumpHash | Kitploit
Tools/GitHubGitHub/aabysszg/hashdump-bypassedr
Password AttacksHash AnalysisIDS/IPS EvasionPost-ExploitationPenetration TestingRed Teaming
GitHubaabysszg/hashdump-bypassedr

HashDump-BypassEDR

Windows绕过EDR实现DumpHash

View Repository
2513221 days agoReviewed by Kitploit

Most Popular

View all →

Discover the most used tools by our community.

Explore all tools

Browse our collection of tools

View all tools →
Share
Website

HashDump-BypassEDR

1# Project Overview

By leveraging the extended capabilities of the system whitelisted program Reg.exe, we cleverly bypass the interception points of antivirus software, achieving the goal of bypassing EDR to dump hashes.

According to actual testing, this method is effective against Windows-series systems, is not difficult to execute, and has practical combat value.

Practical articles for this project:

  • How to Bypass EDR to Dump Hashes - AabyssZG'Blog
  • How to Bypass EDR to Dump Hashes - NCC Security Cloud Community

After the article was published, no similar approach was found in domestic or overseas communities. I originally thought it was a world premiere, but later, based on fan comments, a senior overseas researcher had shared a similar idea before: Dumping LSA secrets: a story about task decorrelation

The source code and Release of this article have been published on Github. Sharing is not easy. If you find it useful, feel free to give a Star. Thank you very much!

2# Key Steps

2.1 Step 1: Export the reg files

Execute commands on the target machine to export the .reg files

root@kitploit:~
reg.exe export HKLM\SAM C:\Users\Public\sam.reg
reg.exe export HKLM\SYSTEM C:\Users\Public\system.reg
reg.exe export HKLM\Security C:\Users\Public\security.reg

2.2 Step 2: Restore the binaries on your local machine

Download the .reg files from Step 1 to your local machine, then execute the RegReduction.ps1 PowerShell script from this project on your local machine to restore the binary files

root@kitploit:~
.\RegReduction.ps1

Note: After downloading the script from Github, the encoding defaults to UTF-8. You need to change it to ANSI (GB2312) using Notepad before it can run properly

powershell.png

2.3 Step 3: Obtain the BootKey

Execute the BootKey.exe executable on the target machine. The source code is the BootKey.c file of this project

root@kitploit:~
BootKey.exe

BootKey.png

AV bypass test (2026.5.10): www.virustotal.com

Virustotal.png

2.4 Step 4: Obtain the hashes via secretsdump

root@kitploit:~
python secretsdump.py -sam SAM.hive -security SECURITY.hive -bootkey <target machine's BootKey> LOCAL

HashOut.png

3# Permission Notes

This article involves several key operations, but there are only two core steps on the target machine:

  • Use the reg.exe export command to export the key registry content;
  • Use BootKey.exe to export the system's BootKey.

Tests were also conducted on different systems, with the following results:

  • In actual testing, on Win10, Win11, and Windows Server 2025 environments, exporting the registry using the reg.exe export command requires SYSTEM privileges. However, on Windows Server 2022 and below, exporting the registry using the reg.exe export command only requires normal administrator privileges (SYSTEM privileges are not needed). If the exported registry file using reg.exe export is only 1KB in size, it means the privileges are insufficient.
  • In actual testing, using the BootKey.exe extraction program to export the BootKey does not require administrator privileges, and most antivirus software encountered in practice will not flag or block it.

🙏 4# Thanks to All the Masters

Stargazers

Stargazers repo roster for @AabyssZG/HashDump-BypassEDR

Forkers

Forkers repo roster for @AabyssZG/HashDump-BypassEDR

Star History

Star History Chart

Download Tool