内网如何从Http重定向到Https?
我有一个 vb.net 应用程序作为 Intranet 在 Win Server 2003 上运行。那么我应该使用 HTTPS 而不是 HTTP 吗?
如果答案是 HTTPS,有什么区别或者为什么我应该这样做? VB中有没有从HTTP重定向到HTTPS的代码?
预先感谢大家的时间和考虑。
I have a vb.net application running as intranet on Win Server 2003. So should I use HTTPS instead of HTTP?
What is the difference or why should I if the answer is HTTPS? Is there any code in VB to redirect from HTTP to HTTPS?
Thanking you all in advance for your time and consideration.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您应该使用 HTTPS 以确保免受 窃听者 和 中间人攻击。 HTTPS 通过网络创建安全通道,前提是使用足够的密码套件并且服务器证书经过验证并值得信赖。
内部网的暴露程度显然比公共互联网少,但如果您要将敏感数据(例如密码)从服务器传输到浏览器,您仍然应该使用 HTTPS。
假设您使用 IIS 为您的网站提供服务,您可能需要查看以下文章以进一步阅读:
You should use HTTPS to ensure reasonable protection from eavesdroppers and man-in-the-middle attacks. HTTPS creates a secure channel over the network, provided that adequate cipher suites are used and that the server certificate is verified and trusted.
An intranet is obviously less exposed than the public internet, but you should still use HTTPS if you are transferring sensitive data (such as passwords) from the server to the browsers.
Assuming you are using IIS to serve your website, you may want to check the following articles for further reading: