Help reading "fut.db file" of fifa 14 mobile

Extraction and unpacking of game archives and compression, encryption, obfuscation, decoding of unknown files
wolftatoo
Posts: 49
Joined: Mon Nov 07, 2016 5:49 am

Help reading "fut.db file" of fifa 14 mobile

Post by wolftatoo »

Im attaching a fut.db file that i can read only using hex program.its a soccer mobile game file.
It holds some database, i used unidb.exe but it couldnt decript it.
Any help would be apreciated
https://drive.google.com/file/d/0B-vpTp7o8dEFRzMwaldzUmZnbG8/view?usp=drivesdk

EDIT: Title updated
Last edited by wolftatoo on Wed Nov 30, 2016 5:34 pm, edited 2 times in total.
aluigi
Site Admin
Posts: 12984
Joined: Wed Jul 30, 2014 9:32 pm

Re: Help reading "fut.db file"

Post by aluigi »

You must EVER provide the name of the game because it's highly possible that this format is already covered by my scripts.
Anyway:

Code: Select all

get ZERO long
get DUMMY long
get FILES long
for i = 0 < FILES
    get OFFSET long
    putarray 0 i OFFSET
next i
    get OFFSET asize
    putarray 0 i OFFSET
for i = 0 < FILES
    getarray OFFSET 0 i
    math i + 1
    getarray SIZE   0 i
    math SIZE - OFFSET
    log "" OFFSET SIZE
next
wolftatoo
Posts: 49
Joined: Mon Nov 07, 2016 5:49 am

Re: Help reading "fut.db file" of fifa 14 mobile

Post by wolftatoo »

Thank u a lot Aluigi, ur the man! 8-)
BTW,title updated based on ur advice!