From 68c477359bcabcc3a37e5e6e32c3a2c518d3c2ae Mon Sep 17 00:00:00 2001 From: Ben Harris Date: Mon, 6 Jul 2020 23:46:42 -0400 Subject: [PATCH] update hash for /etc/skel page --- index.php | 17 +++++++++++------ 1 file changed, 11 insertions(+), 6 deletions(-) diff --git a/index.php b/index.php index 745f2a9..ed676f6 100644 --- a/index.php +++ b/index.php @@ -101,12 +101,17 @@ $index = "$user/public_html/index.html"; if (!file_exists($index) || in_array(sha1_file($index), - // these are the hashes of previous and current default pages - ["0eb53dab435e2e6e401921146bed85a80e9ad3a1", - "61eff8202777bae134ac4b11f1e16ec23dfc97d3", - "e9d41eab6edb7cd375c63ecb4a23bca928992547", - "cb2ce535ab34edebc225e88a321f972ba55763c3", - "13af6898f536265af7dbbe2935b591f5e2ee0d7d"])) continue; + // these are the hashes of previous and current default pages + [ + "0eb53dab435e2e6e401921146bed85a80e9ad3a1", + "61eff8202777bae134ac4b11f1e16ec23dfc97d3", + "e9d41eab6edb7cd375c63ecb4a23bca928992547", + "cb2ce535ab34edebc225e88a321f972ba55763c3", + "13af6898f536265af7dbbe2935b591f5e2ee0d7d", + "b51a889545b5f065fd1ac2b8760cab0088a9dc22" + ] + ) + ) continue; $user = basename($user); ?>
  • ~