mirror of
https://github.com/projectdiscovery/nuclei-templates.git
synced 2026-02-05 02:03:35 +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
28 lines
581 B
YAML
28 lines
581 B
YAML
id: getsimple-cms-detect
|
|
|
|
info:
|
|
name: GetSimple CMS Detection
|
|
author: pikpikcu,philippedelteil
|
|
severity: info
|
|
description: Template to detect a running GetSimple CMS instance
|
|
tags: tech,getsimple
|
|
|
|
requests:
|
|
- method: GET
|
|
path:
|
|
- "{{BaseURL}}"
|
|
- "{{BaseURL}}/readme.txt"
|
|
|
|
stop-at-first-match: true
|
|
matchers-condition: and
|
|
matchers:
|
|
- type: status
|
|
status:
|
|
- 200
|
|
|
|
- type: word
|
|
words:
|
|
- "Powered by GetSimple"
|
|
- 'GetSimple CMS is a flatfile CMS'
|
|
part: body
|
|
condition: or |