Skip to content

Instantly share code, notes, and snippets.

@suhovius
Forked from htp/curl-websocket.sh
Created March 14, 2017 21:34
Show Gist options
  • Save suhovius/92e38ff43b670b8149f3ecacb328e594 to your computer and use it in GitHub Desktop.
Save suhovius/92e38ff43b670b8149f3ecacb328e594 to your computer and use it in GitHub Desktop.
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/
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment