The configuration of the MDNS services allows an attacker to spoof IP addresses effectively hijacking them or causing a denial-of-service. Alternatively, due to a lack of certain security measures, it is possible to intercept requests to mDNS services and obtain information about the connected devices.
Attack vector because it is possible to extract administrative credentials from the process cache.
Disable LLMR and NBT-NS. Configure the firewall to filter incoming connections from UDP 5353 port.
Anonymous attacker from local network.
⌚ 60 minutes.
Default score using CVSS 3.1. It may change depending on the context of the src.
Default score using CVSS 4.0. It may change depending on the context of the src.
Verify that the application does not allow LLMNR and NBT-NS
gateway: "My gateway name"
firewall_service:
enabled: true
policy: 'drop'
log_default_action: true
firewall_rules:
- :id: '1'
:enabled: true
:description: 'disallow_connections'
:policy: 'disallow'
:destination_port_range: '5353'
:destination_ip: '00.01.02.03'
:source_port_range: '5353'
:source_ip: 'Any'
Network configuration that allows LLMNR
gateway: "My gateway name"
firewall_service:
enabled: true
policy: 'drop'
log_default_action: true
firewall_rules:
- :id: '1'
:enabled: true
:llmnr: true
:destination_port_range: '5353'
:destination_ip: '00.01.02.03'
:source_port_range: '5353'
:source_ip: 'Any'