• Stars
    star
    226
  • Rank 175,205 (Top 4 %)
  • Language Blade
  • License
    GNU General Publi...
  • Created almost 4 years ago
  • Updated 2 months ago

Reviews

There are no reviews yet. Be the first to send feedback to the community and the maintainers!

Repository Details

Mapping the information system / Cartographie du système d'information

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. The documentation and application sources are published on GitHub.

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 $PWD/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://127.0.0.1:8000 !

Changelog

All notable changes to this project are documented.

License

Mercator is an open source software distributed under GPL.