Last active
March 8, 2026 00:45
-
-
Save aveao/5908dcc4bbc549252eddbf24d21c3559 to your computer and use it in GitHub Desktop.
For the people who keep not generating SHA512 hashes needed properly.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <html> | |
| <body> | |
| <h1>I DO NOT ENTER YOUR PASSWORD TO RANDOM PLACES ONLINE, INCLUDING THIS!</h1><br> | |
| <form action="tosha.php" method="post"> | |
| Your password: | |
| <input type="text" name="tosha"><br> | |
| <input type="submit" value="Submit"> | |
| </form><br><br> | |
| <?php | |
| if (isset($_REQUEST["tosha"])) | |
| { | |
| echo "Your SHA512 hashed password is:<br>"; | |
| echo hash("sha512", $_REQUEST['tosha']); | |
| } | |
| ?> | |
| </body> | |
| </html> |
Author
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Is available online here: https://ave.zone/tosha.php
BUT: You can't prove I didn't modify the file and am not silently logging your passwords, neither can you prove I have server logs disabled.
But I didn't modify it and have server logs disabled. BUT I recommend running this locally anyways.