Advertisement
Guest User

unpyc3.py

a guest
May 1st, 2015
333
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Python 1.27 KB | None | 0 0
  1. [root@localhost tt]# python unpyc3.py ZJ_AimBotShaytan.pyc
  2. testing...
  3. 1817           0 LOAD_BUILD_CLASS
  4.               1 LOAD_CONST               1 (<code object B at 0x7f60591a8b70, file "unpyc3.py", line 1817>)
  5.               4 LOAD_CONST               2 ('B')
  6.               7 MAKE_FUNCTION            0
  7.              10 LOAD_CONST               2 ('B')
  8.              13 LOAD_GLOBAL              0 (A)
  9.              16 CALL_FUNCTION            3 (3 positional, 0 keyword pair)
  10.              19 STORE_FAST               0 (B)
  11.              22 LOAD_CONST               0 (None)
  12.              25 RETURN_VALUE
  13.   0 LOAD_BUILD_CLASS
  14.   1 LOAD_CONST 1
  15.   4 LOAD_CONST 2
  16.   7 MAKE_FUNCTION
  17.   10 LOAD_CONST 2
  18.   13 LOAD_GLOBAL
  19.   16 CALL_FUNCTION 3
  20.   19 STORE_FAST
  21.   22 LOAD_CONST
  22.   25 RETURN_VALUE
  23. Traceback (most recent call last):
  24.   File "unpyc3.py", line 1830, in <module>
  25.     test_suite()
  26.   File "unpyc3.py", line 1824, in test_suite
  27.     dec.run()
  28.   File "unpyc3.py", line 1020, in run
  29.     new_addr = method(addr, arg)
  30.   File "unpyc3.py", line 1581, in MAKE_FUNCTION
  31.     code = Code(self.stack.pop().val, self.code)
  32.   File "unpyc3.py", line 209, in __init__
  33.     for v in code_obj.co_cellvars + code_obj.co_freevars]
  34. AttributeError: 'str' object has no attribute 'co_cellvars'
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement