码迷,mamicode.com
首页 > 其他好文 > 详细

云主机被挖矿的应急脚本

时间:2018-09-15 13:49:26      阅读:109      评论:0      收藏:0      [点我收藏+]

标签:bsp   ps aux   bash   one   云主机   kill -9   脚本   被锁   避免   

  当云主机被挖矿之后,一般都不能很快清除挖矿程序,而这时你的云主机cpu占用率会一直居高不下,为避免主机被锁定可先用这个脚本杀死挖矿程序,然后再来慢慢排查问题。

 

脚本内容:

#!/bin/bash

# This script is used to kill progress which having abnormal occupancy rate of CPU,

# I want through this way to protect my server from the hacker who attempting to use my server to mining.

# The method is capture PID which progress‘ occupancy rate of CPU greater than 90% by awk,then kill these PID.

while true;do

for i in `ps aux | awk ‘{if($3 > 90){print $2}}‘`;do

    kill -9 $i

done

done

云主机被挖矿的应急脚本

标签:bsp   ps aux   bash   one   云主机   kill -9   脚本   被锁   避免   

原文地址:https://www.cnblogs.com/RottenLeaf/p/9650707.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!