Search found 9 matches

by dniel888
Sat Jun 12, 2021 5:21 pm
Forum: Game Archive
Topic: Need help with Shadow Vault .dat .gxl archive
Replies: 12
Views: 2991

Re: Need help with Shadow Vault .dat .gxl archive

From a very quick look at this .axl format it looks as follows: 1. It starts with 4 byte magic AUDL (probably followed by the number of files). 2. It continues with what seems like list of the file offset followed by their lengths (this is very common). The offsets are all relative to the MAGIC AUDX...
by dniel888
Fri Jan 16, 2015 1:21 am
Forum: Compressed files and methods
Topic: legend of korra compressed files
Replies: 4
Views: 1816

Re: legend of korra compressed files

I have created a script for extractiong all files with "DAT\0" header: # extracts the files with "DAT\x00" header from Legend of Korra # (c) 16/01/2015 by dniel888 # script for QuickBMS http://quickbms.aluigi.org IDString "DAT\x00" get FILESNUM long get OFFSETPOS long get EXTPOS long get STRINGPOS l...
by dniel888
Mon Jan 05, 2015 9:39 am
Forum: Compressed files and methods
Topic: Gruntz - Encrypted Text Files
Replies: 5
Views: 2420

Re: Gruntz - Encrypted Text Files

Friedslick6 wrote:
dniel888 wrote:the ATTRIBUTEZ.TXT file is encrypted by blowfish with the key "1212"
...
Thank you very much. Was the key bruteforced?
No, I reversed the game and found the key.
by dniel888
Sun Jan 04, 2015 10:41 pm
Forum: Compressed files and methods
Topic: Gruntz - Encrypted Text Files
Replies: 5
Views: 2420

Re: Gruntz - Encrypted Text Files

the ATTRIBUTEZ.TXT file is encrypted by blowfish with the key "1212"

use this script to decrypt:

Code: Select all

encryption blowfish "1212"
get NAME filename
get SIZE asize
string NAME += ".dec"
log NAME 0 SIZE
by dniel888
Fri Jan 02, 2015 2:15 pm
Forum: Game Archive
Topic: Need help with Shadow Vault .dat .gxl archive
Replies: 12
Views: 2991

Re: Need help with Shadow Vault .dat .gxl archive

try to load GXL archives from the DAT files, because some GXL archives that out of the DAT archive uses DXT5 (encryption type 8 ) and the viewer doesn't support them. EDIT: viewer updated,bugs fixed. The viewer is now working perfectly thanks! Can you share it's sources? I also solved the .bck file...
by dniel888
Sun Dec 28, 2014 6:22 pm
Forum: Game Archive
Topic: Need help with Shadow Vault .dat .gxl archive
Replies: 12
Views: 2991

Re: Need help with Shadow Vault .dat .gxl archive

try to load GXL archives from the DAT files, because some GXL archives that out of the DAT archive uses DXT5 (encryption type 8 ) and the viewer doesn't support them.

EDIT: viewer updated,bugs fixed.
by dniel888
Tue Dec 23, 2014 8:29 pm
Forum: Game Archive
Topic: Need help with Shadow Vault .dat .gxl archive
Replies: 12
Views: 2991

Re: Need help with Shadow Vault .dat .gxl archive

is the GFXViewer running? here is the header of the GFX format : GFX Header { UInt32 ID UInt32 "GFX " Byte EncType1 Byte EnctType2 UInt16 0x0000 ? Byte BitsPerPixel Byte TransparentFlag (0xFF - on, 0x00 off) UInt16 NumBlocks (0-400) UInt16 Width UInt16 Height UInt16 UNK1 UInt16 UNK2 UInt32 Transpare...
by dniel888
Sun Dec 21, 2014 3:29 pm
Forum: Game Archive
Topic: Need help with Shadow Vault .dat .gxl archive
Replies: 12
Views: 2991

Re: Need help with Shadow Vault .dat .gxl archive

the .dat archives encrypted so you need to decrypt them with that script: # decompress the .dat files from Shadow Vault # (c) 18/12/2013 by dniel888 # script for QuickBMS http://quickbms.aluigi.org endian big set XOR_KEY binary "\xEB\x60\xA3\x1F\x9C\xA3\xF9\xC0\x9D\x14\x9F\xFE\xE3\x83\x5A\x3A\xB3\x0...
by dniel888
Sun Dec 21, 2014 1:23 pm
Forum: Compressed files and methods
Topic: how can i extract .rsd file?
Replies: 1
Views: 1029

Re: how can i extract .rsd file?

from the Header of the file : "CWS", I think that this is a compressed swf file, you may use swf decompiler to open that file.