<?xml version="1.0" encoding="utf-8" standalone="yes"?><rss version="2.0" xmlns:atom="http://www.w3.org/2005/Atom" xmlns:content="http://purl.org/rss/1.0/modules/content/"><channel><title>Goshs - CraftedSignal Threat Feed</title><link>https://feed.craftedsignal.io/vendors/goshs/</link><description>Trending threats, MITRE ATT&amp;CK coverage, and detection metadata. Fed continuously.</description><generator>Hugo</generator><language>en</language><managingEditor>hello@craftedsignal.io</managingEditor><webMaster>hello@craftedsignal.io</webMaster><lastBuildDate>Wed, 24 Jan 2024 12:00:00 +0000</lastBuildDate><atom:link href="https://feed.craftedsignal.io/vendors/goshs/feed.xml" rel="self" type="application/rss+xml"/><item><title>goshs SimpleHTTPServer SFTP Authentication Bypass Vulnerability (CVE-2026-40884)</title><link>https://feed.craftedsignal.io/briefs/2024-01-24-goshs-auth-bypass/</link><pubDate>Wed, 24 Jan 2024 12:00:00 +0000</pubDate><author>hello@craftedsignal.io</author><guid isPermaLink="true">https://feed.craftedsignal.io/briefs/2024-01-24-goshs-auth-bypass/</guid><description>goshs SimpleHTTPServer prior to version 2.0.0-beta.6 contains an SFTP authentication bypass vulnerability that allows unauthenticated network attackers to access files when the server is started with specific configuration parameters.</description><content:encoded><![CDATA[<p>The goshs SimpleHTTPServer, a utility written in Go, is susceptible to an SFTP authentication bypass vulnerability (CVE-2026-40884) in versions prior to 2.0.0-beta.6. This flaw arises when the server is launched using the <code>-b ':pass'</code> argument in conjunction with the <code>-sftp</code> flag. This specific configuration prevents the application from properly initializing an SFTP password handler. Consequently, a remote, unauthenticated attacker can establish a connection to the SFTP service and gain unauthorized access to files stored on the server. This vulnerability poses a significant risk to data confidentiality and integrity. Organizations using affected versions of goshs should upgrade to version 2.0.0-beta.6 or later immediately.</p>
<h2 id="attack-chain">Attack Chain</h2>
<ol>
<li>Attacker identifies a vulnerable goshs server running a version prior to 2.0.0-beta.6 with SFTP enabled using <code>-sftp</code> and the vulnerable authentication configuration <code>-b ':pass'</code>.</li>
<li>Attacker establishes a network connection to the server's SFTP port (typically port 22, or a custom-configured port).</li>
<li>The attacker initiates an SFTP connection without providing any username or password, exploiting the missing password handler.</li>
<li>The vulnerable goshs server accepts the connection without authentication due to the configuration error.</li>
<li>The attacker is granted access to the file system served by the goshs server via SFTP.</li>
<li>The attacker navigates the file system, identifies sensitive files, and downloads them.</li>
<li>Attacker exfiltrates the stolen data from the network.</li>
<li>The attacker may use the compromised server as a pivot point for further attacks within the network.</li>
</ol>
<h2 id="impact">Impact</h2>
<p>Successful exploitation of CVE-2026-40884 allows an unauthenticated attacker to access sensitive files stored on the vulnerable goshs server. The impact can range from information disclosure to complete compromise of the server and potential lateral movement within the network. Given the CVSS v3.1 base score of 9.8, this vulnerability represents a critical risk. The number of affected systems depends on the adoption rate of goshs and the specific configurations used.</p>
<h2 id="recommendation">Recommendation</h2>
<ul>
<li>Upgrade goshs to version 2.0.0-beta.6 or later to patch CVE-2026-40884.</li>
<li>Review goshs server configurations and remove the vulnerable <code>-b ':pass'</code> configuration.</li>
<li>Monitor network connections to SFTP ports (default 22) for suspicious activity originating from unknown sources. Use the &quot;Detect Suspicious SFTP Connection&quot; Sigma rule provided below.</li>
<li>Implement network segmentation to limit the blast radius of a potential compromise.</li>
</ul>
]]></content:encoded><category domain="severity">critical</category><category domain="type">advisory</category><category>authentication-bypass</category><category>sftp</category><category>vulnerability</category><category>network</category></item><item><title>goshs SimpleHTTPServer SFTP Rename Path Traversal Vulnerability (CVE-2026-40188)</title><link>https://feed.craftedsignal.io/briefs/2026-04-goshs-path-traversal/</link><pubDate>Wed, 03 Jan 2024 12:00:00 +0000</pubDate><author>hello@craftedsignal.io</author><guid isPermaLink="true">https://feed.craftedsignal.io/briefs/2026-04-goshs-path-traversal/</guid><description>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.</description><content:encoded><![CDATA[<p>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.</p>
<h2 id="attack-chain">Attack Chain</h2>
<ol>
<li>Attacker gains low-privilege access to the goshs server via SSH or other means.</li>
<li>Attacker establishes an SFTP session with the vulnerable goshs server.</li>
<li>Attacker identifies a file or directory within their authorized SFTP root.</li>
<li>Attacker crafts an SFTP rename command where the source is a legitimate file within their SFTP root.</li>
<li>The attacker crafts the destination path of the rename command to include path traversal sequences (e.g., &quot;../&quot;) to move outside of the intended root directory.</li>
<li>The vulnerable goshs server executes the rename command using the attacker-controlled destination path without proper sanitization.</li>
<li>The attacker successfully creates or overwrites files in unauthorized locations on the server's file system.</li>
<li>The attacker may leverage the ability to write arbitrary files to achieve persistence by modifying system configuration files.</li>
</ol>
<h2 id="impact">Impact</h2>
<p>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.</p>
<h2 id="recommendation">Recommendation</h2>
<ul>
<li>Upgrade goshs to version 2.0.0-beta.4 or later to remediate CVE-2026-40188 as mentioned in the overview.</li>
<li>Monitor SFTP logs for rename operations containing path traversal sequences like &quot;../&quot; in the destination path. (Generic Recommendation)</li>
<li>Implement file integrity monitoring (FIM) on critical system directories to detect unauthorized file modifications resulting from successful exploitation. (Generic Recommendation)</li>
</ul>
]]></content:encoded><category domain="severity">high</category><category domain="type">advisory</category><category>path-traversal</category><category>sftp</category><category>cve-2026-40188</category></item></channel></rss>