PDA

View Full Version : HELP!! How 2 Add Asm Code To Exe File !! Plesa..


renuvivek
10-05-2006, 02:33 AM
Hi..
Im New 2 Assembly,
Plz Any one guide me how to add code and Functions to exe file..

Ex:..
I Want to add Registration check for Notepad.exe
How to find Processor ID In Asm.And How to Use it In Our Code...

Plzz Help Me..
Renuvivek.

renuvivek
10-09-2006, 09:19 PM
Is there anyone for help me...

Silkut
10-30-2006, 08:24 AM
You have to add some code on a special part of the binary, an empty part if it exists.
i.e.

notepad start
JMP myRoutine
notepad run
notepad code
...
myRoutine
check if registered
if not -> registProcess
JMP notepad run

something like that, you can easily find tutos on the web..