Added more CMS detection

patch-1
sandeep 2021-04-20 15:44:18 +05:30
parent 39f0874e29
commit 3d955b58a6
2 changed files with 57 additions and 0 deletions

View File

@ -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\.'

View File

@ -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 &amp; Python</a>'