通过框架进行网络钓鱼

发布于 2024-12-10 04:56:56 字数 79 浏览 0 评论 0原文

我的 .net 应用程序使用框架。目前存在通过框架发生的网络钓鱼。有没有一种方法可以通过编程来控制它。另外,建议一个工具来查找此类网络钓鱼攻击。

My .net application uses frames. Currently there is phishing that happens through frames. Is there a way it can be controlled programmatically. Also, suggest a tool to find such phishing attacks.

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

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

发布评论

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

评论(1

家住魔仙堡 2024-12-17 04:56:56

我在 Incapsula 工作,我们通过多种方式处理此类尝试,主要是使用不同的验证方法:

简单地说,我们根据已知的攻击向量或/和可疑参数检查会话 URL。

例如,如果 XSS 尝试看起来像这样:

http://www.yourdomain.com/index.php?search=”‘><iframe src=”http://www.phisingsite.com”
height=”200″ width=”200″></iframe> 

那么您可以指出各种“可疑”迹象。(当然除了 phishngsite.com...)

话虽如此,我不确定您如何可以自己实现这一点,因为整个方法依赖于拥有大量可疑签名/攻击向量来用于交叉验证。

特别是对于 XSS,URL 验证是一个很好的起点。

I work for Incapsula and we deal with such attempts in several ways, mainly by using different verification methods:

To put it simply, we checking session URL against known attack vectors or/and suspicious parameters.

For example, if a XSS attempt looks something like this:

http://www.yourdomain.com/index.php?search=”‘><iframe src=”http://www.phisingsite.com”
height=”200″ width=”200″></iframe> 

Then there are all kinds of "suspicious" signs you can point to.(besides the phishngsite.com of course... )

Having said that, I`m not sure how you can implement this yourself since this whole method relies on having a large Pool of Suspicions Signatures/Attack Vectors to be used for cross-verification.

For XSS specifically, URL validation is a good place to start.

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