Files
nuclei-templates/technologies/bookstack-detect.yaml
forgedhallpass 4c920b2552 Rename "references" to "reference" to match the expected template info structure
Related nuclei tickets:
* #259 - dynamic key-value field support for template information
* #940 - new infos in template
* #834
* RES-84
2021-08-18 14:29:20 +03:00

31 lines
644 B
YAML

id: bookstack-detect
info:
name: BookStack detect
author: cyllective
severity: info
description: Detects BookStack
tags: tech,bookstack
reference: https://github.com/BookStackApp/BookStack
requests:
- method: GET
path:
- "{{BaseURL}}/login"
matchers-condition: and
matchers:
- type: word
part: body
condition: or
words:
- '<title>BookStack</title>'
- '<span class="logo-text">BookStack</span>'
extractors:
- type: regex
part: body
group: 1
regex:
- '(?:app\.js|(?:print\-)?styles\.css)\?version=([\w\.\-]+)["'']>'