0.WebSocket基础
Last updated
Last updated
HTML5
基于TCP协议的独立的通信协议
ws://
类似与http
使用明文传输 ,默认端口为80
ws://host[:port]path[?query]
wss://
类似于https
使用TLS加密传输,默认端口为443
wss://host[:port]path[?query]
客户端
Connection: Upgrade
:表示要升级协议
Upgrade: websocket
:表示要升级到websocket协议。
Sec-WebSocket-Version: 13
:表示websocket的版本。如果服务端不支持该版本,需要返回一个Sec-WebSocket-Version
header,里面包含服务端支持的版本号。
Sec-WebSocket-Key
:
https://github.com/snoopysecurity/dvws-node
burp不支持websockert爆破,协议转换 http-->websockert HTTP2WebSocket
https://portswigger.net/web-security/websockets