<?xml version="1.0" encoding="UTF-8"?><rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
		>
<channel>
	<title>Comments on: Bogus Firefox XMLHttpRequest Security Bug Report?</title>
	<atom:link href="http://pathfindersoftware.com/2006/07/bogus_firefox_x/feed/" rel="self" type="application/rss+xml" />
	<link>http://pathfindersoftware.com/2006/07/bogus_firefox_x/</link>
	<description>The Fastest Way to Launch Successful Software</description>
	<lastBuildDate>Thu, 19 Jan 2012 16:36:03 +0000</lastBuildDate>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.3.1</generator>
	<item>
		<title>By: Jering</title>
		<link>http://pathfindersoftware.com/2006/07/bogus_firefox_x/#comment-5423</link>
		<dc:creator>Jering</dc:creator>
		<pubDate>Tue, 20 Feb 2007 12:22:19 +0000</pubDate>
		<guid isPermaLink="false">http://www.pathf.com/blogs/?p=527#comment-5423</guid>
		<description>&lt;p&gt;I find the opposite to be a bug. I don&#039;t get the contents of a .url file using XMLHttpRequest. Instead FireFox follows the URL in the url file and returns the contents of that file. I need to inspect the contents of the .url file, as it contains valuable information not contained inside the destination file. IE works correctly. This bug needs to be fixed in Firefox. &lt;/p&gt;</description>
		<content:encoded><![CDATA[<p>I find the opposite to be a bug. I don&#8217;t get the contents of a .url file using XMLHttpRequest. Instead FireFox follows the URL in the url file and returns the contents of that file. I need to inspect the contents of the .url file, as it contains valuable information not contained inside the destination file. IE works correctly. This bug needs to be fixed in Firefox. </p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Vineet Reynolds</title>
		<link>http://pathfindersoftware.com/2006/07/bogus_firefox_x/#comment-5422</link>
		<dc:creator>Vineet Reynolds</dc:creator>
		<pubDate>Wed, 05 Jul 2006 18:51:02 +0000</pubDate>
		<guid isPermaLink="false">http://www.pathf.com/blogs/?p=527#comment-5422</guid>
		<description>&lt;p&gt;Well that&#039;s true. Even I discovered this about a month ago. However, nothing malicious is possible in FF. You can only read files [those allowed by the OS that is] at worst, but you cannot write or append them.&lt;br /&gt;
The FileSystem Object under IE is a different story altogether. I came across this while fixing a company web app and made a mental note to avoid FSO altogether.&lt;/p&gt;

&lt;p&gt;The place where I started off:&lt;a href=&quot;http://www.codeproject.com/jscript/brwswhta.asp&quot; rel=&quot;nofollow&quot;&gt;http://www.codeproject.com/jscript/brwswhta.asp&lt;/a&gt;&lt;/p&gt;</description>
		<content:encoded><![CDATA[<p>Well that&#8217;s true. Even I discovered this about a month ago. However, nothing malicious is possible in FF. You can only read files [those allowed by the OS that is] at worst, but you cannot write or append them.<br />
The FileSystem Object under IE is a different story altogether. I came across this while fixing a company web app and made a mental note to avoid FSO altogether.</p>
<p>The place where I started off:<a href="http://www.codeproject.com/jscript/brwswhta.asp" rel="nofollow">http://www.codeproject.com/jscript/brwswhta.asp</a></p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Jeromy</title>
		<link>http://pathfindersoftware.com/2006/07/bogus_firefox_x/#comment-5421</link>
		<dc:creator>Jeromy</dc:creator>
		<pubDate>Wed, 05 Jul 2006 01:13:54 +0000</pubDate>
		<guid isPermaLink="false">http://www.pathf.com/blogs/?p=527#comment-5421</guid>
		<description>&lt;p&gt;&quot;This is not a bug, it simply belongs to the uninformed programmer category.&quot;&lt;/p&gt;

&lt;p&gt;And the uninformed rest-of-the world who runs local html files _every_ day. I really don&#039;t understand this mentality that opening a HTML file and granting it access to your entire hard drive without anyone knowing it is OK. I&#039;ve been opening html files for almost a decade and have never been concerned that it might upload sensitive data. I&#039;m curious that programmers think this a good idea but don&#039;t think it&#039;s a good idea to make the public aware of the risks. IE breaks scripts on locally ran files btw.&lt;/p&gt;</description>
		<content:encoded><![CDATA[<p>&#8220;This is not a bug, it simply belongs to the uninformed programmer category.&#8221;</p>
<p>And the uninformed rest-of-the world who runs local html files _every_ day. I really don&#8217;t understand this mentality that opening a HTML file and granting it access to your entire hard drive without anyone knowing it is OK. I&#8217;ve been opening html files for almost a decade and have never been concerned that it might upload sensitive data. I&#8217;m curious that programmers think this a good idea but don&#8217;t think it&#8217;s a good idea to make the public aware of the risks. IE breaks scripts on locally ran files btw.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Vineet Reynolds</title>
		<link>http://pathfindersoftware.com/2006/07/bogus_firefox_x/#comment-5420</link>
		<dc:creator>Vineet Reynolds</dc:creator>
		<pubDate>Sun, 02 Jul 2006 17:23:06 +0000</pubDate>
		<guid isPermaLink="false">http://www.pathf.com/blogs/?p=527#comment-5420</guid>
		<description>&lt;p&gt;Yea, it&#039;s correct behavior. Nothing buggy.&lt;br /&gt;
Even IE 6 will do the same thing.&lt;/p&gt;

&lt;p&gt;This is a security flaw only on the machine where the html file + script has access to the filesystem of the PC.&lt;/p&gt;

&lt;p&gt;Natively, any OS+browser will disallow any remote script to access the client&#039;s filesystem. The only way to access the filesystem via a remote server is to use the File Scripting Objects of IE.&lt;br /&gt;
The coder at Zlap, has overcome that by asking the user to download the html file + script down to the user&#039;s machine.&lt;br /&gt;
When downloaded onto the machine, the file no longer belongs to the internet zone, but instead belongs to the &quot;My Computer&quot; zone [of IE] or it&#039;s equivalent in FF. Far more privileges can be obtained in such a zone.&lt;br /&gt;
This is not a bug, it simply belongs to the uninformed programmer category.&lt;/p&gt;</description>
		<content:encoded><![CDATA[<p>Yea, it&#8217;s correct behavior. Nothing buggy.<br />
Even IE 6 will do the same thing.</p>
<p>This is a security flaw only on the machine where the html file + script has access to the filesystem of the PC.</p>
<p>Natively, any OS+browser will disallow any remote script to access the client&#8217;s filesystem. The only way to access the filesystem via a remote server is to use the File Scripting Objects of IE.<br />
The coder at Zlap, has overcome that by asking the user to download the html file + script down to the user&#8217;s machine.<br />
When downloaded onto the machine, the file no longer belongs to the internet zone, but instead belongs to the &#8220;My Computer&#8221; zone [of IE] or it&#8217;s equivalent in FF. Far more privileges can be obtained in such a zone.<br />
This is not a bug, it simply belongs to the uninformed programmer category.</p>
]]></content:encoded>
	</item>
</channel>
</rss>

<!-- Performance optimized by W3 Total Cache. Learn more: http://www.w3-edge.com/wordpress-plugins/

Minified using disk: basic (User agent is rejected)
Page Caching using memcached (User agent is rejected)

Served from: pathfindersoftware.com @ 2012-02-09 22:48:25 -->
