- Impact
- 5
Recently users have been protecting their password by encrypting it in md5 format. Are you not up to date? Well with this script, you can be! (Although, this is not the safest form of protecting yourself... it is a simple script which will help you a lot. I hold no responsibility for any hack attempts against this script!)
More tutorials coming soon at:
http://www.netsuhi.com
PHP:
<form method="POST" action=''>
<h1>md5 Encrypter</h1>
<b>Password to be Encrypted:</b><br>
<input type='text' name='secure' value=''>
<input type='submit' name='submit' value='Convert!'>
</form>
<?PHP
$secure = htmlspecialchars(stripslashes($_POST['secure']));
if($_POST['submit'])
{
if($secure == NULL)
{
echo ("<b>Error:</b> Type in the password to encrypt!");
}
if($secure != NULL)
{
$sec = md5($secure);
echo ("<b>Text to encrypt:</b><br>$secure<br><br><b>Encrypted text:</b><br>$sec");
}
}
?>
More tutorials coming soon at:
http://www.netsuhi.com






