Page 1 of 1
Help with a new weird .dat bigfile game
Posted: Sun Jan 25, 2009 5:12 am
by skyo
Hi, im new here, i have tried to open&handle this bigfile .dat but doest matter the tool,
this bigfile is not supported yet. Only dragon unpacker can extract a bit using hyperRipper
and only .669 files.
Can someone try, look and add support to this new file?
Download Sample :
Code: Select all
http://www.mediafire.com/file/gyudzoymhnm/sample.dat.rar
Thanks.
Re: Help with a new weird .dat bigfile game
Posted: Fri Jan 30, 2009 1:04 pm
by Mr.Mouse
Where's this file from? What program or game?
Re: Help with a new weird .dat bigfile game
Posted: Fri Jan 30, 2009 10:09 pm
by Mr.Mouse
They've gone to great lengths to create an algorithm to XOR encrypt the header of this file. Each entry in the header that probably refers to information about a specific file in the archive is 0x100 (256 bytes) in length.
However, they have divided each 256 byte section of the file up into a grid of 0x20 (32 bytes) columns of 8 bytes.
Each column has its own logical pattern of XOR bytes that are used to encrypt, some of them a pattern of 8 rows, but some have patterns of 32 rows for instance.
By simple deduction it is possible to find approx. half of all patterns, because 64 bit (4 byte) values are used as variables, and many of them (especially the third and fourth byte) are 0's. If you XOR 0 with a value, the result is the value you used to XOR with. So 0's in an original file reveal the encryption code right away.
Of course, the executable calculates this algorithm run-time.
So, what program uses this file? Some Playstation 2 game?
[EDIT] It also looks like some colums use the same value (so it could be patterns that affect two or more columns pairs)
Re: Help with a new weird .dat bigfile game
Posted: Sun Feb 01, 2009 10:18 pm
by Mr.Mouse
I've got about 60% of algorithms used I think. It's a pity I don't know the game we are talking about.
Re: Help with a new weird .dat bigfile game
Posted: Wed Mar 04, 2009 1:29 am
by skyo
Sorry and thanks for the help, i been very busy with work and travels.
The game is pyroblazer
http://www.pyroblazer.com
You can found a demo on the website.
Thanks anyways, i dont need anymore help with this game.

Re: Help with a new weird .dat bigfile game
Posted: Tue Mar 10, 2009 3:24 am
by aluigi
for completness in case someone was interested (to the game or to the algorithm, which is interesting imho) the extractor is available at
http://aluigi.org/papers.htm#pyroblazerext
Re: Help with a new weird .dat bigfile game
Posted: Fri Jan 27, 2012 5:59 pm
by Entory
Help me please. How to use this program?
Re: Help with a new weird .dat bigfile game
Posted: Fri Jan 27, 2012 6:37 pm
by aluigi
it works from the command-line:
create c:\output_folder and then:
pyroblazerext.exe c:\file.dat c:\output_folder
more informations about how to use command-line tools:
http://aluigi.org/about.htm#howuse