<?xml version="1.0" encoding="UTF-8"?><!-- generator="wordpress/2.2.1" -->
<rss version="2.0" 
	xmlns:content="http://purl.org/rss/1.0/modules/content/">
<channel>
	<title>Comments on: 2 minute guide to detecting Spyware nasties on your PC with Netstat</title>
	<link>http://www.informationaddicts.com/2-minute-guide-to-detecting-spyware-nasties-on-your-pc-with-netstat</link>
	<description></description>
	<pubDate>Fri, 12 Mar 2010 16:35:54 +0000</pubDate>
	<generator>http://wordpress.org/?v=2.2.1</generator>

	<item>
		<title>By: Alkatr0z</title>
		<link>http://www.informationaddicts.com/2-minute-guide-to-detecting-spyware-nasties-on-your-pc-with-netstat#comment-453</link>
		<author>Alkatr0z</author>
		<pubDate>Sat, 05 Jan 2008 07:09:09 +0000</pubDate>
		<guid>http://www.informationaddicts.com/2-minute-guide-to-detecting-spyware-nasties-on-your-pc-with-netstat#comment-453</guid>
		<description>The reason you can't use netstat.bat isn't because its already in use its because in the batch file you are calling "netstat". It enters a loop where it keeps running it constantly without actually returning any results since its not calling the correct netstat. You can fix this easily enough by using the following instead:
@echo off
netstat.exe -b
pause

That will prevent it calling netstat.bat. Or you can use the absolute path of C:\windows\system32\netstat.exe -b. Its a good idea to have the .exe on the end so if any malware starts dropping a netstat.com you don't need to worry about it executing the dummy version. Using the absolute path will prevent a netstat.exe being placed in a directory that is searched before the system32 folder. To check the precedence you can just open up a command prompt and type in PATH.</description>
		<content:encoded><![CDATA[<p>The reason you can&#8217;t use netstat.bat isn&#8217;t because its already in use its because in the batch file you are calling &#8220;netstat&#8221;. It enters a loop where it keeps running it constantly without actually returning any results since its not calling the correct netstat. You can fix this easily enough by using the following instead:<br />
@echo off<br />
netstat.exe -b<br />
pause</p>
<p>That will prevent it calling netstat.bat. Or you can use the absolute path of C:\windows\system32\netstat.exe -b. Its a good idea to have the .exe on the end so if any malware starts dropping a netstat.com you don&#8217;t need to worry about it executing the dummy version. Using the absolute path will prevent a netstat.exe being placed in a directory that is searched before the system32 folder. To check the precedence you can just open up a command prompt and type in PATH.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Tech Messages &#124; 2007-12-05 &#124; Slaptijack</title>
		<link>http://www.informationaddicts.com/2-minute-guide-to-detecting-spyware-nasties-on-your-pc-with-netstat#comment-345</link>
		<author>Tech Messages &#124; 2007-12-05 &#124; Slaptijack</author>
		<pubDate>Thu, 06 Dec 2007 00:35:38 +0000</pubDate>
		<guid>http://www.informationaddicts.com/2-minute-guide-to-detecting-spyware-nasties-on-your-pc-with-netstat#comment-345</guid>
		<description>[...] Information Addicts &#187; Blog Archive &#187; 2 minute guide to detecting Spyware nasties on your...This is basic, but what the heck. [...]</description>
		<content:encoded><![CDATA[<p>[&#8230;] Information Addicts &raquo; Blog Archive &raquo; 2 minute guide to detecting Spyware nasties on your&#8230;This is basic, but what the heck. [&#8230;]</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: jsanderz</title>
		<link>http://www.informationaddicts.com/2-minute-guide-to-detecting-spyware-nasties-on-your-pc-with-netstat#comment-331</link>
		<author>jsanderz</author>
		<pubDate>Tue, 27 Nov 2007 11:47:26 +0000</pubDate>
		<guid>http://www.informationaddicts.com/2-minute-guide-to-detecting-spyware-nasties-on-your-pc-with-netstat#comment-331</guid>
		<description>Satya,
Thanks for the tip, I will give it a try.
Regards.</description>
		<content:encoded><![CDATA[<p>Satya,<br />
Thanks for the tip, I will give it a try.<br />
Regards.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Satya</title>
		<link>http://www.informationaddicts.com/2-minute-guide-to-detecting-spyware-nasties-on-your-pc-with-netstat#comment-330</link>
		<author>Satya</author>
		<pubDate>Tue, 27 Nov 2007 02:47:09 +0000</pubDate>
		<guid>http://www.informationaddicts.com/2-minute-guide-to-detecting-spyware-nasties-on-your-pc-with-netstat#comment-330</guid>
		<description>For those who use Google Desktop, there is a nice gadget that does this live.
http://desktop.google.com/plugins/i/netstat.html?hl=en
You can configure it's update speed or pause it until you need it again.</description>
		<content:encoded><![CDATA[<p>For those who use Google Desktop, there is a nice gadget that does this live.<br />
<a href="http://desktop.google.com/plugins/i/netstat.html?hl=en" rel="nofollow">http://desktop.google.com/plugins/i/netstat.html?hl=en</a><br />
You can configure it&#8217;s update speed or pause it until you need it again.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Grey</title>
		<link>http://www.informationaddicts.com/2-minute-guide-to-detecting-spyware-nasties-on-your-pc-with-netstat#comment-329</link>
		<author>Grey</author>
		<pubDate>Mon, 26 Nov 2007 13:20:56 +0000</pubDate>
		<guid>http://www.informationaddicts.com/2-minute-guide-to-detecting-spyware-nasties-on-your-pc-with-netstat#comment-329</guid>
		<description>oops... sorry, you can't rename the .bat file as netstat, it will kill it. i renamed it netstats.bat when testing and it works but netstat.bat fails... :) probably cause the file name is used elsewhere in windows... whogonnaknow...</description>
		<content:encoded><![CDATA[<p>oops&#8230; sorry, you can&#8217;t rename the .bat file as netstat, it will kill it. i renamed it netstats.bat when testing and it works but netstat.bat fails&#8230; <img src='http://www.informationaddicts.com/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> probably cause the file name is used elsewhere in windows&#8230; whogonnaknow&#8230;</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: jsanderz</title>
		<link>http://www.informationaddicts.com/2-minute-guide-to-detecting-spyware-nasties-on-your-pc-with-netstat#comment-328</link>
		<author>jsanderz</author>
		<pubDate>Mon, 26 Nov 2007 11:10:54 +0000</pubDate>
		<guid>http://www.informationaddicts.com/2-minute-guide-to-detecting-spyware-nasties-on-your-pc-with-netstat#comment-328</guid>
		<description>Grey,
Thanks for sharing this great tip.
Regards.</description>
		<content:encoded><![CDATA[<p>Grey,<br />
Thanks for sharing this great tip.<br />
Regards.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Grey</title>
		<link>http://www.informationaddicts.com/2-minute-guide-to-detecting-spyware-nasties-on-your-pc-with-netstat#comment-327</link>
		<author>Grey</author>
		<pubDate>Sun, 25 Nov 2007 13:56:01 +0000</pubDate>
		<guid>http://www.informationaddicts.com/2-minute-guide-to-detecting-spyware-nasties-on-your-pc-with-netstat#comment-327</guid>
		<description>open notepad and type into it:

@echo off
 netstat -b
pause

save notepad as netstat.bat, double click it when ever you want to run it... ;)
also if your not familiar with a command /? is very useful to see all available options.</description>
		<content:encoded><![CDATA[<p>open notepad and type into it:</p>
<p>@echo off<br />
 netstat -b<br />
pause</p>
<p>save notepad as netstat.bat, double click it when ever you want to run it&#8230; <img src='http://www.informationaddicts.com/wp-includes/images/smilies/icon_wink.gif' alt=';)' class='wp-smiley' /><br />
also if your not familiar with a command /? is very useful to see all available options.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Philippine Web Blog</title>
		<link>http://www.informationaddicts.com/2-minute-guide-to-detecting-spyware-nasties-on-your-pc-with-netstat#comment-323</link>
		<author>Philippine Web Blog</author>
		<pubDate>Fri, 23 Nov 2007 08:43:13 +0000</pubDate>
		<guid>http://www.informationaddicts.com/2-minute-guide-to-detecting-spyware-nasties-on-your-pc-with-netstat#comment-323</guid>
		<description>nice tip...</description>
		<content:encoded><![CDATA[<p>nice tip&#8230;</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: What is Windows?</title>
		<link>http://www.informationaddicts.com/2-minute-guide-to-detecting-spyware-nasties-on-your-pc-with-netstat#comment-319</link>
		<author>What is Windows?</author>
		<pubDate>Tue, 20 Nov 2007 19:44:18 +0000</pubDate>
		<guid>http://www.informationaddicts.com/2-minute-guide-to-detecting-spyware-nasties-on-your-pc-with-netstat#comment-319</guid>
		<description>Or, you could install Ubuntu and not ever worry about spyware again.
http://ubuntu.com</description>
		<content:encoded><![CDATA[<p>Or, you could install Ubuntu and not ever worry about spyware again.<br />
<a href="http://ubuntu.com" rel="nofollow">http://ubuntu.com</a></p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Cookie Monster</title>
		<link>http://www.informationaddicts.com/2-minute-guide-to-detecting-spyware-nasties-on-your-pc-with-netstat#comment-318</link>
		<author>Cookie Monster</author>
		<pubDate>Mon, 19 Nov 2007 21:45:11 +0000</pubDate>
		<guid>http://www.informationaddicts.com/2-minute-guide-to-detecting-spyware-nasties-on-your-pc-with-netstat#comment-318</guid>
		<description>I knew about the netstat command (dos &#62; windows), but not the -b command, so I'd only see IPs and addresses and such (the -a flag thingy). Good tip.</description>
		<content:encoded><![CDATA[<p>I knew about the netstat command (dos &gt; windows), but not the -b command, so I&#8217;d only see IPs and addresses and such (the -a flag thingy). Good tip.</p>
]]></content:encoded>
	</item>
</channel>
</rss>
