Wire crowdsecurity/asterisk into crowdsec.sh for asterisk-do

Vendor's logger.conf only sent Asterisk's security-level log lines
(auth failures, SIP registration scanning) to the console, i.e.
Docker's stdout — not a file CrowdSec could tail. asterisk-do.sh now
patches its copy of entrypoint.sh (vendor/ untouched) to also write
those events to /var/log/asterisk/full, which is bind-mounted to
~/docker/asterisk-do/logs/full on the host.

crowdsec.sh now detects that directory and, if present, installs the
crowdsecurity/asterisk collection (asterisk_bf + asterisk_user_enum
scenarios) with a matching log acquisition — mirroring the existing
Caddy detection pattern. Order-independent: asterisk-do's install
summary tells the user to rerun crowdsec if it's already installed,
since detection only runs during crowdsec's own install step.
This commit is contained in:
Claude
2026-07-19 03:20:36 +00:00
parent 4f5f264a96
commit dfc298f6ab
2 changed files with 56 additions and 1 deletions
+22
View File
@@ -275,6 +275,20 @@ install_asterisk-do() {
chmod 755 ./easy-asterisk.sh ./easy-asterisk-v0.10.0.sh \
./docker/entrypoint.sh ./docker/coturn-entrypoint.sh
# ── Persist security-level logging to a file ──────────────────────────────
# Vendor's logger.conf only sends the "security" level (auth failures, SIP
# brute-force attempts) to the console — that's Docker's stdout, not a file
# CrowdSec/fail2ban can tail. Patch our copy of entrypoint.sh (not the
# shared vendor/ source) so it also writes those events to
# /var/log/asterisk/full, which is bind-mounted to $EA_DIR/logs/full — a
# host path services/crowdsec.sh can point its Asterisk acquisition at.
if grep -q '^console => notice,warning,error,security$' ./docker/entrypoint.sh; then
sed -i '/^console => notice,warning,error,security$/a full => notice,warning,error,security' \
./docker/entrypoint.sh
else
log_warning "entrypoint.sh logger.conf template changed upstream — security events won't be logged to a file. Update the sed patch in this installer."
fi
# ── DigitalOcean droplet detection ────────────────────────────────────────
# A droplet's own public IP/ID are readable, unauthenticated, from the
# link-local metadata service — no API token needed for this part.
@@ -658,6 +672,14 @@ MD
echo " Manage: docker compose -f $EA_DIR/docker-compose.yml <up|down|logs>"
echo " Script: docker exec -it easy-asterisk-do easy-asterisk --help"
echo ""
if command -v cscli &>/dev/null; then
log_info "CrowdSec is already installed — rerun it to add SIP brute-force protection for this install:"
log_info " sudo ./setup.sh crowdsec"
else
log_info "Install CrowdSec (services/crowdsec.sh) for SIP brute-force/enumeration protection —"
log_info " it auto-detects this install and wires up the crowdsecurity/asterisk collection."
fi
echo ""
}
# Run immediately when executed directly (deferred until after function definition)
+34 -1
View File
@@ -102,6 +102,7 @@ install_crowdsec() {
echo "[DRY-RUN] Would ensure /var/log/caddy exists for log acquisition"
echo "[DRY-RUN] Would install collections: sshd, linux, caddy, base-http-scenarios"
echo "[DRY-RUN] Would write Caddy acquisition /etc/crowdsec/acquis.d/caddy.yaml"
echo "[DRY-RUN] Would install crowdsecurity/asterisk + write an acquisition if asterisk-do is installed"
echo "[DRY-RUN] Would optionally wire ntfy ban alerts into the default profile"
echo "[DRY-RUN] Would enable + restart crowdsec and crowdsec-firewall-bouncer"
echo "[DRY-RUN] Would write $DOCS_DIR/README.md (docs-only folder)"
@@ -157,6 +158,34 @@ labels:
echo " ✓ Caddy acquisition already exists"
fi
# ── 5b. SIP brute-force/enumeration protection, if asterisk-do is installed
# (services/asterisk-do.sh patches Asterisk to log security events — auth
# failures, registration scanning — to $EA_DIR/logs/full. The plain LAN
# asterisk.sh doesn't emit that file yet, so it's intentionally not
# detected here.)
local ASTERISK_LOG_DIR="$DOCKER_DIR/asterisk-do/logs"
if [ -d "$ASTERISK_LOG_DIR" ]; then
echo " Detected asterisk-do — installing SIP brute-force/enumeration protection..."
sudo cscli collections install crowdsecurity/asterisk 2>/dev/null || \
echo " ⚠ crowdsecurity/asterisk collection may already be installed"
local ASTERISK_ACQUIS="/etc/crowdsec/acquis.d/asterisk-do.yaml"
if [ ! -f "$ASTERISK_ACQUIS" ]; then
local ASTERISK_ACQUIS_CONTENT="filenames:
- $ASTERISK_LOG_DIR/full
- $ASTERISK_LOG_DIR/full.*
labels:
type: asterisk"
if echo "$ASTERISK_ACQUIS_CONTENT" | sudo tee "$ASTERISK_ACQUIS" > /dev/null; then
echo " ✓ Created Asterisk acquisition ($ASTERISK_ACQUIS)"
else
echo " ⚠ Failed to create Asterisk acquisition - create it manually"
fi
else
echo " ✓ Asterisk acquisition already exists"
fi
fi
# ── 6. Geo-blocking + reputation (the capability fail2ban/Authelia lack) ─
echo ""
echo " Geo-blocking & IP reputation (optional):"
@@ -233,7 +262,8 @@ install. The real configuration lives under `/etc/crowdsec`.
## What it does
- Detects malicious behaviour (SSH brute force, web scans, etc.) by parsing logs.
- Detects malicious behaviour (SSH brute force, web scans, SIP brute
force/enumeration if `asterisk-do` is installed) by parsing logs.
- Bans offending IPs via the **firewall bouncer** (iptables/nftables).
- Pulls **community IP reputation** blocklists so known-bad IPs are blocked
before they ever touch your services.
@@ -255,6 +285,9 @@ sudo cscli collections list # installed detection collections
- Log acquisition (what to watch): `/etc/crowdsec/acquis.d/`
- Caddy access logs: `/etc/crowdsec/acquis.d/caddy.yaml`
(`/var/log/caddy/*.log` — Caddy writes JSON access logs there)
- Asterisk SIP auth events (if `asterisk-do` is installed):
`/etc/crowdsec/acquis.d/asterisk-do.yaml`
(`~/docker/asterisk-do/logs/full` — auth failures, registration scans)
- Notifications: `/etc/crowdsec/notifications/`
- ntfy ban alerts (if enabled): `/etc/crowdsec/notifications/ntfy.yaml`,
wired into `/etc/crowdsec/profiles.yaml`