mirror of
https://github.com/owasp-modsecurity/ModSecurity.git
synced 2025-08-14 13:56:01 +03:00
38 lines
479 B
Perl
38 lines
479 B
Perl
### Empty
|
|
{
|
|
type => "op",
|
|
name => "strmatch",
|
|
param => "TestCase",
|
|
input => "",
|
|
ret => 0,
|
|
},
|
|
### General
|
|
{
|
|
type => "op",
|
|
name => "strmatch",
|
|
param => "abc",
|
|
input => "abcdefghi",
|
|
ret => 1,
|
|
},
|
|
{
|
|
type => "op",
|
|
name => "strmatch",
|
|
param => "def",
|
|
input => "abcdefghi",
|
|
ret => 1,
|
|
},
|
|
{
|
|
type => "op",
|
|
name => "strmatch",
|
|
param => "ghi",
|
|
input => "abcdefghi",
|
|
ret => 1,
|
|
},
|
|
{
|
|
type => "op",
|
|
name => "strmatch",
|
|
param => "ghij",
|
|
input => "abcdefghi",
|
|
ret => 0,
|
|
},
|