mirror of
https://github.com/vanhauser-thc/thc-hydra.git
synced 2025-07-05 20:41:39 -07:00
v9.1 release
This commit is contained in:
parent
a73cd388f8
commit
0a17bf5f53
5 changed files with 8 additions and 7 deletions
1
CHANGES
1
CHANGES
|
@ -2,6 +2,7 @@ Changelog for hydra
|
|||
-------------------
|
||||
|
||||
Release 9.1-dev
|
||||
* enable gcc 10 support for xhydra too :)
|
||||
* rdb: support for libfreerdp3 (thanks to animetauren)
|
||||
* new module: smb2 which also supports smb3 (uses libsmbclient-dev) (thanks to Karim Kanso for the module!)
|
||||
* oracle: added success condition (thanks to kazkansouh), compile on Cygwin (thanks to maaaaz)
|
||||
|
|
|
@ -61,7 +61,7 @@ CC = @CC@
|
|||
MAINT = @MAINT@
|
||||
MAKEINFO = @MAKEINFO@
|
||||
PACKAGE = @PACKAGE@
|
||||
PACKAGE_CFLAGS = @PACKAGE_CFLAGS@
|
||||
PACKAGE_CFLAGS = @PACKAGE_CFLAGS@ -fcommon -Wl,--allow-multiple-definition
|
||||
PACKAGE_LIBS = @PACKAGE_LIBS@
|
||||
PKG_CONFIG = @PKG_CONFIG@
|
||||
VERSION = @VERSION@
|
||||
|
|
8
hydra-gtk/configure
vendored
8
hydra-gtk/configure
vendored
|
@ -2233,15 +2233,15 @@ if test "$ac_test_CFLAGS" = set; then
|
|||
CFLAGS=$ac_save_CFLAGS
|
||||
elif test $ac_cv_prog_cc_g = yes; then
|
||||
if test "$GCC" = yes; then
|
||||
CFLAGS="-g -O2"
|
||||
CFLAGS="-g -O2 -fcommon -Wl,--allow-multiple-definition"
|
||||
else
|
||||
CFLAGS="-g"
|
||||
CFLAGS="-g -fcommon -Wl,--allow-multiple-definition"
|
||||
fi
|
||||
else
|
||||
if test "$GCC" = yes; then
|
||||
CFLAGS="-O2"
|
||||
CFLAGS="-O2 -fcommon -Wl,--allow-multiple-definition"
|
||||
else
|
||||
CFLAGS=
|
||||
CFLAGS="-fcommon -Wl,--allow-multiple-definition"
|
||||
fi
|
||||
fi
|
||||
echo "$as_me:$LINENO: checking for $CC option to accept ANSI C" >&5
|
||||
|
|
|
@ -61,7 +61,7 @@ CC = @CC@
|
|||
MAINT = @MAINT@
|
||||
MAKEINFO = @MAKEINFO@
|
||||
PACKAGE = @PACKAGE@
|
||||
PACKAGE_CFLAGS = @PACKAGE_CFLAGS@
|
||||
PACKAGE_CFLAGS = @PACKAGE_CFLAGS@ -fcommon -Wl,--allow-multiple-definition
|
||||
PACKAGE_LIBS = @PACKAGE_LIBS@
|
||||
PKG_CONFIG = @PKG_CONFIG@
|
||||
VERSION = @VERSION@
|
||||
|
|
2
hydra.c
2
hydra.c
|
@ -225,7 +225,7 @@ char *SERVICES = "adam6500 asterisk afp cisco cisco-enable cvs firebird ftp[s] "
|
|||
#define RESTOREFILE "./hydra.restore"
|
||||
|
||||
#define PROGRAM "Hydra"
|
||||
#define VERSION "v9.1-dev"
|
||||
#define VERSION "v9.1"
|
||||
#define AUTHOR "van Hauser/THC"
|
||||
#define EMAIL "<vh@thc.org>"
|
||||
#define AUTHOR2 "David Maciejak"
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue