Skip to content

Instantly share code, notes, and snippets.

@aveao
Last active March 8, 2026 00:45
Show Gist options
  • Select an option

  • Save aveao/5908dcc4bbc549252eddbf24d21c3559 to your computer and use it in GitHub Desktop.

Select an option

Save aveao/5908dcc4bbc549252eddbf24d21c3559 to your computer and use it in GitHub Desktop.
For the people who keep not generating SHA512 hashes needed properly.
<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>
@aveao

aveao commented Mar 15, 2017

Copy link
Copy Markdown
Author

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.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment