PDA

View Full Version : Hex editing


v777tony
09-15-2006, 03:37 AM
Hey ppls, I've just started to get into hex and binary editing. And I can't figure out how to get the File Version info tab. When you right-click then go to properties. Could someone help me. I've gotten it there. it's just that none of my info I enter shows.

v777tony
09-20-2006, 02:08 AM
NO REPLIES!!! whad up wit dat?

v777tony
11-23-2006, 04:51 AM
Has no one hex edited?

Gox
11-23-2006, 09:12 AM
Nope sorry, can't say I've every come across a need to hex edit anything.

v777tony
11-24-2006, 12:48 AM
damn... guess everyone just uses scripts...

felgall
11-24-2006, 01:50 AM
The last time I did any hex editing was about 23 years ago. Haven't had any need for it since then.

v777tony
01-27-2007, 12:45 AM
23 Yrs is more than my life...

ghell
01-28-2007, 03:11 PM
You probably got no replies because:

- this is a "Computer Programming" forum, and hex editing isn't computer programing so you're not talking to the correct audience

- the version part of the file depends on which type of file you are using, for example plaintext files have no file version. pdf files probably have a version somewhere but it may be in an embedded xml string or whatever rather than at a given offset. windows native executables may have a file version at a given offset in their header that is specific to windows native executables (i don't know what that offset is)

v777tony
01-29-2007, 04:42 AM
You probably got no replies because:

- this is a "Computer Programming" forum, and hex editing isn't computer programing so you're not talking to the correct audience

- the version part of the file depends on which type of file you are using, for example plaintext files have no file version. pdf files probably have a version somewhere but it may be in an embedded xml string or whatever rather than at a given offset. windows native executables may have a file version at a given offset in their header that is specific to windows native executables (i don't know what that offset is)
A standard Win32 executable file.

Mhtml
01-29-2007, 10:46 AM
What are you specifically trying to do? You're are exactly clear.

v777tony
01-30-2007, 03:38 PM
What are you specifically trying to do? You're are exactly clear.Modify or otherwise put version info into a Win32 executable file. Ya know the stuff that shows the file name, version, company name, ect. ect.

Roelf
01-30-2007, 03:48 PM
That information is put there by the compiler, based on information you specify yourself. If you want to change the info in a file from someone else, i think you're not allowed to do that.

What program are you using to code and compile?

v777tony
01-30-2007, 11:54 PM
That information is put there by the compiler, based on information you specify yourself. If you want to change the info in a file from someone else, i think you're not allowed to do that.

What program are you using to code and compile?
I know... I'm not compiling any code. I'm low level programming. Therefore, I need to write it in myself.

ghell
01-31-2007, 12:22 PM
So you want to add version information to an exe you have written in asm?