{"id":62672,"date":"2026-06-15T09:37:56","date_gmt":"2026-06-15T09:37:56","guid":{"rendered":"https:\/\/zero.redgem.net\/?p=62672"},"modified":"2026-06-15T09:37:56","modified_gmt":"2026-06-15T09:37:56","slug":"curl-secure-cookies-leaked-to-http-origins-through-https-forwarding-proxy","status":"publish","type":"post","link":"https:\/\/zero.redgem.net\/?p=62672","title":{"rendered":"curl:  Secure cookies leaked to HTTP origins through HTTPS forwarding proxy_H1:3803415"},"content":{"rendered":"<p>{&#8220;lastseen&#8221;:&#8221;2026-06-15T14:16:46&#8243;,&#8221;description&#8221;:&#8221;## Summary:\\nWhen curl accesses an `http:\/\/` origin through an HTTPS forwarding proxy, it sends Secure cookies in the request. The cookies travel in cleartext between the proxy and the origin server, visible to the proxy operator and anyone on that network path. curl also reports `CURLINFO_SCHEME` as `\\&#8221;https\\&#8221;` to the application for what is an `http:\/\/` transfer, which can mislead application-level security logic.\\n\\nThis is a regression introduced on 2026-06-12 in [commit 73daec6](https:\/\/github.com\/curl\/curl\/commit\/73daec6620bf9983df89e8df3660bfa3b8fd501d) ([PR #21967](https:\/\/github.com\/curl\/curl\/pull\/21967)). [proxy.c:652](https:\/\/github.com\/curl\/curl\/blob\/bb837dd\/lib\/proxy.c#L652) sets `conn-\\u003escheme` to the proxy&#8217;s HTTPS scheme. `Curl_secure_context()` ([cookie.c:1273](https:\/\/github.com\/curl\/curl\/blob\/bb837dd\/lib\/cookie.c#L1273)) checks `conn-\\u003escheme-\\u003eprotocol \\u0026 CURLPROTO_HTTPS` and returns TRUE, so Secure cookies are included. Before this commit, `conn-\\u003escheme` held the origin&#8217;s scheme and Secure cookies were correctly withheld.\\n\\nThe same `conn-\\u003escheme` change causes [url.c:2505](https:\/\/github.com\/curl\/curl\/blob\/bb837dd\/lib\/url.c#L2505) to report `CURLINFO_SCHEME` as `\\&#8221;https\\&#8221;` for an `http:\/\/` origin.\\n\\n## Affected version\\n&#8220;`\\n$ curl  &#8211;version\\ncurl 8.21.0-DEV (Linux) libcurl\/8.21.0-DEV OpenSSL\/3.0.20 zlib\/1.2.13 brotli\/1.0.9 zstd\/1.5.4 libpsl\/0.21.2 nghttp2\/1.52.0\\nRelease-Date: [unreleased]\\nProtocols: dict file ftp ftps gopher gophers http https imap imaps ipfs ipns mqtt mqtts pop3 pop3s rtsp smtp smtps telnet tftp ws wss\\nFeatures: alt-svc AsynchDNS brotli HSTS HTTP2 HTTPS-proxy IPv6 Largefile libz PSL SSL threadsafe TLS-SRP UnixSockets zstd\\n&#8220;`\\n\\nOnly affected since commit [73daec6](https:\/\/github.com\/curl\/curl\/commit\/73daec6620bf9983df89e8df3660bfa3b8fd501d) (2026-06-12). No released version is affected. Still present on origin\/master at [79a2416](https:\/\/github.com\/curl\/curl\/commit\/79a24161ab) as of 2026-06-15.\\n\\n## Steps To Reproduce:\\n\\nA self-contained Dockerfile and patch (`fix.patch`) are attached. The Dockerfile builds three curl binaries from source: pre-regression (`c951368`), regression (`bb837dd`), and regression with the suggested fix applied. It also runs a Squid HTTPS forwarding proxy and a plain HTTP origin server that logs received cookies.\\n\\n&#8220;`bash\\ndocker build -t cookie-proxy .\\ndocker run &#8211;rm -it cookie-proxy\\n&#8220;`\\n\\nInside the container, test each binary:\\n\\n&#8220;`bash\\ncurl-safe  -sv -x https:\/\/127.0.0.1:8443 &#8211;proxy-insecure -b \/tmp\/cookies.txt http:\/\/test.example:8080\/path\\ncurl-vuln  -sv -x https:\/\/127.0.0.1:8443 &#8211;proxy-insecure -b \/tmp\/cookies.txt http:\/\/test.example:8080\/path\\ncurl-fixed -sv -x https:\/\/127.0.0.1:8443 &#8211;proxy-insecure -b \/tmp\/cookies.txt http:\/\/test.example:8080\/path\\n&#8220;`\\n\\nCheck what the origin received:\\n\\n&#8220;`bash\\ntail \/tmp\/origin.log\\n&#8220;`\\n\\n`curl-vuln` leaks the Secure cookie (the verbose output includes a `Cookie:` header, and the origin log confirms receipt). `curl-safe` and `curl-fixed` withhold it (no `Cookie:` header, origin log shows `RECEIVED no Cookie header`).\\n\\n## Suggested fix\\n\\nA patch is attached (`fix.patch`). `Curl_secure_context()` should check `data-\\u003estate.origin-\\u003escheme` instead of `conn-\\u003escheme`. The refactor already migrated most security checks to `data-\\u003estate.origin` but missed this function. The `conn-\\u003escheme` assignment at [proxy.c:652](https:\/\/github.com\/curl\/curl\/blob\/bb837dd\/lib\/proxy.c#L652) is still needed for SSL filter setup, so it should stay, but `Curl_secure_context()` should not read it. `Curl_xfer_is_secure()` is not affected because it has an additional `Curl_conn_is_ssl()` check that correctly excludes proxy SSL filters ([cfilters.c:693](https:\/\/github.com\/curl\/curl\/blob\/bb837dd\/lib\/cfilters.c#L693)).\\n\\n## Impact\\n\\nSecure cookies (session tokens, auth cookies, CSRF tokens) are sent in cleartext over the HTTP connection between the HTTPS proxy and the origin server. Anyone who can observe that network path can read them. The proxy operator can harvest them regardless. The `CURLINFO_SCHEME` misreporting can also trick application-level security checks (e.g. \\&#8221;only allow this action over HTTPS\\&#8221;) into treating an insecure transfer as secure.\\n\\nThe bug affects all HTTP methods (GET, HEAD, POST, PUT, DELETE, PATCH, etc.) because the Secure context check runs in `Curl_cookie_getlist` ([cookie.c:1300](https:\/\/github.com\/curl\/curl\/blob\/bb837dd\/lib\/cookie.c#L1300)), which is called from the request header construction path for every method. WebSocket upgrade requests (`ws:\/\/` through the proxy) are also affected. Any libcurl application using the cookie engine (`CURLOPT_COOKIEFILE` \/ `CURLOPT_COOKIEJAR`) through an HTTPS proxy is affected, not just the curl CLI.\\n\\nRFC violated: [RFC 6265](https:\/\/datatracker.ietf.org\/doc\/html\/rfc6265#section-5.4) Section 5.4 step 3 ties \\&#8221;secure channel\\&#8221; to the `https` URI scheme ([RFC 7230](https:\/\/datatracker.ietf.org\/doc\/html\/rfc7230#section-2.7.2) Section 2.7.2). The request uses `http:\/\/`, so Secure cookies must not be sent regardless of the TLS transport to the proxy.&#8221;,&#8221;published&#8221;:&#8221;2026-06-15T11:37:09&#8243;,&#8221;modified&#8221;:&#8221;2026-06-15T13:48:16&#8243;,&#8221;type&#8221;:&#8221;hackerone&#8221;,&#8221;title&#8221;:&#8221;curl:  Secure cookies leaked to HTTP origins through HTTPS forwarding proxy&#8221;,&#8221;source&#8221;:&#8221;&#8221;,&#8221;references&#8221;:&#8221;&#8221;,&#8221;id&#8221;:&#8221;H1:3803415&#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\/3803415&#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-15T14:16:46&#8243;,&#8221;description&#8221;:&#8221;## Summary:\\nWhen curl accesses an `http:\/\/` origin through an HTTPS forwarding proxy, it sends Secure cookies in the request. The cookies travel in cleartext between&#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-62672","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: Secure cookies leaked to HTTP origins through HTTPS forwarding proxy_H1:3803415 - 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=62672\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"curl: Secure cookies leaked to HTTP origins through HTTPS forwarding proxy_H1:3803415 - zero redgem\" \/>\n<meta property=\"og:description\" content=\"{&#8220;lastseen&#8221;:&#8221;2026-06-15T14:16:46&#8243;,&#8221;description&#8221;:&#8221;## Summary:nWhen curl accesses an `http:\/\/` origin through an HTTPS forwarding proxy, it sends Secure cookies in the request. The cookies travel in cleartext between...\" \/>\n<meta property=\"og:url\" content=\"https:\/\/zero.redgem.net\/?p=62672\" \/>\n<meta property=\"og:site_name\" content=\"zero redgem\" \/>\n<meta property=\"article:published_time\" content=\"2026-06-15T09:37:56+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=62672#article\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/zero.redgem.net\\\/?p=62672\"},\"author\":{\"name\":\"invoker\",\"@id\":\"https:\\\/\\\/zero.redgem.net\\\/#\\\/schema\\\/person\\\/fbfeae8dfad117ac08a7621bee1a1dca\"},\"headline\":\"curl: Secure cookies leaked to HTTP origins through HTTPS forwarding proxy_H1:3803415\",\"datePublished\":\"2026-06-15T09:37:56+00:00\",\"mainEntityOfPage\":{\"@id\":\"https:\\\/\\\/zero.redgem.net\\\/?p=62672\"},\"wordCount\":912,\"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=62672#respond\"]}]},{\"@type\":\"WebPage\",\"@id\":\"https:\\\/\\\/zero.redgem.net\\\/?p=62672\",\"url\":\"https:\\\/\\\/zero.redgem.net\\\/?p=62672\",\"name\":\"curl: Secure cookies leaked to HTTP origins through HTTPS forwarding proxy_H1:3803415 - zero redgem\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/zero.redgem.net\\\/#website\"},\"datePublished\":\"2026-06-15T09:37:56+00:00\",\"breadcrumb\":{\"@id\":\"https:\\\/\\\/zero.redgem.net\\\/?p=62672#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\\\/\\\/zero.redgem.net\\\/?p=62672\"]}]},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\\\/\\\/zero.redgem.net\\\/?p=62672#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\\\/\\\/zero.redgem.net\\\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"curl: Secure cookies leaked to HTTP origins through HTTPS forwarding proxy_H1:3803415\"}]},{\"@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: Secure cookies leaked to HTTP origins through HTTPS forwarding proxy_H1:3803415 - 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=62672","og_locale":"en_US","og_type":"article","og_title":"curl: Secure cookies leaked to HTTP origins through HTTPS forwarding proxy_H1:3803415 - zero redgem","og_description":"{&#8220;lastseen&#8221;:&#8221;2026-06-15T14:16:46&#8243;,&#8221;description&#8221;:&#8221;## Summary:nWhen curl accesses an `http:\/\/` origin through an HTTPS forwarding proxy, it sends Secure cookies in the request. The cookies travel in cleartext between...","og_url":"https:\/\/zero.redgem.net\/?p=62672","og_site_name":"zero redgem","article_published_time":"2026-06-15T09:37:56+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=62672#article","isPartOf":{"@id":"https:\/\/zero.redgem.net\/?p=62672"},"author":{"name":"invoker","@id":"https:\/\/zero.redgem.net\/#\/schema\/person\/fbfeae8dfad117ac08a7621bee1a1dca"},"headline":"curl: Secure cookies leaked to HTTP origins through HTTPS forwarding proxy_H1:3803415","datePublished":"2026-06-15T09:37:56+00:00","mainEntityOfPage":{"@id":"https:\/\/zero.redgem.net\/?p=62672"},"wordCount":912,"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=62672#respond"]}]},{"@type":"WebPage","@id":"https:\/\/zero.redgem.net\/?p=62672","url":"https:\/\/zero.redgem.net\/?p=62672","name":"curl: Secure cookies leaked to HTTP origins through HTTPS forwarding proxy_H1:3803415 - zero redgem","isPartOf":{"@id":"https:\/\/zero.redgem.net\/#website"},"datePublished":"2026-06-15T09:37:56+00:00","breadcrumb":{"@id":"https:\/\/zero.redgem.net\/?p=62672#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/zero.redgem.net\/?p=62672"]}]},{"@type":"BreadcrumbList","@id":"https:\/\/zero.redgem.net\/?p=62672#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https:\/\/zero.redgem.net\/"},{"@type":"ListItem","position":2,"name":"curl: Secure cookies leaked to HTTP origins through HTTPS forwarding proxy_H1:3803415"}]},{"@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\/62672","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=62672"}],"version-history":[{"count":0,"href":"https:\/\/zero.redgem.net\/index.php?rest_route=\/wp\/v2\/posts\/62672\/revisions"}],"wp:attachment":[{"href":"https:\/\/zero.redgem.net\/index.php?rest_route=%2Fwp%2Fv2%2Fmedia&parent=62672"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/zero.redgem.net\/index.php?rest_route=%2Fwp%2Fv2%2Fcategories&post=62672"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/zero.redgem.net\/index.php?rest_route=%2Fwp%2Fv2%2Ftags&post=62672"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}