do i need just to get the key for my input or understand the keygen process itself !! |
==> |
to get the password with the harden password:
lst=[0x33, 0x73,0x70,0x31,0x72,0x48,0x2f,0x64,0x64,0x31,0x6e,0x50,0x5f,0x33,0x33,0x75,0x30,0x72,0x64] # harden password
lst2=[]
for i in lst:
lst2.append(int(i+0x1))
for x in lst2:
if i%2 == 0:
print(chr(i+1), end="")
else:
print(chr(i-1), end="")
#now it will print the password, the algorithm dependence on if the ascii value of the character is even, then add one to it, and if it's odd, then minus one. |
==> |