|
1 | 1 | # Product Introduction |
2 | 2 |
|
3 | | -??? warning "Important Notice | JumpServer Vulnerability Notification and Fix 2025-10-30 (CVE-2025-62712|CVE-2025-62795)" |
4 | | - **In October 2025, users reported security vulnerabilities in JumpServer open source bastion machine and reported them to the JumpServer open source project team.** |
5 | | - |
6 | | - **Vulnerability Information:** |
7 | | - <br>1. [JumpServer token list for connected sessions has privilege escalation risk, CVE number CVE-2025-62712](https://nvd.nist.gov/vuln/detail/CVE-2025-62712) |
8 | | - <br>2. [JumpServer LDAP configuration has unauthorized testing risk, CVE number CVE-2025-62795](https://nvd.nist.gov/vuln/detail/CVE-2025-62795) |
9 | | - |
10 | | - **Affected versions:** <br> JumpServer V3: <=v3.10.20 LTS |
11 | | - <br> JumpServer V4: <=v4.10.11 LTS |
12 | | - |
13 | | - **Secure versions:** <br> JumpServer V3: >=v3.10.21 LTS |
14 | | - <br> JumpServer V4: >=v4.10.12 LTS |
15 | | - |
16 | | - **Fix solutions:** |
17 | | - <br>**Permanent fix:** Upgrade JumpServer software to the above secure versions. |
18 | | - <br>**Temporary fix:** Restrict access to relevant API endpoints with minimal impact to main JumpServer functions. **Nginx configuration example:** |
19 | | - |
20 | | - ```nginx |
21 | | - # CVE-2025-62712 |
22 | | - location /api/v1/authentication/super-connection-token/ { |
23 | | - return 200 ''; |
24 | | - } |
25 | | - location /api/v1/resources/super-connection-tokens/ { |
26 | | - return 200 ''; |
27 | | - } |
28 | | - |
29 | | - # CVE-2025-62795, this will disable test and import functions in ldap config |
30 | | - location /ws/ldap { |
31 | | - return 200 ''; |
32 | | - } |
33 | | - |
34 | | - ``` |
35 | | - **Special thanks to:** <br> Thanks to SolidLab for discovering and timely reporting the above vulnerabilities to the JumpServer open source community. |
| 3 | +??? warning "[Important Notice | JumpServer Vulnerability Notification and Remediation (JS-2026.7.29)]" |
| 4 | + In July 2026, the JumpServer open source project team received vulnerability reports from security researchers. After verification, the following vulnerabilities were confirmed: |
| 5 | + |
| 6 | + ■ **Vulnerability in the fastjson dependency of the JumpServer Chen component (CVE-2026-16723)**. Details: [Security Advisory: Remote Code Execution in fastjson 1.2.68-1.2.83](https://github.com/alibaba/fastjson2/wiki/Security-Advisory:-Remote-Code-Execution-in-fastjson-1.2.68%E2%80%931.2.83) |
| 7 | + |
| 8 | + ■ **SFTP path traversal in JumpServer KoKo Web Terminal (CVE-2026-54336)**. Details: [GHSA-x6rg-36j6-76vr](https://github.com/jumpserver/jumpserver/security/advisories/GHSA-x6rg-36j6-76vr) |
| 9 | + |
| 10 | + ■ **Remote command execution through Jinja template injection during JumpServer Applet Host deployment (CVE-2026-44845)**. Details: [GHSA-22h6-pcgh-9v7q](https://github.com/jumpserver/jumpserver/security/advisories/GHSA-22h6-pcgh-9v7q) |
| 11 | + |
| 12 | + ■ **Privilege overwrite in JumpServer organization invitation logic (CVE-2026-44846)**. Details: [GHSA-j836-99w5-523r](https://github.com/jumpserver/jumpserver/security/advisories/GHSA-j836-99w5-523r) |
| 13 | + |
| 14 | + **Affected versions:** |
| 15 | + |
| 16 | + <br>JumpServer V3: earlier than v3.10.22 LTS |
| 17 | + <br>JumpServer V4: earlier than v4.10.17 LTS |
| 18 | + |
| 19 | + **Secure versions:** |
| 20 | + |
| 21 | + <br>JumpServer V3: v3.10.22 LTS or later |
| 22 | + <br>JumpServer V4: v4.10.17 LTS or later |
| 23 | + |
| 24 | + If an immediate upgrade is not possible: |
| 25 | + |
| 26 | + **■** Restrict administrative access to high-risk functionality such as Ansible automation, SSH gateways, and Applet Hosts, granting the relevant permissions only to trusted administrators; |
| 27 | + |
| 28 | + **■** Review existing SSH gateway configurations, automation task templates, Applet Host configurations, and organization role change records for suspicious content; |
| 29 | + |
| 30 | + **■** Limit the use of accounts that have user invitation permissions. |
| 31 | + |
36 | 32 |
|
37 | 33 |
|
38 | 34 | ## 1 What is JumpServer? |
|
0 commit comments