H4T3D

MASS MD5 Generator

Mar 29th, 2016
154
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 1.25 KB | None | 0 0
  1. <?php
  2. #################################################
  3. #MASS MD5 Generator- H4T3D
  4. #Changing Name wont make you L33T
  5. ###################################################
  6.  
  7. ob_start();
  8. @set_time_limit(0);
  9. error_reporting(0);
  10. echo "
  11. <head>
  12. <title>H4T3D Dork Search Engine</title>
  13. </head>
  14. <style>
  15. html, body{
  16.      background:#000000;
  17.      color:#00FF00;
  18.      font-family:monospace;
  19.      height: 100%;
  20.      text-decoration:  none;
  21. }
  22.  
  23. textarea {
  24.      background:#000000;
  25.      resize:none;
  26.      color: #00FF00 ;
  27.      border:1px solid red ;
  28.      border: 4px solid red ;
  29. }
  30. input {
  31.       color: ##33CCFF;
  32.       border:1px dotted #33CCFF;
  33. }
  34.  
  35. a{
  36. color:red;
  37. }
  38. </style>";
  39. ?>
  40. <center>
  41. <h2>MASS MD5 Generator</h2>
  42. <form action="" method="POST">
  43. <textarea name="md5s" rows='25' cols='20'>admin123</textarea>
  44. <br>
  45. <input type="submit" name="submit">
  46. </form>
  47.  
  48. <?php
  49.  
  50. if(isset($_POST['submit'])){
  51.  
  52. $str = $_POST['md5s'];
  53.  
  54. $arr = explode("\n", $str);
  55.  
  56. foreach ($arr as $key) {
  57.  
  58. $name  = md5($key);
  59.  
  60. echo $key." --- > ".$name."</br>";
  61.  
  62. $myfile = fopen("md5s.txt", "a") or die("Unable to open file!");
  63.         fwrite($myfile, $key." --- > ".$name."\n");
  64.         fclose($myfile);
  65.         flush();@ob_flush();
  66. }
  67. }
  68. ?>
  69. </center>
Add Comment
Please, Sign In to add comment