浏览器不正确如何限制访问网站信息?
如果用户不使用特定的网络浏览器,是否有可能限制对网站上的信息和数据的访问? 想要开发一款只能查看一个网站的网络浏览器。我正在开发一个 NFT 市场,出于安全原因,我想将网站和网络浏览器融合在一起。 以前没见过有人这样做。 是否可以使用 javascript 和/或 jquery 来限制它?
Is there a possibility to restrict access to the information and data on a website if the user is not using a specific web browser?
Want to develop a web browser that can view only one website. I am developing an NFT marketplace and for security reasons, I want to fuse a website and a web browser in one.
Didn't see anyone do this before.
Is it possible to restrict it with javascript and/or jquery?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您可以读取 UserAgent 标头,或 JavaScript 中的
navigator.userAgent
。但这只是为了用户方便,而不是安全,因为用户可以将其 UserAgent 更改为他们想要的任何内容。You can read the UserAgent header, or
navigator.userAgent
in JavaScript. This is only for user convenience though, not security, as a user can change their UserAgent to anything they want.