Results 1 to 5 of 5
  1. #1
    CriticalError
    CriticalError is offline
    Senior Member CriticalError's Avatar
    Join Date
    2011 Jun
    Posts
    204
    Thanks Thanks Given 
    21
    Thanks Thanks Received 
    44
    Thanked in
    27 Posts
    Rep Power
    0

    Post Tantra 2 Dat Files

    Web: http://mz.ccjoy.com
    Client Download: http://download.ccjoy.com/mz/client/..._Full_4203.exe

    Hello to all, well the new client have different files, all is alocated in .DAT, maybe someobody can take a look into files, I upload some samples.

    thanks aluigi for check .DAT, he say it uses lzma compression but the dat files are encrypted probably with aes or another block cipher, but is a file for configs,etc not for models,textures, so think DAT using different key for models,textures,sounds, anyway here samples of sounds,textures and models.

    Scan of aluigi:

    Code:
    comtype lzma
    get EXT extension
    if EXT == "dat"
        print "encryption not supported"
    elif EXT == "ccdat"
        print "encryption not supported"
    else
        get SIZE long
        savepos OFFSET
        get ZSIZE asize
        math ZSIZE -= OFFSET
        get NAME filename
        string NAME += "_unpacked"
        clog MEMORY_FILE OFFSET ZSIZE SIZE
        filexor 0x10
        log NAME 0 SIZE MEMORY_FILE
        filexor 0
    endif
    Tantra 2 Archive Research Model

    Please register or login to download attachments.

    Last edited by CriticalError; 2012-08-04 at 10:16 PM.

  2. #2
    h4x0r
    h4x0r is offline
    h4x0r's Avatar
    Join Date
    2011 Aug
    Location
    ..\root\home\pgc
    Posts
    826
    Thanks Thanks Given 
    64
    Thanks Thanks Received 
    525
    Thanked in
    205 Posts
    Rep Power
    14
    And where client ? Attached example not useful because need debug and reversing algo.

  3. #3
    CriticalError
    CriticalError is offline
    Senior Member CriticalError's Avatar
    Join Date
    2011 Jun
    Posts
    204
    Thanks Thanks Given 
    21
    Thanks Thanks Received 
    44
    Thanked in
    27 Posts
    Rep Power
    0
    Quote Originally Posted by h4x0r View Post
    And where client ? Attached example not useful because need debug and reversing algo.
    sorry check first topic.

  4. #4
    h4x0r
    h4x0r is offline
    h4x0r's Avatar
    Join Date
    2011 Aug
    Location
    ..\root\home\pgc
    Posts
    826
    Thanks Thanks Given 
    64
    Thanks Thanks Received 
    525
    Thanked in
    205 Posts
    Rep Power
    14
    File table where contained info about size , offset .ect. in SQL file (Compressed and XORed). In DAT files Only Compressed

    launcherui.sql

    Info begin at 0xA offset

    for launchercfg/patchui/bg.png



    Code:
    Offset - 397497 (0x610B9) (in DAT)
    Uncompressed Size - 743460 (0xB5824)
    Compressed Size - 741034 (0xB4EAA)
    http://www.mediafire.com/?85ua969igt91pjr

    Code:
    for
        4 Bytes - File Offset
        4 Bytes - Uncompressed Size
        4 Bytes - Compressed Size
        4 Bytes - LZMAProp
        4 Bytes - LZMAProp
        String (0x100) - FileName
    next
    Parsing unpacked SQL something like that

    PHP Code:
    goto 0xA

    for 0
        get OFFSET long
        get SIZE long
        get ZSIZE long
        get LZMAPROP long
        get LZMAPROP long
        getdstring NAME 0x100
        
    //log NAME 0 0
        
    print "%NAME%"
    next i 
    _microclienturl.sql files game not using.
    Last edited by h4x0r; 2012-08-05 at 11:45 AM.

  5. #5
    reyzone
    reyzone is offline
    New member
    Join Date
    2011 Dec
    Posts
    7
    Thanks Thanks Given 
    0
    Thanks Thanks Received 
    0
    Thanked in
    0 Posts
    Rep Power
    0
    what the tool to unpack?

Similar Threads

  1. .ct files
    By Karakuri in forum Research Requests
    Replies: 6
    Last Post: 2013-05-08, 03:46 PM
  2. MAT files HELP
    By onelove1210 in forum Research Requests
    Replies: 0
    Last Post: 2012-04-26, 10:29 AM
  3. [Tool] Tantra Online HPK Packer / Extractor
    By h4x0r in forum Game Files
    Replies: 0
    Last Post: 2012-01-18, 12:54 AM
  4. I need some help with .EFT files
    By wee in forum Game Files
    Replies: 1
    Last Post: 2010-11-29, 04:16 PM
  5. .npk files
    By Surubre in forum Game Files
    Replies: 15
    Last Post: 2010-11-29, 04:03 PM

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •