Burp Suite is an integrated platform for testing web applications

PR:	ports/144150
Submitted by:	niels
Approved by:	itetcu (mentor)
WWW:	http://www.portswigger.net/suite/
This commit is contained in:
Niels Heinen 2010-03-08 22:03:20 +00:00
parent 0d8b9005e1
commit 87260c9251
Notes: svn2git 2021-03-31 03:12:20 +00:00
svn path=/head/; revision=250713
5 changed files with 68 additions and 0 deletions

View File

@ -50,6 +50,7 @@
SUBDIR += bsp_upektfmess
SUBDIR += bubblegum
SUBDIR += bugs
SUBDIR += burpsuite
SUBDIR += ca_root_nss
SUBDIR += calife
SUBDIR += calife-devel

View File

@ -0,0 +1,50 @@
# New ports collection makefile for: Burpsuite
# Date created: 2010-02-22
# Whom: Niels Heinen
#
# $FreeBSD$
#
PORTNAME= burpsuite
PORTVERSION= 1.3
CATEGORIES= security java
MASTER_SITES= http://www.portswigger.net/suite/
DISTNAME= ${PORTNAME}_v${PORTVERSION}
MAINTAINER= niels@FreeBSD.org
COMMENT= Burp Suite is an integrated platform for testing web applications
USE_ZIP= YES
USE_JAVA= YES
JAVA_VERSION= 1.4+
NO_BUILD= yes
WRKSRC= ${WRKDIR}/${DISTNAME}
PLIST_FILES= bin/${PORTNAME} %%JAVAJARDIR%%/${DISTNAME}.jar
#.if !defined(NOPORTDOCS)
PORTDOCS= readme_-_running_burp.txt terms_and_conditions.txt
#.endif
.include <bsd.port.pre.mk>
post-extract:
${MV} ${WRKSRC}/readme\ -\ running\ burp.txt ${WRKSRC}/readme_-_running_burp.txt
${MV} ${WRKSRC}/terms\ and\ conditions.txt ${WRKSRC}/terms_and_conditions.txt
pre-install:
@${SED} -e 's:%%PATH%%:${JAVAJARDIR}/:' \
-e 's:%%JAVA_CMD%%:${JAVA}:' \
-e 's:%%BURP%%:${JAVAJARDIR}/${DISTNAME}.jar:' \
< ${FILESDIR}/${PORTNAME}.sh > ${WRKDIR}/${PORTNAME}
do-install:
@${INSTALL_DATA} ${WRKSRC}/${DISTNAME}.jar ${JAVAJARDIR}/
${INSTALL_SCRIPT} ${WRKDIR}/${PORTNAME} ${PREFIX}/bin
.if !defined(NOPORTDOCS)
@${MKDIR} ${DOCSDIR}
${INSTALL_DATA} ${WRKSRC}/readme_-_running_burp.txt ${DOCSDIR}
${INSTALL_DATA} ${WRKSRC}/terms_and_conditions.txt ${DOCSDIR}
.endif
.include <bsd.port.post.mk>

View File

@ -0,0 +1,3 @@
MD5 (burpsuite_v1.3.zip) = 592004af60d77ee23fe4371a50eeb190
SHA256 (burpsuite_v1.3.zip) = ccd421ee6d138346c3e5b117e98b3d89faa1a11fef5c54725bec99cb13765d2f
SIZE (burpsuite_v1.3.zip) = 2530299

View File

@ -0,0 +1,7 @@
#!/bin/sh
#
# $FreeBSD$
#
cd %%PATH%%
exec %%JAVA_CMD%% -jar -Xmx256m %%BURP%% "$@"

View File

@ -0,0 +1,7 @@
Burp Suite is a closed source tool which allows you to combine
manual and automated techniques to enumerate, analyse, scan, attack
and exploit web applications. The various Burp tools work together
effectively to share information and allow findings identified
within one tool to form the basis of an attack using another.
WWW: http://www.portswigger.net/suite/