cscli scenarios install crowdsecurity/CVE-2024-9474
Detect exploitation of PanOS CVE-2024-9474
1type: trigger2format: 2.03name: crowdsecurity/CVE-2024-94744description: "Detect CVE-2024-9474 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 evt.Meta.http_verb == 'POST' &&10 request contains '/php/utils/createremoteappwebsession.php/watchtowr.js.map'11groupby: "evt.Meta.source_ip"12blackhole: 2m13labels:14 type: exploit15 remediation: true16 classification:17 - attack.T159518 - attack.T119019 - cve.CVE-2024-947420 confidence: 321 spoofable: 022 behavior: "http:exploit"23 label: "CVE-2024-9474"24 service: panos25