CVE-2023-0669
CVE-2023-0669 is a high-severity vulnerability in Fortra Goanywhere Managed File Transfer with a CVSS 3.x base score of 7.2. It is listed in CISA's Known Exploited Vulnerabilities (KEV) catalog, confirming it has been exploited in the wild (added 2023-02-10). The underlying weakness is classified as CWE-502.
Key facts
- Severity: High (CVSS 3.x base score 7.2)
- EPSS exploit prediction: 100% (100th percentile)
- Actively exploited: Yes — listed in CISA KEV (added 2023-02-10)
- EU (EUVD) id: EUVD-2023-0644
- EU exploitation: Flagged exploited in the ENISA EU Vulnerability Database (since 2023-02-10)
- Weakness: CWE-502
- Affected product: Fortra Goanywhere Managed File Transfer
- Published:
- Last modified:
Description
Fortra (formerly, HelpSystems) GoAnywhere MFT suffers from a pre-authentication command injection vulnerability in the License Response Servlet due to deserializing an arbitrary attacker-controlled object. This issue was patched in version 7.1.2.
CVE-2023-0669: Fortra GoAnywhere MFT Pre-Authentication Command Injection via Deserialization
AI-generated analysis based on the vulnerability data on this page.
| Field | Value |
|---|---|
| CVE ID | CVE-2023-0669 |
| Product | Fortra GoAnywhere Managed File Transfer (MFT) |
| CWE | CWE-502: Deserialization of Untrusted Data |
| CVSS v3.1 | 7.2 (HIGH) — CVSS:3.1/AV:N/AC:L/PR:H/UI:N/S:U/C:H/I:H/A:H |
| EPSS | 0.99999 (99.999th percentile: 0.99996) |
| KEV | Yes — added 2023-02-10 |
| EU Exploited | Yes — since 2023-02-10 (EUVD-2023-0644) |
| Published | 2023-02-06 |
| Patched | 7.1.2 |
Summary
Fortra (formerly HelpSystems) GoAnywhere MFT suffers from a critical pre-authentication command injection vulnerability in the License Response Servlet. The root cause is the deserialization of an arbitrary attacker-controlled object, which can be exploited to achieve remote code execution. This vulnerability was actively exploited in the wild as a zero-day prior to the release of patch 7.1.2.
Background
GoAnywhere MFT is an enterprise managed file transfer solution that supports secure file exchange, automation, and integration workflows. The License Response Servlet is a web-facing component responsible for processing license-related responses. Due to its exposure to the network and its role in handling serialized objects, it became a high-value target for attackers seeking unauthenticated entry points.
Root Cause
The vulnerability is classified under CWE-502: Deserialization of Untrusted Data. The License Response Servlet accepts and deserializes an attacker-controlled object without adequate validation or sanitization. In Java-based applications, insecure deserialization is a well-documented attack vector that can lead to arbitrary code execution when maliciously crafted objects are deserialized by vulnerable classes in the application's classpath. In this case, the attacker is able to inject and execute system commands through the deserialized payload.
Impact
The CVSS v3.1 score of 7.2 (HIGH) reflects the severity of this vulnerability:
- Attack Vector (AV): Network — exploitable remotely without local access.
- Attack Complexity (AC): Low — no special conditions or advanced techniques required.
- Privileges Required (PR): High — exploitation does not require prior authentication.
- User Interaction (UI): None — can be exploited without victim interaction.
- Scope (S): Unchanged — impact is confined to the vulnerable component.
- Confidentiality, Integrity, Availability (C/I/A): All High — successful exploitation grants full control over the target system.
The combination of pre-authentication access and high impact on the CIA triad makes this a critical vulnerability for exposed GoAnywhere MFT instances.
Exploitation Walkthrough
⚠️ Ethics Caveat: This section is provided for defensive and educational purposes only. The information below describes the attack mechanism at a high level to aid detection and mitigation. Do not attempt to exploit systems you do not own or have explicit authorization to test.
- Reconnaissance: The attacker identifies a publicly accessible GoAnywhere MFT instance, typically via internet scanning for the License Response Servlet endpoint.
- Payload Crafting: The attacker constructs a serialized Java object designed to trigger unsafe deserialization. The payload is engineered to execute arbitrary system commands upon deserialization.
- Delivery: The crafted object is sent to the License Response Servlet endpoint. Because the servlet deserializes the input without proper validation, the malicious object is processed.
- Execution: Upon deserialization, the embedded command is executed on the underlying operating system, granting the attacker remote code execution capabilities.
This is a classic deserialization-based remote code execution (RCE) chain. Defenders should focus on network segmentation, input validation, and patching rather than attempting to reproduce the exploit.
Affected and Patched Versions
| Status | Versions |
|---|---|
| Affected | Fortra GoAnywhere MFT versions prior to 7.1.2 |
| Patched | 7.1.2 and later |
Specific vulnerable CPE: cpe:2.3:a:fortra:goanywhere_managed_file_transfer:*:*:*:*:*:*:*:*
Remediation
- Upgrade Immediately: Organizations running GoAnywhere MFT should upgrade to version 7.1.2 or later without delay. Fortra released this patch specifically to address the zero-day exploitation.
- Network Segmentation: Restrict network access to GoAnywhere MFT administrative and licensing interfaces. Do not expose these endpoints to the public internet unless absolutely necessary.
- Web Application Firewall (WAF): Deploy or update WAF rules to detect and block suspicious serialized object payloads directed at the License Response Servlet.
- Compensating Controls: If immediate patching is not feasible, consider taking the License Response Servlet offline or placing it behind a VPN or jump host to eliminate external exposure.
Detection
- Network Monitoring: Monitor for anomalous HTTP POST requests to the License Response Servlet containing large or unusual payloads that may represent serialized objects.
- Endpoint Detection: Look for unexpected child processes spawned by the GoAnywhere MFT application server (e.g.,
cmd.exe,powershell.exe,/bin/sh), particularly following HTTP requests to licensing endpoints. - Log Analysis: Review GoAnywhere MFT access logs for repeated or unusual requests to the License Response Servlet from unexpected source IPs.
- Threat Intelligence: Leverage IOCs from Rapid7, CISA KEV, and EUVD-2023-0644 to enrich detection rules.
Assessment
This vulnerability carries an exceptionally high exploitation probability, as evidenced by an EPSS score of 0.99999 and its inclusion in both the CISA Known Exploited Vulnerabilities catalog and the EUVD registry. The fact that it was exploited as a zero-day before a patch was available underscores the urgency of rapid patching for pre-auth RCE flaws.
Key Lessons:
- Deserialization is a persistent Achilles' heel in Java applications. Input sanitization and the use of safe deserialization libraries (e.g., allow-listing expected classes) are essential defenses.
- Zero-day pre-auth RCEs in enterprise file-transfer tools attract immediate adversary attention due to their high value for data exfiltration and ransomware deployment. Internet exposure of such systems should be minimized.
References
- http://packetstormsecurity.com/files/171789/Goanywhere-Encryption-Helper-7.1.1-Remote-Code-Execution.html
- https://attackerkb.com/topics/mg883Nbeva/cve-2023-0669/rapid7-analysis
- https://duo.com/decipher/fortra-patches-actively-exploited-zero-day-in-goanywhere-mft
- https://frycos.github.io/vulns4free/2023/02/06/goanywhere-forgotten.html
- https://github.com/rapid7/metasploit-framework/pull/17607
- https://infosec.exchange/@briankrebs/109795710941843934
- https://my.goanywhere.com/webclient/ViewSecurityAdvisories.xhtml#zerodayfeb1
- https://www.rapid7.com/blog/post/2023/02/03/exploitation-of-goanywhere-mft-zero-day-vulnerability/
- https://www.cisa.gov/known-exploited-vulnerabilities-catalog?field_cve=CVE-2023-0669
Frequently asked questions
- What is CVE-2023-0669?
- Fortra (formerly, HelpSystems) GoAnywhere MFT suffers from a pre-authentication command injection vulnerability in the License Response Servlet due to deserializing an arbitrary attacker-controlled object. This issue was patched in version 7.1.2.
- How severe is CVE-2023-0669?
- CVE-2023-0669 has a CVSS 3.x base score of 7.2, rated high severity. It is exploitable over network with low attack complexity, requires high privileges and no user interaction. Impact on confidentiality is high, integrity high, and availability high.
- Is CVE-2023-0669 being actively exploited?
- Yes. CVE-2023-0669 is on CISA's Known Exploited Vulnerabilities (KEV) catalog, added on 2023-02-10, which means active exploitation has been confirmed. It should be prioritised for remediation.
- What products are affected by CVE-2023-0669?
- CVE-2023-0669 affects Fortra Goanywhere Managed File Transfer. See the affected-products list for the exact vulnerable versions.
- How do I fix CVE-2023-0669?
- Review the linked vendor and NVD advisories for patched versions and mitigations, then upgrade or apply the recommended workaround. Because this CVE is known to be actively exploited, treat remediation as urgent — CISA KEV typically sets a short remediation deadline.
- Does CVE-2023-0669 have an EU (EUVD) identifier?
- Yes. CVE-2023-0669 is tracked in the ENISA EU Vulnerability Database (EUVD) as EUVD-2023-0644. It is also flagged as exploited in the EUVD (since 2023-02-10).
- When was CVE-2023-0669 published?
- CVE-2023-0669 was published on 2023-02-06 and last updated on 2026-06-17.
References
- http://packetstormsecurity.com/files/171789/Goanywhere-Encryption-Helper-7.1.1-Remote-Code-Execution.html
- https://attackerkb.com/topics/mg883Nbeva/cve-2023-0669/rapid7-analysis
- https://duo.com/decipher/fortra-patches-actively-exploited-zero-day-in-goanywhere-mft
- https://frycos.github.io/vulns4free/2023/02/06/goanywhere-forgotten.html
- https://github.com/rapid7/metasploit-framework/pull/17607
- https://infosec.exchange/@briankrebs/109795710941843934
- https://my.goanywhere.com/webclient/ViewSecurityAdvisories.xhtml#zerodayfeb1
- https://www.rapid7.com/blog/post/2023/02/03/exploitation-of-goanywhere-mft-zero-day-vulnerability/
- https://www.cisa.gov/known-exploited-vulnerabilities-catalog?field_cve=CVE-2023-0669
Affected products (1)
- cpe:2.3:a:fortra:goanywhere_managed_file_transfer:*:*:*:*:*:*:*:*
More vulnerabilities in Fortra Goanywhere Managed File Transfer
- CVE-2025-10035 — Critical (CVSS 10.0): A deserialization vulnerability in the License Servlet of Fortra's GoAnywhere MFT allows an actor with a validly forged…
- CVE-2024-0204 — Critical (CVSS 9.8): Authentication bypass in Fortra's GoAnywhere MFT prior to 7.4.1 allows an unauthorized user to create an admin user via…
- CVE-2025-14362 — High (CVSS 7.3): The login limit is not enforced on the SFTP service of Fortra's GoAnywhere MFT prior to 7.10.0 if the Web User…
- CVE-2026-1089 — Medium (CVSS 6.5): User‑Controlled HTTP Header in Fortra's GoAnywhere MFT prior to version 7.10.0 allows attackers to trigger a DNS…
- CVE-2024-25157 — Medium (CVSS 6.5): An authentication bypass vulnerability in GoAnywhere MFT prior to 7.6.0 allows Admin Users with access to the Agent…
- CVE-2024-25156 — Medium (CVSS 6.5): A path traversal vulnerability exists in GoAnywhere MFT prior to 7.4.2 which allows attackers to circumvent…
All CVEs affecting Fortra Goanywhere Managed File Transfer →
Other CWE-502 (Deserialization of Untrusted Data) vulnerabilities
- CVE-2026-41104 — Critical (CVSS 10.0): Deserialization of untrusted data in Microsoft Planetary Computer Pro allows an unauthorized attacker to disclose…
- CVE-2026-43633 — Critical (CVSS 10.0): HestiaCP versions 1.9.0 through 1.9.4 contain a deserialization vulnerability in the web terminal component caused by a…
- CVE-2026-33819 — Critical (CVSS 10.0): Deserialization of untrusted data in Microsoft Bing allows an unauthorized attacker to execute code over a network.
- CVE-2026-20131 — Critical (CVSS 10.0): A vulnerability in the web-based management interface of Cisco Secure Firewall Management Center (FMC) Software could…
- CVE-2026-25632 — Critical (CVSS 10.0): EPyT-Flow is a Python package designed for the easy generation of hydraulic and water quality scenario data of water…
- CVE-2025-14931 — Critical (CVSS 10.0): Hugging Face smolagents Remote Python Executor Deserialization of Untrusted Data Remote Code Execution Vulnerability.…
Browse all CWE-502 (Deserialization of Untrusted Data) vulnerabilities →