Black Desert PAZ + Meta File
-
Ekey
- M-M-M-Monster veteran

- Posts: 1739
- Joined: Wed Mar 31, 2010 6:54 am
- Has thanked: 85 times
- Been thanked: 961 times
Re: Black Desert Client Research - PAZ + META File
Same key.
directory table (begin offset 0x8A0568 (9047072), 78640 bytes) (first dword is table size)
file names table (begin offset 0x8B389C (9125716), 6458224 bytes) (first dword is table size)
directory table (begin offset 0x8A0568 (9047072), 78640 bytes) (first dword is table size)
file names table (begin offset 0x8B389C (9125716), 6458224 bytes) (first dword is table size)
-
Ekey
- M-M-M-Monster veteran

- Posts: 1739
- Joined: Wed Mar 31, 2010 6:54 am
- Has thanked: 85 times
- Been thanked: 961 times
Re: Black Desert Client Research - PAZ + META File
You try decrypt full meta file. Need only specific blocks. Use like thisehnoah wrote:Hey Ekey thanks!
I tried to decrypt *.Meta with following script:
Code: Select all
encryption aes_128_cbc "\xF3\xA1\x0D\xF2\x47\xCC\x30\xC5\xEB\x11\x12\xAE\x07\x01\x52\x13" "" 0 get SIZE asize log "dump.dat" 0 SIZE
Wrong I guess? Can you tell me where you got the Key? Or tell me if Key changes every patch?
(I Uploaded newest files here: http://www.sendspace.com/file/zp94zu) there is no patch till tomorrow)
Code: Select all
goto 0x8A0C2C
get DIR_TABLE_SIZE long
savepos DIR_TABLE_OFFSET
encryption aes_128_cbc "\xF3\xA1\x0D\xF2\x47\xCC\x30\xC5\xEB\x11\x12\xAE\x07\x01\x52\x13"
log "DirsTable.dat" DIR_TABLE_OFFSET DIR_TABLE_SIZE
encryption "" ""
goto 0x8B3F60
get NAME_TABLE_SIZE long
savepos NAME_TABLE_OFFSET
encryption aes_128_cbc "\xF3\xA1\x0D\xF2\x47\xCC\x30\xC5\xEB\x11\x12\xAE\x07\x01\x52\x13"
log "NamesTable.dat" NAME_TABLE_OFFSET NAME_TABLE_SIZE
encryption "" ""-
MrMoonKr
- beginner
- Posts: 29
- Joined: Fri Oct 16, 2009 7:18 am
- Has thanked: 24 times
- Been thanked: 3 times
Re: Black Desert Client Research - PAZ + META File
Don't you know compression type which used in paz , Ekey ?
I extracted dds files in some paz file, but they are compressed.
( Erase .zip extension )
I extracted dds files in some paz file, but they are compressed.
( Erase .zip extension )
You do not have the required permissions to view the files attached to this post.
-
Ekey
- M-M-M-Monster veteran

- Posts: 1739
- Joined: Wed Mar 31, 2010 6:54 am
- Has thanked: 85 times
- Been thanked: 961 times
Re: Black Desert Client Research - PAZ + META File
I dont know. I can not even upgrade the client lol.
Launcher say me this (XP not supported or???)

But game directly work without any problems, wtf!
http://imageshack.us/a/img854/6808/zd6v.png
Launcher say me this (XP not supported or???)

But game directly work without any problems, wtf!
http://imageshack.us/a/img854/6808/zd6v.png
-
ehnoah
- advanced
- Posts: 70
- Joined: Tue Feb 28, 2012 11:21 pm
- Has thanked: 11 times
- Been thanked: 4 times
Re: Black Desert Client Research - PAZ + META File
I sent you an PM Ekey, nothing special. Just as note.
Will you finish a Script to extract?
Because I don't see a way to use the File Tables in Quickbms. My Special wish are the sound files =/
I guess we should open the "Standard Client" without any patches or you don't think so?
@Ekey -> Yes mean not supported XP.
Edit: This should be code for Index or I am wrong?
Will you finish a Script to extract?
Because I don't see a way to use the File Tables in Quickbms. My Special wish are the sound files =/
I guess we should open the "Standard Client" without any patches or you don't think so?
@Ekey -> Yes mean not supported XP.
Edit: This should be code for Index or I am wrong?
Code: Select all
goto 0x20598
get INDEX_TABLE_SIZE long
savepos INDEX_TABLE_OFFSET
log "IndexTable.dat" INDEX_TABLE_OFFSET INDEX_TABLE_SIZE
encryption "" ""
-
Ekey
- M-M-M-Monster veteran

- Posts: 1739
- Joined: Wed Mar 31, 2010 6:54 am
- Has thanked: 85 times
- Been thanked: 961 times
Re: Black Desert Client Research - PAZ + META File
Finish script? Huh i'm dont work over it.ehnoah wrote:I sent you an PM Ekey, nothing special. Just as note.
Will you finish a Script to extract?
Strange. Game run without problems.ehnoah wrote: @Ekey -> Yes mean not supported XP.
You read my first post? Encrypted only 2 tables > Directory's and File Name's Table'sehnoah wrote: Edit: This should be code for Index or I am wrong?
Code: Select all
goto 0x20598 get INDEX_TABLE_SIZE long savepos INDEX_TABLE_OFFSET log "IndexTable.dat" INDEX_TABLE_OFFSET INDEX_TABLE_SIZE encryption "" ""
-
ehnoah
- advanced
- Posts: 70
- Joined: Tue Feb 28, 2012 11:21 pm
- Has thanked: 11 times
- Been thanked: 4 times
Re: Black Desert Client Research - PAZ + META File
Yes I try to understand but its pretty hard. So I trough I need run this script to "extract" the File from the File.
For me it looks like META File are 4 Files that need extracted and 2 of them crypted. Can you follow me?
With Script I mean something for Quickbms, I guess Quickbms Script need to read the META Files (the 4 one)
and then extract all the PAZ or I am wrong?
For me it looks like META File are 4 Files that need extracted and 2 of them crypted. Can you follow me?
With Script I mean something for Quickbms, I guess Quickbms Script need to read the META Files (the 4 one)
and then extract all the PAZ or I am wrong?
-
Ekey
- M-M-M-Monster veteran

- Posts: 1739
- Joined: Wed Mar 31, 2010 6:54 am
- Has thanked: 85 times
- Been thanked: 961 times
Re: Black Desert Client Research - PAZ + META File
You need read all data from META: PAZ's IDs, Nums, Index for Dirs and file names and ect.ehnoah wrote:Yes I try to understand but its pretty hard. So I trough I need run this script to "extract" the File from the File.
For me it looks like META File are 4 Files that need extracted and 2 of them crypted. Can you follow me?
With Script I mean something for Quickbms, I guess Quickbms Script need to read the META Files (the 4 one)
and then extract all the PAZ or I am wrong?
Code: Select all
struct PAZHeader
{
DWORD pPAZHash; //ID (can be found in index for directories and file names)
DWORD pFilesCount;
DWORD pUnknown;
};
struct PAZEntry
{
DWORD pFileHash; //ID
DWORD pNull;
DWORD pFileNum;
DWORD pOffset;
DWORD pSize;
DWORD nSize; //again size - 16 bytes (additional???)
};-
MrMoonKr
- beginner
- Posts: 29
- Joined: Fri Oct 16, 2009 7:18 am
- Has thanked: 24 times
- Been thanked: 3 times
Re: Black Desert Client Research - PAZ + META File
i extracted more assets.
waiting for compression type revealed
i guess it may be LZMA2_86HEAD type
but i failed.
they scrambled first 1 byte, LZMA2DEC Prop byte.
it should be less than 40, but they are always 111 ( 0x6F ).
waiting for compression type revealed
i guess it may be LZMA2_86HEAD type
but i failed.
they scrambled first 1 byte, LZMA2DEC Prop byte.
it should be less than 40, but they are always 111 ( 0x6F ).
You do not have the required permissions to view the files attached to this post.
