mirror of
https://github.com/owasp-modsecurity/ModSecurity.git
synced 2025-09-29 11:16:33 +03:00
Adds support for ctl:ruleRemoveByTag action
This commit is contained in:
@@ -4,7 +4,7 @@
|
||||
"version_min":300000,
|
||||
"title":"Testing CtlRuleRemoteById (1)",
|
||||
"expected":{
|
||||
"debug_log": "Rule id: 1 was skipped due to an ruleRemoveById action..."
|
||||
"debug_log": "Rule id: 1 was skipped due to a ruleRemoveById action..."
|
||||
},
|
||||
"client":{
|
||||
"ip":"200.249.12.31",
|
||||
|
@@ -0,0 +1,84 @@
|
||||
[
|
||||
{
|
||||
"enabled":1,
|
||||
"version_min":300000,
|
||||
"title":"Testing ctl:ruleRemoveByTag (1/2)",
|
||||
"client":{
|
||||
"ip":"200.249.12.31",
|
||||
"port":123
|
||||
},
|
||||
"server":{
|
||||
"ip":"200.249.12.31",
|
||||
"port":80
|
||||
},
|
||||
"request":{
|
||||
"headers":{
|
||||
"Host":"localhost",
|
||||
"User-Agent":"curl/7.38.0",
|
||||
"Accept":"*/*"
|
||||
},
|
||||
"uri":"/?key=value&key=other_value",
|
||||
"method":"GET"
|
||||
},
|
||||
"response":{
|
||||
"headers":{
|
||||
"Date":"Mon, 13 Jul 2015 20:02:41 GMT",
|
||||
"Last-Modified":"Sun, 26 Oct 2014 22:33:37 GMT",
|
||||
"Content-Type":"text/html"
|
||||
},
|
||||
"body":[
|
||||
"no need."
|
||||
]
|
||||
},
|
||||
"expected":{
|
||||
"debug_log":"Skipped rule id '2'. Skipped due to a ruleRemoveByTag action."
|
||||
},
|
||||
"rules":[
|
||||
"SecRule ARGS:key \".\" \"id:4,ctl:ruleRemoveByTag=tag123",
|
||||
"SecRule ARGS \"@contains test1\" \"id:1,pass,t:trim\"",
|
||||
"SecRule ARGS \"@contains test2\" \"id:2,pass,t:trim,tag:tag123\"",
|
||||
"SecRule ARGS \"@contains test3\" \"id:3,pass,t:trim\""
|
||||
]
|
||||
},
|
||||
{
|
||||
"enabled":1,
|
||||
"version_min":300000,
|
||||
"title":"Testing ctl:ruleRemoveByTag (2/2)",
|
||||
"client":{
|
||||
"ip":"200.249.12.31",
|
||||
"port":123
|
||||
},
|
||||
"server":{
|
||||
"ip":"200.249.12.31",
|
||||
"port":80
|
||||
},
|
||||
"request":{
|
||||
"headers":{
|
||||
"Host":"localhost",
|
||||
"User-Agent":"curl/7.38.0",
|
||||
"Accept":"*/*"
|
||||
},
|
||||
"uri":"/?key=value&key=other_value",
|
||||
"method":"GET"
|
||||
},
|
||||
"response":{
|
||||
"headers":{
|
||||
"Date":"Mon, 13 Jul 2015 20:02:41 GMT",
|
||||
"Last-Modified":"Sun, 26 Oct 2014 22:33:37 GMT",
|
||||
"Content-Type":"text/html"
|
||||
},
|
||||
"body":[
|
||||
"no need."
|
||||
]
|
||||
},
|
||||
"expected":{
|
||||
"debug_log":"Skipped rule id '3'. Skipped due to a ruleRemoveByTag action."
|
||||
},
|
||||
"rules":[
|
||||
"SecRule ARGS:key \".\" \"id:4,ctl:ruleRemoveByTag=whee\"",
|
||||
"SecRule ARGS \"@contains test\" \"id:1,pass,t:trim\"",
|
||||
"SecRule ARGS \"@contains test\" \"id:2,pass,t:trim\"",
|
||||
"SecRule ARGS \"@contains test\" \"id:3,pass,t:trim,tag:whee\""
|
||||
]
|
||||
}
|
||||
]
|
Reference in New Issue
Block a user