From 2e6d216b4f22734c14fc1e1e4ad33e0bf53f7daa Mon Sep 17 00:00:00 2001
From: Tomas Plesnik <plesnik@ics.muni.cz>
Date: Wed, 17 Dec 2014 17:32:00 +0100
Subject: [PATCH] zmena defaultniho db usera na root; odstraneni SSLv2 v Cipher
 Suite; uprava formatovani + zacisteni

---
 src/warden-server/doc/README | 42 ++++++++++++++++++++++++------------
 1 file changed, 28 insertions(+), 14 deletions(-)

diff --git a/src/warden-server/doc/README b/src/warden-server/doc/README
index 4ca5483..b5c6c3a 100644
--- a/src/warden-server/doc/README
+++ b/src/warden-server/doc/README
@@ -119,14 +119,15 @@ C. Installation
         -h                        print this help
         -V                        print script version number and exit
 
-
-    Example: # ./install.sh -d /opt/warden-server
+    Example: $ ./install.sh -d /opt/warden-server
                             -k /etc/ssl/private/server.key
                             -c /etc/ssl/certs/server.pem
                             -a /etc/ssl/certs/bundle.pem
-          -e admin@domain.com
+                            -e admin@domain.com
                             -s /usr/local/bin
 
+    For more information about installation process, see README file (section Installation).
+
  4. Configuration files
 
     You are advised to check configuration file warden-apache.conf and
@@ -163,7 +164,7 @@ C. Installation
                           e.g. warden
 
     DB_USER             - MySQL database user of Warden server
-                          e.g. warden
+                          e.g. root
 
     DB_PASS             - MySQL database password of Warden server
 
@@ -176,11 +177,24 @@ C. Installation
 
     VALID_STRINGS       - validation hash containing allowed event attributes
                           e.g.
-
-                          %VALID_STRINGS = (
-                            'type'          => ['portscan', 'bruteforce', 'probe', 'spam', 'phishing', 'botnet_c_c', 'dos', 'malware', 'copyright', 'webattack', 'vulnerability', 'test', 'other'],
-                            'source_type'   => ['IP', 'URL', 'Reply-To:']
-                          );
+			      'type'=> ['portscan',\
+                                        'bruteforce',\
+                                        'probe',\
+                                        'spam',\
+                                        'phishing',\
+                                        'botnet_c_c',\
+                                        'dos',\
+                                        'malware',\
+                                        'copyright',\
+                                        'webattack',\
+                                        'vulnerability',\
+                                        'test',\
+                                        'other'\
+                                       ],
+                              'source_type' => ['IP',\
+                                                'URL',\
+                                                'Reply-To:'\
+                                               ]
 
 
     b) warden-apache.conf
@@ -193,7 +207,7 @@ C. Installation
     SSLVerifyClient require
     SSLOptions +StdEnvVars +ExportCertData
 
-    SSLCipherSuite ALL:!ADH:!EXPORT56:RC4+RSA:+HIGH:+MEDIUM:+LOW:+SSLv2:+EXP:+eNULL
+    SSLCipherSuite ALL:!ADH:!EXPORT56:RC4+RSA:+HIGH:+MEDIUM:+LOW:+EXP:+eNULL
 
     SSLCertificateFile      <path_to_server_certificate>
     SSLCertificateKeyFile   <path_to_server_certificate_key>
@@ -216,15 +230,15 @@ D. Update
 
   For more information about update.sh options run update.sh -h
 
-  Usage: $ ./update.sh -d <directory> [-hV]
+  Usage: $ ./update.sh -d <directory> [-shV]
         -d <directory>            destination directory
+        -s <directory>            directory for symlinks to Warden server control scripts (optional)
         -h                        print this help
         -V                        print script version number and exit
 
-  Example: # ./update.sh -d /opt/warden-server
+  Example: $ ./update.sh -d /opt/warden-server
 
-  For more information about post-update steps see UPDATE file in 'doc'
-  directory.
+  For more information about post-update steps see UPDATE file.
 
 
 --------------------------------------------------------------------------------
-- 
GitLab