nuclei-templates/misconfiguration/unauth-wavink-panel.yaml

48 lines
977 B
YAML

id: unauth-wavink-panel
info:
name: Wavlink Panel - Unauthenticated Access
author: princechaddha
severity: high
description: Wavlink Panel was able to be accessed with no authentication requirements in place.
metadata:
verified: true
shodan-query: http.title:"Wi-Fi APP Login"
tags: exposure,wavlink,unauth,misconfig,router
requests:
- method: GET
path:
- "{{BaseURL}}/wifi_base.shtml"
matchers-condition: and
matchers:
- type: word
part: body
words:
- "<title>APP</title>"
- type: regex
part: body
regex:
- 'var passphraseKey12="(.*)";'
- type: word
part: body
negative: true
words:
- 'var passphraseKey12="";'
- type: status
status:
- 200
extractors:
- type: regex
part: body
group: 1
regex:
- 'var passphraseKey12="(.*)";'
# Enhanced by mp on 2022/07/21