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 11CHANGELOG
22=========
3+ version 0.10.6 (released 2023-12-18)
4+ * Fix CVE-2023-6004: Command injection using proxycommand
5+ * Fix CVE-2023-48795: Potential downgrade attack using strict kex
6+ * Fix CVE-2023-6918: Missing checks for return values of MD functions
7+ * Fix ssh_send_issue_banner() for CMD(PowerShell)
8+ * Avoid passing other events to callbacks when poll is called recursively (#202)
9+ * Allow @ in usernames when parsing from URI composes
310
411version 0.10.5 (released 2023-05-04)
512 * Fix CVE-2023-1667: a NULL dereference during rekeying with algorithm guessing
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.10.5 LANGUAGES C )
13+ project (libssh VERSION 0.10.6 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.9.5 " )
25+ set (LIBRARY_VERSION "4.9.6 " )
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 1- 4.9.5
1+ 4.9.6
You can’t perform that action at this time.
0 commit comments