the proc runing on linux 32...... and the dbfs is config fiel.....
please help me,,,unpack and repack it .....thanks!!!
if download three parts.plz rename them. like this:
unpack.001.7z to unpack.7z.001 ;
or may dont unrar it.
thanks!!!
[request],plz,unpack and repack the dbfs file!!!! [Douxian]
-
- Posts: 26
- Joined: Fri Mar 20, 2015 2:04 pm
-
- Site Admin
- Posts: 12984
- Joined: Wed Jul 30, 2014 9:32 pm
Re: [request],plz,unpack and repack the dbfs file!!!!
In case someone is interested, the name of the game is: Douxian
-
- Posts: 26
- Joined: Fri Mar 20, 2015 2:04 pm
Re: [request],plz,unpack and repack the dbfs file!!!!
aluigi wrote:In case someone is interested, the name of the game is: Douxian
yes...it is....
-
- Site Admin
- Posts: 12984
- Joined: Wed Jul 30, 2014 9:32 pm
Re: [request],plz,unpack and repack the dbfs file!!!!
It's Berkeley DB, found easily by using:
How to access it?
It's a bit boring but let's start with:
Now:
Yeah, chaotic. You can get a better (non-hex) output in this way:
Basically every key is the name of the file and the data is its content.
Anyway now that you know what is the file it's up to you to access the data and doing the rest.
Code: Select all
file firmware.dbfs
How to access it?
It's a bit boring but let's start with:
Code: Select all
sudo apt-get install db-util
Now:
Code: Select all
db_dump firmware.dbfs
Yeah, chaotic. You can get a better (non-hex) output in this way:
Code: Select all
db_dump -f output.txt -p firmware.dbfs
Basically every key is the name of the file and the data is its content.
Anyway now that you know what is the file it's up to you to access the data and doing the rest.