mirror of
https://github.com/projectdiscovery/nuclei-templates.git
synced 2026-02-04 17:53:27 +08:00
* info field reorder * reference values refactored to list * added new lines after the id and before the protocols * removed extra new lines * split really long descriptions to multiple lines (part 1) * other minor fixes
26 lines
630 B
YAML
26 lines
630 B
YAML
id: plone-cms-detect
|
|
|
|
info:
|
|
name: Plone CMS detect
|
|
author: cyllective
|
|
severity: info
|
|
description: Detects Plone CMS
|
|
reference:
|
|
- https://github.com/plone/Products.CMFPlone
|
|
tags: tech,plone,cms
|
|
|
|
requests:
|
|
- method: GET
|
|
path:
|
|
- "{{BaseURL}}"
|
|
|
|
matchers:
|
|
- type: word
|
|
part: body
|
|
condition: or
|
|
words:
|
|
- '<meta name="generator" content="Plone - '
|
|
- '<div xmlns:css="http://namespaces.plone.org/diazo/css"'
|
|
- '/++plone++static/plone-compiled.css'
|
|
- '/++plone++static/tinymce-styles.css'
|
|
- '>Powered by Plone & Python</a>' |