CyberCAPTOR Server¶
FIWARE Cyber seCurity Attack graPh moniTORing - Server
This project is part of FIWARE. For more information, please consult FIWARE website.
CyberCAPTOR is an implementation of the Cyber Security Generic Enabler, the future developments of the Security Monitoring GE.
This documentation can be accessed online at https://cybercaptor.readthedocs.org/projects/cybercaptor-server/en/latest/.
Table of Contents¶
CyberCAPTOR-Server - Installation and Administration Manual¶
This project is a part of FIWARE. For more information, please consult [FIWARE website] (http://www.fiware.org/).
CyberCAPTOR is an implementation of the Cyber Security Generic Enabler, the future developments of the [Security Monitoring GE] (http://catalogue.fiware.org/enablers/security-monitoring).
The high-level README file of CyberCAPTOR-Server can be found here.
Introduction¶
This is the Installation and Administration Manual for CyberCAPTOR-Server.
Installation¶
This part detailed the procedure to install correctly CyberCAPTOR-Server.
Development Version Installation¶
Prerequisite¶
CyberCAPTOR-Server has been tested with the following software, but it should be possible to build and run in on all Linux OS, with Java 7.
Build¶
Get sources from Github
git clone https://github.com/fiware-cybercaptor/cybercaptor-server.git cd cybercaptor-server
Use Maven to download dependencies and build the web application archive (.war).
mvn clean mvn package
Installation¶
- Deploy the .war into tomcat.
Using command line
cp ./target/cybercaptor-server*.war /var/lib/tomcat7/webapps/cybercaptor-server.war
This can also be done using the tomcat GUI manager, or with Maven’s tomcat7 plugin.
- Link the configuration and scripts repertory and fix permissions
sudo ln -s `pwd`/configuration-files /usr/share/tomcat7/.remediation
sudo ln -s `pwd`/src/main/python/ /usr/share/tomcat7/python_scripts
chmod -R o+rw ./configuration-files/
sudo chown -R tomcat7:tomcat7 /usr/share/tomcat7/
- Copy and edit the configuration file
cp ./configuration-files/config.properties.sample ./configuration-files/config.properties
vim ./configuration-files/config.properties
See in [#configuration] to see the description of all parameters used in the configuration file.
Docker Version Deployment¶
Build container (optional)¶
docker build -t cybercaptor-server .
Run container¶
If you want to run the server in foreground, launch the following command:
docker run --rm --name cybercaptor-server -p 8000:8080 fiwarecybercaptor/cybercaptor-server
If you want to run the server in background, launch the following command:
docker run -d --rm --name cybercaptor-server -p 8000:8080 fiwarecybercaptor/cybercaptor-server
Then, the application can be accessed at http://localhost:8000/cybercaptor-server/.
More details about building and/or running the Docker container can be found in container/README.md
Test¶
Go on URL : http://localhost:8080/cybercaptor-server/rest/json/initialize
If the result is {"status":"Loaded"}
, the application has been
properly built and installed.
Administration¶
Configuration file¶
The configuration file of CyberCAPTOR-Server allows to select many parameters and file paths used by CyberCAPTOR-Server.
This file is located in configuration-files/config.properties
.
xsb-path=/opt/XSB/bin # The XSB installation binary path
output-path=/root/.remediation/tmp # The output folder for temporary computations
mulval-path=/opt/mulval/ # MulVAL installation path
mulval-rules-path=/root/.remediation/rules-with-topology.P # The MulVAL rules description file
cost-parameters-path=/root/.remediation/cost-parameters # The folder in which the remediation cost parameters are defined
database-path=/root/.remediation/vulnerability-remediation-database.db # The path toward the remediation database. A remediation database can be downloaded from https://github.com/fiware-cybercaptor/cyber-data-extraction/releases/download/4.4.1/vulnerability-remediation-database.db
python-path=/usr/bin/python # Python path
mulval-input-script-folder=/root/cyber-data-extraction/ # The folder in which the mulval input script is stored
host-interfaces-path=/root/.remediation/inputs/hosts-interfaces.csv # The path where the CSV host interfaces file is described (if using topology files on server)
vlans-path=/root/.remediation/inputs/vlans.csv # The path where the CSV vlans file is described (if using topology files on server)
routing-path=/root/.remediation/inputs/routing.csv # The path where the routing file is described (if using topology files on server)
flow-matrix-path=/root/.remediation/inputs/flow-matrix.csv # The path where the CSV flow matrix file is described (if using topology files on server)
vulnerability-scan-path=/root/.remediation/inputs/scan.nessus # The path where the Nessus XML file is described (if using topology files on server)
mulval-input=/root/.remediation/tmp/mulval-input-generated.P # The path where the MulVAL input file is stored.
topology-path=/root/.remediation/inputs/topology-generated.xml # The path where the topology file will be stored.
remediations-history-path=/root/.remediation/remediations-history.bin # The path where the remediation history is stored.
alerts-temporary-path=/root/.remediation/alerts-temp.bin # The path where the IDMEF alerts are temporary stored.
More information about the parameters can be found in CyberCAPTOR-Data-Extraction README.
Sanity check procedures¶
End to End testing¶
Go on URL : http://localhost:8080/cybercaptor-server/rest/json/initialize
If the result is {"status":"Loaded"}
, the application has been
properly built and installed.
List of Running Processes¶
Execution of .war with tomcat7¶
# Results of ps -aux
root 20 12.1 4.1 3753696 337544 ? Sl 11:45 0:09 /usr/bin/java -Djava.util.logging.config.file=/var/lib/tomcat7/conf/logging.properties -Djava.util.
root 66 0.0 0.0 4448 1568 ? S 11:46 0:00 /bin/sh /opt/mulval//utils/graph_gen.sh /root/.remediation/tmp/mulval-input-generated.P -l -r /root
root 127 0.0 0.1 30076 14196 ? R 11:46 0:00 /opt/XSB/config/x86_64-unknown-linux-gnu/bin/xsb
Execution via Docker¶
When idle
# Results of ps -aux in docker container
USER PID %CPU %MEM VSZ RSS TTY STAT START TIME COMMAND
root 1 0.4 0.1 28236 9584 ? Ss 11:45 0:00 /usr/bin/python3 -u /sbin/my_init
root 8 0.0 0.0 196 40 ? S 11:45 0:00 /usr/bin/runsvdir -P /etc/service
root 9 0.0 0.0 176 4 ? Ss 11:45 0:00 runsv tomcat7
root 10 0.0 0.0 176 4 ? Ss 11:45 0:00 runsv syslog-ng
root 11 0.0 0.0 176 4 ? Ss 11:45 0:00 runsv sshd
root 12 0.0 0.0 176 4 ? Ss 11:45 0:00 runsv cron
root 13 0.0 0.0 176 4 ? Ss 11:45 0:00 runsv syslog-forwarder
root 14 0.0 0.0 26752 2688 ? S 11:45 0:00 /usr/sbin/cron -f
root 15 0.0 0.0 7480 704 ? S 11:45 0:00 tail -f -n 0 /var/log/syslog
root 16 0.1 0.0 65760 6672 ? S 11:45 0:00 syslog-ng -F -p /var/run/syslog-ng.pid --no-caps
root 17 0.0 0.0 21088 3196 ? S 11:45 0:00 bash ./run
root 20 60.5 4.0 3749936 329468 ? Sl 11:45 0:09 /usr/bin/java -Djava.util.logging.config.file=/var/lib/tomcat7/conf/logging.properties -Djava.util.
When MuLlVAL is running
# Results of ps -aux in docker container
USER PID %CPU %MEM VSZ RSS TTY STAT START TIME COMMAND
root 1 0.0 0.1 28236 9584 ? Ss 11:45 0:00 /usr/bin/python3 -u /sbin/my_init
root 8 0.0 0.0 196 40 ? S 11:45 0:00 /usr/bin/runsvdir -P /etc/service
root 9 0.0 0.0 176 4 ? Ss 11:45 0:00 runsv tomcat7
root 10 0.0 0.0 176 4 ? Ss 11:45 0:00 runsv syslog-ng
root 11 0.0 0.0 176 4 ? Ss 11:45 0:00 runsv sshd
root 12 0.0 0.0 176 4 ? Ss 11:45 0:00 runsv cron
root 13 0.0 0.0 176 4 ? Ss 11:45 0:00 runsv syslog-forwarder
root 14 0.0 0.0 26752 2688 ? S 11:45 0:00 /usr/sbin/cron -f
root 15 0.0 0.0 7480 704 ? S 11:45 0:00 tail -f -n 0 /var/log/syslog
root 16 0.0 0.0 65760 6672 ? S 11:45 0:00 syslog-ng -F -p /var/run/syslog-ng.pid --no-caps
root 17 0.0 0.0 21088 3196 ? S 11:45 0:00 bash ./run
root 20 12.1 4.1 3753696 337544 ? Sl 11:45 0:09 /usr/bin/java -Djava.util.logging.config.file=/var/lib/tomcat7/conf/logging.properties -Djava.util.
root 66 0.0 0.0 4448 1568 ? S 11:46 0:00 /bin/sh /opt/mulval//utils/graph_gen.sh /root/.remediation/tmp/mulval-input-generated.P -l -r /root
root 127 0.0 0.1 30076 14196 ? R 11:46 0:00 /opt/XSB/config/x86_64-unknown-linux-gnu/bin/xsb
Network interfaces Up & Open¶
The only port that needs to be open is the one chosen either by tomcat server, either for Docker container. It is port 8080 in examples above.
Diagnosis Procedures¶
Resource availability¶
The amount of RAM and hard disk needed for CyberCAPTOR-Server can be high, according to the network topology. 8Gb of RAM and 1Go of hard disk dedicated to the application should be enough for a small-medium systems. For medium to big information systems, 32Gb of RAM and 30Go of hard disk dedicated to the application may be needed.
Main logs files¶
The main logs of the application can be accessed with
/var/log/tomcat7/catalina.out
`pwd`/configuration-files/tmp/xsb_log.txt
`pwd`/configuration-files/tmp/input-generation.log
In docker container, they can be accessed with the following commands:
docker exec cybercaptor-server tail -n 50 -f /var/log/tomcat7/catalina.out
docker exec cybercaptor-server tail -f /root/.remediation/tmp/tmp/xsb_log.txt
docker exec cybercaptor-server tail -f /root/.remediation/tmp/tmp/input-generation.log
CyberCAPTOR-Server - User and Programmer Guide¶
This project is a part of FIWARE. For more information, please consult [FIWARE website] (http://www.fiware.org/).
CyberCAPTOR is an implementation of the Cyber Security Generic Enabler, the future developments of the [Security Monitoring GE] (http://catalogue.fiware.org/enablers/security-monitoring).
The high-level README file of CyberCAPTOR-Server can be found here.
Table of Contents¶
Introduction¶
This is the User and Programmer Guide of CyberCAPTOR-Server.
User Guide¶
This guide describe how to use CyberCAPTOR-Server.
CyberCAPTOR-Server API¶
CyberCAPTOR-Server only contains the REST API Server of CyberCAPTOR. Thus, it can be used only via its REST API. If you want a GUI for CyberCAPTOR-Server, you can use CyberCAPTOR-Client which is described in [https://github.com/fiware-cybercaptor/cybercaptor-client].
API usage¶
To use the CyberCAPTOR server API, the first call to test that the server is available is
curl http://localhost:8080/cybercaptor-server/rest/version/detailed
which should returns something like
{"version":"4.4"}
Before using the API to manipulate the attack graph, the attack paths, and the remediations, the first call that needs to be done is
curl -c /tmp/curl.cookie http://localhost:8080/cybercaptor-server/rest/json/initialize
which loads the topology, generates the attack graph with MulVAL and computes the attack paths.
Note the -c /tmp/curl.cookie
option of curl, allowing to keep the
session cookie, necessary to chain calls and keep the attack graph and
attack paths in session.
It is also possible to load the topology from an XML file, or a XML
string containing the XML network topology, using the POST method of the
/rest/json/initialize
call :
Using a XML String:
curl -c /tmp/curl.cookie -H "Content-Type: application/xml" -X POST -d '<topology><machine><name>linux-user-1</name><security_requirement>7</security_requirement><interfaces><interface><name>eth0</name><ipaddress>192.168.1.111</ipaddress><vlan><name>user-lan</name><label>user-lan</label></vlan></interface></interfaces><routes><route><destination>0.0.0.0</destination><mask>0.0.0.0</mask><gateway>192.168.1.111</gateway><interface>eth0</interface></route></routes></machine><machine><name>linux-user-2</name><security_requirement>30</security_requirement><interfaces><interface><name>eth0</name><ipaddress>192.168.1.112</ipaddress><vlan><name>user-lan</name><label>user-lan</label></vlan></interface></interfaces><services><service><name>mdns</name><ipaddress>192.168.1.112</ipaddress><protocol>udp</protocol><port>5353</port><vulnerabilities><vulnerability><type>remoteExploit</type><cve>CVE-2007-2446</cve><goal>privEscalation</goal><cvss>10.0</cvss></vulnerability></vulnerabilities></service></services><routes><route><destination>0.0.0.0</destination><mask>0.0.0.0</mask><gateway>192.168.1.111</gateway><interface>eth0</interface></route></routes></machine></topology>' http://localhost:8080/cybercaptor-server/rest/json/initialize
Using a XML file:
curl -c /tmp/curl.cookie -X POST -H "Content-Type: multipart/form-data" -F "file=@./topology.xml" http://localhost:8080/cybercaptor-server/rest/json/initialize
The exhaustive description of this file is XML topological file is provided in https://github.com/fiware-cybercaptor/cybercaptor-data-extraction/blob/master/doc/topology-file-specifications.md. This file can be generated automatically using CyberCAPTOR-Data-Extraction.
Then, the calls to get the attack paths, attack graph or remediations can be used:
Get the number of attack paths:
curl -b /tmp/curl.cookie http://localhost:8080/cybercaptor-server/rest/json/attack_path/number
Note the -b /tmp/curl.cookie
option of curl, to load the previously
saved session cookie.
Get the attack path 0:
curl -b /tmp/curl.cookie http://localhost:8080/cybercaptor-server/rest/json/attack_path/0
Get the attack graph
curl -b /tmp/curl.cookie http://localhost:8080/cybercaptor-server/rest/json/attack_graph
Get the remediations for attack path 0:
curl -b /tmp/curl.cookie http://localhost:8080/cybercaptor-server/rest/json/attack_path/0/remediations
Get the XML network topology (useful for backups):
curl -b /tmp/curl.cookie http://localhost:8080/cybercaptor-server/rest/json/topology
The full list of API calls and specifications is stored in apiary.apib and can be visualized on Apiary.io using the Apiary Blueprint format.
Programmer Guide¶
This guide describe how to develop within CyberCAPTOR-Server.
Javadoc¶
The Javadoc of CyberCAPTOR-Server as well as many interesting information for developers can be found on github pages: Developer pages - Javadoc.
Javadoc can be updated directly with Maven using
mvn site-deploy
Don’t forget to configure GitHub OAuth token in ~/.m2/settings.xml
.
Tokens can be generated on https://github.com/settings/tokens, with repo
and user:email authorized scopes.
<settings>
<servers>
<server>
<id>github</id>
<password>OAuth token</password>
</server>
</servers>
</settings>
API verification¶
The API specified using Blueprint can be checked with the dredd tool. In order to do that, first install bredd with NPM (you should have Node.js installed).
sudo npm install -g dredd
Go in the folder in which is the dredd configuration file tools/api/dredd.yml:
cd tools/api
Execute dredd
dredd
In addition to the console reports provided by dredd, a detailed report
file can be found in tools/api/report.html
.
Information about development is also available in the README file.
Please see the project license for license information.