![]() |
find Hex value
HI , i want to be able find an Hex Value into a binary file
let's suppose i have a File named : test.exe or what ever so i want to find the the Hex Value : 546869732070726F6772616D which is the ' This program ' in ASCII in this test.exe . is there any way . thank you |
Re: find Hex value
Hi and welcome to this board!
First of all, one basic hint: hexadecimal, decimal, binary, octal or whatever you want, are only different ways to display values. The values themself are always the same but the display differs. You also shows this in your question, because 546869732070726F6772616D is the same as "This program", only the display format differs. Due this fact: don't care about the display format, just look for the values. So whatever you want to search, convert all inputs (in what display format it ever is entered) to the values it self and search for the given value. For looking in a binary file, take a look in the help about ![]() |
Re: find Hex value
thank you Muetze1
[quote Due this fact: don't care about the display format, just look for the values. So whatever you want to search, convert all inputs (in what display format it ever is entered) to the values it self and search for the given value. quote] i really don't understand you , could you please drop me an exemple using this : 546869732070726F6772616D thank you agin |
Re: find Hex value
You got a hexadecimal sring. In hexadecimal there are two characters one byte (each char represents one nibble (4 Bits)). So split the string into pairs of two characters. After this, evaluate these pairs to their respective values (IntToStr() also converts hexadecimal values. But to decide the decimal and hexadecimal representation, IntToStr() needs a $ as prefix). Look in the help for further information:
![]() ![]() ![]() ![]() |
Re: find Hex value
Hi Muetze1 , when trying the conversion :
i have a little confusion : when i read my file into an Hexeditor : i found the ASCII value ( MZ ) is 4D5A in hex , but in this article it's written ' ![]() $5A4D really in confusion : |
Re: find Hex value
Zitat:
![]() MfG, Bug |
Alle Zeitangaben in WEZ +1. Es ist jetzt 13:49 Uhr. |
Powered by vBulletin® Copyright ©2000 - 2025, Jelsoft Enterprises Ltd.
LinkBacks Enabled by vBSEO © 2011, Crawlability, Inc.
Delphi-PRAXiS (c) 2002 - 2023 by Daniel R. Wolf, 2024-2025 by Thomas Breitkreuz