Skip to content

Commit 7ccedec

Browse files
committed
Release v1.4.13
1. Update the version number in configure.ac. 2. Update the change log.
1 parent 95bcc45 commit 7ccedec

File tree

3 files changed

+32
-5
lines changed

3 files changed

+32
-5
lines changed

ChangeLog.md

Lines changed: 27 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,30 @@
1+
# wolfSSH v1.4.13 (Apr 3, 2023)
2+
3+
## New Feature Additions and Improvements
4+
5+
- Improvement to forking the wolfSSHd daemon.
6+
- Added an STM32Cube Expansion pack. See the file _ide/STM32CUBE/README.md_
7+
for more information. (https://www.wolfssl.com/files/ide/I-CUBE-wolfSSH.pack)
8+
- Improved test coverage for wolfSSHd.
9+
- X.509 style private key support.
10+
11+
## Fixes
12+
13+
- Fixed shadow password checking in wolfSSHd.
14+
- Building cleanups: warnings, types, 32-bit.
15+
- SFTP fixes for large files.
16+
- Testing and fixes with SFTP and LwIP.
17+
18+
## Vulnerabilities
19+
20+
- wolfSSHd would allow users without passwords to log in with any password.
21+
This is fixed as of this version. The return value of crypt() was not
22+
correctly checked. This issue was introduced in v1.4.11 and only affects
23+
wolfSSHd when using the default authentication callback provided with
24+
wolfSSHd. Anyone using wolfSSHd should upgrade to v1.4.13.
25+
26+
---
27+
128
# wolfSSH v1.4.12 (Dec 28, 2022)
229

330
## New Feature Additions and Improvements

configure.ac

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -2,8 +2,8 @@
22
# Copyright (C) 2014-2023 wolfSSL Inc.
33
# All right reserved.
44

5-
AC_COPYRIGHT([Copyright (C) 2014-2022 wolfSSL Inc.])
6-
AC_INIT([wolfssh],[1.4.12],[support@wolfssl.com],[wolfssh],[https://www.wolfssl.com])
5+
AC_COPYRIGHT([Copyright (C) 2014-2023 wolfSSL Inc.])
6+
AC_INIT([wolfssh],[1.4.13],[support@wolfssl.com],[wolfssh],[https://www.wolfssl.com])
77
AC_PREREQ([2.63])
88
AC_CONFIG_AUX_DIR([build-aux])
99

@@ -18,7 +18,7 @@ AC_ARG_PROGRAM
1818
AC_CONFIG_MACRO_DIR([m4])
1919
AC_CONFIG_HEADERS([config.h])
2020

21-
WOLFSSH_LIBRARY_VERSION=14:0:6
21+
WOLFSSH_LIBRARY_VERSION=15:0:7
2222
# | | |
2323
# +------+ | +---+
2424
# | | |

wolfssh/version.h

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -35,8 +35,8 @@
3535
extern "C" {
3636
#endif
3737

38-
#define LIBWOLFSSH_VERSION_STRING "1.4.12"
39-
#define LIBWOLFSSH_VERSION_HEX 0x01004012
38+
#define LIBWOLFSSH_VERSION_STRING "1.4.13"
39+
#define LIBWOLFSSH_VERSION_HEX 0x01004013
4040

4141
#ifdef __cplusplus
4242
}

0 commit comments

Comments
 (0)