[PHP] How to make a md5 hash generator
http://www.youtube.com/watch?v=rrCIbfI8uB0
Description:
Code:
PHP Code:
<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.
Re: [PHP] How to make a md5 hash generator
...
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)
Re: [PHP] How to make a md5 hash generator
Sorry :'( later ill make mroe advance ones, i just want people to know
Re: [PHP] How to make a md5 hash generator
This can be done in one line:
PHP Code:
<?php
// Start MD5 Hash Generator \\
echo md5($_POST['pass']);
?>
Re: [PHP] How to make a md5 hash generator
Test site don't work mate ;) :|
Re: [PHP] How to make a md5 hash generator
Also, I forget to mention a md5 hash can be cracked in under 60 minutes. Running from an almost 7 year old computer.
Re: [PHP] How to make a md5 hash generator
How do you crack MD5, my mate does it and won't tell me >;]
Re: [PHP] How to make a md5 hash generator
Quote:
Originally Posted by
Monsta.
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 ;)
Re: [PHP] How to make a md5 hash generator
Quote:
Originally Posted by
Daevius
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 ;)
Lol!! There's people in India doing that right now for a penny per page!
:drinks_no