Here's a simple example of what I'm looking for:
A PE file that uses a string table type resource. Say, the id/value of a string resource is as follows:
101 -> "Hello"
Now, on a linux server, I need to modify the PE file so that the value of Hello changes to "Hola", resulting in:
101 -> 'Hola', or may be
101 -> 'bonjour'
so, the new value may increase or decrease the size of the resource.
If you have done this, or know how to do this, I'll greatly appreciate your help.
Thank you.