{"id":26279,"date":"2025-11-14T11:37:35","date_gmt":"2025-11-14T11:37:35","guid":{"rendered":"http:\/\/localhost\/?p=26279"},"modified":"2025-11-14T11:37:35","modified_gmt":"2025-11-14T11:37:35","slug":"grocery-store-management-system-10-sql-injection","status":"publish","type":"post","link":"https:\/\/zero.redgem.net\/?p=26279","title":{"rendered":"\ud83d\udcc4 Grocery Store Management System 1.0 SQL Injection_PACKETSTORM:211630"},"content":{"rendered":"<p>{&#8220;lastseen&#8221;:&#8221;2025-11-14T16:39:06&#8243;,&#8221;description&#8221;:&#8221;Grocery&#8230;&#8230;&#8230;&#8230;&#8230;&#8230;&#8230;&#8230;&#8230;&#8230;&#8221;,&#8221;published&#8221;:&#8221;2025-11-14T00:00:00&#8243;,&#8221;modified&#8221;:&#8221;2025-11-14T00:00:00&#8243;,&#8221;type&#8221;:&#8221;packetstorm&#8221;,&#8221;title&#8221;:&#8221;\ud83d\udcc4 Grocery Store Management System 1.0 SQL Injection&#8221;,&#8221;source&#8221;:&#8221;&#8221;,&#8221;references&#8221;:&#8221;&#8221;,&#8221;id&#8221;:&#8221;PACKETSTORM:211630&#8243;,&#8221;bulletinFamily&#8221;:&#8221;exploit&#8221;,&#8221;cwe&#8221;:null,&#8221;cvelist&#8221;:[&#8220;CVE-2025-63943&#8243;],&#8221;sourceData&#8221;:&#8221;# CVE-2025-63943 \u2014 SQL Injection in Grocery Store Management System 1.0\\n    \\n    ## Overview\\n    A high-severity **SQL Injection** vulnerability was identified in the `search_products.php` component of **Grocery Store Management System 1.0**, a PHP\/MySQL-based web application created by *anirudhkannan*.  \\n    The issue arises from improper input validation and unsafe construction of SQL queries using the user-controlled `scost` parameter. This flaw enables attackers to manipulate the underlying SQL logic, potentially leading to sensitive data exposure, data alteration, or full compromise of the database.\\n    \\n    &#8212;\\n    \\n    ## Affected Product\\n    &#8211; **Name:** Grocery Store Management System  \\n    &#8211; **Vendor:** anirudhkannan  \\n    &#8211; **Version:** 1.0  \\n    &#8211; **Repository:**  \\n      https:\/\/github.com\/anirudhkannanvp\/GROCERY-STORE-MANAGEMENT-SYSTEM-USING-PHP-AND-MYSQL-PHPMYADMIN-\/tree\/master  \\n    &#8211; **Affected File:**  \\n      `Grocery\/search_products.php`\\n    \\n    &#8212;\\n    \\n    ## Vulnerability Description\\n    The vulnerability exists due to the **direct concatenation of unvalidated user input** into SQL queries.  \\n    The `scost` POST parameter, intended to represent a numeric product cost value, is embedded into the SQL WHERE clause without:\\n    \\n    &#8211; Input sanitization  \\n    &#8211; Type enforcement  \\n    &#8211; Parameterized queries  \\n    &#8211; Prepared statement usage  \\n    \\n    This allows an attacker to inject **arbitrary SQL boolean expressions**, altering query behavior and extracting database contents using **boolean-based SQL Injection** techniques.\\n    \\n    The vulnerability is exploitable through a standard POST request to `search_products.php`. When malicious expressions are supplied, the backend returns measurable response differences (TRUE\/FALSE variations), confirming that user input influences SQL logic.\\n    \\n    &#8212;\\n    \\n    ## Root Cause\\n    &#8211; Lack of server-side validation on the `scost` input field  \\n    &#8211; Direct use of string concatenation for building SQL queries  \\n    &#8211; Absence of prepared statements in the affected code path  \\n    &#8211; No filtering or whitelisting for numeric input fields  \\n    \\n    These conditions collectively enable attackers to modify the intended SQL logic.\\n    \\n    &#8212;\\n    \\n    ## Severity \\u0026 Impact\\n    This vulnerability is rated **High** due to its low attack complexity, lack of authentication requirements, and full read\/write database impact.\\n    \\n    ### Potential Impacts Include:\\n    &#8211; **Sensitive data exposure:** Attackers may extract product, user, or system data.  \\n    &#8211; **Data modification or deletion:** Injected SQL can alter or remove database entries.  \\n    &#8211; **Authentication bypass (possible):** If used in other parts of the application\u2019s query logic.  \\n    &#8211; **Full database compromise:** Depending on DB privileges and configuration.  \\n    &#8211; **System instability:** Malicious queries could disrupt normal application behavior.\\n    \\n    &#8212;\\n    \\n    ## CVSS v3.1 Score (Preliminary Assessment)\\n    **CVSS:3.1\/AV:N\/AC:L\/PR:N\/UI:N\/S:U\/C:H\/I:H\/A:H**\\n    \\n    &#8211; **Attack Vector (AV):** Network  \\n    &#8211; **Attack Complexity (AC):** Low  \\n    &#8211; **Privileges Required (PR):** None  \\n    &#8211; **User Interaction (UI):** None  \\n    &#8211; **Scope (S):** Unchanged  \\n    &#8211; **Confidentiality (C):** High  \\n    &#8211; **Integrity (I):** High  \\n    &#8211; **Availability (A):** High  \\n    \\n    **Estimated Severity: High (9.8)**\\n    \\n    &#8212;\\n    \\n    ## Exploitation Summary\\n    The vulnerability can be exploited through crafted values passed to the `scost` parameter.  \\n    Attackers can:\\n    \\n    &#8211; Influence boolean logic  \\n    &#8211; Trigger conditional responses  \\n    &#8211; Enumerate database structures  \\n    &#8211; Extract sensitive information  \\n    \\n    *(Detailed payloads are intentionally omitted to prevent misuse.)*\\n    \\n    &#8212;\\n    \\n    ## Mitigation \\u0026 Recommendations\\n    \\n    ### For Developers \/ Vendors\\n    To remediate the vulnerability:\\n    \\n    1. **Implement prepared statements \/ parameterized queries**  \\n    2. **Enforce strict input validation** \u2014 ensure `scost` accepts only numeric values  \\n    3. **Reject suspicious characters** \u2014 filter operators, quotes, comments, and expression symbols  \\n    4. **Apply least-privilege database permissions**  \\n    5. **Audit the codebase** for similar patterns elsewhere in the application  \\n    \\n    ### For Users\\n    Until a patch is available:\\n    \\n    &#8211; Restrict public access to the application  \\n    &#8211; Use a firewall or WAF to block malicious requests  \\n    &#8211; Monitor logs for unusual SQL-related behavior\\n    &#8211; \\n    &#8212;\\n    \\n    ## References\\n    &#8211; OWASP SQL Injection: https:\/\/owasp.org\/www-community\/attacks\/SQL_Injection  \\n    &#8211; CWE-89 \u2014 Improper Neutralization of Special Elements in SQL Commands&#8221;,&#8221;sourceHref&#8221;:&#8221;https:\/\/packetstorm.news\/download\/211630&#8243;,&#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:\/\/packetstorm.news\/files\/id\/211630\/&#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-11-14T16:39:06&#8243;,&#8221;description&#8221;:&#8221;Grocery&#8230;&#8230;&#8230;&#8230;&#8230;&#8230;&#8230;&#8230;&#8230;&#8230;&#8221;,&#8221;published&#8221;:&#8221;2025-11-14T00:00:00&#8243;,&#8221;modified&#8221;:&#8221;2025-11-14T00:00:00&#8243;,&#8221;type&#8221;:&#8221;packetstorm&#8221;,&#8221;title&#8221;:&#8221;\ud83d\udcc4 Grocery Store Management System 1.0 SQL Injection&#8221;,&#8221;source&#8221;:&#8221;&#8221;,&#8221;references&#8221;:&#8221;&#8221;,&#8221;id&#8221;:&#8221;PACKETSTORM:211630&#8243;,&#8221;bulletinFamily&#8221;:&#8221;exploit&#8221;,&#8221;cwe&#8221;:null,&#8221;cvelist&#8221;:[&#8220;CVE-2025-63943&#8243;],&#8221;sourceData&#8221;:&#8221;# CVE-2025-63943 \u2014 SQL Injection in Grocery Store Management System 1.0\\n \\n ## Overview\\n A high-severity **SQL Injection**&#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":[6,8,12,13,33,53,7,11,5],"class_list":["post-26279","post","type-post","status-publish","format-standard","hentry","category-category_exploit","tag-cve","tag-cvss","tag-exploit","tag-news","tag-none","tag-packetstorm","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>\ud83d\udcc4 Grocery Store Management System 1.0 SQL Injection_PACKETSTORM:211630 - 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=26279\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"\ud83d\udcc4 Grocery Store Management System 1.0 SQL Injection_PACKETSTORM:211630 - zero redgem\" \/>\n<meta property=\"og:description\" content=\"{&#8220;lastseen&#8221;:&#8221;2025-11-14T16:39:06&#8243;,&#8221;description&#8221;:&#8221;Grocery&#8230;&#8230;&#8230;&#8230;&#8230;&#8230;&#8230;&#8230;&#8230;&#8230;&#8221;,&#8221;published&#8221;:&#8221;2025-11-14T00:00:00&#8243;,&#8221;modified&#8221;:&#8221;2025-11-14T00:00:00&#8243;,&#8221;type&#8221;:&#8221;packetstorm&#8221;,&#8221;title&#8221;:&#8221;\ud83d\udcc4 Grocery Store Management System 1.0 SQL Injection&#8221;,&#8221;source&#8221;:&#8221;&#8221;,&#8221;references&#8221;:&#8221;&#8221;,&#8221;id&#8221;:&#8221;PACKETSTORM:211630&#8243;,&#8221;bulletinFamily&#8221;:&#8221;exploit&#8221;,&#8221;cwe&#8221;:null,&#8221;cvelist&#8221;:[&#8220;CVE-2025-63943&#8243;],&#8221;sourceData&#8221;:&#8221;# CVE-2025-63943 \u2014 SQL Injection in Grocery Store Management System 1.0n n ## Overviewn A high-severity **SQL Injection**...\" \/>\n<meta property=\"og:url\" content=\"https:\/\/zero.redgem.net\/?p=26279\" \/>\n<meta property=\"og:site_name\" content=\"zero redgem\" \/>\n<meta property=\"article:published_time\" content=\"2025-11-14T11:37:35+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=26279#article\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/zero.redgem.net\\\/?p=26279\"},\"author\":{\"name\":\"invoker\",\"@id\":\"https:\\\/\\\/zero.redgem.net\\\/#\\\/schema\\\/person\\\/fbfeae8dfad117ac08a7621bee1a1dca\"},\"headline\":\"\ud83d\udcc4 Grocery Store Management System 1.0 SQL Injection_PACKETSTORM:211630\",\"datePublished\":\"2025-11-14T11:37:35+00:00\",\"mainEntityOfPage\":{\"@id\":\"https:\\\/\\\/zero.redgem.net\\\/?p=26279\"},\"wordCount\":780,\"commentCount\":0,\"publisher\":{\"@id\":\"https:\\\/\\\/zero.redgem.net\\\/#organization\"},\"keywords\":[\"CVE\",\"CVSS\",\"exploit\",\"news\",\"NONE\",\"packetstorm\",\"Security\",\"tapic\",\"Vulnerability\"],\"articleSection\":[\"category_exploit\"],\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"CommentAction\",\"name\":\"Comment\",\"target\":[\"https:\\\/\\\/zero.redgem.net\\\/?p=26279#respond\"]}]},{\"@type\":\"WebPage\",\"@id\":\"https:\\\/\\\/zero.redgem.net\\\/?p=26279\",\"url\":\"https:\\\/\\\/zero.redgem.net\\\/?p=26279\",\"name\":\"\ud83d\udcc4 Grocery Store Management System 1.0 SQL Injection_PACKETSTORM:211630 - zero redgem\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/zero.redgem.net\\\/#website\"},\"datePublished\":\"2025-11-14T11:37:35+00:00\",\"breadcrumb\":{\"@id\":\"https:\\\/\\\/zero.redgem.net\\\/?p=26279#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\\\/\\\/zero.redgem.net\\\/?p=26279\"]}]},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\\\/\\\/zero.redgem.net\\\/?p=26279#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\\\/\\\/zero.redgem.net\\\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"\ud83d\udcc4 Grocery Store Management System 1.0 SQL Injection_PACKETSTORM:211630\"}]},{\"@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":"\ud83d\udcc4 Grocery Store Management System 1.0 SQL Injection_PACKETSTORM:211630 - 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=26279","og_locale":"en_US","og_type":"article","og_title":"\ud83d\udcc4 Grocery Store Management System 1.0 SQL Injection_PACKETSTORM:211630 - zero redgem","og_description":"{&#8220;lastseen&#8221;:&#8221;2025-11-14T16:39:06&#8243;,&#8221;description&#8221;:&#8221;Grocery&#8230;&#8230;&#8230;&#8230;&#8230;&#8230;&#8230;&#8230;&#8230;&#8230;&#8221;,&#8221;published&#8221;:&#8221;2025-11-14T00:00:00&#8243;,&#8221;modified&#8221;:&#8221;2025-11-14T00:00:00&#8243;,&#8221;type&#8221;:&#8221;packetstorm&#8221;,&#8221;title&#8221;:&#8221;\ud83d\udcc4 Grocery Store Management System 1.0 SQL Injection&#8221;,&#8221;source&#8221;:&#8221;&#8221;,&#8221;references&#8221;:&#8221;&#8221;,&#8221;id&#8221;:&#8221;PACKETSTORM:211630&#8243;,&#8221;bulletinFamily&#8221;:&#8221;exploit&#8221;,&#8221;cwe&#8221;:null,&#8221;cvelist&#8221;:[&#8220;CVE-2025-63943&#8243;],&#8221;sourceData&#8221;:&#8221;# CVE-2025-63943 \u2014 SQL Injection in Grocery Store Management System 1.0n n ## Overviewn A high-severity **SQL Injection**...","og_url":"https:\/\/zero.redgem.net\/?p=26279","og_site_name":"zero redgem","article_published_time":"2025-11-14T11:37:35+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=26279#article","isPartOf":{"@id":"https:\/\/zero.redgem.net\/?p=26279"},"author":{"name":"invoker","@id":"https:\/\/zero.redgem.net\/#\/schema\/person\/fbfeae8dfad117ac08a7621bee1a1dca"},"headline":"\ud83d\udcc4 Grocery Store Management System 1.0 SQL Injection_PACKETSTORM:211630","datePublished":"2025-11-14T11:37:35+00:00","mainEntityOfPage":{"@id":"https:\/\/zero.redgem.net\/?p=26279"},"wordCount":780,"commentCount":0,"publisher":{"@id":"https:\/\/zero.redgem.net\/#organization"},"keywords":["CVE","CVSS","exploit","news","NONE","packetstorm","Security","tapic","Vulnerability"],"articleSection":["category_exploit"],"inLanguage":"en-US","potentialAction":[{"@type":"CommentAction","name":"Comment","target":["https:\/\/zero.redgem.net\/?p=26279#respond"]}]},{"@type":"WebPage","@id":"https:\/\/zero.redgem.net\/?p=26279","url":"https:\/\/zero.redgem.net\/?p=26279","name":"\ud83d\udcc4 Grocery Store Management System 1.0 SQL Injection_PACKETSTORM:211630 - zero redgem","isPartOf":{"@id":"https:\/\/zero.redgem.net\/#website"},"datePublished":"2025-11-14T11:37:35+00:00","breadcrumb":{"@id":"https:\/\/zero.redgem.net\/?p=26279#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/zero.redgem.net\/?p=26279"]}]},{"@type":"BreadcrumbList","@id":"https:\/\/zero.redgem.net\/?p=26279#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https:\/\/zero.redgem.net\/"},{"@type":"ListItem","position":2,"name":"\ud83d\udcc4 Grocery Store Management System 1.0 SQL Injection_PACKETSTORM:211630"}]},{"@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\/26279","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=26279"}],"version-history":[{"count":0,"href":"https:\/\/zero.redgem.net\/index.php?rest_route=\/wp\/v2\/posts\/26279\/revisions"}],"wp:attachment":[{"href":"https:\/\/zero.redgem.net\/index.php?rest_route=%2Fwp%2Fv2%2Fmedia&parent=26279"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/zero.redgem.net\/index.php?rest_route=%2Fwp%2Fv2%2Fcategories&post=26279"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/zero.redgem.net\/index.php?rest_route=%2Fwp%2Fv2%2Ftags&post=26279"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}