Main » Articles » Web Hacking » Website Hacking Tools |
|| ALL TYPE OF HASH GENERATOR SCRIPT ||
=============================================================================================== Copy the Code To Note Pad and save it as .php =============================================================================================== $p = empty($_POST['p']) ? null : $_POST['p']; ?> <html> <head><title>Hash testing</title></head> <style type="text/css"> table {border-collapse: collapse;} table, td, th {border: solid 1px #ccc;} th {background: #e1e1e1;border-color: #999;} td, th {padding: 0.25em;} td.algo {font-weight: bold;} tr.on td {background: #f0f0f0;} </style> <body> <h1>String hashing</h1> <form method="post" action=""> <p><label for="p">Enter a string to hash:</label><br /><input id="p" type="text" name="p" value="" /></p> <p><input type="submit" name="submit" value="Hash It" /></p> </form> <hr /> <h2>Table of hash values for <em></em> based on algorithm</h2> <table> <tr> <th>Algorithm</th> <th>Hashed value of <em></em></th> </tr> <tr class="on"> <td class="algo"></td> <td class="hash"></td> </tr> </table> </body> </html> | |
Views: 1184 | Comments: 1 | Rating: 2.8/4 |
Total comments: 1 | |
| |