misp-book/get-your-instance/README.md

100 lines
4.5 KiB
Markdown
Raw Permalink Normal View History

2017-04-11 16:24:33 +02:00
## Get your own MISP instance
The intention of this chapter is to support you in getting your own MISP instance up and running.
### MISP Virtual Machine
CIRCL maintains the image of a recent MISP virtual machine online. This VM is generated after every commit to the main MISP repository on Github.
2017-04-11 16:24:33 +02:00
This is a very easy out of the box solution, optimized for product evaluation and to support trainings held by CIRCL staff.
2017-04-11 16:24:33 +02:00
#### MISP VM Download
The best place to get the latest version of the MISP virtual machine, as well as all the available training materials is the [MISP training materials page] [1] on the CIRCL website.
If you do not remember the direct link to the MISP training materials here are the very easy to remember steps you have to follow to reach the right place:
2017-04-11 16:24:33 +02:00
1. Access the [CIRCL homepage] [2]
2. Navigate to the [Training area] [3]
3. Click [MISP Malware Information Sharing Platform - Threat Sharing] [4]
4. Follow the link to the [Training materials freely available] [1]
Download the image of the virtual machine and validate the SHA512 fingerprint.
#### Import Appliance
In VirtualBox use the "Import Appliance..." functionality to import the virtual machine.
![Import Appliance...](figures/importApp.png)
The instructions in this manual covers VirtualBox only. If you prefer another virtualization solution like VMWare you can find some quick instruction on the [MISP training materials page] [1].
ESXi Servers have been tested too. Should work without problem but some manual changing of the ATA-Bus is needed.
2017-04-11 16:24:33 +02:00
#### MISP VM Credentials
The MISP image is pre-configured to be reachable on the private IP address **localhost** by SSH on port 2222. The GUI is reachable by **http://localhost:8080/**.
2017-04-11 16:24:33 +02:00
You should have two interfaces on your VirtualBox configuration (NAT and host-only). You can also configure access to the MISP instance by doing port forwarding on the NAT interface.
Depending on your setup (for example accessing the VM from another host), you might want to change the base URL in MISP server settings. This can be done from the command line:
sudo -u www-data /var/www/MISP/app/Console/cake Baseurl [baseurl]
You can confirm the baseurl is updated correctly by checking the config.php file:
grep baseurl /var/www/MISP/app/Config/config.php
You can set the external_baseurl via the GUI or via the command below later. Changing it is never required to access the GUI.
sudo -u www-data /var/www/MISP/app/Console/cake Admin setSetting external_baseurl [external_baseurl]
2017-04-11 16:24:33 +02:00
MISP credentials:
* **GUI Admin:** admin@admin.test:admin (it's the site admin account with full rights, feel free to create other users)
2017-04-11 16:24:33 +02:00
* **Shell/SSH:** misp : Password1234
* **MySQL:** The credentials are generated during the VM generator. The details are located in ~misp/mysql.txt
2017-04-11 16:24:33 +02:00
#### Networking on the VM
Virtualbox has a neat feature to forward ports from your Host machine to the Guest VM.
We forward the following ports:
* **ssh** Forward from 2222 on Host -> 22 on guest
* **http** Main WebUI - 8080 on Host -> 80 on guest
* **https** Not in use - 8443 on Host -> 443 on guest
* **8001** MISP Dashboard - 8001 on Host -> 8001 on guest
* **8888** Viper Web UI - 8888 on Host -> 8888 on guest
* **1666** misp-modules used to poll the misp-modules API - 1666 on Host -> 6666 on guest
2017-04-11 16:24:33 +02:00
If the port is already used on your host, virtualbox will still boot and all the other ports will work.
2017-04-11 16:24:33 +02:00
To change the port forwarding select the running VM in the UI and click on `Settings` -> `Network` -> `Advanced` -> `Port forwarding`
2017-04-11 16:24:33 +02:00
![Overview of Network settings](figures/vbox-settings-forwarding.png)
2017-04-11 16:24:33 +02:00
Overview of default port forwards
2017-04-11 16:24:33 +02:00
![Overview of forwarded ports](figures/port-forwards-vbox.png)
2017-04-11 16:24:33 +02:00
The reason that some entries have `0.0.0.0` and other are left blank is due to a virtualbox bug where traffic would not be sent to the Guest VM.
:warning: VMWare users will need to connect to whatever IP the VM has on your host. There is NO port forwarding done fo r VMWare.
#### Potential issues
You might have a very old VM installed and the ports are not be forwarded.
Either configure the port forwards manually or download a new VM.
2017-04-11 16:24:33 +02:00
[1]: https://www.circl.lu/services/misp-training-materials/ "MISP training materials page"
[2]: https://www.circl.lu/ "CIRCL homepage"
[3]: https://www.circl.lu/services/training/ "Training area"
[4]: https://www.circl.lu/services/training/#misp-malware-information-sharing-platform-threat-sharing "Malware Information Sharing Platform"