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)