Merge pull request #5395 from ChristianWeiler/adselfservice_version_detect
Added ManageEngine ADSelfService Version Detection Templatepatch-1
commit
d0cd23ce05
|
@ -2,9 +2,10 @@ id: manageengine-adselfservice
|
||||||
|
|
||||||
info:
|
info:
|
||||||
name: ZOHO ManageEngine ADSelfService Plus
|
name: ZOHO ManageEngine ADSelfService Plus
|
||||||
author: dhiyaneshDK
|
author: dhiyaneshDK,SaK1
|
||||||
severity: info
|
severity: info
|
||||||
metadata:
|
metadata:
|
||||||
|
verified: true
|
||||||
shodan-query: http.title:"ADSelfService Plus"
|
shodan-query: http.title:"ADSelfService Plus"
|
||||||
tags: panel,zoho,manageengine
|
tags: panel,zoho,manageengine
|
||||||
|
|
||||||
|
@ -12,13 +13,24 @@ requests:
|
||||||
- method: GET
|
- method: GET
|
||||||
path:
|
path:
|
||||||
- '{{BaseURL}}/authorization.do'
|
- '{{BaseURL}}/authorization.do'
|
||||||
|
- "{{BaseURL}}/servlet/GetProductVersion"
|
||||||
|
|
||||||
matchers-condition: and
|
matchers-condition: and
|
||||||
matchers:
|
matchers:
|
||||||
- type: word
|
- type: word
|
||||||
|
part: body
|
||||||
words:
|
words:
|
||||||
- '<title>ADSelfService Plus</title>'
|
- '<title>ADSelfService Plus</title>'
|
||||||
|
- '"PRODUCT_NAME":"ManageEngine ADSelfService'
|
||||||
|
condition: or
|
||||||
|
|
||||||
- type: status
|
- type: status
|
||||||
status:
|
status:
|
||||||
- 200
|
- 200
|
||||||
|
|
||||||
|
extractors:
|
||||||
|
- type: regex
|
||||||
|
part: body
|
||||||
|
group: 1
|
||||||
|
regex:
|
||||||
|
- '"BUILD_NUMBER":"([0-9]+)"'
|
||||||
|
|
Loading…
Reference in New Issue