Troubleshooting Guide
#
How to list banned IPscscli decisions list
#
How to unban an IPcscli decisions delete -i x.x.x.x
#
I want to prevent Crowdsec from banning a given IPInspired from the existing default whitelist for private IP addresses, you can craft your own (and drop it in /etc/crowdsec/parsers/s01-parse/mywhitelist.yaml
) :
name: crowdsecurity/mywhitelistsdescription: "Whitelist events from private ipv4 addresses"whitelist: reason: "private ipv4/ipv6 ip/ranges" ip: - "127.0.0.1" - "::1" cidr: - "192.168.0.0/16" - "10.0.0.0/8" - "172.16.0.0/12"
#
Where are the CrowdSec local API related configuration are stored?While you don't need to modify those file in a mono machine setup, you need to edit them when you want to install CrowdSec in a multi machine setup.
- For the CrowdSec Local API Server listen URL:
This information is stored in /etc/crowdsec/config.yaml
in the api.server.listen_uri
option.
More information here.
- For the CrowdSec Agent client API:
The URL of the local API that the CrowdSec agent should communicate with is stored in /etc/crowdsec/local_api_credentials.yaml
.
You can edit the url
option according to your local API URL.
- For the bouncers:
Each bouncer has its own configuration file, which are located in the /etc/crowdsec/bouncers/
folder.
They have all an api_url
option to set the local API URL.
#
My bouncer doesn't start/work (common causes)- Bouncer cannot connect to the local API
- error message might look like:
level=error msg="auth-api: auth with api key failed return nil response, error: dial tcp 127.0.0.1:8080: connect: connection refused"
- solution verify that the local API runs on the configured IP
- Bouncer cannot authenticate to the local API
- error message might look like:
time="19-04-2022 15:43:07" level=error msg="API error: access forbidden"
- solution regenerate an API key via cscli bouncers
#
My scenario is triggered with less logs than the scenario capacityDuring the installation, the CrowdSec Wizard is ran, which detects the basic logs files to add in the acquisition configuration.
If you re-run the wizard.sh
script after the installation and that you have common logs file, they might be set multiple times in your acquisition configuration. This means that CrowdSec will read each logs line as many time as you have the logs file configured in your acquisition configuration.
#
Scenario XXX keeps triggering, it's a false positiveTo avoid a specific scenario that is bothering you, you have several options:
- set it in simulation mode: you will see the alerts, but no decisions will be applied
- purely remove the scenario: it will be completely disabled
#
I need to whitelist a specific event patternFor example, I don't want to disable the simulation mode for a scenario nor removing it, but it trigger false positive when i access the admin panel of my website.
I can then whitelist the admin panel URLs and so keep the scenario:
name: crowdsecurity/my_whitelistdescription: "Whitelist URL starting with '/admin' "whitelist: reason: "False positive on admin panel" expression: - "evt.Parsed.request startsWith '/admin'"
#
I receive few IPs in the community-blocklistThe community-blocklist that you receive is based on your installed scenarios and if they are neither tainted nor custom.
For example, if your crowdsecurity/ssh-bf
scenario is tainted, you will not receive IPs concerning this scenario in the community-blocklist
.
#
I want to set a custom/tainted scenario in simulation modeIf you want to set a custom/tainted scenario in simulation mode, you need to provide the scenario's filename instead of its name.
For example, i have a scenario called crowdsecurity/my-custom-scenario
located in /etc/crowdsec/scenarios/my_custom_scenario.yaml
.
To enable the simulation mode for this scenario, i need to run:
sudo cscli simulation enable my_custom_scenario.yaml