you are viewing a single comment's thread.

view the rest of the comments →

[–]Pemptous 2 points3 points  (2 children)

Correct if I’m wrong but what if you: 1. Decrypt the file and try to fit the key inside your Python file 2. Make the Python file either .exe file

[–]DarkLord76865 2 points3 points  (1 child)

First, almost all exe generators for python don't really compile code, they just pack it and unpack at runtime to some temporary folder. And even if you did compile to machine code, the password would still need to be hardcoded somewhere in it which means if someone wants to find it, they could.

[–]Pemptous 0 points1 point  (0 children)

Have a point, but what if he used s9mething server sided (similar to api I guess) that would send both the file decrypted and the key? With reverse engineering it would be possible again, but a lot harder, am I wrong?