黑客在主页中插入了一些脚本

发布于 2024-08-12 09:30:33 字数 32 浏览 4 评论 0原文

怎么办呢?

你经历过这样的事情吗?

How can it be done?

Did you ever experienced something like this?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

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

发布评论

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

评论(2

锦爱 2024-08-19 09:30:33

如果您发现 JavaScript 被注入到您的网站内容中(不是通过 XSS,而是实际存在于文件内容中),您很可能已受到蠕虫或病毒的攻击。

一个很好的例子是Gumblar 病毒,它在几个月前确实传播得非常迅速;它使用 FTP 密码嗅探来查找人们网站的 FTP 详细信息并对其进行修改,注入恶意 JavaScript 将网站访问者发送到恶意网站等。

此类病毒的具体情况取决于具体的病毒,但一个好的开始是:

  • 删除 具有已知干净备份的站点
  • 确保所有安全补丁均已应用到您的服务器以及在其上运行的所有软件,以及站点上使用的任何模块或第 3 方库
  • 确保使用的所有计算机访问该网站(例如,通过 FTP 或管理界面)已被信誉良好且最新的病毒扫描程序标记为干净,因此您不会嗅到任何密码,
  • 因为您网站的密码可能已经泄露通过(例如)僵尸网络进入广阔的世界,更改网站上的所有 FTP + 管理密码,这样您就不必再重新开始。

祝你好运!

If you're finding JavaScript injected into your web site content (not via XSS but actually present in the file contents) you've most likely been hit by a worm or virus.

A good example is the Gumblar virus, which spread very rapidly indeed a few months ago; it used FTP password sniffing to find FTP details of people's sites and modified them, injecting malicious JavaScript to send site visitors to malware sites etc.

The specifics of removing such viruses depends on the specific virus, but a good start is:

  • Replace the contents of the site with a known clean backup
  • Make sure all security patches are applied to your server and all software you're running on it, as well as e.g. any modules or 3rd-party libraries being used on the site
  • Make sure all computers which are used to access the site (via FTP or an administration interface, for example) have been marked as clean by a reputable and up-to-date virus scanner so you don't get any passwords sniffed
  • As the password for your site may already have leaked out into the big wide world via (say) a botnet, change all your FTP + administration passwords on the site so you don't just have to go right back to the start again.

Good luck!

无戏配角 2024-08-19 09:30:33

您可能经历过跨站脚本攻击(XSS)

来自维基百科:

跨站脚本 (XSS) 是一种通常在 Web 应用程序中发现的计算机安全漏洞,它使恶意攻击者能够将客户端脚本注入其他用户查看的网页中。

You have probably experienced Cross Site Scripting (XSS).

From Wikipedia:

Cross-site scripting (XSS) is a type of computer security vulnerability typically found in web applications which enable malicious attackers to inject client-side script into web pages viewed by other users.

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