nuclei-templates/vulnerabilities/other/icewarp-openredirects.yaml

41 lines
840 B
YAML
Raw Normal View History

2022-07-09 09:22:47 +00:00
id: icewarp-open-redirect
2022-07-08 10:58:41 +00:00
info:
2022-07-09 09:22:47 +00:00
name: IceWarp - Open Redirect
2022-07-08 10:58:41 +00:00
author: uomogrande
2022-07-09 09:22:47 +00:00
severity: low
2022-07-08 10:58:41 +00:00
description: Detects icewarp open redirects / fixed in Version 13.0.2.4
2022-07-09 09:22:47 +00:00
metadata:
verified: true
shodan-query: title:"icewarp"
2022-07-08 10:58:41 +00:00
tags: icewarp,redirect
requests:
- raw:
- |
GET ///interact.sh/%2F.. HTTP/1.1
matchers-condition: and
matchers:
2022-07-09 09:22:47 +00:00
- type: word
part: header
words:
- 'IceWarp'
2022-07-08 10:58:41 +00:00
2022-07-09 09:22:47 +00:00
- type: regex
part: header
regex:
2022-07-09 09:25:04 +00:00
- '(?m)^(?:Location\s*?:\s*?)(?:https?:\/\/|\/\/|\/\\\\|\/\\)?(?:[a-zA-Z0-9\-_\.@]*)interact\.sh\/?(\/|[^.].*)?$'
2022-07-09 09:22:47 +00:00
- type: status
status:
- 302
2022-07-08 10:58:41 +00:00
extractors:
- type: regex
name: redirected
part: header
group: 1
regex:
- 'Server: (.{4,20})'