linux下查詢php木馬

科技小能手發表於2017-12-10

一句話查詢PHP木馬

# find ./ -name “*.php” |xargs egrep “phpspy|c99sh|milw0rm|eval(gunerpress|eval(base64_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 -print0 | xargs -0 egrep “(phpspy|c99sh|milw0rm|eval(gzuncompress(base64_decoolcode|eval(base64_decoolcode|spider_bc|gzinflate)” | awk -F: `{print $1}` | sort | uniq

查詢最近一天被修改的PHP檔案

# find -mtime -1 -type f -name *.php

查詢php檔案並修改許可權   (慎用)

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


# find ./ -type d -exec chmod 555{} ;

本文轉自gaodi2002 51CTO部落格,原文連結:http://blog.51cto.com/gaodi2002/1617412


相關文章