<?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: My impressions of Google Desktop Search</title>
	<atom:link href="http://www.squarefree.com/2004/10/22/my-impressions-of-google-desktop-search/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.squarefree.com/2004/10/22/my-impressions-of-google-desktop-search/</link>
	<description>Jesse Ruderman on Firefox, security, and more</description>
	<lastBuildDate>Fri, 09 Sep 2011 05:56:55 +0000</lastBuildDate>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.3.1</generator>
	<item>
		<title>By: Jez</title>
		<link>http://www.squarefree.com/2004/10/22/my-impressions-of-google-desktop-search/comment-page-1/#comment-931</link>
		<dc:creator>Jez</dc:creator>
		<pubDate>Wed, 30 Nov -0001 00:00:00 +0000</pubDate>
		<guid isPermaLink="false">http://www.squarefree.com/test/wp15/wordpress/?p=189#comment-931</guid>
		<description>Can you expand on this a little:

Any web page can detect whether you have Google Desktop Search running by loading an image (or perhaps any URL) from &lt;a href=&quot;http://127.0.0.1:4664/.&quot;&gt;http://127.0.0.1:4664/.&lt;/a&gt;

?

Cheers.</description>
		<content:encoded><![CDATA[<p>Can you expand on this a little:</p>
<p>Any web page can detect whether you have Google Desktop Search running by loading an image (or perhaps any URL) from <a href="http://127.0.0.1:4664/.">http://127.0.0.1:4664/.</a></p>
<p>?</p>
<p>Cheers.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Michael</title>
		<link>http://www.squarefree.com/2004/10/22/my-impressions-of-google-desktop-search/comment-page-1/#comment-932</link>
		<dc:creator>Michael</dc:creator>
		<pubDate>Wed, 30 Nov -0001 00:00:00 +0000</pubDate>
		<guid isPermaLink="false">http://www.squarefree.com/test/wp15/wordpress/?p=189#comment-932</guid>
		<description>I find the Desktop Search is not as useful because of the inability to add new file types to index such as cfm, prg, and sql files.  

Another free product that takes longer to display search results than the google product is Copernic.  Their web site is at www.copernic.com</description>
		<content:encoded><![CDATA[<p>I find the Desktop Search is not as useful because of the inability to add new file types to index such as cfm, prg, and sql files.  </p>
<p>Another free product that takes longer to display search results than the google product is Copernic.  Their web site is at <a href="http://www.copernic.com" rel="nofollow">http://www.copernic.com</a></p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Jeff Walden</title>
		<link>http://www.squarefree.com/2004/10/22/my-impressions-of-google-desktop-search/comment-page-1/#comment-933</link>
		<dc:creator>Jeff Walden</dc:creator>
		<pubDate>Wed, 30 Nov -0001 00:00:00 +0000</pubDate>
		<guid isPermaLink="false">http://www.squarefree.com/test/wp15/wordpress/?p=189#comment-933</guid>
		<description>&gt;Any web page can detect whether you have Google Desktop Search running by loading an image (or perhaps any URL) from &lt;a href=&quot;http://127.0.0.1:4664/&quot;&gt;http://127.0.0.1:4664/&lt;/a&gt;

I&#039;ll take a shot at this.  It&#039;s easy enough to load an image from a certain location without really letting the viewer know it:

&lt;img src=&quot;some-normal-location&quot; width=&quot;1&quot; height=&quot;1&quot; id=&quot;some-id&quot;&gt;

From here, Javascript can switch the normal image with a faulty one.  It can even determine whether an image loaded or not:

function noLoad() { did_not_load = true; }

var badImage = new Image();
badImage.src = &quot;&lt;a href=&quot;http://127.0.0.1:4664/&quot;&gt;http://127.0.0.1:4664/&quot;;&lt;/a&gt;
var myImg = document.getElementById(&#039;some-id&#039;);
myImg.onerror = noLoad;
myImg.src = badImage.src;

if (did_not_load)
  document.write(&quot;Download Google Desktop!&quot;);
else
  document.write(&quot;Welcome, Google Desktop user!&quot;);

This may not seem particularly bad, and in fact it may not be (I&#039;m not the security expert here), but it is revealing more information to the website than it should have.

Note, however, that this doesn&#039;t really apply only to Google Desktop users -- it applies to the users of any programs that run a mini-web server on port 4664.  (This isn&#039;t to say that Google Desktop may not be the only one, however -- I don&#039;t know if any other such programs exist.)</description>
		<content:encoded><![CDATA[<p>>Any web page can detect whether you have Google Desktop Search running by loading an image (or perhaps any URL) from <a href="http://127.0.0.1:4664/">http://127.0.0.1:4664/</a></p>
<p>I&#8217;ll take a shot at this.  It&#8217;s easy enough to load an image from a certain location without really letting the viewer know it:</p>
<p>&lt;img src=&#8221;some-normal-location&#8221; width=&#8221;1&#8243; height=&#8221;1&#8243; id=&#8221;some-id&#8221;&gt;</p>
<p>From here, Javascript can switch the normal image with a faulty one.  It can even determine whether an image loaded or not:</p>
<p>function noLoad() { did_not_load = true; }</p>
<p>var badImage = new Image();<br />
badImage.src = &#8220;<a href="http://127.0.0.1:4664/"></a><a href="http://127.0.0.1:4664/" rel="nofollow">http://127.0.0.1:4664/</a>&#8220;;<br />
var myImg = document.getElementById(&#8216;some-id&#8217;);<br />
myImg.onerror = noLoad;<br />
myImg.src = badImage.src;</p>
<p>if (did_not_load)<br />
  document.write(&#8220;Download Google Desktop!&#8221;);<br />
else<br />
  document.write(&#8220;Welcome, Google Desktop user!&#8221;);</p>
<p>This may not seem particularly bad, and in fact it may not be (I&#8217;m not the security expert here), but it is revealing more information to the website than it should have.</p>
<p>Note, however, that this doesn&#8217;t really apply only to Google Desktop users &#8212; it applies to the users of any programs that run a mini-web server on port 4664.  (This isn&#8217;t to say that Google Desktop may not be the only one, however &#8212; I don&#8217;t know if any other such programs exist.)</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Jesse Ruderman</title>
		<link>http://www.squarefree.com/2004/10/22/my-impressions-of-google-desktop-search/comment-page-1/#comment-934</link>
		<dc:creator>Jesse Ruderman</dc:creator>
		<pubDate>Wed, 30 Nov -0001 00:00:00 +0000</pubDate>
		<guid isPermaLink="false">http://www.squarefree.com/test/wp15/wordpress/?p=189#comment-934</guid>
		<description>Another annoyance: the indexer locks the file while indexing it, so if I try to save a file two two seconds apart, I get an error the second time.  Does Windows give programs a way to read a file without locking it, such that it *loses* if another program tries to write to the same file before it&#039;s done reading?</description>
		<content:encoded><![CDATA[<p>Another annoyance: the indexer locks the file while indexing it, so if I try to save a file two two seconds apart, I get an error the second time.  Does Windows give programs a way to read a file without locking it, such that it *loses* if another program tries to write to the same file before it&#8217;s done reading?</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: ayan</title>
		<link>http://www.squarefree.com/2004/10/22/my-impressions-of-google-desktop-search/comment-page-1/#comment-935</link>
		<dc:creator>ayan</dc:creator>
		<pubDate>Wed, 30 Nov -0001 00:00:00 +0000</pubDate>
		<guid isPermaLink="false">http://www.squarefree.com/test/wp15/wordpress/?p=189#comment-935</guid>
		<description>Can you pls temm me how much space does google consume for saving he cached versions? And does it make the compuet slow?</description>
		<content:encoded><![CDATA[<p>Can you pls temm me how much space does google consume for saving he cached versions? And does it make the compuet slow?</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Jesse Ruderman</title>
		<link>http://www.squarefree.com/2004/10/22/my-impressions-of-google-desktop-search/comment-page-1/#comment-936</link>
		<dc:creator>Jesse Ruderman</dc:creator>
		<pubDate>Wed, 30 Nov -0001 00:00:00 +0000</pubDate>
		<guid isPermaLink="false">http://www.squarefree.com/test/wp15/wordpress/?p=189#comment-936</guid>
		<description>It refused to install until I had 1 GB free, but it only uses 400 MB.  My hard drive stores about 40 GB but I don&#039;t know how much of that is searchable text files.</description>
		<content:encoded><![CDATA[<p>It refused to install until I had 1 GB free, but it only uses 400 MB.  My hard drive stores about 40 GB but I don&#8217;t know how much of that is searchable text files.</p>
]]></content:encoded>
	</item>
</channel>
</rss>

