I try the tool in this post
viewtopic.php?t=1631
The tool name Asphyre Manager i try use that then i got error
so i think they not same file like the post
Can anyone help me
[Help] Extract file *.ASDB ? [Asphyre Manager]
-
- Posts: 5
- Joined: Thu May 06, 2021 4:24 am
-
- Site Admin
- Posts: 12984
- Joined: Wed Jul 30, 2014 9:32 pm
Re: [Help] Extract file *.ASDB ? [Asphyre Manager]
The file you uploaded is an "abdb" file that only contains a list of entries.
There is no data or content.
There is no data or content.
-
- Posts: 5
- Joined: Thu May 06, 2021 4:24 am
Re: [Help] Extract file *.ASDB ? [Asphyre Manager]
aluigi wrote:The file you uploaded is an "abdb" file that only contains a list of entries.
There is no data or content.
I only need the list inside that file. Can you show me how to extract them?
-
- Site Admin
- Posts: 12984
- Joined: Wed Jul 30, 2014 9:32 pm
Re: [Help] Extract file *.ASDB ? [Asphyre Manager]
You can use quickbms with the -V option at command-line and the following script:
It visualizes every single field parsed by the script.
Code: Select all
idstring "abdb"
get DUMMY long # 1
get DUMMY long # 0x10
get DUMMY long # 0x10
get ENTRIES long
get DUMMY long # 0x18
get DUMMY long # 0x20 INFO_OFF?
get ZERO long
for i = 0 < ENTRIES
getdstring HASH 16
get NUM long
get ZERO long # maybe 64bit
next i
It visualizes every single field parsed by the script.
-
- Posts: 5
- Joined: Thu May 06, 2021 4:24 am
Re: [Help] Extract file *.ASDB ? [Asphyre Manager]
aluigi wrote:You can use quickbms with the -V option at command-line and the following script:Code: Select all
idstring "abdb"
get DUMMY long # 1
get DUMMY long # 0x10
get DUMMY long # 0x10
get ENTRIES long
get DUMMY long # 0x18
get DUMMY long # 0x20 INFO_OFF?
get ZERO long
for i = 0 < ENTRIES
getdstring HASH 16
get NUM long
get ZERO long # maybe 64bit
next i
It visualizes every single field parsed by the script.
Thank aluigi.
I try cmd with code quickbms.exe -V Game.BMS resource_location.asdb location_save and it work
But other files it not working (Image Below). Can't see what it encodes? Like Number ?
Last edited by TomJerry82 on Thu May 13, 2021 6:11 pm, edited 1 time in total.
-
- Posts: 1383
- Joined: Sat Aug 09, 2014 2:34 pm
Re: [Help] Extract file *.ASDB ? [Asphyre Manager]
I think data is encrypted / obfuscated
-
- Posts: 5
- Joined: Thu May 06, 2021 4:24 am
Re: [Help] Extract file *.ASDB ? [Asphyre Manager]
What about this ? I think this is also a file abdb too but it's an encoded audio
-
- Site Admin
- Posts: 12984
- Joined: Wed Jul 30, 2014 9:32 pm
Re: [Help] Extract file *.ASDB ? [Asphyre Manager]
The screenshot you post clearly says that you didn't run the script on "resource_location.asdb" as instead you stated.
The file provided was resource_location.asdb which is not encrypted and is perfectly parsed by the script.
Regarding "Audio", only the first 32bit is visible and I suppose is the sample rate (22296) while the rest doesn't have any sense.
The file provided was resource_location.asdb which is not encrypted and is perfectly parsed by the script.
Regarding "Audio", only the first 32bit is visible and I suppose is the sample rate (22296) while the rest doesn't have any sense.
-
- Posts: 5
- Joined: Thu May 06, 2021 4:24 am
Re: [Help] Extract file *.ASDB ? [Asphyre Manager]
aluigi wrote:The screenshot you post clearly says that you didn't run the script on "resource_location.asdb" as instead you stated.
The file provided was resource_location.asdb which is not encrypted and is perfectly parsed by the script.
Regarding "Audio", only the first 32bit is visible and I suppose is the sample rate (22296) while the rest doesn't have any sense.
File Name "Audio" , i check the path this audio they write like this */Audio.ogg so that mean this is ogg file but encode.
Last bumped by TomJerry82 on Sun May 23, 2021 12:13 pm.