websocket-implementation

Warn

Audited by Runlayer on Mar 4, 2026

Risk Level: MEDIUM
Scan Summary
Max Score
77%
Files
10
Flagged
2
Chunks
11
Flagged Files (2)
websocket-implementation/references/scaling-with-redis.mdMEDIUM
77.1%

Malicious tool definition detected

io.adapter(createAdapter(pubClient, subClient)); // Publish to multiple servers io.emit("user:action", { userId: 123, action: "login" }); // Subscribe to events from other servers redisClient.subscribe("notifications", (message) => { const notification = JSON.parse(message); io.to(`user:${notification.userId}`).emit("notification", notification); }); ```

websocket-implementation/SKILL.md.originalLOW
74.7%

Tool passed security scan

Malicious tool definition detected

**Scaling with Redis** ```javascript const redis = require("redis"); const { createAdapter } = require("@socket.io/redis-adapter"); const { createClient } = require("redis"); const pubClient = createClient({ host: "redis", port: 6379 }); const subClient = pubClient.duplicate(); io.adapter(createAdapter(pubClient, subClient)); // Publish to multiple servers io.emit("user:action", { userId: 123, action: "login" }); // Subscribe to events from other servers redisClient.subscribe("notifications", (m

Passed Files (8)Click to expand
websocket-implementation/scripts/validate-api.shOK
33.6%

Tool passed security scan

websocket-implementation/references/nodejs-websocket-server-socketio.mdOK
31.1%

Tool passed security scan

websocket-implementation/references/python-websocket-server-aiohttp.mdOK
25.4%

Tool passed security scan

websocket-implementation/SKILL.mdOK
12.0%

Tool passed security scan

websocket-implementation/references/browser-websocket-client.mdOK
7.5%

Tool passed security scan

websocket-implementation/restructure-report.jsonOK
2.2%

Tool passed security scan

websocket-implementation/references/message-types-and-protocols.mdOK
1.4%

Tool passed security scan

websocket-implementation/templates/api-scaffold.yamlOK
1.3%

Tool passed security scan

Audit Metadata
Max File Score
77%
Classification
KNOWN_SERVER_ALL_UNKNOWN
Files Scanned
10
Files Flagged
2
Chunks Analyzed
11
Analyzed
Mar 4, 2026, 05:09 PM
Security Audit — runlayer — websocket-implementation