I would like to know how can i generate an executable using python or c/c++ (or any other langagues) from a program already compiled.
For instance: I have an executable program.exe with a textbox and a button. You type any text you want in the textbox and when you click the button, it generates an executable that can display text you have typed before.
Many keylogger or malware builder does this, they generate a server.exe depends on parameters you have given (email / ftp address).
I would have suggested to generate a source code on a file and compiled it after but what if you don't have the compiler installed in your computer? Do you have any clues doing this?