MISP / misp-dashboard

A live dashboard for a real-time overview of threat intelligence from MISP instances
GNU Affero General Public License v3.0
192 stars 66 forks source link

Maps do not show #163

Open manosmustang opened 2 years ago

manosmustang commented 2 years ago

Hi, I have installed misp-dashboard, I can see the everything but the maps! there are no maps, the boxes are blank. any ideas? thank you

Khayo-7 commented 2 years ago

Reason:

This is because line #130 in "install_dependencies.sh",

wget http://cdn.leafletjs.com/leaflet/v${LEAFLET_VERSION}/leaflet.zip -O temp/leaflet.zip

returns Error 403: Forbidden, thus it continues without downloading the leaflet zip file that contains the necessary javascript files for the maps(with CSS and image files as well).

Solution:

Changing the Leaflet version number to the latest release solved the problem in my case.

In the file "install_dependencies.sh", change the #129 line

LEAFLET_VERSION="1.2.0"

to

LEAFLET_VERSION="1.8.0" (as of July 19, 2022, the latest version is "1.8.0").

You can check the latest release at "https://leafletjs.com/"

Or you can manually download the zip file from "https://leafletjs.com/download.html" and include

Hope this helps