modify exe file

Collapse
This topic is closed.
X
X
 
  • Time
  • Show
Clear All
new posts
  • savage

    modify exe file

    how would i write a small app in .net that disassembles an exe like win32dasm?
    what i want to do is search for a specifc asm function and replace it with a
    different function...kind of like hex editing.

    how would i go about doing something like this?
  • Ken Dopierala Jr.

    #2
    Re: modify exe file

    Hi,

    You can use the MSIL dissassembler from Microsoft and then have your EXE
    parse through the output to make your changes.



    This is just a starting point but you should be able to build on it to do
    what you want. Good luck! Ken.

    --
    Ken Dopierala Jr.
    For great ASP.Net web hosting try:

    If you sign up under me and need help, email me.

    "savage" <savage@discuss ions.microsoft. com> wrote in message
    news:3296348B-8C08-4FA6-B1DC-FC3ECB84499F@mi crosoft.com...[color=blue]
    > how would i write a small app in .net that disassembles an exe like[/color]
    win32dasm?[color=blue]
    > what i want to do is search for a specifc asm function and replace it with[/color]
    a[color=blue]
    > different function...kind of like hex editing.
    >
    > how would i go about doing something like this?[/color]


    Comment

    Working...