cscli scenarios install crowdsecurity/CVE-2024-0012Detect exploitation of PanOS CVE-2024-0012
1type: trigger2format: 2.03name: crowdsecurity/CVE-2024-00124description: "Detect CVE-2024-0012 exploitation attempts"5filter: |6 let request = Lower(evt.Parsed.request);7 evt.Meta.log_type in ['http_access-log', 'http_error-log'] &&8 evt.Meta.http_status in ['404', '403'] &&9 (request matches '/php/.*/\\.js\\.map' || request matches '/index.php/.*\\.js\\.map')10groupby: "evt.Meta.source_ip"11blackhole: 2m12labels:13 type: exploit14 remediation: true15 classification:16 - attack.T159517 - attack.T119018 - cve.CVE-2024-001219 confidence: 320 spoofable: 021 behavior: "http:exploit"22 label: "CVE-2024-0012"23 service: panos24