1
0
mirror of https://git.FreeBSD.org/ports.git synced 2024-12-12 03:00:28 +00:00
freebsd-ports/security/medusa/Makefile
Kurt Jaeger dcc1a09dfb security/medusa: 2.1.1 -> 2.2
Port:
- remove old patches that were necessary for building
- remove an inactive address from MASTER_SITE
- add USES=ssl (tested with openssl and libressl)
- submitter becomes maintainer

HTTP
  - NTLM2 session response support
  - Report domain name provided in NTLM challenge (verbose output)
  - Allow inclusion of custom headers
RDP
  - Initial release of RDP module (FreeRDP-based)
  - Support for pass-the-hash authentication
SMB
  - Report account access (admin vs user-level) through ADMIN$ connection
SMTP-VRFY
  - Added EXPN/RCPT support
SSH
  - Fix OS X multi-thread issues

PR:		210748
Submitted by:	Danilo G. Baio <dbaio@bsd.com.br>
2016-07-03 07:36:55 +00:00

45 lines
1.1 KiB
Makefile

# Created by: David Thiel <lx@redundancy.redundancy.org>
# $FreeBSD$
PORTNAME= medusa
PORTVERSION= 2.2
CATEGORIES= security
MASTER_SITES= http://www.foofus.net/~jmk/tools/
MAINTAINER= dbaio@bsd.com.br
COMMENT= Speedy, massively parallel, modular, login brute-forcer
LICENSE= GPLv2+
LICENSE_FILE= ${WRKSRC}/COPYING
LIB_DEPENDS= libssh2.so:security/libssh2
USES= ssl
BROKEN_ia64= Does not build on ia64
GNU_CONFIGURE= yes
CONFIGURE_ARGS= --enable-module-ncp=no --enable-module-afp=no
OPTIONS_DEFINE= SVN PGSQL DOCS
OPTIONS_SUB= yes
SVN_LIB_DEPENDS= libsvn_client-1.so:devel/subversion
SVN_CFLAGS= -I${LOCALBASE}/include/subversion-1 -I${LOCALBASE}/include/apr-1
SVN_CONFIGURE_OFF= --enable-module-svn=no
PGSQL_USES= pgsql
PGSQL_CONFIGURE_ON= --enable-module-postgres
PGSQL_CONFIGURE_OFF= --enable-module-postgres=no
post-install:
@${MKDIR} ${STAGEDIR}${PREFIX}/share/zsh/site-functions
${INSTALL_DATA} ${WRKSRC}/misc/zsh/_medusa \
${STAGEDIR}${PREFIX}/share/zsh/site-functions/_medusa
post-install-DOCS-on:
@${MKDIR} ${STAGEDIR}${DOCSDIR}
${INSTALL_DATA} ${WRKSRC}/doc/*.html ${STAGEDIR}${DOCSDIR}
.include <bsd.port.mk>