Reputation: 1
I have a python pyarmor obfuscated which i want to deobfuscate.
The pyarmor obfuscated file contains the below
Can i get a means of getting back the source code wrapped in the pyarmor?
from pyarmor_runtime_000000 import __pyarmor__
__pyarmor__(__name__, __file__, b'PY000000 /* .... etc ....)
I have tried using unpyarmor. I did not get a breakthrough.
Upvotes: -1
Views: 2563
Reputation: 1
Please check the version of your pyarmor encryption. If it is v7 version. You can see this project https://github.com/Svenskithesource/PyArmor-Unpacker. If it's v8, then you need to know a little bit about pyarmor principles and python source code knowledge to restore the bytecode (provided the encryption used is not in bbc mode, etc.)
Upvotes: 0