Conversation
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Problem
With
APPSEC_FAILURE_ACTION=deny, a failing AppSec call (engine down, timeout, DNS failure) blocks the request — but serves the ban response with HTTP 200:In
Allow(), theappsecOk == falsepath passes thatstatus_codetoban.apply(ret_code), so during an AppSec outage clients get the ban page body with a 200 status. Monitoring that alerts on status codes sees a healthy service while every request is actually being denied.Verified against a live setup (AppSec engine stopped with
APPSEC_FAILURE_ACTION=deny+FALLBACK_REMEDIATION=ban): requests return the ban page withHTTP/1.1 200 OK, and the log shows[Crowdsec] denied '<ip>' with 'ban' (by appsec).Fix
Set
status_code = ngx.HTTP_FORBIDDENin the deny branch. A successful query overrides it on every live path (res.status == 200allows, the 403 branch assignsresponse.http_statusorngx.HTTP_FORBIDDEN), so the change only affects the failure return. Withpassthroughthe error path keepsok = trueandAllow()ignores the value, so passthrough behavior is unchanged.This also matches the existing unreadable-body drop path, which already returns
ngx.HTTP_FORBIDDENdirectly.🤖 Generated with Claude Code