c++ - Store Data to PE(Portable Executable) -
i have exe binder, 1 binds 2 executables single one, here command line e.g.:
cmd-> binder.exe 1.exe 2.exe
output new binded.exe runs both of 1.exe 2.exe itself.
question: how insert/store additional info/text/data binded.exe binder.exe? later 2.exe 1 runned binded.exe should read info binded.exe. goal is: 1.exe - common exe 2.exe - executable 1 depending on info/text binded.exe, prevent 1.exe running , delete binded.exe disk.
for example, use additional parameter (time, date)
cmd-> binder.exe 1.exe 2.exe 13may
so new binded.exe appear, , binded.exe run untill data isnt expired. 2.exe read data/info time binded.exe , take care deleting bindex.exe coming may 13.
Comments
Post a Comment