Looking for telephone numbers in a hex dump
-
Hi everybody, I'm new to programming and I was wondering if anyone can help me please as I am learning as I go along :-) Basically, I am trying to decode a telephone number in a hex dump, but I'm having trouble finding the number inside it. I have the number and the hex dump file, but I'm really struggling to find out where it is. Could anyone assist providing me with a few tips on searching for it. I've been trying so many things but I keep hitting a blank. Thanks, Dee
-
Hi everybody, I'm new to programming and I was wondering if anyone can help me please as I am learning as I go along :-) Basically, I am trying to decode a telephone number in a hex dump, but I'm having trouble finding the number inside it. I have the number and the hex dump file, but I'm really struggling to find out where it is. Could anyone assist providing me with a few tips on searching for it. I've been trying so many things but I keep hitting a blank. Thanks, Dee
If you know the first digit in the number then search for that number's hex value. Then try the next character to see if it is the second number, and so on. The hex value for the numbers are:
0 - 30
1 - 31
2 - 32
3 - 33
4 - 34
5 - 35
6 - 36
7 - 37
8 - 38
9 - 39 -
Hi everybody, I'm new to programming and I was wondering if anyone can help me please as I am learning as I go along :-) Basically, I am trying to decode a telephone number in a hex dump, but I'm having trouble finding the number inside it. I have the number and the hex dump file, but I'm really struggling to find out where it is. Could anyone assist providing me with a few tips on searching for it. I've been trying so many things but I keep hitting a blank. Thanks, Dee
I am also looking for help in solving this problem