首页 > 代码库 > linux 目录下文件批量植入和删除
linux 目录下文件批量植入和删除
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 目录下文件批量植入和删除
声明:以上内容来自用户投稿及互联网公开渠道收集整理发布,本网站不拥有所有权,未作人工编辑处理,也不承担相关法律责任,若内容有误或涉及侵权可进行投诉: 投诉/举报 工作人员会在5个工作日内联系你,一经查实,本站将立刻删除涉嫌侵权内容。