cscli appsec-rules install crowdsecurity/experimental-no-user-agent1name: crowdsecurity/experimental-no-user-agent2description: "Protect against no user agent"3rules:4## Useragent header does not exist5 - and:6 - zones:7 - METHOD8 match:9 type: regex10 value: '^GET|POST|PUT|DELETE|PATCH$'11 - zones:12 - HEADERS13 variables:14 - "User-Agent"15 transform:16 - count17 match:18 type: equals19 value: "0"2021222324labels:25 type: exploit26 service: http27 confidence: 028 spoofable: 029 behavior: "http:exploit"30 label: "Protect against no user agent"31 classification:32 - attack.T159533 - attack.T119034