I'm dealing with a website that loads a javascript file which eventually sets an AES hash/value (whatever it's called) as a cookie. The file is heavily obfuscated making it hard to understand certain things within. Anyways, I have reversed enough of the file to understand that they are using the cipher block chaining mode (cbc) to generate this value. I also believe I have found the AES key needed to decrypt. However I'm wondering how I could go about decrypting an example cookie (set by the browser) using the AES without knowing the IV.
If it helps, I know for a fact that the AES value (cookie) is always a 48 int array in bytes. The key, from what I can see, ranges from 128-bit to 192-bit.
In summary, I have the encrypted AES value, I believe I have the key. How can I go about decrypting this to in turn be able to generate my own values? Thank you