pkgsrc/www/paros/Makefile
adrianp e8d54f8b43 Update to 3.2.12
3.2.12
======

New
-	Use newest external library for HTTP handling.
-	enable/disable spider to POST forms in options panel to avoid
        generating unwanted traffic (default to enable).  This is requested
	by many users.
-	Decrease the number of possible combinations crawled by spider on
        forms with multiple SELECT/OPTIONS.  This make crawling less
	resource consuming and lower chance to affect application being scanned.
-	Minor UI changes.

Fix
-	Fallback database library to previous version as in Paros 3.2.10
        because of a problem with hsqldb where some byte combination may
	consume 100% cpu time.
-	Increase width of method display in history to cater for other
        longer method names.
-	Default file scans may display incorrect HTTP message body if the
        original message is a POST request.

3.2.11
======

New
- Revamp History log panel.
- Added "tag..." in right-click pop-up window for History log panel.  This
  help to quickly identify a HTTP message in History display.
- Concurrent delete of multiple URL's in the site hierarchy (sf.net request
  ID 1472300).
- Use of newest db library.

Fix
- For POST request, if the body contain binary parameters of certain pattern,
  it may be unable to issue a re-send because URLDecode failed to decode
  properly.
2006-05-31 11:16:29 +00:00

39 lines
1.1 KiB
Makefile

# $NetBSD: Makefile,v 1.7 2006/05/31 11:16:29 adrianp Exp $
#
DISTNAME= paros-3.2.12-unix
PKGNAME= ${DISTNAME:S/-unix//}
CATEGORIES= games java
MASTER_SITES= ${MASTER_SITE_SOURCEFORGE:=paros/}
EXTRACT_SUFX= .zip
MAINTAINER= salo@NetBSD.org
HOMEPAGE= http://www.parosproxy.org/
COMMENT= HTTP/HTTPS proxy for assessing web application vulnerabilities
NO_BUILD= yes
USE_JAVA2= yes
USE_JAVA= run
WRKSRC= ${WRKDIR}/${PKGBASE}
SUBST_CLASSES+= java
SUBST_MESSAGE.java= Fixing hardcoded path to Java.
SUBST_STAGE.java= pre-configure
SUBST_FILES.java= ${WRKSRC}/startserver.sh
SUBST_SED.java= -e 's,^java,${PKG_JAVA_HOME}/bin/&,'
do-configure:
@(${ECHO} '#! /bin/sh' && \
${ECHO} cd ${PREFIX}/lib/${PKGBASE} && \
${CAT} ${WRKSRC}/startserver.sh && \
${ECHO}) > ${WRKDIR}/paros.sh
@${MV} ${WRKSRC}/license/theclarifiedartisticlicense.htm \
${WRKSRC}/license/TheClarifiedArtisticLicense.htm
do-install:
@cd ${WRKDIR} && ${PAX} -rw -pm ${PKGBASE} ${PREFIX}/lib/
${INSTALL_SCRIPT} ${WRKDIR}/paros.sh ${PREFIX}/bin/paros
.include "../../mk/java-vm.mk"
.include "../../mk/bsd.pkg.mk"