mirror of
https://github.com/vanhauser-thc/thc-hydra.git
synced 2025-08-14 02:27:31 -07:00
Changelog update and compiler warning fix
This commit is contained in:
parent
0fa7a484b3
commit
e82e395dad
2 changed files with 3 additions and 2 deletions
3
CHANGES
3
CHANGES
|
@ -3,7 +3,8 @@ Changelog for hydra
|
||||||
|
|
||||||
Release 8.9-dev
|
Release 8.9-dev
|
||||||
* your patch? :)
|
* your patch? :)
|
||||||
* Revamped rdp module to use FreeRDP library (thanks to loianhtuan@github for the patch)
|
* Revamped rdp module to use FreeRDP library (thanks to loianhtuan@github for the patch!)
|
||||||
|
* JSON output does now truncate the file if exists. Beware when using -R
|
||||||
* Fixed svn module memory leaks
|
* Fixed svn module memory leaks
|
||||||
* Fixed rtsp module potential buffer overflow
|
* Fixed rtsp module potential buffer overflow
|
||||||
* Fixed http module DIGEST-MD5 mode
|
* Fixed http module DIGEST-MD5 mode
|
||||||
|
|
|
@ -468,7 +468,7 @@ RSA *ssl_temp_rsa_cb(SSL * ssl, int32_t export, int32_t keylength) {
|
||||||
#if !defined(LIBRESSL_VERSION_NUMBER) && OPENSSL_VERSION_NUMBER >= 0x10100000L
|
#if !defined(LIBRESSL_VERSION_NUMBER) && OPENSSL_VERSION_NUMBER >= 0x10100000L
|
||||||
BIGNUM *n;
|
BIGNUM *n;
|
||||||
n = BN_new();
|
n = BN_new();
|
||||||
RSA_get0_key(rsa, &n, NULL, NULL);
|
RSA_get0_key(rsa, (const struct bignum_st **)&n, NULL, NULL);
|
||||||
ok = BN_zero(n);
|
ok = BN_zero(n);
|
||||||
#else
|
#else
|
||||||
if (rsa->n == 0)
|
if (rsa->n == 0)
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue