Added more CMS detection
parent
39f0874e29
commit
3d955b58a6
|
@ -0,0 +1,31 @@
|
||||||
|
id: mautic-crm-detect
|
||||||
|
|
||||||
|
info:
|
||||||
|
name: mautic crm detect
|
||||||
|
author: cyllective
|
||||||
|
severity: info
|
||||||
|
description: Detects Mautic CRM
|
||||||
|
tags: tech,mautic,crm
|
||||||
|
references:
|
||||||
|
- https://github.com/mautic/mautic
|
||||||
|
|
||||||
|
requests:
|
||||||
|
- method: GET
|
||||||
|
path:
|
||||||
|
- "{{BaseURL}}/s/login"
|
||||||
|
|
||||||
|
matcherscondition: or
|
||||||
|
matchers:
|
||||||
|
- type: word
|
||||||
|
part: body
|
||||||
|
condition: or
|
||||||
|
words:
|
||||||
|
- '<title>Mautic</title>'
|
||||||
|
- '<div class="mautic-logo'
|
||||||
|
|
||||||
|
- type: regex
|
||||||
|
part: body
|
||||||
|
condition: or
|
||||||
|
regex:
|
||||||
|
- 'var\s+?mautic(?:BasePath|BaseUrl|AjaxUrl|AjaxCsrf|AssetPrefix|Content|Env|Lang)\s+?='
|
||||||
|
- 'Copyright \d{4} Mautic\. All Rights Reserved\.'
|
|
@ -0,0 +1,26 @@
|
||||||
|
id: plone-cms-detect
|
||||||
|
|
||||||
|
info:
|
||||||
|
name: Plone CMS detect
|
||||||
|
author: cyllective
|
||||||
|
severity: info
|
||||||
|
description: Detects Plone CMS
|
||||||
|
tags: tech,plone,cms
|
||||||
|
references:
|
||||||
|
- https://github.com/plone/Products.CMFPlone
|
||||||
|
|
||||||
|
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>'
|
Loading…
Reference in New Issue