<?xml version="1.0" encoding="UTF-8"?>
<rss xmlns:content="http://purl.org/rss/1.0/modules/content/" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:taxo="http://purl.org/rss/1.0/modules/taxonomy/" version="2.0">
  <channel>
    <title>topic Re: Web Advertisement URL Filtering in General Topics</title>
    <link>https://live.paloaltonetworks.com/t5/general-topics/web-advertisement-url-filtering/m-p/183044#M56307</link>
    <description>&lt;P&gt;While I am by no means a HTML expert, I would say after the &amp;lt;/body&amp;gt; section? Hopefully someone with more HTML experience can chime in.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
    <pubDate>Fri, 20 Oct 2017 17:20:17 GMT</pubDate>
    <dc:creator>OtakarKlier</dc:creator>
    <dc:date>2017-10-20T17:20:17Z</dc:date>
    <item>
      <title>Web Advertisement URL Filtering</title>
      <link>https://live.paloaltonetworks.com/t5/general-topics/web-advertisement-url-filtering/m-p/182586#M56224</link>
      <description>&lt;P&gt;I have enabled URL filtering to block web advertisements, but it looks really bad cosmetically on the users end when they get to a web site where the advertisement should be there is big texted block page. Anyway we can eliminate the block page for web advertisements or make this look "prettier"&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Wed, 18 Oct 2017 18:33:55 GMT</pubDate>
      <guid>https://live.paloaltonetworks.com/t5/general-topics/web-advertisement-url-filtering/m-p/182586#M56224</guid>
      <dc:creator>s.williams1</dc:creator>
      <dc:date>2017-10-18T18:33:55Z</dc:date>
    </item>
    <item>
      <title>Re: Web Advertisement URL Filtering</title>
      <link>https://live.paloaltonetworks.com/t5/general-topics/web-advertisement-url-filtering/m-p/182594#M56225</link>
      <description>&lt;P&gt;You could do something like below, that simply doesn't actually load anything so that if they see anything it'll just be white space.&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;PRE&gt;&amp;lt;html&amp;gt;
&amp;lt;head&amp;gt;
&amp;lt;/head&amp;gt;
&amp;lt;/html&amp;gt;&lt;/PRE&gt;&lt;P&gt;Simply upload that as your URL FIltering and Category Match Block Page. You'll lose the page altogether, but it will accomplish what you are looking for and users won't be able to access any site or category you are blocking.&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Wed, 18 Oct 2017 18:47:13 GMT</pubDate>
      <guid>https://live.paloaltonetworks.com/t5/general-topics/web-advertisement-url-filtering/m-p/182594#M56225</guid>
      <dc:creator>BPry</dc:creator>
      <dc:date>2017-10-18T18:47:13Z</dc:date>
    </item>
    <item>
      <title>Re: Web Advertisement URL Filtering</title>
      <link>https://live.paloaltonetworks.com/t5/general-topics/web-advertisement-url-filtering/m-p/182596#M56227</link>
      <description>&lt;P&gt;But this is a global thing so even when they get to a true blocked site like netflix it will just be blank? Can't have that, so I guess I would just not block web advertisements. How does something like a barracude web filter do this? That was the old URL filter and it blocked advertisements but it wasnt a big block page, it just wasnt there or it was empty white space, but a true blocked page had the barracuda branded block page.&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Wed, 18 Oct 2017 19:01:50 GMT</pubDate>
      <guid>https://live.paloaltonetworks.com/t5/general-topics/web-advertisement-url-filtering/m-p/182596#M56227</guid>
      <dc:creator>s.williams1</dc:creator>
      <dc:date>2017-10-18T19:01:50Z</dc:date>
    </item>
    <item>
      <title>Re: Web Advertisement URL Filtering</title>
      <link>https://live.paloaltonetworks.com/t5/general-topics/web-advertisement-url-filtering/m-p/182597#M56228</link>
      <description>&lt;P&gt;&lt;a href="https://live.paloaltonetworks.com/t5/user/viewprofilepage/user-id/43480"&gt;@BPry&lt;/a&gt;&amp;nbsp;has a great idea... a blank response page would certainly make things look cleaner.&amp;nbsp; Now, combine that suggestion with a method for per-URL-category response pages:&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;A href="https://www.paloaltonetworks.com/documentation/70/pan-os/pan-os/url-filtering/url-filtering-response-pages#_62799" target="_self"&gt;https://www.paloaltonetworks.com/documentation/70/pan-os/pan-os/url-filtering/url-filtering-response-pages#_62799&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;PRE&gt;You can also add code that triggers the firewall to display different messages depending on what URL category the user is attempting to access. For example, the following code snippet from a response page specifies to display Message 1 if the URL category is games, Message 2 if the category is travel, or Message 3 if the category is kids:
var cat = "&amp;lt;category/&amp;gt;";
switch(cat)
{
case 'games':
document.getElementById("warningText").innerHTML = "Message 1";
break;
case 'travel':
document.getElementById("warningText").innerHTML = "Message 2";
break;
case 'kids':
document.getElementById("warningText").innerHTML = "Message 3";
break;
}&lt;/PRE&gt;</description>
      <pubDate>Wed, 18 Oct 2017 19:03:38 GMT</pubDate>
      <guid>https://live.paloaltonetworks.com/t5/general-topics/web-advertisement-url-filtering/m-p/182597#M56228</guid>
      <dc:creator>jvalentine</dc:creator>
      <dc:date>2017-10-18T19:03:38Z</dc:date>
    </item>
    <item>
      <title>Re: Web Advertisement URL Filtering</title>
      <link>https://live.paloaltonetworks.com/t5/general-topics/web-advertisement-url-filtering/m-p/182599#M56229</link>
      <description>&lt;P&gt;I should have just told you to ask&amp;nbsp;&lt;a href="https://live.paloaltonetworks.com/t5/user/viewprofilepage/user-id/22017"&gt;@jvalentine&lt;/a&gt;&amp;nbsp;lol! Seriously I would love to see a full copy of one of your response pages, I'm guessing it's a fair bit longer than any of mine. I even have this on my too do list from the last time you brought up how this could be done.&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Wed, 18 Oct 2017 19:06:08 GMT</pubDate>
      <guid>https://live.paloaltonetworks.com/t5/general-topics/web-advertisement-url-filtering/m-p/182599#M56229</guid>
      <dc:creator>BPry</dc:creator>
      <dc:date>2017-10-18T19:06:08Z</dc:date>
    </item>
    <item>
      <title>Re: Web Advertisement URL Filtering</title>
      <link>https://live.paloaltonetworks.com/t5/general-topics/web-advertisement-url-filtering/m-p/182602#M56230</link>
      <description>&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;A simple solution could be just to set a deny policy for that category:&lt;/P&gt;&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="2017-10-18_12-07-48.jpg" style="width: 800px;"&gt;&lt;img src="https://live.paloaltonetworks.com/t5/image/serverpage/image-id/11997iFB694620B4ADDDCD/image-size/large/is-moderation-mode/true?v=v2&amp;amp;px=999" role="button" title="2017-10-18_12-07-48.jpg" alt="2017-10-18_12-07-48.jpg" /&gt;&lt;/span&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;This will drop any traffic categorized as web-advertisements. The solution others have given is likely going to achieve the goal you want, but I figured I'd add this as well.&lt;/P&gt;</description>
      <pubDate>Wed, 18 Oct 2017 19:10:36 GMT</pubDate>
      <guid>https://live.paloaltonetworks.com/t5/general-topics/web-advertisement-url-filtering/m-p/182602#M56230</guid>
      <dc:creator>gwesson</dc:creator>
      <dc:date>2017-10-18T19:10:36Z</dc:date>
    </item>
    <item>
      <title>Re: Web Advertisement URL Filtering</title>
      <link>https://live.paloaltonetworks.com/t5/general-topics/web-advertisement-url-filtering/m-p/182606#M56233</link>
      <description>&lt;P&gt;&lt;a href="https://live.paloaltonetworks.com/t5/user/viewprofilepage/user-id/28203"&gt;@gwesson&lt;/a&gt;&amp;nbsp;&lt;a href="https://live.paloaltonetworks.com/t5/user/viewprofilepage/user-id/43480"&gt;@BPry&lt;/a&gt;&amp;nbsp;That's why I love the community forums.&amp;nbsp; Two great ideas that I wouldn't have come up with on my own.&amp;nbsp; I try and help but end up learning stuff at the same time.&amp;nbsp;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Wed, 18 Oct 2017 19:37:27 GMT</pubDate>
      <guid>https://live.paloaltonetworks.com/t5/general-topics/web-advertisement-url-filtering/m-p/182606#M56233</guid>
      <dc:creator>jvalentine</dc:creator>
      <dc:date>2017-10-18T19:37:27Z</dc:date>
    </item>
    <item>
      <title>Re: Web Advertisement URL Filtering</title>
      <link>https://live.paloaltonetworks.com/t5/general-topics/web-advertisement-url-filtering/m-p/182608#M56234</link>
      <description>&lt;P&gt;Ugh. I am not a programmer at all! So can I just export the predefined page for match category block page and somehow modify it? Where would I start entering the categories?&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;lt;html&amp;gt;&lt;BR /&gt;&amp;lt;head&amp;gt;&lt;BR /&gt;&amp;lt;title&amp;gt;Web Page Blocked&amp;lt;/title&amp;gt;&lt;BR /&gt;&amp;lt;meta http-equiv="Content-Type" content="text/html; charset=utf-8"&amp;gt;&lt;BR /&gt;&amp;lt;META HTTP-EQUIV="PRAGMA" CONTENT="NO-CACHE"&amp;gt;&lt;BR /&gt;&amp;lt;meta name="viewport" content="initial-scale=1.0"&amp;gt;&lt;BR /&gt;&amp;lt;style&amp;gt;&lt;BR /&gt;#content {&lt;BR /&gt;border:3px solid#aaa;&lt;BR /&gt;background-color:#fff;&lt;BR /&gt;margin:1.5em;&lt;BR /&gt;padding:1.5em;&lt;BR /&gt;font-family:Tahoma,Helvetica,Arial,sans-serif;&lt;BR /&gt;font-size:1em;&lt;BR /&gt;}&lt;BR /&gt;h1 {&lt;BR /&gt;font-size:1.3em;&lt;BR /&gt;font-weight:bold;&lt;BR /&gt;color:#196390;&lt;BR /&gt;}&lt;BR /&gt;b {&lt;BR /&gt;font-weight:normal;&lt;BR /&gt;color:#196390;&lt;BR /&gt;}&lt;BR /&gt;&amp;lt;/style&amp;gt;&lt;BR /&gt;&amp;lt;/head&amp;gt;&lt;BR /&gt;&amp;lt;body bgcolor="#e7e8e9"&amp;gt;&lt;BR /&gt;&amp;lt;div id="content"&amp;gt;&lt;BR /&gt;&amp;lt;h1&amp;gt;Web Page Blocked&amp;lt;/h1&amp;gt;&lt;BR /&gt;&amp;lt;p&amp;gt;Access to the web page you were trying to visit has been blocked in accordance with company policy. Please contact your system administrator if you believe this is in error.&amp;lt;/p&amp;gt;&lt;BR /&gt;&amp;lt;p&amp;gt;&amp;lt;b&amp;gt;User:&amp;lt;/b&amp;gt; &amp;lt;user/&amp;gt; &amp;lt;/p&amp;gt;&lt;BR /&gt;&amp;lt;p&amp;gt;&amp;lt;b&amp;gt;URL:&amp;lt;/b&amp;gt; &amp;lt;url/&amp;gt; &amp;lt;/p&amp;gt;&lt;BR /&gt;&amp;lt;p&amp;gt;&amp;lt;b&amp;gt;Category:&amp;lt;/b&amp;gt; &amp;lt;category/&amp;gt; &amp;lt;/p&amp;gt;&lt;BR /&gt;&amp;lt;/div&amp;gt;&lt;BR /&gt;&amp;lt;/body&amp;gt;&lt;BR /&gt;&amp;lt;/html&amp;gt;&lt;/P&gt;</description>
      <pubDate>Wed, 18 Oct 2017 20:03:12 GMT</pubDate>
      <guid>https://live.paloaltonetworks.com/t5/general-topics/web-advertisement-url-filtering/m-p/182608#M56234</guid>
      <dc:creator>s.williams1</dc:creator>
      <dc:date>2017-10-18T20:03:12Z</dc:date>
    </item>
    <item>
      <title>Re: Web Advertisement URL Filtering</title>
      <link>https://live.paloaltonetworks.com/t5/general-topics/web-advertisement-url-filtering/m-p/182875#M56278</link>
      <description>&lt;P&gt;Hello&amp;nbsp;&lt;a href="https://live.paloaltonetworks.com/t5/user/viewprofilepage/user-id/71957"&gt;@s.williams1&lt;/a&gt;,&lt;/P&gt;&lt;P&gt;A custom block page isthe way to go. In our case since we didnt want to take away from a true block page and have that info available, i.e. page was blocked bevcause of a restricted Category etc. So we created a blank continue page. While yes it does cause blank spots on some pages, it has stopped so many drive by downloads its not even funny. Maybe a custom page with your companies logo or some other gif?&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;</description>
      <pubDate>Thu, 19 Oct 2017 21:37:35 GMT</pubDate>
      <guid>https://live.paloaltonetworks.com/t5/general-topics/web-advertisement-url-filtering/m-p/182875#M56278</guid>
      <dc:creator>OtakarKlier</dc:creator>
      <dc:date>2017-10-19T21:37:35Z</dc:date>
    </item>
    <item>
      <title>Re: Web Advertisement URL Filtering</title>
      <link>https://live.paloaltonetworks.com/t5/general-topics/web-advertisement-url-filtering/m-p/182978#M56298</link>
      <description>&lt;P&gt;where within the HTML code do you insert this?&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Fri, 20 Oct 2017 12:27:12 GMT</pubDate>
      <guid>https://live.paloaltonetworks.com/t5/general-topics/web-advertisement-url-filtering/m-p/182978#M56298</guid>
      <dc:creator>s.williams1</dc:creator>
      <dc:date>2017-10-20T12:27:12Z</dc:date>
    </item>
    <item>
      <title>Re: Web Advertisement URL Filtering</title>
      <link>https://live.paloaltonetworks.com/t5/general-topics/web-advertisement-url-filtering/m-p/183044#M56307</link>
      <description>&lt;P&gt;While I am by no means a HTML expert, I would say after the &amp;lt;/body&amp;gt; section? Hopefully someone with more HTML experience can chime in.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Fri, 20 Oct 2017 17:20:17 GMT</pubDate>
      <guid>https://live.paloaltonetworks.com/t5/general-topics/web-advertisement-url-filtering/m-p/183044#M56307</guid>
      <dc:creator>OtakarKlier</dc:creator>
      <dc:date>2017-10-20T17:20:17Z</dc:date>
    </item>
  </channel>
</rss>

