Kaspersky detects my program as a virus?!

Every time I try to debug my program in Visual C++ 2010 Express I get a message from Kaspersky saying that it detected that my program had HackTool.Win32.Agent.rng, but I was only developing a simple Win32 console application. How do I fix this because I can't run my program as Kaspersky keeps deleting it. All it was:

1
2
3
4
5
6
7
8
9
#include <iostream>

int main()
{
	std::cout << "Game Over!" << std::endl;
	std::cin.ignore();

	return 0;
}
Last edited on
Topic archived. No new replies allowed.