You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Unfortunately ... Yes,
If there is someone try to hack your python code, there is lots way to decrypt .pye to plain text. pyconcrete provide the easy way to encrypt code, but it's not safe enough for the senior python programmer.
If you want to find the more safe encryption way for python, maybe pyconcrete is not the choice.
The other options may be below
modify pyconcrte execution for only execute your entry main pye only.
=> But, can be hack by gdb attach
modify python BYTE CODE rule, but you need to modify and compile python by source
cython is a good idea.
But there is still a way to patch load_module() in runtime.
Build by cython will make user hard to dump it, because user need to do more thing to hack it.
BTW, decrypt_buffer() return value, it should be plaintext as .pyc content. It's not the source of .py
Since result of
decrypt_buffer
is plain, we can reverse the whole source code?The text was updated successfully, but these errors were encountered: