View Single Post
  #3  
Old 06-28-2008, 08:05
dj-siba's Avatar
dj-siba dj-siba is offline
Musician Member
 
Join Date: Jun 2003
Location: Outside the dot
Posts: 324
Rept. Given: 34
Rept. Rcvd 43 Times in 21 Posts
Thanks Given: 56
Thanks Rcvd at 159 Times in 43 Posts
dj-siba Reputation: 42
Hi

check out this PEFile C++ class by in4matics / AT4RE
Code:
http://www.at4re.com/f/showthread.php?t=2353
example
Code:
PEFile pe("1.exe"); 
pe.addSection(".at4re", 0x1000, false);
char* functions[] = { "MessageBoxA", "ShowWindow" }; 
pe.addImport("user32.dll", functions, 2); 
pe.saveToFile("1+.exe");
download
Code:
www.at4re.com/tools/Releases/in4matics/m-PEFile.zip
Reply With Quote