Detecting Conficker with Linux Tools
As Linux sysadmins, many of us still need to deal with Windows worms and how they affect our networks. Tomorrow is April 1st, and the Conficker worm will be activating on vulnerable computers everywhere. Here's a quick HOW-TO showing how you can detect compromised and/or vulnerable computers on your network:
There are 2 fairly easy methods available at this late hour.
The first is simple to use, but slow as heck. In the author's defense, it's just a proof of concept. But it works. :) It's written in Python, and has both the python script (which requires the Impacket library) and a self-contained Windows version if you're stuck on a Windows box.
This site has links to both versions, along with some instructions. The website seems to be able to keep up with the traffic it's getting, whereas some other sites are getting crumbled as admins scramble to sniff their networks.
The second method uses a brand spanking new version of NMAP to do the detecting. The advantage is it's much quicker at scanning larger networks. The disadvantage is it requires a bit of commandline fu. Fear not, it's as easy as copy/paste.
First, get the version for your operating system. NOTE: You MUST get nmap-4.85BETA5 because earlier versions won't scan for Conficker.
Once you install nmap, you'll want to run the command:
nmap -PN -d -p445 --script=smb-check-vulns --script-args=safe=1 [network_range]
Where [network_range] is something like 10.10.5.1-255 or even 10.10.0.0/16.
You'll need to look through the results for information like:
Host script results:
| smb-check-vulns:
| MS08-067: FIXED
| Conficker: Likely INFECTED
|_ regsvc DoS: VULNERABLE
And then fix/patch those hosts. I'd suggest sending the results to a text file, and grepping for the word VULNERABLE or INFECTED -- but those types of instructions are beyond the scope of this quick hack of a post. :)
UPDATE: (Thanks to Matt McMahon)
Great summary, Shawn. Couple of add’l notes. First, the author of the smb-check-vulns script (Ron Bowes) has some very recent updates on his blog and yes, that site is being hit pretty hard right now, don’t expect ninja-like-speed. To even save a visit, I’ll summarize…
*ahem*
The 4.85BETA5 version of nmap does return some false positives and will, under some circumstances, fail to even run the script on machines when it should (that one bit me). The author is keeping the code updated by the minute and has fixed these bugs, but hasn’t (yet) released a BETA6. The easiest way for you to keep up is with his SVN repository. Instructions are on the website above, but in an effort to save mouse-clicks, I’ll copy ‘n’ paste:
svn co –username=guest –password=” \
svn://svn.insecure.org/nmap
cd nmap
./configure
make
make install
This is source code and built fine in my Slackware install, YMMV…
Shawn Powers is an Associate Editor for Linux Journal. You might find him chatting on the IRC channel, or Twitter
The Magazine
Linux Journal is the premier source for how-tos, projects, product reviews, expert advice and opinions for everything Linux.
| Qt and Layouts | Sep 02, 2010 |
| As Predicted, OpenSolaris Board Disbands | Sep 01, 2010 |
| Dual Boot openSUSE USB Stick Installer | Sep 01, 2010 |
| New Wine: Running Windows Music & Sound Applications Under Wine 1.2 | Aug 31, 2010 |
| Google Adds Phone Calls to Linux Gmail Use | Aug 31, 2010 |
| Linux Journal Insider - October 2010 | Aug 30, 2010 |
- As Predicted, OpenSolaris Board Disbands
- Boot with GRUB
- Google Adds Phone Calls to Linux Gmail Use
- New Wine: Running Windows Music & Sound Applications Under Wine 1.2
- Dual Boot openSUSE USB Stick Installer
- Validate an E-Mail Address with PHP, the Right Way
- In This Issue
- Monitoring Hard Disks with SMART
- Building a Two-Node Linux Cluster with Heartbeat
- New Issue
- thx
17 sec ago - Thanks
55 sec ago - Thanks
2 min 59 sec ago - Thanks
3 min 48 sec ago - thx
5 min 5 sec ago - I have the same question. Im
23 min 43 sec ago - this isn't virtual interfaces
56 min 36 sec ago - old is cool
2 hours 9 min ago - Thanks for the additional
3 hours 37 min ago - I'd say Zypper and YaST are
4 hours 25 sec ago











Comments
Thanks
Nice post. I hope that .deb moves up to this soon I have jaunty and still at 4.76.
BETA6
Checked just now, Beta6 is available
Post new comment