
Cloud Vulnerability DB
A community-led vulnerabilities database
The linkdave server does not enforce authentication on its REST and WebSocket routes in versions prior to 0.1.5.
An attacker with network access to the server port can:
/ws) and receive a valid session_id in the OpReady response./stats endpoint (still public after the fix).
[1] If on >=0.1.0, attackers are restricted to creating, controlling and deleting players created within their own session ID.The following routes were entirely unauthenticated in >= 0.0.1, < 0.1.5:
| Method | Path | Description |
|---|---|---|
POST | /sessions/{session_id}/players/{guild_id}/play | Start audio playback |
POST | /sessions/{session_id}/players/{guild_id}/pause | Pause playback |
POST | /sessions/{session_id}/players/{guild_id}/resume | Resume playback |
POST | /sessions/{session_id}/players/{guild_id}/stop | Stop playback |
POST | /sessions/{session_id}/players/{guild_id}/seek | Seek to position |
PATCH | /sessions/{session_id}/players/{guild_id}/volume | Set volume |
DELETE | /sessions/{session_id}/players/{guild_id} | Disconnect from voice channel |
GET | /ws | WebSocket event stream |
Update to 0.1.5.
- image: ghcr.io/shi-gg/linkdave:0.1.4
+ image: ghcr.io/shi-gg/linkdave:latestor
docker pull ghcr.io/shi-gg/linkdave:latestAfter upgrading, set the LINKDAVE_PASSWORD environment variable to a strong secret value. If this variable is left unset, the server will still accept all connections without authentication even on >= 0.1.5.
Server configuration (e.g. compose.yml):
environment:
LINKDAVE_PASSWORD: ${LINKDAVE_PASSWORD}echo "LINKDAVE_PASSWORD=$(openssl rand -hex 16)" >> .envTo restart the stack, run
docker compose up -dTypeScript client (0.1.5+):
The client automatically handles authentication. Pass the password when constructing the client:
const linkdave = new LinkDaveClient({
nodes: [
{
name: "main",
url: process.env.LINKDAVE_URI,
password: process.env.LINKDAVE_PASSWORD
}
]
});If upgrading is not immediately possible, restrict network access to the server's port using a firewall so it is only accessible from trusted internal IP addresses.
Source: NVD
Free Vulnerability Assessment
Evaluate your cloud security practices across 9 security domains to benchmark your risk level and identify gaps in your defenses.
Get a personalized demo
"Best User Experience I have ever seen, provides full visibility to cloud workloads."
"Wiz provides a single pane of glass to see what is going on in our cloud environments."
"We know that if Wiz identifies something as critical, it actually is."