goshs SimpleHTTPServer SFTP Rename Path Traversal Vulnerability (CVE-2026-40188)
The goshs SimpleHTTPServer, from version 1.0.7 to before 2.0.0-beta.4, is vulnerable to path traversal (CVE-2026-40188) due to insufficient sanitization of the destination path in the SFTP rename command, potentially allowing attackers with low privileges to write files outside the intended root directory.
goshs is a SimpleHTTPServer written in Go. Versions 1.0.7 to before 2.0.0-beta.4 are vulnerable to a path traversal issue (CVE-2026-40188) within the SFTP rename command. This vulnerability arises because the application only sanitizes the source path during a rename operation, neglecting to sanitize the destination path. This oversight allows authenticated attackers with low privileges to manipulate file paths and potentially write files outside the designated SFTP root directory, leading to unauthorized file creation or modification. The vulnerability is resolved in version 2.0.0-beta.4. This vulnerability poses a risk to systems using vulnerable versions of goshs for file sharing.
Attack Chain
- Attacker gains low-privilege access to the goshs server via SSH or other means.
- Attacker establishes an SFTP session with the vulnerable goshs server.
- Attacker identifies a file or directory within their authorized SFTP root.
- Attacker crafts an SFTP rename command where the source is a legitimate file within their SFTP root.
- The attacker crafts the destination path of the rename command to include path traversal sequences (e.g., "../") to move outside of the intended root directory.
- The vulnerable goshs server executes the rename command using the attacker-controlled destination path without proper sanitization.
- The attacker successfully creates or overwrites files in unauthorized locations on the server's file system.
- The attacker may leverage the ability to write arbitrary files to achieve persistence by modifying system configuration files.
Impact
Successful exploitation of this vulnerability allows attackers to bypass intended access restrictions and potentially overwrite critical system files, leading to code execution or denial-of-service. The impact is high due to the potential for privilege escalation and system compromise. While the exact number of vulnerable installations is unknown, any organization using goshs versions 1.0.7 to before 2.0.0-beta.4 are potentially at risk. Successful exploitation can lead to unauthorized data modification, or system instability.
Recommendation
- Upgrade goshs to version 2.0.0-beta.4 or later to remediate CVE-2026-40188 as mentioned in the overview.
- Monitor SFTP logs for rename operations containing path traversal sequences like "../" in the destination path. (Generic Recommendation)
- Implement file integrity monitoring (FIM) on critical system directories to detect unauthorized file modifications resulting from successful exploitation. (Generic Recommendation)
Detection coverage 2
Detect SFTP Rename with Path Traversal
highDetects SFTP rename commands with destination paths containing path traversal sequences, indicating potential exploitation of CVE-2026-40188 in goshs.
Detect Attempts to Write Outside SFTP Root Directory
mediumDetects attempts to write files outside the SFTP root directory by monitoring file creation events with paths containing path traversal sequences.
Detection queries are available on the platform. Get full rules →