0
votes
1answer
28 views
Can I hex edit a file in Visual Studio?
I want to edit a binary file but I don't want to use another tool other than Visual Studio because it's a pain to switch back and forth.
Is there perhaps a add-in or some built …
2
votes
2answers
71 views
How can I decompile Linux binaries from Windows?
How can I decompile Linux binaries (*.so) from Windows? Thanks.
0
votes
4answers
194 views
Is there a BinaryReader in C++ to read data written from a BinaryWriter in C#?
I've written several ints, char[]s and the such to a data file with BinaryWriter in C#. Reading the file back in (in C#) with BinaryReader, I can recreate all of the pieces of the …
0
votes
3answers
82 views
fread terminating mid-read at null values. Also reading in garbage past expected data.
I am reading in pieces of a binary file using a FILE object in C++. Here is the fseek and corresponding fread call:
fseek(fp, startLocation, SEEK_SET);
fread(data, m_sizeOfData, …
0
votes
3answers
135 views
What is the byte signature of a password-protected ZIP file?
I've read that ZIP files start with the following bytes:
50 4B 03 04
Reference: http://www.garykessler.net/library/file_sigs.html
Question: Is there a certain sequence of bytes …
6
votes
3answers
315 views
C# - How do I read and write a binary file?
How do I read a raw byte array from any file, and write that byte array back into a new file?
2
votes
1answer
89 views
Searching for a sequence of Bytes in a Binary File with Java
I have a sequence of bytes that I have to search for in a set of Binary files using Java.
Example: I'm searching for the byte sequence DEADBEEF (in hex) in a Binary file.
How woul …
2
votes
2answers
103 views
RESTful design - how to model entity’s attachments
I am trying to model entity's attachments in REST. Let's say a defect entity can have multiple attachments attached to it. Every attachment has a description and some other propert …
1
vote
3answers
205 views
Writing a C# Variable Length Structure to Binary and Reading it in in C++?
Okay, so i am continuing to work on my little game engine to teach me C#/C++ more. Now i am attempting to write a way of storing data in a binary format, that i created. (This is l …
1
vote
3answers
190 views
VB - How do I read and write a binary file?
How do I read a raw byte array from any file...
Dim bytes() as Byte
..and then write that byte array back into a new file?
I need it as a byte array to do some processing in b …
0
votes
1answer
83 views
Convert .class files to binary files?
When compiling a '.java' file it will create a new '.class' file, which is not a pure binary file. To run this file you need an interpreter called 'java'.
Is there a way to conver …
1
vote
3answers
234 views
0x00 in a binary file vb.net
UPDATED BELOW
I am reading a Binary file using BinaryReader in VB.Net
the structure of each row in the file is
"Category" = 1 byte
"Code" = 1 byte
"Text" = 60 Bytes
Dim C …
0
votes
6answers
107 views
Storing XML document in pre-parsed binary format
My application need to store large amounts of XML-like hierarchical information with the following requirements:
Fast to read
Minimal memory consumption
Typed data instead of mer …
5
votes
3answers
641 views
Git or Subversion for binary files
We need to store binary files (mostly MS Word documents, ranging from a couple of KB to a couple of MB in size) in a version control repository with over 100 "projects". Currently …
0
votes
5answers
238 views
What is the meaning of \x00 , \x04 in PHP
i have some codes having the \x00 and \x04 hex codes, what does it means?
$str= implode("\x00", $var['message']); //line 1
$id= $var['message'] . "\x04" . $id; //line 2
what …
