Added Neos Templates (#3262)

patch-1
Sandeep Singh 2021-12-04 14:59:43 +05:30 committed by GitHub
parent cdcd44648a
commit a178bffd8a
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 57 additions and 0 deletions

View File

@ -0,0 +1,31 @@
id: neos-panel
info:
name: Neos CMS Login Panel
author: k11h-de
severity: info
description: detection of default route to admin login panel based on warranty disclainer in footer
reference: https://github.com/neos/neos/blob/master/Configuration/Routes.yaml
tags: panel,neos,cms
requests:
- method: GET
path:
- '{{BaseURL}}/neos/login'
redirects: true
max-redirects: 2
matchers-condition: and
matchers:
- type: word
words:
- 'Neos comes with ABSOLUTELY NO WARRANTY'
- type: status
status:
- 200
extractors:
- type: kval
kval:
- 'x_flow_powered'

View File

@ -0,0 +1,26 @@
id: neos-detect
info:
name: Neos CMS detection
author: k11h-de
description: some Neos websites remove the X-Flow-Powered Header, but they usually all have a comment line at the top of the body
severity: info
reference: https://github.com/neos/
tags: tech,neos,cms
requests:
- method: GET
path:
- "{{BaseURL}}"
redirects: true
max-redirects: 2
matchers:
- type: word
words:
- "This website is powered by Neos"
extractors:
- type: kval
kval:
- 'x_flow_powered'