mirror of
https://git.FreeBSD.org/ports.git
synced 2024-11-26 00:55:14 +00:00
19fd4a8b23
tool. It is meant to complement active crawlers and manual proxies more commonly used for this task, and is optimized specifically for an accurate and sensitive detection, and automatic annotation, of potential problems and security-relevant design patterns based on the observation of existing, user-initiated traffic in complex web 2.0 environments. WWW: http://code.google.com/p/ratproxy/ PR: ports/125249 Submitted by: Steven Kreuzer <skreuzer@exit2shell.com>
29 lines
693 B
Makefile
29 lines
693 B
Makefile
# New ports collection makefile for: ratproxy
|
|
# Date created: 3 July 2008
|
|
# Whom: Steven Kreuzer <skreuzer@exit2shell.com>
|
|
#
|
|
# $FreeBSD$
|
|
#
|
|
|
|
PORTNAME= ratproxy
|
|
PORTVERSION= 1.51
|
|
CATEGORIES= security
|
|
MASTER_SITES= ${MASTER_SITE_GOOGLE_CODE}
|
|
|
|
MAINTAINER= skreuzer@exit2shell.com
|
|
COMMENT= Semi-automated, largely passive web application security audit tool
|
|
|
|
USE_OPENSSL= YES
|
|
WRKSRC= ${WRKDIR}/${PORTNAME}
|
|
PLIST_FILES= bin/ratproxy \
|
|
bin/ratproxy-report.sh
|
|
|
|
post-patch:
|
|
@${REINPLACE_CMD} -e 's#-Wno-pointer-sign##g' ${WRKSRC}/Makefile
|
|
|
|
do-install:
|
|
${INSTALL_PROGRAM} ${WRKSRC}/ratproxy ${PREFIX}/bin
|
|
${INSTALL_SCRIPT} ${WRKSRC}/ratproxy-report.sh ${PREFIX}/bin
|
|
|
|
.include <bsd.port.mk>
|