V2.fams.cc Official

iv_ct = open('/tmp/enc.bin','rb').read() iv, ct = iv_ct[:16], iv_ct[16:]

# Key derived from the "key" we sent ("ssrf") key_hex = '8c3c5d1e2f4a6b7c9d0e1f2a3b4c5d6e' key = binascii.unhexlify(key_hex) v2.fams.cc

cipher = AES.new(key, AES.MODE_CBC, iv) pt = cipher.decrypt(ct) iv_ct = open('/tmp/enc