我一直在阅读有关ZeroAccess的信息并查看一些机器人的代码源*,我发现这段代码在运行机器人之前检查 filemon 是否在受感染的计算机中运行。
int pmain3()
{
std::vector<DWORD> SetOfPID;
GetProcessID("filemon",SetOfPID);
if (SetOfPID.empty())
{
// Nothing found running, Safe to execute bot.
}
else
{
// One of the process was found running, Exit install.
ExitProcess(0);
}
return 0;
}
它不是唯一的。还有其他人检查 Wireshark、tcpview、procmon、VM、VirtualBox、sandBox ...
在这种情况下,我如何分析受感染的计算机?我怎样才能找到被感染的进程?
PS: [*] 取自 IMbotMod V4.1 僵尸网络