nuclei-templates/exposed-panels/rundeck-login.yaml

47 lines
1.0 KiB
YAML
Raw Normal View History

2022-08-01 08:15:48 +00:00
id: rundeck-login
info:
name: Rundeck Login Panel - Detect
2022-10-25 10:53:09 +00:00
author: DhiyaneshDk, daffainfo
2022-08-01 08:15:48 +00:00
severity: info
description: Rundeck login panel was detected.
classification:
cvss-metrics: CVSS:3.0/AV:N/AC:L/PR:N/UI:N/S:U/C:N/I:N/A:N
cvss-score: 0.0
cwe-id: CWE-200
2022-08-01 08:15:48 +00:00
metadata:
verified: true
2022-08-01 17:06:24 +00:00
shodan-query: title:"Rundeck"
2022-08-01 08:15:48 +00:00
tags: panel,rundeck
requests:
- method: GET
path:
- '{{BaseURL}}/user/login'
2022-10-25 10:53:09 +00:00
host-redirects: true
max-redirects: 2
matchers-condition: and
2022-08-01 08:15:48 +00:00
matchers:
- type: word
part: body
words:
2022-10-25 10:53:09 +00:00
- 'alt="Rundeck"'
- '/assets/rundeck' ## For old rundeck
2022-10-23 15:32:18 +00:00
condition: or
2022-08-01 08:15:48 +00:00
- type: status
status:
- 200
extractors:
- type: regex
2022-08-01 08:15:48 +00:00
part: body
group: 1
regex:
2022-10-25 10:53:09 +00:00
- 'utm_medium=([0-9.]+)-'
- 'data-version-string=\"([0-9.-]+)\"' ## Detection version on old rundeck
- '<span class="version">([0-9.-]+)<\/span>' ## Detection on very old rudneck
# Enhanced by md on 2023/01/03