mirror of
https://github.com/vanhauser-thc/thc-hydra.git
synced 2025-07-05 20:41:39 -07:00
v8.1 release
This commit is contained in:
parent
92997e80ea
commit
6a15e01a1e
3 changed files with 10 additions and 6 deletions
12
CHANGES
12
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!
|
||||
|
|
|
@ -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 ; }
|
||||
|
|
2
hydra.c
2
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 "<vh@thc.org>"
|
||||
#define RESOURCE "http://www.thc.org/thc-hydra"
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue