Detect ARP Poisoning

Original Source: [splunk source]
Name:Detect ARP Poisoning
id:b44bebd6-bd39-467b-9321-73971bcd1aac
version:4
date:2024-10-17
author:Mikael Bjerkeland, Splunk
status:experimental
type:TTP
Description:The following analytic detects ARP Poisoning attacks by monitoring for Dynamic ARP Inspection (DAI) errors on Cisco network devices. It leverages logs from Cisco devices, specifically looking for events where the ARP inspection feature has disabled an interface due to suspicious activity. This activity is significant because ARP Poisoning can allow attackers to intercept, modify, or disrupt network traffic, leading to potential data breaches or denial of service. If confirmed malicious, this could enable attackers to perform man-in-the-middle attacks, compromising the integrity and confidentiality of network communications.
Data_source:
search:`cisco_networks` facility="PM" mnemonic="ERR_DISABLE" disable_cause="arp-inspection"
| eval src_interface=src_int_prefix_long+src_int_suffix
| stats min(_time) AS firstTime max(_time) AS lastTime count BY host src_interface
| `security_content_ctime(firstTime)`|`security_content_ctime(lastTime)`| `detect_arp_poisoning_filter`


how_to_implement:This search uses a standard SPL query on logs from Cisco Network devices. The network devices must be configured with DHCP Snooping (see https://www.cisco.com/c/en/us/td/docs/switches/lan/catalyst2960x/software/15-0_2_EX/security/configuration_guide/b_sec_152ex_2960-x_cg/b_sec_152ex_2960-x_cg_chapter_01101.html) and Dynamic ARP Inspection (see https://www.cisco.com/c/en/us/td/docs/switches/lan/catalyst2960x/software/15-2_2_e/security/configuration_guide/b_sec_1522e_2960x_cg/b_sec_1522e_2960x_cg_chapter_01111.html) and log with a severity level of minimum "5 - notification". The search also requires that the Cisco Networks Add-on for Splunk (https://splunkbase.splunk.com/app/1467) is used to parse the logs from the Cisco network devices.
known_false_positives:This search might be prone to high false positives if DHCP Snooping or ARP inspection has been incorrectly configured, or if a device normally sends many ARP packets (unlikely).
References:
drilldown_searches:
  :
tags:
  analytic_story:
    - 'Router and Infrastructure Security'
  asset_type:Infrastructure
  confidence:50
  impact:50
  message:tbd
  mitre_attack_id:
    - 'T1200'
    - 'T1498'
    - 'T1557'
    - 'T1557.002'
  observable:
    name:'dest'
    type:'Other'
    - role:
      - 'Victim'
  product:
    - 'Splunk Enterprise'
    - 'Splunk Enterprise Security'
    - 'Splunk Cloud'
  required_fields:
    - '_time'
    - 'facility'
    - 'mnemonic'
    - 'disable_cause'
    - 'src_int_prefix_long'
    - 'src_int_suffix'
    - 'host'
    - 'src_interface'
  risk_score:25
  security_domain:network

tests:
  :
manual_test:None

Related Analytic Stories


Router and Infrastructure Security