|
ByteDelta
Would anyone be interested in a command line app to generate a byte delta/diff of two executables of the same length.
Example Usage ByteDelta oem.exe patched_oem.exe
Output option is just plain text delta
Offset | OEM | Ptch_OEM |
---------+---------+-------------+
00000088| F1 | 06 |
Or the optional .NET function and/or code to be used for patching..
offsetValueToPatch[0x0088] = 0x06;
|