WSS on HTTP vs WSS on HTTPS

后端 未结 3 2105
长情又很酷
长情又很酷 2020-11-29 03:43

I\'ve read that WS only works on HTTP, and that WSS works on both HTTP and HTTPS. Are WSS (Secure Web Socket) connections just as secure on an HTTP server as they are on an

3条回答
  •  自闭症患者
    2020-11-29 04:27

    Is a web socket secure (wss) connection still encrypted through TLS/SSL if the website/server is not?

    Yes.

    Are wss (Secure Web Socket) connections just as secure on an http server as they are on an https server?

    Yes (see above). There is one thing to note: if the HTML/JavaScript that opens the secure WebSocket connection comes over non-secure HTTP, the WebSocket connection is still secure, but an attacker might modify the HTML/JavaScript while being sent from the Web server to browser. A HTTP connection isn't protected against man-in-the-middle sniffing or modification.

提交回复
热议问题