radmin2 enhancements

This commit is contained in:
van Hauser 2017-07-08 14:42:23 +02:00
parent 04818f2b07
commit 07acbda422
3 changed files with 7 additions and 2 deletions

View file

@ -2,6 +2,7 @@ Changelog for hydra
-------------------
Release 8.6-dev
* added radmin2 module by catatonic prime - great work!
* smb module now checks if SMBv1 is supported by the server and now signing is required
* http-form module now supports URLs up to 6000 bytes (thanks to petrock6@github for the patch)
* Fix for SSL connections that failed with error:00000000:lib(0):func(0):reason(0) (thanks gaia@github for reporting)

2
configure vendored
View file

@ -257,7 +257,7 @@ done
if [ -n "$HAVE_GCRYPT" ]; then
echo " ... found"
else
echo " ... gcrypt not found, gcrypt support disabled"
echo " ... gcrypt not found, radmin2 module disabled"
fi

View file

@ -2136,6 +2136,10 @@ int32_t main(int32_t argc, char *argv[]) {
SERVICES = hydra_string_replace(SERVICES, "firebird ", "");
strcat(unsupported, "firebird ");
#endif
#ifndef HAVE_GCRYPT
SERVICES = hydra_string_replace(SERVICES, "radmin2 ", "");
strcat(unsupported, "radmin2 ");
#endif
#ifndef LIBAFP
SERVICES = hydra_string_replace(SERVICES, "afp ", "");
strcat(unsupported, "afp ");
@ -3089,7 +3093,7 @@ int32_t main(int32_t argc, char *argv[]) {
#ifdef HAVE_GCRYPT
i = 1;
#else
bail("hydra was not compiled with gcrypt support, radmin2 module can not be used");
bail("hydra was not compiled with gcrypt support, radmin2 module not available");
#endif
}