Register for your free account! | Forgot your password?

You last visited: Today at 15:48

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

Advertisement



[RELEASE]Decryptor/Encrypter

Discussion on [RELEASE]Decryptor/Encrypter within the CO2 PServer Guides & Releases forum part of the CO2 Private Server category.

Closed Thread
 
Old   #1
 
elite*gold: 0
Join Date: Sep 2012
Posts: 43
Received Thanks: 12
[RELEASE]Decryptor/Encrypter

This is a Decrypter / Encrypter for all versions (Not 100% sure but ik it will work for 5517-5528)

, (I've had no errors with it)

I'm not sure if it works with ALL versions,
Well I did a little programming on this and made it work with 4537, but this one is a backup

Uploaded directly from my ini file :O Im sure it will work for your client, but I used my custom client.. Not a public one, or Official TQ Clients..

For: Item Files, NPC Files, Weapons, Monsters,

Size: 20kb

No virus, was scanned.. Don't be a idiot and be so cautious -.-

Anyways thanks will be appreciated.

DO NOT, say this is created from you by releasing it with renames -.- PATHETIC LOSERS...

I'm probably going to remove it in a while, so yea take it now or never

Its drag.

How to use:
DRAG any file onto it.
and choose "Encrypt" or "Decrypt"
then just enjoy!



Here you go:

Yes I know this is not a very BIG release but I thought some noobs might need this. LOL jk even pro's

How to create a 5525 server?


Well, ill be making alot of guides and releases and also will read all the threads about needing help and try my best to help!

and remember, PurpleFTW

I Love Haterz

Goodluck, Hope to see a great server out there!

Credits: high9
Purple<3 is offline  
Old 09/17/2012, 05:44   #2
 
JohnHeatz's Avatar
 
elite*gold: 150
Join Date: Apr 2010
Posts: 9,739
Received Thanks: 8,981
Here is the VT scan of it, even though you scanned it, it never hurts to post a VT scan

JohnHeatz is offline  
Old 09/18/2012, 04:05   #3
 
elite*gold: 0
Join Date: Sep 2012
Posts: 43
Received Thanks: 12
Did you try it out?
Works fine, I have no virus.


Enjoy. Here ill scan with my scanner
Purple<3 is offline  
Old 09/18/2012, 07:06   #4
 
shadowman123's Avatar
 
elite*gold: 0
Join Date: Aug 2007
Posts: 1,525
Received Thanks: 230
u have to be more specific than that .. what does the prog Decrypt / Encrypt is it just ini files Or DBC files Or server.dat ?
shadowman123 is offline  
Old 09/18/2012, 15:26   #5
 
elite*gold: 0
Join Date: Dec 2011
Posts: 1,537
Received Thanks: 785
Probably copy-paste and then leaked. If the source code matches any previous applications that do the same then shame on you.

Would anybody check it through a reflector?

#Edit okay I checked it myself and this is clearly stolen. Why don't you give proper credits because you clearly didn't code this.

Yours encrypt/decrypt methods:
Code:
		private static void Decrypt(ref byte[] bytes)
		{
			if (bytes.Length < 0)
			{
				return;
			}
			for (int i = 0; i < bytes.Length; i++)
			{
				byte b = bytes[i] ^ Program.key[(int)((byte)i % 128)];
				int num = i % 8;
				bytes[i] = (byte)(((int)b << 8 - num) + (b >> num));
			}
		}
		private static void Encrypt(ref byte[] bytes)
		{
			if (bytes.Length < 0)
			{
				return;
			}
			for (int i = 0; i < bytes.Length; i++)
			{
				int num = i % 8;
				byte b = (byte)((bytes[i] >> 8 - num) + ((int)bytes[i] << num));
				bytes[i] = (b ^ Program.key[(int)((byte)i % 128)]);
			}
		}
Datcryptor V2 by high9:
Code:
			public byte[] Decrypt(byte[] b)
			{
				for (int i = 0; i < b.Length; i++)
				{
					int num = (int)(b[i] ^ this.key[i % 128]);
					int num2 = i % 8;
					b[i] = (byte)((num << 8 - num2) + (num >> num2));
				}
				return b;
			}
			public byte[] Encrypt(byte[] b)
			{
				for (int i = 0; i < b.Length; i++)
				{
					int num = i % 8;
					int num2 = (int)((byte)((b[i] >> 8 - num) + ((int)b[i] << num)));
					b[i] = (byte)(num2 ^ (int)this.key[i % 128]);
				}
				return b;
			}
Call me a moron, but I'm not the one stealing others work.
I don't have a username is offline  
Thanks
6 Users
Old 09/18/2012, 21:45   #6
 
elite*gold: 0
Join Date: Sep 2012
Posts: 775
Received Thanks: 329
i like the code source i so **** want this reflector
go for it is offline  
Old 09/18/2012, 21:58   #7
 
elite*gold: 0
Join Date: Dec 2011
Posts: 1,537
Received Thanks: 785
Quote:
Originally Posted by go for it View Post
i like the code source i so **** want this reflector
I don't have a username is offline  
Thanks
1 User
Old 09/19/2012, 00:01   #8
 
elite*gold: 0
Join Date: Sep 2012
Posts: 775
Received Thanks: 329
thanks mate , it's good one
go for it is offline  
Old 09/19/2012, 00:08   #9
 
elite*gold: 0
Join Date: Sep 2012
Posts: 43
Received Thanks: 12
Quote:
Originally Posted by I don't have a username View Post
Probably copy-paste and then leaked. If the source code matches any previous applications that do the same then shame on you.

Would anybody check it through a reflector?

#Edit okay I checked it myself and this is clearly stolen. Why don't you give proper credits because you clearly didn't code this.

Yours encrypt/decrypt methods:
Code:
		private static void Decrypt(ref byte[] bytes)
		{
			if (bytes.Length < 0)
			{
				return;
			}
			for (int i = 0; i < bytes.Length; i++)
			{
				byte b = bytes[i] ^ Program.key[(int)((byte)i % 128)];
				int num = i % 8;
				bytes[i] = (byte)(((int)b << 8 - num) + (b >> num));
			}
		}
		private static void Encrypt(ref byte[] bytes)
		{
			if (bytes.Length < 0)
			{
				return;
			}
			for (int i = 0; i < bytes.Length; i++)
			{
				int num = i % 8;
				byte b = (byte)((bytes[i] >> 8 - num) + ((int)bytes[i] << num));
				bytes[i] = (b ^ Program.key[(int)((byte)i % 128)]);
			}
		}
Datcryptor V2 by high9:
Code:
			public byte[] Decrypt(byte[] b)
			{
				for (int i = 0; i < b.Length; i++)
				{
					int num = (int)(b[i] ^ this.key[i % 128]);
					int num2 = i % 8;
					b[i] = (byte)((num << 8 - num2) + (num >> num2));
				}
				return b;
			}
			public byte[] Encrypt(byte[] b)
			{
				for (int i = 0; i < b.Length; i++)
				{
					int num = i % 8;
					int num2 = (int)((byte)((b[i] >> 8 - num) + ((int)b[i] << num)));
					b[i] = (byte)(num2 ^ (int)this.key[i % 128]);
				}
				return b;
			}
Call me a moron, but I'm not the one stealing others work.
Credits added, Just found this on my pc after a very long time.
thought it would have been mine because I've done alot of projects
like this,ANYWAYS if high9 has posted this on EPVP do you mind sending me the thread/post for it?

Ah, and yes I also use ILSpy its pretty cool

and so is dotPeek from JetBrains,
Purple<3 is offline  
Old 09/19/2012, 00:19   #10
 
elite*gold: 0
Join Date: Dec 2011
Posts: 1,537
Received Thanks: 785
Quote:
Originally Posted by Purple<3 View Post
Credits added, Just found this on my pc after a very long time.
thought it would have been mine because I've done alot of projects
like this,ANYWAYS if high9 has posted this on EPVP do you mind sending me the thread/post for it?

Ah, and yes I also use ILSpy its pretty cool

and so is dotPeek from JetBrains,
I don't have a username is offline  
Old 09/19/2012, 00:22   #11
 
Captivate's Avatar
 
elite*gold: 0
Join Date: Jul 2010
Posts: 1,532
Received Thanks: 575
Quote:
Originally Posted by Purple<3 View Post
Credits added, Just found this on my pc after a very long time.
thought it would have been mine because I've done alot of projects
like this,ANYWAYS if high9 has posted this on EPVP do you mind sending me the thread/post for it?

Ah, and yes I also use ILSpy its pretty cool

and so is dotPeek from JetBrains,
How come I don't believe that?
Captivate is offline  
Thanks
6 Users
Old 09/19/2012, 00:34   #12
 
Danial Eugen's Avatar
 
elite*gold: 0
Join Date: Sep 2012
Posts: 171
Received Thanks: 68
Quote:
Originally Posted by Captivate View Post
How come I don't believe that?
He is so fake
Danial Eugen is offline  
Thanks
1 User
Old 09/19/2012, 04:08   #13
 
Reluctance's Avatar
 
elite*gold: 0
Join Date: Aug 2012
Posts: 49
Received Thanks: 11
Wow is all I got to say.

If this is the Purple that I may have heard of, then you really are an idiot. I'm pretty sure you're Shock from 4botters.
Reluctance is offline  
Old 09/20/2012, 02:17   #14
 
elite*gold: 0
Join Date: Sep 2012
Posts: 43
Received Thanks: 12
Quote:
Originally Posted by Reluctance View Post
Wow is all I got to say.

If this is the Purple that I may have heard of, then you really are an idiot. I'm pretty sure you're Shock from 4botters.
Yea, except for the fact that he's from Egypt LOL (Shock is from egypt) says on 4botters
Purple<3 is offline  
Old 09/20/2012, 02:21   #15
 
elite*gold: 0
Join Date: Sep 2012
Posts: 775
Received Thanks: 329
Quote:
Yea, except for the fact that he's from Egypt LOL
DAFUQ !!!!
go for it is offline  
Closed Thread


Similar Threads Similar Threads
[Release]PathFinder Decryptor V0.5
03/17/2018 - EO PServer Guides & Releases - 20 Replies
I have now almost fully finished a fully working Pathfinder Compiler. Requirements Computer MySQL Server MapDestination.dat (found in the ini folder of EO) My Application .Net Framework 3.5 (Possibly works with other Frameworks) - Used 64bit and 3.5 to code Functions
[RELEASE] My .Dat Files Encrypter & Decrypter
08/11/2015 - CO2 Exploits, Hacks & Tools - 120 Replies
I decided to release my .Dat De-En program to you guys, It decrypts and encrypts ANY CONQUER ONLINE .DAT files. PRESS THANKS IF YOU ARE DOWNLOADING IT. *> You may do not re-release my software without my permission! *> This program encrypts & decrypts ANY CONQUER ONLINE .DAT file! *> If you have any problem with my software, just post your issue below.
[Release] Sdata Encryptor/Decryptor (w/ source)
05/14/2011 - Shaiya PServer Development - 20 Replies
Hello Shaiya section! I decided to take a little break from Silkroad and wanted to have a look at this game. I've only had it for less than a day, but so far the game seems pretty straightforward to reverse. So, here's my first release, a tool to encrypt/decrypt the Sdata files. I've noticed there aren't any public versions around and the methods don't seem to be publicly known, so hopefully this helps out some with the servers and all those that need it. I am using ShaiyaUS client version...
RFO INI De-Encrypter
09/24/2005 - General Gaming Discussion - 5 Replies
kann mir plz jemand helfen einen zu finden??



All times are GMT +1. The time now is 15:48.


Powered by vBulletin®
Copyright ©2000 - 2025, 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 ©2025 elitepvpers All Rights Reserved.