StormCE qbms script extracts not all data

Extraction and unpacking of game archives and compression, encryption, obfuscation, decoding of unknown files
lupus
Posts: 36
Joined: Sun Dec 03, 2017 7:52 am

StormCE qbms script extracts not all data

Post by lupus »

Hi, I'm trying to extract some data from StormBasic games for symbian with this script:

Code: Select all

# StormCE
# script for QuickBMS http://quickbms.aluigi.org

idstring "StormCE"
goto 0x18
for
    getdstring NAME 0x30
    if NAME == ""
        break
    endif
    get SIZE long
    get OFFSET long
    log NAME OFFSET SIZE
next

but looks it cant extract some files.
Aluigi, can you fix it?
Tnx.

Sample file from TechWars:
https://github.com/1upus/N-Gage_stuff/b ... echWars.7z
Acewell
Posts: 706
Joined: Fri Aug 08, 2014 1:06 am

Re: StormCE qbms script extracts not all data

Post by Acewell »

here :D

Code: Select all

# StormCE
# script for QuickBMS http://quickbms.aluigi.org

get FOLDER basename
idstring "StormCE"
goto 0x18
for
    getdstring NAME 0x14
    if NAME == ""
        break
    endif
    get SIZE long
    get OFFSET long
    string NAME p "%s\%s" FOLDER NAME
    log NAME OFFSET SIZE
next


the sbi files looks like it has some zlib compressed data
lupus
Posts: 36
Joined: Sun Dec 03, 2017 7:52 am

Re: StormCE qbms script extracts not all data

Post by lupus »

Thx dude!