33 lines
709 B
YAML
33 lines
709 B
YAML
id: zimbra-detect
|
|
|
|
info:
|
|
name: Zimbra Detect
|
|
author: UdinChan
|
|
severity: info
|
|
description: Send a GET request to js file on Zimbra server to obtain version information
|
|
tags: tech,zimbra
|
|
|
|
requests:
|
|
- method: GET
|
|
path:
|
|
- "{{BaseURL}}/js/zimbraMail/share/model/ZmSettings.js"
|
|
|
|
matchers-condition: and
|
|
matchers:
|
|
- type: word
|
|
part: body
|
|
words:
|
|
- "Zimbra Collaboration Suite Web Client"
|
|
|
|
- type: word
|
|
part: header
|
|
words:
|
|
- "application/x-javascript"
|
|
|
|
extractors:
|
|
- type: regex
|
|
part: body
|
|
group: 1
|
|
regex:
|
|
- 'CLIENT_VERSION\", {type:ZmSetting.T_CONFIG, defaultValue:\"(.*?)"'
|