Don't like this style? Click here to change it! blue.css

LOGIN:
Welcome .... Click here to logout

AES Encryption

ECB Mode

Learn by doing

https://replit.com/new/python3 Use this to make a python terminal. If you have your own environment, great use that.

Include pycryptodome and pwntools using the little cube interface.

    
from Crypto.Cipher import AES
from pwn import *
key=b"andy love simone"
cipher = AES.new(key,AES.MODE_ECB)
ciphertext = cipher.encrypt(b"A"*16)
print(ciphertext.hex())
    
    

Decrypt 1778c8baaa5b5488a666e64a356122e2ace3fc276f3be28c23729f217fcd3371 using the same key

Solve the following flag:

Solve the following flag: