Hi
How can I obfuscate my EXE program which is “compiled” with PyInstaller to avoid reverse engineer?
My exe file contain my mail and password which is send me ip address and log files.
The orginal script is .py python script.
This code below I would like to obfuscate it,sender and password i especially the password.
SMTP_SERVER = 'smtp.gmail.com'
SMTP_PORT = 587
sender = "Mymail@gmail.com"
password = "Mypasswd"
recipient = sender
subject = 'Python emaillib Test'
I will appriciate your help