summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorErich Eckner <git@eckner.net>2020-04-28 22:24:40 +0200
committerErich Eckner <git@eckner.net>2020-04-28 22:24:40 +0200
commit5313fd8d398b451e81f6e77ce87d23c3253a22f5 (patch)
tree787222e3520e1639fd8e672b367a13fe398054c4
parent495a94d7717dac4d969393e8a504ed16d88317e8 (diff)
downloadraspi-lights-out-5313fd8d398b451e81f6e77ce87d23c3253a22f5.tar.xz
httpdocs/index.php: chain hash to slow brute force down
-rw-r--r--httpdocs/index.php4
1 files changed, 3 insertions, 1 deletions
diff --git a/httpdocs/index.php b/httpdocs/index.php
index 108bf9c..e8a97ad 100644
--- a/httpdocs/index.php
+++ b/httpdocs/index.php
@@ -29,7 +29,9 @@ function push_it() {
}
$saved_hash = trim(fgets($f));
fclose($f);
- $entered_hash = hash('sha512', $_POST['password']);
+ $entered_hash = $_POST['password'];
+ for ($i=0; $i<1000; $i++)
+ $entered_hash = hash('sha512', $entered_hash . $i . $_POST['password']);
if ($saved_hash != $entered_hash) {
print '<font color="ff0000">Wrong password: ' . $entered_hash . '</font><br>' . "\n";
return;