{"id":33129,"date":"2025-12-29T10:40:18","date_gmt":"2025-12-29T10:40:18","guid":{"rendered":"http:\/\/localhost\/?p=33129"},"modified":"2025-12-29T10:40:18","modified_gmt":"2025-12-29T10:40:18","slug":"curl-telnet-suboption-buffer-pointer-underflow-in-libtelnetc-leads-to-out-of-bounds-read","status":"publish","type":"post","link":"https:\/\/zero.redgem.net\/?p=33129","title":{"rendered":"curl: Telnet Suboption Buffer Pointer Underflow in lib\/telnet.c leads to Out-of-Bounds Read_H1:3480712"},"content":{"rendered":"<p>{&#8220;lastseen&#8221;:&#8221;2025-12-29T16:25:46&#8243;,&#8221;description&#8221;:&#8221;## Summary\\n\\nA buffer pointer underflow vulnerability exists in curl&#8217;s telnet protocol handler (`lib\/telnet.c`). When processing telnet suboptions in the `CURL_TS_SE` state, the code unconditionally decrements the suboption buffer pointer by 2 (`subpointer -= 2`), even when the `CURL_SB_ACCUM` macro skips writing due to a full buffer. This leads to an out-of-bounds read when `suboption()` and `printsub()` are subsequently called.\\n\\n## Affected Version\\n\\n- All curl versions with telnet support containing this code pattern\\n- Tested on latest curl source from GitHub (master branch)\\n- File: `lib\/telnet.c`\\n- Vulnerable lines: 1210 and 1226\\n\\n## Technical Analysis\\n\\n### Vulnerable Code Pattern\\n\\nIn `lib\/telnet.c`, the `CURL_SB_ACCUM` macro (lines 69-73) conditionally writes to the buffer:\\n\\n&#8220;`c\\n#define CURL_SB_ACCUM(x, c)                                   \\\\\\n  do {                                                        \\\\\\n    if(x-\\u003esubpointer \\u003c (x-\\u003esubbuffer + sizeof(x-\\u003esubbuffer))) \\\\\\n      *x-\\u003esubpointer++ = (c);                                 \\\\\\n  } while(0)\\n&#8220;`\\n\\nHowever, in the `CURL_TS_SE` state handling (lines 1207-1211 and 1223-1227), the pointer decrement is unconditional:\\n\\n**Path 1 (line 1207-1211):**\\n&#8220;`c\\nCURL_SB_ACCUM(tn, CURL_IAC);\\nCURL_SB_ACCUM(tn, c);\\ntn-\\u003esubpointer -= 2;    \/\/ UNCONDITIONAL &#8211; causes underflow when buffer is full\\nCURL_SB_TERM(tn);\\n&#8220;`\\n\\n**Path 2 (line 1223-1227):**\\n&#8220;`c\\nCURL_SB_ACCUM(tn, CURL_IAC);\\nCURL_SB_ACCUM(tn, CURL_SE);\\ntn-\\u003esubpointer -= 2;    \/\/ UNCONDITIONAL &#8211; causes underflow when buffer is full\\nCURL_SB_TERM(tn);\\n&#8220;`\\n\\n### Exploitation Flow\\n\\n1. Malicious telnet server sends suboption data to fill the 512-byte buffer (`SUBBUFSIZE`)\\n2. Server sends `IAC` followed by another byte while buffer is full\\n3. `CURL_SB_ACCUM` macro does nothing (buffer full check passes)\\n4. `subpointer -= 2` executes unconditionally, causing pointer underflow\\n5. `CURL_SB_TERM` sets `subend = subpointer` (now pointing before buffer start)\\n6. `suboption()` is called with corrupted pointer\\n7. `CURL_SB_LEN` macro calculates negative\/wrapped length\\n8. `printsub()` reads out-of-bounds memory in verbose mode\\n\\n### Memory Layout (struct TELNET)\\n\\n&#8220;`c\\nstruct TELNET {\\n  \/\/ &#8230; other fields &#8230;\\n  struct dynbuf out;              \/\/ Contains heap pointers\\n  unsigned char subbuffer[512];   \/\/ The suboption buffer\\n  unsigned char *subpointer;      \/\/ Points into subbuffer\\n  unsigned char *subend;          \/\/ End marker\\n  \/\/ &#8230;\\n};\\n&#8220;`\\n\\nWhen `subpointer` underflows, it points to the `dynbuf out` structure, which contains heap pointers that may be leaked.\\n\\n## Steps To Reproduce\\n\\n1. Save the attached PoC script as `curl_telnet_poc.py`\\n\\n2. Run the malicious telnet server:\\n&#8220;`bash\\npython3 curl_telnet_poc.py -p 2323\\n&#8220;`\\n\\n3. In another terminal, connect with curl in verbose mode:\\n&#8220;`bash\\ncurl -v telnet:\/\/127.0.0.1:2323\\n&#8220;`\\n\\n4. Observe the verbose output for:\\n   &#8211; Anomalous suboption data in the output\\n   &#8211; Potential non-printable characters indicating memory leak\\n   &#8211; Possible crash (depending on memory layout)\\n\\n5. For better observation, build curl with AddressSanitizer:\\n&#8220;`bash\\n.\/configure CFLAGS=\\&#8221;-fsanitize=address -g\\&#8221;\\nmake\\n.\/src\/curl -v telnet:\/\/127.0.0.1:2323\\n&#8220;`\\n\\nASan should report an out-of-bounds read.\\n\\n## Supporting Material\/References\\n\\n- Attached: `curl_telnet_poc.py` &#8211; Python PoC server script\\n- Source file: https:\/\/github.com\/curl\/curl\/blob\/master\/lib\/telnet.c\\n- Vulnerable lines: 1210, 1226\\n- Related macros: lines 63-76 (CURL_SB_CLEAR, CURL_SB_TERM, CURL_SB_ACCUM, CURL_SB_GET, CURL_SB_LEN)\\n&#8220;`\\n\\n## Impact\\n\\n## Impact\\n\\n### Security Impact\\n\\n1. **Information Disclosure (Low-Medium)**: When curl is run in verbose mode (`-v`), the `printsub()` function may read and display memory contents from before the suboption buffer. This could potentially leak:\\n   &#8211; Heap pointers (useful for ASLR bypass in chained exploits)\\n   &#8211; Contents of the `dynbuf out` structure\\n   &#8211; Other sensitive data in adjacent memory\\n\\n2. **Denial of Service (Low)**: Depending on memory layout and access patterns, the out-of-bounds read could cause a crash.\\n\\n### Attack Scenario\\n\\nAn attacker controlling a malicious telnet server could:\\n1. Wait for a victim to connect using `curl -v telnet:\/\/malicious-server`\\n2. Send crafted telnet suboption data to trigger the vulnerability\\n3. Potentially observe leaked memory contents in error messages or logs\\n4. Use leaked heap pointers to aid in exploiting other vulnerabilities\\n\\n### Limitations\\n\\n- Requires victim to connect to attacker-controlled telnet server\\n- Most impactful in verbose mode (`-v` flag)\\n- Telnet protocol is deprecated and rarely used\\n- No direct code execution capability&#8221;,&#8221;published&#8221;:&#8221;2025-12-28T16:15:31&#8243;,&#8221;modified&#8221;:&#8221;2025-12-29T15:46:46&#8243;,&#8221;type&#8221;:&#8221;hackerone&#8221;,&#8221;title&#8221;:&#8221;curl: Telnet Suboption Buffer Pointer Underflow in lib\/telnet.c leads to Out-of-Bounds Read&#8221;,&#8221;source&#8221;:&#8221;&#8221;,&#8221;references&#8221;:&#8221;&#8221;,&#8221;id&#8221;:&#8221;H1:3480712&#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\/3480712&#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;2025-12-29T16:25:46&#8243;,&#8221;description&#8221;:&#8221;## Summary\\n\\nA buffer pointer underflow vulnerability exists in curl&#8217;s telnet protocol handler (`lib\/telnet.c`). When processing telnet suboptions in the `CURL_TS_SE` state, the code unconditionally decrements&#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-33129","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: Telnet Suboption Buffer Pointer Underflow in lib\/telnet.c leads to Out-of-Bounds Read_H1:3480712 - 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=33129\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"curl: Telnet Suboption Buffer Pointer Underflow in lib\/telnet.c leads to Out-of-Bounds Read_H1:3480712 - zero redgem\" \/>\n<meta property=\"og:description\" content=\"{&#8220;lastseen&#8221;:&#8221;2025-12-29T16:25:46&#8243;,&#8221;description&#8221;:&#8221;## SummarynnA buffer pointer underflow vulnerability exists in curl&#8217;s telnet protocol handler (`lib\/telnet.c`). When processing telnet suboptions in the `CURL_TS_SE` state, the code unconditionally decrements...\" \/>\n<meta property=\"og:url\" content=\"https:\/\/zero.redgem.net\/?p=33129\" \/>\n<meta property=\"og:site_name\" content=\"zero redgem\" \/>\n<meta property=\"article:published_time\" content=\"2025-12-29T10:40:18+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=33129#article\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/zero.redgem.net\\\/?p=33129\"},\"author\":{\"name\":\"invoker\",\"@id\":\"https:\\\/\\\/zero.redgem.net\\\/#\\\/schema\\\/person\\\/fbfeae8dfad117ac08a7621bee1a1dca\"},\"headline\":\"curl: Telnet Suboption Buffer Pointer Underflow in lib\\\/telnet.c leads to Out-of-Bounds Read_H1:3480712\",\"datePublished\":\"2025-12-29T10:40:18+00:00\",\"mainEntityOfPage\":{\"@id\":\"https:\\\/\\\/zero.redgem.net\\\/?p=33129\"},\"wordCount\":859,\"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=33129#respond\"]}]},{\"@type\":\"WebPage\",\"@id\":\"https:\\\/\\\/zero.redgem.net\\\/?p=33129\",\"url\":\"https:\\\/\\\/zero.redgem.net\\\/?p=33129\",\"name\":\"curl: Telnet Suboption Buffer Pointer Underflow in lib\\\/telnet.c leads to Out-of-Bounds Read_H1:3480712 - zero redgem\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/zero.redgem.net\\\/#website\"},\"datePublished\":\"2025-12-29T10:40:18+00:00\",\"breadcrumb\":{\"@id\":\"https:\\\/\\\/zero.redgem.net\\\/?p=33129#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\\\/\\\/zero.redgem.net\\\/?p=33129\"]}]},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\\\/\\\/zero.redgem.net\\\/?p=33129#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\\\/\\\/zero.redgem.net\\\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"curl: Telnet Suboption Buffer Pointer Underflow in lib\\\/telnet.c leads to Out-of-Bounds Read_H1:3480712\"}]},{\"@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: Telnet Suboption Buffer Pointer Underflow in lib\/telnet.c leads to Out-of-Bounds Read_H1:3480712 - 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=33129","og_locale":"en_US","og_type":"article","og_title":"curl: Telnet Suboption Buffer Pointer Underflow in lib\/telnet.c leads to Out-of-Bounds Read_H1:3480712 - zero redgem","og_description":"{&#8220;lastseen&#8221;:&#8221;2025-12-29T16:25:46&#8243;,&#8221;description&#8221;:&#8221;## SummarynnA buffer pointer underflow vulnerability exists in curl&#8217;s telnet protocol handler (`lib\/telnet.c`). When processing telnet suboptions in the `CURL_TS_SE` state, the code unconditionally decrements...","og_url":"https:\/\/zero.redgem.net\/?p=33129","og_site_name":"zero redgem","article_published_time":"2025-12-29T10:40:18+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=33129#article","isPartOf":{"@id":"https:\/\/zero.redgem.net\/?p=33129"},"author":{"name":"invoker","@id":"https:\/\/zero.redgem.net\/#\/schema\/person\/fbfeae8dfad117ac08a7621bee1a1dca"},"headline":"curl: Telnet Suboption Buffer Pointer Underflow in lib\/telnet.c leads to Out-of-Bounds Read_H1:3480712","datePublished":"2025-12-29T10:40:18+00:00","mainEntityOfPage":{"@id":"https:\/\/zero.redgem.net\/?p=33129"},"wordCount":859,"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=33129#respond"]}]},{"@type":"WebPage","@id":"https:\/\/zero.redgem.net\/?p=33129","url":"https:\/\/zero.redgem.net\/?p=33129","name":"curl: Telnet Suboption Buffer Pointer Underflow in lib\/telnet.c leads to Out-of-Bounds Read_H1:3480712 - zero redgem","isPartOf":{"@id":"https:\/\/zero.redgem.net\/#website"},"datePublished":"2025-12-29T10:40:18+00:00","breadcrumb":{"@id":"https:\/\/zero.redgem.net\/?p=33129#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/zero.redgem.net\/?p=33129"]}]},{"@type":"BreadcrumbList","@id":"https:\/\/zero.redgem.net\/?p=33129#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https:\/\/zero.redgem.net\/"},{"@type":"ListItem","position":2,"name":"curl: Telnet Suboption Buffer Pointer Underflow in lib\/telnet.c leads to Out-of-Bounds Read_H1:3480712"}]},{"@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\/33129","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=33129"}],"version-history":[{"count":0,"href":"https:\/\/zero.redgem.net\/index.php?rest_route=\/wp\/v2\/posts\/33129\/revisions"}],"wp:attachment":[{"href":"https:\/\/zero.redgem.net\/index.php?rest_route=%2Fwp%2Fv2%2Fmedia&parent=33129"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/zero.redgem.net\/index.php?rest_route=%2Fwp%2Fv2%2Fcategories&post=33129"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/zero.redgem.net\/index.php?rest_route=%2Fwp%2Fv2%2Ftags&post=33129"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}