I need deny a portion of an url with modsecurity , example:
index.php?page_num=users
I have implemented this rule:
SecRule REQUEST_URI "/index\.php\?page_num=users" "id:10000100,phase:1,t:lowercase,deny,msg:'UsersDeny'"
It works for the URI "index.php?page_num=users" , but it also deny any characters after the users string, example:
index.php?page_num=userssadasd
How can i deny the exact URI " *index.php?page_num=users " ?