owasp-crs-response
action only enables rule processing on outgoing HTTP responses from your
endpoint. In addition to this action, we also recommend you enable the OWASP CRS Request
action to analyze incoming HTTP requests to your endpoint.
Video walkthrough
The video below walks you through ngrok’s OWASP CRS request and response actions in Traffic Policy, which let you add web application firewall protection directly to your ngrok endpoints without changing your existing infrastructure.Configuration Reference
This is the Traffic Policy configuration reference for this action.Supported Phases
on_http_response
Type
owasp-crs-response
Configuration Fields
Behavior if there is an error. Must be one of either “continue” or “halt” (default “halt”)
More information can be found in the Managing Fallback Behavior section.
If false, we do not process rules for the response body. Default is false.
List of OWASP CRS rule IDs to exclude from evaluation.
The minimum value is 900000
and the maximum value is 999999
.
Behavior
This action evaluates rules for response headers and body (whenprocess_body
is enabled), and each matching rule adds to the overall score of a response. If the score exceeds the set score threshold, the action will block the response.
The tallying process is called Anomaly Scoring, and is detailed on the CRS website.
Default Behavior
The default behavior for this action is based on the following Coraza directives and rules from v4.14.0 of the CRS: Included in these rules is an outbound anomaly score threshold of 4 and a paranoia level of 1.Managing Fallback Behavior (on_error
)
If on_error
is set to halt
(default) and the action encounters an error when forwarding traffic, the Traffic Policy chain will halt and no further actions will be executed. For example, if you have a log
action after the owasp-crs-response
action, the log
action will not be run and the error will be returned.
However, if on_error
is set to continue
, actions that appear after the owasp-crs-response
action will still be executed even if the owasp-crs-response
action encounters an error.
Body Processing
Whenprocess_body
is enabled, ngrok evaluates rules against the first 4kb of the body. If the body is larger than 4kb, we ignore the portion after the first 4kb.
Rule Exclusion
Whenexclude_rule_ids
is configured, ngrok skips evaluation of the specified rule IDs. This allows you to disable specific OWASP CRS rules that may be causing false positives in your environment.
Outbound Anomaly Score Threshold Exceeded
If the anomaly score accumulated from matching rules exceeds the threshold, ngrok blocks the request with aHTTP 403
response. The response from your upstream does not make it to the client.
Failure to process the body successfully
If ngrok is unable to read the response body successfully, ngrok blocks the response with aHTTP 500
response. The response from your upstream does not make it to the client.
Examples
Running in block mode
The following configuration demonstrates how to run theowasp-crs-response
action in block mode.
Example Traffic Policy Document
Running in test mode
The following configuration demonstrates how to run theowasp-crs-response
action in test mode where rules are evaluated but blocks are not enforced.
Example Traffic Policy Document
Example response from your upstream that ngrok would block
Atext/plain
response like the following will result in ngrok blocking the response due to potential security leaks i.e. SQL Injection vulnerabilities.
Action Result Variables
The following variables are made available for use in subsequent expressions and CEL interpolations after the action has run. Variable values will only apply to the last action execution, results are not concatenated.The action taken for this response.
The total anomaly score for the response. If it equals to or exceeds the set threshold, it will block the response.
The total anomaly score threshold for the response. By default, it is set to 4.
The list of all rules matched by this response that have a non-zero score.
A machine-readable code describing an error that occurred during the action’s execution.
A human-readable message providing details about an error that occurred during the action’s execution.