Spider-Man: Shattered Dimensions Streams.dat

Extraction and unpacking of game archives and compression, encryption, obfuscation, decoding of unknown files
Doprond
Posts: 67
Joined: Tue Mar 15, 2016 3:38 pm

Spider-Man: Shattered Dimensions Streams.dat

Post by Doprond »

Here 1 of 4 (I couldn't upload other 3 due big size)
https://mega.nz/#!7xJzmCZC!XCkieJuVo7-L ... BUlteg35XA
Thanks!
aluigi
Site Admin
Posts: 12984
Joined: Wed Jul 30, 2014 9:32 pm

Re: Spider-Man: Shattered Dimensions Streams.dat

Post by aluigi »

Just another boring streams.dat container with strange fields, no information about the size of each block of data and I don't know what codec.
In case someone is interested in the fields (NO EXTRACTION) take a look at this script with the -V option:

Code: Select all

goto 0x110
for
    get OFFSET long
    getdstring ZERO 0x10
    get CHECK_ffffffff long
    if CHECK_ffffffff != 0xffffffff
        break
    endif
    get ZERO long
    get DUMMY1 long
    get HEAD_SIZE long
    get ZERO long
    get ZERO long
    get DUMMY2 long
    get DUMMY3 long
    get DUMMY4 long # 0x00010161
    get FREQUENCY long
    get DUMMY5 long # 0x00001770
    get DUMMY6 long # 0x001008b6
    getdstring ZERO 0x24
    get HEAD_SIZE long
    get ZERO long
    get DUMMY7 long
    get DUMMY8 long
    if OFFSET != 0xffffffff
        #log "" OFFSET ???
    endif
next
The only information there is the OFFSET of the header, the size of the header and the frequency, the data starts at position 0x8000 of the offset.
Doprond
Posts: 67
Joined: Tue Mar 15, 2016 3:38 pm

Re: Spider-Man: Shattered Dimensions Streams.dat

Post by Doprond »

So is this a possible extract content of this file? because i didn't understand you.
And how i can run your script with "-V Option"?
Edit: Never mind.It works,but i get 0 files,any ideas how to fix that?
Image
aluigi
Site Admin
Posts: 12984
Joined: Wed Jul 30, 2014 9:32 pm

Re: Spider-Man: Shattered Dimensions Streams.dat

Post by aluigi »

The script is for who wants to work on the format and how to read the raw data, NOT for extraction.
Doprond
Posts: 67
Joined: Tue Mar 15, 2016 3:38 pm

Re: Spider-Man: Shattered Dimensions Streams.dat

Post by Doprond »

Ok,thanks