Skip to content

CrowdSec LAPI server continuously leaks memory until OOM #4603

Description

@vizustom

What happened?

CrowdSec running as our central LAPI server continuously consumes memory until it reaches the configured cgroup memory limit and is killed.

Immediately after restart, CrowdSec uses approximately 180–200 MB RSS:

VmRSS:    187944 kB
VmSwap:        0 kB

Memory then continuously grows. Before adding a cgroup limit, CrowdSec eventually consumed almost all available memory:

VmRSS:  18113900 kB
VmSwap:  2498728 kB

The server has 19 GiB RAM, so this caused severe memory pressure and an OOM situation.

We added:

[Service]
MemoryMax=4G
Restart=always
RestartSec=60

and disabled swapping for the CrowdSec cgroup.

The limit works, but CrowdSec now reaches 4 GB approximately every 25–40 minutes, gets killed with SIGKILL, and is restarted by systemd. The cycle repeats continuously.

Example:

14:25:27 crowdsec.service: Main process exited, code=killed, status=9/KILL
14:26:27 crowdsec.service: Scheduled restart job, restart counter is at 1.

14:52:04 crowdsec.service: Main process exited, code=killed, status=9/KILL
14:53:05 crowdsec.service: Scheduled restart job, restart counter is at 2.

15:16:38 crowdsec.service: Main process exited, code=killed, status=9/KILL
15:17:39 crowdsec.service: Scheduled restart job, restart counter is at 3.

15:38:22 crowdsec.service: Main process exited, code=killed, status=9/KILL

16:10:53 crowdsec.service: Main process exited, code=killed, status=9/KILL

This only happens on the central CrowdSec/LAPI server. Approximately 32 remote CrowdSec agents connected to this server do not exhibit abnormal memory growth.

CrowdSec version:

version: v1.7.8-rpm-pragmatic-amd64-63227459
Codename: alphaga
BuildDate: 2026-05-11_12:36:32
GoVersion: 1.26.2
Platform: linux
libre2: C++

The LAPI uses MariaDB/MySQL as its database backend.

What did you expect to happen?

CrowdSec memory usage should remain reasonably stable during normal operation.

The central LAPI should be able to run continuously without growing from approximately 190 MB to several GB and eventually being killed by the cgroup OOM mechanism.

How can we reproduce it (as minimally and precisely as possible)?

Our setup is:

  • CrowdSec 1.7.8
  • CentOS 8
  • central LAPI server
  • MySQL/MariaDB database backend
  • approximately 32 remote CrowdSec agents connected to the LAPI
  • Prometheus enabled with level: aggregated

Relevant database configuration:

db_config:
  type: mysql
  host: 127.0.0.1
  port: 3306
  db_name: crowdsec
  flush:
    max_items: 50000
    max_age: 30d

After:

systemctl restart crowdsec

memory usage starts at approximately 190 MB:

VmRSS:    187944 kB
VmSwap:        0 kB

and continuously increases until the process reaches the 4 GB cgroup limit, usually within 25–40 minutes.

The behavior then repeats after every automatic restart.

Anything else we need to know?

We initially suspected CAPI/community decisions because the LAPI had approximately:

23580 CAPI decisions
636 local CrowdSec decisions

We completely disabled CAPI/community/blocklist pulling:

online_client:
  sharing: false
  pull:
    community: false
    blocklists: false

This did not solve the problem.

With CAPI/community sources disabled, CrowdSec still grew to:

VmRSS:   3801144 kB
VmSwap:  2376760 kB

Restarting CrowdSec immediately returned memory usage to:

VmRSS:    187944 kB
VmSwap:        0 kB

Therefore, the leak does not appear to be caused by Community Blocklist/CAPI decisions.

We also tested CrowdSec 1.7.7. The memory growth was still present and that version additionally caused significantly higher CPU usage, so we returned to 1.7.8.

We also tried 1.6.6, but it was incompatible with our currently installed Hub scenarios/parsers.

The same CrowdSec setup is used on approximately 32 remote agents, none of which exhibit this memory growth. The issue appears to be specific to the server acting as the central LAPI.

Our current workaround is MemoryMax=4G, no swap for the CrowdSec cgroup, and automatic restart after CrowdSec is killed.

Crowdsec version

Details
$ cscli version
version: v1.7.8-rpm-pragmatic-amd64-63227459
Codename: alphaga
BuildDate: 2026-05-11_12:36:32
GoVersion: 1.26.2
Platform: linux
libre2: C++
User-Agent: crowdsec/v1.7.8-rpm-pragmatic-amd64-63227459-linux
Constraint_parser: >= 1.0, <= 3.0
Constraint_scenario: >= 1.0, <= 3.0
Constraint_api: v1
Constraint_acquis: >= 1.0, < 2.0
Built-in optional components: cscli_setup, datasource_appsec, datasource_cloudwatch, datasource_docker, datasource_file, datasource_http, datasource_journalctl, datasource_k8s-audit, datasource_kafka, datasource_kinesis, datasource_loki, datasource_s3, datasource_syslog, datasource_victorialogs, datasource_wineventlog, db_mysql, db_postgres, db_sqlite

OS version

Details
# On Linux:
$ cat /etc/os-release
NAME="CentOS Stream"
VERSION="8"
ID="centos"
ID_LIKE="rhel fedora"
VERSION_ID="8"
PLATFORM_ID="platform:el8"
PRETTY_NAME="CentOS Stream 8"
ANSI_COLOR="0;31"
CPE_NAME="cpe:/o:centos:centos:8"
HOME_URL="https://centos.org/"
BUG_REPORT_URL="https://bugzilla.redhat.com/"
REDHAT_SUPPORT_PRODUCT="Red Hat Enterprise Linux 8"
REDHAT_SUPPORT_PRODUCT_VERSION="CentOS Stream"

$ uname -a
Linux *** 4.18.0-553.6.1.el8.x86_64 #1 SMP Thu May 30 04:13:58 UTC 2024 x86_64 x86_64 x86_64 GNU/Linux

Enabled collections and parsers

Details
$ cscli hub list -o raw
crowdsecurity/sshd is tainted by scenarios:crowdsecurity/ssh-time-based-bf
crowdsecurity/linux is tainted by collections:crowdsecurity/sshd
crowdsecurity/linux is tainted by collections:crowdsecurity/whitelist-good-actors
crowdsecurity/whitelist-good-actors is tainted by postoverflows:crowdsecurity/rdns
Loaded: 166 parsers, 12 postoverflows, 781 scenarios, 9 contexts, 5 appsec-configs, 211 appsec-rules, 164 collections
Unmanaged items: 5 local, 7 tainted
name,status,version,description,type
crowdsecurity/apache2-logs,enabled,1.5,Parse Apache2 access and error logs,parsers
crowdsecurity/dateparse-enrich,enabled,0.2,,parsers
crowdsecurity/geoip-enrich,enabled,0.5,"Populate event with geoloc info : as, country, coords, source range.",parsers
crowdsecurity/http-logs,enabled,1.3,"Parse more Specifically HTTP logs, such as HTTP Code, HTTP path, HTTP args and if its a static ressource",parsers
crowdsecurity/mariadb-logs,enabled,0.4,Parse MariaDB logs,parsers
crowdsecurity/postfix-logs,enabled,0.9,Parse postfix logs,parsers
crowdsecurity/postscreen-logs,enabled,0.3,Parse postscreen logs,parsers
crowdsecurity/public-dns-allowlist,enabled,0.1,Allow events from public DNS servers,parsers
crowdsecurity/sshd-logs,enabled,3.1,Parse openSSH logs,parsers
crowdsecurity/sshd-success-logs,enabled,0.1,Parse successful ssh logins,parsers
crowdsecurity/syslog-logs,enabled,1.0,,parsers
crowdsecurity/whitelists,enabled,0.3,Whitelist events from private ipv4 addresses,parsers
fulljackz/pureftpd-logs,enabled,0.1,Parse pureftpd logs for bruteforce attempts,parsers
vizus/customer-whitelist,"enabled,local",,,parsers
vizus/system-whitelist,"enabled,local",,,parsers
vizus/web-auth-logs,"enabled,local",,,parsers
crowdsecurity/cdn-whitelist,enabled,0.5,Whitelist CDN providers,postoverflows
crowdsecurity/google-special-crawlers-whitelist,enabled,0.1,"Whitelist events from Google special crawlers (e.g. Google-InspectionTool, GoogleOther)",postoverflows
crowdsecurity/rdns,"enabled,tainted",?,Lookup the DNS associated to the source IP only for overflows,postoverflows
crowdsecurity/seo-bots-whitelist,enabled,0.5,Whitelist good search engine crawlers,postoverflows
crowdsecurity/apache_log4j2_cve-2021-44228,enabled,0.7,Detect cve-2021-44228 exploitation attempts,scenarios
crowdsecurity/CVE-2017-9841,enabled,0.2,Detect CVE-2017-9841 exploits,scenarios
crowdsecurity/CVE-2019-18935,enabled,0.2,Detect Telerik CVE-2019-18935 exploitation attempts,scenarios
crowdsecurity/CVE-2022-26134,enabled,0.4,Confluence - RCE (CVE-2022-26134),scenarios
crowdsecurity/CVE-2022-35914,enabled,0.2,Detect CVE-2022-35914 exploits,scenarios
crowdsecurity/CVE-2022-37042,enabled,0.2,Detect CVE-2022-37042 exploits,scenarios
crowdsecurity/CVE-2022-40684,enabled,0.3,Detect cve-2022-40684 exploitation attempts,scenarios
crowdsecurity/CVE-2022-41082,enabled,0.4,Detect CVE-2022-41082 exploits,scenarios
crowdsecurity/CVE-2022-41697,enabled,0.2,Detect CVE-2022-41697 enumeration,scenarios
crowdsecurity/CVE-2022-42889,enabled,0.3,Detect CVE-2022-42889 exploits (Text4Shell),scenarios
crowdsecurity/CVE-2022-44877,enabled,0.3,Detect CVE-2022-44877 exploits,scenarios
crowdsecurity/CVE-2022-46169,enabled,0.2,Detect CVE-2022-46169 brute forcing,scenarios
crowdsecurity/CVE-2023-22515,enabled,0.1,Detect CVE-2023-22515 exploitation,scenarios
crowdsecurity/CVE-2023-22518,enabled,0.3,Detect CVE-2023-22518 exploits,scenarios
crowdsecurity/CVE-2023-49103,enabled,0.3,Detect owncloud CVE-2023-49103 exploitation attempts,scenarios
crowdsecurity/CVE-2024-0012,enabled,0.1,Detect CVE-2024-0012 exploitation attempts,scenarios
crowdsecurity/CVE-2024-38475,enabled,0.1,Detect CVE-2024-38475 exploitation attempts,scenarios
crowdsecurity/CVE-2024-9474,enabled,0.1,Detect CVE-2024-9474 exploitation attempts,scenarios
crowdsecurity/f5-big-ip-cve-2020-5902,enabled,0.3,F5 BIG-IP TMUI - RCE (CVE-2020-5902),scenarios
crowdsecurity/fortinet-cve-2018-13379,enabled,0.4,Detect cve-2018-13379 exploitation attempts,scenarios
crowdsecurity/grafana-cve-2021-43798,enabled,0.3,Grafana - Arbitrary File Read (CVE-2021-43798),scenarios
crowdsecurity/http-admin-interface-probing,enabled,0.5,Detect generic HTTP admin interface probing,scenarios
crowdsecurity/http-backdoors-attempts,enabled,0.6,Detect attempt to common backdoors,scenarios
crowdsecurity/http-bad-user-agent,enabled,1.2,Detect usage of bad User Agent,scenarios
crowdsecurity/http-bf-wordpress_bf,enabled,0.7,Detect WordPress bruteforce on admin interface,scenarios
crowdsecurity/http-crawl-non_statics,enabled,0.7,Detect aggressive crawl on non static resources,scenarios
crowdsecurity/http-cve-2021-41773,enabled,0.3,Apache - Path Traversal (CVE-2021-41773),scenarios
crowdsecurity/http-cve-2021-42013,enabled,0.3,Apache - Path Traversal (CVE-2021-42013),scenarios
crowdsecurity/http-cve-probing,enabled,0.6,Detect generic HTTP cve probing,scenarios
crowdsecurity/http-generic-bf,enabled,0.9,Detect generic http brute force,scenarios
crowdsecurity/http-generic-test,enabled,0.2,Crowdsec Generic Test Scenario: basic HTTP trigger,scenarios
crowdsecurity/http-open-proxy,enabled,0.5,Detect scan for open proxy,scenarios
crowdsecurity/http-path-traversal-probing,enabled,0.4,Detect path traversal attempt,scenarios
crowdsecurity/http-probing,enabled,0.4,Detect site scanning/probing from a single ip,scenarios
crowdsecurity/http-sap-interface-probing,enabled,0.1,Detect generic HTTP SAP interface probing,scenarios
crowdsecurity/http-sensitive-files,enabled,0.4,"Detect attempt to access to sensitive files (.log, .db ..) or folders (.git)",scenarios
crowdsecurity/http-sqli-probing,enabled,0.4,A scenario that detects SQL injection probing with minimal false positives,scenarios
crowdsecurity/http-technology-probing,enabled,0.1,Detect HTTP technology/vendor probing,scenarios
crowdsecurity/http-wordpress-scan,enabled,0.4,Detect exploitation attempts against common WordPress endpoints,scenarios
crowdsecurity/http-wordpress_user-enum,enabled,0.3,Detect WordPress probing: authors enumeration,scenarios
crowdsecurity/http-wordpress_wpconfig,enabled,0.3,Detect WordPress probing: variations around wp-config.php by wpscan,scenarios
crowdsecurity/http-xss-probing,enabled,0.4,A scenario that detects XSS probing with minimal false positives,scenarios
crowdsecurity/jira_cve-2021-26086,enabled,0.4,Detect Atlassian Jira CVE-2021-26086 exploitation attempts,scenarios
crowdsecurity/mariadb-bf,enabled,0.2,Detect mariadb bruteforce,scenarios
crowdsecurity/netgear_rce,enabled,0.4,Detect Netgear RCE DGN1000/DGN220 exploitation attempts,scenarios
crowdsecurity/postfix-helo-rejected,enabled,0.1,Detect HELO rejections,scenarios
crowdsecurity/postfix-non-smtp-command,enabled,0.1,Detect scanning of postfix service through non-SMTP commands,scenarios
crowdsecurity/postfix-relay-denied,enabled,0.1,Detect multiple open relay attempts,scenarios
crowdsecurity/postfix-spam,enabled,0.4,Detect spammers,scenarios
crowdsecurity/pulse-secure-sslvpn-cve-2019-11510,enabled,0.4,Detect cve-2019-11510 exploitation attempts,scenarios
crowdsecurity/spring4shell_cve-2022-22965,enabled,0.3,Detect cve-2022-22965 probing,scenarios
crowdsecurity/ssh-bf,enabled,0.3,Detect ssh bruteforce,scenarios
crowdsecurity/ssh-cve-2024-6387,enabled,0.2,Detect exploitation attempt of CVE-2024-6387,scenarios
crowdsecurity/ssh-generic-test,enabled,0.2,Crowdsec Generic Test Scenario: SSH brute force trigger,scenarios
crowdsecurity/ssh-refused-conn,enabled,0.1,Detect sshd refused connections,scenarios
crowdsecurity/ssh-slow-bf,enabled,0.4,Detect slow ssh bruteforce,scenarios
crowdsecurity/ssh-time-based-bf,"enabled,tainted",?,Detect time-based ssh bruteforce attempts that evade rate limiting (with false positive reduction),scenarios
crowdsecurity/thinkphp-cve-2018-20062,enabled,0.7,Detect ThinkPHP CVE-2018-20062 exploitation attempts,scenarios
crowdsecurity/vmware-cve-2022-22954,enabled,0.3,Detect Vmware CVE-2022-22954 exploitation attempts,scenarios
crowdsecurity/vmware-vcenter-vmsa-2021-0027,enabled,0.3,Detect VMSA-2021-0027 exploitation attempts,scenarios
fulljackz/pureftpd-bf,enabled,0.2,Detect pureftpd bruteforce,scenarios
ltsich/http-w00tw00t,enabled,0.3,detect w00tw00t,scenarios
vizus/web-auth-bf,"enabled,local",,,scenarios
crowdsecurity/bf_base,enabled,0.1,,contexts
crowdsecurity/http_base,enabled,0.3,,contexts
crowdsecurity/apache2,enabled,0.2,apache2 support : parser and generic http scenarios,collections
crowdsecurity/base-http-scenarios,enabled,1.4,http common : scanners detection,collections
crowdsecurity/http-cve,enabled,3.0,Detect CVE exploitation in http logs,collections
crowdsecurity/linux,"enabled,tainted",0.4,core linux support : syslog+geoip+ssh,collections
crowdsecurity/mariadb,enabled,0.2,mariadb support : logs and brute-force scenarios,collections
crowdsecurity/postfix,enabled,0.5,postfix support : parser and spammer detection,collections
crowdsecurity/sshd,"enabled,tainted",0.9,sshd support : parser and brute-force detection,collections
crowdsecurity/whitelist-good-actors,"enabled,tainted",0.4,Good actors whitelists,collections
crowdsecurity/wordpress,enabled,0.6,wordpress: Bruteforce protection and config probing,collections
fulljackz/pureftpd,enabled,0.2,Pureftpd support : parser for brute force detection on Pureftpd,collections
vizus-web.yaml,"enabled,local",,,collections

Acquisition config

Details
# On Linux:
$ cat /etc/crowdsec/acquis.yaml /etc/crowdsec/acquis.d/*
---
# system
filenames:
  - /var/log/messages
  - /var/log/secure
  - /var/log/maillog
labels:
  type: syslog

---
# apache
filenames:
  - /var/log/httpd/*_log
labels:
  type: apache2

---
# mariadb
filenames:
  - /var/log/mariadb/mariadb.log
labels:
  type: mysql

---
# mariadb
journalctl_filter:
  - _SYSTEMD_UNIT=mysql.service
labels:
  type: mysql

---
# pureftpd
filenames:
  - /var/log/pure-ftpd
labels:
  type: syslog

cat: '/etc/crowdsec/acquis.d/*': No such file or directory

Config show

Details
$ cscli config show
Global:
   - Configuration Folder   : /etc/crowdsec
   - Data Folder            : /var/lib/crowdsec/data
   - Hub Folder             : /etc/crowdsec/hub
   - Notification Folder    : /etc/crowdsec/notifications
   - Simulation File        : /etc/crowdsec/simulation.yaml
   - Log Folder             : /var/log
   - Log level              : info
   - Log Media              : file
Crowdsec:
  - Acquisition File        : /etc/crowdsec/acquis.yaml
  - Parsers routines        : 1
cscli:
  - Output                  : human
  - Hub Branch              :
API Client:
  - URL                     : https://***:8001/
  - Login                   : ***
  - Credentials File        : /etc/crowdsec/local_api_credentials.yaml
Local API Server:
  - Listen URL              : ***:8001
  - Listen Socket           :
  - Profile File            : /etc/crowdsec/profiles.yaml
  - Cert File : /etc/pki/***.pem
  - Key File  : /etc/pki/***.key

  - Trusted IPs:
  - Database:
      - Type                : mysql
      - Host                : 127.0.0.1
      - Port                : 3306
      - User                : crowdsec
      - DB Name             : crowdsec
      - Flush age           : 720h0m0s
      - Flush size          : 50000

Prometheus metrics

Details
$ cscli metrics
╭──────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────╮
│ Acquisition Metrics                                                                                                                                  │
├────────────────────────────────────────────────────────────┬────────────┬──────────────┬────────────────┬────────────────────────┬───────────────────┤
│ Source                                                     │ Lines read │ Lines parsed │ Lines unparsed │ Lines poured to bucket │ Lines whitelisted │
├────────────────────────────────────────────────────────────┼────────────┼──────────────┼────────────────┼────────────────────────┼───────────────────┤
│ file:/var/log/httpd/***-access.log                         │ 30         │ 30           │ -              │ 4                      │ 5                 │
│ file:/var/log/httpd/***-access.log                         │ 2          │ 2            │ -              │ -                      │ -                 │
│ file:/var/log/httpd/***-access.log                         │ 2          │ 2            │ -              │ -                      │ -                 │
│ file:/var/log/httpd/***-access.log                         │ 2          │ 2            │ -              │ 2                      │ -                 │
│ file:/var/log/httpd/***-access.log                         │ 2          │ 2            │ -              │ -                      │ -                 │
│ file:/var/log/httpd/***-access.log                         │ 1          │ 1            │ -              │ -                      │ -                 │
│ file:/var/log/httpd/***-access.log                         │ 1          │ 1            │ -              │ -                      │ -                 │
│ file:/var/log/httpd/***-access.log                         │ 2          │ 2            │ -              │ -                      │ -                 │
│ file:/var/log/httpd/***-access.log                         │ 2          │ 2            │ -              │ -                      │ -                 │
│ file:/var/log/httpd/***-access.log                         │ 2          │ 2            │ -              │ -                      │ -                 │
│ file:/var/log/httpd/***-access.log                         │ 1          │ 1            │ -              │ -                      │ -                 │
│ file:/var/log/httpd/***-access.log                         │ 7.24k      │ 7.24k        │ -              │ 2.02k                  │ 200               │
│ file:/var/log/httpd/***-access.log                         │ 3          │ 3            │ -              │ -                      │ 3                 │
│ file:/var/log/httpd/***-access.log                         │ 65         │ 65           │ -              │ 33                     │ 27                │
│ file:/var/log/httpd/httpd-unknown_log                      │ 29         │ -            │ 29             │ -                      │ -                 │
│ file:/var/log/httpd/***-access.log                         │ 110        │ 110          │ -              │ 51                     │ 43                │
│ file:/var/log/httpd/***-access.log                         │ 17         │ 17           │ -              │ 30                     │ -                 │
│ file:/var/log/httpd/***-access.log                         │ 176        │ 176          │ -              │ -                      │ 176               │
│ file:/var/log/httpd/***-access.log                         │ 269        │ 269          │ -              │ -                      │ 12                │
│ file:/var/log/httpd/matomo.vizus.cz-error_log              │ 76         │ 76           │ -              │ -                      │ 3                 │
│ file:/var/log/httpd/***-access.log                         │ 130        │ 130          │ -              │ -                      │ -                 │
│ file:/var/log/httpd/***-access.log                         │ 29         │ 29           │ -              │ 10                     │ -                 │
│ file:/var/log/httpd/***-access.log                         │ 385        │ 385          │ -              │ 22                     │ 74                │
│ file:/var/log/httpd/***-access.log                         │ 4          │ 4            │ -              │ 4                      │ -                 │
│ file:/var/log/maillog                                      │ 24         │ -            │ 24             │ -                      │ -                 │
│ file:/var/log/messages                                     │ 748        │ -            │ 748            │ -                      │ -                 │
│ file:/var/log/pure-ftpd                                    │ 50         │ -            │ 50             │ -                      │ -                 │
│ file:/var/log/secure                                       │ 51         │ 26           │ 25             │ -                      │ 25                │
│ journalctl:journalctl-_SYSTEMD_UNIT=mysql.service          │ 1          │ -            │ 1              │ -                      │ -                 │
╰────────────────────────────────────────────────────────────┴────────────┴──────────────┴────────────────┴────────────────────────┴───────────────────╯
╭────────────────────────────────────────────────────╮
│ Local API Alerts                                   │
├────────────────────────────────────────────┬───────┤
│ Reason                                     │ Count │
├────────────────────────────────────────────┼───────┤
│ crowdsecurity/http-probing                 │ 12744 │
│ crowdsecurity/http-sqli-probbing-detection │ 784   │
│ crowdsecurity/http-technology-probing      │ 2517  │
│ vizus/dovecot-spam                         │ 554   │
│ crowdsecurity/http-bad-user-agent          │ 8814  │
│ crowdsecurity/jira_cve-2021-26086          │ 262   │
│ crowdsecurity/thinkphp-cve-2018-20062      │ 87    │
│ crowdsecurity/CVE-2022-41082               │ 89    │
│ crowdsecurity/http-backdoors-attempts      │ 840   │
│ crowdsecurity/http-sensitive-files         │ 7447  │
│ fulljackz/pureftpd-bf                      │ 137   │
│ crowdsecurity/http-crawl-non_statics       │ 3543  │
│ crowdsecurity/http-path-traversal-probing  │ 1815  │
│ crowdsecurity/http-xss-probbing            │ 22    │
│ crowdsecurity/netgear_rce                  │ 30    │
│ crowdsecurity/postfix-non-smtp-command     │ 50    │
│ crowdsecurity/postfix-spam                 │ 270   │
│ LePresidente/http-generic-403-bf           │ 188   │
│ crowdsecurity/CVE-2024-38475               │ 1     │
│ crowdsecurity/postfix-helo-rejected        │ 317   │
│ crowdsecurity/spring4shell_cve-2022-22965  │ 9     │
│ crowdsecurity/CVE-2019-18935               │ 683   │
│ crowdsecurity/http-cve-probing             │ 1869  │
│ crowdsecurity/http-sap-interface-probing   │ 3     │
│ crowdsecurity/http-wordpress_user-enum     │ 83    │
│ LePresidente/http-generic-401-bf           │ 25    │
│ crowdsecurity/CVE-2024-0012                │ 2     │
│ crowdsecurity/apache_log4j2_cve-2021-44228 │ 23    │
│ crowdsecurity/f5-big-ip-cve-2020-5902      │ 4     │
│ crowdsecurity/http-admin-interface-probing │ 3469  │
│ crowdsecurity/http-bf-wordpress_bf         │ 155   │
│ crowdsecurity/CVE-2023-22518               │ 1     │
│ crowdsecurity/http-cve-2021-42013          │ 250   │
│ crowdsecurity/http-open-proxy              │ 7     │
│ crowdsecurity/http-wordpress-scan          │ 2035  │
│ crowdsecurity/http-wordpress_wpconfig      │ 22    │
│ crowdsecurity/CVE-2017-9841                │ 263   │
│ crowdsecurity/CVE-2022-26134               │ 31    │
│ crowdsecurity/CVE-2023-22515               │ 20    │
│ crowdsecurity/http-cve-2021-41773          │ 473   │
╰────────────────────────────────────────────┴───────╯
╭─────────────────────────────────────────────────────────────────╮
│ Bouncer Metrics (aopk2.default.cz) since 2026-08-04 10:29:55 +0 │
│ 000 UTC                                                         │
├────────┬──────────────────┬─────────────────┬───────────────────┤
│ Origin │ active_decisions │     dropped     │     processed     │
│        │        IPs       │ bytes │ packets │  bytes  │ packets │
├────────┼──────────────────┼───────┼─────────┼─────────┼─────────┤
│ ipset  │           25.29k │ 1.94M │  28.51k │       - │       - │
├────────┼──────────────────┼───────┼─────────┼─────────┼─────────┤
│  Total │           25.29k │ 1.94M │  28.51k │ 619.82M │   2.07M │
╰────────┴──────────────────┴───────┴─────────┴─────────┴─────────╯
╭─────────────────────────────────────────────────────────────────╮
│ Bouncer Metrics (atlanta.default.cz) since 2026-08-04 10:34:10  │
│ +0000 UTC                                                       │
├────────┬──────────────────┬─────────────────┬───────────────────┤
│ Origin │ active_decisions │     dropped     │     processed     │
│        │        IPs       │ bytes │ packets │  bytes  │ packets │
├────────┼──────────────────┼───────┼─────────┼─────────┼─────────┤
│ ipset  │           25.31k │ 1.13M │  19.62k │       - │       - │
├────────┼──────────────────┼───────┼─────────┼─────────┼─────────┤
│  Total │           25.31k │ 1.13M │  19.62k │ 659.02M │   2.26M │
╰────────┴──────────────────┴───────┴─────────┴─────────┴─────────╯
╭───────────────────────────────────────────────────────────────────╮
│ Bouncer Metrics (charita3.default.cz) since 2026-08-04 10:42:13 + │
│ 0000 UTC                                                          │
├────────┬──────────────────┬───────────────────┬───────────────────┤
│ Origin │ active_decisions │      dropped      │     processed     │
│        │        IPs       │  bytes  │ packets │  bytes  │ packets │
├────────┼──────────────────┼─────────┼─────────┼─────────┼─────────┤
│ ipset  │           25.25k │ 159.27M │   2.37M │       - │       - │
├────────┼──────────────────┼─────────┼─────────┼─────────┼─────────┤
│  Total │           25.25k │ 159.27M │   2.37M │ 633.04M │   2.24M │
╰────────┴──────────────────┴─────────┴─────────┴─────────┴─────────╯
╭───────────────────────────────────────────────────────────────────╮
│ Bouncer Metrics (data1.default.cz) since 2026-08-04 10:35:07 +000 │
│ 0 UTC                                                             │
├────────┬──────────────────┬───────────────────┬───────────────────┤
│ Origin │ active_decisions │      dropped      │     processed     │
│        │        IPs       │  bytes  │ packets │  bytes  │ packets │
├────────┼──────────────────┼─────────┼─────────┼─────────┼─────────┤
│ ipset  │           25.06k │ 857.49k │  15.74k │       - │       - │
├────────┼──────────────────┼─────────┼─────────┼─────────┼─────────┤
│  Total │           25.06k │ 857.49k │  15.74k │ 619.59M │   2.06M │
╰────────┴──────────────────┴─────────┴─────────┴─────────┴─────────╯
╭───────────────────────────────────────────────────────────────────╮
│ Bouncer Metrics (data2.default.cz) since 2026-08-04 10:38:34 +000 │
│ 0 UTC                                                             │
├────────┬──────────────────┬───────────────────┬───────────────────┤
│ Origin │ active_decisions │      dropped      │     processed     │
│        │        IPs       │  bytes  │ packets │  bytes  │ packets │
├────────┼──────────────────┼─────────┼─────────┼─────────┼─────────┤
│ ipset  │           25.27k │ 684.25k │  12.51k │       - │       - │
├────────┼──────────────────┼─────────┼─────────┼─────────┼─────────┤
│  Total │           25.27k │ 684.25k │  12.51k │ 657.35M │   2.24M │
╰────────┴──────────────────┴─────────┴─────────┴─────────┴─────────╯
╭──────────────────────────────────────────────────────────────────╮
│ Bouncer Metrics (diakonie2.default.cz) since 2026-08-04 10:32:43 │
│ +0000 UTC                                                        │
├────────┬──────────────────┬──────────────────┬───────────────────┤
│ Origin │ active_decisions │      dropped     │     processed     │
│        │        IPs       │  bytes │ packets │  bytes  │ packets │
├────────┼──────────────────┼────────┼─────────┼─────────┼─────────┤
│ ipset  │           25.32k │ 13.07M │ 193.77k │       - │       - │
├────────┼──────────────────┼────────┼─────────┼─────────┼─────────┤
│  Total │           25.32k │ 13.07M │ 193.77k │ 659.92M │   2.26M │
╰────────┴──────────────────┴────────┴─────────┴─────────┴─────────╯
╭─────────────────────────────────────────────────────────────────╮
│ Bouncer Metrics (fcczech.default.cz) since 2026-08-04 10:32:55  │
│ +0000 UTC                                                       │
├────────┬──────────────────┬─────────────────┬───────────────────┤
│ Origin │ active_decisions │     dropped     │     processed     │
│        │        IPs       │ bytes │ packets │  bytes  │ packets │
├────────┼──────────────────┼───────┼─────────┼─────────┼─────────┤
│ ipset  │           25.28k │ 6.05M │  95.15k │       - │       - │
├────────┼──────────────────┼───────┼─────────┼─────────┼─────────┤
│  Total │           25.28k │ 6.05M │  95.15k │ 660.33M │   2.27M │
╰────────┴──────────────────┴───────┴─────────┴─────────┴─────────╯
╭─────────────────────────────────────────────────────────────────╮
│ Bouncer Metrics (frist2.default.cz) since 2026-08-04 10:33:23 + │
│ 0000 UTC                                                        │
├────────┬──────────────────┬─────────────────┬───────────────────┤
│ Origin │ active_decisions │     dropped     │     processed     │
│        │        IPs       │ bytes │ packets │  bytes  │ packets │
├────────┼──────────────────┼───────┼─────────┼─────────┼─────────┤
│ ipset  │           25.28k │ 4.45M │  68.46k │       - │       - │
├────────┼──────────────────┼───────┼─────────┼─────────┼─────────┤
│  Total │           25.28k │ 4.45M │  68.46k │ 665.02M │   2.45M │
╰────────┴──────────────────┴───────┴─────────┴─────────┴─────────╯
╭──────────────────────────────────────────────────────────────────╮
│ Bouncer Metrics (hosting4.default.cz) since 2026-08-04 10:36:42  │
│ +0000 UTC                                                        │
├────────┬──────────────────┬──────────────────┬───────────────────┤
│ Origin │ active_decisions │      dropped     │     processed     │
│        │        IPs       │  bytes │ packets │  bytes  │ packets │
├────────┼──────────────────┼────────┼─────────┼─────────┼─────────┤
│ ipset  │           25.29k │ 49.71M │ 769.52k │       - │       - │
├────────┼──────────────────┼────────┼─────────┼─────────┼─────────┤
│  Total │           25.29k │ 49.71M │ 769.52k │ 628.24M │   2.25M │
╰────────┴──────────────────┴────────┴─────────┴─────────┴─────────╯
╭──────────────────────────────────────────────────────────────────╮
│ Bouncer Metrics (hosting5.default.cz) since 2026-08-04 10:42:54  │
│ +0000 UTC                                                        │
├────────┬──────────────────┬──────────────────┬───────────────────┤
│ Origin │ active_decisions │      dropped     │     processed     │
│        │        IPs       │  bytes │ packets │  bytes  │ packets │
├────────┼──────────────────┼────────┼─────────┼─────────┼─────────┤
│ ipset  │           25.28k │ 19.20M │ 286.87k │       - │       - │
├────────┼──────────────────┼────────┼─────────┼─────────┼─────────┤
│  Total │           25.28k │ 19.20M │ 286.87k │ 661.24M │   2.29M │
╰────────┴──────────────────┴────────┴─────────┴─────────┴─────────╯
╭─────────────────────────────────────────────────────────────────╮
│ Bouncer Metrics (idu2.default.cz) since 2026-08-04 10:30:28 +00 │
│ 00 UTC                                                          │
├────────┬──────────────────┬─────────────────┬───────────────────┤
│ Origin │ active_decisions │     dropped     │     processed     │
│        │        IPs       │ bytes │ packets │  bytes  │ packets │
├────────┼──────────────────┼───────┼─────────┼─────────┼─────────┤
│ ipset  │           25.27k │ 4.40M │  62.18k │       - │       - │
├────────┼──────────────────┼───────┼─────────┼─────────┼─────────┤
│  Total │           25.27k │ 4.40M │  62.18k │ 654.39M │   2.23M │
╰────────┴──────────────────┴───────┴─────────┴─────────┴─────────╯
╭─────────────────────────────────────────────────────────────────╮
│ Bouncer Metrics (lasertherm.default.cz) since 2026-08-04 10:29: │
│ 46 +0000 UTC                                                    │
├────────┬──────────────────┬─────────────────┬───────────────────┤
│ Origin │ active_decisions │     dropped     │     processed     │
│        │        IPs       │ bytes │ packets │  bytes  │ packets │
├────────┼──────────────────┼───────┼─────────┼─────────┼─────────┤
│ ipset  │           25.26k │ 1.06M │  17.88k │       - │       - │
├────────┼──────────────────┼───────┼─────────┼─────────┼─────────┤
│  Total │           25.26k │ 1.06M │  17.88k │ 658.51M │   2.25M │
╰────────┴──────────────────┴───────┴─────────┴─────────┴─────────╯
╭───────────────────────────────────────────────────────────────────╮
│ Bouncer Metrics (mail1.default.cz) since 2026-08-04 10:35:58 +000 │
│ 0 UTC                                                             │
├────────┬──────────────────┬───────────────────┬───────────────────┤
│ Origin │ active_decisions │      dropped      │     processed     │
│        │        IPs       │  bytes  │ packets │  bytes  │ packets │
├────────┼──────────────────┼─────────┼─────────┼─────────┼─────────┤
│ ipset  │           23.46k │ 351.50k │   7.43k │       - │       - │
├────────┼──────────────────┼─────────┼─────────┼─────────┼─────────┤
│  Total │           23.46k │ 351.50k │   7.43k │ 621.95M │   2.08M │
╰────────┴──────────────────┴─────────┴─────────┴─────────┴─────────╯
╭───────────────────────────────────────────────────────────────────╮
│ Bouncer Metrics (mail2.default.cz) since 2026-08-04 10:43:58 +000 │
│ 0 UTC                                                             │
├────────┬──────────────────┬───────────────────┬───────────────────┤
│ Origin │ active_decisions │      dropped      │     processed     │
│        │        IPs       │  bytes  │ packets │  bytes  │ packets │
├────────┼──────────────────┼─────────┼─────────┼─────────┼─────────┤
│ ipset  │           25.27k │ 382.18k │   8.03k │       - │       - │
├────────┼──────────────────┼─────────┼─────────┼─────────┼─────────┤
│  Total │           25.27k │ 382.18k │   8.03k │ 656.09M │   2.24M │
╰────────┴──────────────────┴─────────┴─────────┴─────────┴─────────╯
╭─────────────────────────────────────────────────────────────────╮
│ Bouncer Metrics (marek2.default.cz) since 2026-08-04 10:42:42 + │
│ 0000 UTC                                                        │
├────────┬──────────────────┬─────────────────┬───────────────────┤
│ Origin │ active_decisions │     dropped     │     processed     │
│        │        IPs       │ bytes │ packets │  bytes  │ packets │
├────────┼──────────────────┼───────┼─────────┼─────────┼─────────┤
│ ipset  │           25.30k │ 3.34M │  54.75k │       - │       - │
├────────┼──────────────────┼───────┼─────────┼─────────┼─────────┤
│  Total │           25.30k │ 3.34M │  54.75k │ 622.60M │   2.10M │
╰────────┴──────────────────┴───────┴─────────┴─────────┴─────────╯
╭──────────────────────────────────────────────────────────────────╮
│ Bouncer Metrics (master.default.cz) since 2026-08-04 10:34:21 +0 │
│ 000 UTC                                                          │
├────────┬──────────────────┬──────────────────┬───────────────────┤
│ Origin │ active_decisions │      dropped     │     processed     │
│        │        IPs       │  bytes │ packets │  bytes  │ packets │
├────────┼──────────────────┼────────┼─────────┼─────────┼─────────┤
│ ipset  │           25.31k │ 87.46M │   1.25M │       - │       - │
├────────┼──────────────────┼────────┼─────────┼─────────┼─────────┤
│  Total │           25.31k │ 87.46M │   1.25M │ 885.04M │   6.51M │
╰────────┴──────────────────┴────────┴─────────┴─────────┴─────────╯
╭─────────────────────────────────────────────────────────────────╮
│ Bouncer Metrics (mx1.default.cz) since 2026-08-04 10:43:05 +000 │
│ 0 UTC                                                           │
├────────┬──────────────────┬─────────────────┬───────────────────┤
│ Origin │ active_decisions │     dropped     │     processed     │
│        │        IPs       │ bytes │ packets │  bytes  │ packets │
├────────┼──────────────────┼───────┼─────────┼─────────┼─────────┤
│ ipset  │           25.29k │ 3.89M │  67.66k │       - │       - │
├────────┼──────────────────┼───────┼─────────┼─────────┼─────────┤
│  Total │           25.29k │ 3.89M │  67.66k │ 622.07M │   2.08M │
╰────────┴──────────────────┴───────┴─────────┴─────────┴─────────╯
╭─────────────────────────────────────────────────────────────────╮
│ Bouncer Metrics (mx2.default.cz) since 2026-08-04 10:43:26 +000 │
│ 0 UTC                                                           │
├────────┬──────────────────┬─────────────────┬───────────────────┤
│ Origin │ active_decisions │     dropped     │     processed     │
│        │        IPs       │ bytes │ packets │  bytes  │ packets │
├────────┼──────────────────┼───────┼─────────┼─────────┼─────────┤
│ ipset  │           25.24k │ 3.63M │  63.12k │       - │       - │
├────────┼──────────────────┼───────┼─────────┼─────────┼─────────┤
│  Total │           25.24k │ 3.63M │  63.12k │ 660.82M │   2.29M │
╰────────┴──────────────────┴───────┴─────────┴─────────┴─────────╯
╭───────────────────────────────────────────────────────────────╮
│ Bouncer Metrics (office.default.cz) since 2026-08-04 10:34:39 │
│ +0000 UTC                                                     │
├────────┬──────────────────┬─────────────────┬─────────────────┤
│ Origin │ active_decisions │     dropped     │    processed    │
│        │        IPs       │ bytes │ packets │ bytes │ packets │
├────────┼──────────────────┼───────┼─────────┼───────┼─────────┤
│ ipset  │           25.29k │     0 │       0 │     - │       - │
├────────┼──────────────────┼───────┼─────────┼───────┼─────────┤
│  Total │           25.29k │     0 │       0 │     0 │       0 │
╰────────┴──────────────────┴───────┴─────────┴───────┴─────────╯
╭─────────────────────────────────────────────────────────────────╮
│ Bouncer Metrics (pfuk.default.cz) since 2026-08-04 10:37:42 +00 │
│ 00 UTC                                                          │
├────────┬──────────────────┬─────────────────┬───────────────────┤
│ Origin │ active_decisions │     dropped     │     processed     │
│        │        IPs       │ bytes │ packets │  bytes  │ packets │
├────────┼──────────────────┼───────┼─────────┼─────────┼─────────┤
│ ipset  │           25.29k │ 1.47M │  26.11k │       - │       - │
├────────┼──────────────────┼───────┼─────────┼─────────┼─────────┤
│  Total │           25.29k │ 1.47M │  26.11k │ 661.54M │   2.41M │
╰────────┴──────────────────┴───────┴─────────┴─────────┴─────────╯
╭─────────────────────────────────────────────────────────────────╮
│ Bouncer Metrics (poker2.default.cz) since 2026-08-04 10:39:01 + │
│ 0000 UTC                                                        │
├────────┬──────────────────┬─────────────────┬───────────────────┤
│ Origin │ active_decisions │     dropped     │     processed     │
│        │        IPs       │ bytes │ packets │  bytes  │ packets │
├────────┼──────────────────┼───────┼─────────┼─────────┼─────────┤
│ ipset  │           25.28k │ 9.93M │ 161.14k │       - │       - │
├────────┼──────────────────┼───────┼─────────┼─────────┼─────────┤
│  Total │           25.28k │ 9.93M │ 161.14k │ 623.39M │   2.08M │
╰────────┴──────────────────┴───────┴─────────┴─────────┴─────────╯
╭──────────────────────────────────────────────────────────────────╮
│ Bouncer Metrics (proglas2.default.cz) since 2026-08-04 10:38:55  │
│ +0000 UTC                                                        │
├────────┬──────────────────┬──────────────────┬───────────────────┤
│ Origin │ active_decisions │      dropped     │     processed     │
│        │        IPs       │  bytes │ packets │  bytes  │ packets │
├────────┼──────────────────┼────────┼─────────┼─────────┼─────────┤
│ ipset  │           25.29k │ 22.89M │ 367.42k │       - │       - │
├────────┼──────────────────┼────────┼─────────┼─────────┼─────────┤
│  Total │           25.29k │ 22.89M │ 367.42k │ 624.42M │   2.12M │
╰────────┴──────────────────┴────────┴─────────┴─────────┴─────────╯
╭───────────────────────────────────────────────────────────────────╮
│ Bouncer Metrics (proxy1.default.cz) since 2026-08-04 10:38:46 +00 │
│ 00 UTC                                                            │
├────────┬──────────────────┬───────────────────┬───────────────────┤
│ Origin │ active_decisions │      dropped      │     processed     │
│        │        IPs       │  bytes  │ packets │  bytes  │ packets │
├────────┼──────────────────┼─────────┼─────────┼─────────┼─────────┤
│ ipset  │           25.25k │ 315.93M │   4.79M │       - │       - │
├────────┼──────────────────┼─────────┼─────────┼─────────┼─────────┤
│  Total │           25.25k │ 315.93M │   4.79M │ 673.36M │   2.73M │
╰────────┴──────────────────┴─────────┴─────────┴─────────┴─────────╯
╭───────────────────────────────────────────────────────────────────╮
│ Bouncer Metrics (proxy2.default.cz) since 2026-08-04 10:38:14 +00 │
│ 00 UTC                                                            │
├────────┬──────────────────┬───────────────────┬───────────────────┤
│ Origin │ active_decisions │      dropped      │     processed     │
│        │        IPs       │  bytes  │ packets │  bytes  │ packets │
├────────┼──────────────────┼─────────┼─────────┼─────────┼─────────┤
│ ipset  │           25.28k │ 265.22M │   4.19M │       - │       - │
├────────┼──────────────────┼─────────┼─────────┼─────────┼─────────┤
│  Total │           25.28k │ 265.22M │   4.19M │ 701.67M │   2.73M │
╰────────┴──────────────────┴─────────┴─────────┴─────────┴─────────╯
╭───────────────────────────────────────────────────────────────────╮
│ Bouncer Metrics (seminaria2.default.cz) since 2026-08-04 10:32:08 │
│ +0000 UTC                                                         │
├────────┬──────────────────┬───────────────────┬───────────────────┤
│ Origin │ active_decisions │      dropped      │     processed     │
│        │        IPs       │  bytes  │ packets │  bytes  │ packets │
├────────┼──────────────────┼─────────┼─────────┼─────────┼─────────┤
│ ipset  │           25.27k │ 937.13k │  17.46k │       - │       - │
├────────┼──────────────────┼─────────┼─────────┼─────────┼─────────┤
│  Total │           25.27k │ 937.13k │  17.46k │ 619.45M │   2.06M │
╰────────┴──────────────────┴─────────┴─────────┴─────────┴─────────╯
╭──────────────────────────────────────────────────────────────────╮
│ Bouncer Metrics (smtp1.default.cz) since 2026-08-04 10:32:30 +00 │
│ 00 UTC                                                           │
├────────┬──────────────────┬──────────────────┬───────────────────┤
│ Origin │ active_decisions │      dropped     │     processed     │
│        │        IPs       │  bytes │ packets │  bytes  │ packets │
├────────┼──────────────────┼────────┼─────────┼─────────┼─────────┤
│ ipset  │           25.26k │ 47.08M │ 799.67k │       - │       - │
├────────┼──────────────────┼────────┼─────────┼─────────┼─────────┤
│  Total │           25.26k │ 47.08M │ 799.67k │ 623.26M │   2.10M │
╰────────┴──────────────────┴────────┴─────────┴─────────┴─────────╯
╭──────────────────────────────────────────────────────────────────╮
│ Bouncer Metrics (smtp2.default.cz) since 2026-08-04 10:32:44 +00 │
│ 00 UTC                                                           │
├────────┬──────────────────┬──────────────────┬───────────────────┤
│ Origin │ active_decisions │      dropped     │     processed     │
│        │        IPs       │  bytes │ packets │  bytes  │ packets │
├────────┼──────────────────┼────────┼─────────┼─────────┼─────────┤
│ ipset  │           25.28k │ 46.34M │ 786.13k │       - │       - │
├────────┼──────────────────┼────────┼─────────┼─────────┼─────────┤
│  Total │           25.28k │ 46.34M │ 786.13k │ 660.34M │   2.27M │
╰────────┴──────────────────┴────────┴─────────┴─────────┴─────────╯
╭─────────────────────────────────────────────────────────────────╮
│ Bouncer Metrics (uvt.default.cz) since 2026-08-04 10:29:58 +000 │
│ 0 UTC                                                           │
├────────┬──────────────────┬─────────────────┬───────────────────┤
│ Origin │ active_decisions │     dropped     │     processed     │
│        │        IPs       │ bytes │ packets │  bytes  │ packets │
├────────┼──────────────────┼───────┼─────────┼─────────┼─────────┤
│ ipset  │           23.47k │ 8.75M │ 134.70k │       - │       - │
├────────┼──────────────────┼───────┼─────────┼─────────┼─────────┤
│  Total │           23.47k │ 8.75M │ 134.70k │ 658.33M │   2.27M │
╰────────┴──────────────────┴───────┴─────────┴─────────┴─────────╯
╭─────────────────────────────────────────────────────────────────╮
│ Bouncer Metrics (veolia2.default.cz) since 2026-08-04 10:30:22  │
│ +0000 UTC                                                       │
├────────┬──────────────────┬─────────────────┬───────────────────┤
│ Origin │ active_decisions │     dropped     │     processed     │
│        │        IPs       │ bytes │ packets │  bytes  │ packets │
├────────┼──────────────────┼───────┼─────────┼─────────┼─────────┤
│ ipset  │           25.30k │ 3.89M │  64.32k │       - │       - │
├────────┼──────────────────┼───────┼─────────┼─────────┼─────────┤
│  Total │           25.30k │ 3.89M │  64.32k │ 654.26M │   2.23M │
╰────────┴──────────────────┴───────┴─────────┴─────────┴─────────╯
╭───────────────────────────────────────────────────────────────────╮
│ Bouncer Metrics (web6.default.cz) since 2026-08-04 10:32:39 +0000 │
│ UTC                                                               │
├────────┬──────────────────┬───────────────────┬───────────────────┤
│ Origin │ active_decisions │      dropped      │     processed     │
│        │        IPs       │  bytes  │ packets │  bytes  │ packets │
├────────┼──────────────────┼─────────┼─────────┼─────────┼─────────┤
│ ipset  │           25.29k │ 152.18M │   2.22M │       - │       - │
├────────┼──────────────────┼─────────┼─────────┼─────────┼─────────┤
│  Total │           25.29k │ 152.18M │   2.22M │ 645.21M │   2.46M │
╰────────┴──────────────────┴─────────┴─────────┴─────────┴─────────╯
╭────────────────────────────────────────────────────────────────────────╮
│ Local API Decisions                                                    │
├────────────────────────────────────────────┬──────────┬────────┬───────┤
│ Reason                                     │ Origin   │ Action │ Count │
├────────────────────────────────────────────┼──────────┼────────┼───────┤
│ http:crawl                                 │ CAPI     │ ban    │ 195   │
│ smb:bruteforce                             │ CAPI     │ ban    │ 25    │
│ crowdsecurity/http-cve-2021-42013          │ crowdsec │ ban    │ 5     │
│ crowdsecurity/http-probing                 │ crowdsec │ ban    │ 326   │
│ crowdsecurity/http-wordpress-scan          │ crowdsec │ ban    │ 35    │
│ fulljackz/pureftpd-bf                      │ crowdsec │ ban    │ 1     │
│ crowdsecurity/http-sqli-probbing-detection │ crowdsec │ ban    │ 29    │
│ ftp:bruteforce                             │ CAPI     │ ban    │ 5     │
│ http:bruteforce                            │ CAPI     │ ban    │ 255   │
│ http:scan                                  │ CAPI     │ ban    │ 22380 │
│ ssh:bruteforce                             │ CAPI     │ ban    │ 865   │
│ pop3/imap:bruteforce                       │ CAPI     │ ban    │ 219   │
│ smtp:spam                                  │ CAPI     │ ban    │ 429   │
│ crowdsecurity/http-backdoors-attempts      │ crowdsec │ ban    │ 13    │
│ crowdsecurity/http-bf-wordpress_bf         │ crowdsec │ ban    │ 4     │
│ crowdsecurity/http-cve-2021-41773          │ crowdsec │ ban    │ 9     │
│ crowdsecurity/postfix-non-smtp-command     │ crowdsec │ ban    │ 2     │
│ generic:scan                               │ CAPI     │ ban    │ 199   │
│ crowdsecurity/http-admin-interface-probing │ crowdsec │ ban    │ 63    │
│ crowdsecurity/http-sensitive-files         │ crowdsec │ ban    │ 99    │
│ crowdsecurity/http-wordpress_user-enum     │ crowdsec │ ban    │ 1     │
│ crowdsecurity/http-bad-user-agent          │ crowdsec │ ban    │ 197   │
│ crowdsecurity/http-path-traversal-probing  │ crowdsec │ ban    │ 46    │
│ crowdsecurity/postfix-spam                 │ crowdsec │ ban    │ 5     │
│ http:exploit                               │ CAPI     │ ban    │ 647   │
│ LePresidente/http-generic-403-bf           │ crowdsec │ ban    │ 5     │
│ crowdsecurity/CVE-2019-18935               │ crowdsec │ ban    │ 15    │
│ crowdsecurity/http-crawl-non_statics       │ crowdsec │ ban    │ 76    │
│ crowdsecurity/postfix-helo-rejected        │ crowdsec │ ban    │ 11    │
│ database:bruteforce                        │ CAPI     │ ban    │ 7     │
│ crowdsecurity/CVE-2017-9841                │ crowdsec │ ban    │ 9     │
│ crowdsecurity/http-cve-probing             │ crowdsec │ ban    │ 68    │
│ crowdsecurity/thinkphp-cve-2018-20062      │ crowdsec │ ban    │ 3     │
│ vizus/dovecot-spam                         │ crowdsec │ ban    │ 16    │
╰────────────────────────────────────────────┴──────────┴────────┴───────╯
╭──────────────────────────────────────╮
│ Local API Metrics                    │
├──────────────────────┬────────┬──────┤
│ Route                │ Method │ Hits │
├──────────────────────┼────────┼──────┤
│ /v1/alerts           │ POST   │ 104  │
│ /v1/decisions/stream │ GET    │ 4862 │
│ /v1/heartbeat        │ GET    │ 887  │
│ /v1/usage-metrics    │ POST   │ 76   │
│ /v1/watchers/login   │ POST   │ 38   │
╰──────────────────────┴────────┴──────╯
╭──────────────────────────────────────────────────────────────╮
│ Local API Bouncers Metrics                                   │
├───────────────────────┬──────────────────────┬────────┬──────┤
│ Bouncer               │ Route                │ Method │ Hits │
├───────────────────────┼──────────────────────┼────────┼──────┤
│ ***                   │ /v1/decisions/stream │ GET    │ 151  │
│ ***                   │ /v1/decisions/stream │ GET    │ 152  │
│ ***                   │ /v1/decisions/stream │ GET    │ 152  │
│ ***                   │ /v1/decisions/stream │ GET    │ 152  │
│ ***                   │ /v1/decisions/stream │ GET    │ 152  │
│ ***                   │ /v1/decisions/stream │ GET    │ 152  │
│ ***                   │ /v1/decisions/stream │ GET    │ 152  │
│ ***                   │ /v1/decisions/stream │ GET    │ 152  │
│ ***                   │ /v1/decisions/stream │ GET    │ 152  │
│ ***                   │ /v1/decisions/stream │ GET    │ 152  │
│ ***                   │ /v1/decisions/stream │ GET    │ 152  │
│ ***                   │ /v1/decisions/stream │ GET    │ 152  │
│ ***                   │ /v1/decisions/stream │ GET    │ 152  │
│ ***                   │ /v1/decisions/stream │ GET    │ 152  │
│ ***                   │ /v1/decisions/stream │ GET    │ 152  │
│ ***                   │ /v1/decisions/stream │ GET    │ 152  │
│ ***                   │ /v1/decisions/stream │ GET    │ 152  │
│ ***                   │ /v1/decisions/stream │ GET    │ 152  │
│ ***                   │ /v1/decisions/stream │ GET    │ 152  │
│ ***                   │ /v1/decisions/stream │ GET    │ 152  │
│ ***                   │ /v1/decisions/stream │ GET    │ 152  │
│ ***                   │ /v1/decisions/stream │ GET    │ 151  │
│ ***                   │ /v1/decisions/stream │ GET    │ 152  │
│ ***                   │ /v1/decisions/stream │ GET    │ 152  │
│ ***                   │ /v1/decisions/stream │ GET    │ 152  │
│ ***                   │ /v1/decisions/stream │ GET    │ 152  │
│ ***                   │ /v1/decisions/stream │ GET    │ 152  │
│ ***                   │ /v1/decisions/stream │ GET    │ 152  │
│ ***                   │ /v1/decisions/stream │ GET    │ 152  │
│ ***                   │ /v1/decisions/stream │ GET    │ 152  │
│ ***                   │ /v1/decisions/stream │ GET    │ 152  │
│ ***                   │ /v1/decisions/stream │ GET    │ 152  │
╰───────────────────────┴──────────────────────┴────────┴──────╯
╭───────────────────────────────────────────────────────╮
│ Local API Machines Metrics                            │
├───────────────────────┬───────────────┬────────┬──────┤
│ Machine               │ Route         │ Method │ Hits │
├───────────────────────┼───────────────┼────────┼──────┤
│ ***                   │ /v1/heartbeat │ GET    │ 26   │
│ ***                   │ /v1/heartbeat │ GET    │ 27   │
│ ***                   │ /v1/heartbeat │ GET    │ 27   │
│ ***                   │ /v1/alerts    │ POST   │ 12   │
│ ***                   │ /v1/heartbeat │ GET    │ 27   │
│ ***                   │ /v1/heartbeat │ GET    │ 27   │
│ ***                   │ /v1/heartbeat │ GET    │ 27   │
│ ***                   │ /v1/heartbeat │ GET    │ 27   │
│ ***                   │ /v1/heartbeat │ GET    │ 27   │
│ ***                   │ /v1/alerts    │ POST   │ 2    │
│ ***                   │ /v1/heartbeat │ GET    │ 27   │
│ ***                   │ /v1/alerts    │ POST   │ 4    │
│ ***                   │ /v1/heartbeat │ GET    │ 27   │
│ ***                   │ /v1/alerts    │ POST   │ 2    │
│ ***                   │ /v1/heartbeat │ GET    │ 27   │
│ ***                   │ /v1/alerts    │ POST   │ 1    │
│ ***                   │ /v1/heartbeat │ GET    │ 27   │
│ ***                   │ /v1/heartbeat │ GET    │ 27   │
│ ***                   │ /v1/heartbeat │ GET    │ 26   │
│ ***                   │ /v1/heartbeat │ GET    │ 27   │
│ ***                   │ /v1/heartbeat │ GET    │ 25   │
│ ***                   │ /v1/alerts    │ POST   │ 1    │
│ ***                   │ /v1/heartbeat │ GET    │ 27   │
│ ***                   │ /v1/heartbeat │ GET    │ 27   │
│ ***                   │ /v1/alerts    │ POST   │ 3    │
│ ***                   │ /v1/heartbeat │ GET    │ 27   │
│ ***                   │ /v1/heartbeat │ GET    │ 27   │
│ ***                   │ /v1/heartbeat │ GET    │ 26   │
│ ***                   │ /v1/alerts    │ POST   │ 1    │
│ ***                   │ /v1/heartbeat │ GET    │ 27   │
│ ***                   │ /v1/alerts    │ POST   │ 1    │
│ ***                   │ /v1/heartbeat │ GET    │ 27   │
│ ***                   │ /v1/alerts    │ POST   │ 14   │
│ ***                   │ /v1/heartbeat │ GET    │ 27   │
│ ***                   │ /v1/alerts    │ POST   │ 17   │
│ ***                   │ /v1/heartbeat │ GET    │ 26   │
│ ***                   │ /v1/heartbeat │ GET    │ 27   │
│ ***                   │ /v1/alerts    │ POST   │ 3    │
│ ***                   │ /v1/heartbeat │ GET    │ 25   │
│ ***                   │ /v1/alerts    │ POST   │ 1    │
│ ***                   │ /v1/heartbeat │ GET    │ 27   │
│ ***                   │ /v1/heartbeat │ GET    │ 27   │
│ ***                   │ /v1/heartbeat │ GET    │ 27   │
│ ***                   │ /v1/heartbeat │ GET    │ 27   │
│ ***                   │ /v1/heartbeat │ GET    │ 27   │
│ ***                   │ /v1/alerts    │ POST   │ 26   │
│ ***                   │ /v1/heartbeat │ GET    │ 26   │
│ ***                   │ /v1/alerts    │ POST   │ 14   │
╰───────────────────────┴───────────────┴────────┴──────╯
╭──────────────────────────────────────────────────────────────────────────────╮
│ Parser Metrics                                                               │
├─────────────────────────────────────────────────┬────────┬────────┬──────────┤
│ Parsers                                         │ Hits   │ Parsed │ Unparsed │
├─────────────────────────────────────────────────┼────────┼────────┼──────────┤
│ child-child-crowdsecurity/postfix-logs          │ 9      │ -      │ 9        │
│ child-crowdsecurity/apache2-logs                │ 8.69k  │ 8.55k  │ 134      │
│ child-crowdsecurity/http-logs                   │ 25.65k │ 21.37k │ 4.28k    │
│ child-crowdsecurity/postfix-logs                │ 36     │ -      │ 36       │
│ child-crowdsecurity/sshd-logs                   │ 123    │ 25     │ 98       │
│ child-crowdsecurity/sshd-success-logs           │ 3      │ 1      │ 2        │
│ child-crowdsecurity/syslog-logs                 │ 873    │ 873    │ -        │
│ child-fulljackz/pureftpd-logs                   │ 100    │ -      │ 100      │
│ crowdsecurity/apache2-logs                      │ 8.58k  │ 8.55k  │ 29       │
│ crowdsecurity/cdn-whitelist                     │ 1      │ 1      │ -        │
│ crowdsecurity/dateparse-enrich                  │ 8.58k  │ 8.58k  │ -        │
│ crowdsecurity/geoip-enrich                      │ 8.40k  │ 8.40k  │ -        │
│ crowdsecurity/google-special-crawlers-whitelist │ 1      │ 1      │ -        │
│ crowdsecurity/http-logs                         │ 8.55k  │ 8.43k  │ 124      │
│ crowdsecurity/non-syslog                        │ 8.58k  │ 8.58k  │ -        │
│ crowdsecurity/postfix-logs                      │ 9      │ -      │ 9        │
│ crowdsecurity/public-dns-allowlist              │ 8.58k  │ 8.58k  │ -        │
│ crowdsecurity/rdns                              │ 1      │ 1      │ -        │
│ crowdsecurity/seo-bots-whitelist                │ 1      │ 1      │ -        │
│ crowdsecurity/sshd-logs                         │ 28     │ 25     │ 3        │
│ crowdsecurity/sshd-success-logs                 │ 3      │ 1      │ 2        │
│ crowdsecurity/syslog-logs                       │ 873    │ 873    │ -        │
│ crowdsecurity/whitelists                        │ 8.58k  │ 8.58k  │ -        │
│ fulljackz/pureftpd-logs                         │ 100    │ -      │ 100      │
│ vizus/customer-whitelist                        │ 8.58k  │ 8.58k  │ -        │
│ vizus/system-whitelist                          │ 8.58k  │ 8.58k  │ -        │
╰─────────────────────────────────────────────────┴────────┴────────┴──────────╯
╭─────────────────────────────────────────────────────────────────────────────────────────────────────────╮
│ Scenario Metrics                                                                                        │
├───────────────────────────────────────────┬───────────────┬───────────┬──────────────┬────────┬─────────┤
│ Scenario                                  │ Current Count │ Overflows │ Instantiated │ Poured │ Expired │
├───────────────────────────────────────────┼───────────────┼───────────┼──────────────┼────────┼─────────┤
│ LePresidente/http-generic-401-bf          │ -             │ -         │ 2            │ 2      │ 2       │
│ crowdsecurity/http-crawl-non_statics      │ 24            │ -         │ 2.11k        │ 2.13k  │ 2.09k   │
│ crowdsecurity/http-probing                │ -             │ -         │ 15           │ 19     │ 15      │
│ crowdsecurity/http-sensitive-files        │ -             │ 3         │ 9            │ 26     │ 6       │
│ crowdsecurity/ssh-time-based-bf           │ -             │ -         │ 1            │ -      │ -       │
│ crowdsecurity/ssh-time-based-bf_user-enum │ -             │ -         │ 1            │ -      │ -       │
╰───────────────────────────────────────────┴───────────────┴───────────┴──────────────┴────────┴─────────╯
╭───────────────────────────────────────────────────────────────────────────────────────────────────────────╮
│ Whitelist Metrics                                                                                         │
├─────────────────────────────────────────────────┬────────────────────────────────────┬──────┬─────────────┤
│ Whitelist                                       │ Reason                             │ Hits │ Whitelisted │
├─────────────────────────────────────────────────┼────────────────────────────────────┼──────┼─────────────┤
│ crowdsecurity/cdn-whitelist                     │ CDN provider                       │ 1    │ -           │
│ crowdsecurity/google-special-crawlers-whitelist │ Google special crawlers ip range   │ 1    │ -           │
│ crowdsecurity/public-dns-allowlist              │ public DNS server                  │ 8577 │ -           │
│ crowdsecurity/seo-bots-whitelist                │ good bots (search engine crawlers) │ 1    │ -           │
│ crowdsecurity/whitelists                        │ private ipv4/ipv6 ip/ranges        │ 8577 │ 176         │
│ vizus/customer-whitelist                        │ VIZUS customer IP                  │ 8577 │ 294         │
│ vizus/system-whitelist                          │ VIZUS system IP                    │ 8577 │ 98          │
╰─────────────────────────────────────────────────┴────────────────────────────────────┴──────┴─────────────╯

Related custom configs versions (if applicable) : notification plugins, custom scenarios, parsers etc.

Details

Metadata

Metadata

Assignees

No one assigned

    Type

    No type

    Projects

    No projects

    Milestone

    No milestone

    Relationships

    None yet

    Development

    No branches or pull requests

    Issue actions