{"id":58710,"date":"2026-05-31T19:41:16","date_gmt":"2026-05-31T19:41:16","guid":{"rendered":"https:\/\/zero.redgem.net\/?p=58710"},"modified":"2026-05-31T19:41:16","modified_gmt":"2026-05-31T19:41:16","slug":"curl-low-priority-hsts-bypass-in-curleasyduphandle","status":"publish","type":"post","link":"https:\/\/zero.redgem.net\/?p=58710","title":{"rendered":"curl: Low priority HSTS bypass in curl_easy_duphandle()_H1:3769293"},"content":{"rendered":"<p>{&#8220;lastseen&#8221;:&#8221;2026-06-01T00:27:59&#8243;,&#8221;description&#8221;:&#8221;## Summary:\\n\\ncurl_easy_duphandle() creates a fresh HSTS store for the cloned handle and populates it from the configured files and callbacks, but never copies entries acquired from Strict-Transport-Security response headers during the parent&#8217;s lifetime. This means the client using a cloned handle may accidentally send secrets to servers in plain text when it was already instructed not to do so.\\n\\n## Affected version\\n\\nCommit:  efc3f2309e1c87c67700350f7df8da508cd307cd\\nDate: 2026-05-26.\\n\\nTested on WSL2. clang-19 w\/ ASAN and GNU ldd. I have a test bench attached you can run. It uses Python to call a C extension that uses socketpair() and direct C calls to talk to libcurl. \\n\\n## Steps To Reproduce:\\n\\n(I am really hoping the patch is super obvious.) \\n\\nUntar the attached `cyber.tgz` in the top level of curl (` tar xzf cyber.tgz`) so it creates `curl\/cyber`. `cd` into  `curl\/cyber` and run `build.sh`. Then run ` .\/run.sh lib_easy.c_duphandle_hsts.py`\\n\\nWith the patch I get:\\n\\n&#8220;`\\n&#8230;\\n* Switched from HTTP to HTTPS due to HSTS =\\u003e https:\/\/x.test\/secret\\n* Alt-svc check wanted=1, allowed=1\\n* check Alt-Svc for host &#8216;x.test&#8217;\\n&#8230;\\n* SSL Trust: peer verification disabled\\n* TLS connect error: error:00000000:lib(0)::reason(0)\\n* OpenSSL SSL_connect: Broken pipe in connection to x.test:443 \\n* closing connection #0\\n&#8230;\\n&#8220;`\\n\\nWithout the patch I get:\\n\\n&#8220;`\\n&#8230;\\n Established connection to x.test (127.0.0.1 port 80) from  port 0 \\n* using HTTP\/1.x\\n* sending last upload chunk of 115 bytes\\n* Curl_xfer_send(len=115, eos=1) -\\u003e 0, 115\\n\\u003e GET \/secret HTTP\/1.1\\nHost: x.test\\nAccept: *\/*\\nTE: gzip\\nAccept-Encoding: deflate, gzip, zstd\\nConnection: TE\\n\\n* Request completely sent off\\n\\u003c HTTP\/1.1 200 OK\\n\\u003c Content-Length: 58\\n\\u003c Connection: close\\n\\u003c Content-Type: text\/plain\\n* shutting down connection #0&#8230;\\n&#8230;\\n&#8220;`\\n\\n## Patch:\\n\\n&#8220;`c\\nFrom 4de23f2cdf034fd7d405fd262367fb792ccec6be: Mon Sep 17 00:00:00 2001\\nFrom: Adrian Johnston \\u003cajohnston54637@gmail.com\\u003e\\nDate: Fri, 29 May 2026 00:00:15 -0700\\nSubject: [PATCH] hsts_bypass_easy_duphandle\\n\\n&#8212;\\n lib\/easy.c |  3 +++\\n lib\/hsts.c | 18 ++++++++++++++++++\\n lib\/hsts.h |  1 +\\n 3 files changed, 22 insertions(+)\\n\\ndiff &#8211;git a\/lib\/easy.c b\/lib\/easy.c\\nindex a472d6ddc5..10f814d093 100644\\n&#8212; a\/lib\/easy.c\\n+++ b\/lib\/easy.c\\n@@ -1052,6 +1052,9 @@ CURL *curl_easy_duphandle(CURL *curl)\\n       (void)Curl_hsts_loadfile(outcurl,\\n                                outcurl-\\u003ehsts, outcurl-\\u003eset.str[STRING_HSTS]);\\n     (void)Curl_hsts_loadcb(outcurl, outcurl-\\u003ehsts);\\n+    \/* copy runtime-learned entries (from Strict-Transport-Security headers) *\/\\n+    if(Curl_hsts_copy(outcurl-\\u003ehsts, data-\\u003ehsts))\\n+      goto fail;\\n   }\\n #endif\\n \\ndiff &#8211;git a\/lib\/hsts.c b\/lib\/hsts.c\\nindex 94738874b5..a5275200c6 100644\\n&#8212; a\/lib\/hsts.c\\n+++ b\/lib\/hsts.c\\n@@ -130,6 +130,24 @@ static CURLcode hsts_create(struct hsts *h,\\n   return CURLE_OK;\\n }\\n \\n+\/* Copy all live entries from src into dst. Used by curl_easy_duphandle so the\\n+ * clone inherits runtime-learned STS entries, not just file\/callback ones. *\/\\n+CURLcode Curl_hsts_copy(struct hsts *dst, struct hsts *src)\\n+{\\n+  struct Curl_llist_node *e;\\n+  time_t now = time(NULL);\\n+  for(e = Curl_llist_head(\\u0026src-\\u003elist); e; e = Curl_node_next(e)) {\\n+    struct stsentry *sts = Curl_node_elem(e);\\n+    if(sts-\\u003eexpires \\u003e now) {\\n+      CURLcode rc = hsts_create(dst, sts-\\u003ehost, strlen(sts-\\u003ehost),\\n+                                sts-\\u003eincludeSubDomains, sts-\\u003eexpires);\\n+      if(rc)\\n+        return rc;\\n+    }\\n+  }\\n+  return CURLE_OK;\\n+}\\n+\\n \/*\\n  * Return the matching HSTS entry, or NULL if the given hostname is not\\n  * currently an HSTS one.\\ndiff &#8211;git a\/lib\/hsts.h b\/lib\/hsts.h\\nindex d4c7fe826b..1ff1667759 100644\\n&#8212; a\/lib\/hsts.h\\n+++ b\/lib\/hsts.h\\n@@ -65,6 +65,7 @@ CURLcode Curl_hsts_loadcb(struct Curl_easy *data,\\n CURLcode Curl_hsts_loadfiles(struct Curl_easy *data);\\n \\n bool Curl_hsts_applies(struct hsts *h, const struct Curl_peer *dest);\\n+CURLcode Curl_hsts_copy(struct hsts *dst, struct hsts *src);\\n \\n #else\\n #define Curl_hsts_cleanup(x)\\n&#8211;\\n2.51.0\\n&#8220;`\\n\\n## Impact\\n\\n## Summary:\\n\\nThis is not an \\&#8221;attack vector.\\&#8221; It just introduces the risk that clients of libcurl using it in a particular manner may accidentally send secrets like passwords or API keys in plain text when the server has instructed them not to.\\n\\nI spent a lot of time working on this and reviewed and tested the information I am sending you carefully. If you have an issue with me using AI I understand. I find it is a productivity multiplier even if I have to spend 1\/2 my time teaching it how to be a senior engineer over and over.&#8221;,&#8221;published&#8221;:&#8221;2026-05-29T09:18:15&#8243;,&#8221;modified&#8221;:&#8221;2026-06-01T00:17:12&#8243;,&#8221;type&#8221;:&#8221;hackerone&#8221;,&#8221;title&#8221;:&#8221;curl: Low priority HSTS bypass in curl_easy_duphandle()&#8221;,&#8221;source&#8221;:&#8221;&#8221;,&#8221;references&#8221;:&#8221;&#8221;,&#8221;id&#8221;:&#8221;H1:3769293&#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\/3769293&#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-06-01T00:27:59&#8243;,&#8221;description&#8221;:&#8221;## Summary:\\n\\ncurl_easy_duphandle() creates a fresh HSTS store for the cloned handle and populates it from the configured files and callbacks, but never copies entries acquired&#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-58710","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: Low priority HSTS bypass in curl_easy_duphandle()_H1:3769293 - 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=58710\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"curl: Low priority HSTS bypass in curl_easy_duphandle()_H1:3769293 - zero redgem\" \/>\n<meta property=\"og:description\" content=\"{&#8220;lastseen&#8221;:&#8221;2026-06-01T00:27:59&#8243;,&#8221;description&#8221;:&#8221;## Summary:nncurl_easy_duphandle() creates a fresh HSTS store for the cloned handle and populates it from the configured files and callbacks, but never copies entries acquired...\" \/>\n<meta property=\"og:url\" content=\"https:\/\/zero.redgem.net\/?p=58710\" \/>\n<meta property=\"og:site_name\" content=\"zero redgem\" \/>\n<meta property=\"article:published_time\" content=\"2026-05-31T19:41:16+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=\"5 minutes\" \/>\n<script type=\"application\/ld+json\" class=\"yoast-schema-graph\">{\"@context\":\"https:\\\/\\\/schema.org\",\"@graph\":[{\"@type\":\"Article\",\"@id\":\"https:\\\/\\\/zero.redgem.net\\\/?p=58710#article\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/zero.redgem.net\\\/?p=58710\"},\"author\":{\"name\":\"invoker\",\"@id\":\"https:\\\/\\\/zero.redgem.net\\\/#\\\/schema\\\/person\\\/fbfeae8dfad117ac08a7621bee1a1dca\"},\"headline\":\"curl: Low priority HSTS bypass in curl_easy_duphandle()_H1:3769293\",\"datePublished\":\"2026-05-31T19:41:16+00:00\",\"mainEntityOfPage\":{\"@id\":\"https:\\\/\\\/zero.redgem.net\\\/?p=58710\"},\"wordCount\":939,\"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=58710#respond\"]}]},{\"@type\":\"WebPage\",\"@id\":\"https:\\\/\\\/zero.redgem.net\\\/?p=58710\",\"url\":\"https:\\\/\\\/zero.redgem.net\\\/?p=58710\",\"name\":\"curl: Low priority HSTS bypass in curl_easy_duphandle()_H1:3769293 - zero redgem\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/zero.redgem.net\\\/#website\"},\"datePublished\":\"2026-05-31T19:41:16+00:00\",\"breadcrumb\":{\"@id\":\"https:\\\/\\\/zero.redgem.net\\\/?p=58710#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\\\/\\\/zero.redgem.net\\\/?p=58710\"]}]},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\\\/\\\/zero.redgem.net\\\/?p=58710#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\\\/\\\/zero.redgem.net\\\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"curl: Low priority HSTS bypass in curl_easy_duphandle()_H1:3769293\"}]},{\"@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: Low priority HSTS bypass in curl_easy_duphandle()_H1:3769293 - 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=58710","og_locale":"en_US","og_type":"article","og_title":"curl: Low priority HSTS bypass in curl_easy_duphandle()_H1:3769293 - zero redgem","og_description":"{&#8220;lastseen&#8221;:&#8221;2026-06-01T00:27:59&#8243;,&#8221;description&#8221;:&#8221;## Summary:nncurl_easy_duphandle() creates a fresh HSTS store for the cloned handle and populates it from the configured files and callbacks, but never copies entries acquired...","og_url":"https:\/\/zero.redgem.net\/?p=58710","og_site_name":"zero redgem","article_published_time":"2026-05-31T19:41:16+00:00","author":"invoker","twitter_card":"summary_large_image","twitter_misc":{"Written by":"invoker","Est. reading time":"5 minutes"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"Article","@id":"https:\/\/zero.redgem.net\/?p=58710#article","isPartOf":{"@id":"https:\/\/zero.redgem.net\/?p=58710"},"author":{"name":"invoker","@id":"https:\/\/zero.redgem.net\/#\/schema\/person\/fbfeae8dfad117ac08a7621bee1a1dca"},"headline":"curl: Low priority HSTS bypass in curl_easy_duphandle()_H1:3769293","datePublished":"2026-05-31T19:41:16+00:00","mainEntityOfPage":{"@id":"https:\/\/zero.redgem.net\/?p=58710"},"wordCount":939,"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=58710#respond"]}]},{"@type":"WebPage","@id":"https:\/\/zero.redgem.net\/?p=58710","url":"https:\/\/zero.redgem.net\/?p=58710","name":"curl: Low priority HSTS bypass in curl_easy_duphandle()_H1:3769293 - zero redgem","isPartOf":{"@id":"https:\/\/zero.redgem.net\/#website"},"datePublished":"2026-05-31T19:41:16+00:00","breadcrumb":{"@id":"https:\/\/zero.redgem.net\/?p=58710#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/zero.redgem.net\/?p=58710"]}]},{"@type":"BreadcrumbList","@id":"https:\/\/zero.redgem.net\/?p=58710#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https:\/\/zero.redgem.net\/"},{"@type":"ListItem","position":2,"name":"curl: Low priority HSTS bypass in curl_easy_duphandle()_H1:3769293"}]},{"@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\/58710","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=58710"}],"version-history":[{"count":0,"href":"https:\/\/zero.redgem.net\/index.php?rest_route=\/wp\/v2\/posts\/58710\/revisions"}],"wp:attachment":[{"href":"https:\/\/zero.redgem.net\/index.php?rest_route=%2Fwp%2Fv2%2Fmedia&parent=58710"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/zero.redgem.net\/index.php?rest_route=%2Fwp%2Fv2%2Fcategories&post=58710"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/zero.redgem.net\/index.php?rest_route=%2Fwp%2Fv2%2Ftags&post=58710"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}