Questions tagged [decompress]
Process of decoding a compressed file to get back to the original one. Some compression software may also include encryption or obfuscation in order to protect their format/algorithm.
111 questions
0
votes
0
answers
43
views
Help me solve a steganograhy challenge!
(original png)
It's a multi level challenge. While examining through zsteg I found 2 zlib compressed file and a binary executable. I have uncompressed one of the zlib which gave long hex string, which ...
16
votes
1
answer
5k
views
Reverse engineering images from an old Japanese videogame
I am trying decode some images from an old Japanese videogame. I am not very good at reverse engineering, nor at programming, and I can't make sense of what file format this is or how to go about ...
0
votes
0
answers
88
views
How to un-pack kkrunchy packed executable files?
I like a demo from a demoscene site called pouet.net, i want the source code of that file. i try to unpack the demo exe file with upx but it cannot unpack with it, because it is packed with so called ...
0
votes
0
answers
136
views
Extracting / converting an unknown 1990s graphics file format (.ATR)
For about a month I've been working towards trying to crack the file structure on the graphical assets from the old JumpStart CD-ROM games. A large percentage of these games do not have their sprites ...
1
vote
1
answer
212
views
Kawai ES110 - Firmware supplied as MIDI file, what can we do?
The firmware for this digital piano is supplied as a MIDI file with an EasyPlayer.exe (not sure if Wine can run this properly) binary to upload it.
I'm wondering if there's a way to get at it's ...
0
votes
0
answers
178
views
How to decompress file encrypt lua
I recently decrypted a mobile game, after decrypting xxtea and luajit I got strange encryption file, it was an extra layer of encryption before finding the original .lua file content. I'm very ...
2
votes
1
answer
237
views
How to decompress this file
I'm trying to figure out how this old game is (de)compressing files, but I don't have much knowledge about file compression.
I tried running the game from a debug tool to see if I could spot something ...
0
votes
0
answers
73
views
What kind of compression/encoding is this program using?
The program I am looking at creates 3 different tables.
The first two tables are created at the same time, one entry at a time. Table 1 is 256 1 byte entries. Table 2 is 256 2 byte entries. All the ...
2
votes
0
answers
95
views
Serialized body (Protobuf?)
There is an application on iOS that collects data and encrypts it in the future. Data is already serialized at entry to the encryption function, they look like this(I tried to decode, restore the ...
3
votes
0
answers
100
views
How to read the content of these files?
I am looking for a way to read the content of these two files. If that is possible, please let me know.
Google Drive link for the files
2
votes
0
answers
99
views
Decoding set of byte arrays representing light spectrum
I have a small spectrometer that measures in the spectral range of 740-1070nm. The device is commercial, and used to send the raw data to the manufacturer's server for decoding, but that does not seem ...
9
votes
1
answer
505
views
Compression algorithm from very old tape backup?
I'm recovering data from old tape cartridges from circa 1994, where the user had forgotten what software was used to write them, and it doesn't seem to be any format I recognize. Fortunately the file ...
2
votes
2
answers
294
views
Compression format used for various data (images, text, etc.) in a 1997 video game
I've been trying to reverse engineer the format of data files from the 1997 video game Helicops. I have experience reverse engineering binary files from games of this period but limited exposure to ...
2
votes
1
answer
1k
views
What kind of deflate compression is this?
I must be missing something obvious here. I cannot make sense of the following deflate stream.
Steps:
% wget https://github.com/lrq3000/mri_protocol/raw/master/SiemensVidaProtocol/Coma%20Science%...
3
votes
0
answers
85
views
Image decompression: Reconstructed LZW dictionary somewhat, not exactly matches original dictionary
I am attempting to reverse an animation format that uses (I think) some form of LZW for each of the frames.
I have determined that a 12-bit code is used throughout the image. Here is a short target ...