Welcome!

Join our community of MMO enthusiasts and game developers! By registering, you'll gain access to discussions on the latest developments in MMO server files and collaborate with like-minded individuals. Join us today and unlock the potential of MMO server development!

Join Today!

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