Skip to content

Instantly share code, notes, and snippets.

View davidstump's full-sized avatar

David Stump davidstump

View GitHub Profile
@davidstump
davidstump / curl-websocket.sh
Created March 17, 2020 05:06 — forked from htp/curl-websocket.sh
Test a WebSocket using curl.
curl --include \
--no-buffer \
--header "Connection: Upgrade" \
--header "Upgrade: websocket" \
--header "Host: example.com:80" \
--header "Origin: http://example.com:80" \
--header "Sec-WebSocket-Key: SGVsbG8sIHdvcmxkIQ==" \
--header "Sec-WebSocket-Version: 13" \
http://example.com:80/