Skip to content

Commit c4f95d5

Browse files
[Rule Tuning] Accepted Default Telnet Port Connection (#6204)
* Filter out network scanning
1 parent cdff270 commit c4f95d5

1 file changed

Lines changed: 7 additions & 4 deletions

File tree

rules/network/command_and_control_accepted_default_telnet_port_connection.toml

Lines changed: 7 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
creation_date = "2020/02/18"
33
integration = ["network_traffic", "panw", "fortinet_fortigate", "sonicwall_firewall", "suricata"]
44
maturity = "production"
5-
updated_date = "2026/04/10"
5+
updated_date = "2026/05/27"
66

77
[rule]
88
author = ["Elastic"]
@@ -94,9 +94,12 @@ query = '''
9494
(data_stream.dataset:(fortinet_fortigate.log or network_traffic.flow
9595
or sonicwall_firewall.log or suricata.eve or panw.panos)
9696
or event.category:(network or network_traffic))
97-
and event.type:(connection and not end) and not event.action:(
98-
flow_dropped or flow_denied or denied or deny or
99-
flow_terminated or timeout or Reject or network_flow)
97+
and event.type:(connection and not end)
98+
and not event.action:(flow_dropped or flow_denied or denied or deny or
99+
flow_terminated or timeout or Reject or network_flow or connection-denied or
100+
connection-end or server-rst or client-rst)
101+
and not (event.action:netflow_flow and not network.packets > 1)
102+
and not network.application:(traceroute or stretchoid-scanning)
100103
and destination.port:23
101104
'''
102105

0 commit comments

Comments
 (0)