Advertisement
TrojanCoder

SHA1 Generator

Jan 23rd, 2017
173
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 1.44 KB | None | 0 0
  1. <?php
  2. $hasil = sha1($_POST['lol']);
  3. $hash = $_POST['hash'];
  4. echo '<!SHA1 Generator>
  5. <html>
  6. <head>
  7. <title>[!] SHA1 Generator [!]</title>
  8. <link href="http://fonts.googleapis.com/css?family=Kaushan+Script" rel="stylesheet" type="text/css">
  9. <style>
  10. html {
  11.  font-family: Kaushan Script;
  12.  color: red;
  13.  background: grey;
  14. }
  15. h1 {
  16.  color: cyan;
  17. }
  18. a {
  19.  text-decoration: none;
  20.  color: cyan;
  21. }
  22. textarea {
  23.     border: 1px dotted red;
  24.     width: 100%;
  25.     height: 400px;
  26.     padding-left: 5px;
  27.     margin: 10px auto;
  28.     resize: none;
  29.     background: transparent;
  30.     color: red;
  31.     font-size: 13px;
  32. }
  33. input[type=text], input[type=password],input[type=submit] {
  34.     background: transparent;
  35.     color: cyan;
  36.     border: 1px dotted red;
  37.     margin: 5px auto;
  38.     padding-left: 5px;
  39.     font-size: 13px;
  40. }
  41. </style>
  42. <script src="http://ajax.googleapis.com/ajax/libs/jquery/1.7.2/jquery.min.js" type="text/javascript"></script>
  43. <link href="https://cdn.rawgit.com/Brando07/seocips/Html/loading1.css" rel="stylesheet" type="text/css">
  44. </head>
  45. <script src="https://cdn.rawgit.com/Brando07/seocips/newbe/loading1.js"></script>
  46. <body>
  47. <center>
  48. <div id="loadingHalaman"></div>
  49. <br><br>
  50. <form method="post">
  51. <h1>SHA1 Generator</h1>
  52. <a href="/tools/">Back</a><br><br>
  53. Text : <input type="text" name="lol" size="50" height="10" placeholder="Input your text">
  54. <input type="submit" name="hash" value="Generate">
  55. </form>
  56. </body>
  57. </html>';
  58. if($hash) {
  59. echo "Result : $hasil";
  60. }
  61. ?>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement