CoPyRiGhT © 2008 - http://www.kinginfet.net/ --> <html> <head> <title>Modulo Crypter v 1.3 By KinG-InFeT</title> <meta name="description" http-equiv="keywords" content="KinG-InFeT" /> </head> <body> <center> <h1>Modulo Crypter v 1.3</h1> </center> <center> <form method="POST"> <input type='text' name='stringa'> <!--Dati di input cove si inseriranno nella variabile STR--> <br> <input type='submit' name='str' value='Cripta Stringa in MD5,SHA1.'> <!--inserimento valore in variabile--> </form> </center> </body> </html> <?php $str = $_POST['stringa']; //inserimento lavore in variabile STR { $MD5 = MD5($str); //crypting str in md5 $SHA1 = SHA1($str); //crypting str in sha1 $N = "<hr>"; //variabili rarie $Autor = "PoWeReD By KinG-InFeT"; echo "Cryptato in MD5 è : $MD5"; //stampo la variabile STR criptata in MD5 echo "Cryptato in SHA1 è: $SHA1"; //stampo la variabile STR criptata in SHA1 echo "<center><b>$Autor</b></center>"; } ?>
|