- fix hardcode of SSLBASE so it _should_ be more portable now Changelog for hydra ------------------- Release v4.0 ############ # # This is a summary of changes of the D1 to D5 beta releases and shows # what makes v4.0 different from 3.1. # Have fun. Lots of it. # # By the way: I need someone to program a nice GTK frontend for hydra, # would YOU like to do that and receive the fame? Send an email to vh@thc.org ! # * For the first time there is not only a UNIX/source release but additionally: ! Windows release (cygwin compile with dll's) ! PalmPilot release ! ARM processor release (for all your Zaurus, iPaq etc. running Linux) * There are new service attack module: ! ms-sql ! sap r/3 (requires a library) ! ssh v2 (requires a library) * Enhancements/Fixes to service attack modules: ! vnc module didnt work correctly, fixed ! mysql module supports newer versions now ! http module received a minor fix and has better virtual host support now ! http-proxy supports now an optional URL ! socks5 checks now for false positives and daemons without authentication * The core code (hydra.c) was rewritten from scratch ! rewrote the internal distribution functions from scratch. code is now safer, less error prone, easier to read. ! multiple target support rewritten which now includes intelligent load balancing based on success, error and load rate ! intelligently detect maximum connect numbers for services (per server if multiple targets are used) ! intelligent restore file writing ! Faster (up to 15%) ! Full Cygwin and Cygwin IPv6 support * added new tool: pw-inspector - it can be used to just try passwords which matches the target's password policy
32 lines
874 B
Makefile
32 lines
874 B
Makefile
# $NetBSD: Makefile,v 1.6 2004/05/22 14:43:42 adrian_p Exp $
|
|
#
|
|
|
|
DISTNAME= hydra-4.0-src
|
|
PKGNAME= hydra-4.0
|
|
WRKSRC= ${WRKDIR}/${PKGNAME}
|
|
CATEGORIES= security
|
|
MASTER_SITES= http://www.thc.org/releases/
|
|
|
|
MAINTAINER= adrianp@stindustries.net
|
|
HOMEPAGE= http://www.thc.org/
|
|
COMMENT= Login password cracker
|
|
|
|
GNU_CONFIGURE= YES
|
|
USE_BUILDLINK3= YES
|
|
ALL_TARGET= all ssl
|
|
|
|
CONFIGURE_ARGS+= --prefix=${PREFIX}
|
|
|
|
pre-configure:
|
|
${CP} ${WRKSRC}/Makefile.am ${WRKSRC}/Makefile.am.new
|
|
${SED} -e 's#@SSLBASE@#${BUILDLINK_PREFIX.openssl}#g' \
|
|
-e 's#@PREFIX@#${PREFIX}#g' \
|
|
< ${WRKSRC}/Makefile.am.new > ${WRKSRC}/Makefile.am
|
|
|
|
${CP} ${WRKSRC}/configure ${WRKSRC}/configure.new
|
|
${SED} -e 's#@PREFIX@#${PREFIX}#g' \
|
|
< ${WRKSRC}/configure.new > ${WRKSRC}/configure
|
|
|
|
.include "../../security/openssl/buildlink3.mk"
|
|
.include "../../wip/libssh/buildlink3.mk"
|
|
.include "../../mk/bsd.pkg.mk"
|