MD5 PHP Hash Rainbow Table Generator Script Example
Page 1 of 1
MD5 PHP Hash Rainbow Table Generator Script Example
- Code:
<?php
session_start();
// jnet.forumotion.com/t1623-md5-php-hash-rainbow-table-generator-script-example#2494
?>
<title>J~Net MD5 Rainbow Table Generator</title>
<center>
<style>
.awesomeText {
color: #000;
font-size: 150%;
}
</style>
<?php
// https://www.tutorialspoint.com/php/php_get_post.htm
if( $_GET["name"] ) {
echo "<p><br><p><br><b>";
echo "<div class='awesomeText'>Here Is Your Output ";
$val=$_GET["name"];
$md5=md5("$val");
echo $_GET['name'] . " $md5" . "<br />";
echo "<p><br><p><br></b></div>";
// echo "$md5 ". $_GET['name']. "<br />";
// exit();
}
?>
<html>
<body>
<form action = "<?php $_PHP_SELF ?>" method = "GET">
Name: <input type = "text" name = "name" />
<input type = "submit" />
</form>
</body>
</html>
<a href="">Refresh</a>
Similar topics
» Create & Valadate Files With Hash
» a function to count rows in a table
» Linux BASH Script Running Commands and Functions From Bash Script and saving to varables
» PHP Random Password Generator
» Bash Fibonacci Sequence Generator
» a function to count rows in a table
» Linux BASH Script Running Commands and Functions From Bash Script and saving to varables
» PHP Random Password Generator
» Bash Fibonacci Sequence Generator
Page 1 of 1
Permissions in this forum:
You cannot reply to topics in this forum