从.php文件中删除恶意代码注入
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了从.php文件中删除恶意代码注入相关的知识,希望对你有一定的参考价值。
Using sed to recursively remove malicious code injection form .php files when the injected code follows the pattern
find . -type f -iname "*.php" | xargs -IX sed -i '' "s|<?php */*versio:2.08.*?>||g" 'X'
以上是关于从.php文件中删除恶意代码注入的主要内容,如果未能解决你的问题,请参考以下文章
防止恶意代码注入XSS(cross site scripting)