Skip to content
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

Added template for CVE-2024-56337 #11411

Closed
wants to merge 1 commit into from
Closed
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
27 changes: 27 additions & 0 deletions CVE-2024-56337.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,27 @@
id: CVE-2024-56337

info:
name: Apache Tomcat RCE Vulnerability
author: ProjectDiscoveryAI
severity: high
description: |
Apache Tomcat is vulnerable to Remote Code Execution (RCE) on case insensitive file systems with the default servlet write enabled. This occurs when the readonly initialization parameter is set to false. This template attempts to induce an error that reveals the Tomcat version.
reference:
- https://nvd.nist.gov/vuln/detail/CVE-2024-56337

http:
- raw:
- |
GET /?f=[ HTTP/1.1
Host: {{Hostname}}
User-Agent: Nuclei
Accept: */*

matchers-condition: and
matchers:
- type: status
status:
- 500
- type: regex
regex:
- "Apache Tomcat/([0-9]+\\.[0-9]+\\.[0-9]+)"
Loading