Suspicious User-Agents Related To Recon Tools

Detects known suspicious (default) user-agents related to scanning/recon tools

Sigma rule (View on GitHub)

 1title: Suspicious User-Agents Related To Recon Tools
 2id: 19aa4f58-94ca-45ff-bc34-92e533c0994a
 3status: test
 4description: Detects known suspicious (default) user-agents related to scanning/recon tools
 5references:
 6    - https://github.com/commixproject/commix/blob/c7f1447371524427bb30abe731235acc7386153b/src/utils/settings.py#L281
 7    - https://github.com/epi052/feroxbuster/blob/ffdf871abe0a358a1531ba4135e208d4dbe8fc31/src/config/utils.rs#L100
 8    - https://github.com/ffuf/ffuf/blob/ce3cf6bd733a24d3a9f024305234c1a6298198eb/pkg/runner/simple.go#L130
 9    - https://github.com/lanmaster53/recon-ng/blob/9e907dfe09fce2997f0301d746796408e01a60b7/recon/core/base.py#L92
10    - https://github.com/nmap/nmap/blob/2e47fa87469fd358ef64689d2d2de7294e385eb8/nselib/http.lua#L160
11    - https://github.com/OJ/gobuster/blob/d20300cc46096984565e82fb73a45bf8d281b990/libgobuster/helpers.go#L124
12    - https://github.com/sqlmapproject/sqlmap/blob/be216041e2f255ae43b050d466bd5bf92681e665/lib/core/settings.py#L29
13    - https://github.com/sullo/nikto/blob/999670cb6a939b6c93840ce666941756e4c5dcf5/program/plugins/nikto_core.plugin#L3515
14    - https://github.com/urbanadventurer/WhatWeb/blob/d279d93042d034f3fd29d5a893d44ccc0595d3f8/lib/whatweb.rb#L68
15    - https://github.com/wpscanteam/wpscan/blob/4f1ce142b9768044be3e35bd0cddf1052e35efe8/lib/wpscan/browser.rb#L32
16    - https://github.com/xmendez/wfuzz/blob/2263cd0932fef333118cd197656f709141bab615/src/wfuzz/facade.py#L43
17    - https://github.com/zmap/zgrab2/blob/e91fc9860ca6611eb7c6fe7d2fe2be70212a37ba/modules/http/scanner.go#L54
18author: Nasreddine Bencherchali (Nextron Systems), Tim Shelton
19date: 2022-07-19
20modified: 2026-06-11
21tags:
22    - attack.initial-access
23    - attack.t1190
24logsource:
25    category: webserver
26detection:
27    selection:
28        cs-user-agent|contains:
29            # Add more tools as you see fit
30            - 'commix/'
31            - 'feroxbuster/'
32            - 'Fuzz Faster U Fool'
33            - 'GIS - AppSec Team - Project Vision'
34            - 'gobuster/'
35            - 'Nikto/'
36            - 'Nmap Scripting Engine'
37            - 'Recon-ng/v'
38            - 'sqlmap/'
39            - 'WhatWeb/'
40            - 'Wfuzz/'
41            - 'WPScan v'
42            - 'zgrab/'
43    condition: selection
44falsepositives:
45    - Unknown
46level: medium

References

Related rules

to-top