Is it possible to perform a known-plaintext attack to extract the key from AES byte encryption?
The encryption is setup with the following two lines:
ctr = Counter.new(128)
crypt = AES.new(key, AES.MODE_CTR, counter=ctr)
And we have both the plaintext and the ciphertext