<?xml version="1.0" encoding="utf-8"?>

			<rss version="2.0" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:cc="http://web.resource.org/cc/" xmlns:itunes="http://www.itunes.com/dtds/podcast-1.0.dtd">

			<channel>
			<title>Dave Ferguson&apos;s Blog - FireBug</title>
			<link>http://blog.dkferguson.com/index.cfm</link>
			<description>Things I have figured out while learning to type.</description>
			<language>en-us</language>
			<pubDate>Tue, 21 May 2013 05:39:43 -1200</pubDate>
			<lastBuildDate>Tue, 31 Mar 2009 08:29:00 -1200</lastBuildDate>
			<generator>BlogCFC</generator>
			<docs>http://blogs.law.harvard.edu/tech/rss</docs>
			<managingEditor>dave@dkferguson.com</managingEditor>
			<webMaster>dave@dkferguson.com</webMaster>
			<itunes:subtitle></itunes:subtitle>
			<itunes:summary></itunes:summary>
			<itunes:category text="Technology" />
			<itunes:category text="Technology">
				<itunes:category text="Podcasting" />
			</itunes:category>
			<itunes:category text="Technology">
				<itunes:category text="Tech News" />
			</itunes:category>
			<itunes:keywords></itunes:keywords>
			<itunes:author></itunes:author>
			<itunes:owner>
				<itunes:email>dave@dkferguson.com</itunes:email>
				<itunes:name></itunes:name>
			</itunes:owner>
			
			<itunes:explicit>no</itunes:explicit>
			
			<item>
				<title>Block Firebug on your site</title>
				<link>http://blog.dkferguson.com/index.cfm/2009/3/31/Block-Firebug-on-your-site</link>
				<description>
				
				So, you want to stop people from using Firebug when visiting your site?  Well, it is just about as easy as you think.  All you have to do is basically just see if the firebug console is active.  If so display a warning and relocate.  The one thing to remember is that you want to prevent this from running when doing cfc calls.  This is also true for any other call that does a non standard return.

&lt;code&gt;
&lt;cfsavecontent variable=&quot;firebugTxt&quot;&gt;
&lt;cfoutput&gt;&lt;script&gt;
	if( window.console &amp;&amp; window.console.firebug  ){
		alert(&quot;Sorry! This system does not support Firebug.\nClick OK to log out.&quot;);
		window.location=&apos;/login_out&apos;;
	}
&lt;/script&gt;&lt;/cfoutput&gt;
&lt;/cfsavecontent&gt;
&lt;cfhtmlhead text=&quot;#firebugTxt#&quot;&gt;

&lt;/code&gt;


till next time... 

--Dave 
				</description>
				
				<category>ColdFusion</category>
				
				<category>FireBug</category>
				
				<pubDate>Tue, 31 Mar 2009 08:29:00 -1200</pubDate>
				<guid>http://blog.dkferguson.com/index.cfm/2009/3/31/Block-Firebug-on-your-site</guid>
				
				
			</item>
			</channel></rss>