Files
sif/modules/recon/aim-exposure.yaml
T
TigahandGitHub fcccff5532 feat(modules): detect exposed ml experiment trackers (#243)
add recon modules for self-hosted training and experiment-tracking
platforms reachable without auth: mlflow, tensorboard, aim, and
determined disclose experiments, the artifact store, training run paths,
and cluster topology over unauthenticated apis.
2026-07-02 12:55:47 -07:00

45 lines
893 B
YAML

# Aim Experiment Tracker Exposure Detection Module
id: aim-exposure
info:
name: Aim Experiment Tracker Exposure
author: sif
severity: medium
description: Detects an exposed Aim experiment tracker; its unauthenticated project api discloses the tracking repo path and serves all logged metrics, params, images, and texts
tags: [aim, ai, ml, mlops, training, exposure, recon]
type: http
http:
method: GET
paths:
- "{{BaseURL}}/api/projects/"
matchers:
- type: status
status:
- 200
- type: word
part: body
words:
- "\"telemetry_enabled\""
- type: word
part: body
words:
- "\"warn_index\""
- type: word
part: body
words:
- "\"warn_runs\""
extractors:
- type: regex
name: aim_project_path
part: body
regex:
- '"path"\s*:\s*"([^"]+)"'
group: 1