mirror of
https://github.com/owasp-modsecurity/ModSecurity.git
synced 2025-09-29 11:16:33 +03:00
Add message to failed tests as well.
This commit is contained in:
@@ -1 +1,101 @@
|
||||
### Empty
|
||||
{
|
||||
type => "op",
|
||||
name => "validateUrlEncoding",
|
||||
param => "",
|
||||
input => "",
|
||||
ret => 0,
|
||||
},
|
||||
|
||||
### General
|
||||
{
|
||||
type => "op",
|
||||
name => "validateUrlEncoding",
|
||||
param => "",
|
||||
input => "Hello%20World!",
|
||||
ret => 0,
|
||||
},
|
||||
{
|
||||
type => "op",
|
||||
name => "validateUrlEncoding",
|
||||
param => "",
|
||||
input => "Hello+World!",
|
||||
ret => 0,
|
||||
},
|
||||
{
|
||||
type => "op",
|
||||
name => "validateUrlEncoding",
|
||||
param => "",
|
||||
input => "HelloWorld!",
|
||||
ret => 0,
|
||||
},
|
||||
{
|
||||
type => "op",
|
||||
name => "validateUrlEncoding",
|
||||
param => "",
|
||||
input => "%00Hello%20World!",
|
||||
ret => 0,
|
||||
},
|
||||
{
|
||||
type => "op",
|
||||
name => "validateUrlEncoding",
|
||||
param => "",
|
||||
input => "Hello%20World!%00",
|
||||
ret => 0,
|
||||
},
|
||||
{
|
||||
type => "op",
|
||||
name => "validateUrlEncoding",
|
||||
param => "",
|
||||
input => "%00",
|
||||
ret => 0,
|
||||
},
|
||||
{
|
||||
type => "op",
|
||||
name => "validateUrlEncoding",
|
||||
param => "",
|
||||
input => "%ff",
|
||||
ret => 0,
|
||||
},
|
||||
{
|
||||
type => "op",
|
||||
name => "validateUrlEncoding",
|
||||
param => "",
|
||||
input => "%0",
|
||||
ret => 1,
|
||||
},
|
||||
{
|
||||
type => "op",
|
||||
name => "validateUrlEncoding",
|
||||
param => "",
|
||||
input => "%f",
|
||||
ret => 1,
|
||||
},
|
||||
{
|
||||
type => "op",
|
||||
name => "validateUrlEncoding",
|
||||
param => "",
|
||||
input => "%",
|
||||
ret => 1,
|
||||
},
|
||||
{
|
||||
type => "op",
|
||||
name => "validateUrlEncoding",
|
||||
param => "",
|
||||
input => "%0z",
|
||||
ret => 1,
|
||||
},
|
||||
{
|
||||
type => "op",
|
||||
name => "validateUrlEncoding",
|
||||
param => "",
|
||||
input => "%z0",
|
||||
ret => 1,
|
||||
},
|
||||
{
|
||||
type => "op",
|
||||
name => "validateUrlEncoding",
|
||||
param => "",
|
||||
input => "%0%",
|
||||
ret => 1,
|
||||
},
|
||||
|
Reference in New Issue
Block a user