-
Notifications
You must be signed in to change notification settings - Fork 164
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
add CVE-2024-1212 vpatch and tests (#1012)
- Loading branch information
1 parent
2189c12
commit f1966a5
Showing
6 changed files
with
83 additions
and
24 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,17 @@ | ||
id: CVE-2024-1212 | ||
info: | ||
name: CVE-2024-1212 | ||
author: crowdsec | ||
severity: info | ||
description: CVE-2024-1212 testing | ||
tags: appsec-testing | ||
http: | ||
- method: GET | ||
path: | ||
- "{{BaseURL}}/access/set?param=enableapi&value=1" | ||
headers: | ||
Authorization: "Basic JztsczsnOmRvZXNub3RtYXR0ZXI=" | ||
matchers: | ||
- type: status | ||
status: | ||
- 403 |
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,3 @@ | ||
appsec-rules: | ||
- ./appsec-rules/crowdsecurity/vpatch-CVE-2024-1212.yaml | ||
nuclei_template: CVE-2024-1212.yaml |
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
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,31 @@ | ||
name: crowdsecurity/vpatch-CVE-2024-1212 | ||
description: "Progress Kemp LoadMaster Unauthenticated Command Injection (CVE-2024-1212)" | ||
rules: | ||
- and: | ||
- zones: | ||
- URI | ||
transform: | ||
- lowercase | ||
match: | ||
type: contains | ||
value: /access/set | ||
- zones: | ||
- HEADERS | ||
variables: | ||
- Authorization | ||
match: | ||
type: contains | ||
value: 'Basic Jzt' #b64encode of '; | ||
labels: | ||
type: exploit | ||
service: http | ||
confidence: 3 | ||
spoofable: 0 | ||
behavior: "http:exploit" | ||
label: "LoadMaster UCI" | ||
references: | ||
- https://rhinosecuritylabs.com/research/cve-2024-1212unauthenticated-command-injection-in-progress-kemp-loadmaster/ | ||
classification: | ||
- cve.CVE-2024-1212 | ||
- attack.T1595 | ||
- attack.T1190 |
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
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