Hi @Philipp37303217_twitter,
wizard.sh -c
will not detect all the services, only the common ones. So depend what services do you need to monitor.
From which network the attacks are performed ? If it's from private network, may be you are not detecting attacks because of default whitelist that is installed.
You can confirm this showing the parsers sudo cscli parsers list
````
become_user: root
become_method: sudo
become_flags: '-i'
tasks:
- name: check if Crowdsec CLI cscli exist
stat:
path: /usr/bin/cscli
register: stat_result
- name: Update Crowdsec hub
command: "cscli hub update"
when: stat_result.stat.exists
- name: Upgrade Crowdsec hub
command: "cscli hub upgrade"
when: stat_result.stat.exists