mirror of
https://github.com/lunchcat/sif.git
synced 2026-08-01 16:27:37 -07:00
add recon modules for self-hosted vector and semantic search engines reachable without auth: marqo, vespa, and meilisearch each allow unauthenticated read and write of the indexed data, and their root or version endpoints disclose the build.
40 lines
828 B
YAML
40 lines
828 B
YAML
# Marqo Vector Search Engine Exposure Detection Module
|
|
|
|
id: marqo-exposure
|
|
info:
|
|
name: Marqo Exposure
|
|
author: sif
|
|
severity: high
|
|
description: Detects an exposed Marqo vector search engine, which ships without authentication; a reachable instance exposes its full document and index api for unauthenticated read, write, and delete
|
|
tags: [marqo, vector, ai, ml, search, exposure, recon]
|
|
|
|
type: http
|
|
|
|
http:
|
|
method: GET
|
|
paths:
|
|
- "{{BaseURL}}/"
|
|
|
|
matchers:
|
|
- type: status
|
|
status:
|
|
- 200
|
|
|
|
- type: regex
|
|
part: body
|
|
regex:
|
|
- '"message"\s*:\s*"Welcome to Marqo"'
|
|
|
|
- type: word
|
|
part: body
|
|
words:
|
|
- "\"version\""
|
|
|
|
extractors:
|
|
- type: regex
|
|
name: marqo_version
|
|
part: body
|
|
regex:
|
|
- '"version"\s*:\s*"([^"]+)"'
|
|
group: 1
|