Register for your free account! | Forgot your password?

You last visited: Today at 17:30

  • Please register to post and access all features, it's quick, easy and FREE!

Advertisement



Decrypting Problem

Discussion on Decrypting Problem within the CO2 Programming forum part of the Conquer Online 2 category.

Reply
 
Old   #1
 
G4George's Avatar
 
elite*gold: 0
Join Date: Jul 2011
Posts: 20
Received Thanks: 3
Decrypting Problem

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.
G4George is offline  
Old 07/07/2011, 04:58   #2
 
elite*gold: 0
Join Date: Jun 2006
Posts: 457
Received Thanks: 67
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.
shitboi is offline  
Old 07/07/2011, 15:37   #3
 
G4George's Avatar
 
elite*gold: 0
Join Date: Jul 2011
Posts: 20
Received Thanks: 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.
G4George is offline  
Old 07/07/2011, 16:45   #4
 
Real~Death's Avatar
 
elite*gold: 0
Join Date: Jun 2007
Posts: 1,272
Received Thanks: 246
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@@
Real~Death is offline  
Old 07/07/2011, 16:50   #5
 
nTL3fTy's Avatar
 
elite*gold: 0
Join Date: Jun 2005
Posts: 692
Received Thanks: 353
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 .

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.
nTL3fTy is offline  
Thanks
1 User
Old 07/07/2011, 17:07   #6
 
G4George's Avatar
 
elite*gold: 0
Join Date: Jul 2011
Posts: 20
Received Thanks: 3
Quote:
Originally Posted by nTL3fTy View Post
You need to use .

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.
G4George is offline  
Old 07/07/2011, 17:17   #7
 
elite*gold: 0
Join Date: Jun 2006
Posts: 457
Received Thanks: 67
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.
shitboi is offline  
Old 07/07/2011, 18:08   #8
 
G4George's Avatar
 
elite*gold: 0
Join Date: Jul 2011
Posts: 20
Received Thanks: 3
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 ?
G4George is offline  
Old 07/07/2011, 18:26   #9
 
elite*gold: 21
Join Date: Jul 2005
Posts: 9,193
Received Thanks: 5,376
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.
pro4never is offline  
Old 07/07/2011, 18:54   #10
 
G4George's Avatar
 
elite*gold: 0
Join Date: Jul 2011
Posts: 20
Received Thanks: 3
So in the end, I need to create a program, which I can't possibily do because I lack of knowledge. Thanks alot anyway...
G4George is offline  
Old 07/07/2011, 23:18   #11
 
elite*gold: 21
Join Date: Jul 2005
Posts: 9,193
Received Thanks: 5,376
.... LEARN the knowledge. It's not difficult.
pro4never is offline  
Old 07/07/2011, 23:53   #12
 
G4George's Avatar
 
elite*gold: 0
Join Date: Jul 2011
Posts: 20
Received Thanks: 3
You don't need to capitalize some words to make me understand what you're meaning... I feel like you're yelling at me.
G4George is offline  
Old 07/08/2011, 10:47   #13
 
majick's Avatar
 
elite*gold: 0
Join Date: Nov 2006
Posts: 211
Received Thanks: 42
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.

__________________________________________________ _____
majick is offline  
Old 07/09/2011, 13:33   #14
 
G4George's Avatar
 
elite*gold: 0
Join Date: Jul 2011
Posts: 20
Received Thanks: 3
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.
G4George is offline  
Old 07/10/2011, 06:57   #15
 
elite*gold: 0
Join Date: Jun 2006
Posts: 457
Received Thanks: 67
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.
shitboi is offline  
Reply

Tags
decrypt, magictype, problem


Similar Threads Similar Threads
Decrypting l2.ini on es-L2
10/12/2006 - Lineage 2 - 0 Replies
Hi, please help me decrypt the l2.ini file of www.ES-L2.com, i tried all your ideas of drag drop with l2decrypt or cmd with l2encdec, if u want to have the file, download the patcher on the www.es-l2.com and then ull be able to run the setting and get the l2.ini files and help me decrypt it to find the IP and all we need to put a L2walker on that server. frodo
Decrypting Monster.dat
01/31/2006 - Conquer Online 2 - 2 Replies
Ok for me and all the other people who dont yet fully understand hex editing.... can someone Write and ExTeNsIvE InDePt Guide to Decrypting and Encrypting the monster.dat please. I looked at the one pinned but i don't understand Counters Bytes Left Right I mean if someone could include some pics that would be great ;) lol Is anyone up for the job im sure this will make better people out of everyone because then we will have some knowledge of hex and you guys wont have to explain everything...
Is Decrypting 412 ini Not Possible Yet?
09/06/2005 - Lineage 2 - 9 Replies
Seeing as there is no answer to my thread that has been around for days ( http://www.elitepvpers.com/forum/index.php?...& f=41&t=6844&s= ) is there just no way at this time to decrypt the 412 ini?
help with decrypting , please
06/20/2005 - Lineage 2 - 3 Replies
I want to decrypt lineage.dll's from ingame walker. Is it possible to decrypt and to edit? Lowfyr provided with the link to some decryptor (http://dstuff.luftbrandzlung.org/l2asylum/), but the question is: is this the right tool for that and what about them decoding version (111, 121, 211, 212, 41xL, 41x)? Do I need to use some specific setting for specific walker version? Thanks in advance.



All times are GMT +2. The time now is 17:30.


Powered by vBulletin®
Copyright ©2000 - 2024, Jelsoft Enterprises Ltd.
SEO by vBSEO ©2011, Crawlability, Inc.
This site is protected by reCAPTCHA and the Google Privacy Policy and Terms of Service apply.

Support | Contact Us | FAQ | Advertising | Privacy Policy | Terms of Service | Abuse
Copyright ©2024 elitepvpers All Rights Reserved.