-
Notifications
You must be signed in to change notification settings - Fork 77
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Configure rules to update in a separate configuration file - Use generic script to configure rules that doesn't rely on exact match of rule - Log which rules are configured - Log when a rule that should be configured wasn't found
- Loading branch information
Showing
10 changed files
with
217 additions
and
156 deletions.
There are no files selected for viewing
This file contains 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
This file contains 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
This file contains 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
This file contains 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
This file contains 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
This file contains 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
This file contains 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
This file was deleted.
Oops, something went wrong.
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,28 @@ | ||
# Format: <legacy (0|1)>|<env var>|<rule ID>|<tx var name> | ||
# The octothorpe (#) designates a comment, comments are ignored | ||
|
||
# Superceded by BLOCKING_PARANOIA | ||
true|PARANOIA|900000|blocking_paranoia_level | ||
true|PARANOIA|900001|detection_paranoia_level | ||
false|BLOCKING_PARANOIA|900000|blocking_paranoia_level | ||
# Superceded by DETECTION_PARANOIA | ||
true|EXECUTING_PARANOIA|900001|executing_paranoia_level | ||
false|DETECTION_PARANOIA|900001|detection_paranoia_level | ||
false|ENFORCE_BODYPROC_URLENCODED|900010|enforce_bodyproc_urlencoded | ||
false|INBOUND_ANOMALY|900110|inbound_anomaly_score_threshold | ||
false|OUTBOUND_ANOMALY|900110|outbound_anomaly_score_threshold | ||
false|ALLOWED_METHODS|900200|allowed_methods | ||
false|ALLOWED_REQUEST_CONTENT_TYPE|900220|allowed_request_content_type | ||
false|ALLOWED_REQUEST_CONTENT_TYPE_CHARSET|900280|allowed_request_content_type_charset | ||
false|ALLOWED_HTTP_VERSIONS|900230|allowed_http_versions | ||
false|RESTRICTED_EXTENSIONS|900240|restricted_extensions | ||
false|RESTRICTED_HEADERS_BASIC|900250|restricted_headers_basic | ||
false|RESTRICTED_HEADERS_EXTENDED|900255|restricted_headers_extended | ||
false|MAX_NUM_ARGS|900300|max_num_args | ||
false|ARG_NAME_LENGTH|900310|arg_name_length | ||
false|ARG_LENGTH|900230|arg_length | ||
false|TOTAL_ARG_LENGTH|900330|total_arg_length | ||
false|MAX_FILE_SIZE|900340|max_file_size | ||
false|COMBINED_FILE_SIZES|900350|combined_file_sizes | ||
false|VALIDATE_UTF8_ENCODING|900950|crs_validate_utf8_encoding | ||
false|REPORTING_LEVEL|900115|reporting_level |
Oops, something went wrong.