Detection: Internal Horizontal Port Scan NMAP Top 20

Description

This analytic identifies instances where an internal host has attempted to communicate with 250 or more destination IP addresses using on of the NMAP top 20 ports. Horizontal port scans from internal hosts can indicate reconnaissance or scanning activities, potentially signaling malicious intent or misconfiguration. By monitoring network traffic logs, this detection helps detect and respond to such behavior promptly, enhancing network security and preventing potential threats.

 1
 2| tstats `security_content_summariesonly` values(All_Traffic.action) as action values(All_Traffic.src_category) as src_category values(All_Traffic.dest_zone) as dest_zone values(All_Traffic.src_zone) as src_zone values(All_Traffic.src_port) as src_port dc(All_Traffic.dest_ip) as totalDestIPCount count min(_time) as firstTime max(_time) as lastTime values(All_Traffic.rule) as rule from datamodel=Network_Traffic
 3where All_Traffic.src_ip IN ("10.0.0.0/8","172.16.0.0/12","192.168.0.0/16") AND All_Traffic.dest_port IN (21, 22, 23, 25, 53, 80, 110, 111, 135, 139, 143, 443, 445, 993, 995, 1723, 3306, 3389, 5900, 8080)
 4by All_Traffic.src_ip All_Traffic.dest_port All_Traffic.transport span=1h _time
 5
 6| `drop_dm_object_name("All_Traffic")`
 7
 8| where totalDestIPCount>=250
 9
10| eval dest_port=transport + "/" + dest_port
11
12| stats min(firstTime) as firstTime max(lastTime) as lastTime values(action) as action sum(totalDestIPCount) as totalDestIPCount values(src_category) as src_category values(dest_port) as dest_ports dc(dest_port) as num_ports_scanned values(dest_zone) as dest_zone values(src_zone) as src_zone values(rule) as rule by _time src_ip
13
14| fields - _time
15
16| `security_content_ctime(lastTime)`
17
18| `security_content_ctime(firstTime)`
19
20| `internal_horizontal_port_scan_nmap_top_20_filter`

Data Source

Name Platform Sourcetype Source
AWS CloudWatchLogs VPCflow AWS icon AWS 'aws:cloudwatchlogs:vpcflow' 'aws_cloudwatchlogs_vpcflow'
Cisco Secure Firewall Threat Defense Connection Event Other 'cisco:sfw:estreamer' 'not_applicable'

Macros Used

Name Value
security_content_ctime convert timeformat="%Y-%m-%dT%H:%M:%S" ctime($field$)
internal_horizontal_port_scan_nmap_top_20_filter search *
internal_horizontal_port_scan_nmap_top_20_filter is an empty macro by default. It allows the user to filter out any results (false positives) without editing the SPL.

Annotations

Default Configuration

This detection is configured by default in Splunk Enterprise Security to run with the following settings:

Setting Value
Disabled true
Cron Schedule 0 * * * *
Earliest Time -70m@m
Latest Time -10m@m
Schedule Window auto
Creates Notable Yes
Rule Title %name%
Rule Description %description%
Notable Event Fields user, dest
Creates Risk Event True
This configuration file applies to all detections of type TTP. These detections will use Risk Based Alerting and generate Notable Events.

Implementation

To properly run this search, Splunk needs to ingest data from networking telemetry sources such as firewalls like Cisco Secure Firewall, NetFlow, or host-based networking events. Ensure that the Network_Traffic data model is populated to enable this search effectively.

Known False Positives

Unknown

Associated Analytic Story

Risk Based Analytics (RBA)

Risk Message:

$src_ip$ has scanned for ports $dest_ports$ across $totalDestIPCount$ destination IPs

Risk Object Risk Object Type Risk Score Threat Objects
src_ip system 50 No Threat Objects

Detection Testing

Test Type Status Dataset Source Sourcetype
Validation Passing N/A N/A N/A
Unit Passing Dataset aws:cloudwatchlogs:vpcflow aws:cloudwatchlogs:vpcflow
Integration ✅ Passing Dataset aws:cloudwatchlogs:vpcflow aws:cloudwatchlogs:vpcflow

Replay any dataset to Splunk Enterprise by using our replay.py tool or the UI. Alternatively you can replay a dataset into a Splunk Attack Range


Source: GitHub | Version: 8