mirror of
https://github.com/owasp-modsecurity/ModSecurity.git
synced 2025-08-14 13:56:01 +03:00
94 lines
1.0 KiB
Perl
94 lines
1.0 KiB
Perl
### Empty
|
|
{
|
|
type => "op",
|
|
name => "lt",
|
|
param => "0",
|
|
input => "",
|
|
ret => 0,
|
|
},
|
|
{
|
|
type => "op",
|
|
name => "lt",
|
|
param => "5",
|
|
input => "",
|
|
ret => 1,
|
|
},
|
|
|
|
### Invalid
|
|
# xxx interpreted as 0
|
|
{
|
|
type => "op",
|
|
name => "lt",
|
|
param => "xxx",
|
|
input => "5",
|
|
ret => 0,
|
|
},
|
|
# xxx interpreted as 0
|
|
{
|
|
type => "op",
|
|
name => "lt",
|
|
param => "xxx",
|
|
input => "-1",
|
|
ret => 1,
|
|
},
|
|
# xxx interpreted as 0
|
|
{
|
|
type => "op",
|
|
name => "lt",
|
|
param => "-1",
|
|
input => "xxx",
|
|
ret => 0,
|
|
},
|
|
# xxx interpreted as 0
|
|
{
|
|
type => "op",
|
|
name => "lt",
|
|
param => "5",
|
|
input => "xxx",
|
|
ret => 1,
|
|
},
|
|
|
|
### General
|
|
{
|
|
type => "op",
|
|
name => "lt",
|
|
param => "0",
|
|
input => "-5",
|
|
ret => 1,
|
|
},
|
|
{
|
|
type => "op",
|
|
name => "lt",
|
|
param => "0",
|
|
input => "0",
|
|
ret => 0,
|
|
},
|
|
{
|
|
type => "op",
|
|
name => "lt",
|
|
param => "0",
|
|
input => "5",
|
|
ret => 0,
|
|
},
|
|
{
|
|
type => "op",
|
|
name => "lt",
|
|
param => "5",
|
|
input => "0",
|
|
ret => 1,
|
|
},
|
|
{
|
|
type => "op",
|
|
name => "lt",
|
|
param => "5",
|
|
input => "5",
|
|
ret => 0,
|
|
},
|
|
{
|
|
type => "op",
|
|
name => "lt",
|
|
param => "5",
|
|
input => "10",
|
|
ret => 0,
|
|
},
|