Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- molto bene, sei riuscito a risolvere il primo puzzle, ma ora tocca il secondo, dovrai moltiplicare il numero di prima con un avvenimento molto importante sucesso tra il 1400 ed il 1500, poi dovrai moltiplicarlo di nuovo col anno in cui sei nato: quello ti dara il codice che dovrai inserire nel seguente script:
- def xor_encrypt(message, key):
- message_bytes = message.encode('utf-8')
- key_bytes = str(key).encode('utf-8')
- encrypted_message = bytearray()
- for i in range(len(message_bytes)):
- encrypted_message.append(message_bytes[i] ^ key_bytes[i % len(key_bytes)])
- return encrypted_message.hex()
- message = "bW9sdG8gYmVuZSwgdmVkbyBjaGUgc3RhaSBhdmFuemFuZG8uIExhIHBhemllbnphIGUgdHV0dG8="
- key = #metti il codice assicurati che non ci siano punti e che i numeri siano tutti attacati
- encrypted_message = xor_encrypt(message, key)
- print(f"Messaggio cifrato (in esadecimale): {encrypted_message}")
- il numero cifrato diviso due che otterrai sarĂ¡ la password di un sito pastebin, buona fortuna
- PS. ti ho dato un piccolo indizio
- ecco qua il giochetto che ho creato: https://drive.usercontent.google.com/download?id=11LXhWZrPSvSfT_z9j7gFTRKANsUs96jk&export=download&authuser=0 Stai tranquillo ti assicuro che non e un virus
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement