Tag: 恶意软件

这个尝试过的特洛伊木马代码做了什么?

看起来这只是发送ping,但是当你可以使用ping时最重要的是什么? /* WARNING: this is someone’s attempt at writing a malware trojan. Do not compile and *definitely* don’t install. I added an exit as the first line to avoid mishaps – msw */ int main (int argc, char *argv[]) { exit(1); unsigned int pid = 0; char buffer[2]; char *args[] = { “/bin/ping”, “-c”, “5”, […]