i want to block some bad extensions like exe.bas, txt.vbs, zip.pif, etc. for this i add the following lines in squid.conf:
acl virus url_regex -i exe.bas txt.vbs zip.pif
http_access deny virus
when i put an url like
http://www.somesite.com/somefile.exe.bas it is blocked, but when i try to access the same url but with
https:// the acl dont work, anybody can help me?