{"id":36264,"date":"2026-01-19T06:32:33","date_gmt":"2026-01-19T06:32:33","guid":{"rendered":"http:\/\/localhost\/?p=36264"},"modified":"2026-01-19T06:32:33","modified_gmt":"2026-01-19T06:32:33","slug":"curl-cookie-max-age-integer-overflow-vulnerability","status":"publish","type":"post","link":"https:\/\/zero.redgem.net\/?p=36264","title":{"rendered":"curl: Cookie Max-Age Integer Overflow Vulnerability_H1:3516186"},"content":{"rendered":"<p>{&#8220;lastseen&#8221;:&#8221;2026-01-19T12:27:59&#8243;,&#8221;description&#8221;:&#8221;## Summary:\\nThe cookie parsing code in `lib\/cookie.c` contains an integer overflow vulnerability when processing the `Max-Age` attribute of HTTP cookies. The vulnerable code attempts to add the max-age value to the current timestamp without adequate overflow protection\\n\\nWhile the code includes an overflow check (`CURL_OFF_T_MAX &#8211; now \\u003c co-\\u003eexpires`), this check itself can experience integer overflow in edge cases where:\\n1. The `max-age` value is extremely large (near `CURL_OFF_T_MAX`)\\n2. The current time (`now`) is large enough that the subtraction `CURL_OFF_T_MAX &#8211; now` produces unexpected results\\n3. The addition `co-\\u003eexpires += now` occurs without proper bounds checking\\n\\nAn attacker can exploit this vulnerability by:\\n1. Controlling a web server or performing a man-in-the-middle attack\\n2. Sending HTTP responses with `Set-Cookie` headers containing extremely large `Max-Age` values\\n3. Causing curl\/libcurl to incorrectly calculate cookie expiration times\\n4. Resulting in cookies persisting beyond their intended lifetime or being immediately expired\\n\\n**Vulnerable Code Location:** `lib\/cookie.c:607-611`\\n\\n&#8220;`c\\nelse if(CURL_OFF_T_MAX &#8211; now \\u003c co-\\u003eexpires)\\n    \/* would overflow *\/\\n    co-\\u003eexpires = CURL_OFF_T_MAX;\\nelse\\n    co-\\u003eexpires += now;\\n&#8220;`\\n\\n## Affected version\\n**Affected Versions:** curl 7.x &#8211; 8.x\\n\\n## Steps To Reproduce:\\n\\n### Vulnerable Code Flow\\n\\n1. **Cookie Header Parsing** (`parse_cookie_header()`)\\n   &#8211; Parses `Max-Age` attribute from `Set-Cookie` header\\n   &#8211; Calls `curlx_str_number()` to convert string to integer\\n   &#8211; Handles overflow cases but with insufficient protection\\n\\n2. **Overflow Check** (Line 607)\\n   &#8220;`c\\n   if(CURL_OFF_T_MAX &#8211; now \\u003c co-\\u003eexpires)\\n   &#8220;`\\n   &#8211; This check can itself overflow when `now` is large\\n   &#8211; Does not account for all edge cases\\n\\n3. **Time Addition** (Line 611)\\n   &#8220;`c\\n   co-\\u003eexpires += now;\\n   &#8220;`\\n   &#8211; Performs addition without verifying result\\n   &#8211; Can wrap around on overflow\\n\\n### Exploitation Scenarios\\n\\n#### Scenario 1: Maximum Max-Age Value\\n&#8220;`http\\nHTTP\/1.1 200 OK\\nSet-Cookie: session=abc123; Max-Age=9223372036854775807; Path=\/\\n&#8220;`\\n- Max-Age set to `CURL_OFF_T_MAX` (64-bit maximum)\\n- When added to current time, may overflow\\n- Cookie may expire immediately or persist indefinitely\\n\\n#### Scenario 2: Near-Overflow Value\\n&#8220;`http\\nHTTP\/1.1 200 OK\\nSet-Cookie: tracking=xyz; Max-Age=9223372036854000000; Path=\/\\n&#8220;`\\n- Max-Age chosen to overflow when added to `time(NULL)`\\n- Bypasses overflow check due to edge case\\n- Results in incorrect expiration calculation\\n\\n#### Scenario 3: Cookie Jar Pollution\\n&#8220;`http\\nHTTP\/1.1 200 OK\\nSet-Cookie: cookie1=val; Max-Age=9223372036854775807\\nSet-Cookie: cookie2=val; Max-Age=9223372036854775806\\nSet-Cookie: cookie3=val; Max-Age=9223372036854775805\\n&#8230; (repeated many times)\\n&#8220;`\\n- Multiple cookies with overflow values\\n- Fills cookie jar with persistent cookies\\n- Causes denial of service\\n\\n&#8212;\\n\\n### PoC Server\\n\\nA malicious HTTP server has been developed to demonstrate the vulnerability:\\n\\n**File:** `poc_cookie_overflow.py`\\n\\n&#8220;`bash\\n# Run the PoC server\\npython3 poc_cookie_overflow.py\\n\\n# Server starts on http:\/\/localhost:8000\\n# Provides 4 different exploit scenarios\\n&#8220;`\\n\\n### Testing Steps\\n\\n#### Test 1: Maximum Max-Age Value\\n&#8220;`bash\\n# Test with vulnerable curl\\ncurl -c cookies.txt http:\/\/localhost:8000\/exploit1\\n\\n# Examine cookie file\\ncat cookies.txt\\n\\n# Expected (vulnerable): Cookie with incorrect expiration\\n# Expected (patched): Cookie capped at 400 days\\n&#8220;`\\n\\n#### Test 2: Near-Overflow Value\\n&#8220;`bash\\ncurl -c cookies.txt http:\/\/localhost:8000\/exploit2\\ncat cookies.txt\\n\\n# Check if overflow occurred\\npython3 -c \\&#8221;\\nimport time\\nwith open(&#8216;cookies.txt&#8217;) as f:\\n    for line in f:\\n        if &#8216;near_overflow&#8217; in line:\\n            parts = line.split()\\n            expiry = int(parts[4])\\n            now = int(time.time())\\n            print(f&#8217;Expiry: {expiry}&#8217;)\\n            print(f&#8217;Now: {now}&#8217;)\\n            print(f&#8217;Diff: {expiry &#8211; now} seconds&#8217;)\\n            print(f&#8217;Days: {(expiry &#8211; now) \/ 86400} days&#8217;)\\n\\&#8221;\\n&#8220;`\\n\\n#### Test 3: Negative Max-Age\\n&#8220;`bash\\ncurl -c cookies.txt http:\/\/localhost:8000\/exploit3\\ncat cookies.txt\\n\\n# Verify cookie was expired immediately\\n&#8220;`\\n\\n#### Test 4: Cookie Jar Pollution\\n&#8220;`bash\\ncurl -c cookies.txt http:\/\/localhost:8000\/exploit4\\nwc -l cookies.txt\\n\\n# Should show 10+ cookies with overflow values\\n&#8220;`\\n\\n## Supporting Material\/References:\\n\\n- [RFC 6265 &#8211; HTTP State Management Mechanism](https:\/\/datatracker.ietf.org\/doc\/html\/rfc6265)\\n- [RFC 6265bis &#8211; Cookies (Draft)](https:\/\/datatracker.ietf.org\/doc\/html\/draft-ietf-httpbis-rfc6265bis)\\n- [CWE-190: Integer Overflow or Wraparound](https:\/\/cwe.mitre.org\/data\/definitions\/190.html)\\n- [curl Security Policy](https:\/\/curl.se\/docs\/security.html)\\n\\n\\n  * [attachment \/ reference]\\n\\nAttached PoC, patch files\\n\\n## Impact\\n\\n## Summary:\\n   &#8211; Attacker-set session cookies persist beyond intended lifetime\\n   &#8211; Users remain logged in indefinitely\\n   &#8211; Session tokens cannot be properly expired\\n   &#8211; Tracking cookies persist longer than allowed\\n   &#8211; User privacy preferences bypassed\\n   &#8211; GDPR\/privacy regulation violations\\n   &#8211; Authentication cookies may expire immediately\\n   &#8211; Or persist indefinitely, preventing logout\\n   &#8211; Access control mechanisms compromised\\n   &#8211; Malformed cookies fill up cookie storage\\n   &#8211; Legitimate cookies may be evicted\\n   &#8211; Application functionality degraded&#8221;,&#8221;published&#8221;:&#8221;2026-01-19T10:12:12&#8243;,&#8221;modified&#8221;:&#8221;2026-01-19T11:50:13&#8243;,&#8221;type&#8221;:&#8221;hackerone&#8221;,&#8221;title&#8221;:&#8221;curl: Cookie Max-Age Integer Overflow Vulnerability&#8221;,&#8221;source&#8221;:&#8221;&#8221;,&#8221;references&#8221;:&#8221;&#8221;,&#8221;id&#8221;:&#8221;H1:3516186&#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\/3516186&#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 parsing code in `lib\/cookie.c` contains an integer overflow vulnerability when processing the `Max-Age` attribute of HTTP cookies. The vulnerable code attempts to&#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-36264","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 Max-Age Integer Overflow Vulnerability_H1:3516186 - 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=36264\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"curl: Cookie Max-Age Integer Overflow Vulnerability_H1:3516186 - 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 parsing code in `lib\/cookie.c` contains an integer overflow vulnerability when processing the `Max-Age` attribute of HTTP cookies. The vulnerable code attempts to...\" \/>\n<meta property=\"og:url\" content=\"https:\/\/zero.redgem.net\/?p=36264\" \/>\n<meta property=\"og:site_name\" content=\"zero redgem\" \/>\n<meta property=\"article:published_time\" content=\"2026-01-19T06:32:33+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=36264#article\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/zero.redgem.net\\\/?p=36264\"},\"author\":{\"name\":\"invoker\",\"@id\":\"https:\\\/\\\/zero.redgem.net\\\/#\\\/schema\\\/person\\\/fbfeae8dfad117ac08a7621bee1a1dca\"},\"headline\":\"curl: Cookie Max-Age Integer Overflow Vulnerability_H1:3516186\",\"datePublished\":\"2026-01-19T06:32:33+00:00\",\"mainEntityOfPage\":{\"@id\":\"https:\\\/\\\/zero.redgem.net\\\/?p=36264\"},\"wordCount\":958,\"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=36264#respond\"]}]},{\"@type\":\"WebPage\",\"@id\":\"https:\\\/\\\/zero.redgem.net\\\/?p=36264\",\"url\":\"https:\\\/\\\/zero.redgem.net\\\/?p=36264\",\"name\":\"curl: Cookie Max-Age Integer Overflow Vulnerability_H1:3516186 - zero redgem\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/zero.redgem.net\\\/#website\"},\"datePublished\":\"2026-01-19T06:32:33+00:00\",\"breadcrumb\":{\"@id\":\"https:\\\/\\\/zero.redgem.net\\\/?p=36264#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\\\/\\\/zero.redgem.net\\\/?p=36264\"]}]},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\\\/\\\/zero.redgem.net\\\/?p=36264#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\\\/\\\/zero.redgem.net\\\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"curl: Cookie Max-Age Integer Overflow Vulnerability_H1:3516186\"}]},{\"@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 Max-Age Integer Overflow Vulnerability_H1:3516186 - 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=36264","og_locale":"en_US","og_type":"article","og_title":"curl: Cookie Max-Age Integer Overflow Vulnerability_H1:3516186 - zero redgem","og_description":"{&#8220;lastseen&#8221;:&#8221;2026-01-19T12:27:59&#8243;,&#8221;description&#8221;:&#8221;## Summary:nThe cookie parsing code in `lib\/cookie.c` contains an integer overflow vulnerability when processing the `Max-Age` attribute of HTTP cookies. The vulnerable code attempts to...","og_url":"https:\/\/zero.redgem.net\/?p=36264","og_site_name":"zero redgem","article_published_time":"2026-01-19T06:32:33+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=36264#article","isPartOf":{"@id":"https:\/\/zero.redgem.net\/?p=36264"},"author":{"name":"invoker","@id":"https:\/\/zero.redgem.net\/#\/schema\/person\/fbfeae8dfad117ac08a7621bee1a1dca"},"headline":"curl: Cookie Max-Age Integer Overflow Vulnerability_H1:3516186","datePublished":"2026-01-19T06:32:33+00:00","mainEntityOfPage":{"@id":"https:\/\/zero.redgem.net\/?p=36264"},"wordCount":958,"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=36264#respond"]}]},{"@type":"WebPage","@id":"https:\/\/zero.redgem.net\/?p=36264","url":"https:\/\/zero.redgem.net\/?p=36264","name":"curl: Cookie Max-Age Integer Overflow Vulnerability_H1:3516186 - zero redgem","isPartOf":{"@id":"https:\/\/zero.redgem.net\/#website"},"datePublished":"2026-01-19T06:32:33+00:00","breadcrumb":{"@id":"https:\/\/zero.redgem.net\/?p=36264#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/zero.redgem.net\/?p=36264"]}]},{"@type":"BreadcrumbList","@id":"https:\/\/zero.redgem.net\/?p=36264#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https:\/\/zero.redgem.net\/"},{"@type":"ListItem","position":2,"name":"curl: Cookie Max-Age Integer Overflow Vulnerability_H1:3516186"}]},{"@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\/36264","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=36264"}],"version-history":[{"count":0,"href":"https:\/\/zero.redgem.net\/index.php?rest_route=\/wp\/v2\/posts\/36264\/revisions"}],"wp:attachment":[{"href":"https:\/\/zero.redgem.net\/index.php?rest_route=%2Fwp%2Fv2%2Fmedia&parent=36264"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/zero.redgem.net\/index.php?rest_route=%2Fwp%2Fv2%2Fcategories&post=36264"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/zero.redgem.net\/index.php?rest_route=%2Fwp%2Fv2%2Ftags&post=36264"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}