Skip to content

Cartographie du systeme d'information / Mapping the information system

License

Notifications You must be signed in to change notification settings

fcoadebez/mercator

 
 

Repository files navigation

Mercator

Mercator is an Open Source web application to manage the mapping of an information system as described in the Mapping The Information System Guide of the ANSSI.

Latest Release License Contributors Stars

Read this in other languages: French

Introduction

Computer attacks occur in a constantly changing environment. To meet these challenges, it is necessary to implement a global approach to risk management within the organization.

The mapping of the Information System allows to have a global view of all the elements which compose the information system to obtain a better readability, and thus a better control.

The elaboration of a cartography participates in the protection, the defense and the resilience of the information system. It is an essential tool for the control of its information system and is an obligation for operators of vital importance and is part of a global risk management approach.

Major functions

  • Graphical views of the ecosystem, information system, administration, logical, applications, and physical infrastructure
  • Generate information system architecture report
  • Draw mapping diagrams
  • Compute compliance levels
  • Search for CVE with CVE-Search
  • Extraction in Excel, CSV, PDF ... of all lists
  • REST API with JSON
  • Multi-user with role management
  • Multilingual
  • Connection to LDAP or Active Directory
  • CPE - Common Platform Enumeration

Screens

Main page

Compliance Levels

Input screen

Drawing of the cartography

Explore

Data model

Technologies

  • PHP, Javascript, Laravel
  • Supported databases: MySQL, Postgres, SQLite, SQL Server (see: Laravel/Databases/introduction )
  • WebAssembly + Graphviz
  • ChartJS

Installation

Manual

See Installation

Docker

First download the docker image.

docker pull ghcr.io/dbarzin/mercator:latest

Then you can run an ephemeral local instance:

docker run -it --rm --name mercator -p "127.0.0.1:8000":80 ghcr.io/dbarzin/mercator:latest

By default it uses an SQLite backend. If you want to make data persistent:

touch ./db.sqlite && chmod a+w ./db.sqlite
docker run -it --rm --name mercator -p "127.0.0.1:8000":80 -v ./db.sqlite:/var/www/mercator/db.sqlite ghcr.io/dbarzin/mercator:latest

Finally you can populate the database with demo data through the USE_DEMO_DATA environment variable:

touch ./db.sqlite && chmod a+w ./db.sqlite
docker run -it --rm \
           --name mercator \
           -p "127.0.0.1:8000":80 \
           -v $PWD/db.sqlite:/var/www/mercator/db.sqlite \
           -e USE_DEMO_DATA=1 \
           ghcr.io/dbarzin/mercator:latest

Visit http:https://127.0.0.1:8000!

Changelog

All notable changes to this project are documented.

License

Mercator is an open source software distributed under GPL.

About

Cartographie du systeme d'information / Mapping the information system

Resources

License

Security policy

Stars

Watchers

Forks

Packages

No packages published

Languages

  • Blade 50.5%
  • PHP 45.7%
  • HTML 3.7%
  • Other 0.1%