COMer
COMer

Reputation: 1137

Is there an editing tool to create a binary PE file in windows?

This answer provided a way to create a binary file in linux, is there such a convenient tool for windows?

Upvotes: 0

Views: 631

Answers (3)

Vlad
Vlad

Reputation: 367

You can start from here: http://www.phreedom.org/solar/code/tinype/ , then modify one of the files using a PE editor (e.g. CFF Explorer).

Programmatically, in Python you can use pefile to read/write the PE structure.

Upvotes: 1

dgarcia
dgarcia

Reputation: 249

Try LordPE or PEBrowser.

Upvotes: 1

crazyscot
crazyscot

Reputation: 11989

Recompile those tools on windows? Shouldn't be too hard to do against a cygwin or mingw base environment.

Upvotes: 0

Related Questions