Jump to content
MakeWebGames

[$10] Secure Password System


Isomerizer

Recommended Posts

New Secure Password System

Price: $10

Paypal: [email protected]

Description:

This mod is a re-written password system for your game, Your user passwords will be md5'd md5 with a nice long salt. Making decryption of passwords impossible! So, if a hacker does get to view your DB, They wont be able to decrypt any passwords ;)

This Mod Includes:

-Re-written Password function

-Re-written securer authenicate.php

-Register.php edit

Seeing as the whole DB passwords cannot be secured in one, unless you go through every single user password, users have an option to be able to change there password so its salted and md5'd twice so its secure. If its not secure, the password function will inform them of it..

New users wont have to change there password for it to be secured, as the registry tweak will do that automatically. So if you want super secure passwords for your users and want to cut down hacking, this is the mod for you!!

I'll offer installation support on this mod as it may be confusing to new users of PHP.

Oh heres a little screenshot for you...

passrv4.gif

Also can be seen working @ www.amazon-survival.com

Edited by Isomerizer
Link to comment
Share on other sites

  • 2 weeks later...

Re: [$10] Secure Password System

 

Do you take pay by card? PayPal stopped working (I'm 16, gotta be 18 to use)

No...

Alot of under 18's use paypal, Im 16 and been using paypal since i was 13 :-P

I been using since i had my 13th Bday xd. Also i might try this is i can quickly get some money

Link to comment
Share on other sites

  • 3 months later...

Re: [$10] Secure Password System

Really..well someone who is using this, please give me a decrypted password that that password system uses. I wanna see if I can decrypt it.

No offence just wanna make sure people don't buy bullshit. NOt saying your work is bullshit, great work just making sure..about others.

Link to comment
Share on other sites

Re: [$10] Secure Password System

 

Huh..Your saying MD5 cannot be decrypted?...

Your really making me laugh..I can decrypt MD5 in a minute...

As I've said a few times, you do not decrypt MD5, you just type it in a site that contains a massive database full of MD5 strings, it then compares them all and see if it can match any. If it can it will give you the password, is pretty rare if you use a long enough password.

 

Really..well someone who is using this, please give me a decrypted password that that password system uses. I wanna see if I can decrypt it.

No offence just wanna make sure people don't buy bullshit. NOt saying your work is bullshit, great work just making sure..about others.

How can you possibly crack it if you have no idea what the salt is?

Link to comment
Share on other sites

Re: [$10] Secure Password System

Don't think theres any point in this.

Just use something like this:

$password=strip_tags($_POST['password']);
$pass=base64_encode(bin2hex(mhash(MHASH_SHA256,$password)));

 

Result:

OWY4NmQwODE4ODRjN2Q2NTlhMmZlYWEwYzU1YWQwMTVhM2JmNGYxYjJiMGI4MjJjZDE1ZDZjMTViMGYwMGEwOA==

 

If anyone can crack that i would give them $10 right now :wink:

 

PM me if anyone wants help putting this on there site.

Link to comment
Share on other sites

Re: [$10] Secure Password System

Yes techno, you sure can actually 'decrypt' a hashing function which by definition is a one-way process. We're talking about hashes which are used only for comparison, not actually storing data, which would be encryption. There's no such thing as de-hashing

@Ghetto, way to add a heap of functions together that don't need to be. Why would you base64 encode a sha256'd string? You just made it even longer.

Link to comment
Share on other sites

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.

Guest
Reply to this topic...

×   Pasted as rich text.   Paste as plain text instead

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

×
×
  • Create New...