{"id":36263,"date":"2026-01-19T06:32:32","date_gmt":"2026-01-19T06:32:32","guid":{"rendered":"http:\/\/localhost\/?p=36263"},"modified":"2026-01-19T06:32:32","modified_gmt":"2026-01-19T06:32:32","slug":"curl-cookie-replacement-use-after-free-vulnerability","status":"publish","type":"post","link":"https:\/\/zero.redgem.net\/?p=36263","title":{"rendered":"curl: Cookie Replacement Use-After-Free Vulnerability_H1:3516202"},"content":{"rendered":"<p>{&#8220;lastseen&#8221;:&#8221;2026-01-19T12:27:59&#8243;,&#8221;description&#8221;:&#8221;## Summary:\\nThe cookie replacement logic in `lib\/cookie.c` contains a use-after-free vulnerability in the `replace_existing()` function. The function modifies a linked list while iterating over it, creating potential for memory corruption in concurrent or complex cookie operations.\\n\\n**Vulnerable Code Location:** `lib\/cookie.c:822-925`\\n\\n&#8220;`c\\nstatic bool replace_existing(struct Curl_easy *data,\\n                             struct Cookie *co,\\n                             struct CookieInfo *ci,\\n                             bool secure,\\n                             bool *replacep)\\n{\\n    bool replace_old = FALSE;\\n    struct Curl_llist_node *replace_n = NULL;\\n    struct Curl_llist_node *n;\\n    \\n    \/\/ Iterate over cookie list\\n    for(n = Curl_llist_head(\\u0026ci-\\u003ecookielist[myhash]); n; n = Curl_node_next(n)) {\\n        struct Cookie *clist = Curl_node_elem(n);\\n        \/\/ &#8230; comparison logic &#8230;\\n        if(replace_old)\\n            replace_n = n;  \/\/ Store node for later deletion\\n    }\\n    \\n    \/\/ Delete node after iteration\\n    if(replace_n) {\\n        struct Cookie *repl = Curl_node_elem(replace_n);\\n        co-\\u003ecreationtime = repl-\\u003ecreationtime;  \/\/ Access freed memory\\n        Curl_node_remove(replace_n);\\n        freecookie(repl, TRUE);  \/\/ Free memory\\n    }\\n}\\n&#8220;`\\n\\n## Affected version\\ncurl 7.x &#8211; 8.x\\n\\n## Steps To Reproduce:\\n\\n### PoC Server\\n\\nA race condition server has been developed to trigger the vulnerability:\\n\\n**File:** `poc_cookie_uaf.py`\\n\\n&#8220;`bash\\n# Run the PoC server\\npython3 poc_cookie_uaf.py\\n\\n# Server starts on http:\/\/localhost:8000\\n# Provides 3 different exploit scenarios\\n&#8220;`\\n\\n### Testing with AddressSanitizer\\n\\n**CRITICAL:** This vulnerability requires AddressSanitizer to detect reliably.\\n\\n#### Build curl with ASan\\n\\n&#8220;`bash\\ncd curl\\nexport CFLAGS=\\&#8221;-fsanitize=address -fno-omit-frame-pointer -g\\&#8221;\\nexport LDFLAGS=\\&#8221;-fsanitize=address\\&#8221;\\n.\/buildconf\\n.\/configure &#8211;enable-debug &#8211;disable-shared\\nmake clean\\nmake\\n&#8220;`\\n\\n#### Test 1: Rapid Cookie Replacement\\n\\n&#8220;`bash\\n# Single request with 50 cookies\\n.\/src\/curl -c cookies.txt http:\/\/localhost:8000\/exploit1\\n\\n# Check for ASan errors\\n# Look for: \\&#8221;heap-use-after-free\\&#8221;\\n&#8220;`\\n\\n**Expected ASan Output (if vulnerable):**\\n&#8220;`\\n==12345==ERROR: AddressSanitizer: heap-use-after-free on address 0x602000001234\\nREAD of size 8 at 0x602000001234 thread T0\\n    #0 0x&#8230; in replace_existing lib\/cookie.c:915\\n    #1 0x&#8230; in Curl_cookie_add lib\/cookie.c:1234\\n    #2 0x&#8230; in Curl_http_input_auth lib\/http.c:567\\n&#8220;`\\n\\n#### Test 2: Concurrent Requests\\n\\n&#8220;`bash\\n# Trigger race conditions with concurrent requests\\nfor i in {1..20}; do\\n    .\/src\/curl -c cookies_$i.txt http:\/\/localhost:8000\/exploit2 \\u0026\\ndone\\nwait\\n\\n# Check for crashes or ASan errors\\n&#8220;`\\n\\n#### Test 3: Complex Replacement Patterns\\n\\n&#8220;`bash\\n# Test edge cases\\n.\/src\/curl -c cookies.txt http:\/\/localhost:8000\/exploit3\\n\\n# Run multiple times to trigger race\\nfor i in {1..100}; do\\n    .\/src\/curl -c cookies_test_$i.txt http:\/\/localhost:8000\/exploit3\\ndone\\n&#8220;`\\n\\n### Verification Script\\n\\n&#8220;`python\\n#!\/usr\/bin\/env python3\\n# verify_uaf.py &#8211; Check for use-after-free indicators\\n\\nimport subprocess\\nimport sys\\n\\ndef run_test(url):\\n    \\&#8221;\\&#8221;\\&#8221;Run curl and check for ASan errors\\&#8221;\\&#8221;\\&#8221;\\n    result = subprocess.run(\\n        [&#8216;.\/src\/curl&#8217;, &#8216;-c&#8217;, &#8216;test.txt&#8217;, url],\\n        capture_output=True,\\n        text=True\\n    )\\n    \\n    # Check for ASan errors\\n    if &#8216;heap-use-after-free&#8217; in result.stderr:\\n        print(f\\&#8221;[VULN] Use-after-free detected: {url}\\&#8221;)\\n        print(result.stderr)\\n        return True\\n    elif &#8216;double-free&#8217; in result.stderr:\\n        print(f\\&#8221;[VULN] Double-free detected: {url}\\&#8221;)\\n        print(result.stderr)\\n        return True\\n    elif result.returncode != 0:\\n        print(f\\&#8221;[CRASH] curl crashed: {url}\\&#8221;)\\n        return True\\n    \\n    return False\\n\\n# Test all exploits\\nexploits = [\\n    &#8216;http:\/\/localhost:8000\/exploit1&#8217;,\\n    &#8216;http:\/\/localhost:8000\/exploit2&#8217;,\\n    &#8216;http:\/\/localhost:8000\/exploit3&#8217;,\\n]\\n\\nvulnerable = False\\nfor exploit in exploits:\\n    if run_test(exploit):\\n        vulnerable = True\\n\\nif vulnerable:\\n    print(\\&#8221;\\\\\\\\n[RESULT] Vulnerability confirmed!\\&#8221;)\\n    sys.exit(1)\\nelse:\\n    print(\\&#8221;\\\\\\\\n[RESULT] No vulnerability detected (or patched)\\&#8221;)\\n    sys.exit(0)\\n&#8220;`\\n\\n## Supporting Material\/References:\\n\\n- [CWE-416: Use After Free](https:\/\/cwe.mitre.org\/data\/definitions\/416.html)\\n- [AddressSanitizer Documentation](https:\/\/github.com\/google\/sanitizers\/wiki\/AddressSanitizer)\\n- [curl Security Policy](https:\/\/curl.se\/docs\/security.html)\\n- [Memory Safety in C](https:\/\/en.wikipedia.org\/wiki\/Memory_safety)\\n\\n### Attachments\\n 1. `poc_cookie_uaf.py` &#8211; Proof of concept race condition server\\n 2. `fix_cookie_uaf.patch` &#8211; Security patch\\n\\n## Impact\\n\\n## Summary:\\n\\n   &#8211; Heap corruption from use-after-free\\n   &#8211; Potential for arbitrary code execution\\n   &#8211; Information disclosure through freed memory\\n   &#8211; Crashes from accessing freed memory\\n   &#8211; Segmentation faults in cookie handling\\n   &#8211; Application instability\\n   &#8211; Freed cookie data may contain sensitive information\\n   &#8211; Session tokens, authentication data exposed\\n   &#8211; Memory layout information leaked\\n   &#8211; If attacker can control freed memory contents\\n   &#8211; Heap spraying techniques applicable\\n   &#8211; Function pointer corruption possible&#8221;,&#8221;published&#8221;:&#8221;2026-01-19T10:27:16&#8243;,&#8221;modified&#8221;:&#8221;2026-01-19T11:50:23&#8243;,&#8221;type&#8221;:&#8221;hackerone&#8221;,&#8221;title&#8221;:&#8221;curl: Cookie Replacement Use-After-Free Vulnerability&#8221;,&#8221;source&#8221;:&#8221;&#8221;,&#8221;references&#8221;:&#8221;&#8221;,&#8221;id&#8221;:&#8221;H1:3516202&#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\/3516202&#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-19T12:27:59&#8243;,&#8221;description&#8221;:&#8221;## Summary:\\nThe cookie replacement logic in `lib\/cookie.c` contains a use-after-free vulnerability in the `replace_existing()` function. The function modifies a linked list while iterating over it,&#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-36263","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: Cookie Replacement Use-After-Free Vulnerability_H1:3516202 - 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=36263\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"curl: Cookie Replacement Use-After-Free Vulnerability_H1:3516202 - zero redgem\" \/>\n<meta property=\"og:description\" content=\"{&#8220;lastseen&#8221;:&#8221;2026-01-19T12:27:59&#8243;,&#8221;description&#8221;:&#8221;## Summary:nThe cookie replacement logic in `lib\/cookie.c` contains a use-after-free vulnerability in the `replace_existing()` function. The function modifies a linked list while iterating over it,...\" \/>\n<meta property=\"og:url\" content=\"https:\/\/zero.redgem.net\/?p=36263\" \/>\n<meta property=\"og:site_name\" content=\"zero redgem\" \/>\n<meta property=\"article:published_time\" content=\"2026-01-19T06:32:32+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=36263#article\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/zero.redgem.net\\\/?p=36263\"},\"author\":{\"name\":\"invoker\",\"@id\":\"https:\\\/\\\/zero.redgem.net\\\/#\\\/schema\\\/person\\\/fbfeae8dfad117ac08a7621bee1a1dca\"},\"headline\":\"curl: Cookie Replacement Use-After-Free Vulnerability_H1:3516202\",\"datePublished\":\"2026-01-19T06:32:32+00:00\",\"mainEntityOfPage\":{\"@id\":\"https:\\\/\\\/zero.redgem.net\\\/?p=36263\"},\"wordCount\":906,\"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=36263#respond\"]}]},{\"@type\":\"WebPage\",\"@id\":\"https:\\\/\\\/zero.redgem.net\\\/?p=36263\",\"url\":\"https:\\\/\\\/zero.redgem.net\\\/?p=36263\",\"name\":\"curl: Cookie Replacement Use-After-Free Vulnerability_H1:3516202 - zero redgem\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/zero.redgem.net\\\/#website\"},\"datePublished\":\"2026-01-19T06:32:32+00:00\",\"breadcrumb\":{\"@id\":\"https:\\\/\\\/zero.redgem.net\\\/?p=36263#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\\\/\\\/zero.redgem.net\\\/?p=36263\"]}]},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\\\/\\\/zero.redgem.net\\\/?p=36263#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\\\/\\\/zero.redgem.net\\\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"curl: Cookie Replacement Use-After-Free Vulnerability_H1:3516202\"}]},{\"@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: Cookie Replacement Use-After-Free Vulnerability_H1:3516202 - 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=36263","og_locale":"en_US","og_type":"article","og_title":"curl: Cookie Replacement Use-After-Free Vulnerability_H1:3516202 - zero redgem","og_description":"{&#8220;lastseen&#8221;:&#8221;2026-01-19T12:27:59&#8243;,&#8221;description&#8221;:&#8221;## Summary:nThe cookie replacement logic in `lib\/cookie.c` contains a use-after-free vulnerability in the `replace_existing()` function. The function modifies a linked list while iterating over it,...","og_url":"https:\/\/zero.redgem.net\/?p=36263","og_site_name":"zero redgem","article_published_time":"2026-01-19T06:32:32+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=36263#article","isPartOf":{"@id":"https:\/\/zero.redgem.net\/?p=36263"},"author":{"name":"invoker","@id":"https:\/\/zero.redgem.net\/#\/schema\/person\/fbfeae8dfad117ac08a7621bee1a1dca"},"headline":"curl: Cookie Replacement Use-After-Free Vulnerability_H1:3516202","datePublished":"2026-01-19T06:32:32+00:00","mainEntityOfPage":{"@id":"https:\/\/zero.redgem.net\/?p=36263"},"wordCount":906,"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=36263#respond"]}]},{"@type":"WebPage","@id":"https:\/\/zero.redgem.net\/?p=36263","url":"https:\/\/zero.redgem.net\/?p=36263","name":"curl: Cookie Replacement Use-After-Free Vulnerability_H1:3516202 - zero redgem","isPartOf":{"@id":"https:\/\/zero.redgem.net\/#website"},"datePublished":"2026-01-19T06:32:32+00:00","breadcrumb":{"@id":"https:\/\/zero.redgem.net\/?p=36263#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/zero.redgem.net\/?p=36263"]}]},{"@type":"BreadcrumbList","@id":"https:\/\/zero.redgem.net\/?p=36263#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https:\/\/zero.redgem.net\/"},{"@type":"ListItem","position":2,"name":"curl: Cookie Replacement Use-After-Free Vulnerability_H1:3516202"}]},{"@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\/36263","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=36263"}],"version-history":[{"count":0,"href":"https:\/\/zero.redgem.net\/index.php?rest_route=\/wp\/v2\/posts\/36263\/revisions"}],"wp:attachment":[{"href":"https:\/\/zero.redgem.net\/index.php?rest_route=%2Fwp%2Fv2%2Fmedia&parent=36263"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/zero.redgem.net\/index.php?rest_route=%2Fwp%2Fv2%2Fcategories&post=36263"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/zero.redgem.net\/index.php?rest_route=%2Fwp%2Fv2%2Ftags&post=36263"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}