8b38b19ffc
(buzz word alert!) Semi-automated, largely passive web application security audit tool, optimized 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. Detects and prioritizes broad classes of security problems, such as dynamic cross-site trust model considerations, script inclusion issues, content serving problems, insufficient XSRF and XSS defenses, and much more. testing and ok kili@
40 lines
989 B
Makefile
40 lines
989 B
Makefile
# $OpenBSD: Makefile,v 1.1.1.1 2008/09/23 20:59:40 jasper Exp $
|
|
|
|
COMMENT= passive web application security assessment tool
|
|
|
|
DISTNAME= ratproxy-1.51
|
|
CATEGORIES= www security
|
|
|
|
HOMEPAGE= http://ratproxy.googlecode.com/
|
|
|
|
# Apache License 2.0
|
|
PERMIT_PACKAGE_CDROM= Yes
|
|
PERMIT_PACKAGE_FTP= Yes
|
|
PERMIT_DISTFILES_CDROM= Yes
|
|
PERMIT_DISTFILES_FTP= Yes
|
|
|
|
MASTER_SITES= ${HOMEPAGE}/files/
|
|
|
|
WANTLIB= c crypto ssl
|
|
|
|
RUN_DEPENDS= ::shells/bash
|
|
|
|
WRKDIST= ${WRKDIR}/ratproxy/
|
|
|
|
NO_REGRESS= Yes
|
|
|
|
do-configure:
|
|
${SUBST_CMD} ${WRKSRC}/ratproxy-report.sh ${WRKSRC}/ssl.c
|
|
|
|
do-install:
|
|
${INSTALL_PROGRAM} ${WRKSRC}/ratproxy ${PREFIX}/bin
|
|
${INSTALL_SCRIPT} ${WRKSRC}/ratproxy-report.sh ${PREFIX}/bin
|
|
${INSTALL_DATA_DIR} ${PREFIX}/share/doc/ratproxy/
|
|
${INSTALL_DATA} ${WRKSRC}/README ${PREFIX}/share/doc/ratproxy/
|
|
${INSTALL_DATA_DIR} ${PREFIX}/share/ratproxy/
|
|
.for d in keyfile.pem messages.list ratproxy-back.png
|
|
${INSTALL_DATA} ${WRKSRC}/$d ${PREFIX}/share/ratproxy/
|
|
.endfor
|
|
|
|
.include <bsd.port.mk>
|