nuclei-templates/http/technologies/mappproxy-detect.yaml

40 lines
1.0 KiB
YAML
Raw Normal View History

id: mappproxy-detect
info:
2023-10-27 15:51:56 +00:00
name: Mapproxy - Detect
author: philippedelteil
severity: info
2023-10-27 06:29:15 +00:00
description: |
Checks for a running MapProxy instance and obtain version number. Also checks if the demo page is enabled. MapProxy is an open source proxy for geospatial data. It caches, accelerates and transforms data from existing map services and serves any desktop or web GIS client.
reference:
- https://github.com/mapproxy/mapproxy
- https://mapproxy.org
metadata:
max-request: 1
shodan-query: http.html:"Welcome to MapProxy"
2023-10-27 06:29:15 +00:00
tags: tech,mapproxy,detect
http:
- method: GET
path:
- "{{BaseURL}}"
- "{{BaseURL}}/demo"
host-redirects: true
max-redirects: 2
matchers-condition: and
matchers:
- type: word
part: body
words:
- "Welcome to MapProxy"
- "MapProxy Demo"
condition: or
2023-10-27 06:29:15 +00:00
extractors:
- type: regex
part: body
group: 1
regex:
2023-10-27 06:29:15 +00:00
- MapProxy(?i) ([0-9]+\.[0-9]+\.[0-9]+)