Files obfuscated with --no-bytecode true are not supported by the website
Why?
Okay so, if you pass this argument while using sourcedefender encrypt, the result is:
- SourceDefender Data (iv, ciphertext) (everything b85 encoded)
- Inside ciphertext there is no readable python code. There is a compiled python code called (.pyc) which have to be decompiled with pylingual pycdc or any other decompiler. Thats why it is not yet supported.
I hope we will support this soon.
If script is compiled with this argument website will show Error: unreachable
If you really need to decrypt this right now and you cant wait please visit our another repository.
We implemented full decryption for this mode also. If the script was obfuscated with this arguemnt our python decryption script will yield .pyc file. Then pass to pylingual and you are there.
Repo: https://github.com/GuardianN06/SourceUndefender
Files obfuscated with
--no-bytecode trueare not supported by the websiteWhy?
Okay so, if you pass this argument while using sourcedefender encrypt, the result is:
I hope we will support this soon.
If script is compiled with this argument website will show
Error: unreachableIf you really need to decrypt this right now and you cant wait please visit our another repository.
We implemented full decryption for this mode also. If the script was obfuscated with this arguemnt our python decryption script will yield .pyc file. Then pass to pylingual and you are there.
Repo: https://github.com/GuardianN06/SourceUndefender