In message <[email protected]>, Ales
sandro Ronchi writes:

>is it possible to filter with vernish some known hack attempts, link
>/cltreq.asp?UL=1&ACT=4&BUILD=6254&STRMVER=4&CAPREQ=0
>/_vti_bin/owssvr.dll/

Yes, Kristian did something "mod_security" like I think.

It's pretty easy to blast individual bad things out of the way;
        
        sub vcl_recv {
                if (req.url ~ "_vti_bin/owssvr.dll") { error 503; }
        }

-- 
Poul-Henning Kamp       | UNIX since Zilog Zeus 3.20
[email protected]         | TCP/IP since RFC 956
FreeBSD committer       | BSD since 4.3-tahoe    
Never attribute to malice what can adequately be explained by incompetence.

_______________________________________________
varnish-misc mailing list
[email protected]
http://lists.varnish-cache.org/mailman/listinfo/varnish-misc

Reply via email to