1. #Coded by L1v3w1R3K0derz
  2.  
  3. #import os
  4. ##########################################
  5. #Hello! this is what the future "project"#
  6. #will look like, except for it will have #
  7. #UpperLower/Alphanemerical base and a    #
  8. #Password length of 12 =P                #
  9. ##########################################
  10.  
  11. ##########################################
  12. #UPDATE: PREVIOUS PASTE FROM TODAY WAS   #
  13. #NOT FIXED, NOW IT IS. ;P                #
  14. #INFO ALPHA/NUM/UPPER/LOWER              #
  15. ##########################################
  16.  
  17.  
  18.  
  19. #Version 1.1.0
  20. #Error Free Code ;]
  21. #Just testing output readings :D
  22. #Password length = 8
  23. #Android only
  24. #import android
  25. #Android only
  26. #droid = android.Android()
  27.  
  28. ABCvar = ["", "0", "1", "2", "3", "4", "5", "6", "7", "8", "9", "a", "b", "c", "d", "e", "f", "g", "h", "i", "j", "k", "l", "m", "n", "o", "p", "q", "r", "s", "t", "u", "v", "w", "x", "y", "z", "A", "B", "C", "D", "E", "F", "G", "H", "I", "J", "K", "L", "M", "N", "O", "P", "Q","R", "S", "T", "U", "V", "W", "X", "Y", "Z"]
  29.  
  30. spot = [0, 0, 0, 0, 0, 0, 0, 1]
  31.  
  32. password = [0, 0, 0, 0, 0, 0, 0, 0]
  33.  
  34. count = 0
  35.  
  36. debug = ""
  37.  
  38. brute = ""
  39.  
  40. boolean = [False, False, False, False, False, False, False, False]
  41.  
  42. while count < 45:
  43.    password[0] = ABCvar[spot[0]]
  44.    password[1] = ABCvar[spot[1]]
  45.    password[2] = ABCvar[spot[2]]
  46.    password[3] = ABCvar[spot[3]]
  47.    password[4] = ABCvar[spot[4]]
  48.    password[5] = ABCvar[spot[5]]
  49.    password[6] = ABCvar[spot[6]]
  50.    password[7] = ABCvar[spot[7]]
  51. #   password[8] = ABCvar[spot[8]]
  52. #   password[9] = ABCvar[spot[9]]
  53. #   password[10] = ABCvar[spot[10]]
  54. #   password[11] = ABCvar[spot[11]]
  55.    brute = "".join(password)
  56.    print brute
  57.  
  58. #if password[11] == "Z":
  59. #   boolean[11] = True
  60.  
  61. #if password[10] == "Z":
  62. #   boolean[10] = True
  63.  
  64. #if password[9] == "Z":
  65. #   boolean[9] = True
  66.  
  67. #if password[8] == "Z":
  68. #   boolean[8] = True
  69.  
  70.    if password[7] == "Z":
  71.       boolean[7] = True
  72.  
  73.       if password[6] == "Z":
  74.          boolean[6] = True
  75.  
  76.          if password[5] == "Z":
  77.             boolean[5] = True
  78.      
  79.             if password[4] == "Z":
  80.                boolean[4] = True
  81.  
  82.                if password[3] == "Z":
  83.                   boolean[3] = True
  84.                   #os.system("clear")
  85.  
  86.                   if password[2] == "Z":
  87.                      boolean[2] = True
  88.  
  89.                      if password[1] == "Z":
  90.                         boolean[1] = True
  91.  
  92.                         if password[0] == "Z":
  93.                            boolean[0] = True
  94.  
  95.    if boolean[0] and (boolean[1] and boolean[2] and boolean[3] and boolean[4] and boolean[5] and boolean[6] and boolean[7]) == True:
  96.       count = 100
  97.  
  98.  
  99.    if boolean[1] and (boolean[2] and boolean[3] and boolean[4] and boolean[5] and boolean[6] and boolean[7]) == True and boolean[0] == False:
  100.  
  101.       spot[7] = 0
  102.       spot[6] = 1
  103.       spot[5] = 1
  104.       spot[4] = 1
  105.       spot[3] = 1
  106.       spot[2] = 1
  107.       spot[1] = 1
  108.       spot[0] = spot[0] + 1
  109.       boolean = [False, False, False, False, False, False, False, False]
  110.  
  111.    if boolean[2] and (boolean[3] and boolean[4] and boolean[5] and boolean[6] and boolean[7]) == True and (boolean[0] and boolean[1]) == False:
  112.  
  113.       spot[7] = 0
  114.       spot[6] = 1
  115.       spot[5] = 1
  116.       spot[4] = 1
  117.       spot[3] = 1
  118.       spot[2] = 1
  119.       spot[1] = spot[1] + 1
  120.       boolean = [False, False, False, False, False, False, False, False]
  121.  
  122.    if boolean[3] and (boolean[4] and boolean[5] and boolean[6] and boolean[7]) == True and (boolean[0] and boolean[1] and boolean[2]) == False:
  123.      
  124.       spot[7] = 0
  125.       spot[6] = 1
  126.       spot[5] = 1
  127.       spot[4] = 1
  128.       spot[3] = 1
  129.       spot[2] = spot[2] + 1
  130.       boolean = [False, False, False, False, False, False, False, False]
  131.  
  132.    if boolean[4] and (boolean[5] and boolean[6] and boolean[7]) == True and (boolean[0] and boolean[1] and boolean[2] and boolean[3]) == False:
  133.  
  134.       spot[7] = 0
  135.       spot[6] = 1
  136.       spot[5] = 1
  137.       spot[4] = 1
  138.       spot[3] = spot[3] + 1
  139.       boolean = [False, False, False, False, False, False, False, False]
  140.  
  141.    if boolean[5] and (boolean[6] and boolean[7]) == True and (boolean[0] and boolean[1] and boolean[2] and boolean[3] and boolean[4]) == False:
  142.  
  143.       spot[7] = 0
  144.       spot[6] = 1
  145.       spot[5] = 1
  146.       spot[4] = spot[4] + 1
  147.       boolean = [False, False, False, False, False, False, False, False]
  148.  
  149.    if boolean[6] and boolean[7] == True and (boolean[0] and boolean[1] and boolean[2] and boolean[3] and boolean[4] and boolean[5]) == False:
  150.  
  151.       spot[7] = 0
  152.       spot[6] = 1
  153.       spot[5] = spot[5] + 1
  154.       boolean = [False, False, False, False, False, False, False, False]
  155.  
  156.    if boolean[7] == True and (boolean[0] and boolean[1] and boolean[2] and boolean[3] and boolean[4] and boolean[5] and boolean[6]) == False:
  157.  
  158.       spot[7] = 0
  159.       spot[6] = spot[6] + 1
  160.       boolean = [False, False, False, False, False, False, False, False]
  161.  
  162.  
  163.  
  164.    spot[7] = spot[7] + 1
  165. print "complete"