PC & IT SUPPORT MADE EASY FORUM
Would you like to react to this message? Create an account in a few clicks or log in to continue.

MD5 PHP Hash Rainbow Table Generator Script Example

Go down

MD5 PHP Hash Rainbow Table Generator Script Example Empty MD5 PHP Hash Rainbow Table Generator Script Example

Post by jamied_uk 23rd May 2018, 17:25



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>
jamied_uk
jamied_uk
Admin

Posts : 2942
Join date : 2010-05-09
Age : 41
Location : UK

https://jnet.sytes.net

Back to top Go down

Back to top

- Similar topics

 
Permissions in this forum:
You cannot reply to topics in this forum