PDA

View Full Version : Convert .bin



hurenhuo
28th November 2008, 02:46
question:

does any body no how to convert trickster.bin to .exe

ScarfaceKilla
28th November 2008, 09:38
question:

does any body no how to convert trickster.bin to .exe

just replace the .bin with .exe ...


i guess you mean how to decrypt the bin file ?!

hurenhuo
28th November 2008, 18:01
i'd tried renaming it .exe but it doesnt work

Rache
28th November 2008, 21:36
i'd tried renaming it .exe but it doesnt work

If you just want to bypass the launcher, go to Main -> Select a Process -> Open a file and then double click trickster.bin. The game will load without having to open launcher.

hurenhuo
30th November 2008, 01:03
not bypass it, but unpack it

ScarfaceKilla
1st December 2008, 09:58
not bypass it, but unpack it

for unpacking it you have to disable the morphing code in the bin file libredy did it already for an earlier version...you have to open it with an disasembler and remove the "security" code :-D

nejb1114
1st December 2008, 21:10
Errrrr. Another option is just converting it to the .exe format and using OllyDbg and going to CreateProcessA. I think you know where to go from there. =D

Guiego
2nd December 2008, 00:44
CreateProcessA only loads GameGuard

nejb1114
2nd December 2008, 04:29
But GameGuard kinda has the option of further protection of the .bin file. I encountered it while trying to edit a *coughLARGEcough*portion of data. After that, I just used the same process for removing Themdia.

[Edit]
There's also the option of using MagicISO. It unpacks .bin files and other picture stuffs.

[Edit]
I'm unpacking it now.

ScarfaceKilla
2nd December 2008, 10:07
But GameGuard kinda has the option of further protection of the .bin file. I encountered it while trying to edit a *coughLARGEcough*portion of data. After that, I just used the same process for removing Themdia.

[Edit]
There's also the option of using MagicISO. It unpacks .bin files and other picture stuffs.

[Edit]
I'm unpacking it now.

so the bin file contains more then just codes/functions like pictures, more data etc and they are all packed in the bin ?

<< interesting :-D

can you post the results ?

hurenhuo
2nd December 2008, 23:21
i tried MagicISo before, it doesnt really do anything, or if i did something wrong
many people, like me, doesnt no how to unpack .bin files, by converting it to an .exe may help

Guiego
3rd December 2008, 02:21
What the hell are you trying?

The "BIN" file is just an exe file like any other! (But packed with a PE file protector)

I can unpack the file, but is really hard recover import table...


EDIT: I found a lot of dll calls, maybe almost all...

My import table attached (For ImpRec)

ScarfaceKilla
3rd December 2008, 14:00
What the hell are you trying?

The "BIN" file is just an exe file like any other! (But packed with a PE file protector)

I can unpack the file, but is really hard recover import table...


EDIT: I found a lot of dll calls, maybe almost all...

My import table attached (For ImpRec)

yeh that are the external references...like the http classes for the (maybe) loader and/or gacha
and to send packets via the internet
etc


but in the bin file are several functions for
* drilling
* reload
* light
etc

and several messages/boxes/buttons/validations
and they can be disassembled if you bypass some code like the morphing function

i'm not a pro in this zone....


[question] i have in my some adress where i didnt know what to tick/set to activate the hack
because one of these is a opcode is a pointer and looks like this: mov ptr[eax*4+03]
i know its the header of a switch

switch(var)
{
case 1: do(); break;
case 2: something(); break;
default: break;
}

but 1st. i dont know the adress where it might point to (adress of case 1 / 2)
and 2nd. i dont know where to write the adres in because i read somewhere that EIP is the register for pointers
but in the code EAX is used... (??)