<?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 for Spyware-Virus Files and Process</title>
	<atom:link href="http://www.precisesecurity.com/files-process/comments/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.precisesecurity.com/files-process</link>
	<description></description>
	<lastBuildDate>Tue, 09 Mar 2010 13:34:00 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=2.9.1</generator>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
		<item>
		<title>Comment on Classified.exe by melven</title>
		<link>http://www.precisesecurity.com/files-process/2009/07/16/classifiedexe/#comment-4187</link>
		<dc:creator>melven</dc:creator>
		<pubDate>Tue, 09 Mar 2010 13:34:00 +0000</pubDate>
		<guid isPermaLink="false">http://www.precisesecurity.com/files-process/?p=2293#comment-4187</guid>
		<description>hi guys... ive&#039;d been experienced that problem too. thats kind of worm is very dangerous. bcoz once u clik the infected drive it will spreadout. all ur folders, system folders etc.. it will do superhide. it was displayed a same folder. 

solution:

1. slave ur infected hardrive to another computer that hav an updated anti-virus. i used eScan antivirus. or u tried nod32, and malwarebytes. just download to internet.
2. scan ur infected hdd... and it will automatically remove all folders infected by clasified.exe
3. show hidden files and folders.
4. back-up ur cleaned files to free disk hdd.
5 reformat and reinstall ur computer...</description>
		<content:encoded><![CDATA[<p>hi guys&#8230; ive&#8217;d been experienced that problem too. thats kind of worm is very dangerous. bcoz once u clik the infected drive it will spreadout. all ur folders, system folders etc.. it will do superhide. it was displayed a same folder. </p>
<p>solution:</p>
<p>1. slave ur infected hardrive to another computer that hav an updated anti-virus. i used eScan antivirus. or u tried nod32, and malwarebytes. just download to internet.<br />
2. scan ur infected hdd&#8230; and it will automatically remove all folders infected by clasified.exe<br />
3. show hidden files and folders.<br />
4. back-up ur cleaned files to free disk hdd.<br />
5 reformat and reinstall ur computer&#8230;</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Classified.exe by Renz</title>
		<link>http://www.precisesecurity.com/files-process/2009/07/16/classifiedexe/#comment-4186</link>
		<dc:creator>Renz</dc:creator>
		<pubDate>Sat, 06 Mar 2010 11:41:06 +0000</pubDate>
		<guid isPermaLink="false">http://www.precisesecurity.com/files-process/?p=2293#comment-4186</guid>
		<description>Thanks JEFF. You helped us :D</description>
		<content:encoded><![CDATA[<p>Thanks JEFF. You helped us <img src='http://www.precisesecurity.com/files-process/wp-includes/images/smilies/icon_biggrin.gif' alt=':D' class='wp-smiley' /> </p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on winupgro.exe by milc</title>
		<link>http://www.precisesecurity.com/files-process/2008/12/28/winupgro/#comment-4185</link>
		<dc:creator>milc</dc:creator>
		<pubDate>Wed, 03 Mar 2010 19:33:39 +0000</pubDate>
		<guid isPermaLink="false">http://www.precisesecurity.com/files-process/?p=1408#comment-4185</guid>
		<description>I met this &quot;nice piece of work&quot; and really had a hard time cleaning it up.
Followed the instructions, but was never able to perform the first step in killing the winupgro.exe. So I downloaded and burned the RescueCD.
1. Booted the infected laptop using RescueCD.
2. started startx
3. created a perl script to do the same MD5 scan of all files on all disks drives that were mounted to /mnt/c and /mnt/d using commands:
 mkdir /mnt/c
 mkdir /mnt/d
 mount /dev/sda1 /mnt/c
 mount /dev/sda5 /mnt/d

The RescueCD comes with md5deep so no need to download. I also have a temp dir on my c: drive.
4. The scan found two additional files having matching md5, which is different from the one posted in first post here.
261cf3003f2fa106b4b6812cdd6cbe93 found in /mnt/c/Documents and Settings/Milans/Application Data/drivers/winupgro.exe

261cf3003f2fa106b4b6812cdd6cbe93 found in /mnt/c/Program Files/Microsoft ActiveSync/wcescomm.exe
261cf3003f2fa106b4b6812cdd6cbe93 found in /mnt/d/System Volume Information/_restore{1B979E5A-90BD-4339-A818-E49EB7202A10}/RP993/A0192373.exe

As listed, one file was on d: disk and one on c:. So you have to check and delete all disk as suggested in an earlier post.

Deleted all 3 files. 
  rm &quot;&quot;
Rebooted to WindowsXP
5. Downloaded the combofix, run it... it cleaned stuff, taking again some time.
6. Uninstalled NOD32 - as I couldn&#039;t repair it
7. Installed NOD32, updated, scanned all.
It seems now I have a clean and running Windows XP.
Thanks for the idea, it saved my WinXP from a painful re-installation.

Here is the perl script I used. I used &quot;find .&quot; to create the listingC.txt with all files, one per each drive.

Once the program completed (perl scan.pl) use:
  cat /mnt/c/temp/scan.log &#124; grep &quot; found in&quot;
to list the matching files.

/mnt/c/temp/scan.pl: (save to this file)
#!/usr/bin/perl -w
use strict;

my $ROOT = &#039;/mnt/c&#039;;
my $DATAROOTC = &quot;/mnt/c&quot;;
my $DATAROOTD = &quot;/mnt/d&quot;;

my $myLog = &quot;$ROOT/temp/scan.log&quot;;

my $fileSample = &quot;$ROOT/Documents and Settings/Milans/Application Data/drivers/winupgro.exe&quot;;

# Listings with files created by 
#   cd /mnt/c
#   find . &gt;/mnt/c/temp/listingC.txt
#   cd /mnt/d
#   find . &gt;/mnt/c/temp/listingD.txt

my $listingC = &quot;$ROOT/temp/listingC.txt&quot;; 
my $listingD = &quot;$ROOT/temp/listingD.txt&quot;;

my $md5deepExe = &quot;/usr/bin/md5deep&quot;;

sub Log {
	my ($log) = @_;
	open (my $OUT, &quot;&gt;&gt;$myLog&quot;);
	print $OUT $log . &quot;\n&quot;;
	print STDERR $log . &quot;\n&quot;;
	close $OUT;
}
sub scan {
	my ($md5Lookup, $fileList, $dataroot) = @_;
	Log(&quot;Starting scan for $md5Lookup on $fileList&quot;);
	open (my $IN, &quot;&lt;$fileList&quot;);
	my $file;
	my $cnt = 0;
	my $md5;
	while () {
		$cnt++;
		chomp;
		$file = $_;
		$file=~s/^\./$dataroot/;
#		print &quot;$file\n&quot;;
#		last if ($cnt++ &gt; 10);
		next if (! (-e $file) &#124;&#124; (-d $file));

		$md5 = &amp;getMD5($file);
		Log(&quot;$md5 $file&quot;);
		if ($md5 eq $md5Lookup) {
			my $dbg = &quot;$md5 found in $file&quot;;
			&amp;Log($dbg);
		}
		if ($cnt % 250 == 0) {
			print &quot;Processed: $cnt\n&quot;;
		}

	}
	close $IN;
	Log(&quot;Processed total of $cnt files.&quot;);
}

sub getMD5 {
	my ($file) = @_;
	my $exe = &quot;$md5deepExe \&quot;$file\&quot;&quot;;
	
	my $ret = `$exe`;
	my ($md5, $fileName) = split(&quot; &quot;, $ret);
	return $md5;
}

############
#  MAIN

my $md5 = &amp;getMD5($fileSample);

print &quot;Target lookup MD5 = $md5\n&quot;;

&amp;scan($md5, $listingC, $DATAROOTC);
&amp;scan($md5, $listingD, $DATAROOTD);


print &quot;Done.\n&quot;;</description>
		<content:encoded><![CDATA[<p>I met this &#8220;nice piece of work&#8221; and really had a hard time cleaning it up.<br />
Followed the instructions, but was never able to perform the first step in killing the winupgro.exe. So I downloaded and burned the RescueCD.<br />
1. Booted the infected laptop using RescueCD.<br />
2. started startx<br />
3. created a perl script to do the same MD5 scan of all files on all disks drives that were mounted to /mnt/c and /mnt/d using commands:<br />
 mkdir /mnt/c<br />
 mkdir /mnt/d<br />
 mount /dev/sda1 /mnt/c<br />
 mount /dev/sda5 /mnt/d</p>
<p>The RescueCD comes with md5deep so no need to download. I also have a temp dir on my c: drive.<br />
4. The scan found two additional files having matching md5, which is different from the one posted in first post here.<br />
261cf3003f2fa106b4b6812cdd6cbe93 found in /mnt/c/Documents and Settings/Milans/Application Data/drivers/winupgro.exe</p>
<p>261cf3003f2fa106b4b6812cdd6cbe93 found in /mnt/c/Program Files/Microsoft ActiveSync/wcescomm.exe<br />
261cf3003f2fa106b4b6812cdd6cbe93 found in /mnt/d/System Volume Information/_restore{1B979E5A-90BD-4339-A818-E49EB7202A10}/RP993/A0192373.exe</p>
<p>As listed, one file was on d: disk and one on c:. So you have to check and delete all disk as suggested in an earlier post.</p>
<p>Deleted all 3 files.<br />
  rm &#8220;&#8221;<br />
Rebooted to WindowsXP<br />
5. Downloaded the combofix, run it&#8230; it cleaned stuff, taking again some time.<br />
6. Uninstalled NOD32 &#8211; as I couldn&#8217;t repair it<br />
7. Installed NOD32, updated, scanned all.<br />
It seems now I have a clean and running Windows XP.<br />
Thanks for the idea, it saved my WinXP from a painful re-installation.</p>
<p>Here is the perl script I used. I used &#8220;find .&#8221; to create the listingC.txt with all files, one per each drive.</p>
<p>Once the program completed (perl scan.pl) use:<br />
  cat /mnt/c/temp/scan.log | grep &#8221; found in&#8221;<br />
to list the matching files.</p>
<p>/mnt/c/temp/scan.pl: (save to this file)<br />
#!/usr/bin/perl -w<br />
use strict;</p>
<p>my $ROOT = &#8216;/mnt/c&#8217;;<br />
my $DATAROOTC = &#8220;/mnt/c&#8221;;<br />
my $DATAROOTD = &#8220;/mnt/d&#8221;;</p>
<p>my $myLog = &#8220;$ROOT/temp/scan.log&#8221;;</p>
<p>my $fileSample = &#8220;$ROOT/Documents and Settings/Milans/Application Data/drivers/winupgro.exe&#8221;;</p>
<p># Listings with files created by<br />
#   cd /mnt/c<br />
#   find . &gt;/mnt/c/temp/listingC.txt<br />
#   cd /mnt/d<br />
#   find . &gt;/mnt/c/temp/listingD.txt</p>
<p>my $listingC = &#8220;$ROOT/temp/listingC.txt&#8221;;<br />
my $listingD = &#8220;$ROOT/temp/listingD.txt&#8221;;</p>
<p>my $md5deepExe = &#8220;/usr/bin/md5deep&#8221;;</p>
<p>sub Log {<br />
	my ($log) = @_;<br />
	open (my $OUT, &#8220;&gt;&gt;$myLog&#8221;);<br />
	print $OUT $log . &#8220;\n&#8221;;<br />
	print STDERR $log . &#8220;\n&#8221;;<br />
	close $OUT;<br />
}<br />
sub scan {<br />
	my ($md5Lookup, $fileList, $dataroot) = @_;<br />
	Log(&#8220;Starting scan for $md5Lookup on $fileList&#8221;);<br />
	open (my $IN, &#8220;&lt;$fileList&quot;);<br />
	my $file;<br />
	my $cnt = 0;<br />
	my $md5;<br />
	while () {<br />
		$cnt++;<br />
		chomp;<br />
		$file = $_;<br />
		$file=~s/^\./$dataroot/;<br />
#		print &#8220;$file\n&#8221;;<br />
#		last if ($cnt++ &gt; 10);<br />
		next if (! (-e $file) || (-d $file));</p>
<p>		$md5 = &amp;getMD5($file);<br />
		Log(&#8220;$md5 $file&#8221;);<br />
		if ($md5 eq $md5Lookup) {<br />
			my $dbg = &#8220;$md5 found in $file&#8221;;<br />
			&amp;Log($dbg);<br />
		}<br />
		if ($cnt % 250 == 0) {<br />
			print &#8220;Processed: $cnt\n&#8221;;<br />
		}</p>
<p>	}<br />
	close $IN;<br />
	Log(&#8220;Processed total of $cnt files.&#8221;);<br />
}</p>
<p>sub getMD5 {<br />
	my ($file) = @_;<br />
	my $exe = &#8220;$md5deepExe \&#8221;$file\&#8221;";</p>
<p>	my $ret = `$exe`;<br />
	my ($md5, $fileName) = split(&#8221; &#8220;, $ret);<br />
	return $md5;<br />
}</p>
<p>############<br />
#  MAIN</p>
<p>my $md5 = &amp;getMD5($fileSample);</p>
<p>print &#8220;Target lookup MD5 = $md5\n&#8221;;</p>
<p>&amp;scan($md5, $listingC, $DATAROOTC);<br />
&amp;scan($md5, $listingD, $DATAROOTD);</p>
<p>print &#8220;Done.\n&#8221;;</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on zxx by zxx of zxx</title>
		<link>http://www.precisesecurity.com/files-process/2009/06/15/zxx/#comment-4184</link>
		<dc:creator>zxx of zxx</dc:creator>
		<pubDate>Wed, 03 Mar 2010 18:46:05 +0000</pubDate>
		<guid isPermaLink="false">http://www.precisesecurity.com/files-process/?p=2061#comment-4184</guid>
		<description>Thank you for your help...</description>
		<content:encoded><![CDATA[<p>Thank you for your help&#8230;</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Classified.exe by Noreen</title>
		<link>http://www.precisesecurity.com/files-process/2009/07/16/classifiedexe/#comment-4183</link>
		<dc:creator>Noreen</dc:creator>
		<pubDate>Wed, 03 Mar 2010 15:48:08 +0000</pubDate>
		<guid isPermaLink="false">http://www.precisesecurity.com/files-process/?p=2293#comment-4183</guid>
		<description>i really need help here,... how can i possibly remove the classified.exe?</description>
		<content:encoded><![CDATA[<p>i really need help here,&#8230; how can i possibly remove the classified.exe?</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Mourn_Operator.exe by nghi</title>
		<link>http://www.precisesecurity.com/files-process/2008/10/29/mourn_operatorexe/#comment-4182</link>
		<dc:creator>nghi</dc:creator>
		<pubDate>Wed, 03 Mar 2010 05:00:10 +0000</pubDate>
		<guid isPermaLink="false">http://www.precisesecurity.com/files-process/?p=1284#comment-4182</guid>
		<description>delete virus Mourn_Operator.exe</description>
		<content:encoded><![CDATA[<p>delete virus Mourn_Operator.exe</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on My Music.exe by Nimish</title>
		<link>http://www.precisesecurity.com/files-process/2007/11/28/my-musicexe/#comment-4181</link>
		<dc:creator>Nimish</dc:creator>
		<pubDate>Tue, 23 Feb 2010 12:04:34 +0000</pubDate>
		<guid isPermaLink="false">http://www.precisesecurity.com/files-process/2007/11/28/my-musicexe/#comment-4181</guid>
		<description>My system is infected by a virus named My music.exe, what should i do to remove it.</description>
		<content:encoded><![CDATA[<p>My system is infected by a virus named My music.exe, what should i do to remove it.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on True_Love.exe by Mohammed Fayaz K</title>
		<link>http://www.precisesecurity.com/files-process/2008/02/23/true_loveexe/#comment-4180</link>
		<dc:creator>Mohammed Fayaz K</dc:creator>
		<pubDate>Tue, 23 Feb 2010 06:21:45 +0000</pubDate>
		<guid isPermaLink="false">http://www.precisesecurity.com/files-process/2008/02/23/true_loveexe/#comment-4180</guid>
		<description>If ur facing true_love.exe problem,i hav 1 suggestion for u. 
Go to Start------ RUN------(Type) CMD --------
(Type) CD\  (Enter)
(Type) Attrib(Space) -r(Space) -h(Space) -s(Space) True_love.exe (press enter)
(Type) Del True_love.exe
Proceed Same thing to all drives..

Mail me if u hav any problem</description>
		<content:encoded><![CDATA[<p>If ur facing true_love.exe problem,i hav 1 suggestion for u.<br />
Go to Start&#8212;&#8212; RUN&#8212;&#8212;(Type) CMD &#8212;&#8212;&#8211;<br />
(Type) CD\  (Enter)<br />
(Type) Attrib(Space) -r(Space) -h(Space) -s(Space) True_love.exe (press enter)<br />
(Type) Del True_love.exe<br />
Proceed Same thing to all drives..</p>
<p>Mail me if u hav any problem</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on winupgro.exe by Michael</title>
		<link>http://www.precisesecurity.com/files-process/2008/12/28/winupgro/#comment-4179</link>
		<dc:creator>Michael</dc:creator>
		<pubDate>Tue, 23 Feb 2010 05:30:29 +0000</pubDate>
		<guid isPermaLink="false">http://www.precisesecurity.com/files-process/?p=1408#comment-4179</guid>
		<description>alibadia is the tool that worked.....
run the software, reboot and test.
all better now.
it might be written in spanish, but i can can read enough of it to make it work.
and it worked great.</description>
		<content:encoded><![CDATA[<p>alibadia is the tool that worked&#8230;..<br />
run the software, reboot and test.<br />
all better now.<br />
it might be written in spanish, but i can can read enough of it to make it work.<br />
and it worked great.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on winupgro.exe by Michael</title>
		<link>http://www.precisesecurity.com/files-process/2008/12/28/winupgro/#comment-4178</link>
		<dc:creator>Michael</dc:creator>
		<pubDate>Mon, 22 Feb 2010 06:33:15 +0000</pubDate>
		<guid isPermaLink="false">http://www.precisesecurity.com/files-process/?p=1408#comment-4178</guid>
		<description>Well mine isn&#039;t getting fixed as easily as all of yours....
running windows 7 untimate 64bit...
most of the software will not install or run properly.
did i mention the virus was silly, being a trojan you&#039;d think it wanted internet access..... but it killed all access.
i am using a different computer downloading files and researching, but combofix and xsoftspy will not run, they need internet access to update !

the alibadia is currently thinking about it......
we shall see</description>
		<content:encoded><![CDATA[<p>Well mine isn&#8217;t getting fixed as easily as all of yours&#8230;.<br />
running windows 7 untimate 64bit&#8230;<br />
most of the software will not install or run properly.<br />
did i mention the virus was silly, being a trojan you&#8217;d think it wanted internet access&#8230;.. but it killed all access.<br />
i am using a different computer downloading files and researching, but combofix and xsoftspy will not run, they need internet access to update !</p>
<p>the alibadia is currently thinking about it&#8230;&#8230;<br />
we shall see</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on True_Love.exe by Surender Kumar</title>
		<link>http://www.precisesecurity.com/files-process/2008/02/23/true_loveexe/#comment-4177</link>
		<dc:creator>Surender Kumar</dc:creator>
		<pubDate>Mon, 22 Feb 2010 05:48:12 +0000</pubDate>
		<guid isPermaLink="false">http://www.precisesecurity.com/files-process/2008/02/23/true_loveexe/#comment-4177</guid>
		<description>My pen drive(2 gb ) having love.exe virus file  in word format what should i do.</description>
		<content:encoded><![CDATA[<p>My pen drive(2 gb ) having love.exe virus file  in word format what should i do.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Classified.exe by Trismund</title>
		<link>http://www.precisesecurity.com/files-process/2009/07/16/classifiedexe/#comment-4176</link>
		<dc:creator>Trismund</dc:creator>
		<pubDate>Sat, 20 Feb 2010 06:39:36 +0000</pubDate>
		<guid isPermaLink="false">http://www.precisesecurity.com/files-process/?p=2293#comment-4176</guid>
		<description>Try this... Classified.exe remover 

USE AT YOUR OWN RISK!!!
Download:
hxxp://rapidshare.com/files/352192338/Class-X.exe.html


or visit this site www.trismund.net.ms</description>
		<content:encoded><![CDATA[<p>Try this&#8230; Classified.exe remover </p>
<p>USE AT YOUR OWN RISK!!!<br />
Download:<br />
hxxp://rapidshare.com/files/352192338/Class-X.exe.html</p>
<p>or visit this site <a href="http://www.trismund.net.ms" rel="nofollow">http://www.trismund.net.ms</a></p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on nissan.exe by nelson buisel</title>
		<link>http://www.precisesecurity.com/files-process/2010/01/20/nissan-exe/#comment-4175</link>
		<dc:creator>nelson buisel</dc:creator>
		<pubDate>Fri, 19 Feb 2010 17:01:41 +0000</pubDate>
		<guid isPermaLink="false">http://www.precisesecurity.com/files-process/?p=2880#comment-4175</guid>
		<description>what is the effect of this virus?and how to remove this virus manually?</description>
		<content:encoded><![CDATA[<p>what is the effect of this virus?and how to remove this virus manually?</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Classified.exe by Cathleya</title>
		<link>http://www.precisesecurity.com/files-process/2009/07/16/classifiedexe/#comment-4174</link>
		<dc:creator>Cathleya</dc:creator>
		<pubDate>Thu, 18 Feb 2010 01:41:06 +0000</pubDate>
		<guid isPermaLink="false">http://www.precisesecurity.com/files-process/?p=2293#comment-4174</guid>
		<description>hello.. i have the same problem too... i&#039;ve tried to do what u said jeff... but in my case... it says... couldn&#039;t find the said location.</description>
		<content:encoded><![CDATA[<p>hello.. i have the same problem too&#8230; i&#8217;ve tried to do what u said jeff&#8230; but in my case&#8230; it says&#8230; couldn&#8217;t find the said location.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Classified.exe by arnold</title>
		<link>http://www.precisesecurity.com/files-process/2009/07/16/classifiedexe/#comment-4173</link>
		<dc:creator>arnold</dc:creator>
		<pubDate>Fri, 12 Feb 2010 10:25:33 +0000</pubDate>
		<guid isPermaLink="false">http://www.precisesecurity.com/files-process/?p=2293#comment-4173</guid>
		<description>- hey ..what if i can&#039;t run my computer on safe mode.,how can i remove this daprosy virus or otherwise you guys called it classified.exe virus</description>
		<content:encoded><![CDATA[<p>- hey ..what if i can&#8217;t run my computer on safe mode.,how can i remove this daprosy virus or otherwise you guys called it classified.exe virus</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Classified.exe by arnold</title>
		<link>http://www.precisesecurity.com/files-process/2009/07/16/classifiedexe/#comment-4172</link>
		<dc:creator>arnold</dc:creator>
		<pubDate>Fri, 12 Feb 2010 10:24:40 +0000</pubDate>
		<guid isPermaLink="false">http://www.precisesecurity.com/files-process/?p=2293#comment-4172</guid>
		<description>- hey ..what if i can&#039;t run my computer on safe mode.,how can i remove this daprosy virus ir itherwise you guys called it classified.exe virus</description>
		<content:encoded><![CDATA[<p>- hey ..what if i can&#8217;t run my computer on safe mode.,how can i remove this daprosy virus ir itherwise you guys called it classified.exe virus</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on True_Love.exe by Bhushan Malik</title>
		<link>http://www.precisesecurity.com/files-process/2008/02/23/true_loveexe/#comment-4171</link>
		<dc:creator>Bhushan Malik</dc:creator>
		<pubDate>Fri, 12 Feb 2010 07:14:13 +0000</pubDate>
		<guid isPermaLink="false">http://www.precisesecurity.com/files-process/2008/02/23/true_loveexe/#comment-4171</guid>
		<description>Hellow sir 
Your Anti virus Mbam Not dected True_Love Virus
Problam Is not Solved</description>
		<content:encoded><![CDATA[<p>Hellow sir<br />
Your Anti virus Mbam Not dected True_Love Virus<br />
Problam Is not Solved</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on At1.job by Raju</title>
		<link>http://www.precisesecurity.com/files-process/2007/07/02/at1job/#comment-4170</link>
		<dc:creator>Raju</dc:creator>
		<pubDate>Thu, 11 Feb 2010 08:24:27 +0000</pubDate>
		<guid isPermaLink="false">http://precisesecurity.com/files-process/2007/07/02/at1job/#comment-4170</guid>
		<description>Thanks</description>
		<content:encoded><![CDATA[<p>Thanks</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on regsvr.exe by h4x0r</title>
		<link>http://www.precisesecurity.com/files-process/2008/02/21/regsvrexe/#comment-4169</link>
		<dc:creator>h4x0r</dc:creator>
		<pubDate>Thu, 11 Feb 2010 00:34:31 +0000</pubDate>
		<guid isPermaLink="false">http://www.precisesecurity.com/files-process/2008/02/21/regsvrexe/#comment-4169</guid>
		<description>@harish

If you can disable it you can remove it. Get malwarebytes and use the destroy/kill file option, search for the file and remove it. 

 Fortunately, if you are able to put malwarebytes on your box run it and it will get rid of this very useless, but destructive threat

   Unfortunately, I am fighting with this virus on a clients computer. I have removed hundreds of trojans, virii, etc and I can my own trojans. This virus is a real useless bitch of a virus because if the infection is deep enough, it wont let you open any exe files or anything that would provide a fix like regedit,cmd, etc. 


To most: Downloading or running an AV scan like Kapersky will NOT fix this virus, and if you are able to download a file then it should be malwarebytes or Combofix, assuming you know what your doing, but if you dont just Download Malwarebytes from another computer to USB, then from USB to your pc, leave your ethernet cord unplugged. Scan w/ Malwarebytes, remove, Run CCleaner restart 

Will post a more indepth removal after I remove this from my clients work computer.</description>
		<content:encoded><![CDATA[<p>@harish</p>
<p>If you can disable it you can remove it. Get malwarebytes and use the destroy/kill file option, search for the file and remove it. </p>
<p> Fortunately, if you are able to put malwarebytes on your box run it and it will get rid of this very useless, but destructive threat</p>
<p>   Unfortunately, I am fighting with this virus on a clients computer. I have removed hundreds of trojans, virii, etc and I can my own trojans. This virus is a real useless bitch of a virus because if the infection is deep enough, it wont let you open any exe files or anything that would provide a fix like regedit,cmd, etc. </p>
<p>To most: Downloading or running an AV scan like Kapersky will NOT fix this virus, and if you are able to download a file then it should be malwarebytes or Combofix, assuming you know what your doing, but if you dont just Download Malwarebytes from another computer to USB, then from USB to your pc, leave your ethernet cord unplugged. Scan w/ Malwarebytes, remove, Run CCleaner restart </p>
<p>Will post a more indepth removal after I remove this from my clients work computer.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Classified.exe by kk</title>
		<link>http://www.precisesecurity.com/files-process/2009/07/16/classifiedexe/#comment-4168</link>
		<dc:creator>kk</dc:creator>
		<pubDate>Thu, 11 Feb 2010 00:24:35 +0000</pubDate>
		<guid isPermaLink="false">http://www.precisesecurity.com/files-process/?p=2293#comment-4168</guid>
		<description>i dont know how to regedit?? what part will i edit files?? please? and how to show folders like that... HELP:)</description>
		<content:encoded><![CDATA[<p>i dont know how to regedit?? what part will i edit files?? please? and how to show folders like that&#8230; HELP:)</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Classified.exe by Joseph</title>
		<link>http://www.precisesecurity.com/files-process/2009/07/16/classifiedexe/#comment-4167</link>
		<dc:creator>Joseph</dc:creator>
		<pubDate>Fri, 05 Feb 2010 18:23:58 +0000</pubDate>
		<guid isPermaLink="false">http://www.precisesecurity.com/files-process/?p=2293#comment-4167</guid>
		<description>I still cannot remove this virus or files (classified.exe) on some directories.. keep saying &quot;The process cannot access the file because it is being used by another process..&quot;? Please help.. Thanks..</description>
		<content:encoded><![CDATA[<p>I still cannot remove this virus or files (classified.exe) on some directories.. keep saying &#8220;The process cannot access the file because it is being used by another process..&#8221;? Please help.. Thanks..</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on winupgro.exe by srid</title>
		<link>http://www.precisesecurity.com/files-process/2008/12/28/winupgro/#comment-4166</link>
		<dc:creator>srid</dc:creator>
		<pubDate>Sun, 31 Jan 2010 06:09:39 +0000</pubDate>
		<guid isPermaLink="false">http://www.precisesecurity.com/files-process/?p=1408#comment-4166</guid>
		<description>another vicitim of this cruel virus.  before i found this post, this is what i did.  scanned my infected machine from a different machine on the network using mcafee enterprise.  the scan is extremely slow but i could find 442656.exe lying under c:\Documents and Settings\padma\Application Data\drivers\downld with w32/Balgle.gen virus and i could the find the nasty winupgro.exe lying one directory above.  i was not sure what it was till i read this post.  thanks all for posting your experiences and am gonna five few items a shot.  from my side, i think doing a network scan , though slow, is also viable idea if all else fails.</description>
		<content:encoded><![CDATA[<p>another vicitim of this cruel virus.  before i found this post, this is what i did.  scanned my infected machine from a different machine on the network using mcafee enterprise.  the scan is extremely slow but i could find 442656.exe lying under c:\Documents and Settings\padma\Application Data\drivers\downld with w32/Balgle.gen virus and i could the find the nasty winupgro.exe lying one directory above.  i was not sure what it was till i read this post.  thanks all for posting your experiences and am gonna five few items a shot.  from my side, i think doing a network scan , though slow, is also viable idea if all else fails.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Classified.exe by Rachelle Marie Coranes</title>
		<link>http://www.precisesecurity.com/files-process/2009/07/16/classifiedexe/#comment-4165</link>
		<dc:creator>Rachelle Marie Coranes</dc:creator>
		<pubDate>Sat, 30 Jan 2010 07:35:32 +0000</pubDate>
		<guid isPermaLink="false">http://www.precisesecurity.com/files-process/?p=2293#comment-4165</guid>
		<description>What if I don&#039;t have an internet connection?What should i do?</description>
		<content:encoded><![CDATA[<p>What if I don&#8217;t have an internet connection?What should i do?</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on sysguard.exe by Max Siles</title>
		<link>http://www.precisesecurity.com/files-process/2009/01/26/sysguardexe/#comment-4164</link>
		<dc:creator>Max Siles</dc:creator>
		<pubDate>Wed, 20 Jan 2010 21:15:48 +0000</pubDate>
		<guid isPermaLink="false">http://www.precisesecurity.com/files-process/?p=1507#comment-4164</guid>
		<description>Hi, I had a Windows XP, SP3 computer infected with the &quot;Antivirus Live&quot; nasty little demon.  Here is what I did to remove it:

Logged on as Administrator
Launched msconfig command from Run (remember, this is an XP computer)
Restored the system to a couple of days back

Once the computer rebooted, I installed MalwareBytes and ran the complete scan.  In this case, it found 9 entries of malware on the registry.  I removed them and rebooted the computer.

I hope this helps someone else out there.</description>
		<content:encoded><![CDATA[<p>Hi, I had a Windows XP, SP3 computer infected with the &#8220;Antivirus Live&#8221; nasty little demon.  Here is what I did to remove it:</p>
<p>Logged on as Administrator<br />
Launched msconfig command from Run (remember, this is an XP computer)<br />
Restored the system to a couple of days back</p>
<p>Once the computer rebooted, I installed MalwareBytes and ran the complete scan.  In this case, it found 9 entries of malware on the registry.  I removed them and rebooted the computer.</p>
<p>I hope this helps someone else out there.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on sysguard.exe by TJ</title>
		<link>http://www.precisesecurity.com/files-process/2009/01/26/sysguardexe/#comment-4163</link>
		<dc:creator>TJ</dc:creator>
		<pubDate>Tue, 19 Jan 2010 03:29:53 +0000</pubDate>
		<guid isPermaLink="false">http://www.precisesecurity.com/files-process/?p=1507#comment-4163</guid>
		<description>Working on fixing a computer that has this. Doesn&#039;t have all the files in windows but had a file named bttfsysguard.exe-050c006a.pt in c:\prefetch and then a bttfsysguard.exe in c:\documents and settings\(user)\local settings\application data\qxgdrs. Then I found 2 reg enteries by searching on the bttf. One was in the run, don&#039;t remember where the other one was. 

As for the person that can&#039;t get in to the regedit. Boot the machine in safe mode by hitting F8 when it first is booting up and then pick safe mode, probably best if you do without network support. Then when it is booted up you will not see a run command in your start. What you need to do is and alt ctrl del to bring up your task manager. From there go to file and new task which is pretty much run and type in your regedit and you should be able to do it from there. Sure you have probably fixed it by now but maybe it will help someone else for the future.</description>
		<content:encoded><![CDATA[<p>Working on fixing a computer that has this. Doesn&#8217;t have all the files in windows but had a file named bttfsysguard.exe-050c006a.pt in c:\prefetch and then a bttfsysguard.exe in c:\documents and settings\(user)\local settings\application data\qxgdrs. Then I found 2 reg enteries by searching on the bttf. One was in the run, don&#8217;t remember where the other one was. </p>
<p>As for the person that can&#8217;t get in to the regedit. Boot the machine in safe mode by hitting F8 when it first is booting up and then pick safe mode, probably best if you do without network support. Then when it is booted up you will not see a run command in your start. What you need to do is and alt ctrl del to bring up your task manager. From there go to file and new task which is pretty much run and type in your regedit and you should be able to do it from there. Sure you have probably fixed it by now but maybe it will help someone else for the future.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Classified.exe by cherry</title>
		<link>http://www.precisesecurity.com/files-process/2009/07/16/classifiedexe/#comment-4162</link>
		<dc:creator>cherry</dc:creator>
		<pubDate>Mon, 04 Jan 2010 15:01:03 +0000</pubDate>
		<guid isPermaLink="false">http://www.precisesecurity.com/files-process/?p=2293#comment-4162</guid>
		<description>I&#039;m encountring same problem with the virus but i cant follow that suggestions.... pls... help me in most easiest way!!!! pls,,,,pls,,, asap... =pls....</description>
		<content:encoded><![CDATA[<p>I&#8217;m encountring same problem with the virus but i cant follow that suggestions&#8230;. pls&#8230; help me in most easiest way!!!! pls,,,,pls,,, asap&#8230; =pls&#8230;.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on True_Love.exe by saurabh singh</title>
		<link>http://www.precisesecurity.com/files-process/2008/02/23/true_loveexe/#comment-4161</link>
		<dc:creator>saurabh singh</dc:creator>
		<pubDate>Fri, 01 Jan 2010 14:58:21 +0000</pubDate>
		<guid isPermaLink="false">http://www.precisesecurity.com/files-process/2008/02/23/true_loveexe/#comment-4161</guid>
		<description>i have true love virus in my memory card.how did i can delete it?</description>
		<content:encoded><![CDATA[<p>i have true love virus in my memory card.how did i can delete it?</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Classified.exe by JULIUS</title>
		<link>http://www.precisesecurity.com/files-process/2009/07/16/classifiedexe/#comment-4160</link>
		<dc:creator>JULIUS</dc:creator>
		<pubDate>Fri, 25 Dec 2009 08:27:23 +0000</pubDate>
		<guid isPermaLink="false">http://www.precisesecurity.com/files-process/?p=2293#comment-4160</guid>
		<description>1. restart your computer...(it is an .exe file nothing will happened if you will not open it.
2. delete the clasified.exe by cmd (you must located it first)(desktop, drive d, c)
3. example(located at d:)
4.now go to cmd type this 
d:
dir/w/ah
del/a/f clasified.exe

5its done restart again your computer.</description>
		<content:encoded><![CDATA[<p>1. restart your computer&#8230;(it is an .exe file nothing will happened if you will not open it.<br />
2. delete the clasified.exe by cmd (you must located it first)(desktop, drive d, c)<br />
3. example(located at d:)<br />
4.now go to cmd type this<br />
d:<br />
dir/w/ah<br />
del/a/f clasified.exe</p>
<p>5its done restart again your computer.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on chrome.exe by johnny</title>
		<link>http://www.precisesecurity.com/files-process/2008/11/09/chrome-exe/#comment-4159</link>
		<dc:creator>johnny</dc:creator>
		<pubDate>Tue, 22 Dec 2009 09:26:16 +0000</pubDate>
		<guid isPermaLink="false">http://www.precisesecurity.com/files-process/?p=1328#comment-4159</guid>
		<description>i have a problem with chrome.exe virus. i removed that from my computer but the information is appear when windows start. the chrome virus is completely removed but the information is still appear. please give me some solution to solve this problem. thank u very much .</description>
		<content:encoded><![CDATA[<p>i have a problem with chrome.exe virus. i removed that from my computer but the information is appear when windows start. the chrome virus is completely removed but the information is still appear. please give me some solution to solve this problem. thank u very much .</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Data Administrator.exe by jhon  jairo polo lopez</title>
		<link>http://www.precisesecurity.com/files-process/2008/01/25/data-administratorexe/#comment-4158</link>
		<dc:creator>jhon  jairo polo lopez</dc:creator>
		<pubDate>Sun, 20 Dec 2009 20:35:48 +0000</pubDate>
		<guid isPermaLink="false">http://www.precisesecurity.com/files-process/2008/01/25/data-administratorexe/#comment-4158</guid>
		<description>buenas tardes, lo que pasa es que cuando abro una carpeta, aparece una aplicacion con el mismo nombre,
yo creo que es un virus, pero yo de eso no conozco.
ejemplo:
si abro mis documentos, aparece una carpeta que tambien se llama mis documentos.
si abro mis imagenes, aparece otra carpeta con mis imagenes</description>
		<content:encoded><![CDATA[<p>buenas tardes, lo que pasa es que cuando abro una carpeta, aparece una aplicacion con el mismo nombre,<br />
yo creo que es un virus, pero yo de eso no conozco.<br />
ejemplo:<br />
si abro mis documentos, aparece una carpeta que tambien se llama mis documentos.<br />
si abro mis imagenes, aparece otra carpeta con mis imagenes</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on FUvirus.exe by Lex</title>
		<link>http://www.precisesecurity.com/files-process/2008/12/11/fuvirusexe/#comment-4157</link>
		<dc:creator>Lex</dc:creator>
		<pubDate>Sun, 20 Dec 2009 13:21:18 +0000</pubDate>
		<guid isPermaLink="false">http://www.precisesecurity.com/files-process/?p=1373#comment-4157</guid>
		<description>thanks guys!!! i do really appreciate ur thoughts here.. 
thanks again..</description>
		<content:encoded><![CDATA[<p>thanks guys!!! i do really appreciate ur thoughts here..<br />
thanks again..</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Classified.exe by Dishan</title>
		<link>http://www.precisesecurity.com/files-process/2009/07/16/classifiedexe/#comment-4156</link>
		<dc:creator>Dishan</dc:creator>
		<pubDate>Thu, 17 Dec 2009 06:15:20 +0000</pubDate>
		<guid isPermaLink="false">http://www.precisesecurity.com/files-process/?p=2293#comment-4156</guid>
		<description>Best Solution ......... for classified.exe

1.login from safemode with command prompt
if explorer not loaded then type explorer.exe  

2.(remove virus)
download &quot;stinger&quot; from macafee it&#039;s Standalone anti-virus scanner for certain viruses.

run the virus scanner scan all local drivers including external removable disks

restart pc

3. (show hidden files)
last run this command in command prompt:
for /r c:\ %v in (.) do attrib -r -h -s &quot;%v&quot;</description>
		<content:encoded><![CDATA[<p>Best Solution &#8230;&#8230;&#8230; for classified.exe</p>
<p>1.login from safemode with command prompt<br />
if explorer not loaded then type explorer.exe  </p>
<p>2.(remove virus)<br />
download &#8220;stinger&#8221; from macafee it&#8217;s Standalone anti-virus scanner for certain viruses.</p>
<p>run the virus scanner scan all local drivers including external removable disks</p>
<p>restart pc</p>
<p>3. (show hidden files)<br />
last run this command in command prompt:<br />
for /r c:\ %v in (.) do attrib -r -h -s &#8220;%v&#8221;</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on winupgro.exe by gamart</title>
		<link>http://www.precisesecurity.com/files-process/2008/12/28/winupgro/#comment-4155</link>
		<dc:creator>gamart</dc:creator>
		<pubDate>Mon, 14 Dec 2009 00:13:49 +0000</pubDate>
		<guid isPermaLink="false">http://www.precisesecurity.com/files-process/?p=1408#comment-4155</guid>
		<description>Flon (59) be sure to download the program in c:\ because the process is MAGIC!!!!</description>
		<content:encoded><![CDATA[<p>Flon (59) be sure to download the program in c:\ because the process is MAGIC!!!!</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on sysguard.exe by Shawn</title>
		<link>http://www.precisesecurity.com/files-process/2009/01/26/sysguardexe/#comment-4154</link>
		<dc:creator>Shawn</dc:creator>
		<pubDate>Sat, 12 Dec 2009 18:03:32 +0000</pubDate>
		<guid isPermaLink="false">http://www.precisesecurity.com/files-process/?p=1507#comment-4154</guid>
		<description>Well I got this last week and these instructions helped.  I now have it on my other computer but it has changed.

New name: yhkosysguard.exe

It has taken away my regedit abilities (no others tho) and so these instructions aren&#039;t helping.

Merry Christmas!!! And feedback be my guest</description>
		<content:encoded><![CDATA[<p>Well I got this last week and these instructions helped.  I now have it on my other computer but it has changed.</p>
<p>New name: yhkosysguard.exe</p>
<p>It has taken away my regedit abilities (no others tho) and so these instructions aren&#8217;t helping.</p>
<p>Merry Christmas!!! And feedback be my guest</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on sys.exe by mukarram</title>
		<link>http://www.precisesecurity.com/files-process/2007/06/05/sysexe/#comment-4153</link>
		<dc:creator>mukarram</dc:creator>
		<pubDate>Mon, 07 Dec 2009 08:51:03 +0000</pubDate>
		<guid isPermaLink="false">http://precisesecurity.com/files-process/2007/06/05/sysexe/#comment-4153</guid>
		<description>my question is 
how to remove a virus nooh from momputer</description>
		<content:encoded><![CDATA[<p>my question is<br />
how to remove a virus nooh from momputer</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on sysguard.exe by Sharon</title>
		<link>http://www.precisesecurity.com/files-process/2009/01/26/sysguardexe/#comment-4152</link>
		<dc:creator>Sharon</dc:creator>
		<pubDate>Sat, 05 Dec 2009 02:35:36 +0000</pubDate>
		<guid isPermaLink="false">http://www.precisesecurity.com/files-process/?p=1507#comment-4152</guid>
		<description>I was able to finally get into safe mode and did it all .It worked like a charm .Thankyou so much</description>
		<content:encoded><![CDATA[<p>I was able to finally get into safe mode and did it all .It worked like a charm .Thankyou so much</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on sysguard.exe by Sharon</title>
		<link>http://www.precisesecurity.com/files-process/2009/01/26/sysguardexe/#comment-4151</link>
		<dc:creator>Sharon</dc:creator>
		<pubDate>Sat, 05 Dec 2009 00:40:07 +0000</pubDate>
		<guid isPermaLink="false">http://www.precisesecurity.com/files-process/?p=1507#comment-4151</guid>
		<description>I found the file but are unABLE TO DELETE IT .IT wont let me.tried to get into Regedit and it wont let me</description>
		<content:encoded><![CDATA[<p>I found the file but are unABLE TO DELETE IT .IT wont let me.tried to get into Regedit and it wont let me</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Classified.exe by kildadivil-vhin</title>
		<link>http://www.precisesecurity.com/files-process/2009/07/16/classifiedexe/#comment-4150</link>
		<dc:creator>kildadivil-vhin</dc:creator>
		<pubDate>Mon, 30 Nov 2009 07:45:03 +0000</pubDate>
		<guid isPermaLink="false">http://www.precisesecurity.com/files-process/?p=2293#comment-4150</guid>
		<description>the most classified virus removal is classified.exe  by subatomica all kind of virus like classified, autorun, and try to visit the website ulop.net to more idea you want to know about pc</description>
		<content:encoded><![CDATA[<p>the most classified virus removal is classified.exe  by subatomica all kind of virus like classified, autorun, and try to visit the website ulop.net to more idea you want to know about pc</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Classified.exe by abby</title>
		<link>http://www.precisesecurity.com/files-process/2009/07/16/classifiedexe/#comment-4147</link>
		<dc:creator>abby</dc:creator>
		<pubDate>Mon, 23 Nov 2009 11:16:29 +0000</pubDate>
		<guid isPermaLink="false">http://www.precisesecurity.com/files-process/?p=2293#comment-4147</guid>
		<description>where can i download hitman pro 3.5?? and kaspersk removal tool? ca any1 pLease give me the link. .please. .the ones dat i downloaded, were all corruplted.d.:(

please help me. .</description>
		<content:encoded><![CDATA[<p>where can i download hitman pro 3.5?? and kaspersk removal tool? ca any1 pLease give me the link. .please. .the ones dat i downloaded, were all corruplted.d.:(</p>
<p>please help me. .</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on BOOT.VBS by ramesh bhattarai</title>
		<link>http://www.precisesecurity.com/files-process/2007/12/27/bootvbs/#comment-4146</link>
		<dc:creator>ramesh bhattarai</dc:creator>
		<pubDate>Sat, 21 Nov 2009 04:34:05 +0000</pubDate>
		<guid isPermaLink="false">http://www.precisesecurity.com/files-process/2007/12/27/bootvbs/#comment-4146</guid>
		<description>how to solve C:\documents and setting \administrator\boot.vbs
please reply soon as possible</description>
		<content:encoded><![CDATA[<p>how to solve C:\documents and setting \administrator\boot.vbs<br />
please reply soon as possible</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Ramal Jodoh.pif by devy putri pratama</title>
		<link>http://www.precisesecurity.com/files-process/2007/11/01/ramal-jodohpif/#comment-4145</link>
		<dc:creator>devy putri pratama</dc:creator>
		<pubDate>Mon, 16 Nov 2009 09:42:12 +0000</pubDate>
		<guid isPermaLink="false">http://www.precisesecurity.com/files-process/2007/11/01/ramal-jodohpif/#comment-4145</guid>
		<description>ramalkan saya ttgjodoh saya...dan apa saya bs menikah</description>
		<content:encoded><![CDATA[<p>ramalkan saya ttgjodoh saya&#8230;dan apa saya bs menikah</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Ramal Jodoh.pif by devy putri pratama</title>
		<link>http://www.precisesecurity.com/files-process/2007/11/01/ramal-jodohpif/#comment-4144</link>
		<dc:creator>devy putri pratama</dc:creator>
		<pubDate>Mon, 16 Nov 2009 09:41:20 +0000</pubDate>
		<guid isPermaLink="false">http://www.precisesecurity.com/files-process/2007/11/01/ramal-jodohpif/#comment-4144</guid>
		<description>ramalkan ttg jodoh saya..</description>
		<content:encoded><![CDATA[<p>ramalkan ttg jodoh saya..</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Classified.exe by bekyo</title>
		<link>http://www.precisesecurity.com/files-process/2009/07/16/classifiedexe/#comment-4143</link>
		<dc:creator>bekyo</dc:creator>
		<pubDate>Mon, 16 Nov 2009 05:28:20 +0000</pubDate>
		<guid isPermaLink="false">http://www.precisesecurity.com/files-process/?p=2293#comment-4143</guid>
		<description>me too.. 

i coudn&#039;t delete also.</description>
		<content:encoded><![CDATA[<p>me too.. </p>
<p>i coudn&#8217;t delete also.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on regsvr.exe by harish</title>
		<link>http://www.precisesecurity.com/files-process/2008/02/21/regsvrexe/#comment-4142</link>
		<dc:creator>harish</dc:creator>
		<pubDate>Sat, 14 Nov 2009 06:47:46 +0000</pubDate>
		<guid isPermaLink="false">http://www.precisesecurity.com/files-process/2008/02/21/regsvrexe/#comment-4142</guid>
		<description>The procedure solves issue to an extent.

It only disable the regsvr virus but kill all the related registry stting.  If you open you Regedit in the startup option, you will still see the Regsvr option which can be enabled or disbaled....Any way to remove it from here??

harry_g1979@rediffmail.com</description>
		<content:encoded><![CDATA[<p>The procedure solves issue to an extent.</p>
<p>It only disable the regsvr virus but kill all the related registry stting.  If you open you Regedit in the startup option, you will still see the Regsvr option which can be enabled or disbaled&#8230;.Any way to remove it from here??</p>
<p><a href="mailto:harry_g1979@rediffmail.com">harry_g1979@rediffmail.com</a></p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on FUvirus.exe by ega</title>
		<link>http://www.precisesecurity.com/files-process/2008/12/11/fuvirusexe/#comment-4141</link>
		<dc:creator>ega</dc:creator>
		<pubDate>Thu, 12 Nov 2009 01:21:53 +0000</pubDate>
		<guid isPermaLink="false">http://www.precisesecurity.com/files-process/?p=1373#comment-4141</guid>
		<description>i&#039;m also having the same problem....malwarebytes is effecitve in removing fuvirus....but all the files converted to .exe files were gone...</description>
		<content:encoded><![CDATA[<p>i&#8217;m also having the same problem&#8230;.malwarebytes is effecitve in removing fuvirus&#8230;.but all the files converted to .exe files were gone&#8230;</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Classified.exe by gan</title>
		<link>http://www.precisesecurity.com/files-process/2009/07/16/classifiedexe/#comment-4138</link>
		<dc:creator>gan</dc:creator>
		<pubDate>Tue, 03 Nov 2009 07:19:06 +0000</pubDate>
		<guid isPermaLink="false">http://www.precisesecurity.com/files-process/?p=2293#comment-4138</guid>
		<description>hi..

i have finished doing steps 1 to 4..

but i couldn&#039;t delete the ff files in step5:

%System%\hlpsvc1.exe
%System%\hlpsvc2.exe
%SystemDrive%\Read1st!.exe
%SystemDrive%\goats.exe
%UserProfile%\My Documents\Classified.exe
C:\Documents and Settings\All Users\Application Data\Microsoft\Keyboard\kbdsys.exe
C:\Documents and Settings\All Users\Application Data\PolariSys\dirlock.exe

i need help please... thank you.

God Bless. :D</description>
		<content:encoded><![CDATA[<p>hi..</p>
<p>i have finished doing steps 1 to 4..</p>
<p>but i couldn&#8217;t delete the ff files in step5:</p>
<p>%System%\hlpsvc1.exe<br />
%System%\hlpsvc2.exe<br />
%SystemDrive%\Read1st!.exe<br />
%SystemDrive%\goats.exe<br />
%UserProfile%\My Documents\Classified.exe<br />
C:\Documents and Settings\All Users\Application Data\Microsoft\Keyboard\kbdsys.exe<br />
C:\Documents and Settings\All Users\Application Data\PolariSys\dirlock.exe</p>
<p>i need help please&#8230; thank you.</p>
<p>God Bless. <img src='http://www.precisesecurity.com/files-process/wp-includes/images/smilies/icon_biggrin.gif' alt=':D' class='wp-smiley' /> </p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on winupgro.exe by Flon Klar</title>
		<link>http://www.precisesecurity.com/files-process/2008/12/28/winupgro/#comment-4137</link>
		<dc:creator>Flon Klar</dc:creator>
		<pubDate>Mon, 02 Nov 2009 14:06:38 +0000</pubDate>
		<guid isPermaLink="false">http://www.precisesecurity.com/files-process/?p=1408#comment-4137</guid>
		<description>Why is it that when I run the batch file, the DOS window runs a constant stream of &quot;md5deep&quot; is not a valid program, command, or batch file?&quot;  The &quot;out&quot; file is also blank at the end of the scan.  Am I doing something wrong?</description>
		<content:encoded><![CDATA[<p>Why is it that when I run the batch file, the DOS window runs a constant stream of &#8220;md5deep&#8221; is not a valid program, command, or batch file?&#8221;  The &#8220;out&#8221; file is also blank at the end of the scan.  Am I doing something wrong?</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on winupgro.exe by Piotr</title>
		<link>http://www.precisesecurity.com/files-process/2008/12/28/winupgro/#comment-4136</link>
		<dc:creator>Piotr</dc:creator>
		<pubDate>Sat, 31 Oct 2009 14:42:09 +0000</pubDate>
		<guid isPermaLink="false">http://www.precisesecurity.com/files-process/?p=1408#comment-4136</guid>
		<description>Thank you, Yasser. Thanks to your post I was able to remove the winupgro.exe. My antivirus, NOD32, as well as Windows Defender got their arses kicked by it. Luckily my PC is now clean.</description>
		<content:encoded><![CDATA[<p>Thank you, Yasser. Thanks to your post I was able to remove the winupgro.exe. My antivirus, NOD32, as well as Windows Defender got their arses kicked by it. Luckily my PC is now clean.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on True_Love.exe by Zac</title>
		<link>http://www.precisesecurity.com/files-process/2008/02/23/true_loveexe/#comment-4134</link>
		<dc:creator>Zac</dc:creator>
		<pubDate>Fri, 23 Oct 2009 03:06:48 +0000</pubDate>
		<guid isPermaLink="false">http://www.precisesecurity.com/files-process/2008/02/23/true_loveexe/#comment-4134</guid>
		<description>Avast can detect and remove TRUE_LOVE.EXE. But the thing is it wont automatically detect unless you scan the folder that has the virus.</description>
		<content:encoded><![CDATA[<p>Avast can detect and remove TRUE_LOVE.EXE. But the thing is it wont automatically detect unless you scan the folder that has the virus.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on ogard.exe by CCCP</title>
		<link>http://www.precisesecurity.com/files-process/2009/02/17/ogard-exe/#comment-4130</link>
		<dc:creator>CCCP</dc:creator>
		<pubDate>Sun, 18 Oct 2009 21:40:09 +0000</pubDate>
		<guid isPermaLink="false">http://www.precisesecurity.com/files-process/?p=1535#comment-4130</guid>
		<description>Try to boot in safe mode then find it and try to delete or u can try vista cause im hearing ti doesnt work on vista</description>
		<content:encoded><![CDATA[<p>Try to boot in safe mode then find it and try to delete or u can try vista cause im hearing ti doesnt work on vista</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Classified.exe by Jefferson</title>
		<link>http://www.precisesecurity.com/files-process/2009/07/16/classifiedexe/#comment-4129</link>
		<dc:creator>Jefferson</dc:creator>
		<pubDate>Fri, 16 Oct 2009 04:45:28 +0000</pubDate>
		<guid isPermaLink="false">http://www.precisesecurity.com/files-process/?p=2293#comment-4129</guid>
		<description>How to remove this virus... 



1.  Boot in safe mode with command prompt. Do NOT boot on safe mode with networking. the virus will be active. 
 &gt;to boot in safe mode&gt;&gt;&gt;start your computer&gt;&gt; while restarting press F8&gt;&gt; then choose safe mode

2.  Run regedit (Start &gt;&gt; Run &gt;&gt; cmd) 
3.  Delete the following registry entries: 
HKEY_CURRENT_USER\Software\Microsoft\Windows\CurrentVersion\Run\&quot;WinSys&quot; = &quot;%Windir%\system.exe&quot; 
HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows\CurrentVersion\Run\&quot;LSAShell&quot; = &quot;%Windir%\lsass.exe&quot; 
HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows\CurrentVersion\Run\&quot;SessionMngr&quot; = &quot;C:\Documents and Settings\All Users\Application Data\PolariSys\dirlock.exe&quot; 
HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows NT\CurrentVersion\Winlogon\&quot;Shell&quot; = &quot;Explorer.exe \&quot;C:\Documents and Settings\All Users\Application Data\Microsoft\Keyboard\kbdsys.exe\&quot;

4. Edit the following entries too: 
HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows NT\CurrentVersion\SystemRestore\&quot;DisableSR&quot; = &quot;1&quot; 
HKEY_CURRENT_USER\Software\Microsoft\Windows\CurrentVersion\Explorer\Advanced\&quot;Hidden&quot; = &quot;2&quot; 
HKEY_CURRENT_USER\Software\Microsoft\Windows\CurrentVersion\Explorer\Advanced\&quot;HideFileExt&quot; = &quot;1&quot; 
HKEY_CURRENT_USER\Software\Microsoft\Windows\CurrentVersion\Explorer\Advanced\&quot;ShowSuperHidden&quot; = &quot;1&quot; 
HKEY_USERS\.DEFAULT\Software\Microsoft\Windows\CurrentVersion\Explorer\Advanced\&quot;Hidden&quot; = &quot;2&quot; 
HKEY_USERS\.DEFAULT\Software\Microsoft\Windows\CurrentVersion\Explorer\Advanced\&quot;HideFileExt&quot; = &quot;1&quot; 
HKEY_USERS\.DEFAULT\Software\Microsoft\Windows\CurrentVersion\Explorer\Advanced\&quot;ShowSuperHidden&quot; = &quot;0&quot; 
HKEY_USERS\.DEFAULT\Software\Microsoft\Windows\CurrentVersion\Explorer\Advanced\&quot;SuperHidden&quot; = &quot;1&quot; 
HKEY_CURRENT_USER\Software\Microsoft\Windows\CurrentVersion\Policies\Explorer\&quot;NoFolderOptions&quot; = &quot;1&quot;


Note: &quot;0&quot; is to disable, &quot;1&quot; is to enable. 

Very Important Note: 
Use Attribute Changer first to fix regular folders&#039; attribute BEFORE fixing the registry. 
________________________________________

here&#039;s my regentry for the above: 
HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows NT\CurrentVersion\SystemRestore\&quot;DisableSR&quot; = &quot;1&quot; 
HKEY_CURRENT_USER\Software\Microsoft\Windows\CurrentVersion\Explorer\Advanced\&quot;Hidden&quot; = &quot;2&quot; 
HKEY_CURRENT_USER\Software\Microsoft\Windows\CurrentVersion\Explorer\Advanced\&quot;HideFileExt&quot; = &quot;1&quot; 
HKEY_CURRENT_USER\Software\Microsoft\Windows\CurrentVersion\Explorer\Advanced\&quot;ShowSuperHidden&quot; = &quot;0&quot; 
HKEY_CURRENT_USER\Software\Microsoft\Windows\CurrentVersion\Explorer\Advanced\&quot;SuperHidden&quot; = &quot;0&quot; 

________________________________________


5. Manually delete the following files 
%System%\hlpsvc1.exe 
%System%\hlpsvc2.exe 
%SystemDrive%\Read1st!.exe 
%SystemDrive%\goats.exe 
%Windir%\Classified.exe 
%Windir%\system.exe 
%Windir%\lsass.exe 
%Windir%\shutdown.dll 
%UserProfile%\My Documents\Classified.exe 
C:\Documents and Settings\All Users\Application Data\Microsoft\Keyboard\kbdsys.exe 
C:\Documents and Settings\All Users\Application Data\PolariSys\dirlock.exe 

Also clear your startup folder

%Windir%\ is usually Windows (unless you specified a diff one upon OS installation) 
%system% and %systemDrive%\ is the drive where your OS is (usually C: drive)</description>
		<content:encoded><![CDATA[<p>How to remove this virus&#8230; </p>
<p>1.  Boot in safe mode with command prompt. Do NOT boot on safe mode with networking. the virus will be active.<br />
 &gt;to boot in safe mode&gt;&gt;&gt;start your computer&gt;&gt; while restarting press F8&gt;&gt; then choose safe mode</p>
<p>2.  Run regedit (Start &gt;&gt; Run &gt;&gt; cmd)<br />
3.  Delete the following registry entries:<br />
HKEY_CURRENT_USER\Software\Microsoft\Windows\CurrentVersion\Run\&#8221;WinSys&#8221; = &#8220;%Windir%\system.exe&#8221;<br />
HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows\CurrentVersion\Run\&#8221;LSAShell&#8221; = &#8220;%Windir%\lsass.exe&#8221;<br />
HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows\CurrentVersion\Run\&#8221;SessionMngr&#8221; = &#8220;C:\Documents and Settings\All Users\Application Data\PolariSys\dirlock.exe&#8221;<br />
HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows NT\CurrentVersion\Winlogon\&#8221;Shell&#8221; = &#8220;Explorer.exe \&#8221;C:\Documents and Settings\All Users\Application Data\Microsoft\Keyboard\kbdsys.exe\&#8221;</p>
<p>4. Edit the following entries too:<br />
HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows NT\CurrentVersion\SystemRestore\&#8221;DisableSR&#8221; = &#8220;1&#8243;<br />
HKEY_CURRENT_USER\Software\Microsoft\Windows\CurrentVersion\Explorer\Advanced\&#8221;Hidden&#8221; = &#8220;2&#8243;<br />
HKEY_CURRENT_USER\Software\Microsoft\Windows\CurrentVersion\Explorer\Advanced\&#8221;HideFileExt&#8221; = &#8220;1&#8243;<br />
HKEY_CURRENT_USER\Software\Microsoft\Windows\CurrentVersion\Explorer\Advanced\&#8221;ShowSuperHidden&#8221; = &#8220;1&#8243;<br />
HKEY_USERS\.DEFAULT\Software\Microsoft\Windows\CurrentVersion\Explorer\Advanced\&#8221;Hidden&#8221; = &#8220;2&#8243;<br />
HKEY_USERS\.DEFAULT\Software\Microsoft\Windows\CurrentVersion\Explorer\Advanced\&#8221;HideFileExt&#8221; = &#8220;1&#8243;<br />
HKEY_USERS\.DEFAULT\Software\Microsoft\Windows\CurrentVersion\Explorer\Advanced\&#8221;ShowSuperHidden&#8221; = &#8220;0&#8243;<br />
HKEY_USERS\.DEFAULT\Software\Microsoft\Windows\CurrentVersion\Explorer\Advanced\&#8221;SuperHidden&#8221; = &#8220;1&#8243;<br />
HKEY_CURRENT_USER\Software\Microsoft\Windows\CurrentVersion\Policies\Explorer\&#8221;NoFolderOptions&#8221; = &#8220;1&#8243;</p>
<p>Note: &#8220;0&#8243; is to disable, &#8220;1&#8243; is to enable. </p>
<p>Very Important Note:<br />
Use Attribute Changer first to fix regular folders&#8217; attribute BEFORE fixing the registry.<br />
________________________________________</p>
<p>here&#8217;s my regentry for the above:<br />
HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows NT\CurrentVersion\SystemRestore\&#8221;DisableSR&#8221; = &#8220;1&#8243;<br />
HKEY_CURRENT_USER\Software\Microsoft\Windows\CurrentVersion\Explorer\Advanced\&#8221;Hidden&#8221; = &#8220;2&#8243;<br />
HKEY_CURRENT_USER\Software\Microsoft\Windows\CurrentVersion\Explorer\Advanced\&#8221;HideFileExt&#8221; = &#8220;1&#8243;<br />
HKEY_CURRENT_USER\Software\Microsoft\Windows\CurrentVersion\Explorer\Advanced\&#8221;ShowSuperHidden&#8221; = &#8220;0&#8243;<br />
HKEY_CURRENT_USER\Software\Microsoft\Windows\CurrentVersion\Explorer\Advanced\&#8221;SuperHidden&#8221; = &#8220;0&#8243; </p>
<p>________________________________________</p>
<p>5. Manually delete the following files<br />
%System%\hlpsvc1.exe<br />
%System%\hlpsvc2.exe<br />
%SystemDrive%\Read1st!.exe<br />
%SystemDrive%\goats.exe<br />
%Windir%\Classified.exe<br />
%Windir%\system.exe<br />
%Windir%\lsass.exe<br />
%Windir%\shutdown.dll<br />
%UserProfile%\My Documents\Classified.exe<br />
C:\Documents and Settings\All Users\Application Data\Microsoft\Keyboard\kbdsys.exe<br />
C:\Documents and Settings\All Users\Application Data\PolariSys\dirlock.exe </p>
<p>Also clear your startup folder</p>
<p>%Windir%\ is usually Windows (unless you specified a diff one upon OS installation)<br />
%system% and %systemDrive%\ is the drive where your OS is (usually C: drive)</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Classified.exe by kirby</title>
		<link>http://www.precisesecurity.com/files-process/2009/07/16/classifiedexe/#comment-4128</link>
		<dc:creator>kirby</dc:creator>
		<pubDate>Fri, 16 Oct 2009 03:16:34 +0000</pubDate>
		<guid isPermaLink="false">http://www.precisesecurity.com/files-process/?p=2293#comment-4128</guid>
		<description>how do i show all the folders????</description>
		<content:encoded><![CDATA[<p>how do i show all the folders????</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Classified.exe by kirby</title>
		<link>http://www.precisesecurity.com/files-process/2009/07/16/classifiedexe/#comment-4127</link>
		<dc:creator>kirby</dc:creator>
		<pubDate>Fri, 16 Oct 2009 03:15:12 +0000</pubDate>
		<guid isPermaLink="false">http://www.precisesecurity.com/files-process/?p=2293#comment-4127</guid>
		<description>all my foldera are gone. there is no folder options. how do i get it back? pls help jeff</description>
		<content:encoded><![CDATA[<p>all my foldera are gone. there is no folder options. how do i get it back? pls help jeff</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Classified.exe by kirby</title>
		<link>http://www.precisesecurity.com/files-process/2009/07/16/classifiedexe/#comment-4126</link>
		<dc:creator>kirby</dc:creator>
		<pubDate>Fri, 16 Oct 2009 00:11:49 +0000</pubDate>
		<guid isPermaLink="false">http://www.precisesecurity.com/files-process/?p=2293#comment-4126</guid>
		<description>thanks jeff!</description>
		<content:encoded><![CDATA[<p>thanks jeff!</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Classified.exe by weirdzal</title>
		<link>http://www.precisesecurity.com/files-process/2009/07/16/classifiedexe/#comment-4125</link>
		<dc:creator>weirdzal</dc:creator>
		<pubDate>Thu, 15 Oct 2009 03:29:02 +0000</pubDate>
		<guid isPermaLink="false">http://www.precisesecurity.com/files-process/?p=2293#comment-4125</guid>
		<description>can i just copy the &quot;Advanced&quot; folder from another pc and paste it on the directory on my pc?</description>
		<content:encoded><![CDATA[<p>can i just copy the &#8220;Advanced&#8221; folder from another pc and paste it on the directory on my pc?</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Classified.exe by weirdzal</title>
		<link>http://www.precisesecurity.com/files-process/2009/07/16/classifiedexe/#comment-4124</link>
		<dc:creator>weirdzal</dc:creator>
		<pubDate>Wed, 14 Oct 2009 01:49:06 +0000</pubDate>
		<guid isPermaLink="false">http://www.precisesecurity.com/files-process/?p=2293#comment-4124</guid>
		<description>Hi Jeff...what if in the part below where the &quot;Advanced&quot; folder is missing in my case...how do i go around with this?

HKEY_USERS\.DEFAULT\Software\Microsoft\Windows\CurrentVersion\Explorer\
Advanced\”Hidden” = “2?
HKEY_USERS\.DEFAULT\Software\Microsoft\Windows\CurrentVersion\Explorer
Advanced\”HideFileExt” = “1?
HKEY_USERS\.DEFAULT\Software\Microsoft\Windows\CurrentVersion\Explorer\
Advanced\”ShowSuperHidden” = “0?
HKEY_USERS\.DEFAULT\Software\Microsoft\Windows\CurrentVersion\Explorer\
Advanced\”SuperHidden” = “1?


Thanks for all the help i could get =)</description>
		<content:encoded><![CDATA[<p>Hi Jeff&#8230;what if in the part below where the &#8220;Advanced&#8221; folder is missing in my case&#8230;how do i go around with this?</p>
<p>HKEY_USERS\.DEFAULT\Software\Microsoft\Windows\CurrentVersion\Explorer\<br />
Advanced\”Hidden” = “2?<br />
HKEY_USERS\.DEFAULT\Software\Microsoft\Windows\CurrentVersion\Explorer<br />
Advanced\”HideFileExt” = “1?<br />
HKEY_USERS\.DEFAULT\Software\Microsoft\Windows\CurrentVersion\Explorer\<br />
Advanced\”ShowSuperHidden” = “0?<br />
HKEY_USERS\.DEFAULT\Software\Microsoft\Windows\CurrentVersion\Explorer\<br />
Advanced\”SuperHidden” = “1?</p>
<p>Thanks for all the help i could get =)</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on zxx by bgeo</title>
		<link>http://www.precisesecurity.com/files-process/2009/06/15/zxx/#comment-4123</link>
		<dc:creator>bgeo</dc:creator>
		<pubDate>Mon, 12 Oct 2009 17:54:02 +0000</pubDate>
		<guid isPermaLink="false">http://www.precisesecurity.com/files-process/?p=2061#comment-4123</guid>
		<description>Just ran a scan with STOPzilla and removed 81 threats - however, there was one with a high threat quotiant, Zxx, which Stopzilla could not remove - what is it?  how dangerous?  I can&#039;t find it in any component/program list - how do I get rid of it?</description>
		<content:encoded><![CDATA[<p>Just ran a scan with STOPzilla and removed 81 threats &#8211; however, there was one with a high threat quotiant, Zxx, which Stopzilla could not remove &#8211; what is it?  how dangerous?  I can&#8217;t find it in any component/program list &#8211; how do I get rid of it?</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on True_Love.exe by loganathan</title>
		<link>http://www.precisesecurity.com/files-process/2008/02/23/true_loveexe/#comment-4122</link>
		<dc:creator>loganathan</dc:creator>
		<pubDate>Sun, 04 Oct 2009 09:32:53 +0000</pubDate>
		<guid isPermaLink="false">http://www.precisesecurity.com/files-process/2008/02/23/true_loveexe/#comment-4122</guid>
		<description>i have avast antivirus.but true love.exe virus cant able to remove by avast .its permanently in my pendrive. icant able to format my pen drive.</description>
		<content:encoded><![CDATA[<p>i have avast antivirus.but true love.exe virus cant able to remove by avast .its permanently in my pendrive. icant able to format my pen drive.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on MarioForever.exe by cisso</title>
		<link>http://www.precisesecurity.com/files-process/2008/05/10/marioforeverexe/#comment-4121</link>
		<dc:creator>cisso</dc:creator>
		<pubDate>Tue, 29 Sep 2009 18:19:06 +0000</pubDate>
		<guid isPermaLink="false">http://www.precisesecurity.com/files-process/?p=1136#comment-4121</guid>
		<description>je demande le jeu marioforever.zip 18 Mo
ou marioforever.exe 16 Mo</description>
		<content:encoded><![CDATA[<p>je demande le jeu marioforever.zip 18 Mo<br />
ou marioforever.exe 16 Mo</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on winupgro.exe by Alex</title>
		<link>http://www.precisesecurity.com/files-process/2008/12/28/winupgro/#comment-4119</link>
		<dc:creator>Alex</dc:creator>
		<pubDate>Sun, 27 Sep 2009 02:50:15 +0000</pubDate>
		<guid isPermaLink="false">http://www.precisesecurity.com/files-process/?p=1408#comment-4119</guid>
		<description>Thanks Yasser. Worked for me. Similar file I found was NtuneCmd.exe in Nvidia Ntune folder. Deleted both NtuneCmd.exe and winupgro.exe and their registry entries, and it worked.
Creating checksum lasted about 10 hours, so thanks 
to Anish for his workaround tip too.</description>
		<content:encoded><![CDATA[<p>Thanks Yasser. Worked for me. Similar file I found was NtuneCmd.exe in Nvidia Ntune folder. Deleted both NtuneCmd.exe and winupgro.exe and their registry entries, and it worked.<br />
Creating checksum lasted about 10 hours, so thanks<br />
to Anish for his workaround tip too.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on True_Love.exe by ragend</title>
		<link>http://www.precisesecurity.com/files-process/2008/02/23/true_loveexe/#comment-4118</link>
		<dc:creator>ragend</dc:creator>
		<pubDate>Fri, 25 Sep 2009 13:24:44 +0000</pubDate>
		<guid isPermaLink="false">http://www.precisesecurity.com/files-process/2008/02/23/true_loveexe/#comment-4118</guid>
		<description>i have true-love.exe on my computer.....................</description>
		<content:encoded><![CDATA[<p>i have true-love.exe on my computer&#8230;&#8230;&#8230;&#8230;&#8230;&#8230;&#8230;</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on winupgro.exe by Anish</title>
		<link>http://www.precisesecurity.com/files-process/2008/12/28/winupgro/#comment-4117</link>
		<dc:creator>Anish</dc:creator>
		<pubDate>Wed, 23 Sep 2009 06:04:37 +0000</pubDate>
		<guid isPermaLink="false">http://www.precisesecurity.com/files-process/?p=1408#comment-4117</guid>
		<description>Thanks Yasser and everyone. Your tip was a great help.
My C drive contains huge amount of data and it took more than 3 hours to create checksum for half of the files in hard disk.
I tried a tricky workaround. It worked for me, I hope it might help u guys too.

I looked at the property of [%appdata%\drivers\winupgro.exe] which were following
size:=856064B date:=5/6/2006

I did a search of this specific file using windows search including hidden files.
To my surprise I got the other file withing minutes.
In my case it was [%appdata%\..\Local\Google\Update\GoogleUpdate.exe] which got overwritten.
&quot;GoogleUpdate.exe&quot; uses windows scheduler and calls itself pretty often like when system is idel or when it restarts...

Also one another observation:
Look at these place where the winupgro.exe points to.
[HKEY_CURRENT_USER\Software\Microsoft\Windows\CurrentVersion\Run]
or
[HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows\CurrentVersion\Run]
the hidden overwritten exe might be one of the exe listed in these locations.

Regards
Anish</description>
		<content:encoded><![CDATA[<p>Thanks Yasser and everyone. Your tip was a great help.<br />
My C drive contains huge amount of data and it took more than 3 hours to create checksum for half of the files in hard disk.<br />
I tried a tricky workaround. It worked for me, I hope it might help u guys too.</p>
<p>I looked at the property of [%appdata%\drivers\winupgro.exe] which were following<br />
size:=856064B date:=5/6/2006</p>
<p>I did a search of this specific file using windows search including hidden files.<br />
To my surprise I got the other file withing minutes.<br />
In my case it was [%appdata%\..\Local\Google\Update\GoogleUpdate.exe] which got overwritten.<br />
&#8220;GoogleUpdate.exe&#8221; uses windows scheduler and calls itself pretty often like when system is idel or when it restarts&#8230;</p>
<p>Also one another observation:<br />
Look at these place where the winupgro.exe points to.<br />
[HKEY_CURRENT_USER\Software\Microsoft\Windows\CurrentVersion\Run]<br />
or<br />
[HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows\CurrentVersion\Run]<br />
the hidden overwritten exe might be one of the exe listed in these locations.</p>
<p>Regards<br />
Anish</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Data Administrator.exe by ashkan</title>
		<link>http://www.precisesecurity.com/files-process/2008/01/25/data-administratorexe/#comment-4116</link>
		<dc:creator>ashkan</dc:creator>
		<pubDate>Mon, 21 Sep 2009 03:08:40 +0000</pubDate>
		<guid isPermaLink="false">http://www.precisesecurity.com/files-process/2008/01/25/data-administratorexe/#comment-4116</guid>
		<description>anti adminstrator.exe</description>
		<content:encoded><![CDATA[<p>anti adminstrator.exe</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on True_Love.exe by Dinesh Babu</title>
		<link>http://www.precisesecurity.com/files-process/2008/02/23/true_loveexe/#comment-4114</link>
		<dc:creator>Dinesh Babu</dc:creator>
		<pubDate>Fri, 18 Sep 2009 11:22:02 +0000</pubDate>
		<guid isPermaLink="false">http://www.precisesecurity.com/files-process/2008/02/23/true_loveexe/#comment-4114</guid>
		<description>Easy Way To Remove True_love.exe is stop  Msrun32 services by ending it in taskmanger and find msrun32 and remove the file . 


at last delete true_love in drive. then virus problem will be over</description>
		<content:encoded><![CDATA[<p>Easy Way To Remove True_love.exe is stop  Msrun32 services by ending it in taskmanger and find msrun32 and remove the file . </p>
<p>at last delete true_love in drive. then virus problem will be over</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on My SeXy.exe by tj</title>
		<link>http://www.precisesecurity.com/files-process/2006/11/24/my-sexyexe/#comment-4113</link>
		<dc:creator>tj</dc:creator>
		<pubDate>Fri, 18 Sep 2009 10:21:13 +0000</pubDate>
		<guid isPermaLink="false">http://precisesecurity.com/files-process/2006/11/24/my-sexyexe/#comment-4113</guid>
		<description>plz i have a problem wit this virus
i need a removal tool that can help me remove it frm my system.</description>
		<content:encoded><![CDATA[<p>plz i have a problem wit this virus<br />
i need a removal tool that can help me remove it frm my system.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Classified.exe by Roberto</title>
		<link>http://www.precisesecurity.com/files-process/2009/07/16/classifiedexe/#comment-4112</link>
		<dc:creator>Roberto</dc:creator>
		<pubDate>Fri, 18 Sep 2009 10:03:25 +0000</pubDate>
		<guid isPermaLink="false">http://www.precisesecurity.com/files-process/?p=2293#comment-4112</guid>
		<description>Thanks a lot jeff.  It worked.</description>
		<content:encoded><![CDATA[<p>Thanks a lot jeff.  It worked.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Classified.exe by Rem</title>
		<link>http://www.precisesecurity.com/files-process/2009/07/16/classifiedexe/#comment-4110</link>
		<dc:creator>Rem</dc:creator>
		<pubDate>Tue, 15 Sep 2009 02:06:45 +0000</pubDate>
		<guid isPermaLink="false">http://www.precisesecurity.com/files-process/?p=2293#comment-4110</guid>
		<description>thanks jeff !</description>
		<content:encoded><![CDATA[<p>thanks jeff !</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on ikowin32.exe by Andrew</title>
		<link>http://www.precisesecurity.com/files-process/2009/08/20/ikowin32exe/#comment-4109</link>
		<dc:creator>Andrew</dc:creator>
		<pubDate>Mon, 14 Sep 2009 21:33:39 +0000</pubDate>
		<guid isPermaLink="false">http://www.precisesecurity.com/files-process/?p=2480#comment-4109</guid>
		<description>Jason you douche there are people in the world who speak other languages who may not know how to speak English perfectly.</description>
		<content:encoded><![CDATA[<p>Jason you douche there are people in the world who speak other languages who may not know how to speak English perfectly.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on winupgro.exe by Amundo</title>
		<link>http://www.precisesecurity.com/files-process/2008/12/28/winupgro/#comment-4108</link>
		<dc:creator>Amundo</dc:creator>
		<pubDate>Sat, 12 Sep 2009 10:01:53 +0000</pubDate>
		<guid isPermaLink="false">http://www.precisesecurity.com/files-process/?p=1408#comment-4108</guid>
		<description>Thanks to this forum and &quot;ComboFix&quot;, I was able to delete the infected files (unfortunately, I still have some suspicious entries in my registry). On my machine, this is what I found: it behaves like a rootkit and hooks several important system processes. It keeps watch for AV products (including &quot;ComboFix&quot; - when downloading, rename it to something else, like &quot;Combo-Fix&quot;, else you&#039;ll get &quot;invalid Win32 application&quot;) and will corrupt? or intercept? attempts at running them. It will then check your registry and find a program that starts when Windows starts - it will replace it with the Winupgro.exe, renamed as the applications original filename (in my case, I had KeePass password keeper in my startup - it was only by accident I was wondering why it was not autostarting anymore - it had the same icon as the infecting program!! - that&#039;s why I noticed it!!!). So if you know what you&#039;re doing, as has been mentioned previously, use MSCONFIG or AUTORUNS to see what gets executed at startup, and target these for the MD5 checksum, rather that checking the whole of the C: drive. (&quot;ComboFix&quot; does seem to work, though, I just lost track of all the things I did).</description>
		<content:encoded><![CDATA[<p>Thanks to this forum and &#8220;ComboFix&#8221;, I was able to delete the infected files (unfortunately, I still have some suspicious entries in my registry). On my machine, this is what I found: it behaves like a rootkit and hooks several important system processes. It keeps watch for AV products (including &#8220;ComboFix&#8221; &#8211; when downloading, rename it to something else, like &#8220;Combo-Fix&#8221;, else you&#8217;ll get &#8220;invalid Win32 application&#8221;) and will corrupt? or intercept? attempts at running them. It will then check your registry and find a program that starts when Windows starts &#8211; it will replace it with the Winupgro.exe, renamed as the applications original filename (in my case, I had KeePass password keeper in my startup &#8211; it was only by accident I was wondering why it was not autostarting anymore &#8211; it had the same icon as the infecting program!! &#8211; that&#8217;s why I noticed it!!!). So if you know what you&#8217;re doing, as has been mentioned previously, use MSCONFIG or AUTORUNS to see what gets executed at startup, and target these for the MD5 checksum, rather that checking the whole of the C: drive. (&#8220;ComboFix&#8221; does seem to work, though, I just lost track of all the things I did).</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on ProtectFile.vbs by Siddharth</title>
		<link>http://www.precisesecurity.com/files-process/2008/11/26/protectfile-vbs/#comment-4099</link>
		<dc:creator>Siddharth</dc:creator>
		<pubDate>Mon, 07 Sep 2009 06:05:15 +0000</pubDate>
		<guid isPermaLink="false">http://www.precisesecurity.com/files-process/?p=1362#comment-4099</guid>
		<description>When i tried the Move ON boot tool to rename first of all the it says New Name should contain a valid relative local file system path and if oi dont specify the path it says the source file doesnt exist.What to do please help</description>
		<content:encoded><![CDATA[<p>When i tried the Move ON boot tool to rename first of all the it says New Name should contain a valid relative local file system path and if oi dont specify the path it says the source file doesnt exist.What to do please help</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on braviax.exe by ty</title>
		<link>http://www.precisesecurity.com/files-process/2008/05/10/braviaxexe/#comment-4095</link>
		<dc:creator>ty</dc:creator>
		<pubDate>Sat, 05 Sep 2009 19:57:49 +0000</pubDate>
		<guid isPermaLink="false">http://www.precisesecurity.com/files-process/?p=1137#comment-4095</guid>
		<description>to kill braviax.exe :

1-shut down internet.
2-open task manager
3-end braviax.exe and its creator sys32_nov.exe
4-than open windows/system32/
5-search find and delete with unlocker these found files sys32_nov.exe and braviax.exe in system32 folder..it means you survived braviax.exe))</description>
		<content:encoded><![CDATA[<p>to kill braviax.exe :</p>
<p>1-shut down internet.<br />
2-open task manager<br />
3-end braviax.exe and its creator sys32_nov.exe<br />
4-than open windows/system32/<br />
5-search find and delete with unlocker these found files sys32_nov.exe and braviax.exe in system32 folder..it means you survived braviax.exe))</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Classified.exe by Mike</title>
		<link>http://www.precisesecurity.com/files-process/2009/07/16/classifiedexe/#comment-4093</link>
		<dc:creator>Mike</dc:creator>
		<pubDate>Sat, 05 Sep 2009 09:29:04 +0000</pubDate>
		<guid isPermaLink="false">http://www.precisesecurity.com/files-process/?p=2293#comment-4093</guid>
		<description>Oct 10 2007, 09:24 AM

Here&#039;s a Tip on USB Devices on protecting them..  Hope you want this... Enjoy  

1. Check first the Auto Insert Notification setttings. Set it to &quot;prompt user...&quot;.
2. Insert your USB device
3. Open &quot;My Computer&quot; after the USB loads
4. DON&#039;T left-click, but right-click on the USB drive
5. Check: (very important)

if it displays:
QUOTE
Open
Explore
Search
Autoplay


then it&#039;s safe.

if it displays:
QUOTE
Autoplay
Open
Explore
Search


or:
QUOTE
Auto
Autoplay
Open
Explore
Search


or:
QUOTE
0pen
Autoplay
Open
Explore
Search


or:
QUOTE
Open
Autoplay Folder Options. If Folder Options isn&#039;t displayed, then proceed to step 7**
2. Go to the View tab, then enable &quot;Show hidden files and folders&quot;, and uncheck &quot;Hide extensions for known file types&quot; and &quot;Hide protected operating files&quot; (click yes on this part)
3. Apply and Ok
4. Click the address bar
5. Type the drive letter of your USB device (example - F:\)
6. Look for suspicious files... like EXE files that has the icon of a folder, and named after the folder it is in... or VBS files in the root folder... or krag.exe and other unnecessary executables, or the folder RECYCLER. Delete those.
7. Run Notepad
8. Go to File&gt;Save As, go to any folder you want to save.
9. Name it as &quot;autorun.inf&quot;, then save.
10. Copy autorun.inf
11. Paste it on the root folder of the USB drive (example - F:\)
12.Confirm file overwrite.
13. Reconnect your USB device.
14. Finished. No more Autoplay.

**if there is no Folder Options, then it might have been disabled by the administrator, or your system also has already been infected.

===================================

Also dont Reboot PC (pressing restart button.) while your USB Device is inserted. it can corrupt data...</description>
		<content:encoded><![CDATA[<p>Oct 10 2007, 09:24 AM</p>
<p>Here&#8217;s a Tip on USB Devices on protecting them..  Hope you want this&#8230; Enjoy  </p>
<p>1. Check first the Auto Insert Notification setttings. Set it to &#8220;prompt user&#8230;&#8221;.<br />
2. Insert your USB device<br />
3. Open &#8220;My Computer&#8221; after the USB loads<br />
4. DON&#8217;T left-click, but right-click on the USB drive<br />
5. Check: (very important)</p>
<p>if it displays:<br />
QUOTE<br />
Open<br />
Explore<br />
Search<br />
Autoplay</p>
<p>then it&#8217;s safe.</p>
<p>if it displays:<br />
QUOTE<br />
Autoplay<br />
Open<br />
Explore<br />
Search</p>
<p>or:<br />
QUOTE<br />
Auto<br />
Autoplay<br />
Open<br />
Explore<br />
Search</p>
<p>or:<br />
QUOTE<br />
0pen<br />
Autoplay<br />
Open<br />
Explore<br />
Search</p>
<p>or:<br />
QUOTE<br />
Open<br />
Autoplay Folder Options. If Folder Options isn&#8217;t displayed, then proceed to step 7**<br />
2. Go to the View tab, then enable &#8220;Show hidden files and folders&#8221;, and uncheck &#8220;Hide extensions for known file types&#8221; and &#8220;Hide protected operating files&#8221; (click yes on this part)<br />
3. Apply and Ok<br />
4. Click the address bar<br />
5. Type the drive letter of your USB device (example &#8211; F:\)<br />
6. Look for suspicious files&#8230; like EXE files that has the icon of a folder, and named after the folder it is in&#8230; or VBS files in the root folder&#8230; or krag.exe and other unnecessary executables, or the folder RECYCLER. Delete those.<br />
7. Run Notepad<br />
8. Go to File&gt;Save As, go to any folder you want to save.<br />
9. Name it as &#8220;autorun.inf&#8221;, then save.<br />
10. Copy autorun.inf<br />
11. Paste it on the root folder of the USB drive (example &#8211; F:\)<br />
12.Confirm file overwrite.<br />
13. Reconnect your USB device.<br />
14. Finished. No more Autoplay.</p>
<p>**if there is no Folder Options, then it might have been disabled by the administrator, or your system also has already been infected.</p>
<p>===================================</p>
<p>Also dont Reboot PC (pressing restart button.) while your USB Device is inserted. it can corrupt data&#8230;</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on ikowin32.exe by Jason</title>
		<link>http://www.precisesecurity.com/files-process/2009/08/20/ikowin32exe/#comment-4088</link>
		<dc:creator>Jason</dc:creator>
		<pubDate>Thu, 03 Sep 2009 23:49:39 +0000</pubDate>
		<guid isPermaLink="false">http://www.precisesecurity.com/files-process/?p=2480#comment-4088</guid>
		<description>&quot;is still a threat?&quot;

&quot;just hide in usb and moved in my files in startup and avg catched&quot;

&quot;Should I must install an anti-spyware?&quot;

WHAT ARE YOU TRYING TO SAY???

Before you expect someone to fix your issue, learn how to use proper grammar.  It goes a long way in being able to understand what someone is trying to say, not to mention it&#039;s just plain lazy and dumb.</description>
		<content:encoded><![CDATA[<p>&#8220;is still a threat?&#8221;</p>
<p>&#8220;just hide in usb and moved in my files in startup and avg catched&#8221;</p>
<p>&#8220;Should I must install an anti-spyware?&#8221;</p>
<p>WHAT ARE YOU TRYING TO SAY???</p>
<p>Before you expect someone to fix your issue, learn how to use proper grammar.  It goes a long way in being able to understand what someone is trying to say, not to mention it&#8217;s just plain lazy and dumb.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on winjpg.jpg by Aman</title>
		<link>http://www.precisesecurity.com/files-process/2009/05/20/winjpgjpg/#comment-4087</link>
		<dc:creator>Aman</dc:creator>
		<pubDate>Thu, 03 Sep 2009 20:39:13 +0000</pubDate>
		<guid isPermaLink="false">http://www.precisesecurity.com/files-process/?p=1925#comment-4087</guid>
		<description>Dear 
Ven i enter the system password at login it hangs for somtime then enter can u help me out.</description>
		<content:encoded><![CDATA[<p>Dear<br />
Ven i enter the system password at login it hangs for somtime then enter can u help me out.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on winupgro.exe by francesco</title>
		<link>http://www.precisesecurity.com/files-process/2008/12/28/winupgro/#comment-4078</link>
		<dc:creator>francesco</dc:creator>
		<pubDate>Tue, 01 Sep 2009 07:56:52 +0000</pubDate>
		<guid isPermaLink="false">http://www.precisesecurity.com/files-process/?p=1408#comment-4078</guid>
		<description>Hi Yasser, i tried your procedure, it&#039; ok the OUT.txt file, i found the others files were the winupgro was hidden but the problem is that these file togheter with the winupgro.exe file are not deletable....when i try to delete thme i get the messase &quot;access denied&quot; disk could be full or write protected or the file is currently in use....and it&#039;s true because the winupgro is running as virus gettin the 99% of the cpu resources! 
How can i get out of this trick!??
thanks for your help!
francesco</description>
		<content:encoded><![CDATA[<p>Hi Yasser, i tried your procedure, it&#8217; ok the OUT.txt file, i found the others files were the winupgro was hidden but the problem is that these file togheter with the winupgro.exe file are not deletable&#8230;.when i try to delete thme i get the messase &#8220;access denied&#8221; disk could be full or write protected or the file is currently in use&#8230;.and it&#8217;s true because the winupgro is running as virus gettin the 99% of the cpu resources!<br />
How can i get out of this trick!??<br />
thanks for your help!<br />
francesco</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on winupgro.exe by Ozgur</title>
		<link>http://www.precisesecurity.com/files-process/2008/12/28/winupgro/#comment-4063</link>
		<dc:creator>Ozgur</dc:creator>
		<pubDate>Fri, 28 Aug 2009 23:45:15 +0000</pubDate>
		<guid isPermaLink="false">http://www.precisesecurity.com/files-process/?p=1408#comment-4063</guid>
		<description>It is working 100%. Thanks again.</description>
		<content:encoded><![CDATA[<p>It is working 100%. Thanks again.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on True_Love.exe by Mohan.S</title>
		<link>http://www.precisesecurity.com/files-process/2008/02/23/true_loveexe/#comment-4055</link>
		<dc:creator>Mohan.S</dc:creator>
		<pubDate>Thu, 27 Aug 2009 12:36:07 +0000</pubDate>
		<guid isPermaLink="false">http://www.precisesecurity.com/files-process/2008/02/23/true_loveexe/#comment-4055</guid>
		<description>I am alos effected that the same virus, so please help me.</description>
		<content:encoded><![CDATA[<p>I am alos effected that the same virus, so please help me.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on vshost.exe by razvan</title>
		<link>http://www.precisesecurity.com/files-process/2009/03/06/vshost-exe/#comment-4054</link>
		<dc:creator>razvan</dc:creator>
		<pubDate>Thu, 27 Aug 2009 12:03:30 +0000</pubDate>
		<guid isPermaLink="false">http://www.precisesecurity.com/files-process/?p=1578#comment-4054</guid>
		<description>hi,guys i have a problem with vshost.exe...when i try to entire in D: partitio i receive a vshost message like zgb..please help me:((</description>
		<content:encoded><![CDATA[<p>hi,guys i have a problem with vshost.exe&#8230;when i try to entire in D: partitio i receive a vshost message like zgb..please help me:((</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on FUvirus.exe by Sheena Shroff</title>
		<link>http://www.precisesecurity.com/files-process/2008/12/11/fuvirusexe/#comment-4053</link>
		<dc:creator>Sheena Shroff</dc:creator>
		<pubDate>Wed, 26 Aug 2009 01:09:44 +0000</pubDate>
		<guid isPermaLink="false">http://www.precisesecurity.com/files-process/?p=1373#comment-4053</guid>
		<description>Hi there I got hit by the FU virus and I was wondering if ISRESET works with AVG. Please help all my important office files got hit.</description>
		<content:encoded><![CDATA[<p>Hi there I got hit by the FU virus and I was wondering if ISRESET works with AVG. Please help all my important office files got hit.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on rncsys32.exe by rqqt</title>
		<link>http://www.precisesecurity.com/files-process/2009/06/08/rncsys32-exe/#comment-4049</link>
		<dc:creator>rqqt</dc:creator>
		<pubDate>Mon, 24 Aug 2009 11:21:56 +0000</pubDate>
		<guid isPermaLink="false">http://www.precisesecurity.com/files-process/?p=2018#comment-4049</guid>
		<description>this malware can hijack server files ... piggys back to your other network machines.

I has got infected by this pairup:
rncsys32.exe
kovin32.exe</description>
		<content:encoded><![CDATA[<p>this malware can hijack server files &#8230; piggys back to your other network machines.</p>
<p>I has got infected by this pairup:<br />
rncsys32.exe<br />
kovin32.exe</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on ikowin32.exe by FND</title>
		<link>http://www.precisesecurity.com/files-process/2009/08/20/ikowin32exe/#comment-4048</link>
		<dc:creator>FND</dc:creator>
		<pubDate>Sat, 22 Aug 2009 11:43:00 +0000</pubDate>
		<guid isPermaLink="false">http://www.precisesecurity.com/files-process/?p=2480#comment-4048</guid>
		<description>yes but if moved by usb and was deleted by the avg, is still a threat?
the program virus is not installed on my pc, just hide in usb and moved in my files in startup and avg catched
Should i must install an anti-spyware?</description>
		<content:encoded><![CDATA[<p>yes but if moved by usb and was deleted by the avg, is still a threat?<br />
the program virus is not installed on my pc, just hide in usb and moved in my files in startup and avg catched<br />
Should i must install an anti-spyware?</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on vshost.exe by mihai</title>
		<link>http://www.precisesecurity.com/files-process/2009/03/06/vshost-exe/#comment-4047</link>
		<dc:creator>mihai</dc:creator>
		<pubDate>Fri, 21 Aug 2009 14:00:55 +0000</pubDate>
		<guid isPermaLink="false">http://www.precisesecurity.com/files-process/?p=1578#comment-4047</guid>
		<description>Hi, my PC does the same thing. I saw that nobody answered at your post for a long time, why is site for anyway?</description>
		<content:encoded><![CDATA[<p>Hi, my PC does the same thing. I saw that nobody answered at your post for a long time, why is site for anyway?</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Classified.exe by Jeff</title>
		<link>http://www.precisesecurity.com/files-process/2009/07/16/classifiedexe/#comment-4046</link>
		<dc:creator>Jeff</dc:creator>
		<pubDate>Thu, 20 Aug 2009 17:43:11 +0000</pubDate>
		<guid isPermaLink="false">http://www.precisesecurity.com/files-process/?p=2293#comment-4046</guid>
		<description>Guys try this to remove Classified.exe worm

1. Download Hitman Pro 3.5 and run it to your computer
* This will remove threats in windows. Restart your computer

2. Download Kaspersk removal tool and run this in your computer. 
* Run this tool after hitman. Remove all the threats that were found

3. Open regedit and do the following
HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows NT\CurrentVersion\
SystemRestore\&quot;DisableSR&quot; = &quot;1&quot; 
HKEY_CURRENT_USER\Software\Microsoft\Windows\CurrentVersion\Explorer\A
dvanced\&quot;Hidden&quot; = &quot;2&quot; 
HKEY_CURRENT_USER\Software\Microsoft\Windows\CurrentVersion\Explorer\
Advanced\&quot;HideFileExt&quot; = &quot;1&quot; 
HKEY_CURRENT_USER\Software\Microsoft\Windows\CurrentVersion\Explorer\
Advanced\&quot;ShowSuperHidden&quot; = &quot;1&quot; 

HKEY_USERS\.DEFAULT\Software\Microsoft\Windows\CurrentVersion\Explorer\
Advanced\&quot;Hidden&quot; = &quot;2&quot; 
HKEY_USERS\.DEFAULT\Software\Microsoft\Windows\CurrentVersion\Explorer
Advanced\&quot;HideFileExt&quot; = &quot;1&quot; 
HKEY_USERS\.DEFAULT\Software\Microsoft\Windows\CurrentVersion\Explorer\
Advanced\&quot;ShowSuperHidden&quot; = &quot;0&quot; 
HKEY_USERS\.DEFAULT\Software\Microsoft\Windows\CurrentVersion\Explorer\
Advanced\&quot;SuperHidden&quot; = &quot;1&quot; 
HKEY_CURRENT_USER\Software\Microsoft\Windows\CurrentVersion\Policies\Explorer
\&quot;NoFolderOptions&quot; = &quot;1&quot;

4. Show all the folders. Open run command and type this to the terminal: 

attrib -h -s /s /d

*At this point the folders were back and your computer is now free from Classified.exe

5. Rescan again just to make sure your computer is safe from any threats</description>
		<content:encoded><![CDATA[<p>Guys try this to remove Classified.exe worm</p>
<p>1. Download Hitman Pro 3.5 and run it to your computer<br />
* This will remove threats in windows. Restart your computer</p>
<p>2. Download Kaspersk removal tool and run this in your computer.<br />
* Run this tool after hitman. Remove all the threats that were found</p>
<p>3. Open regedit and do the following<br />
HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows NT\CurrentVersion\<br />
SystemRestore\&#8221;DisableSR&#8221; = &#8220;1&#8243;<br />
HKEY_CURRENT_USER\Software\Microsoft\Windows\CurrentVersion\Explorer\A<br />
dvanced\&#8221;Hidden&#8221; = &#8220;2&#8243;<br />
HKEY_CURRENT_USER\Software\Microsoft\Windows\CurrentVersion\Explorer\<br />
Advanced\&#8221;HideFileExt&#8221; = &#8220;1&#8243;<br />
HKEY_CURRENT_USER\Software\Microsoft\Windows\CurrentVersion\Explorer\<br />
Advanced\&#8221;ShowSuperHidden&#8221; = &#8220;1&#8243; </p>
<p>HKEY_USERS\.DEFAULT\Software\Microsoft\Windows\CurrentVersion\Explorer\<br />
Advanced\&#8221;Hidden&#8221; = &#8220;2&#8243;<br />
HKEY_USERS\.DEFAULT\Software\Microsoft\Windows\CurrentVersion\Explorer<br />
Advanced\&#8221;HideFileExt&#8221; = &#8220;1&#8243;<br />
HKEY_USERS\.DEFAULT\Software\Microsoft\Windows\CurrentVersion\Explorer\<br />
Advanced\&#8221;ShowSuperHidden&#8221; = &#8220;0&#8243;<br />
HKEY_USERS\.DEFAULT\Software\Microsoft\Windows\CurrentVersion\Explorer\<br />
Advanced\&#8221;SuperHidden&#8221; = &#8220;1&#8243;<br />
HKEY_CURRENT_USER\Software\Microsoft\Windows\CurrentVersion\Policies\Explorer<br />
\&#8221;NoFolderOptions&#8221; = &#8220;1&#8243;</p>
<p>4. Show all the folders. Open run command and type this to the terminal: </p>
<p>attrib -h -s /s /d</p>
<p>*At this point the folders were back and your computer is now free from Classified.exe</p>
<p>5. Rescan again just to make sure your computer is safe from any threats</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Classified.exe by noelskie</title>
		<link>http://www.precisesecurity.com/files-process/2009/07/16/classifiedexe/#comment-4043</link>
		<dc:creator>noelskie</dc:creator>
		<pubDate>Mon, 17 Aug 2009 06:52:47 +0000</pubDate>
		<guid isPermaLink="false">http://www.precisesecurity.com/files-process/?p=2293#comment-4043</guid>
		<description>I may say, once your pc is infected with this worm, it disable or blocked your antivirus, making it useless...It replace folders with an application with the same name and icon...original folders are set by this wom as super hidden so it appears to be deleted though it is really not.

My solution scan your infected hardrive to another pc with a removal tool...i have use an updated removal tool from kaspersky and it works... here&#039;s the links:
Download 1 (http://downloads1.kaspersky-labs.com/devbuilds/AVPTool/)
Download 2 (http://downloads2.kaspersky-labs.com/devbuilds/AVPTool/)
Download 3 (http://downloads5.kaspersky-labs.com/devbuilds/AVPTool/)
install this on a clean virus free pc then scan your infected hard drive or usb...It will detect and delete the worms...

As to restore the hidden folders, you have to set folder options to show all files and uncheck the hide protected operating system...to be able to view the hidden folders...then you may manually change its folelder attributes by right click the properties... or you may download a software called Attribute Manager 2.6 to ease the work of setting attributes...

Be sure to reset folder options for protections...when done...you may rescan to be sure worms are gone...then test the hard drive on your pc...

Its kinda long process but it works for me...

Hope It helps...God Bless!!!</description>
		<content:encoded><![CDATA[<p>I may say, once your pc is infected with this worm, it disable or blocked your antivirus, making it useless&#8230;It replace folders with an application with the same name and icon&#8230;original folders are set by this wom as super hidden so it appears to be deleted though it is really not.</p>
<p>My solution scan your infected hardrive to another pc with a removal tool&#8230;i have use an updated removal tool from kaspersky and it works&#8230; here&#8217;s the links:<br />
Download 1 (<a href="http://downloads1.kaspersky-labs.com/devbuilds/AVPTool/" rel="nofollow">http://downloads1.kaspersky-labs.com/devbuilds/AVPTool/</a>)<br />
Download 2 (<a href="http://downloads2.kaspersky-labs.com/devbuilds/AVPTool/" rel="nofollow">http://downloads2.kaspersky-labs.com/devbuilds/AVPTool/</a>)<br />
Download 3 (<a href="http://downloads5.kaspersky-labs.com/devbuilds/AVPTool/" rel="nofollow">http://downloads5.kaspersky-labs.com/devbuilds/AVPTool/</a>)<br />
install this on a clean virus free pc then scan your infected hard drive or usb&#8230;It will detect and delete the worms&#8230;</p>
<p>As to restore the hidden folders, you have to set folder options to show all files and uncheck the hide protected operating system&#8230;to be able to view the hidden folders&#8230;then you may manually change its folelder attributes by right click the properties&#8230; or you may download a software called Attribute Manager 2.6 to ease the work of setting attributes&#8230;</p>
<p>Be sure to reset folder options for protections&#8230;when done&#8230;you may rescan to be sure worms are gone&#8230;then test the hard drive on your pc&#8230;</p>
<p>Its kinda long process but it works for me&#8230;</p>
<p>Hope It helps&#8230;God Bless!!!</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on winupgro.exe by Ozgur</title>
		<link>http://www.precisesecurity.com/files-process/2008/12/28/winupgro/#comment-4042</link>
		<dc:creator>Ozgur</dc:creator>
		<pubDate>Sun, 16 Aug 2009 12:58:35 +0000</pubDate>
		<guid isPermaLink="false">http://www.precisesecurity.com/files-process/?p=1408#comment-4042</guid>
		<description>Or you can try the easy duplicate finder to find the duplicate. The program has a min. and max. file size to search. If you make it look between 820-840 kbs it would find the trojan. Then clean the registry and uninstall the affected program as Yasser says. For me it was the AI Roboform.
One more thing , I have security task manager and it shows the icons for programs working in the background. Roboform is a program working in the background and its icon was the same as winupgro&#039;s. Maybe that can also help.

Thanks for the solution. I will check my system and will post here if this alternative way works 100%.</description>
		<content:encoded><![CDATA[<p>Or you can try the easy duplicate finder to find the duplicate. The program has a min. and max. file size to search. If you make it look between 820-840 kbs it would find the trojan. Then clean the registry and uninstall the affected program as Yasser says. For me it was the AI Roboform.<br />
One more thing , I have security task manager and it shows the icons for programs working in the background. Roboform is a program working in the background and its icon was the same as winupgro&#8217;s. Maybe that can also help.</p>
<p>Thanks for the solution. I will check my system and will post here if this alternative way works 100%.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on vshost.exe by zgb</title>
		<link>http://www.precisesecurity.com/files-process/2009/03/06/vshost-exe/#comment-4040</link>
		<dc:creator>zgb</dc:creator>
		<pubDate>Wed, 12 Aug 2009 07:46:07 +0000</pubDate>
		<guid isPermaLink="false">http://www.precisesecurity.com/files-process/?p=1578#comment-4040</guid>
		<description>My avast cannot delete this &quot;vshost.exe&quot;,even if i choose to delete that file it is still on ... and i got 1 more problem..that svhost.exe won&#039;t let me see files on my HDD. When I try to open C:/ message is : &quot;Windows cannot find &#039;vshost.exe&#039;. Make sure you typed the name correctly, and try again. To search for a file, click the Start button, and then click Search.&quot; Pls any help or i need to format my HDD?</description>
		<content:encoded><![CDATA[<p>My avast cannot delete this &#8220;vshost.exe&#8221;,even if i choose to delete that file it is still on &#8230; and i got 1 more problem..that svhost.exe won&#8217;t let me see files on my HDD. When I try to open C:/ message is : &#8220;Windows cannot find &#8216;vshost.exe&#8217;. Make sure you typed the name correctly, and try again. To search for a file, click the Start button, and then click Search.&#8221; Pls any help or i need to format my HDD?</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Classified.exe by Fernando</title>
		<link>http://www.precisesecurity.com/files-process/2009/07/16/classifiedexe/#comment-4039</link>
		<dc:creator>Fernando</dc:creator>
		<pubDate>Tue, 11 Aug 2009 21:13:27 +0000</pubDate>
		<guid isPermaLink="false">http://www.precisesecurity.com/files-process/?p=2293#comment-4039</guid>
		<description>&quot;try downloading usb disk security…

then make your HD as a flash disk by using a IDE/SATA USB cable to scan it in another computer with the disk security…

that would work i already tried it…&quot;

Nah..It won&#039;t!</description>
		<content:encoded><![CDATA[<p>&#8220;try downloading usb disk security…</p>
<p>then make your HD as a flash disk by using a IDE/SATA USB cable to scan it in another computer with the disk security…</p>
<p>that would work i already tried it…&#8221;</p>
<p>Nah..It won&#8217;t!</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on True_Love.exe by ian</title>
		<link>http://www.precisesecurity.com/files-process/2008/02/23/true_loveexe/#comment-4038</link>
		<dc:creator>ian</dc:creator>
		<pubDate>Tue, 11 Aug 2009 06:02:30 +0000</pubDate>
		<guid isPermaLink="false">http://www.precisesecurity.com/files-process/2008/02/23/true_loveexe/#comment-4038</guid>
		<description>my laptop is insfected my classified.exe then i tried to delete using task manager, later on my whole screen invert... what should i do?please help!...</description>
		<content:encoded><![CDATA[<p>my laptop is insfected my classified.exe then i tried to delete using task manager, later on my whole screen invert&#8230; what should i do?please help!&#8230;</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on True_Love.exe by webmaster</title>
		<link>http://www.precisesecurity.com/files-process/2008/02/23/true_loveexe/#comment-4034</link>
		<dc:creator>webmaster</dc:creator>
		<pubDate>Sat, 08 Aug 2009 10:28:51 +0000</pubDate>
		<guid isPermaLink="false">http://www.precisesecurity.com/files-process/2008/02/23/true_loveexe/#comment-4034</guid>
		<description>If it is on memory stick you can use Flash Disinfector.
http://www.precisesecurity.com/tools-resources/adware-tools/flash-disinfector/</description>
		<content:encoded><![CDATA[<p>If it is on memory stick you can use Flash Disinfector.<br />
<a href="http://www.precisesecurity.com/tools-resources/adware-tools/flash-disinfector/" rel="nofollow">http://www.precisesecurity.com/tools-resources/adware-tools/flash-disinfector/</a></p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on FUvirus.exe by jaymark</title>
		<link>http://www.precisesecurity.com/files-process/2008/12/11/fuvirusexe/#comment-4033</link>
		<dc:creator>jaymark</dc:creator>
		<pubDate>Wed, 05 Aug 2009 03:13:53 +0000</pubDate>
		<guid isPermaLink="false">http://www.precisesecurity.com/files-process/?p=1373#comment-4033</guid>
		<description>..uhmmmmmm

..webmaster

..are you sure it can delete the FUvirus

..bcoz my pc is very affected by that virus

..i hope that this Malwarebytes’ Anti-Malware 

..is working tnx</description>
		<content:encoded><![CDATA[<p>..uhmmmmmm</p>
<p>..webmaster</p>
<p>..are you sure it can delete the FUvirus</p>
<p>..bcoz my pc is very affected by that virus</p>
<p>..i hope that this Malwarebytes’ Anti-Malware </p>
<p>..is working tnx</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on True_Love.exe by mani</title>
		<link>http://www.precisesecurity.com/files-process/2008/02/23/true_loveexe/#comment-4032</link>
		<dc:creator>mani</dc:creator>
		<pubDate>Mon, 03 Aug 2009 08:19:54 +0000</pubDate>
		<guid isPermaLink="false">http://www.precisesecurity.com/files-process/2008/02/23/true_loveexe/#comment-4032</guid>
		<description>i also have the same...
true_love.exe virus
in my memory stick 

help me how to remove...</description>
		<content:encoded><![CDATA[<p>i also have the same&#8230;<br />
true_love.exe virus<br />
in my memory stick </p>
<p>help me how to remove&#8230;</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Classified.exe by Rodel</title>
		<link>http://www.precisesecurity.com/files-process/2009/07/16/classifiedexe/#comment-4021</link>
		<dc:creator>Rodel</dc:creator>
		<pubDate>Wed, 29 Jul 2009 14:07:49 +0000</pubDate>
		<guid isPermaLink="false">http://www.precisesecurity.com/files-process/?p=2293#comment-4021</guid>
		<description>try downloading usb disk security...

then make your HD as a flash disk by using a IDE/SATA USB cable to scan it in another computer with the disk security...

that would work i already tried it...</description>
		<content:encoded><![CDATA[<p>try downloading usb disk security&#8230;</p>
<p>then make your HD as a flash disk by using a IDE/SATA USB cable to scan it in another computer with the disk security&#8230;</p>
<p>that would work i already tried it&#8230;</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on True_Love.exe by mamun reza</title>
		<link>http://www.precisesecurity.com/files-process/2008/02/23/true_loveexe/#comment-4020</link>
		<dc:creator>mamun reza</dc:creator>
		<pubDate>Wed, 29 Jul 2009 08:12:40 +0000</pubDate>
		<guid isPermaLink="false">http://www.precisesecurity.com/files-process/2008/02/23/true_loveexe/#comment-4020</guid>
		<description>i have two viruses
true_love.exe

in my pen drive and computer if delete after close and open they are reappeared 

help me to remove viruses
i cant open my taskmanager</description>
		<content:encoded><![CDATA[<p>i have two viruses<br />
true_love.exe</p>
<p>in my pen drive and computer if delete after close and open they are reappeared </p>
<p>help me to remove viruses<br />
i cant open my taskmanager</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Patah Hati.doc .exe by ratheesh</title>
		<link>http://www.precisesecurity.com/files-process/2007/08/20/patah-hatidoc-exe/#comment-4019</link>
		<dc:creator>ratheesh</dc:creator>
		<pubDate>Wed, 29 Jul 2009 07:17:28 +0000</pubDate>
		<guid isPermaLink="false">http://www.precisesecurity.com/files-process/2007/08/20/patah-hatidoc-exe/#comment-4019</guid>
		<description>i want removal tool of pathahati.doc</description>
		<content:encoded><![CDATA[<p>i want removal tool of pathahati.doc</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Classified.exe by hahabelat</title>
		<link>http://www.precisesecurity.com/files-process/2009/07/16/classifiedexe/#comment-4018</link>
		<dc:creator>hahabelat</dc:creator>
		<pubDate>Sun, 26 Jul 2009 13:12:15 +0000</pubDate>
		<guid isPermaLink="false">http://www.precisesecurity.com/files-process/?p=2293#comment-4018</guid>
		<description>i had the same problem too.. my first anti virus was avira.. and also i have malwarebytes.. but it only inactivate my antivirus. then i tried to download kaspersky but it can&#039;t delete the classified.exe.. this folder is locked.. and all the sites of antivirus, malware, spyware and others are also blocked.</description>
		<content:encoded><![CDATA[<p>i had the same problem too.. my first anti virus was avira.. and also i have malwarebytes.. but it only inactivate my antivirus. then i tried to download kaspersky but it can&#8217;t delete the classified.exe.. this folder is locked.. and all the sites of antivirus, malware, spyware and others are also blocked.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on solution.vbs by Ody</title>
		<link>http://www.precisesecurity.com/files-process/2009/06/28/solutionvbs/#comment-4017</link>
		<dc:creator>Ody</dc:creator>
		<pubDate>Sat, 25 Jul 2009 08:56:35 +0000</pubDate>
		<guid isPermaLink="false">http://www.precisesecurity.com/files-process/?p=2152#comment-4017</guid>
		<description>My AVG alerted me that solution.vbs in my usb was potentially harmful.  So I moved the file in to the vault.

Now whenever I try to access my usb, the Windows Script Host buble says &quot;Can not find script file &quot;G:\solution.vbs&quot;.

What does this mean and how can I access my USB again?</description>
		<content:encoded><![CDATA[<p>My AVG alerted me that solution.vbs in my usb was potentially harmful.  So I moved the file in to the vault.</p>
<p>Now whenever I try to access my usb, the Windows Script Host buble says &#8220;Can not find script file &#8220;G:\solution.vbs&#8221;.</p>
<p>What does this mean and how can I access my USB again?</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on chrome.exe by abrar</title>
		<link>http://www.precisesecurity.com/files-process/2008/11/09/chrome-exe/#comment-4015</link>
		<dc:creator>abrar</dc:creator>
		<pubDate>Wed, 22 Jul 2009 07:08:25 +0000</pubDate>
		<guid isPermaLink="false">http://www.precisesecurity.com/files-process/?p=1328#comment-4015</guid>
		<description>i hve got a virus with .exe extensions it creates a folder.exe folder in every pre-existing folder.please advice what to do</description>
		<content:encoded><![CDATA[<p>i hve got a virus with .exe extensions it creates a folder.exe folder in every pre-existing folder.please advice what to do</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on rncsys32.exe by fernanda</title>
		<link>http://www.precisesecurity.com/files-process/2009/06/08/rncsys32-exe/#comment-4014</link>
		<dc:creator>fernanda</dc:creator>
		<pubDate>Wed, 22 Jul 2009 05:23:43 +0000</pubDate>
		<guid isPermaLink="false">http://www.precisesecurity.com/files-process/?p=2018#comment-4014</guid>
		<description>It happened to me. The site of a client started to going wrong, showing blank pages. When I was searching the code, I saw that it had been mysteriously added a  that directs to a site called &quot;q1n.in&quot; in all of my index and default pages. I contacted my host&#039;s support and they said I was hacked. Not understand, because the files were all on the server and the password remains the same. Turning the antivirus on my machine I saw that I was more a victim of this trojan ...</description>
		<content:encoded><![CDATA[<p>It happened to me. The site of a client started to going wrong, showing blank pages. When I was searching the code, I saw that it had been mysteriously added a  that directs to a site called &#8220;q1n.in&#8221; in all of my index and default pages. I contacted my host&#8217;s support and they said I was hacked. Not understand, because the files were all on the server and the password remains the same. Turning the antivirus on my machine I saw that I was more a victim of this trojan &#8230;</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on PAV.exe by KeV</title>
		<link>http://www.precisesecurity.com/files-process/2009/04/22/pav-exe/#comment-4013</link>
		<dc:creator>KeV</dc:creator>
		<pubDate>Mon, 20 Jul 2009 22:27:00 +0000</pubDate>
		<guid isPermaLink="false">http://www.precisesecurity.com/files-process/?p=1771#comment-4013</guid>
		<description>I have a variant on my mates system in a PersonalAV folder and no winexplorer.dll and so I&#039;m not sure if it will still operate quietly. Also, Does it need javascript, activex or something to install as prevention is better than a cure?</description>
		<content:encoded><![CDATA[<p>I have a variant on my mates system in a PersonalAV folder and no winexplorer.dll and so I&#8217;m not sure if it will still operate quietly. Also, Does it need javascript, activex or something to install as prevention is better than a cure?</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on True_Love.exe by anand</title>
		<link>http://www.precisesecurity.com/files-process/2008/02/23/true_loveexe/#comment-4012</link>
		<dc:creator>anand</dc:creator>
		<pubDate>Sun, 19 Jul 2009 05:53:08 +0000</pubDate>
		<guid isPermaLink="false">http://www.precisesecurity.com/files-process/2008/02/23/true_loveexe/#comment-4012</guid>
		<description>hi i also have same virues true love on my pendrive please help me how to remove this. the PC is getting stuck once i plug this in.</description>
		<content:encoded><![CDATA[<p>hi i also have same virues true love on my pendrive please help me how to remove this. the PC is getting stuck once i plug this in.</p>
]]></content:encoded>
	</item>
</channel>
</rss>
