From owner-svn-ports-head@freebsd.org Thu Apr 18 10:36:51 2019 Return-Path: Delivered-To: svn-ports-head@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id ABE5A156C846; Thu, 18 Apr 2019 10:36:51 +0000 (UTC) (envelope-from swills@FreeBSD.org) Received: from mxrelay.nyi.freebsd.org (mxrelay.nyi.freebsd.org [IPv6:2610:1c1:1:606c::19:3]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) server-signature RSA-PSS (4096 bits) client-signature RSA-PSS (4096 bits) client-digest SHA256) (Client CN "mxrelay.nyi.freebsd.org", Issuer "Let's Encrypt Authority X3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id 4A6C787ED3; Thu, 18 Apr 2019 10:36:51 +0000 (UTC) (envelope-from swills@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mxrelay.nyi.freebsd.org (Postfix) with ESMTPS id 0A32A1DA3F; Thu, 18 Apr 2019 10:36:51 +0000 (UTC) (envelope-from swills@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id x3IAaox9040272; Thu, 18 Apr 2019 10:36:50 GMT (envelope-from swills@FreeBSD.org) Received: (from swills@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id x3IAao2U040271; Thu, 18 Apr 2019 10:36:50 GMT (envelope-from swills@FreeBSD.org) Message-Id: <201904181036.x3IAao2U040271@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: swills set sender to swills@FreeBSD.org using -f From: Steve Wills Date: Thu, 18 Apr 2019 10:36:50 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r499245 - head/security/vuxml X-SVN-Group: ports-head X-SVN-Commit-Author: swills X-SVN-Commit-Paths: head/security/vuxml X-SVN-Commit-Revision: 499245 X-SVN-Commit-Repository: ports MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-Rspamd-Queue-Id: 4A6C787ED3 X-Spamd-Bar: -- Authentication-Results: mx1.freebsd.org X-Spamd-Result: default: False [-2.97 / 15.00]; local_wl_from(0.00)[FreeBSD.org]; NEURAL_HAM_MEDIUM(-1.00)[-0.999,0]; NEURAL_HAM_LONG(-1.00)[-1.000,0]; NEURAL_HAM_SHORT(-0.97)[-0.971,0]; ASN(0.00)[asn:11403, ipnet:2610:1c1:1::/48, country:US] X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.29 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 18 Apr 2019 10:36:51 -0000 Author: swills Date: Thu Apr 18 10:36:50 2019 New Revision: 499245 URL: https://svnweb.freebsd.org/changeset/ports/499245 Log: Document libssh2 issue Modified: head/security/vuxml/vuln.xml Modified: head/security/vuxml/vuln.xml ============================================================================== --- head/security/vuxml/vuln.xml Thu Apr 18 09:31:22 2019 (r499244) +++ head/security/vuxml/vuln.xml Thu Apr 18 10:36:50 2019 (r499245) @@ -58,6 +58,48 @@ Notes: * Do not forget port variants (linux-f10-libxml2, libxml2, etc.) --> + + libssh2 -- multiple issues + + + libssh2 + 1.8.1 + + + + +

libssh2 developers report:

+
+
    +
  • Defend against possible integer overflows in comp_method_zlib_decomp.
  • +
  • Defend against writing beyond the end of the payload in _libssh2_transport_read().
  • +
  • Sanitize padding_length - _libssh2_transport_read().
  • +
  • This prevents an underflow resulting in a potential out-of-bounds read if a server sends a too-large padding_length, possibly with malicious intent.
  • +
  • Prevent zero-byte allocation in sftp_packet_read() which could lead to an out-of-bounds read.
  • +
  • Check the length of data passed to sftp_packet_add() to prevent out-of-bounds reads.
  • +
  • Add a required_size parameter to sftp_packet_require et. al. to require callers of these functions to handle packets that are too short.
  • +
  • Additional length checks to prevent out-of-bounds reads and writes in _libssh2_packet_add().
  • +
+
+ +
+ + https://github.com/libssh2/libssh2/releases/tag/libssh2-1.8.1 + https://libssh2.org/CVE-2019-3858.html + https://libssh2.org/CVE-2019-3860.html + https://libssh2.org/CVE-2019-3861.html + https://libssh2.org/CVE-2019-3862.html + CVE-2019-3858 + CVE-2019-3860 + CVE-2019-3861 + CVE-2019-3862 + + + 2019-03-14 + 2019-04-18 + +
+ gitea -- remote code execution