you dont need to patch it, only understand the algorithm |
==> |
N1c3 :) |
==> |
THX Yuri, so good for a begginer, very funny =) |
==> |
import string
import random
import time
import os
while True:
chars = string.ascii_letters
key = ""
for i in range(8):
c1 = random.choice(chars)
c2 = chr(ord(c1) + 1)
key += c1 + c2
print(key)
cmd = "./SimpleKeyGen " + key
os.system(cmd)
time.sleep(2) |
==> |