fork download
  1. import binascii
  2.  
  3. # Hex string bez "0x" prefiksa
  4. encoded_data = "00000000000000000000000000000000000000000000000000000000000000400000000000000000000000000000000000000000000000000de0b6b3a7640000000000000000000000000000000000000000000000000000000000000000000100000000000000000000000083c4fc22b2717fb80b26277a1e901e6bcf5c5b5e"
  5.  
  6. # ABI format stringa: offset (64 bajta) + dužina stringa (64 bajta) + stvarni string
  7. # Preskačemo prva 64 bajta (offset)
  8. decoded_hex = encoded_data[128:]
  9.  
  10. # Pretvaramo u ASCII string
  11. secret_key = bytearray.fromhex(decoded_hex).decode(errors="ignore")
  12.  
  13. print("Secret Key:", secret_key.strip("\x00")) # Uklanja nepotrebne nule
  14.  
Success #stdin #stdout 0.02s 7372KB
stdin
Standard input is empty
stdout
('Secret Key:', u'\x01\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00"q\x7f\x0b&\'z\x1e\x1ek\\[^')