fork download
  1. from binascii import hexlify, unhexlify
  2. from Crypto.Cipher import AES
  3. IV = "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00"
  4. key = "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00"
  5. picc = "CACDEC6C5455EE52BB1DA40470963113"
  6. myaes = AES.new(key,AES.MODE_CBC,IV)
  7. okay = myaes.decrypt(unhexlify(picc))
  8. counter=int("0x"+hexlify(okay[9:10])+hexlify(okay[8:9]),16)
  9. print counter
  10.  
Success #stdin #stdout 0.01s 7328KB
stdin
Standard input is empty
stdout
261