{"id":38365,"date":"2026-01-30T14:35:17","date_gmt":"2026-01-30T14:35:17","guid":{"rendered":"http:\/\/localhost\/?p=38365"},"modified":"2026-01-30T14:35:17","modified_gmt":"2026-01-30T14:35:17","slug":"case-study-securing-ai-application-supply-chains","status":"publish","type":"post","link":"https:\/\/zero.redgem.net\/?p=38365","title":{"rendered":"Case study: Securing AI application supply chains_MSSECURE:627E8D955CE7CBCECBA80DFA1EF0CC01"},"content":{"rendered":"<p>{&#8220;lastseen&#8221;:&#8221;2026-01-30T19:57:56&#8243;,&#8221;description&#8221;:&#8221;The rapid adoption of AI applications, including agents, orchestrators, and autonomous workflows, represents a significant shift in how software systems are built and operated. Unlike traditional applications, these systems are active participants in execution. They make decisions, invoke tools, and interact with other systems on behalf of users. While this evolution enables new capabilities, it also introduces an expanded and less familiar attack surface.\\n\\nSecurity discussions often focus on prompt-level protections, and that focus is justified. However, prompt security addresses only one layer of risk. Equally important is securing the AI application supply chain, including the frameworks, SDKs, and orchestration layers used to build and operate these systems. Vulnerabilities in these components can allow attackers to influence AI behavior, access sensitive resources, or compromise the broader application environment.\\n\\nThe recent disclosure of **CVE-2025-68664** , known as LangGrinch, in LangChain Core highlights the importance of securing the AI supply chain. This blog uses that real-world vulnerability to illustrate how Microsoft Defender posture management capabilities can help organizations identify and mitigate AI supply chain risks.\\n\\n## **Case example: Serialization injection in LangChain (CVE-2025-68664)**\\n\\nA recently disclosed vulnerability in LangChain Core highlights how AI frameworks can become conduits for exploitation when workloads are not properly secured. Tracked as CVE-2025-68664 and commonly referred to as LangGrinch, this flaw exposes risks associated with insecure deserialization in agentic ecosystems that rely heavily on structured metadata exchange.\\n\\n### **Vulnerability summary**\\n\\nCVE-2025-68664 is a serialization injection vulnerability affecting the `langchain-core` Python package. The issue stems from improper handling of internal metadata fields during the serialization and deserialization process. If exploited, an attacker could:\\n\\n  * Extract secrets such as environment variables without authorization\\n  * Instantiate unintended classes during object reconstruction\\n  * Trigger side effects through malicious object initialization\\n\\n\\n\\nThe vulnerability carries a CVSS score of 9.3, highlighting the risks that arise when AI orchestration systems do not adequately separate control signals from user-supplied data.\\n\\n**Understanding the root cause: The lc marker**\\n\\nLangChain utilizes a custom serialization format to maintain state across different components of an AI chain. To distinguish between standard data and serialized LangChain objects, the framework uses a reserved key called lc. During deserialization, when the framework encounters a dictionary containing this key, it interprets the content as a trusted object rather than plain user data.\\n\\nThe vulnerability originates in the `dumps()` and `dumpd()` functions in affected versions of the `langchain-core` package. These functions did not properly escape or neutralize the `lc` key when processing user-controlled dictionaries. As a result, if an attacker is able to inject a dictionary containing the `lc` key into a data stream that is later serialized and deserialized, the framework may reconstruct a malicious object.\\n\\nThis is a classic example of an injection flaw where data and control signals are not properly separated, allowing untrusted input to influence the execution flow.\\n\\n**Mitigation and protection guidance**\\n\\nMicrosoft recommends that all organizations using LangChain review their deployments and apply the following mitigations immediately.\\n\\n**1\\\\. Update LangChain Core**\\n\\nThe most effective defense is to upgrade to a patched version of the langchain-core package.\\n\\n  * For 0.3.x users: Update to version 0.3.81 or later.\\n  * For 1.x users: Update to version 1.2.5 or later.\\n\\n\\n\\n**2\\\\. Query the security explorer to identify any instances of LangChain in your environment**\\n\\nTo identify instances of LangChain package in the assets protected by Defender for Cloud, customers can use the Cloud Security Explorer:\\n\\n![](https:\/\/www.microsoft.com\/en-us\/security\/blog\/wp-content\/uploads\/2026\/01\/image-34.webp)\\n\\n*Identification in cloud compute resources requires D-CSPM \/ Defender for Containers \/ Defender for Servers plan.\\n\\n*Identification in code environment requires connecting your code environment to Defender for Cloud Learn how to set up connectors\\n\\n**3\\\\. Remediate based on Defender for Cloud recommendations across the software development cycle: Code, Ship, Runtime**\\n\\n*Identification in cloud compute resources requires D-CSPM \/ Defender for Containers \/ Defender for Servers plan.\\n\\n*Identification in code environment requires connecting your code environment to Defender for Cloud Learn how to set up connectors\\n\\n**4\\\\. Create GitHub issues with runtime context directly from Defender for Cloud, track progress, and use Copilot coding agent for AI-powered automated fix**\\n\\n![](https:\/\/www.microsoft.com\/en-us\/security\/blog\/wp-content\/uploads\/2026\/01\/image-35.webp)\\n\\nLearn more about Defender for Cloud seamless workflows with GitHub to shorten remediation times for security issues.\\n\\n**Microsoft Defender XDR detections**  \\n\\nMicrosoft security products provide several layers of defense to help organizations identify and block exploitation attempts related to AI vulnerable software.  \\n\\nMicrosoft Defender provides visibility into vulnerable AI workloads through its Cloud Security Posture Management (DCSPM).\\n\\n**Vulnerability Assessment:** Defender for Cloud scanners have been updated to identify containers and virtual machines running vulnerable versions of langchain-core. Microsoft Defender is actively working to expand coverage to additional platforms and this blog will be updated when more information is available.\\n\\n![](https:\/\/www.microsoft.com\/en-us\/security\/blog\/wp-content\/uploads\/2026\/01\/image-36.webp)\\n\\n**Hunting queries**   \\n\\n**Microsoft Defender XDR**\\n\\nSecurity teams can use the advanced hunting capabilities in Microsoft Defender XDR to proactively look for indicators of exploitation. A common sign of exploitation is a Python process associated with LangChain attempting to access sensitive environment variables or making unexpected network connections immediately following an LLM interaction.\\n\\nThe following Kusto Query Language (KQL) query can be used to identify devices that are using the vulnerable software:\\n    \\n    \\n    DeviceTvmSoftwareInventory\\n    | where SoftwareName has \\&#8221;langchain\\&#8221; \\n        and (\\n            \/\/ Lower version ranges\\n            SoftwareVersion startswith \\&#8221;0.\\&#8221; \\n            and toint(split(SoftwareVersion, \\&#8221;.\\&#8221;)[1]) \\u003c 3 \\n            or (SoftwareVersion hasprefix \\&#8221;0.3.\\&#8221; and toint(split(SoftwareVersion, \\&#8221;.\\&#8221;)[2]) \\u003c 81)\\n            \/\/ v1.x affected before 1.2.5\\n            or (SoftwareVersion hasprefix \\&#8221;1.\\&#8221; \\n                and (\\n                    \/\/ 1.0.x or 1.1.x\\n                    toint(split(SoftwareVersion, \\&#8221;.\\&#8221;)[1]) \\u003c 2\\n                    \/\/ 1.2.0-1.2.4\\n                    or (\\n                        toint(split(SoftwareVersion, \\&#8221;.\\&#8221;)[1]) == 2\\n                        and toint(split(SoftwareVersion, \\&#8221;.\\&#8221;)[2]) \\u003c 5\\n                    )\\n                )\\n            )\\n        )\\n    | project DeviceName, OSPlatform, SoftwareName, SoftwareVersion\\n    \\n\\n**References**\\n\\n  * NVD &#8211; CVE-2025-68664\\n  * All I Want for Christmas is Your Secrets: LangGrinch hits LangChain Core (CVE-2025-68664) &#8211; Cyata | The Control Plane for Agentic Identity\\n  * fix(core): serialization patch by mdrxy \u00b7 Pull Request #34458 \u00b7 langchain-ai\/langchain \u00b7 GitHub\\n  * fix(core): serialization patch by ccurme \u00b7 Pull Request #34455 \u00b7 langchain-ai\/langchain \u00b7 GitHub\\n  * What is Cloud Security Posture Management (CSPM) &#8211; Microsoft Defender for Cloud | Microsoft Learn\\n  * Build queries with cloud security explorer &#8211; Microsoft Defender for Cloud | Microsoft Learn\\n\\n\\n\\n_This research is provided by Microsoft Defender Security Research with contributions from Tamer Salman, Astar Lev, Yossi Weizman, Hagai Ran Kestenberg, and Shai Yannai._\\n\\n**Learn more**  \\n\\nReview our documentation to learn more about our real-time protection capabilities and see how to enable them within your organization. \\n\\nLearn more about securing Copilot Studio agents with Microsoft Defender\\n\\nLearn more about Protect your agents in real-time during runtime (Preview) \u2013 Microsoft Defender for Cloud Apps | Microsoft Learn\\n\\nExplore how to build and customize agents with Copilot Studio Agent Builder\\n\\nThe post Case study: Securing AI application supply chains appeared first on Microsoft Security Blog.&#8221;,&#8221;published&#8221;:&#8221;2026-01-30T18:49:44&#8243;,&#8221;modified&#8221;:&#8221;2026-01-30T18:49:44&#8243;,&#8221;type&#8221;:&#8221;mssecure&#8221;,&#8221;title&#8221;:&#8221;Case study: Securing AI application supply chains&#8221;,&#8221;source&#8221;:&#8221;&#8221;,&#8221;references&#8221;:&#8221;&#8221;,&#8221;id&#8221;:&#8221;MSSECURE:627E8D955CE7CBCECBA80DFA1EF0CC01&#8243;,&#8221;bulletinFamily&#8221;:&#8221;blog&#8221;,&#8221;cwe&#8221;:null,&#8221;cvelist&#8221;:[&#8220;CVE-2025-68664&#8243;],&#8221;sourceData&#8221;:&#8221;&#8221;,&#8221;sourceHref&#8221;:&#8221;&#8221;,&#8221;cvss&#8221;:{&#8220;score&#8221;:9.3,&#8221;severity&#8221;:&#8221;CRITICAL&#8221;,&#8221;vector&#8221;:&#8221;CVSS:3.1\/AV:N\/AC:L\/PR:N\/UI:N\/S:C\/C:H\/I:L\/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:\/\/www.microsoft.com\/en-us\/security\/blog\/2026\/01\/30\/case-study-securing-ai-application-supply-chains\/&#8221;,&#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-30T19:57:56&#8243;,&#8221;description&#8221;:&#8221;The rapid adoption of AI applications, including agents, orchestrators, and autonomous workflows, represents a significant shift in how software systems are built and operated. Unlike&#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":[9,6,8,55,12,110,13,7,11,5],"class_list":["post-38365","post","type-post","status-publish","format-standard","hentry","category-category_news","tag-critical","tag-cve","tag-cvss","tag-cvss-93","tag-exploit","tag-mssecure","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>Case study: Securing AI application supply chains_MSSECURE:627E8D955CE7CBCECBA80DFA1EF0CC01 - 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=38365\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"Case study: Securing AI application supply chains_MSSECURE:627E8D955CE7CBCECBA80DFA1EF0CC01 - zero redgem\" \/>\n<meta property=\"og:description\" content=\"{&#8220;lastseen&#8221;:&#8221;2026-01-30T19:57:56&#8243;,&#8221;description&#8221;:&#8221;The rapid adoption of AI applications, including agents, orchestrators, and autonomous workflows, represents a significant shift in how software systems are built and operated. Unlike...\" \/>\n<meta property=\"og:url\" content=\"https:\/\/zero.redgem.net\/?p=38365\" \/>\n<meta property=\"og:site_name\" content=\"zero redgem\" \/>\n<meta property=\"article:published_time\" content=\"2026-01-30T14:35:17+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=\"7 minutes\" \/>\n<script type=\"application\/ld+json\" class=\"yoast-schema-graph\">{\"@context\":\"https:\\\/\\\/schema.org\",\"@graph\":[{\"@type\":\"Article\",\"@id\":\"https:\\\/\\\/zero.redgem.net\\\/?p=38365#article\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/zero.redgem.net\\\/?p=38365\"},\"author\":{\"name\":\"invoker\",\"@id\":\"https:\\\/\\\/zero.redgem.net\\\/#\\\/schema\\\/person\\\/fbfeae8dfad117ac08a7621bee1a1dca\"},\"headline\":\"Case study: Securing AI application supply chains_MSSECURE:627E8D955CE7CBCECBA80DFA1EF0CC01\",\"datePublished\":\"2026-01-30T14:35:17+00:00\",\"mainEntityOfPage\":{\"@id\":\"https:\\\/\\\/zero.redgem.net\\\/?p=38365\"},\"wordCount\":1341,\"commentCount\":0,\"publisher\":{\"@id\":\"https:\\\/\\\/zero.redgem.net\\\/#organization\"},\"keywords\":[\"CRITICAL\",\"CVE\",\"CVSS\",\"CVSS-9.3\",\"exploit\",\"mssecure\",\"news\",\"Security\",\"tapic\",\"Vulnerability\"],\"articleSection\":[\"category_news\"],\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"CommentAction\",\"name\":\"Comment\",\"target\":[\"https:\\\/\\\/zero.redgem.net\\\/?p=38365#respond\"]}]},{\"@type\":\"WebPage\",\"@id\":\"https:\\\/\\\/zero.redgem.net\\\/?p=38365\",\"url\":\"https:\\\/\\\/zero.redgem.net\\\/?p=38365\",\"name\":\"Case study: Securing AI application supply chains_MSSECURE:627E8D955CE7CBCECBA80DFA1EF0CC01 - zero redgem\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/zero.redgem.net\\\/#website\"},\"datePublished\":\"2026-01-30T14:35:17+00:00\",\"breadcrumb\":{\"@id\":\"https:\\\/\\\/zero.redgem.net\\\/?p=38365#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\\\/\\\/zero.redgem.net\\\/?p=38365\"]}]},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\\\/\\\/zero.redgem.net\\\/?p=38365#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\\\/\\\/zero.redgem.net\\\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"Case study: Securing AI application supply chains_MSSECURE:627E8D955CE7CBCECBA80DFA1EF0CC01\"}]},{\"@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":"Case study: Securing AI application supply chains_MSSECURE:627E8D955CE7CBCECBA80DFA1EF0CC01 - 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=38365","og_locale":"en_US","og_type":"article","og_title":"Case study: Securing AI application supply chains_MSSECURE:627E8D955CE7CBCECBA80DFA1EF0CC01 - zero redgem","og_description":"{&#8220;lastseen&#8221;:&#8221;2026-01-30T19:57:56&#8243;,&#8221;description&#8221;:&#8221;The rapid adoption of AI applications, including agents, orchestrators, and autonomous workflows, represents a significant shift in how software systems are built and operated. Unlike...","og_url":"https:\/\/zero.redgem.net\/?p=38365","og_site_name":"zero redgem","article_published_time":"2026-01-30T14:35:17+00:00","author":"invoker","twitter_card":"summary_large_image","twitter_misc":{"Written by":"invoker","Est. reading time":"7 minutes"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"Article","@id":"https:\/\/zero.redgem.net\/?p=38365#article","isPartOf":{"@id":"https:\/\/zero.redgem.net\/?p=38365"},"author":{"name":"invoker","@id":"https:\/\/zero.redgem.net\/#\/schema\/person\/fbfeae8dfad117ac08a7621bee1a1dca"},"headline":"Case study: Securing AI application supply chains_MSSECURE:627E8D955CE7CBCECBA80DFA1EF0CC01","datePublished":"2026-01-30T14:35:17+00:00","mainEntityOfPage":{"@id":"https:\/\/zero.redgem.net\/?p=38365"},"wordCount":1341,"commentCount":0,"publisher":{"@id":"https:\/\/zero.redgem.net\/#organization"},"keywords":["CRITICAL","CVE","CVSS","CVSS-9.3","exploit","mssecure","news","Security","tapic","Vulnerability"],"articleSection":["category_news"],"inLanguage":"en-US","potentialAction":[{"@type":"CommentAction","name":"Comment","target":["https:\/\/zero.redgem.net\/?p=38365#respond"]}]},{"@type":"WebPage","@id":"https:\/\/zero.redgem.net\/?p=38365","url":"https:\/\/zero.redgem.net\/?p=38365","name":"Case study: Securing AI application supply chains_MSSECURE:627E8D955CE7CBCECBA80DFA1EF0CC01 - zero redgem","isPartOf":{"@id":"https:\/\/zero.redgem.net\/#website"},"datePublished":"2026-01-30T14:35:17+00:00","breadcrumb":{"@id":"https:\/\/zero.redgem.net\/?p=38365#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/zero.redgem.net\/?p=38365"]}]},{"@type":"BreadcrumbList","@id":"https:\/\/zero.redgem.net\/?p=38365#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https:\/\/zero.redgem.net\/"},{"@type":"ListItem","position":2,"name":"Case study: Securing AI application supply chains_MSSECURE:627E8D955CE7CBCECBA80DFA1EF0CC01"}]},{"@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\/38365","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=38365"}],"version-history":[{"count":0,"href":"https:\/\/zero.redgem.net\/index.php?rest_route=\/wp\/v2\/posts\/38365\/revisions"}],"wp:attachment":[{"href":"https:\/\/zero.redgem.net\/index.php?rest_route=%2Fwp%2Fv2%2Fmedia&parent=38365"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/zero.redgem.net\/index.php?rest_route=%2Fwp%2Fv2%2Fcategories&post=38365"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/zero.redgem.net\/index.php?rest_route=%2Fwp%2Fv2%2Ftags&post=38365"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}