Krypton Level 2 β Level 3

cd /krypton/krypton2ls -lafile *


Last updated

cd /krypton/krypton2ls -lafile *


Last updated
Encoded_String = "OMQEMDUEQMEK"
for rotate in range(26):
Decoded_String = ""
for char in Encoded_String:
if char.isupper():
Decoded_String += chr((ord(char) - ord('A') + rotate) % 26 + ord('A'))
else:
Decoded_String += char
print(Decoded_String)vim script.pycat script.pypython3 script.py