Posts Tagged ‘worm’

How to get a virus in Linux

Friday, July 4th, 2008 by Agro Rachmatullah

When you switch to a Linux distribution, you might be a little frustrated by how hard it is to get a virus running on your system. However, don’t worry because once you familiarize yourself with building a program from the source, it’s actually not difficult.

Get the URL to download the virus source code (Google it!), and then type these commands:

wget http://malware.agronesia.net/virus/rontok.tar.gz
tar xzvf rontok.tar.gz
cd rontok
./configure
make
make infect

Some distributions like Ubuntu makes it easy by using a package manager. Go see their documentation!

(idea from the comments at Slashdot)