Skip to content

Instantly share code, notes, and snippets.

@CreateRemoteThread
Created April 5, 2017 13:48
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save CreateRemoteThread/0af05fca7d6025515c21b46508f87a3f to your computer and use it in GitHub Desktop.
Save CreateRemoteThread/0af05fca7d6025515c21b46508f87a3f to your computer and use it in GitHub Desktop.
#!/usr/bin/python2.7
import random
def generate_combination():
numbers = ""
for _ in range(10):
rand_num = random.randint(0, 99)
if rand_num < 10:
numbers += "0"
numbers += str(rand_num)
if _ != 9:
numbers += "-"
return numbers
for i in range(0,65535):
random.seed(i)
if generate_combination() == "14-62-77-25-55-90-44-22-98-79":
print generate_combination()
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment