标签:学校 init int url x11 重复 find 完全 反馈
今天某项目经理反馈学校的某台服务器不停的向外发包,且CPU持续100%,远程登录后查看发现有一长度为10的随机字符串进程,kill掉,会重新生成另外长度为10的字符串进程。删除文件也会重复生成,非常痛苦。查阅crond相关日志,发现实际执行的内容为/lib/libudev.so ,以此为关键字进行查询,找到如下内容:
*/3 * * * * root /etc/cron.hourly/gcc.sh
[root@deyu ~]# cat /etc/cron.hourly/gcc.sh
#!/bin/sh
PATH=/bin:/sbin:/usr/bin:/usr/sbin:/usr/local/bin:/usr/local/sbin:/usr/X11R6/bin
for i in `cat /proc/net/dev|grep :|awk -F: {‘print $1‘}`; do ifconfig $i up& done
cp /lib/libudev.so /lib/libudev.so.6
/lib/libudev.so.6
[root@deyu ~]# rm -f /etc/cron.hourly/gcc.sh ; chattr +i /etc/crontab
[root@deyu ~]# kill -STOP 16621
[root@deyu ~]# find /etc -name ‘*mtyxkeaofa*‘ | xargs rm -f
[root@deyu ~]# rm -f /usr/bin/mtyxkeaofa
[root@deyu ~]# ls -lt /usr/bin | head
[root@deyu ~]# pkill mtyxkeaofa
[root@deyu ~]# rm -f /lib/libudev.so
使用此方法 可以完全清除此病毒。
标签:学校 init int url x11 重复 find 完全 反馈
原文地址:https://www.cnblogs.com/weifeng1463/p/9450976.html