Aloha!
>>>
>>> Ivan Hernandez <ihernandez(at)cinemasoft.com.ar> wrote:
>>> how can i block anything that says GLOBALS= ?
>>>
just use as first Service something like in this example (this is for
Pound v2):
# redirect all requests for forbidden urls part I
Service
Url
"\?.*(onload|\.php.+src|delete.+from|insert.+into|select.+from|GLOBALS\=).*"
Redirect "http://google.com"
End
# redirect all requests for forbidden urls part II
Service
Url "\?.*(iframe|script|document\.cookie).*"
Redirect "http://google.com"
End
this way you can also create full-size URL filtering similar to
mod_security
HTH,
Adam
|