[PHP] How to make a md5 hash generator

Junior Spellweaver
Joined
Jul 6, 2008
Messages
173
Reaction score
2
http://www.youtube.com/watch?v=rrCIbfI8uB0

Description:
Code: http://elitetactics.sytes.net/codes/index.html
Test: http://elitetactics.sytes.net/test2.php

A little tutorial to make a md5 hash generator.

%php
%html
%md5

Code:
PHP:
<form action='test2.php?' name='gen' method='post'>
Text To Hash <input type='text' name='pass'><br />
<input type='submit' value='Go!'>
</form>

<?php
// Start MD5 Hash Generator \\
$pass2=$_POST['pass'];
$pass=md5($pass2);
echo $pass;
// End Hash Generator \\
?>

Enjoy.
 
Last edited:
...

Didn't someone else post that in the other thread? I hope you won't continue this...make it more advanced, as people can look this up in 5 seconds. (or 1 if you know where to be)
 
How do you crack MD5, my mate does it and won't tell me >;]
 
How do you crack MD5, my mate does it and won't tell me >;]

Well, you do this:

Take 5 pens, and 50 kilo of paper, now write down every possible password and their MD5 outcome...that is what REAL hackers do ;)
 
Back