Important information: this site is currently scheduled to go offline indefinitely by end of the year.

Search found 2599 matches

by chrrox
Sun Mar 07, 2021 11:32 pm
Forum: Tutorials
Topic: Mobile Game Asset Download
Replies: 304
Views: 190884

Re: Mobile Game Asset Download

the built in internet browser in nox.
by chrrox
Fri Mar 05, 2021 2:41 am
Forum: Tutorials
Topic: Mobile Game Asset Download
Replies: 304
Views: 190884

Re: Mobile Game Asset Download

Did you try opening the normal browser and see if you see anything.
by chrrox
Tue Mar 02, 2021 4:27 pm
Forum: Tutorials
Topic: Mobile Game Asset Download
Replies: 304
Views: 190884

Re: Mobile Game Asset Download

That is encrypted.
by chrrox
Thu Feb 18, 2021 1:23 am
Forum: Compressed files and methods
Topic: Cosmic Break 2 .kar file extension
Replies: 7
Views: 2048

Re: Cosmic Break 2 .kar file extension

This game?
https://zenhax.com/viewtopic.php?t=13086
https://store.steampowered.com/app/1140 ... Universal/

set ARCHIVE_PASSWORD string "dhfuhsudfh98vhdsovnfdhiouer8u8hgjbkjciudsuifsjdiosajfn"
by chrrox
Tue Feb 16, 2021 8:14 pm
Forum: Game Archive
Topic: Question - Extracting .unity3d file with non-"UnityFS" header
Replies: 31
Views: 9406

Re: Question - Extracting .unity3d file with non-"UnityFS" header

I use the module in magisk for frida.
by chrrox
Tue Feb 16, 2021 11:45 am
Forum: Game Archive
Topic: Question - Extracting .unity3d file with non-"UnityFS" header
Replies: 31
Views: 9406

Re: Question - Extracting .unity3d file with non-"UnityFS" header

If you don't see hook called then the game never called the function after you tried to hook it.
This is the latest version of the game I found.
Image
by chrrox
Sat Feb 13, 2021 2:18 pm
Forum: Game Archive
Topic: Question - Extracting .unity3d file with non-"UnityFS" header
Replies: 31
Views: 9406

Re: Question - Extracting .unity3d file with non-"UnityFS" header

Make a new topic for your game and show where you are stuck.
https://www.tap.io/app/195056?region=us
by chrrox
Sat Feb 13, 2021 1:52 am
Forum: Compressed files and methods
Topic: Wild Arms 3 .BIN decompression?
Replies: 3
Views: 3709

Re: Wild Arms 3 .BIN decompression?

quickbms script to decompress files. Needs to add support for extracting sub archives (align data to 0x800 after last file and start over again) Run this first for now. getdstring DIV 4 goto 0 for findloc OFFSET string DIV print "%OFFSET%" getdstring TMP 0x20 findloc SIZE string DIV goto S...
by chrrox
Fri Feb 12, 2021 1:44 pm
Forum: Game Archive
Topic: Question - Extracting .unity3d file with non-"UnityFS" header
Replies: 31
Views: 9406

Re: Question - Extracting .unity3d file with non-"UnityFS" header

You can dump any file with the code.
You can hook the function and just play the game and it will dump the files as they load.
or manually supply the file list and tell the game to decrypt them by calling its function.
by chrrox
Thu Feb 11, 2021 11:15 pm
Forum: Game Archive
Topic: Question - Extracting .unity3d file with non-"UnityFS" header
Replies: 31
Views: 9406

Re: Question - Extracting .unity3d file with non-"UnityFS" header

The address should never change.
Your creating a normal string instead of a Unicode string.
The address for the function can be seen in gidra when you click the start of the function.
by chrrox
Thu Feb 11, 2021 7:47 pm
Forum: Game Archive
Topic: Question - Extracting .unity3d file with non-"UnityFS" header
Replies: 31
Views: 9406

Re: Question - Extracting .unity3d file with non-"UnityFS" header

The hook is hitting the string create as you showed in your example.
So use that function.
You should be able to paste in the hook function then call create string and it should automatically print it for you.
by chrrox
Thu Feb 11, 2021 11:53 am
Forum: Game Archive
Topic: Question - Extracting .unity3d file with non-"UnityFS" header
Replies: 31
Views: 9406

Re: Question - Extracting .unity3d file with non-"UnityFS" header

you should see it in the return part of it. I am guessing your device has low ram so its not keeping anything in memory after its read. so print the memory in this section. onLeave: function (retval) { console.log(retval); var keyDump2 = Memory.readByteArray(retval, 0x300); console.log(hexdump(keyDu...
by chrrox
Wed Feb 10, 2021 11:49 am
Forum: Game Archive
Topic: Question - Extracting .unity3d file with non-"UnityFS" header
Replies: 31
Views: 9406

Re: Question - Extracting .unity3d file with non-"UnityFS" header

You need to let it finish analyzing the program it takes several hours to do.
Yo need to wait till it says idle on the bottom then run he scripts.
It will run a 2nd time with the scripts.
Then you can start looking at code.
it has to say idle on the bottom between each step.
by chrrox
Tue Feb 09, 2021 11:46 pm
Forum: Game Archive
Topic: Question - Extracting .unity3d file with non-"UnityFS" header
Replies: 31
Views: 9406

Re: Question - Extracting .unity3d file with non-"UnityFS" header

You can run the 32 bit frida server. the offset is most likely wrong from the way it was dumped would be my guess as to why your not hitting the function. or its not calling that function at all you can try a different function to hook. you can also try dumping with https://github.com/lasting-yang/f...