MD5 lookup table

Amrik

New Member
Messages
8
Reaction score
0
Points
0
I've modified the coding from my MD5 hasher to link to to a database to lookup sotred md5 hashes.

When you click encrypt, your md5 encrypted hash is displayed to you, and added to the database.

When you click decrypt, the database is read and if the md5 has is stored in the database it reads the un-encrypted string.

How to install:

Upload index.php onto your webhost. Then, in MySQL, import the SQL file. Then you are ready to go.

You will also have to edit index.php so that it has your database details.

Download link: here.
 

descalzo

Grim Squeaker
Community Support
Messages
9,373
Reaction score
326
Points
83
Yes, but Why?

Why do you want to look up the stored hash?
 

callumacrae

not alex mac
Community Support
Messages
5,257
Reaction score
97
Points
48
If this is possible, then you're using MD5 wrong - you should always be using a salt. Give this article about hashing a read, and take note of the end of the post - every user should have a unique salt, meaning that you cannot use rainbow tables or reverse lookups.

EDIT: Also, I'm moving this to Scripts and 3rd Party Apps
 
Last edited:
Top