[RELEASE]Decryptor/Encrypter

09/17/2012 02:54 Purple<3#1
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: [Only registered and activated users can see links. Click Here To Register...]

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?
[Only registered and activated users can see links. Click Here To Register...]

Well, ill be making alot of guides and releases :D 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
09/17/2012 05:44 JohnHeatz#2
Here is the VT scan of it, even though you scanned it, it never hurts to post a VT scan

[Only registered and activated users can see links. Click Here To Register...]
09/18/2012 04:05 Purple<3#3
Did you try it out?
Works fine, I have no virus.
[Only registered and activated users can see links. Click Here To Register...]

Enjoy. Here ill scan with my scanner
09/18/2012 07:06 shadowman123#4
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 ?
09/18/2012 15:26 I don't have a username#5
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.
09/18/2012 21:45 go for it#6
i like the code source :D i so damn want this reflector :D
09/18/2012 21:58 I don't have a username#7
Quote:
Originally Posted by go for it View Post
i like the code source :D i so damn want this reflector :D
[Only registered and activated users can see links. Click Here To Register...]
09/19/2012 00:01 go for it#8
thanks mate , it's good one :D
09/19/2012 00:08 Purple<3#9
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 :o

and so is dotPeek from JetBrains, [Only registered and activated users can see links. Click Here To Register...]
09/19/2012 00:19 I don't have a username#10
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 :o

and so is dotPeek from JetBrains, [Only registered and activated users can see links. Click Here To Register...]
[Only registered and activated users can see links. Click Here To Register...]
09/19/2012 00:22 Captivate#11
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 :o

and so is dotPeek from JetBrains, [Only registered and activated users can see links. Click Here To Register...]
How come I don't believe that?
09/19/2012 00:34 Danial Eugen#12
Quote:
Originally Posted by Captivate View Post
How come I don't believe that?
He is so fake :D
09/19/2012 04:08 Reluctance#13
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.
09/20/2012 02:17 Purple<3#14
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
09/20/2012 02:21 go for it#15
Quote:
Yea, except for the fact that he's from Egypt LOL
DAFUQ !!!!