Decrypting Problem

07/07/2011 00:16 G4George#1
Hello.
I'm encountering a big problem. I'm trying to decrypt the MagicType.dat but with no success. The available decryptors I found are not working. After I select the file and start the decrypting process, in the end I get a text file full with unknown characters (something like [][][]) and nothing else more.
The client version is 5039. I thought trying to decrypt it for another version (5165) and it worked but for this one it doesn't. Do, any of you, know why it can't be decrypted and does any of you members know how to successfully manage to decrypt it ? Any advices or help is really really really appreciated.
07/07/2011 04:58 shitboi#2
i am not sure about versions. but search for a post by high6 ( not sure if he made the post using this username) Thread title should be DatCryptor V2. It will help you with all sorts of .dat files.
07/07/2011 15:37 G4George#3
I found the decryptor and still the file can't be decrypted but thanks for your help.


L.E: After a deeper searching I found something interesting. In one of a guy named Arco, somebody told him that he need to read it in binary (same problem with MagicType.dat). I don't really know what it means but maybe you guy can enlighten me.
07/07/2011 16:45 Real~Death#4
Code:
10335@@30000@@6@@AzureShield@@0@@0@@0@@1@@1@@123@@0@@0@@100@@0@@0@@21@@89@@0@@1190@@198@@50@@0@@0@@0@@0@@0@@0@@0@@0@@30@@0@@0@@0@@0@@1@@2800@@35@@0@@0@@0@@0@@0@@0@@0@@0@@0@@0@@0@@
10336@@30000@@6@@AzureShield@@0@@0@@0@@1@@2@@169@@0@@0@@100@@0@@0@@22@@89@@0@@1442@@263@@70@@0@@0@@0@@0@@0@@0@@0@@0@@30@@0@@0@@0@@0@@1@@5200@@40@@0@@0@@0@@0@@0@@0@@0@@0@@0@@0@@0@@
10337@@30000@@6@@AzureShield@@0@@0@@0@@1@@3@@280@@0@@0@@100@@0@@0@@23@@89@@0@@1690@@328@@90@@0@@0@@0@@0@@0@@0@@0@@0@@30@@0@@0@@0@@0@@1@@8000@@50@@0@@0@@0@@0@@0@@0@@0@@0@@0@@0@@0@@
10338@@30000@@6@@AzureShield@@0@@0@@0@@1@@4@@405@@0@@0@@100@@0@@0@@25@@89@@0@@0@@0@@110@@0@@0@@0@@0@@0@@0@@0@@0@@30@@0@@0@@0@@0@@1@@12000@@60@@0@@0@@0@@0@@0@@0@@0@@0@@0@@0@@0@@
:p
07/07/2011 16:50 nTL3fTy#5
Quote:
Originally Posted by G4George View Post
I found the decryptor and still the file can't be decrypted but thanks for your help.


L.E: After a deeper searching I found something interesting. In one of a guy named Arco, somebody told him that he need to read it in binary (same problem with MagicType.dat). I don't really know what it means but maybe you guy can enlighten me.
You need to use [Only registered and activated users can see links. Click Here To Register...].

As for the structure of magictype.dat:
Quote:
Originally Posted by nTL3fTy View Post
Magictype.dat structure:
datatypename
intamount
uint[amount]id
MagicType[amount]magictypes

MagicType structure:

I believe this should be all you need to parse the file. The id mentioned in the beginning of the file is type*10+level. With that information, you can build a dictionary.
07/07/2011 17:07 G4George#6
Quote:
Originally Posted by nTL3fTy View Post
You need to use [Only registered and activated users can see links. Click Here To Register...].

As for the structure of magictype.dat:
Thank you mate but I supose I need to write some kind of a program just to be able to edit this file right? Because that's what I need, I need to edit it and re-encrypt it but if it requires programming language, I think I will give up. Thank you so much again.
07/07/2011 17:17 shitboi#7
no, lol.
if you dont know basic programming, you can always use the ASCII table. just look up the numbers in ASCII table and search for their corresponding values.
07/07/2011 18:08 G4George#8
Quote:
Originally Posted by shitboi View Post
no, lol.
if you dont know basic programming, you can always use the ASCII table. just look up the numbers in ASCII table and search for their corresponding values.
I'm even more confused now... In the end, to be able to see the correct content of the file, what kind of programs should I use ?
07/07/2011 18:26 pro4never#9
It's NOT encrypted.

What they are telling you is that it's a structured binary file. He just posted the structure of the file which you can use to create an encoder/decoder program.

Use the binary reader + the structure he posted to try to pull out the information you want...

Then you can work on writing a program to turn it into a normal text file

Then make a program to convert the text file into a structured binary file.
07/07/2011 18:54 G4George#10
So in the end, I need to create a program, which I can't possibily do because I lack of knowledge. Thanks alot anyway...
07/07/2011 23:18 pro4never#11
.... LEARN the knowledge. It's not difficult.
07/07/2011 23:53 G4George#12
You don't need to capitalize some words to make me understand what you're meaning... I feel like you're yelling at me.
07/08/2011 10:47 majick#13
he was not yelling just using his big boy voice to offer you self help guidance so people do not need to hold your hand.
You would get further by saying I am willing to learn please give me a place to start so I am not dumbfounded with the overflow of learning resources available.

observe.

__________________________________________________ ______

Hello pro4never I wish to learn

What would be a good place to start.

__________________________________________________ _____
07/09/2011 13:33 G4George#14
Maybe, but I already decided to start learning a programming language, and that's Visual Basic. I think I can handle it and then, maybe I can resolve even this decrypting, or w/e it's called, problem.
07/10/2011 06:57 shitboi#15
to summarise this thread. DatCryptor v2 does decrypt/encrypt the dat files seamlessly. however the file you are handling is not reading friendly.

One solution has been previously mentioned by 2 members. use binary reader.

Or you can learn the binary number system and use it together with an ascii table. This would be tedious and only works if you know what you're after. The first solution is only to have the machine iteratively performace these troublesome look-up tasks for you.