mirror of
https://github.com/clearml/dropbear
synced 2025-01-31 10:57:01 +00:00
Changelog for 2020.81
This commit is contained in:
parent
b070bcd570
commit
d852d69b50
19
CHANGES
19
CHANGES
@ -1,3 +1,22 @@
|
|||||||
|
2020.81 - 29 October 2020
|
||||||
|
|
||||||
|
- Fix regression in 2020.79 which prevented connecting with some SSH
|
||||||
|
implementations. Increase MAX_PROPOSED_ALGO to 50, and print a log
|
||||||
|
message if the limit is hit. This fixes interoperability with sshj
|
||||||
|
library (used by PyCharm), and GoAnywhere.
|
||||||
|
Reported by Pirmin Walthert and Piotr Jurkiewicz
|
||||||
|
|
||||||
|
- Fix building with non-GCC compilers, reported by Kazuo Kuroi
|
||||||
|
|
||||||
|
- Fix potential long delay in dbclient, found by OSS Fuzz
|
||||||
|
|
||||||
|
- Fix null pointer dereference crash, found by OSS Fuzz
|
||||||
|
|
||||||
|
- libtommath now uses the same random source as Dropbear (in 2020.79
|
||||||
|
and 2020.80 used getrandom() separately)
|
||||||
|
|
||||||
|
- Some fuzzing improvements, start of a dbclient fuzzer
|
||||||
|
|
||||||
2020.80 - 26 June 2020
|
2020.80 - 26 June 2020
|
||||||
|
|
||||||
- Don't block authorized_keys logins with no-X11-forwarding or no-agent-forwarding
|
- Don't block authorized_keys logins with no-X11-forwarding or no-agent-forwarding
|
||||||
|
6
debian/changelog
vendored
6
debian/changelog
vendored
@ -1,3 +1,9 @@
|
|||||||
|
dropbear (2020.81-0.1) unstable; urgency=low
|
||||||
|
|
||||||
|
* New upstream release.
|
||||||
|
|
||||||
|
-- Matt Johnston <matt@ucc.asn.au> Thu, 29 Oct 2020 22:51:57 +0800
|
||||||
|
|
||||||
dropbear (2020.80-0.1) unstable; urgency=low
|
dropbear (2020.80-0.1) unstable; urgency=low
|
||||||
|
|
||||||
* New upstream release.
|
* New upstream release.
|
||||||
|
@ -4,7 +4,7 @@
|
|||||||
*******************************************************************/
|
*******************************************************************/
|
||||||
|
|
||||||
#ifndef DROPBEAR_VERSION
|
#ifndef DROPBEAR_VERSION
|
||||||
#define DROPBEAR_VERSION "2020.80"
|
#define DROPBEAR_VERSION "2020.81"
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
#define LOCAL_IDENT "SSH-2.0-dropbear_" DROPBEAR_VERSION
|
#define LOCAL_IDENT "SSH-2.0-dropbear_" DROPBEAR_VERSION
|
||||||
|
Loading…
Reference in New Issue
Block a user