diff --git a/CHANGES b/CHANGES index 100d00a..2ed365c 100644 --- a/CHANGES +++ b/CHANGES @@ -1,12 +1,16 @@ Changelog for hydra ------------------- -Release 8.1-pre -* Found login:password combinations are now printed with the name specified (hostname or IP), not always IP -* Fixed the -M option, works now with many many targets :-) -* -M option now supports ports, add a colon in between: "host:port", or, if IPv6, "[ipv6ipaddress]:port" +Release 8.2-pre +* ... your patch? + + +Release 8.1 * David Maciejak, my co-maintainer moved to a different job and country and can not help with Hydra anymore - sadly! Wish you all the best! * Added patch from Ander Juaristi which adds h/H header options for http-form-*, great work, thanks! +* Fixed the -M option, works now with many many targets :-) +* -M option now supports ports, add a colon in between: "host:port", or, if IPv6, "[ipv6ipaddress]:port" +* Found login:password combinations are now printed with the name specified (hostname or IP), not always IP * Fixed for cisco-enable if an intial Login/Password is used (thanks to joswr1te for reporting) * Added patch by tux-mind for better MySQL compilation and an Android patches and Makefile. Thanks! * Added xhydra gtk patches by Petar Kaleychev to support -h, -U, -f, -F, -q and -e r options, thanks! diff --git a/hydra-wizard.sh b/hydra-wizard.sh index 0a7b221..1370661 100755 --- a/hydra-wizard.sh +++ b/hydra-wizard.sh @@ -7,7 +7,7 @@ echo "Welcome to the Hydra Wizard" echo read -p "Enter the service to attack (eg: ftp, ssh, http-post-form): " service test -z "$service" && { echo Error: service may not be empty ; exit 1 ; } -read -p "Enter the the target to attack (or filename with targets): " target +read -p "Enter the target to attack (or filename with targets): " target test -z "$target" && { echo Error: target may not be empty ; exit 1 ; } read -p "Enter a username to test or a filename: " user test -z "$user" && { echo Error: user may not be empty ; exit 1 ; } diff --git a/hydra.c b/hydra.c index e1baea4..99e5e48 100644 --- a/hydra.c +++ b/hydra.c @@ -158,7 +158,7 @@ char *SERVICES = #define RESTOREFILE "./hydra.restore" #define PROGRAM "Hydra" -#define VERSION "v8.1-dev" +#define VERSION "v8.2-dev" #define AUTHOR "van Hauser/THC" #define EMAIL "" #define RESOURCE "http://www.thc.org/thc-hydra"