The hexdump tag has no wiki summary.
1
vote
1answer
66 views
Convert a hex-string into binary file with plain awk under cygwin
Trying to convert a hexstring given as string in the form 31ff097112 with plain awk into a binary file using cygwin (Works when run in linux). Tried the following:
BEGIN {
BINMODE=3;
ORS="";
...
0
votes
0answers
31 views
How to generate 4 wep keys with hexdump command?
How to generate 4 wep keys from a string. I tried the following:
# I want to generate 4 of 128 bits key
$ echo -n 'kh' | hexdump -e '13/1 "%02x" "\n"'
6b68
# I want to generate 4 of 64 bits key
$ ...
1
vote
0answers
55 views
RAOP: How can I spot Apple Lossless data (vs AES encrypted data) in UDP packet hexdumps?
I would like to empirically determine whether the data stream of a RAOP connection is AES encrypted or plain Apple Lossless data. I am looking at tcpdump hex output of the data connection (the UDP ...
2
votes
4answers
88 views
How to print only the hex values from hexdump?
following Convert decimal to hexadecimal in UNIX shell script
I am trying to print only the hex values from hexdump, i.e. don't print the lines numbers and the ascii table.
but the following cmd ...
0
votes
2answers
68 views
Portable Executable DLL file and binary date format
I have got a PE executable file *.exe (32-bit), which is an small application (2.6Mb) to update firmware software of TV device. However, the update mechanism was only available up to 2013-03-12. I ...
-2
votes
4answers
114 views
Embarrassing error when reading string literal into a pointer
I feel semi-retarded posting this, but I have no idea why my program is blowing up when it reads a string literal from the keyboard (i.e. then assigning it to a pointer).
Been debugging for over an ...
0
votes
2answers
85 views
hexdump in Objective-C
I want to see the dump of my sqlite .db file inside my Xcode project like on a UILableView.
How can I run a command line command like hexdump from within my iOS app?
1
vote
1answer
109 views
Clean Hex dump of ASCII code
I've got a simple PDF file in Hex dump format, lines looking like this:
00000000: 25 50 44 46 2d 31 2e 34 0d 0a 25 e2 e3 cf d3 0d %PDF-1.4..%.....
00000010: 0a 31 20 30 20 6f ...
2
votes
3answers
123 views
g++ binary output analysis
Given the following program:
unsigned char g1[] = { 0x1a, 0x2a, 0x3a, 0x4a };
static unsigned char g2[] = { 0x1b, 0x2b, 0x3b, 0x4b };
int main()
{
unsigned char l1[] = { 0x1c, 0x2c, 0x3c, 0x4c };
...
0
votes
0answers
305 views
ESC POS sample file Hex dump request
can someone generate a simple hex dump of a page of data, with various esc/pos commands in it. I've ordered an esc pos printer and it hasn't arrived yet, and its slowing down my project. The .spl ...
0
votes
1answer
173 views
How to store int to nsdata the other way round?
I create random file:
-(NSData*)generateRandomNSDataWithNumberOfRecords:(int)length {
NSMutableData* theData = [[NSMutableData alloc] init];
int numberOfElements;
for (int i=0; i<length; i++) {
...
1
vote
1answer
92 views
How to hexdump large files
I would like to output a hexdump result of a 8go file. Is it possible to do it piece by piece ? How to specify a limited numbers of lines (I have read the man page and it seems to correpond to -n ...
0
votes
3answers
1k views
Using hexdump to output only ASCII
I'm trying to output ASCII values corresponding to some binary data. I have successfully applied the hexdump utility to output hexdump and ASCII side-by-side as below:
00000120 20 20 20 20 3d 20 30 ...
3
votes
1answer
365 views
How do I reassemble IP fragments with Perl's Net::Pcap::Reassemble?
I am new to Perl and trying to use the Net::Pcap::Reassemble - IP fragment reassembly for Net::Pcap. I am trying to reassemble TCP packets and "tie" the packets streams of interest and print the ...
0
votes
1answer
295 views
Perl Net::Pcap hex dump packet session
I have the following information below being produced by the Net::Pcap module to print the payload of the packets of interest within a capture.
The data below is the excerpt of a Windows executable ...
0
votes
7answers
236 views
Print a file in binary form (1 and 0)
In the context of a GZip decoder I need a unix tool or a C solution to print my compressed gzip file on my screen in a binary form. What I exactly need is hexdump able to print in binary instead of ...
0
votes
2answers
536 views
Convert SHA1 password to its binary form
I have a database with passwords encrypted in SHA1, I need to convert them to the SHA1 binary form and encode with base64, how can I get that?
This is what I have:
# echo -n "password" | openssl ...
2
votes
1answer
560 views
scapy hexdump()
i wonder which hexdump() scapy uses, since i would like to modify it, but i simply cant find anything.
what i DO find is:
def hexdump(self, lfilter=None):
for i in range(len(self.res)):
p = ...
0
votes
2answers
240 views
“Grep-ing” from A to B in hexdump's output
Here is the situation: I have to find in the output from an hexdump the bytes between a string A and a string B. The structure of the hexdump is something like:
-random bytes
-A + useful bytes + B
...
-1
votes
1answer
36 views
same hash, different behavior
I have two files that give the same hash, and even the same hexdump. File A and File B start on Linux Box 1 and Linux Box 2, respectively. I then copy both files to a Windows share, and read them ...
1
vote
0answers
193 views
How can I view output of tshark -V via Wireshark or similar?
Recently updated my Wireshark on a server, and lost the ability to use -R and -w from the CLI. Since I'm tracing SIP and RTP calls, I need to use -R and not -f.
I found out using -V is very useful ...
1
vote
3answers
206 views
Native perl hexdump — just checking for zero values
I'm trying to check to see if a disk or disk image is 'empty'. I'm going to assume that this is true if the first 1mb and last 1mb are zeroes. I started by trying to recreate hexdump but it seems a ...
0
votes
1answer
257 views
Open file with hex numbers in Neo Hex Editor
I often require to interpret the file with hex numbers(may be called hex dump). Because I read the memory from the micro-controller and need to understand it, I thought, Neo-Hex Editor will help. But ...
0
votes
1answer
205 views
Hexadecimal Offsets
I was looking at some hexadecimal code and someone told me to look at offset : 0x830880EC
stored as little endian, but what does this mean? Browsing through the offsets listed in HxD Workshop, I see ...
0
votes
1answer
400 views
questions about hex code shown in hex editor
I am stuck on HEX(intel hex) format which I see in Hex Editor (Hex Editor Neo).
Ok,I know hex,decimal,binary,their addition,multiplication,their conversion.
Ex. sample.jpg
(this is a jpg file I open ...
2
votes
2answers
197 views
Go - password security in binary
I intend to save a password/secret key in my Go application to be used in communication with some other applications. I wonder how to secure it from for example someone obtaining the binary and ...
0
votes
1answer
200 views
Generate binary code from hex code
I am trying to write a bootstrapping compiler-the one that can be implemented in the language itself, i don't know how to convert hex codes to binary , so that it can run directly in machine. Its for ...
2
votes
2answers
2k views
create binary file in bash
How can I create a binary file with consequent binary values in bash?
like:
$ hexdump testfile
0000000 0100 0302 0504 0706 0908 0b0a 0d0c 0f0e
0000010 1110 1312 1514 1716 1918 1b1a 1d1c 1f1e
0000020 ...
4
votes
4answers
2k views
Create Binary files in UNIX
This question was out there for a while and I thought I should offer some bonus points if I can get it to work.
What did I do…
Recently at work, I wrote a parser that would convert a binary file in ...
0
votes
4answers
922 views
hexdump and xxd produce different outputs on red hat and ubuntu/mint
Firstly , I am mentioning whatever happened on my linux mint/ubuntu system ...
udit@udit-Dabba ~/ah $ xxd -r -p input.txt output.txt
udit@udit-Dabba ~/ah $ cat input.txt
60 00 00 00 00 14 06 20 00 ...
0
votes
1answer
325 views
reading hexdump file byte by byte in shell/awk
I am new to bash/awk programming and need your help soon
This is hexadecimal ouptut of an ipv6 tcp packet captured through tcpdump -
6000 0000 0018 0620 0000 0000
0000 0000 0000 0000 0000 0001 ...
2
votes
2answers
161 views
What information depicts the quantitative difference between two large given files of the same size?
Usually, in order to find how two binary files are different, I use diff and hexdump tools. But in some situations if two large binary files of the same size are given, I would like to see only their ...
0
votes
1answer
815 views
Transform a hex info to binary using linux command
I have this binary file on my linux system ..
udit@udit-Dabba ~ $ cat file.enc
Salted__s�bO��<0�F���Jw!���]�:`C�LKȆ�l
Using hexdump command I see its information like this ..
udit@udit-Dabba ...
0
votes
1answer
2k views
how to get hexdump of a structure data
....
finalize(char *hdrs, sendip_data *headers[], int index,
sendip_data *data, sendip_data *pack)
{
........
For debugging purpose , I want a hex dump of data and pack ...
1
vote
1answer
2k views
Convert Hex string to Byte Array for RSA Decryption
I have a hex string after RSA encryption. When I convert it to a byte[], the RSA decryption gives javax.crypto.BadPaddingException: Blocktype mismatch: 0
I am using this method for conversion (got it ...
2
votes
3answers
90 views
strcat giving unexpected result
This is a very small portion of a large project...
These are typedefs defined in standard header file for the project.
typedef uint16_t u_int16_t;
typedef uint32_t u_int32_t;
typedef uint8_t ...
0
votes
1answer
323 views
how to get data from hexdump in scapy?
0000 00 01 00 14 45 49 50 43 A8 2A 55 50 6F 72 74 20 [37m.[0m[37m.[0m[37m.[0m[37m.[0mEIPC[37m.[0m*UPort
0010 49 64 20 3D 20 34 33 30 35 30 2A 2A 2A 2A 2A 2A Id = 43050******
0020 2A 2A 2A ...
0
votes
3answers
565 views
String not equal to another string. Why?
More specifically, how to test further? I saw another post where the answer used a hexdump. How might I try this, and should I?
Here's my trying in console...
variables: myl is my latitude value ...
1
vote
1answer
356 views
Convert hexdump to byte sequence
I am trying to register a specific program to run binaries that contain a magic number by using binfmt_misc on Linux.
This is accomplished by echo'ing a string in the format:
...
4
votes
2answers
495 views
Creating hex dump in Objective-C
I want to create a hex dump of a binary file in Mac OS X.
In all apps in Mac OS, when you navigate to /Contents/Resources/, there is a file (or more) with the same name as the app.
I want to write ...
0
votes
1answer
210 views
How would I print out the address like the Hexdump function in UNIX
There I have this assignment where I am suppose to emulate the hexdump function from unix. I got my program to dump files into hex but i am having trouble printing the offset and the printable ...
0
votes
1answer
174 views
Why does hexdump-ing multiple files output differently than hexdumping each file individually?
What is the difference between these commands? Why does the first match, but grepping the individual file hexdumps returns nothing?
$ hexdump -C DRAFT* FAIL* RCV* | grep "49 d0 38 ec 06 a1 c3"
...
7
votes
5answers
5k views
convert binary data to hex in shell script?
feel a bit stupid asking this (sounds as basics) but can't find an answer elsewhere. I want to convert binary data to hex, just that, no fancy formatting and all. hexdump seems too clever, it ...
2
votes
2answers
375 views
Shell magic wanted: format output of hexdump in a pipe
I'm debugging the output of a program that transmits data via TCP.
For debugging purposes i've replaced the receiving program with netcat and hexdump:
netcat -l -p 1234 | hexdump -C
That outputs ...
0
votes
2answers
131 views
How do I output an inline transription of a hexdump to ACSII?
Here's an example from a program called HEXedit, which show's what I mean by inline:
3a40 - 31 65 33 38 00 00 00 00 00 00 00 00 00 00 00 00 - 1e38............
3a50 - 00 00 00 00 00 00 00 00 00 00 0a ...
1
vote
2answers
308 views
3D models: converting from binary file, learning to read hex dumps
I have a 3D object stored in an unknown binary format. I opened it in a hex editor and noticed that the first line said "OBJF", followed by some lines that were translated as material and texture ...
0
votes
2answers
694 views
Whats Hex Dump - What does it mean?
thegladiator:~/cp$ cat new.txt
Hello World This is a Trest Progyy
thegladiator:~/cp$ hexdump new.txt
0000000 6548 6c6c 206f 6f57 6c72 2064 6854 7369
0000010 6920 2073 2061 7254 7365 2074 7250 676f
...
0
votes
2answers
589 views
Hexdump macro (C/C++)
I have a working hexdump function but it seems to be overkill for printing a single variable. So I am trying to make a macro for it. So far this works almost perfectly:
#define ...
3
votes
3answers
1k views
extract hexdump or RAW data of a file to text
I was wondering if there is a way to output the hexdump or raw data of a file to txt file.
for example
I have a file let's say "data.jpg" (the file type is irrelevant) how can i export the HEXdump ...
0
votes
3answers
664 views
Convert Hexdump to string in c
Is there a way to convert a hexdump e.g. aec4d2f3c6a4e70ea6cea074f65812d2a34b180cc92b817edcd867167e7a91c5beb942f0
to a string in c so that every two hexadecimal digits make a char? If so, what?




