Skip to content

Commit

Permalink
radmin2 enhancements
Browse files Browse the repository at this point in the history
  • Loading branch information
vanhauser-thc committed Jul 8, 2017
1 parent 04818f2 commit 07acbda
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 2 deletions.
1 change: 1 addition & 0 deletions CHANGES
Original file line number Diff line number Diff line change
Expand Up @@ -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)
Expand Down
2 changes: 1 addition & 1 deletion configure
Original file line number Diff line number Diff line change
Expand Up @@ -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


Expand Down
6 changes: 5 additions & 1 deletion hydra.c
Original file line number Diff line number Diff line change
Expand Up @@ -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 ");
Expand Down Expand Up @@ -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
}

Expand Down

0 comments on commit 07acbda

Please sign in to comment.