MISP/app
Christophe Vandeplas 0915ce48d3 Added some infoboxes when adding Attributes. 2012-03-31 23:29:56 +02:00
..
Config changed alerted -> published 2012-03-27 14:49:31 +02:00
Console Migration to CakePHP 2.1. 2012-03-15 15:06:45 +01:00
Controller Added some infoboxes when adding Attributes. 2012-03-31 23:29:56 +02:00
Lib Migration to CakePHP 2.1. 2012-03-15 15:06:45 +01:00
Locale/eng/LC_MESSAGES Migration to CakePHP 2.1. 2012-03-15 15:06:45 +01:00
Model First experimental test of importing events from a remote server. 2012-03-31 19:06:43 +02:00
Plugin Migration to CakePHP 2.1. 2012-03-15 15:06:45 +01:00
Test Migration to CakePHP 2.1. 2012-03-15 15:06:45 +01:00
Vendor Migration to CakePHP 2.1. 2012-03-15 15:06:45 +01:00
View Added some infoboxes when adding Attributes. 2012-03-31 23:29:56 +02:00
files Implemented file-upload of attachment or password protected 2012-03-23 20:04:22 +01:00
tmp Migration to CakePHP 2.1. 2012-03-15 15:06:45 +01:00
webroot Added some infoboxes when adding Attributes. 2012-03-31 23:29:56 +02:00
.htaccess Migration to CakePHP 2.1. 2012-03-15 15:06:45 +01:00
LICENSE Print Cascading Stylesheets and minor layout fixes 2012-03-25 15:02:15 +02:00
MYSQL.txt changed alerted -> published 2012-03-27 14:49:31 +02:00
README.txt changed alerted -> published 2012-03-27 14:49:31 +02:00
index.php Migration to CakePHP 2.1. 2012-03-15 15:06:45 +01:00

README.txt

                                                                     

TODOs
-----

Auth
- Prevent bruteforce auth attempts

implement auditing/logging system
- add / edit events and signatures
- failed / success logins (with source IP, headers,...)

Security
- force cookie reset after login


INSTALLATION INSTRUCTIONS
-------------------------
Install the following libraries:
apt-get install zip
apt-get install pear
pear install Crypt_GPG    # need version >1.3.0 

Download CyDefSIG using git in the /var/www/ directory. 

cd /var/www/
git clone git@code.lab.modiss.be:cydefsig.git

Download and extract CakePHP 2.x to the web root directory:

cd /tmp/
wget https://nodeload.github.com/cakephp/cakephp/tarball/2.1
tar zxvf cakephp-cakephp-<version>.tar.gz
cd cakephp-cakephp-*

Now remove the app directory and move everything from CakePHP to var/www

rm -Rf app .gitignore 
mv * /var/www/cydefsig/
mv .??* /var/www/cydefsig/

Check if the permissions are set correctly using the following commands as root:

chown -R <user>:www-data /var/www/cydefsig
chmod -R 750 /var/www/cydefsig
chmod -R g+s /var/www/cydefsig
cd /var/www/cydefsig/app/
chmod -R g+w tmp
chmod -R g+w files

Import the empty MySQL database in /var/www/cydefsig/app/MYSQL.txt using phpmyadmin or mysql>.

Now configure your apache server with the DocumentRoot /var/www/cydefsig/app/webroot/

Configure the fields in the files:
database.php : login, port, password, database
bootstrap.php: CyDefSIG.*, GnuPG.*
core.php : debug, 

Generate a GPG encryption key.
sudo -u www-data gpg --homedir /var/www/cydefsig/.gnupg --gen-key


Now log in using the webinterface:
The default user/pass = admin@admin.test/admin 

Don't forget to change the email, password and authentication key after installation.



Recommended patches
-------------------
By default CakePHP exposes his name and version in email headers. Apply a patch to remove this behavior.