cscli appsec-rules install crowdsecurity/vpatch-CVE-2025-551821name: crowdsecurity/vpatch-CVE-2025-551822description: 'Detects React RCE via crafted form action parameters exploiting server action handlers'3# This rule is based on the information released by AWS here: https://aws.amazon.com/security/security-bulletins/rss/aws-2025-030/4# We don't have a working exploit at the moment, so it may or may not work as expected.5rules:6 - and:7 - zones:8 - METHOD9 match:10 type: equals11 value: POST12 - zones:13 - HEADERS_NAMES14 transform:15 - lowercase16 match:17 type: regex18 value: '(next-action)|(rsc-action-id)'19 - zones:20 - BODY_ARGS21 transform:22 - urldecode23 - lowercase24 match:25 type: contains26 value: 'status'27 - zones:28 - BODY_ARGS29 transform:30 - urldecode31 - lowercase32 match:33 type: contains34 value: 'resolved_model'35 - zones:36 - BODY_ARGS37 transform:38 - urldecode39 - lowercase40 match:41 type: contains42 value: '$@'4344labels:45 type: exploit46 service: http47 confidence: 348 spoofable: 049 behavior: 'http:exploit'50 label: 'React - RCE'51 classification:52 - cve.CVE-2025-5518253 - attack.T119054 - cwe.CWE-9455