Sniffing network traffic for signs of viruses/spyware - Stack Overflow most recent 30 from stackoverflow.com 2009-12-22T10:00:25Z http://stackoverflow.com/feeds/question/124745 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/124745/sniffing-network-traffic-for-signs-of-viruses-spyware 4 Sniffing network traffic for signs of viruses/spyware DrStalker 2008-09-24T00:33:51Z 2008-10-28T04:41:24Z <p>How can I connect a system to a network and sniff for virus/spyware related traffic? I'd like to plug in a network cable, fire up an appropriate tool sand have it scan the data for any signs of problems. I don't expect this to find everything, and this is not to prevent initial infection but to help determine if there is anything trying to actively infect other system/causing network problems.</p> <p>Running a regular network sniffer and manually looking through the results is no good unless the traffic is really obvious,but I havn't been able to find any tool to scan a network data stream automatically.</p> http://stackoverflow.com/questions/124745/sniffing-network-traffic-for-signs-of-viruses-spyware/124758#124758 3 Answer by Jerub for Sniffing network traffic for signs of viruses/spyware Jerub 2008-09-24T00:36:49Z 2008-09-24T00:36:49Z <p>You can make <a href="http://www.snort.org/" rel="nofollow">Snort</a> scan traffic for viruses. I think this will be the best solution for you.</p> http://stackoverflow.com/questions/124745/sniffing-network-traffic-for-signs-of-viruses-spyware/124760#124760 5 Answer by Dominic Eidson for Sniffing network traffic for signs of viruses/spyware Dominic Eidson 2008-09-24T00:37:08Z 2008-09-24T00:37:08Z <p>I highly recommend running <a href="http://www.snort.org/" rel="nofollow">Snort</a> on a machine somewhere near the core of your network, and span (mirror) one (or more) ports from somewhere along your core network path to the machine in question.</p> <p>Snort has the ability to scan network traffic it sees, and automatically notify you via various methods if it sees something suspicious. This could even be taken further, if desired, to automatically disconnect devices, et cetera, if it finds something.</p> http://stackoverflow.com/questions/124745/sniffing-network-traffic-for-signs-of-viruses-spyware/124762#124762 4 Answer by Brian R. Bondy for Sniffing network traffic for signs of viruses/spyware Brian R. Bondy 2008-09-24T00:39:44Z 2008-09-24T00:53:18Z <ol> <li><p>Use <a href="http://www.snort.org/" rel="nofollow">snort</a>: An open source network intrusion prevention and detection system.</p></li> <li><p><a href="http://www.wireshark.org/" rel="nofollow">Wireshark</a>, formerly ethereal is a great tool, but will not notify you or scan for viruses. Wireshark is a free packet sniffer and protocol analyzer.</p></li> <li><p>Use the netstat -b command to see which processes have which ports open.</p></li> <li><p>Use <a href="http://www.nirsoft.net/utils/cports.html" rel="nofollow">CPorts</a> to see a list of ports and the associated programs, and have the ability to close those ports. </p></li> <li><p>Download a free anti-virus program such as <a href="http://free.avg.com/" rel="nofollow">free AVG</a>.</p></li> <li><p>Setup your firewall more tightly.</p></li> <li><p>Setup a gateway computer to let all network traffic go through. Take the above recommendataions to the gateway computer instead. You will be checking your whole network instead of just your one computer. </p></li> </ol> http://stackoverflow.com/questions/124745/sniffing-network-traffic-for-signs-of-viruses-spyware/124768#124768 0 Answer by Ferruccio for Sniffing network traffic for signs of viruses/spyware Ferruccio 2008-09-24T00:42:59Z 2008-09-24T00:42:59Z <p>The problem with that approach is that most networks today are on switches, not hubs. So, if you plug a machine with a packet sniffer into the switch, it will only be able to see traffic to and from the sniffing machine; and network broadcasts.</p> http://stackoverflow.com/questions/124745/sniffing-network-traffic-for-signs-of-viruses-spyware/124782#124782 0 Answer by Andrew Edgecombe for Sniffing network traffic for signs of viruses/spyware Andrew Edgecombe 2008-09-24T00:48:13Z 2008-09-24T00:48:13Z <p>As a followup to <a href="http://stackoverflow.com/questions/124745/sniffing-network-traffic-for-signs-of-virusesspyware#124768">Ferruccio's</a> comment you will need to find some method of getting around your switches.</p> <p>A number of network switches have the option of setting up port mirrors, so that all traffic (regardless of the destination) will be copied, or "mirrored", to a nominated port. If you could configure your switch to do this then you would be able to attach your network sniffer here.</p> http://stackoverflow.com/questions/124745/sniffing-network-traffic-for-signs-of-viruses-spyware/124830#124830 2 Answer by Dan Udey for Sniffing network traffic for signs of viruses/spyware Dan Udey 2008-09-24T01:03:29Z 2008-09-24T01:03:29Z <p>For watching local network traffic your best bet (with a decent switch) is to set your switch to route all packets out a specific interface (as well as whatever interface it would normally send). This lets you monitor the entire network by dumping traffic down a specific port.</p> <p>On a 100 megabit network, however, you'll want a gigabit port on your switch to plug it into, or to filter on protocol (e.g. trim out HTTP, FTP, printing, traffic from the fileserver, etc.), or your switch's buffers are going to fill up pretty much instantly and it'll start dropping whatever packets it needs to (and your network performance will die).</p> http://stackoverflow.com/questions/124745/sniffing-network-traffic-for-signs-of-viruses-spyware/124939#124939 0 Answer by __ for Sniffing network traffic for signs of viruses/spyware __ 2008-09-24T01:46:05Z 2008-09-24T01:46:05Z <p><a href="http://www.networkmagic.com/" rel="nofollow">Network Magic</a>, if you don't mind something that's not open source.</p> http://stackoverflow.com/questions/124745/sniffing-network-traffic-for-signs-of-viruses-spyware/242273#242273 0 Answer by iain27 for Sniffing network traffic for signs of viruses/spyware iain27 2008-10-28T04:41:24Z 2008-10-28T04:41:24Z <p>You can use an IDS, hardware or software <a href="http://en.wikipedia.org/wiki/Intrusion-detection_system" rel="nofollow">http://en.wikipedia.org/wiki/Intrusion-detection_system</a></p>