Tick Tock Isle (.exe)

Extraction and unpacking of game archives and compression, encryption, obfuscation, decoding of unknown files
0wn3df1x
Posts: 24
Joined: Wed Sep 02, 2015 6:56 pm

Tick Tock Isle (.exe)

Post by 0wn3df1x »

Greetings!
Game: http://store.steampowered.com/app/418440/
Example: https://drive.google.com/file/d/0B4gOIO ... EtS0k/view

Offzip can unpack this, but unfortunately there is no folder structure; files don't have real extensions, so I can't find textures, fonts, text e.t.c.

Thanks!
aluigi
Site Admin
Posts: 12984
Joined: Wed Jul 30, 2014 9:32 pm

Re: Tick Tock Isle (.exe)

Post by aluigi »

There are some games that have their resources all in the same exe, so this is not the first time I see them and I already worked on them.
Long story short... no stable/reliable alternatives to offzip :)
einstein95
Posts: 64
Joined: Tue Sep 08, 2015 11:27 am

Re: Tick Tock Isle (.exe)

Post by einstein95 »

Code: Select all

comtype zlib_noerror

findloc OFFSET binary "\x77\x77\x77\x77\x49\x87\x47\x12"
math OFFSET + 8
goto OFFSET
get UNK long
get FILEZ long #?
math OFFSET + 0x18
goto OFFSET
for i = 0 < FILEZ
   get NAMEL short
   getdstring NAME NAMEL
   get UNK long
   get SIZE long
   savepos OFF
   clog NAME OFF SIZE SIZE
   math OFF + SIZE
   goto OFF
next i


This extracts the application exe but fails as it gets to the "PAME" part at 0xEB0F2. If aluigi wants to take another look at this, that would be much appreciated. (now it's time for sleep)
aluigi
Site Admin
Posts: 12984
Joined: Wed Jul 30, 2014 9:32 pm

Re: Tick Tock Isle (.exe)

Post by aluigi »

The good old "PAME".
I already spent time on that in the past...