mirror of
https://github.com/vanhauser-thc/thc-hydra.git
synced 2025-07-06 04:51:40 -07:00
radmin2 enhancements
This commit is contained in:
parent
04818f2b07
commit
07acbda422
3 changed files with 7 additions and 2 deletions
1
CHANGES
1
CHANGES
|
@ -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
2
configure
vendored
|
@ -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
|
||||
|
||||
|
||||
|
|
6
hydra.c
6
hydra.c
|
@ -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
|
||||
}
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue