Umbra Wiki attack-pattern attack-pattern/CAPEC-298
Back to wiki

CAPEC-298 — UDP Ping

provenance: imported · CWE: CWE-200

CAPEC-298: UDP Ping

MITRE CAPEC attack pattern

Status Stable
Typical severity Low
Likelihood of attack
Catalogue CAPEC 3.9 (2023-01-24)

Description

An adversary sends a UDP datagram to the remote host to determine if the host is alive. If a UDP datagram is sent to an open UDP port there is very often no response, so a typical strategy for using a UDP ping is to send the datagram to a random high port on the target. The goal is to solicit an 'ICMP port unreachable' message from the target, indicating that the host is alive. UDP pings are useful because some firewalls are not configured to block UDP datagrams sent to strange or typically unused ports, like ports in the 65K range. Additionally, while some firewalls may filter incoming ICMP, weaknesses in firewall rule-sets may allow certain types of ICMP (host unreachable, port unreachable) which are useful for UDP ping attempts.

Where this sits in the chain

A finding maps to a weakness (CWE), a weakness is exploited by an attack pattern (CAPEC), and an attack pattern shows up in ATT&CK as observed adversary behaviour. This page is the middle hop.

Weaknesses exploited: CWE-200

Prerequisites

  • The adversary requires the ability to send a UDP datagram to a remote host and receive a response.
  • The adversary requires the ability to craft custom UDP Packets for use during network reconnaissance.
  • The target's firewall must not be configured to block egress ICMP messages.

Consequences

  • Confidentiality: Other
  • Confidentiality, Access Control, Authorization: Bypass Protection Mechanism, Hide Activities

Mitigations

  • Configure your firewall to block egress ICMP messages.

Source