BLAZBLUE「ブレイブルー」(.CCZ .PLIST)

Extraction and unpacking of game archives and compression, encryption, obfuscation, decoding of unknown files
giles_tesla
Posts: 50
Joined: Fri Sep 30, 2016 4:12 am

BLAZBLUE「ブレイブルー」(.CCZ .PLIST)

Post by giles_tesla »

Hi ~!Aluigi.
Can you help me take a look at this encrypted .CCZ and .PLIST File?They are used as Ekey encryption tools for encryption (http://zenhax.com/viewtopic.php?f=9&t=129&hilit=CCZ) but I still couldn't open the normal conversion and PVR after decryption, seem to have a layer of encryption, can you help me take a look at how to open them?Or take their ideas?
.CCZ and .PLIST File:https://www.dropbox.com/s/42gz3j01rg7reze/CCZ.7z?dl=0
20131025104717365.jpg
aluigi
Site Admin
Posts: 12984
Joined: Wed Jul 30, 2014 9:32 pm

Re: BLAZBLUE「ブレイブルー」(.CCZ .PLIST)

Post by aluigi »

CCZ is simply compressed with zlib:

Code: Select all

endian big
idstring "CCZ!"
get VER long
get ZERO long
get SIZE long
savepos OFFSET
get ZSIZE asize
math ZSIZE - OFFSET
get NAME basename
clog NAME OFFSET ZSIZE SIZE
giles_tesla
Posts: 50
Joined: Fri Sep 30, 2016 4:12 am

Re: BLAZBLUE「ブレイブルー」(.CCZ .PLIST)

Post by giles_tesla »

aluigi wrote:CCZ is simply compressed with zlib:

Code: Select all

endian big
idstring "CCZ!"
get VER long
get ZERO long
get SIZE long
savepos OFFSET
get ZSIZE asize
math ZSIZE - OFFSET
get NAME basename
clog NAME OFFSET ZSIZE SIZE

Thank you very much! aluigi