Exploit AES-ECB in json.dump() [closed]
I want to exploit this python code (pycryptodome library is used) using the known-plaintext vulnerability of AES in ECB mode:
def get_user_token(name):
cipher = AES.new(key=key, mode=AES.MODE_ECB)
name = name.encode(‘utf-8’).decod… Continue reading Exploit AES-ECB in json.dump() [closed]