Adobe Flash Player archive

Extraction and unpacking of game archives and compression, encryption, obfuscation, decoding of unknown files
onelove1210
Posts: 58
Joined: Thu Jun 16, 2016 11:02 am

Adobe Flash Player archive

Post by onelove1210 »

Edited...
Last edited by onelove1210 on Thu Aug 04, 2016 12:17 am, edited 1 time in total.
aluigi
Site Admin
Posts: 12984
Joined: Wed Jul 30, 2014 9:32 pm

Re: Adobe Flash Player archive

Post by aluigi »

It looked like lzma but it isn't or there is something missing.
Anyway this script is a possible solution but it's totally useless, just better than nothing:

Code: Select all

quickbmsver "0.7.5"
comtype lzma_dynamic
get ARCHIVE_SIZE asize
    findloc OFFSET binary "\x5d\x00\x00\x10\x00\x00"
for OFFSET = OFFSET != ARCHIVE_SIZE
    goto OFFSET
    getdstring SKIP 5
    findloc NEXT_OFF binary "\x5d\x00\x00\x10\x00\x00" 0 "" -1
    if NEXT_OFF == ""
        get NEXT_OFF asize
    endif

    math SIZE = NEXT_OFF
    math SIZE - OFFSET
    clog "" OFFSET SIZE SIZE
    math OFFSET = NEXT_OFF
next
onelove1210
Posts: 58
Joined: Thu Jun 16, 2016 11:02 am

Re: Adobe Flash Player archive

Post by onelove1210 »

edited..
Last edited by onelove1210 on Wed Aug 03, 2016 2:01 pm, edited 2 times in total.
aluigi
Site Admin
Posts: 12984
Joined: Wed Jul 30, 2014 9:32 pm

Re: Adobe Flash Player archive

Post by aluigi »

I don't know what you mean, the script automatically extracts ALL the lzma files trying to decompress them, those extracted files without lzma extension are those that succeded.
onelove1210
Posts: 58
Joined: Thu Jun 16, 2016 11:02 am

Re: Adobe Flash Player archive

Post by onelove1210 »

edited
Last edited by onelove1210 on Wed Aug 03, 2016 2:00 pm, edited 1 time in total.
aluigi
Site Admin
Posts: 12984
Joined: Wed Jul 30, 2014 9:32 pm

Re: Adobe Flash Player archive

Post by aluigi »

m14 doesn't contain a valid lzma stream.
Anyway feel free to test what you said:

Code: Select all

comtype lzma_dynamic
findloc OFFSET binary "\x5d\x00\x00"
get SIZE asize
math SIZE - OFFSET
clog "dump.dat" OFFSET SIZE SIZE
onelove1210
Posts: 58
Joined: Thu Jun 16, 2016 11:02 am

Re: Adobe Flash Player archive

Post by onelove1210 »

seem still not work, anyway, thank you for your support :D