漏洞描述
Default login and password to access administrator panel
id: xploitspy-default-login
info:
name: XploitSPY - Default Login
author: andreluna
severity: high
verified: false
description: |
Default login and password to access administrator panel
reference:
- https://github.com/XploitWizer-Community/XploitSPY
tags: xploitspy,default-login
set:
rooturl: request.url
hostname: request.url.host
rules:
r0:
request:
method: POST
path: /login
headers:
Origin: "{{rooturl}}"
Content-Type: application/x-www-form-urlencoded
Referer: "{{rooturl}}/login"
body: username=admin&password=password&hostname={{hostname}}
follow_redirects: true
expression: response.status == 200 && response.body.bcontains(b'Change Password') && response.body.bcontains(b'Logout')
expression: r0()