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