2024年11月Linux如何使用shell命令检测PHP木马

发布时间:

  ⑴PHP木马主要用于攻击网站,会在网站中插入代码,在Linux系统中,可使用shell命令检测PHP木马,为了防止脚本木马的破坏,保证网站的安全,学会使用shell命令查找PHP木马是非常重要的,下面小编就给大家介绍下方法。

  ⑵、一句话查找PHP木马

  ⑶# find 。/ -name “*.php” |xargs egrep “phpspy|csh|milwrm|eval\(gunerpress|eval\(base_decoolcode|spider_bc”》 /tmp/php.txt

  ⑷# grep -r --include=*.php ‘[^a-z]eval($_POST’ 。 》 /tmp/eval.txt

  ⑸# grep -r --include=*.php ‘file_put_contents(.*$_POST\[.*\];’ 。 》 /tmp/file_put_contents.txt

  ⑹# find 。/ -name “*.php” -type f -print | xargs - egrep “(phpspy|csh|milwrm|eval\(gzunpress\(base_decoolcode|eval\(base_decoolcode|spider_bc|gzinflate” | awk -F: ‘{print $}’ | sort | uniq

  ⑺、查找最近一天被修改的PHP文件

  ⑻一般站点里的页面文件都很少更改,当然动态临时生成的除外。而那些一般不会变的页面目录里的文件如果被修改了,可大可能是被人做了手脚。

  ⑼# find -mtime - -type f -name \*.php

  ⑽、修改网站的权限

  ⑾# find -type f -name \*.php -exec chmod {} \;

  ⑿# find 。/ -type d -exec chmod {} \;

  ⒀、常见的一句话后门:

  ⒁grep -r --include=*.php ‘[^a-z]eval($_POST’ 。 》 grep.txt

  ⒂grep -r --include=*.php ‘file_put_contents(.*$_POST\[.*\];’ 。 》 grep.txt

  ⒃把搜索结果写入文件,下载下来慢慢分析,其他特征木马、后门类似。有必要的话可对全站所有文件来一次特征查找,上传图片肯定有也捆绑的,来次大清洗

  ⒄、禁用不常用函数

  ⒅将用不到的权限又比较大的php函数在php.ini文件里禁掉。修改方法如下:

  ⒆disable_functions = system,exec,shell_exec

  ⒇上面就是Linux使用shell命令检测PHP木马的方法介绍了,在不确定自己的网站是否被攻击的情况下,最好使用shell命令检测下。