mirror of
https://github.com/owasp-modsecurity/ModSecurity.git
synced 2025-08-13 13:26:01 +03:00
14 lines
225 B
Lua
14 lines
225 B
Lua
function main()
|
|
local d = m.getvars("ARGS");
|
|
local size = #d;
|
|
m.log(9,"ARGS count read =" .. tostring(size));
|
|
|
|
ret = nil
|
|
|
|
if ( #d == 2 ) then
|
|
return nil
|
|
end
|
|
|
|
return "Unexpected result"
|
|
end
|