BattleBlock Theater (*.PAK)

Extraction and unpacking of game archives and compression, encryption, obfuscation, decoding of unknown files
Ekey
Posts: 1383
Joined: Sat Aug 09, 2014 2:34 pm

BattleBlock Theater (*.PAK)

Post by Ekey »

Very simple format :)

Code: Select all

# BattleBlock Theater (PAK format)
#
# Written by Ekey (h4x0r)
#
# script for QuickBMS http://quickbms.aluigi.org

endian BIG
get FILES long

for i = 0 < FILES
    get OFFSET long
    get SIZE long
    getdstring NAME 64
    log NAME OFFSET SIZE
next i