This discussion has been locked.
You can no longer post new replies to this discussion. If you have a question you can start a new discussion

whitelisting specific youtube videos

Hi all,

Our students are on a white list.  Transparent HTTP proxy, version 8.301.  Their filter action is set to block by default.  In the past, I was able to whitelist specific youtube.com URL's, so the students could reach those videos but not all the rest.  Our student wireless network is supposed to strictly be for school work, so I can't just whitelist the whole domain.

For some reason, those video-specific URL's aren't working anymore.  Here is the log:

2012:04:10-13:55:19 galileo-1 httpproxy[8585]: id="0002" severity="info" sys="SecureWeb" sub="http" name="web request blocked" action="block" method="GET" srcip="10.210.100.235" dstip="" user="" statuscode="403" cached="0" profile="REF_jzNuvxpwQr (Student Wireless)" filteraction="REF_eOAvjbDEui (Student Wireless Filter Action)" size="6539" request="0xc0b0be60" url="www.youtube.com/watch


Youtube isn't specifically blacklisted anywhere else and we do some Application Control, but not for this particular vlan.  The entry in the whitelist for this test is youtube.com/watch?v=hivVTVw7UM8.  

Thoughts?  Many thanks.


This thread was automatically locked due to age.
Parents

  • The entry in the whitelist for this test is youtube.com/watch?v=hivVTVw7UM8.  


    I would guess the '?' in the whitelist box would be treated as a special regex operator, indicating it doesn't matter if the 'h' that precedes it is present or not. Try escaping it ith a '\'. Also, you might want to format with a "start of line" character (^) at the beginning of it, so that it doesn't match anything containing that URL, like "/search=?youtube.com/watch?v=hivVTVw7UM8.

    Try "^https?://(*\.)?youtube.com/watch\?v=hivVTVw7UM8*"

    "^https?://(*\.)?" would be good to put in front of all your whitelisted URLs for that reason, imo.


    There's a good regex primer here: Regular Expressions Reference - Basic Syntax
    Hope that helps,
    Adam
  • I would guess the '?' in the whitelist box would be treated as a special regex operator, indicating it doesn't matter if the 'h' that precedes it is present or not. Try escaping it ith a '\'. Also, you might want to format with a "start of line" character (^) at the beginning of it, so that it doesn't match anything containing that URL, like "/search=?youtube.com/watch?v=hivVTVw7UM8.

    Try "^https?://(*\.)?youtube.com/watch\?v=hivVTVw7UM8*"

    "^https?://(*\.)?" would be good to put in front of all your whitelisted URLs for that reason, imo.


    There's a good regex primer here: Regular Expressions Reference - Basic Syntax
    Hope that helps,
    Adam


    Ok, I will look all that over.  Thanks for the assistance.  I guess I've been a bit lax with this.
Reply
  • I would guess the '?' in the whitelist box would be treated as a special regex operator, indicating it doesn't matter if the 'h' that precedes it is present or not. Try escaping it ith a '\'. Also, you might want to format with a "start of line" character (^) at the beginning of it, so that it doesn't match anything containing that URL, like "/search=?youtube.com/watch?v=hivVTVw7UM8.

    Try "^https?://(*\.)?youtube.com/watch\?v=hivVTVw7UM8*"

    "^https?://(*\.)?" would be good to put in front of all your whitelisted URLs for that reason, imo.


    There's a good regex primer here: Regular Expressions Reference - Basic Syntax
    Hope that helps,
    Adam


    Ok, I will look all that over.  Thanks for the assistance.  I guess I've been a bit lax with this.
Children
No Data