[SOLVED] Prey "VENOMBINPAK1.0" (Xbox 360)

Extraction and unpacking of game archives and compression, encryption, obfuscation, decoding of unknown files
AlphaTwentyThree
Posts: 909
Joined: Sat Aug 09, 2014 11:21 am

[SOLVED] Prey "VENOMBINPAK1.0" (Xbox 360)

Post by AlphaTwentyThree »

Hello everybody,

I'm trying to get a hold of the X360 version's files of Prey. Format seems simple enough but somehow I'm failing to produce anything sensible at the moment. Can somebody write a quick script for these archives?
Here are some samples: https://1fichier.com/?00x13svrypubyleobzty
Thanks!
Last edited by AlphaTwentyThree on Fri Jan 21, 2022 8:47 am, edited 2 times in total.
AlphaTwentyThree
Posts: 909
Joined: Sat Aug 09, 2014 11:21 am

Re: Prey "VENOMBINPAK1.0" (Xbox 360)

Post by AlphaTwentyThree »

Well, somehow I was a bit dumb, here's the script:

Code: Select all

idstring "VENOMBINPAK1.0"
endian big
goto 0xf
get BIAS long
get FILES long
get DATASIZE long
for i = 1 < FILES
   getCT NAME string 0x0a
   getCT SIZE string 0x0a
   getCT OFFSET string 0x0a
   math OFFSET += BIAS
   getCT UNK string 0x0a
   log NAME OFFSET SIZE
next i

Somehow I didn't know that QuickBMS automatically converts strings to something usable when using the getCT command.
aluigi
Site Admin
Posts: 12984
Joined: Wed Jul 30, 2014 9:32 pm

Re: Prey "VENOMBINPAK1.0" (Xbox 360) [-solved-]

Post by aluigi »

You can also replace "getct VAR string 0x0a" with "get VAR line"