Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
W
webeos-deployment
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Iterations
Requirements
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Locked files
Build
Pipelines
Jobs
Pipeline schedules
Test cases
Artifacts
Deploy
Releases
Package Registry
Container Registry
Model registry
Operate
Environments
Terraform modules
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Code review analytics
Issue analytics
Insights
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
webservices
webeos
webeos-deployment
Merge requests
!67
ISSUE-1487: Create a crs setup configmap to customize rules scoring
Code
Review changes
Check out branch
Download
Patches
Plain diff
Merged
ISSUE-1487: Create a crs setup configmap to customize rules scoring
ISSUE-1487
into
master
Overview
4
Commits
1
Pipelines
0
Changes
3
Merged
Juan Paulo Breinlinger
requested to merge
ISSUE-1487
into
master
2 months ago
Overview
4
Commits
1
Pipelines
0
Changes
3
Expand
0
0
Merge request reports
Compare
master
version 9
baf2edd8
2 months ago
version 8
46c96de4
2 months ago
version 7
668f39cb
2 months ago
version 6
639b0b41
2 months ago
version 5
70948de9
2 months ago
version 4
fe2ac0e2
2 months ago
version 3
c7222f53
2 months ago
version 2
29995035
2 months ago
version 1
df1cb26f
2 months ago
master (base)
and
latest version
latest version
4eca5cfb
1 commit,
2 months ago
version 9
baf2edd8
1 commit,
2 months ago
version 8
46c96de4
1 commit,
2 months ago
version 7
668f39cb
1 commit,
2 months ago
version 6
639b0b41
1 commit,
2 months ago
version 5
70948de9
1 commit,
2 months ago
version 4
fe2ac0e2
1 commit,
2 months ago
version 3
c7222f53
1 commit,
2 months ago
version 2
29995035
1 commit,
2 months ago
version 1
df1cb26f
1 commit,
2 months ago
3 files
+
32
−
1
Inline
Compare changes
Side-by-side
Inline
Show whitespace changes
Show one file at a time
Files
3
Search (e.g. *.vue) (Ctrl+P)
el9/templates/crs-setup-configmap.yaml
0 → 100644
+
24
−
0
Options
kind
:
ConfigMap
apiVersion
:
v1
metadata
:
name
:
crs-setup-config-{{ .Release.Name }}
data
:
crs-setup.conf
:
|
# This configuration will lower the default
# anomaly detection scores for critical, error, warning and notice.
# So that mod_security doesn't generate so many false possitives
# in our infrastructure. Check for reference:
# https://coreruleset.org/docs/2-how-crs-works/2-1-anomaly_scoring/#severity-levels
SecAction \
"id:900990,\
phase:1,\
pass,\
t:none,\
nolog,\
tag:'OWASP_CRS',\
ver:'OWASP_CRS/4.7.0',\
setvar:tx.crs_setup_version=470,\
setvar:tx.critical_anomaly_score=2,\
setvar:tx.error_anomaly_score=1,\
setvar:tx.warning_anomaly_score=0,\
setvar:tx.notice_anomaly_score=0"
Loading