Security
parasite.txt
Associated article: Anatomy of a Parasitic Computer
Tags: Security Mobile Design
Published source code accompanying the article by Vincent W. Freeh in which he discusses parasitic computing, a twist on the distributed computing paradigm, whereby a parasite computer extracts computational cycles unbeknownst to the host system.
Anatomy of a Parasitic Computer
by Vincent W. Freeh
Listing One
int main (int argc, char *argv[])
{
int raw; // socket that is opened SOCK_RAW
char *host; // targeted machine--the parasite's "host"
char answer[2]; // value c in 'is a+...


