MISP/app
noud 5bac9ac928 Forgot LogableBehavior in the first commit. 2012-07-02 12:52:57 +02:00
..
Config Admin Paginator fix. 2012-06-29 08:56:00 +02:00
Console DataBase migrate, Audit and Access Control granulation. 2012-06-28 17:24:12 +02:00
Controller DataBase migrate, Audit and Access Control granulation. 2012-06-28 17:24:12 +02:00
Lib
Locale/eng/LC_MESSAGES
Model Forgot LogableBehavior in the first commit. 2012-07-02 12:52:57 +02:00
Plugin DataBase migrate, Audit and Access Control granulation. 2012-06-28 17:24:12 +02:00
Test
Vendor
View Audit and Access Control granulation in News page. 2012-06-29 09:36:47 +02:00
files
technical_design DataBase migrate, Audit and Access Control granulation. 2012-06-28 17:24:12 +02:00
tmp
webroot DataBase migrate, Audit and Access Control granulation. 2012-06-28 17:24:12 +02:00
.htaccess
LICENSE
MYSQL.txt
README.txt DataBase migrate, Audit and Access Control granulation. 2012-06-28 17:24:12 +02:00
README.ubuntu.txt DataBase migrate, Audit and Access Control granulation. 2012-06-28 17:24:12 +02:00
index.php

README.txt

                                                                     
TODOs v0.2.2 to v0.2.3
-----

DB Update
- UpdateShell with in/out

Auth
- Prevent bruteforce auth attempts

Acl
- inactive buttons
	- must be non-clickable.
	- JavaScript include.
	- DOM read and disable button_offXX.
- clean-up to first cut.
	- saveAcl, from GroupsController to AppController and inherit to *Controllers.

auditing/logging system
- logins
	- add source IP (headers,...);
	- failed logins.

Security
- force cookie reset after login


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

TODO rewrite instructions using git clones and git submodules


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/

TODO TODO Install the CakePHP REST Plugin in the plugins directory.
(https://github.com/kvz/cakephp-rest-plugin/tree/cake-2.0)  
using git submodule



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.



UPDATE INSTRUCTIONS
-------------------

To be sure, dump your database before updating.

CyDefSIG from 0.2.2 to 0.2.3 needs a database migration and population.
This is done executing /var/www/cydefsig/app/Console/shell/migrate-0.2.2-0.2.3.sh
and answer (y)es to all the questions asked.



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