Skip to content
This repository was archived by the owner on Jan 26, 2026. It is now read-only.

Commit 64ce53f

Browse files
committed
Bump version to 0.9.3
Signed-off-by: Andreas Schneider <asn@cryptomilk.org> Reviewed-by: Jakub Jelen <jjelen@redhat.com>
1 parent 295739e commit 64ce53f

5 files changed

Lines changed: 440 additions & 4 deletions

File tree

CMakeLists.txt

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ list(APPEND CMAKE_MODULE_PATH "${CMAKE_CURRENT_SOURCE_DIR}/cmake/Modules")
1010
include(DefineCMakeDefaults)
1111
include(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
1616
set(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")
2626
set(LIBRARY_SOVERSION "4")
2727

2828
# where to look first for cmake modules, before ${CMAKE_ROOT}/Modules/ is checked

ChangeLog

Lines changed: 15 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,21 @@
11
ChangeLog
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+
419
version 0.9.2 (released 2019-11-07)
520
* Fixed libssh-config.cmake
621
* Fixed issues with rsa algorithm negotiation (T191)

include/libssh/libssh.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -79,7 +79,7 @@
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, \

src/ABI/current

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
4.8.3
1+
4.8.4

0 commit comments

Comments
 (0)