GHSA-vcgp-9326-pqcp on CTRL-OS 26.05
Aliases: GHSA-vcgp-9326-pqcp, CVE-2026-42246
Packages: ruby, rubyPackages.net-imap
Status: Plausible
Advisory Information
Summary
A man-in-the-middle attacker can cause
Net::IMAP#starttlsto return "successfully", without starting TLS.Details
When using
Net::IMAP#starttlsto upgrade a plaintext connection to use TLS, a man-in-the-middle attacker can inject a taggedOKresponse with an easily predictable tag. By sending the response before the client finishes sending the command, the command completes "successfully" before the response handler is registered. This allows#starttlsto return without error, but the response handler is never invoked, the TLS connection is never established, and the socket remains unencrypted.This allows man-in-the-middle attackers to perform a STARTTLS stripping attack, unless the client code explicitly checks
Net::IMAP#tls_verified?.Impact
TLS bypass, leading to cleartext transmission of sensitive information.
Mitigation
- Upgrade to a patched version of net-imap that raises an exception whenever
#starttlsdoes not establish TLS.- Connect to an implicit TLS port, rather than use
STARTTLSwith a cleartext port. This is strongly recommended anyway:- RFC 8314: Cleartext Considered Obsolete: Use of Transport Layer Security (TLS) for Email Submission and Access
- NO STARTTLS: Why TLS is better without STARTTLS, A Security Analysis of STARTTLS in the Email Context
- Explicitly verify
Net::IMAP#tls_verified?istrue, before using the connection after#starttls.
Updates
2026-07-14 22:09 CEST
Metadata changes:
- Status for package
ruby: “Plausible” - Status for package
rubyPackages.net-imap: “Plausible”
2026-07-10 20:46 CEST
Metadata changes:
- Status for package
ruby: “New” - Status for package
rubyPackages.net-imap: “New”
(Amended on: 2026-07-10 20:47 CEST)