This repository was archived by the owner on Jan 26, 2026. It is now read-only.
File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -10,7 +10,7 @@ list(APPEND CMAKE_MODULE_PATH "${CMAKE_CURRENT_SOURCE_DIR}/cmake/Modules")
1010include (DefineCMakeDefaults )
1111include (DefineCompilerFlags )
1212
13- project (libssh VERSION 0.9.2 LANGUAGES C )
13+ project (libssh VERSION 0.9.3 LANGUAGES C )
1414
1515# global needed variable
1616set (APPLICATION_NAME ${PROJECT_NAME } )
@@ -22,7 +22,7 @@ set(APPLICATION_NAME ${PROJECT_NAME})
2222# Increment AGE. Set REVISION to 0
2323# If the source code was changed, but there were no interface changes:
2424# Increment REVISION.
25- set (LIBRARY_VERSION "4.8.3 " )
25+ set (LIBRARY_VERSION "4.8.4 " )
2626set (LIBRARY_SOVERSION "4" )
2727
2828# where to look first for cmake modules, before ${CMAKE_ROOT}/Modules/ is checked
Original file line number Diff line number Diff line change 11ChangeLog
22==========
33
4+ version 0.9.3 (released 2019-12-10)
5+ * Fixed CVE-2019-14889 - SCP: Unsanitized location leads to command execution
6+ * SSH-01-003 Client: Missing NULL check leads to crash in erroneous state
7+ * SSH-01-006 General: Various unchecked Null-derefs cause DOS
8+ * SSH-01-007 PKI Gcrypt: Potential UAF/double free with RSA pubkeys
9+ * SSH-01-010 SSH: Deprecated hash function in fingerprinting
10+ * SSH-01-013 Conf-Parsing: Recursive wildcards in hostnames lead to DOS
11+ * SSH-01-014 Conf-Parsing: Integer underflow leads to OOB array access
12+ * SSH-01-001 State Machine: Initial machine states should be set explicitly
13+ * SSH-01-002 Kex: Differently bound macros used to iterate same array
14+ * SSH-01-005 Code-Quality: Integer sign confusion during assignments
15+ * SSH-01-008 SCP: Protocol Injection via unescaped File Names
16+ * SSH-01-009 SSH: Update documentation which RFCs are implemented
17+ * SSH-01-012 PKI: Information leak via uninitialized stack buffer
18+
419version 0.9.2 (released 2019-11-07)
520 * Fixed libssh-config.cmake
621 * Fixed issues with rsa algorithm negotiation (T191)
Original file line number Diff line number Diff line change 7979/* libssh version */
8080#define LIBSSH_VERSION_MAJOR 0
8181#define LIBSSH_VERSION_MINOR 9
82- #define LIBSSH_VERSION_MICRO 2
82+ #define LIBSSH_VERSION_MICRO 3
8383
8484#define LIBSSH_VERSION_INT SSH_VERSION_INT(LIBSSH_VERSION_MAJOR, \
8585 LIBSSH_VERSION_MINOR, \
Original file line number Diff line number Diff line change 1- 4.8.3
1+ 4.8.4
You can’t perform that action at this time.
0 commit comments