<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:wfw="http://wellformedweb.org/CommentAPI/"
	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/"
	xmlns:slash="http://purl.org/rss/1.0/modules/slash/"
	>

<channel>
	<title>Digitivity &#187; conciller.exe</title>
	<atom:link href="http://digitivity.org/tag/concillerexe/feed" rel="self" type="application/rss+xml" />
	<link>http://digitivity.org</link>
	<description>The Digital Productivity Blog</description>
	<lastBuildDate>Sat, 24 Dec 2011 17:34:00 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.2.1</generator>
<xhtml:meta xmlns:xhtml="http://www.w3.org/1999/xhtml" name="robots" content="noindex" />
		<item>
		<title>Removing Conficker and Sasser Viruses from Windows XP with Kaspersky and BitDefender</title>
		<link>http://digitivity.org/329/removing-conficker-and-sasser-viruses-from-windows-xp-with-kaspersky-and-bitdefender-rescue-cd-linux-ubcd</link>
		<comments>http://digitivity.org/329/removing-conficker-and-sasser-viruses-from-windows-xp-with-kaspersky-and-bitdefender-rescue-cd-linux-ubcd#comments</comments>
		<pubDate>Wed, 25 Nov 2009 17:22:32 +0000</pubDate>
		<dc:creator>Digitivity</dc:creator>
				<category><![CDATA[Digital Travails]]></category>
		<category><![CDATA[Windows]]></category>
		<category><![CDATA[antivirus]]></category>
		<category><![CDATA[BitDefender]]></category>
		<category><![CDATA[cabextract]]></category>
		<category><![CDATA[conciller.exe]]></category>
		<category><![CDATA[conficker]]></category>
		<category><![CDATA[Kaspersky]]></category>
		<category><![CDATA[malware]]></category>
		<category><![CDATA[McAfee Stinger]]></category>
		<category><![CDATA[rescue CD]]></category>
		<category><![CDATA[Sasser]]></category>
		<category><![CDATA[security]]></category>
		<category><![CDATA[Ultimate Boot CD]]></category>
		<category><![CDATA[virus]]></category>
		<category><![CDATA[Windows XP]]></category>

		<guid isPermaLink="false">http://www.digitivity.org/?p=329</guid>
		<description><![CDATA[<p>Posted in <a href="http://digitivity.org/category/digital-travails" title="Digital Travails">Digital Travails</a><a href="http://digitivity.org/category/windows" title="Windows">Windows</a></p>As I mentioned in a post a few days ago, I was hit pretty badly with a virus infection on my Windows XP installation. One of the symptoms was Windows shutting down almost immediately after logging in. Once I recognized the problem as virus-caused, I set out to root it out. Here&#8217;s a log of [...]


Related posts:<ol><li><a href='http://digitivity.org/321/my-windows-xp-gets-virus-infected-conficker-mem-sasser' rel='bookmark' title='Permanent Link: My Windows XP Gets Virus Infected'>My Windows XP Gets Virus Infected</a></li>
<li><a href='http://digitivity.org/806/latest-windows-xp-update-crashes-computers-blue-screen' rel='bookmark' title='Permanent Link: Latest Windows XP Update Crashes Computers'>Latest Windows XP Update Crashes Computers</a></li>
<li><a href='http://digitivity.org/437/whats-good-podcast-about-why-macs-are-better-than-pcs' rel='bookmark' title='Permanent Link: What&#8217;s Good Podcast about Why Macs Are Better Than PCs'>What&#8217;s Good Podcast about Why Macs Are Better Than PCs</a></li>
</ol>]]></description>
			<content:encoded><![CDATA[<p>As I mentioned in a post a few days ago, I was hit pretty badly with a <a href="http://www.digitivity.org/321/my-windows-xp-gets-virus-infected-conficker-mem-sasser">virus infection on my Windows XP installation</a>. One of the symptoms was Windows shutting down almost immediately after logging in. Once I recognized the problem as virus-caused, I set out to root it out. Here&#8217;s a log of my travails.</p>
<h2>Trying to prevent Windows from shutting down immediately</h2>
<p>One of the methods that&#8217;s worked for other people trying to avoid the shutdown caused by Sasser is to quickly type shutdown -a in a command window:</p>
<pre>shutdown -a</pre>
<p>The -a means abort.</p>
<p>But I never had enough time to open a command prompt to enter the command. Part of the reason for that might be the inordinate amount of time that my installation of Windows (which is the original manufacturer&#8217;s installation) takes to fully load, including all autorun programs and services.</p>
<p>So I went back to the Linux Live USB, and added a Windows batch file with the command already typed out, along with running the programs which would fix Sasser:</p>
<pre>shutdown -a
c:\sassgui.com
c:\sasssfx.exe</pre>
<p>So all I had to do was open up an Explorer window and type a.cmd in the location bar. (I kept the name intentionally short, &#8220;a.cmd&#8221; being easier to type than &#8220;stop-shutdown-fix-sasser.cmd&#8221;.)</p>
<p>The shutdown sequence was just too fast, though. So I had to find another way besides logging into the existing Windows installation.</p>
<h2>Extracting Windows system files</h2>
<p>That meant booting from Linux.</p>
<p>Complicating the situation was that the fact that the computer on which I have a CD/DVD burner was the infected one.  Unfortunately, I  didn&#8217;t have a Linux CD available, so plan B was booting off a USB flash device, of which I luckily had one with Linux installed (Ubunutu 8.10 Hardy Heron). This version of Ubuntu includes read/write drivers for the NTFS filesystem, which means that I can modify files on the Windows installation while in Linux.</p>
<p>My first line of attack was to replace the files (svchost.exe, rundll.exe, etc.) which are said to be affected by Sasser. I had a copy of the Windows XP installation files on the infected computer&#8217;s hard disk, so I wanted to copy those over to the Windows system directory (after making backups of the current system files).</p>
<p>It&#8217;s not quite that simple, though. The files on a Windows install disk (or directory) are saved in the so-called Microsoft cabinet format. Microsoft provides utilities for de-compressing such files, but, of course, they only run on Windows.</p>
<p>Thoughtfully, someone has created a program called <a href="http://www.cabextract.org.uk/">cabextract</a> to do just that on Linux systems. cabextract version 1.2-3 is included in the Ubuntu 9.10 (Karmic Koala) Universe repository.</p>
<p>After extracting the files, I saved them to the Windows directory and rebooted.  It didn&#8217;t work though. The Sasser infection was quite deep, and just changing a few files didn&#8217;t work.</p>
<h2>Ultimate Boot CD</h2>
<p>Next try: the <a href="http://www.ultimatebootcd.com/">Ultimate Boot CD</a>, a huge collection of various and sundry programs for doing surgery on your computer. I burned a copy of the Ultimate Boot CD, but while that has a few anti-virus options, some are woefully outdated, and others simply didn&#8217;t run. Basically, the Ultimate Boot CD is geared toward fixing or diagnosing any number of many different problems you might have that can&#8217;t be done while booted in the main operating system, including repartitioning, fixing the MBR, fixing registry, resetting passwords, etc.</p>
<div id="attachment_337" class="wp-caption alignnone" style="width: 522px"><a href="http://www.digitivity.org/blog/wp-content/uploads/2009/11/ultimate-boot-cd-02-initial-menu.png"><img class="size-medium wp-image-337" title="ultimate-boot-cd-02-initial-menu" src="http://www.digitivity.org/blog/wp-content/uploads/2009/11/ultimate-boot-cd-02-initial-menu-512x284.png" alt="Ultimate BootCD: Initial Menu" width="512" height="284" /></a><p class="wp-caption-text">Ultimate BootCD: Initial Menu</p></div>
<p>As such it has a complicated interface and long list of programs and options on startup. But it&#8217;s not very good or easy for virus removal. <a href="http://www.ultimatebootcd.com/download.html">Download the Ultimate Boot CD here</a>.</p>
<h2>Kaspersky AntiVirus Rescue CD</h2>
<p>Next, I tried the <a href="http://devbuilds.kaspersky-labs.com/devbuilds/RescueDisk/">Kaspersky AntiVirus Rescue CD 2008</a> (kav_rescue_2008.iso). This is a lot easier to run than the Ultimate Boot CD. Kaspersky just loads automatically and you&#8217;re presented with a graphical Linux environment in which to run a scan. Kaspersky also provides a command shell in case you want to move files around or ssh into a remote computer. And there&#8217;s a file manager.</p>
<div id="attachment_335" class="wp-caption alignnone" style="width: 521px"><a href="http://www.digitivity.org/blog/wp-content/uploads/2009/11/kaspersky-rescue-cd-2008-02-scan-file-manager-shell.png"><img class="size-medium wp-image-335" title="kaspersky-rescue-cd-2008-02-scan-file-manager-shell" src="http://www.digitivity.org/blog/wp-content/uploads/2009/11/kaspersky-rescue-cd-2008-02-scan-file-manager-shell-511x383.png" alt="Kaspersky Rescue CD: Scanner, File Manager, and Shell" width="511" height="383" /></a><p class="wp-caption-text">Kaspersky Rescue CD: Scanner, File Manager, and Shell</p></div>
<p>I started the scan, and let it run overnight, but it was still nowhere near finished the next morning. Kaspersky is too slow. It tells you how many files it&#8217;s processed, and the time it&#8217;s taken so far. Based on that, it was taking about a second per file, which would basically mean it would never finish.</p>
<p>So I cancelled out in favor of another option.</p>
<h2>BitDefender Rescue CD 2009</h2>
<p>After that, I tried <a href="http://download.bitdefender.com/rescue_cd/">Bit Defender Rescue CD 2009</a> (BitDefenderRescueCD_v2.0.0_3_08_2009.iso). This, like Kaspersky, also provides a graphical Linux environment and a command shell. But it also provides a lot more. You get Firefox, mail programs, network scanners, backup and partition imaging, text editors, a rootkit checker, even a picture viewer. So, if this is your only computer, at least you can surf the web and check e-mail while BitDefender works.</p>
<div id="attachment_338" class="wp-caption alignnone" style="width: 521px"><a href="http://www.digitivity.org/blog/wp-content/uploads/2009/11/bitdefender-rescue-cd-2009-01-initial-screen.png"><img class="size-medium wp-image-338" title="bitdefender-rescue-cd-2009-01-initial-screen" src="http://www.digitivity.org/blog/wp-content/uploads/2009/11/bitdefender-rescue-cd-2009-01-initial-screen-511x384.png" alt="BitDefender Rescue CD: Initial Screen" width="511" height="384" /></a><p class="wp-caption-text">BitDefender Rescue CD: Initial Screen</p></div>
<p>Unlike Kaspersky, BitDefender works on many tens of files per second, which one would expect of a C-based program. I don&#8217;t know what was wrong with Kaspersky. Anyway, it finished scanning in less than a day. Instead of just deleting all infected files, I manually specified which ones to delete and which ones to leave alone.</p>
<h2>Rebooting to Windows</h2>
<p>After the BitDefender cleaning, I was at least able to boot to Windows. Since I had lost the Task Manager and Command Shell, I decompressed the following files from the Windows installation files to the Windows directory:</p>
<ul>
<li>taskmgr.exe (the Task Manager)</li>
<li>taskmgrw.chm (help file for Task Manager)</li>
<li>cmd.exe (Command Shell)</li>
<li>command.com (old Command Shell)</li>
<li>msconfig.exe</li>
<li>msiexec.exe (installer runner)</li>
<li>appwiz.cpl (Add/Remove Applications Control Panel Wizard)</li>
<li>regedit.exe (Registry Editor)</li>
<li>rundll32.exe (DLL function executor)</li>
<li>taskkill.exe</li>
</ul>
<p>I still wasn&#8217;t quite confident that all remnants of all viruses had been removed. In fact, I still couldn&#8217;t reach <a href="http://microsoft.com">microsoft.com</a>, which indicated that a virus was still present.</p>
<h2>McAfee Stinger</h2>
<p>I downloaded a free tool that McAfee provides called <a href="http://vil.nai.com/vil/stinger/">Stinger</a>. It doesn&#8217;t do constant scanning of files as they are downloaded, but it can scan existing files on a hard disk.</p>
<p>It found a Conficker file which it deleted:</p>

<div class="wp_syntax"><div class="code"><pre class="en" style="font-family:monospace;">C:\WINDOWS\system32\vkaxt.dll
Found the W32/Conficker.worm.gen.a virus !!!
C:\WINDOWS\system32\vkaxt.dll has been deleted.</pre></div></div>

<p>But it also found a bad svchost.exe, which it couldn&#8217;t delete:</p>

<div class="wp_syntax"><div class="code"><pre class="en" style="font-family:monospace;">C:\WINDOWS\System32\svchost.exe
Found the W32/Conficker!mem trojan !!!
C:\WINDOWS\System32\svchost.exe could not be repaired.</pre></div></div>

<h2>Windows XP Service Pack 2</h2>
<p>So I re-installed <a href="http://www.microsoft.com/downloads/details.aspx?FamilyID=049C9DBE-3B8E-4F30-8245-9E368D3CDB5A&amp;displaylang=en">Windows XP Service Pack 2</a>. I also applied a Hot Fix (<a href="http://www.microsoft.com/downloads/details.aspx?familyid=0D5F9B6E-9265-44B9-A376-2067B73D6A03&amp;displaylang=en">WindowsXP-KB958644-x86-ENU.exe</a>) which is meant to prevent vulnerabilities leading to Conficker contamination. After a reboot, I could finally access microsoft.com. I thought I was OK, but after a while, I lost microsoft.com access again!</p>
<h2>Conciller.exe</h2>
<p>After some more research, I discovered that Conficker actually patches into system files in such a way as to re-emerge later even after a Service Pack install.</p>
<p>The files are packed and encrypted on the hard disk, and are only unpacked while running. The Communication Systems work group at the <a href="http://net.cs.uni-bonn.de/">Institute of Computer Science</a> at the University of Bonn has created a scanner called <a href="http://net.cs.uni-bonn.de/wg/cs/applications/containing-conficker/#c2605">conciller.exe</a> which scans every running process for Conficker and removes it without disturbing the original process. <a href="http://net.cs.uni-bonn.de/uploads/media/conciller.exe">Direct download here</a>.</p>
<p>When I ran it, I actually got a few hits, which means Conficker was still active. Only after disinfecting memory with conciller.exe, and then re-installing the Service Pack and the Hot Fix, was I finally able to rid the computer of the Conficker mess.</p>
<h2>Postscript</h2>
<p>While I was finally able to clean the computer, it came at the loss of many days of non-productivity and frustration. I decided I&#8217;d had enough of Windows, and didn&#8217;t particularly care to get on the buggy and non-compatible bandwagon called Windows Vista. So I resolved to start researching the suitability of Ubuntu as a replacement for my main operating environment. I&#8217;ll post updates on that in other blog posts.</p>


<p>Related posts:<ol><li><a href='http://digitivity.org/321/my-windows-xp-gets-virus-infected-conficker-mem-sasser' rel='bookmark' title='Permanent Link: My Windows XP Gets Virus Infected'>My Windows XP Gets Virus Infected</a></li>
<li><a href='http://digitivity.org/806/latest-windows-xp-update-crashes-computers-blue-screen' rel='bookmark' title='Permanent Link: Latest Windows XP Update Crashes Computers'>Latest Windows XP Update Crashes Computers</a></li>
<li><a href='http://digitivity.org/437/whats-good-podcast-about-why-macs-are-better-than-pcs' rel='bookmark' title='Permanent Link: What&#8217;s Good Podcast about Why Macs Are Better Than PCs'>What&#8217;s Good Podcast about Why Macs Are Better Than PCs</a></li>
</ol></p>]]></content:encoded>
			<wfw:commentRss>http://digitivity.org/329/removing-conficker-and-sasser-viruses-from-windows-xp-with-kaspersky-and-bitdefender-rescue-cd-linux-ubcd/feed</wfw:commentRss>
		<slash:comments>24</slash:comments>
		</item>
	</channel>
</rss>

<!-- Performance optimized by W3 Total Cache. Learn more: http://www.w3-edge.com/wordpress-plugins/

Served from: digitivity.org @ 2012-05-22 17:28:10 -->
