nuclei-templates/technologies/nextcloud-detect.yaml

38 lines
785 B
YAML
Raw Normal View History

2021-09-05 17:22:45 +00:00
id: nextcloud-detect
info:
name: Nextcloud Detect
author: skeltavik
severity: info
description: Nextcloud is a suite of client-server software for creating and using file hosting services
reference: https://nextcloud.com
2021-09-05 17:22:45 +00:00
tags: tech,nextcloud,storage
requests:
- method: GET
path:
- '{{BaseURL}}'
- '{{BaseURL}}/login'
- '{{BaseURL}}/nextcloud/index.php/login'
2021-09-05 17:22:45 +00:00
stop-at-first-match: true
2021-09-05 17:22:45 +00:00
redirects: true
max-redirects: 2
matchers:
- type: word
part: body
words:
- 'var nc_lastLogin'
- 'var nc_pageLoad'
condition: and
- type: status
status:
- 200
extractors:
- type: regex
group: 1
regex:
- '(?m)"version":"([0-9.]+)",'