/*Title Virus Joke Program Author Sohan Vineet Alva Author Email dj_shawn2003 [at] hotmail.com Description This is not exactly a virus .... but good enough to fool someone..... and keep him/her beating around the bush Category C++ » Virus & Trojans Hits 2039 */ Code : //*****************************************************// //virus program mimmic -created by Sohan Alva class XII// //*****************************************************// #include #include #include #include #include #include #include void ffool(); //FUNCTION WHICH GIVES THE FINAL MESSAGE void main() { clrscr(); for(int i=0;i<=100;i++) { textcolor(YELLOW+BLINK); gotoxy(35,12); cprintf("VIRUS LOADING"); gotoxy(39,15); textcolor(GREEN); cout<=0;j--) { gotoxy(48,14); cout<WINDOWS/COMMAND :"; delay(4000); cout<<"completed"; cout<<" PROCRAETORIAN.SYS SUCCESSFULLY PLANTED"; delay(3000); rename("VIRUS.EXE","C:WINDOWSStart MenuProgramsStartUpVIRUS.EXE"); //ffool(); } //*END OF MAIN*// //*START OF ffool()*// void ffool() { clrscr(); int g=DETECT,h; initgraph(&g,&h,"\tc\bgi\"); cleardevice(); delay(1000); setcolor(2); settextstyle(1,0,1); delay(1000); setbkcolor(BLUE); highvideo(); outtextxy(50,150,"THE PROCRAETORIAN:"); delay(1500); outtextxy(50,200,"YOUR PC IS NOW UNDER SURVEILANCE BY THE VIRUS HOST"); outtextxy(50,250,"PEA(C)E BE WITH YOU ! ! !"); getch(); delay(4000); closegraph(); exit(0); } //*END OF ffool()*//