Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- # model user: 1NL33
- # model key: UDDM-PPCT-758P-XK8N
- import random
- output = open("/Users/willmorrison/Desktop/crackCleanScripts/malwarebytes/output.txt", "w")
- possibilityList = [0,1,2,3,4,5,6,7,8,9,'Q','W','E','R','T','Y','U','I','O','P','A','S','D','F','G','H','J','K','L','Z','X','C','V','B','N', 'M']
- letterPossiblities = ['Q','W','E','R','T','Y','U','I','O','P','A','S','D','F','G','H','J','K','L','Z','X','C','V','B','N','M']
- numberPossibilites = [0,1,2,3,4,5,6,7,8,9]
- runTimes = int(input("How many times should this run: "))
- for i in range(runTimes):
- userid = ""
- key = ""
- # make user id
- counter = 0
- for i in range(5):
- if counter == 0 or counter == 3 or counter == 4:
- userid += str(random.choice(numberPossibilites))
- else:
- userid += str(random.choice(letterPossiblities))
- counter += 1
- # make key
- counter = 0
- for i in range(4):
- for i in range(4):
- key += str(random.choice(possibilityList))
- counter += 1
- if counter == 4:
- continue
- else:
- key += "-"
- combo = "{}:{}".format(userid, key)
- output.write(combo + "\n")
- output.close()
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement