CrowdSec - the open-source and participative security solution offering crowdsourced protection against malicious IPs and access to the most advanced real-world CTI.
Go to file
2020-05-20 16:50:28 +02:00
.github comment golangci-lint action 2020-05-20 16:50:28 +02:00
cmd more linter fixes (simplicity mostly) 2020-05-20 11:00:25 +02:00
config initial import 2020-05-15 11:39:16 +02:00
data initial import 2020-05-15 11:39:16 +02:00
docs improve intro again 2020-05-19 14:11:11 +02:00
pkg more linting fixes 2020-05-20 11:26:21 +02:00
plugins/backend don't trash this function as it's used by plguins 2020-05-20 13:48:21 +02:00
scripts initial import 2020-05-15 11:39:16 +02:00
tests/scenario initial import 2020-05-15 11:39:16 +02:00
.gitignore Initial commit 2020-05-15 11:38:06 +02:00
go.mod initial import 2020-05-15 11:39:16 +02:00
go.sum initial import 2020-05-15 11:39:16 +02:00
LICENSE Initial commit 2020-05-15 11:38:06 +02:00
Makefile initial import 2020-05-15 11:39:16 +02:00
mkdocs.yml up introduction, update links 2020-05-19 10:14:24 +02:00
README.md improve intro again 2020-05-19 14:11:11 +02:00
RELEASE.json bump 2020-05-15 11:52:51 +02:00
wizard.sh up 2020-05-15 12:25:34 +02:00

CrowdSec

📚 Documentation 💠 Hub 💬 Discourse

About the crowdsec project

Crowdsec is an open-source and lightweight software that allows you to detect peers with malevolent behaviors and block them from accessing your systems at various level (infrastructural, system, applicative).

To achieve this, crowdsec reads logs from different sources (files, streams ...) to parse, normalize and enrich them before matching them to threats patterns called scenarios.

Crowdsec is a modular and plug-able framework, it ships a large variety of well known popular scenarios; users can choose what scenarios they want to be protected from as well as easily adding new custom ones to better fit their environment.

Detected malevolent peers can then be prevented from accessing your resources by deploying blockers at various levels (applicative, system, infrastructural) of your stack.

One of the advantages of Crowdsec when compared to other solutions is its crowded aspect : Meta information about detected attacks (source IP, time and triggered scenario) are sent to a central API and then shared amongst all users.

Besides detecting and stopping attacks in real time based on your logs, it allows you to preemptively block known bad actors from accessing your information system.

About this repository

This repository contains the code for the two main components of crowdsec :

  • crowdsec : the daemon a-la-fail2ban that can read, parse, enrich and apply heuristis to logs. This is the component in charge of "detecting" the attacks
  • cscli : the cli tool mainly used to interact with crowdsec : ban/unban/view current bans, enable/disable parsers and scenarios.