How to prevent re-coding exe files made using pyinstaller, etc

Asked 1 years ago, Updated 1 years ago, 103 views

I used to use pyinstaller to make the Python code that I made in the past as exe and distribute it.

This is always a scripting language, and I was worried that making and distributing exe like this could eventually re-coding...

That worry was not an imagination, but a reality.

https://sourceforge.net/projects/pyinstallerextractor/

There's an extrector called.

How do I prevent the exe file I made from being re-coded?

I think there is a way to block any exe from re-coding random calls, not just Python codes.

python pyinstaller

2022-09-21 20:23

1 Answers

It's impossible if it's Python. (In fact, it's impossible if it's not just Python, but all vm-based languages.)

Making exe is also a form of py file using python.dll.

Eventually, you use python.dll to do the pyc file.

Python is just an interpreter.Even if you make it with exe, that personality doesn't disappear.

Pyc is the form in which the py file is compiled, but the symbol information is stored together, so the source is exposed when decompiling.


2022-09-21 20:23

If you have any answers or tips


© 2024 OneMinuteCode. All rights reserved.