How to Change Magic Key of Pyinstaller Using BootLoader ? #5988
-
I am a user of Pyinstaller Since 3 years.I like pyinstaller most than any other exe makers Because of its simplicity. |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment 23 replies
-
While you could change the MAGIC string in both bootloader and python-based CArchive writer, I doubt that would offer you any extra "protection". I mean, if someone wanted to decompile your program, they could simply check the binary for the new magic value and adjust the (And by the way, PyInstaller comes with its own |
Beta Was this translation helpful? Give feedback.
While you could change the MAGIC string in both bootloader and python-based CArchive writer, I doubt that would offer you any extra "protection". I mean, if someone wanted to decompile your program, they could simply check the binary for the new magic value and adjust the
pyiextractor
(or the underylingpyinstaller
) code to handle that as well...(And by the way, PyInstaller comes with its own
pyi-archive_viewer
tool that allows extraction of data from the executable-embedded archive(s)...)