码迷,mamicode.com
首页 > 系统相关 > 详细

linux 目录下文件批量植入和删除

时间:2016-12-18 23:33:50      阅读:200      评论:0      收藏:0      [点我收藏+]

标签:bsp   nbsp   color   批量删除   sed   linux目录   rip   文件   oca   

linux目录下文件批量植入

[root@greymouster http2]# find /usr/local/http2/htdocs/ -type f|xargs sed -i "1  i <script>alert(1)</script>"

其中上面的1 为文件的第一行 i为植入

批量删除:

[root@greymouster ~]# find /usr/local/http2/htdocs/ -type f|xargs sed -i ‘/<script>alert(1)<\/script>/d‘

 批量替换

[root@greymouster ~]# find /usr/local/http2/htdocs/ -type f|xargs sed -i ‘s#<script>alert(1)</script>#1111#g

linux 目录下文件批量植入和删除

标签:bsp   nbsp   color   批量删除   sed   linux目录   rip   文件   oca   

原文地址:http://www.cnblogs.com/chenchenphp/p/6195880.html

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