1

While looking inside a binary file in a text editor, I came across some readable text. I have executed the binary before, and know that the readable text is echoed on screen. Is it possible to remove or change some of the text without corrupting the binary file?

Example:

example binary file

Krii
  • 813

1 Answers1

1

Yes, as long as the change you want to make is of identical length.

Also, you must use an appropriate editor for binary....a standard text editor will not work.

If you are Linux based, my favorite is bvi....vi interface with both text and numeric content. Replacement is character by character.

mdpc
  • 4,489