| you dont need to patch it, only understand the algorithm |
12:46 PM 11/24/2020 |
==> |
| N1c3 :) |
12:46 PM 11/24/2020 |
==> |
| THX Yuri, so good for a begginer, very funny =) |
8:18 AM 09/22/2020 |
==> |
| 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) |
8:17 AM 09/22/2020 |
==> |