linux 目录下文件批量植入和删除
Posted 晨曦年华
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了linux 目录下文件批量植入和删除相关的知识,希望对你有一定的参考价值。
linux目录下文件批量植入
[[email protected] http2]# find /usr/local/http2/htdocs/ -type f|xargs sed -i "1 i <script>alert(1)</script>"
其中上面的1 为文件的第一行 i为植入
批量删除:
[[email protected] ~]# find /usr/local/http2/htdocs/ -type f|xargs sed -i ‘/<script>alert(1)<\/script>/d‘
批量替换
[[email protected] ~]# find /usr/local/http2/htdocs/ -type f|xargs sed -i ‘s#<script>alert(1)</script>#1111#g
以上是关于linux 目录下文件批量植入和删除的主要内容,如果未能解决你的问题,请参考以下文章