Possible? Webfilter exception for specific filetype on certain website

Hi there,

is it possible to create an exception for a filetype that should be allowed on a specific website only? We have a webpolicy, that restricts filetypes based on file type category. We want to allow one of that types for a certain website.

Thanks.



Added TAGs
[edited by: Raphael Alganes at 1:03 AM (GMT -7) on 12 Mar 2024]
Parents
  • Best bet might be to create an exception.

    Web > Exceptions

    Specify by regex.  One option would be to apply to the entire domain

    ^([A-Za-z0-9.-]*\.)?example\.com\.?/

    Then skip Policy Checks.


    Another option if you are trying to tighten it future would be like


    ^([A-Za-z0-9.-]*\.)?example\.com\.?/.*\.exe


    That would apply to any path that has an .exe in it on the example.com domain.

Reply
  • Best bet might be to create an exception.

    Web > Exceptions

    Specify by regex.  One option would be to apply to the entire domain

    ^([A-Za-z0-9.-]*\.)?example\.com\.?/

    Then skip Policy Checks.


    Another option if you are trying to tighten it future would be like


    ^([A-Za-z0-9.-]*\.)?example\.com\.?/.*\.exe


    That would apply to any path that has an .exe in it on the example.com domain.

Children