Potential Network Sweep Detected

This rule identifies a potential network sweep. A network sweep is a method used by attackers to scan a target network, identifying active hosts, open ports, and available services to gather information on vulnerabilities and weaknesses. This reconnaissance helps them plan subsequent attacks and exploit potential entry points for unauthorized access, data theft, or other malicious activities. This rule proposes threshold logic to check for connection attempts from one source host to 10 or more destination hosts on commonly used network services.

Elastic rule (View on GitHub)

 1[metadata]
 2creation_date = "2023/05/17"
 3integration = ["endpoint", "network_traffic"]
 4maturity = "production"
 5updated_date = "2024/05/21"
 6
 7[rule]
 8author = ["Elastic"]
 9description = """
10This rule identifies a potential network sweep. A network sweep is a method used by attackers to scan a target network,
11identifying active hosts, open ports, and available services to gather information on vulnerabilities and weaknesses.
12This reconnaissance helps them plan subsequent attacks and exploit potential entry points for unauthorized access, data
13theft, or other malicious activities. This rule proposes threshold logic to check for connection attempts from one
14source host to 10 or more destination hosts on commonly used network services.
15"""
16from = "now-9m"
17index = ["packetbeat-*", "auditbeat-*", "filebeat-*", "logs-network_traffic.*", "logs-endpoint.events.network-*"]
18language = "kuery"
19license = "Elastic License v2"
20max_signals = 5
21name = "Potential Network Sweep Detected"
22risk_score = 21
23rule_id = "781f8746-2180-4691-890c-4c96d11ca91d"
24severity = "low"
25tags = [
26    "Domain: Network",
27    "Tactic: Discovery",
28    "Tactic: Reconnaissance",
29    "Use Case: Network Security Monitoring",
30]
31timestamp_override = "event.ingested"
32type = "threshold"
33
34query = '''
35destination.port : (21 or 22 or 23 or 25 or 139 or 445 or 3389 or 5985 or 5986) and
36source.ip : (10.0.0.0/8 or 172.16.0.0/12 or 192.168.0.0/16)
37'''
38
39
40[[rule.threat]]
41framework = "MITRE ATT&CK"
42[[rule.threat.technique]]
43id = "T1046"
44name = "Network Service Discovery"
45reference = "https://attack.mitre.org/techniques/T1046/"
46
47
48[rule.threat.tactic]
49id = "TA0007"
50name = "Discovery"
51reference = "https://attack.mitre.org/tactics/TA0007/"
52[[rule.threat]]
53framework = "MITRE ATT&CK"
54[[rule.threat.technique]]
55id = "T1595"
56name = "Active Scanning"
57reference = "https://attack.mitre.org/techniques/T1595/"
58[[rule.threat.technique.subtechnique]]
59id = "T1595.001"
60name = "Scanning IP Blocks"
61reference = "https://attack.mitre.org/techniques/T1595/001/"
62
63
64
65[rule.threat.tactic]
66id = "TA0043"
67name = "Reconnaissance"
68reference = "https://attack.mitre.org/tactics/TA0043/"
69
70[rule.threshold]
71field = ["source.ip"]
72value = 1
73[[rule.threshold.cardinality]]
74field = "destination.ip"
75value = 100

Related rules

to-top