diff options
Diffstat (limited to 'security/skipfish')
-rw-r--r-- | security/skipfish/Makefile | 45 | ||||
-rw-r--r-- | security/skipfish/distinfo | 2 | ||||
-rw-r--r-- | security/skipfish/files/patch-Makefile | 33 | ||||
-rw-r--r-- | security/skipfish/files/patch-report.c | 11 | ||||
-rw-r--r-- | security/skipfish/files/patch-sfscandiff | 8 | ||||
-rw-r--r-- | security/skipfish/files/patch-src__http_client.c | 10 | ||||
-rw-r--r-- | security/skipfish/files/pkg-message.in | 12 | ||||
-rw-r--r-- | security/skipfish/pkg-descr | 16 | ||||
-rw-r--r-- | security/skipfish/pkg-plist | 31 |
9 files changed, 0 insertions, 168 deletions
diff --git a/security/skipfish/Makefile b/security/skipfish/Makefile deleted file mode 100644 index 65e91d0549a9..000000000000 --- a/security/skipfish/Makefile +++ /dev/null @@ -1,45 +0,0 @@ -# Created by: Ryan Steinmetz <rpsfa@rit.edu> -# $FreeBSD$ - -PORTNAME= skipfish -PORTVERSION= 2.10b -PORTREVISION= 5 -CATEGORIES= security www -MASTER_SITES= GOOGLE_CODE - -MAINTAINER= zi@FreeBSD.org -COMMENT= Fully automated, active web application security reconnaissance tool - -LICENSE= APACHE20 -LICENSE_FILE= ${WRKSRC}/COPYING - -BROKEN= Unfetchable (google code has gone away) -DEPRECATED= Unfetchable for more than six months (google code has gone away) -EXPIRATION_DATE= 2017-04-30 - -LIB_DEPENDS= libidn.so:dns/libidn \ - libpcre.so:devel/pcre - -USES= gmake tar:tgz ssl -SUB_FILES= pkg-message - -OPTIONS_DEFINE= DOCS - -PORTDOCS= README COPYING ChangeLog - -post-patch: - @${REINPLACE_CMD} -e 's:"skipfish.wl":"${DATADIR}/dictionaries/complete.wl":' \ - -e 's:"assets":"${DATADIR}/assets":' ${WRKSRC}/src/config.h - -do-install: - ${INSTALL_PROGRAM} ${WRKSRC}/skipfish ${STAGEDIR}${PREFIX}/bin/skipfish - ${INSTALL_SCRIPT} ${WRKSRC}/tools/sfscandiff ${STAGEDIR}${PREFIX}/bin/sfscandiff - ${INSTALL_MAN} ${WRKSRC}/doc/skipfish.1 ${STAGEDIR}${PREFIX}/man/man1 - (cd ${WRKSRC}/assets/ && ${COPYTREE_SHARE} . ${STAGEDIR}${DATADIR}/assets/) - (cd ${WRKSRC}/dictionaries/ && ${COPYTREE_SHARE} . ${STAGEDIR}${DATADIR}/dictionaries/) - ${MKDIR} ${STAGEDIR}${DOCSDIR} -. for doc in ${PORTDOCS} - ${INSTALL_DATA} ${WRKSRC}/${doc} ${STAGEDIR}${DOCSDIR} -. endfor - -.include <bsd.port.mk> diff --git a/security/skipfish/distinfo b/security/skipfish/distinfo deleted file mode 100644 index aa62dd54cb04..000000000000 --- a/security/skipfish/distinfo +++ /dev/null @@ -1,2 +0,0 @@ -SHA256 (skipfish-2.10b.tgz) = 1a4fbc9d013f1f9b970946ea7228d943266127b7f4100c994ad26c82c5352a9e -SIZE (skipfish-2.10b.tgz) = 244528 diff --git a/security/skipfish/files/patch-Makefile b/security/skipfish/files/patch-Makefile deleted file mode 100644 index 27b31ffe5033..000000000000 --- a/security/skipfish/files/patch-Makefile +++ /dev/null @@ -1,33 +0,0 @@ ---- ./Makefile.orig 2012-12-07 10:14:00.000000000 -0500 -+++ ./Makefile 2012-12-07 10:15:06.000000000 -0500 -@@ -33,13 +33,14 @@ - OBJFILES = $(patsubst %,$(SRCDIR)/%,$(SFILES)) - INCFILES = $(patsubst %,$(SRCDIR)/%,$(IFILES)) - --CFLAGS_GEN = -Wall -funsigned-char -g -ggdb -I/usr/local/include/ \ -- -I/opt/local/include/ $(CFLAGS) -DVERSION=\"$(VERSION)\" -+_LOCALBASE ?= ${LOCALBASE} -+CFLAGS_GEN = -Wall -funsigned-char -g -ggdb -I$(LOCALBASE)/include/ \ -+ $(CFLAGS) -DVERSION=\"$(VERSION)\" - CFLAGS_DBG = -DLOG_STDERR=1 -DDEBUG_ALLOCATOR=1 \ - $(CFLAGS_GEN) - CFLAGS_OPT = -O3 -Wno-format $(CFLAGS_GEN) - --LDFLAGS += -L/usr/local/lib/ -L/opt/local/lib -+LDFLAGS += -L$(LOCALBASE)/lib - LIBS += -lcrypto -lssl -lidn -lz -lpcre - - all: $(PROGNAME) -@@ -47,12 +48,6 @@ - $(PROGNAME): $(SRCDIR)/$(PROGNAME).c $(OBJFILES) $(INCFILES) - $(CC) $(LDFLAGS) $(SRCDIR)/$(PROGNAME).c -o $(PROGNAME) \ - $(CFLAGS_OPT) $(OBJFILES) $(LIBS) -- @echo -- @echo "See doc/dictionaries.txt to pick a dictionary for the tool." -- @echo -- @echo "Having problems with your scans? Be sure to visit:" -- @echo "http://code.google.com/p/skipfish/wiki/KnownIssues" -- @echo - - debug: $(SRCDIR)/$(PROGNAME).c $(OBJFILES) $(INCFILES) - $(CC) $(LDFLAGS) $(SRCDIR)/$(PROGNAME).c -o $(PROGNAME) \ diff --git a/security/skipfish/files/patch-report.c b/security/skipfish/files/patch-report.c deleted file mode 100644 index d28f1f935ab6..000000000000 --- a/security/skipfish/files/patch-report.c +++ /dev/null @@ -1,11 +0,0 @@ ---- ./src/report.c.orig 2012-09-24 11:55:23.000000000 -0400 -+++ ./src/report.c 2012-09-24 11:55:32.000000000 -0400 -@@ -799,7 +799,7 @@ - static void copy_static_code(u8* out_dir) { - struct dirent** d; - ca_out_dir = out_dir; -- scandir(ASSETS_DIR, &d, copy_asset, NULL); -+ scandir(ASSETS_DIR, &d, (int(*)())copy_asset, NULL); - } - - diff --git a/security/skipfish/files/patch-sfscandiff b/security/skipfish/files/patch-sfscandiff deleted file mode 100644 index b1c967bb1eaf..000000000000 --- a/security/skipfish/files/patch-sfscandiff +++ /dev/null @@ -1,8 +0,0 @@ ---- ./tools/sfscandiff.orig 2011-06-29 20:06:17.000000000 -0400 -+++ ./tools/sfscandiff 2011-06-29 20:06:20.000000000 -0400 -@@ -1,4 +1,4 @@ --#!/bin/bash -+#!/bin/sh - - echo "sfscandiff - skipfish scan result comparator (lcamtuf@google.com)" 1>&2 - diff --git a/security/skipfish/files/patch-src__http_client.c b/security/skipfish/files/patch-src__http_client.c deleted file mode 100644 index 640234f4cf6b..000000000000 --- a/security/skipfish/files/patch-src__http_client.c +++ /dev/null @@ -1,10 +0,0 @@ ---- ./src/http_client.c.orig 2012-09-24 12:05:51.000000000 -0400 -+++ ./src/http_client.c 2012-09-24 12:05:58.000000000 -0400 -@@ -44,6 +44,7 @@ - #include "alloc-inl.h" - #include "string-inl.h" - #include "database.h" -+#include "config.h" - - #include "http_client.h" - diff --git a/security/skipfish/files/pkg-message.in b/security/skipfish/files/pkg-message.in deleted file mode 100644 index 2e23952ede11..000000000000 --- a/security/skipfish/files/pkg-message.in +++ /dev/null @@ -1,12 +0,0 @@ - -****************************************************************** -The FreeBSD port is configured to use the "default" dictionary but -it is highly recommended to review the other dictionaries and make -a selection appropriate for your environment. - -The skipfish dictionaries have been installed in the following -directory: - -%%DATADIR%%/dictionaries/ -****************************************************************** - diff --git a/security/skipfish/pkg-descr b/security/skipfish/pkg-descr deleted file mode 100644 index 28907e549bf6..000000000000 --- a/security/skipfish/pkg-descr +++ /dev/null @@ -1,16 +0,0 @@ -A fully automated, active web application security reconnaissance -tool. Key features: - -* High speed: pure C code, highly optimized HTTP handling, minimal - CPU footprint - easily achieving 2000 requests per second with - responsive targets. - -* Ease of use: heuristics to support a variety of quirky web - frameworks and mixed-technology sites, with automatic learning - capabilities, on-the-fly wordlist creation, and form autocompletion. - -* Cutting-edge security logic: high quality, low false positive, - differential security checks, capable of spotting a range of subtle - flaws, including blind injection vectors. - -WWW: http://code.google.com/p/skipfish diff --git a/security/skipfish/pkg-plist b/security/skipfish/pkg-plist deleted file mode 100644 index cd8cad4f1659..000000000000 --- a/security/skipfish/pkg-plist +++ /dev/null @@ -1,31 +0,0 @@ -bin/skipfish -bin/sfscandiff -%%DATADIR%%/assets/COPYING -%%DATADIR%%/assets/i_high.png -%%DATADIR%%/assets/i_low.png -%%DATADIR%%/assets/i_medium.png -%%DATADIR%%/assets/i_note.png -%%DATADIR%%/assets/i_warn.png -%%DATADIR%%/assets/index.html -%%DATADIR%%/assets/mime_entry.png -%%DATADIR%%/assets/n_children.png -%%DATADIR%%/assets/n_clone.png -%%DATADIR%%/assets/n_collapsed.png -%%DATADIR%%/assets/n_expanded.png -%%DATADIR%%/assets/n_failed.png -%%DATADIR%%/assets/n_maybe_missing.png -%%DATADIR%%/assets/n_missing.png -%%DATADIR%%/assets/n_unlinked.png -%%DATADIR%%/assets/p_dir.png -%%DATADIR%%/assets/p_file.png -%%DATADIR%%/assets/p_param.png -%%DATADIR%%/assets/p_pinfo.png -%%DATADIR%%/assets/p_serv.png -%%DATADIR%%/assets/p_unknown.png -%%DATADIR%%/assets/p_value.png -%%DATADIR%%/assets/sf_name.png -%%DATADIR%%/dictionaries/complete.wl -%%DATADIR%%/dictionaries/medium.wl -%%DATADIR%%/dictionaries/extensions-only.wl -%%DATADIR%%/dictionaries/minimal.wl -man/man1/skipfish.1.gz |