dorkbox / PeParser

Windows PE (Portable Executable) file parser for Java 6+
Other
24 stars 4 forks source link

possible to edit / change pe resource ? #1

Closed eix128 closed 9 years ago

eix128 commented 9 years ago

hi , i want to change my jpg images or strings inside my exe. is it possible to find and change resource string or binary , images ? if yes , is there any sample for that?

dorkbox commented 9 years ago

Changing a PE file would be something you would have to implement. While most of the data structure definitions in place (you wouldn't be starting from zero) -- it would be a lot of work.

Off the top of my head, http://www.resedit.net/ might do what you need.

eix128 commented 9 years ago

but i need solution for java. i will implement it inside my opengl project

dorkbox commented 9 years ago

If you implement writing/editing PE files, I will gladly include your work in this project.