mirror of
https://github.com/lunchcat/sif.git
synced 2026-07-28 22:40:54 -07:00
add recon modules for unauthenticated annotation servers that leak projects or config without a key: cvat and label studio.
45 lines
867 B
YAML
45 lines
867 B
YAML
# CVAT Server Exposure Detection Module
|
|
|
|
id: cvat-server-exposure
|
|
info:
|
|
name: CVAT Server Exposure
|
|
author: sif
|
|
severity: low
|
|
description: Detects an exposed CVAT computer vision annotation platform over its unauthenticated about endpoint, which discloses the server version
|
|
tags: [cvat, ai, ml, annotation, exposure, recon]
|
|
|
|
type: http
|
|
|
|
http:
|
|
method: GET
|
|
paths:
|
|
- "{{BaseURL}}/api/server/about"
|
|
|
|
matchers:
|
|
- type: status
|
|
status:
|
|
- 200
|
|
|
|
- type: regex
|
|
part: body
|
|
regex:
|
|
- '"name"\s*:\s*"Computer Vision Annotation Tool"'
|
|
|
|
- type: word
|
|
part: body
|
|
words:
|
|
- "\"version\""
|
|
|
|
- type: word
|
|
part: body
|
|
words:
|
|
- "\"logo_url\""
|
|
|
|
extractors:
|
|
- type: regex
|
|
name: cvat_version
|
|
part: body
|
|
regex:
|
|
- '"version"\s*:\s*"([^"]+)"'
|
|
group: 1
|