Skip to content

Commit

Permalink
Add files via upload
Browse files Browse the repository at this point in the history
  • Loading branch information
righettod authored Aug 23, 2024
1 parent 5ba4166 commit c1decfc
Showing 1 changed file with 34 additions and 0 deletions.
34 changes: 34 additions & 0 deletions http/exposed-panels/hashicorp-vault-panel.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,34 @@
id: hashicorp-vault-panel

info:
name: HashiCorp Vault - Detect
author: righettod
severity: info
description: HashiCorp Vault panel was detected.
reference:
- https://developer.hashicorp.com/vault
metadata:
verified: true
shodan-query: http.html:"vault/config/environment"
tags: panel,hashicorp,detect,login

http:
- method: GET
path:
- "{{BaseURL}}/v1/sys/health"
- "{{BaseURL}}/ui/vault/auth"

stop-at-first-match: true
matchers:
- type: dsl
dsl:
- 'status_code == 200 || status_code == 429'
- 'contains_any(to_lower(body), "vault-cluster", "vault/config/environment")'
condition: and

extractors:
- type: regex
part: body
group: 1
regex:
- '(?i)"version":\s*"([0-9.]+)"'

0 comments on commit c1decfc

Please sign in to comment.