From 1ed92e187ae2dfb51f5f2d62c290a85f93b6dc21 Mon Sep 17 00:00:00 2001
From: Till Brehm <tbrehm@ispconfig.org>
Date: Thu, 14 Aug 2014 13:54:00 -0400
Subject: [PATCH] - Added security check script. - Create md5 sums of all files at install and update.
---
install/install.php | 5 +++++
1 files changed, 5 insertions(+), 0 deletions(-)
diff --git a/install/install.php b/install/install.php
index 108ed05..49c2720 100644
--- a/install/install.php
+++ b/install/install.php
@@ -679,6 +679,11 @@
} //* << $install_mode / 'Standard' or Genius
+//* Create md5 filelist
+$md5_filename = '/usr/local/ispconfig/security/data/file_checksums_'.date('Y-m-d_h-i').'.md5';
+exec('find /usr/local/ispconfig -type f -print0 | xargs -0 md5sum > '.$md5_filename);
+chmod($md5_filename,0700);
+
echo "Installation completed.\n";
--
Gitblit v1.9.1