从服务器的 html 页面外部使用 java applet
我们有一个 Java 服务器客户端应用程序,在客户端有一个小程序。
我们的小程序似乎被攻击者用于机器人和其他攻击...我们怀疑他们修改并使用了它。
因为我们使用高度加密的数据包,所以他们只能通过两种方式做到这一点:
1.修改我们的小程序并以某种方式使用它来对付我们。
2.构建一个完整的软件,可以处理相同的协议和加密机制来与我们的服务器通信并执行攻击。
有没有办法阻止从服务器外部使用小程序?(我们服务器上的 html 页面)。
we have a java server-client application with an applet in the client side.
our applet seems to be used by attackers for bots and other attacks... we suspect that they modified it and used it.
because we use strongly encrypted packets they can do that in only two ways:
1.modify our applet and use it against us in someway.
2.build a whole software that can handle the same protocol and encryption mechanism to talk to our servers and perform attacks.
is there anyway to prevent using an applet from outside the server?(the html page on our server).
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
攻击者可以通过多种方式自动与您的小程序进行交互。一些方法是:
浏览器插件没有真正的好方法来防止这种情况。我可以建议的一件事是限制每个客户端会话的请求。这并不能完全阻止机器人,但至少可以将它们减慢到人类的速度。
There are a handful of ways attackers could automate interactions with your applet. Some ways are:
There isn't really a good way to prevent this. One thing that I can suggest is throttling requests per individual client sessions. This won't completely prevent bots but can at least slow them down to human speeds.