8000 REQUEST-901-INITIALIZATION.conf: fix typo in crs config file name by devzero2000 · Pull Request #2366 · coreruleset/coreruleset · GitHub
[go: up one dir, main page]
More Web Proxy on the site http://driver.im/
Skip to content

REQUEST-901-INITIALIZATION.conf: fix typo in crs config file name #2366

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
18 changes: 9 additions & 9 deletions rules/REQUEST-901-INITIALIZATION.conf
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@
# This file REQUEST-901-INITIALIZATION.conf initializes the Core Rules
# and performs preparatory actions. It also fixes errors and omissions
# of variable definitions in the file crs-setup.conf.
# The setup.conf can and should be edited by the user, this file
# The crs-setup.conf can and should be edited by the user, this file
# is part of the CRS installation and should not be altered.
#

Expand Down Expand Up @@ -67,11 +67,11 @@ SecRule &TX:crs_setup_version "@eq 0" \
# -=[ Default setup values ]=-
#
# Some constructs or individual rules will fail if certain parameters
# are not set in the setup.conf file. The following rules will catch
# are not set in the crs-setup.conf file. The following rules will catch
# these cases and assign sane default values.
#

# Default Inbound Anomaly Threshold Level (rule 900110 in setup.conf)
# Default Inbound Anomaly Threshold Level (rule 900110 in crs-setup.conf)
SecRule &TX:inbound_anomaly_score_threshold "@eq 0" \
"id:901100,\
phase:1,\
Expand All @@ -80,7 +80,7 @@ SecRule &TX:inbound_anomaly_score_threshold "@eq 0" \
ver:'OWASP_CRS/3.4.0-dev',\
setvar:'tx.inbound_anomaly_score_threshold=5'"

# Default Outbound Anomaly Threshold Level (rule 900110 in setup.conf)
# Default Outbound Anomaly Threshold Level (rule 900110 in crs-setup.conf)
SecRule &TX:outbound_anomaly_score_threshold "@eq 0" \
"id:901110,\
phase:1,\
Expand All @@ -89,7 +89,7 @@ SecRule &TX:outbound_anomaly_score_threshold "@eq 0" \
ver:'OWASP_CRS/3.4.0-dev',\
setvar:'tx.outbound_anomaly_score_threshold=4'"

# Default Blocking Early (rule 900120 in setup.conf)
# Default Blocking Early (rule 900120 in crs-setup.conf)
SecRule &TX:blocking_early "@eq 0" \
"id:901115,\
phase:1,\
Expand All @@ -98,7 +98,7 @@ SecRule &TX:blocking_early "@eq 0" \
ver:'OWASP_CRS/3.4.0-dev',\
setvar:'tx.blocking_early=0'"

# Default Paranoia Level (rule 900000 in setup.conf)
# Default Paranoia Level (rule 900000 in crs-setup.conf)
SecRule &TX:paranoia_level "@eq 0" \
"id:901120,\
phase:1,\
Expand All @@ -107,7 +107,7 @@ SecRule &TX:paranoia_level "@eq 0" \
ver:'OWASP_CRS/3.4.0-dev',\
setvar:'tx.paranoia_level=1'"

# Default Executing Paranoia Level (rule 900000 in setup.conf)
# Default Executing Paranoia Level (rule 900000 in crs-setup.conf)
SecRule &TX:executing_paranoia_level "@eq 0" \
"id:901125,\
phase:1,\
Expand All @@ -116,7 +116,7 @@ SecRule &TX:executing_paranoia_level "@eq 0" \
ver:'OWASP_CRS/3.4.0-dev',\
setvar:'tx.executing_paranoia_level=%{TX.PARANOIA_LEVEL}'"

# Default Sampling Percentage (rule 900400 in setup.conf)
# Default Sampling Percentage (rule 900400 in crs-setup.conf)
SecRule &TX:sampling_percentage "@eq 0" \
"id:901130,\
phase:1,\
Expand All @@ -125,7 +125,7 @@ SecRule &TX:sampling_percentage "@eq 0" \
ver:'OWASP_CRS/3.4.0-dev',\
setvar:'tx.sampling_percentage=100'"

# Default Anomaly Scores (rule 900100 in setup.conf)
# Default Anomaly Scores (rule 900100 in crs-setup.conf)
SecRule &TX:critical_anomaly_score "@eq 0" \
"id:901140,\
phase:1,\
Expand Down
0