For those who suspect their PC is infected with this machine, the easiest way to find out is by visiting some security related websites for example:
- www.symantec.com
- www.microsoft.com
- www.macfee.com
- www.f-secure.com
Conficker/Downadup was designed to block the infected machine from visiting these security websites to prevent victims to find solution to remove this worm. For more technical details on how it prevents from visitng the websites (hooking the Windows API DnsQuery from dnsapi.dll) :
http://mtc.sri.com/Conficker/addendumC/ <-- This is so far the most consolidated analysis that I have ever seen :) The following website is the consolidated methods of detection and removal for Conficker/Downadup from dShield:
http://www.dshield.org/diary.html?storyid=5860
Using Nmap to Perform Conficker Test
I was attracted by the new Nmap scanning features which include the script to scan your network to test if you are infected with the Conficker, thanks to Honeynet Project (Tillmann Werner and Felix Leder) :D
nmap -PN -T4 -p139,445 -n -v --script=smb-check-vulns --script-args safe=1 [host]
typical scan result for infected machine:
Host script results:
| smb-check-vulns:
| MS08-067: FIXED
| Conficker: Likely INFECTED
|_ regsvc DoS: VULNERABLE
The testing was done using Nmap4.85BETA6
Signing off
~x9090