Files
sif/modules/recon/anythingllm-exposure.yaml
T
TigahandGitHub 9e2965b777 feat(modules): detect exposed llm chat frontends (#237)
add recon modules for unauthenticated chat uis that leak config or allow open signup without a key: open webui, librechat, anythingllm, and nextchat.
2026-07-02 12:55:39 -07:00

45 lines
932 B
YAML

# AnythingLLM Exposure Detection Module
id: anythingllm-exposure
info:
name: AnythingLLM Exposure
author: sif
severity: medium
description: Detects an exposed AnythingLLM instance; its unauthenticated setup endpoint discloses the chosen llm provider and model, the vector database, the embedding engine, and whether multi-user auth is enabled
tags: [anythingllm, llm, ai, rag, chat, ui, exposure, recon]
type: http
http:
method: GET
paths:
- "{{BaseURL}}/api/setup-complete"
matchers:
- type: status
status:
- 200
- type: word
part: body
words:
- "\"LLMProvider\""
- type: word
part: body
words:
- "\"VectorDB\""
- type: word
part: body
words:
- "\"EmbeddingEngine\""
extractors:
- type: regex
name: anythingllm_model
part: body
regex:
- '"LLMModel"\s*:\s*"([^"]+)"'
group: 1