2022-07-28 14:07:27 +00:00
|
|
|
id: owncloud-status-page
|
2022-07-22 10:38:58 +00:00
|
|
|
|
|
|
|
info:
|
2022-07-28 14:07:27 +00:00
|
|
|
name: Owncloud StatusPage detection
|
|
|
|
author: myztique
|
2022-07-22 10:38:58 +00:00
|
|
|
severity: info
|
2022-07-28 14:07:27 +00:00
|
|
|
metadata:
|
|
|
|
verified: true
|
|
|
|
shodan-query: http.html:"owncloud"
|
|
|
|
tags: tech,owncloud,status
|
2022-07-22 10:38:58 +00:00
|
|
|
|
|
|
|
requests:
|
|
|
|
- method: GET
|
|
|
|
path:
|
|
|
|
- "{{BaseURL}}/status.php"
|
|
|
|
|
|
|
|
matchers:
|
|
|
|
- type: regex
|
|
|
|
part: body
|
|
|
|
regex:
|
2022-07-28 14:07:27 +00:00
|
|
|
- '{"installed":(?:true|false),"maintenance":(?:true|false),"version":"[0-9\.]*","versionstring":"[a-z-A-Z0-9\.]*","edition":"[\d\D]*"}'
|
2022-07-22 10:38:58 +00:00
|
|
|
|
|
|
|
extractors:
|
|
|
|
- type: regex
|
|
|
|
part: body
|
|
|
|
name: version
|
|
|
|
group: 1
|
|
|
|
regex:
|
2022-07-28 14:07:27 +00:00
|
|
|
- '{[\d\D]*"version":"([0-9\.]+)"'
|