You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: rules/cross-platform/reconnaissance_web_server_unusual_user_agents.toml
+10-3Lines changed: 10 additions & 3 deletions
Original file line number
Diff line number
Diff line change
@@ -22,6 +22,7 @@ severity = "low"
22
22
tags = [
23
23
"Domain Scope: Single",
24
24
"Domain: Web",
25
+
"Domain: Network",
25
26
"OS: Linux",
26
27
"OS: macOS",
27
28
"OS: Windows",
@@ -45,7 +46,8 @@ from
45
46
logs-apache_tomcat.access-*,
46
47
logs-iis.access-*
47
48
| where
48
-
@timestamp > now() - 1 hours and
49
+
@timestamp > now() - 1 hours and
50
+
(url.original is not null or url.full is not null) and
49
51
(
50
52
user_agent.original like "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/74.0.3729.169 Safari/537.36" or // Nikto
51
53
user_agent.original like "nikto*" or // Nikto
@@ -62,20 +64,25 @@ from
62
64
user_agent.original like "*nmap*" or // Nmap Scripting Engine
63
65
user_agent.original like "*hydra*" // Hydra Brute Forcer
64
66
)
67
+
68
+
| eval Esql_url_text = case(url.original is not null, url.original, url.full)
0 commit comments