GCVE Workshop - 22 September 2026 (14:00-18:00), Luxembourg Before The Vulnopticon Conference - Registration
brew-flintrock-cve-2023-48795
Vulnerability from osv_homebrew
Published
2026-08-13 16:47
Modified
2026-09-09 23:58
Summary
Prefix Truncation Attack against ChaCha20-Poly1305 and Encrypt-then-MAC aka Terrapin
Details

Summary

Terrapin is a prefix truncation attack targeting the SSH protocol. More precisely, Terrapin breaks the integrity of SSH's secure channel. By carefully adjusting the sequence numbers during the handshake, an attacker can remove an arbitrary amount of messages sent by the client or server at the beginning of the secure channel without the client or server noticing it.

Mitigations

To mitigate this protocol vulnerability, OpenSSH suggested a so-called "strict kex" which alters the SSH handshake to ensure a Man-in-the-Middle attacker cannot introduce unauthenticated messages as well as convey sequence number manipulation across handshakes.

Warning: To take effect, both the client and server must support this countermeasure.

As a stop-gap measure, peers may also (temporarily) disable the affected algorithms and use unaffected alternatives like AES-GCM instead until patches are available.

Details

The SSH specifications of ChaCha20-Poly1305 (chacha20-poly1305@openssh.com) and Encrypt-then-MAC (*-etm@openssh.com MACs) are vulnerable against an arbitrary prefix truncation attack (a.k.a. Terrapin attack). This allows for an extension negotiation downgrade by stripping the SSH_MSG_EXT_INFO sent after the first message after SSH_MSG_NEWKEYS, downgrading security, and disabling attack countermeasures in some versions of OpenSSH. When targeting Encrypt-then-MAC, this attack requires the use of a CBC cipher to be practically exploitable due to the internal workings of the cipher mode. Additionally, this novel attack technique can be used to exploit previously unexploitable implementation flaws in a Man-in-the-Middle scenario.

The attack works by an attacker injecting an arbitrary number of SSH_MSG_IGNORE messages during the initial key exchange and consequently removing the same number of messages just after the initial key exchange has concluded. This is possible due to missing authentication of the excess SSH_MSG_IGNORE messages and the fact that the implicit sequence numbers used within the SSH protocol are only checked after the initial key exchange.

In the case of ChaCha20-Poly1305, the attack is guaranteed to work on every connection as this cipher does not maintain an internal state other than the message's sequence number. In the case of Encrypt-Then-MAC, practical exploitation requires the use of a CBC cipher; while theoretical integrity is broken for all ciphers when using this mode, message processing will fail at the application layer for CTR and stream ciphers.

For more details see https://terrapin-attack.com.

Impact

This attack targets the specification of ChaCha20-Poly1305 (chacha20-poly1305@openssh.com) and Encrypt-then-MAC (*-etm@openssh.com), which are widely adopted by well-known SSH implementations and can be considered de-facto standard. These algorithms can be practically exploited; however, in the case of Encrypt-Then-MAC, we additionally require the use of a CBC cipher. As a consequence, this attack works against all well-behaving SSH implementations supporting either of those algorithms and can be used to downgrade (but not fully strip) connection security in case SSH extension negotiation (RFC8308) is supported. The attack may also enable attackers to exploit certain implementation flaws in a man-in-the-middle (MitM) scenario.

References
https://github.com/warp-tech/russh/security/advis… WEB
https://nvd.nist.gov/vuln/detail/CVE-2023-48795 ADVISORY
https://github.com/ssh-mitm/ssh-mitm/issues/165 WEB
https://github.com/hierynomus/sshj/issues/916 WEB
https://github.com/janmojzis/tinyssh/issues/81 WEB
https://github.com/cyd01/KiTTY/issues/520 WEB
https://github.com/proftpd/proftpd/issues/456 WEB
https://github.com/apache/mina-sshd/issues/445 WEB
https://github.com/paramiko/paramiko/issues/2337#… WEB
https://github.com/paramiko/paramiko/issues/2337 WEB
https://github.com/PowerShell/Win32-OpenSSH/issues/2189 WEB
https://github.com/mwiede/jsch/issues/457 WEB
https://github.com/libssh2/libssh2/pull/1291 WEB
https://github.com/NixOS/nixpkgs/pull/275249 WEB
https://github.com/mwiede/jsch/pull/461 WEB
https://github.com/TeraTermProject/teraterm/commi… WEB
https://github.com/mscdex/ssh2/commit/97b223f8891… WEB
https://github.com/connectbot/sshlib/commit/5c8b5… WEB
https://github.com/jtesta/ssh-audit/commit/8e972c… WEB
https://github.com/warp-tech/russh/commit/1aa340a… WEB
https://github.com/golang/crypto/commit/9d2ee975e… WEB
https://oryx-embedded.com/download/#changelog WEB
https://nova.app/releases/#v11.8 WEB
https://news.ycombinator.com/item?id=38732005 WEB
https://psirt.global.sonicwall.com/vuln-detail/SN… WEB
https://roumenpetrov.info/secsh/#news20231220 WEB
https://security-tracker.debian.org/tracker/CVE-2… WEB
https://security-tracker.debian.org/tracker/sourc… WEB
https://github.com/ronf/asyncssh/blob/develop/doc… WEB
https://lists.fedoraproject.org/archives/list/pac… WEB
https://lists.fedoraproject.org/archives/list/pac… WEB
https://lists.fedoraproject.org/archives/list/pac… WEB
https://lists.fedoraproject.org/archives/list/pac… WEB
https://lists.fedoraproject.org/archives/list/pac… WEB
https://lists.fedoraproject.org/archives/list/pac… WEB
https://lists.fedoraproject.org/archives/list/pac… WEB
https://lists.fedoraproject.org/archives/list/pac… WEB
https://lists.fedoraproject.org/archives/list/pac… WEB
https://lists.fedoraproject.org/archives/list/pac… WEB
https://lists.fedoraproject.org/archives/list/pac… WEB
https://lists.fedoraproject.org/archives/list/pac… WEB
https://lists.fedoraproject.org/archives/list/pac… WEB
https://matt.ucc.asn.au/dropbear/CHANGES WEB
https://nest.pijul.com/pijul/thrussh/changes/D6H7… WEB
https://news.ycombinator.com/item?id=38684904 WEB
https://news.ycombinator.com/item?id=38685286 WEB
https://www.vicarius.io/vsociety/posts/cve-2023-4… WEB
https://www.vicarius.io/vsociety/posts/cve-2023-4… WEB
https://www.vandyke.com/products/securecrt/history.txt WEB
https://www.theregister.com/2023/12/20/terrapin_a… WEB
https://www.terrapin-attack.com WEB
https://www.suse.com/c/suse-addresses-the-ssh-v2-… WEB
https://www.reddit.com/r/sysadmin/comments/18idv5… WEB
https://www.paramiko.org/changelog.html WEB
https://www.openwall.com/lists/oss-security/2023/… WEB
https://www.openwall.com/lists/oss-security/2023/… WEB
https://www.openssh.com/txt/release-9.6 WEB
https://www.openssh.com/openbsd.html WEB
https://www.netsarang.com/en/xshell-update-history WEB
https://www.lancom-systems.de/service-support/all… WEB
https://www.freebsd.org/security/advisories/FreeB… WEB
https://www.debian.org/security/2023/dsa-5588 WEB
https://www.debian.org/security/2023/dsa-5586 WEB
https://www.crushftp.com/crush10wiki/Wiki.jsp?pag… WEB
https://www.chiark.greenend.org.uk/~sgtatham/putt… WEB
https://www.bitvise.com/ssh-server-version-history WEB
https://www.bitvise.com/ssh-client-version-history#933 WEB
https://winscp.net/eng/docs/history#6.2.2 WEB
https://ubuntu.com/security/CVE-2023-48795 WEB
https://twitter.com/TrueSkrillor/status/173677438… WEB
https://thorntech.com/cve-2023-48795-and-sftp-gateway WEB
https://support.apple.com/kb/HT214084 WEB
https://security.netapp.com/advisory/ntap-20240105-0004 WEB
https://security.gentoo.org/glsa/202312-17 WEB
https://security.gentoo.org/glsa/202312-16 WEB
https://security-tracker.debian.org/tracker/sourc… WEB
https://security-tracker.debian.org/tracker/sourc… WEB
https://github.com/rapier1/hpn-ssh/releases WEB
https://github.com/proftpd/proftpd/blob/master/RE… WEB
https://github.com/proftpd/proftpd/blob/d21e7a2e4… WEB
https://github.com/proftpd/proftpd/blob/0a7ea9b0b… WEB
https://github.com/openssh/openssh-portable/commi… WEB
https://github.com/net-ssh/net-ssh/blob/2e65064a5… WEB
https://github.com/mwiede/jsch/compare/jsch-0.2.1… WEB
https://github.com/mkj/dropbear/blob/17657c36cce6… WEB
https://github.com/erlang/otp/releases/tag/OTP-26.2.1 WEB
https://github.com/erlang/otp/blob/d1b43dc0f1361d… WEB
https://github.com/drakkan/sftpgo/releases/tag/v2.5.6 WEB
https://github.com/connectbot/sshlib/compare/2.2.… WEB
https://github.com/advisories/GHSA-45x7-px36-x8w8 ADVISORY
https://github.com/TeraTermProject/teraterm/relea… WEB
https://github.com/PowerShell/Win32-OpenSSH/relea… WEB
https://git.libssh.org/projects/libssh.git/commit… WEB
https://forum.netgate.com/topic/184941/terrapin-s… WEB
https://filezilla-project.org/versions.php WEB
https://crates.io/crates/thrussh/versions WEB
https://cert-portal.siemens.com/productcert/html/… WEB
https://cert-portal.siemens.com/productcert/html/… WEB
https://cert-portal.siemens.com/productcert/html/… WEB
https://cert-portal.siemens.com/productcert/html/… WEB
https://cert-portal.siemens.com/productcert/html/… WEB
https://bugzilla.suse.com/show_bug.cgi?id=1217950 WEB
https://bugzilla.redhat.com/show_bug.cgi?id=2254210 WEB
https://bugs.gentoo.org/920280 WEB
https://arstechnica.com/security/2023/12/hackers-… WEB
https://access.redhat.com/security/cve/cve-2023-48795 WEB
https://lists.fedoraproject.org/archives/list/pac… WEB
https://lists.fedoraproject.org/archives/list/pac… WEB
https://lists.fedoraproject.org/archives/list/pac… WEB
https://lists.fedoraproject.org/archives/list/pac… WEB
https://lists.fedoraproject.org/archives/list/pac… WEB
https://lists.debian.org/debian-lts-announce/2025… WEB
https://lists.debian.org/debian-lts-announce/2024… WEB
https://lists.debian.org/debian-lts-announce/2024… WEB
https://lists.debian.org/debian-lts-announce/2024… WEB
https://lists.debian.org/debian-lts-announce/2024… WEB
https://lists.debian.org/debian-lts-announce/2024… WEB
https://lists.debian.org/debian-lts-announce/2023… WEB
https://jadaptive.com/important-java-ssh-security… WEB
https://help.panic.com/releasenotes/transmit5 WEB
https://groups.google.com/g/golang-announce/c/qA3… WEB
https://groups.google.com/g/golang-announce/c/-n5… WEB
https://go.dev/issue/64784 WEB
https://go.dev/cl/550715 WEB
https://gitlab.com/libssh/libssh-mirror/-/tags WEB
https://github.com/warp-tech/russh/releases/tag/v0.40.2 WEB
https://github.com/warp-tech/russh PACKAGE
https://github.com/ronf/asyncssh/tags WEB
http://packetstormsecurity.com/files/176280/Terra… WEB
http://seclists.org/fulldisclosure/2024/Mar/21 WEB
http://www.openwall.com/lists/oss-security/2023/12/18/3 WEB
http://www.openwall.com/lists/oss-security/2023/12/19/5 WEB
http://www.openwall.com/lists/oss-security/2023/12/20/3 WEB
http://www.openwall.com/lists/oss-security/2024/03/06/3 WEB
http://www.openwall.com/lists/oss-security/2024/04/17/8 WEB

{
  "affected": [
    {
      "ecosystem_specific": {
        "fix": null,
        "range_state": "affected",
        "resource": "paramiko",
        "resource_purl": "pkg:pypi/paramiko@3.3.1",
        "upstream_fixed_in": "3.4.0"
      },
      "package": {
        "ecosystem": "Homebrew",
        "name": "flintrock",
        "purl": "pkg:brew/flintrock"
      },
      "ranges": [
        {
          "events": [
            {
              "introduced": "0"
            }
          ],
          "type": "ECOSYSTEM"
        }
      ]
    }
  ],
  "database_specific": {
    "confidence": "high",
    "source": "matched",
    "strategy": "registry",
    "upstream_evidence": [
      {
        "ecosystem": "PyPI",
        "key": "pkg:pypi/paramiko@3.3.1",
        "name": "paramiko",
        "resource": "paramiko",
        "strategy": "registry",
        "subject_version": "3.3.1"
      }
    ]
  },
  "details": "### Summary\n\nTerrapin is a prefix truncation attack targeting the SSH protocol. More precisely, Terrapin breaks the integrity of SSH\u0027s secure channel. By carefully adjusting the sequence numbers during the handshake, an attacker can remove an arbitrary amount of messages sent by the client or server at the beginning of the secure channel without the client or server noticing it.\n\n### Mitigations\n\nTo mitigate this protocol vulnerability, OpenSSH suggested a so-called \"strict kex\" which alters the SSH handshake to ensure a Man-in-the-Middle attacker cannot introduce unauthenticated messages as well as convey sequence number manipulation across handshakes.\n\n**Warning: To take effect, both the client and server must support this countermeasure.** \n\nAs a stop-gap measure, peers may also (temporarily) disable the affected algorithms and use unaffected alternatives like AES-GCM instead until patches are available.\n\n### Details\n\nThe SSH specifications of ChaCha20-Poly1305 (chacha20-poly1305@openssh.com) and Encrypt-then-MAC (*-etm@openssh.com MACs) are vulnerable against an arbitrary prefix truncation attack (a.k.a. Terrapin attack). This allows for an extension negotiation downgrade by stripping the SSH_MSG_EXT_INFO sent after the first message after SSH_MSG_NEWKEYS, downgrading security, and disabling attack countermeasures in some versions of OpenSSH. When targeting Encrypt-then-MAC, this attack requires the use of a CBC cipher to be practically exploitable due to the internal workings of the cipher mode. Additionally, this novel attack technique can be used to exploit previously unexploitable implementation flaws in a Man-in-the-Middle scenario.\n\nThe attack works by an attacker injecting an arbitrary number of SSH_MSG_IGNORE messages during the initial key exchange and consequently removing the same number of messages just after the initial key exchange has concluded. This is possible due to missing authentication of the excess SSH_MSG_IGNORE messages and the fact that the implicit sequence numbers used within the SSH protocol are only checked after the initial key exchange.\n\nIn the case of ChaCha20-Poly1305, the attack is guaranteed to work on every connection as this cipher does not maintain an internal state other than the message\u0027s sequence number. In the case of Encrypt-Then-MAC, practical exploitation requires the use of a CBC cipher; while theoretical integrity is broken for all ciphers when using this mode, message processing will fail at the application layer for CTR and stream ciphers.\n\nFor more details see [https://terrapin-attack.com](https://terrapin-attack.com). \n\n### Impact\n\nThis attack targets the specification of ChaCha20-Poly1305 (chacha20-poly1305@openssh.com) and Encrypt-then-MAC (*-etm@openssh.com), which are widely adopted by well-known SSH implementations and can be considered de-facto standard. These algorithms can be practically exploited; however, in the case of Encrypt-Then-MAC, we additionally require the use of a CBC cipher. As a consequence, this attack works against all well-behaving SSH implementations supporting either of those algorithms and can be used to downgrade (but not fully strip) connection security in case SSH extension negotiation (RFC8308) is supported. The attack may also enable attackers to exploit certain implementation flaws in a man-in-the-middle (MitM) scenario.",
  "id": "BREW-flintrock-CVE-2023-48795",
  "modified": "2026-09-09T23:58:04Z",
  "published": "2026-08-13T16:47:29Z",
  "references": [
    {
      "type": "WEB",
      "url": "https://github.com/warp-tech/russh/security/advisories/GHSA-45x7-px36-x8w8"
    },
    {
      "type": "ADVISORY",
      "url": "https://nvd.nist.gov/vuln/detail/CVE-2023-48795"
    },
    {
      "type": "WEB",
      "url": "https://github.com/ssh-mitm/ssh-mitm/issues/165"
    },
    {
      "type": "WEB",
      "url": "https://github.com/hierynomus/sshj/issues/916"
    },
    {
      "type": "WEB",
      "url": "https://github.com/janmojzis/tinyssh/issues/81"
    },
    {
      "type": "WEB",
      "url": "https://github.com/cyd01/KiTTY/issues/520"
    },
    {
      "type": "WEB",
      "url": "https://github.com/proftpd/proftpd/issues/456"
    },
    {
      "type": "WEB",
      "url": "https://github.com/apache/mina-sshd/issues/445"
    },
    {
      "type": "WEB",
      "url": "https://github.com/paramiko/paramiko/issues/2337#issuecomment-1887642773"
    },
    {
      "type": "WEB",
      "url": "https://github.com/paramiko/paramiko/issues/2337"
    },
    {
      "type": "WEB",
      "url": "https://github.com/PowerShell/Win32-OpenSSH/issues/2189"
    },
    {
      "type": "WEB",
      "url": "https://github.com/mwiede/jsch/issues/457"
    },
    {
      "type": "WEB",
      "url": "https://github.com/libssh2/libssh2/pull/1291"
    },
    {
      "type": "WEB",
      "url": "https://github.com/NixOS/nixpkgs/pull/275249"
    },
    {
      "type": "WEB",
      "url": "https://github.com/mwiede/jsch/pull/461"
    },
    {
      "type": "WEB",
      "url": "https://github.com/TeraTermProject/teraterm/commit/7279fbd6ef4d0c8bdd6a90af4ada2899d786eec0"
    },
    {
      "type": "WEB",
      "url": "https://github.com/mscdex/ssh2/commit/97b223f8891b96d6fc054df5ab1d5a1a545da2a3"
    },
    {
      "type": "WEB",
      "url": "https://github.com/connectbot/sshlib/commit/5c8b534f6e97db7ac0e0e579331213aa25c173ab"
    },
    {
      "type": "WEB",
      "url": "https://github.com/jtesta/ssh-audit/commit/8e972c5e94b460379fe0c7d20209c16df81538a5"
    },
    {
      "type": "WEB",
      "url": "https://github.com/warp-tech/russh/commit/1aa340a7df1d5be1c0f4a9e247aade76dfdd2951"
    },
    {
      "type": "WEB",
      "url": "https://github.com/golang/crypto/commit/9d2ee975ef9fe627bf0a6f01c1f69e8ef1d4f05d"
    },
    {
      "type": "WEB",
      "url": "https://oryx-embedded.com/download/#changelog"
    },
    {
      "type": "WEB",
      "url": "https://nova.app/releases/#v11.8"
    },
    {
      "type": "WEB",
      "url": "https://news.ycombinator.com/item?id=38732005"
    },
    {
      "type": "WEB",
      "url": "https://psirt.global.sonicwall.com/vuln-detail/SNWLID-2024-0002"
    },
    {
      "type": "WEB",
      "url": "https://roumenpetrov.info/secsh/#news20231220"
    },
    {
      "type": "WEB",
      "url": "https://security-tracker.debian.org/tracker/CVE-2023-48795"
    },
    {
      "type": "WEB",
      "url": "https://security-tracker.debian.org/tracker/source-package/libssh2"
    },
    {
      "type": "WEB",
      "url": "https://github.com/ronf/asyncssh/blob/develop/docs/changes.rst"
    },
    {
      "type": "WEB",
      "url": "https://lists.fedoraproject.org/archives/list/package-announce%40lists.fedoraproject.org/message/KMZCVGUGJZZVDPCVDA7TEB22VUCNEXDD"
    },
    {
      "type": "WEB",
      "url": "https://lists.fedoraproject.org/archives/list/package-announce%40lists.fedoraproject.org/message/L5Y6MNNVAPIJSXJERQ6PKZVCIUXSNJK7"
    },
    {
      "type": "WEB",
      "url": "https://lists.fedoraproject.org/archives/list/package-announce%40lists.fedoraproject.org/message/LZQVUHWVWRH73YBXUQJOD6CKHDQBU3DM"
    },
    {
      "type": "WEB",
      "url": "https://lists.fedoraproject.org/archives/list/package-announce%40lists.fedoraproject.org/message/MKQRBF3DWMWPH36LBCOBUTSIZRTPEZXB"
    },
    {
      "type": "WEB",
      "url": "https://lists.fedoraproject.org/archives/list/package-announce%40lists.fedoraproject.org/message/QI3EHAHABFQK7OABNCSF5GMYP6TONTI7"
    },
    {
      "type": "WEB",
      "url": "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/33XHJUB6ROFUOH2OQNENFROTVH6MHSHA"
    },
    {
      "type": "WEB",
      "url": "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/3JIMLVBDWOP4FUPXPTB4PGHHIOMGFLQE"
    },
    {
      "type": "WEB",
      "url": "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/3YQLUQWLIHDB5QCXQEX7HXHAWMOKPP5O"
    },
    {
      "type": "WEB",
      "url": "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/6Y74KVCPEPT4MVU3LHDWCNNOXOE5ZLUR"
    },
    {
      "type": "WEB",
      "url": "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/APYIXIQOVDCRWLHTGB4VYMAUIAQLKYJ3"
    },
    {
      "type": "WEB",
      "url": "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/C3AFMZ6MH2UHHOPIWT5YLSFV3D2VB3AC"
    },
    {
      "type": "WEB",
      "url": "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/HYEDEXIKFKTUJIN43RG4B7T5ZS6MHUSP"
    },
    {
      "type": "WEB",
      "url": "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/I724O3LSRCPO4WNVIXTZCT4VVRMXMMSG"
    },
    {
      "type": "WEB",
      "url": "https://matt.ucc.asn.au/dropbear/CHANGES"
    },
    {
      "type": "WEB",
      "url": "https://nest.pijul.com/pijul/thrussh/changes/D6H7OWTTMHHX6BTB3B6MNBOBX2L66CBL4LGSEUSAI2MCRCJDQFRQC"
    },
    {
      "type": "WEB",
      "url": "https://news.ycombinator.com/item?id=38684904"
    },
    {
      "type": "WEB",
      "url": "https://news.ycombinator.com/item?id=38685286"
    },
    {
      "type": "WEB",
      "url": "https://www.vicarius.io/vsociety/posts/cve-2023-48795-mitigate-openssh-vulnerability"
    },
    {
      "type": "WEB",
      "url": "https://www.vicarius.io/vsociety/posts/cve-2023-48795-detect-openssh-vulnerabilit"
    },
    {
      "type": "WEB",
      "url": "https://www.vandyke.com/products/securecrt/history.txt"
    },
    {
      "type": "WEB",
      "url": "https://www.theregister.com/2023/12/20/terrapin_attack_ssh"
    },
    {
      "type": "WEB",
      "url": "https://www.terrapin-attack.com"
    },
    {
      "type": "WEB",
      "url": "https://www.suse.com/c/suse-addresses-the-ssh-v2-protocol-terrapin-attack-aka-cve-2023-48795"
    },
    {
      "type": "WEB",
      "url": "https://www.reddit.com/r/sysadmin/comments/18idv52/cve202348795_why_is_this_cve_still_undisclosed"
    },
    {
      "type": "WEB",
      "url": "https://www.paramiko.org/changelog.html"
    },
    {
      "type": "WEB",
      "url": "https://www.openwall.com/lists/oss-security/2023/12/20/3"
    },
    {
      "type": "WEB",
      "url": "https://www.openwall.com/lists/oss-security/2023/12/18/2"
    },
    {
      "type": "WEB",
      "url": "https://www.openssh.com/txt/release-9.6"
    },
    {
      "type": "WEB",
      "url": "https://www.openssh.com/openbsd.html"
    },
    {
      "type": "WEB",
      "url": "https://www.netsarang.com/en/xshell-update-history"
    },
    {
      "type": "WEB",
      "url": "https://www.lancom-systems.de/service-support/allgemeine-sicherheitshinweise#c243508"
    },
    {
      "type": "WEB",
      "url": "https://www.freebsd.org/security/advisories/FreeBSD-SA-23:19.openssh.asc"
    },
    {
      "type": "WEB",
      "url": "https://www.debian.org/security/2023/dsa-5588"
    },
    {
      "type": "WEB",
      "url": "https://www.debian.org/security/2023/dsa-5586"
    },
    {
      "type": "WEB",
      "url": "https://www.crushftp.com/crush10wiki/Wiki.jsp?page=Update"
    },
    {
      "type": "WEB",
      "url": "https://www.chiark.greenend.org.uk/~sgtatham/putty/changes.html"
    },
    {
      "type": "WEB",
      "url": "https://www.bitvise.com/ssh-server-version-history"
    },
    {
      "type": "WEB",
      "url": "https://www.bitvise.com/ssh-client-version-history#933"
    },
    {
      "type": "WEB",
      "url": "https://winscp.net/eng/docs/history#6.2.2"
    },
    {
      "type": "WEB",
      "url": "https://ubuntu.com/security/CVE-2023-48795"
    },
    {
      "type": "WEB",
      "url": "https://twitter.com/TrueSkrillor/status/1736774389725565005"
    },
    {
      "type": "WEB",
      "url": "https://thorntech.com/cve-2023-48795-and-sftp-gateway"
    },
    {
      "type": "WEB",
      "url": "https://support.apple.com/kb/HT214084"
    },
    {
      "type": "WEB",
      "url": "https://security.netapp.com/advisory/ntap-20240105-0004"
    },
    {
      "type": "WEB",
      "url": "https://security.gentoo.org/glsa/202312-17"
    },
    {
      "type": "WEB",
      "url": "https://security.gentoo.org/glsa/202312-16"
    },
    {
      "type": "WEB",
      "url": "https://security-tracker.debian.org/tracker/source-package/trilead-ssh2"
    },
    {
      "type": "WEB",
      "url": "https://security-tracker.debian.org/tracker/source-package/proftpd-dfsg"
    },
    {
      "type": "WEB",
      "url": "https://github.com/rapier1/hpn-ssh/releases"
    },
    {
      "type": "WEB",
      "url": "https://github.com/proftpd/proftpd/blob/master/RELEASE_NOTES"
    },
    {
      "type": "WEB",
      "url": "https://github.com/proftpd/proftpd/blob/d21e7a2e47e9b38f709bec58e3fa711f759ad0e1/RELEASE_NOTES"
    },
    {
      "type": "WEB",
      "url": "https://github.com/proftpd/proftpd/blob/0a7ea9b0ba9fcdf368374a226370d08f10397d99/RELEASE_NOTES"
    },
    {
      "type": "WEB",
      "url": "https://github.com/openssh/openssh-portable/commits/master"
    },
    {
      "type": "WEB",
      "url": "https://github.com/net-ssh/net-ssh/blob/2e65064a52d73396bfc3806c9196fc8108f33cd8/CHANGES.txt#L14-L16"
    },
    {
      "type": "WEB",
      "url": "https://github.com/mwiede/jsch/compare/jsch-0.2.14...jsch-0.2.15"
    },
    {
      "type": "WEB",
      "url": "https://github.com/mkj/dropbear/blob/17657c36cce6df7716d5ff151ec09a665382d5dd/CHANGES#L25"
    },
    {
      "type": "WEB",
      "url": "https://github.com/erlang/otp/releases/tag/OTP-26.2.1"
    },
    {
      "type": "WEB",
      "url": "https://github.com/erlang/otp/blob/d1b43dc0f1361d2ad67601169e90a7fc50bb0369/lib/ssh/doc/src/notes.xml#L39-L42"
    },
    {
      "type": "WEB",
      "url": "https://github.com/drakkan/sftpgo/releases/tag/v2.5.6"
    },
    {
      "type": "WEB",
      "url": "https://github.com/connectbot/sshlib/compare/2.2.21...2.2.22"
    },
    {
      "type": "ADVISORY",
      "url": "https://github.com/advisories/GHSA-45x7-px36-x8w8"
    },
    {
      "type": "WEB",
      "url": "https://github.com/TeraTermProject/teraterm/releases/tag/v5.1"
    },
    {
      "type": "WEB",
      "url": "https://github.com/PowerShell/Win32-OpenSSH/releases/tag/v9.5.0.0p1-Beta"
    },
    {
      "type": "WEB",
      "url": "https://git.libssh.org/projects/libssh.git/commit/?h=stable-0.10\u0026id=10e09e273f69e149389b3e0e5d44b8c221c2e7f6"
    },
    {
      "type": "WEB",
      "url": "https://forum.netgate.com/topic/184941/terrapin-ssh-attack"
    },
    {
      "type": "WEB",
      "url": "https://filezilla-project.org/versions.php"
    },
    {
      "type": "WEB",
      "url": "https://crates.io/crates/thrussh/versions"
    },
    {
      "type": "WEB",
      "url": "https://cert-portal.siemens.com/productcert/html/ssa-915275.html"
    },
    {
      "type": "WEB",
      "url": "https://cert-portal.siemens.com/productcert/html/ssa-794697.html"
    },
    {
      "type": "WEB",
      "url": "https://cert-portal.siemens.com/productcert/html/ssa-769027.html"
    },
    {
      "type": "WEB",
      "url": "https://cert-portal.siemens.com/productcert/html/ssa-364175.html"
    },
    {
      "type": "WEB",
      "url": "https://cert-portal.siemens.com/productcert/html/ssa-082556.html"
    },
    {
      "type": "WEB",
      "url": "https://bugzilla.suse.com/show_bug.cgi?id=1217950"
    },
    {
      "type": "WEB",
      "url": "https://bugzilla.redhat.com/show_bug.cgi?id=2254210"
    },
    {
      "type": "WEB",
      "url": "https://bugs.gentoo.org/920280"
    },
    {
      "type": "WEB",
      "url": "https://arstechnica.com/security/2023/12/hackers-can-break-ssh-channel-integrity-using-novel-data-corruption-attack"
    },
    {
      "type": "WEB",
      "url": "https://access.redhat.com/security/cve/cve-2023-48795"
    },
    {
      "type": "WEB",
      "url": "https://lists.fedoraproject.org/archives/list/package-announce%40lists.fedoraproject.org/message/KEOTKBUPZXHE3F352JBYNTSNRXYLWD6P"
    },
    {
      "type": "WEB",
      "url": "https://lists.fedoraproject.org/archives/list/package-announce%40lists.fedoraproject.org/message/F7EYCFQCTSGJXWO3ZZ44MGKFC5HA7G3Y"
    },
    {
      "type": "WEB",
      "url": "https://lists.fedoraproject.org/archives/list/package-announce%40lists.fedoraproject.org/message/CHHITS4PUOZAKFIUBQAQZC7JWXMOYE4B"
    },
    {
      "type": "WEB",
      "url": "https://lists.fedoraproject.org/archives/list/package-announce%40lists.fedoraproject.org/message/BL5KTLOSLH2KHRN4HCXJPK3JUVLDGEL6"
    },
    {
      "type": "WEB",
      "url": "https://lists.fedoraproject.org/archives/list/package-announce%40lists.fedoraproject.org/message/3CAYYW35MUTNO65RVAELICTNZZFMT2XS"
    },
    {
      "type": "WEB",
      "url": "https://lists.debian.org/debian-lts-announce/2025/04/msg00028.html"
    },
    {
      "type": "WEB",
      "url": "https://lists.debian.org/debian-lts-announce/2024/11/msg00032.html"
    },
    {
      "type": "WEB",
      "url": "https://lists.debian.org/debian-lts-announce/2024/09/msg00042.html"
    },
    {
      "type": "WEB",
      "url": "https://lists.debian.org/debian-lts-announce/2024/04/msg00016.html"
    },
    {
      "type": "WEB",
      "url": "https://lists.debian.org/debian-lts-announce/2024/01/msg00014.html"
    },
    {
      "type": "WEB",
      "url": "https://lists.debian.org/debian-lts-announce/2024/01/msg00013.html"
    },
    {
      "type": "WEB",
      "url": "https://lists.debian.org/debian-lts-announce/2023/12/msg00017.html"
    },
    {
      "type": "WEB",
      "url": "https://jadaptive.com/important-java-ssh-security-update-new-ssh-vulnerability-discovered-cve-2023-48795"
    },
    {
      "type": "WEB",
      "url": "https://help.panic.com/releasenotes/transmit5"
    },
    {
      "type": "WEB",
      "url": "https://groups.google.com/g/golang-announce/c/qA3XtxvMUyg"
    },
    {
      "type": "WEB",
      "url": "https://groups.google.com/g/golang-announce/c/-n5WqVC18LQ"
    },
    {
      "type": "WEB",
      "url": "https://go.dev/issue/64784"
    },
    {
      "type": "WEB",
      "url": "https://go.dev/cl/550715"
    },
    {
      "type": "WEB",
      "url": "https://gitlab.com/libssh/libssh-mirror/-/tags"
    },
    {
      "type": "WEB",
      "url": "https://github.com/warp-tech/russh/releases/tag/v0.40.2"
    },
    {
      "type": "PACKAGE",
      "url": "https://github.com/warp-tech/russh"
    },
    {
      "type": "WEB",
      "url": "https://github.com/ronf/asyncssh/tags"
    },
    {
      "type": "WEB",
      "url": "http://packetstormsecurity.com/files/176280/Terrapin-SSH-Connection-Weakening.html"
    },
    {
      "type": "WEB",
      "url": "http://seclists.org/fulldisclosure/2024/Mar/21"
    },
    {
      "type": "WEB",
      "url": "http://www.openwall.com/lists/oss-security/2023/12/18/3"
    },
    {
      "type": "WEB",
      "url": "http://www.openwall.com/lists/oss-security/2023/12/19/5"
    },
    {
      "type": "WEB",
      "url": "http://www.openwall.com/lists/oss-security/2023/12/20/3"
    },
    {
      "type": "WEB",
      "url": "http://www.openwall.com/lists/oss-security/2024/03/06/3"
    },
    {
      "type": "WEB",
      "url": "http://www.openwall.com/lists/oss-security/2024/04/17/8"
    }
  ],
  "schema_version": "1.7.3",
  "severity": [
    {
      "score": "CVSS:3.1/AV:N/AC:H/PR:N/UI:N/S:U/C:N/I:H/A:N",
      "type": "CVSS_V3"
    }
  ],
  "summary": "Prefix Truncation Attack against ChaCha20-Poly1305 and Encrypt-then-MAC aka Terrapin",
  "upstream": [
    "GHSA-45x7-px36-x8w8",
    "CVE-2023-48795",
    "GO-2023-2402",
    "PYSEC-2026-1758"
  ]
}



Log in or create an account to share your comment.




Tags
Taxonomy of the tags.


Loading…

Loading…

Loading…

Forecast uses a logistic model when the trend is rising, or an exponential decay model when the trend is falling. Fitted via linearized least squares.

Sightings

Author Source Type Date Other

Nomenclature

  • Seen: The vulnerability was mentioned, discussed, or observed by the user.
  • Confirmed: The vulnerability has been validated from an analyst's perspective.
  • Published Proof of Concept: A public proof of concept is available for this vulnerability.
  • Exploited: The vulnerability was observed as exploited by the user who reported the sighting.
  • Patched: The vulnerability was observed as successfully patched by the user who reported the sighting.
  • Not exploited: The vulnerability was not observed as exploited by the user who reported the sighting.
  • Not confirmed: The user expressed doubt about the validity of the vulnerability.
  • Not patched: The vulnerability was not observed as successfully patched by the user who reported the sighting.

Loading…

Detection rules are retrieved from Rulezet.

Loading…

Loading…

Related by attack behaviour

Vulnerabilities whose description is nearest to this one in the vector space of the CIRCL/vulnerability-attack-technique-biencoder model. This is a similarity search over the bi-encoder space (plain cosine), not a classification, and it has no measured accuracy.


Loading…