Advertisement
here2share

# read_bytecode.py

Sep 19th, 2023
848
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Python 0.50 KB | None | 0 0
  1. # read_bytecode.py
  2.  
  3. bytecode_str = b'\x51\x57\x45\x52\x54\x59\x55\x49\x4f\x50\x41\x53\x44\x46\x47\x48\x4a\x4b\x4c\x5a\x58\x43\x56\x42\x4e\x71\x77\x65\x72\x74\x79\x75\x69\x6f\x70\x61\x73\x64\x66\x67\x68\x6a\x6b\x6c\x7a\x78\x63\x76\x62\x6e\x6d\x31\x32\x33\x34\x35\x36\x37\x38\x39\x30\x21\x40\x23\x24\x25\x5e\x26\x2a\x28\x29\x5b\x5d\x7b\x7d\x2b\x60\x7e\x5f\x20\x5c\x7c\x3b\x3a\x27\x22\x2c\x2e\x3c\x3e\x2f\x3f'
  4.  
  5. result = ""
  6.  
  7. for byte in bytecode_str:
  8.     char = chr(byte)
  9.     result += char
  10.  
  11. print(result)
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement