• Unfortunately, we have experienced significant hard drive damage that requires urgent maintenance and rebuilding. The forum will be a state of read only until we install our new drives and rebuild all the configurations needed. Please follow our Facebook page for updates, we will be back up shortly! (The forum could go offline at any given time due to the nature of the failed drives whilst awaiting the upgrades.) When you see an Incapsula error, you know we are in the process of migration.

Gunz login

Junior Spellweaver
Joined
Nov 26, 2008
Messages
196
Reaction score
62
Does anyway know how to encrypt the passwords with MD5 or even sal1?

If anything, your own password algorythms.

I know Fisher had done it before.
 
Experienced Elementalist
Joined
Sep 4, 2009
Messages
248
Reaction score
69
Look for a thread by Linear88, thread name is Password Hashing.
 
Last edited:
Upvote 0
Legendary Battlemage
Joined
Jan 28, 2008
Messages
695
Reaction score
53
Update all of your passwords to md5 and edit the procedure where check user password using Hash bytes functions.
If I remember, tha name of procedure is spCheckUserPassword

Code:
SELECT * FROM Login WHERE UserID = @UserID AND HASHBYTES('MD5', Password) = @Password
 
Upvote 0
Junior Spellweaver
Joined
Dec 3, 2009
Messages
145
Reaction score
35
My friend figured out a way to encrypt the passwords through the registration of an account, and when his dll was injected into gunz, it would encrypt the input password, then compare it, so that way people had to use his dll :p good method.
 
Upvote 0
Back
Top