diff options
author | max <max@FreeBSD.org> | 1997-01-07 12:20:48 +0000 |
---|---|---|
committer | max <max@FreeBSD.org> | 1997-01-07 12:20:48 +0000 |
commit | 0d11fa149cb2b66a04a038a6b43d9188584e0ae8 (patch) | |
tree | d5536a4facc258290e687675b2dc45c9eb283ed2 /security | |
parent | 4c67816976abded54f9fcd36f637ad80fa5a577c (diff) | |
download | FreeBSD-ports-0d11fa149cb2b66a04a038a6b43d9188584e0ae8.zip FreeBSD-ports-0d11fa149cb2b66a04a038a6b43d9188584e0ae8.tar.gz |
New port, strobe:
strobe is a network/security tool that locates and
describes all listening tcp ports on a (remote) host or on
many hosts in a bandwidth utilisation maximising, and pro-
cess resource minimizing manner.
strobe approximates a parallel finite state machine inter-
nally. In non-linear multi-host mode it attempts to appor-
tion bandwidth and sockets amoung the hosts very effi-
ciently. This can reap appreciable gains in speed for
multiple distinct hosts/routes.
Submitted by: proff@suburbia.net (Julian Assange)
Reviewed & Modified by: max
(Closing PR #1663.)
Diffstat (limited to 'security')
-rw-r--r-- | security/strobe/Makefile | 19 | ||||
-rw-r--r-- | security/strobe/distinfo | 1 | ||||
-rw-r--r-- | security/strobe/files/patch-aa | 33 | ||||
-rw-r--r-- | security/strobe/pkg-comment | 1 | ||||
-rw-r--r-- | security/strobe/pkg-descr | 10 | ||||
-rw-r--r-- | security/strobe/pkg-plist | 3 |
6 files changed, 67 insertions, 0 deletions
diff --git a/security/strobe/Makefile b/security/strobe/Makefile new file mode 100644 index 0000000..74e98f8 --- /dev/null +++ b/security/strobe/Makefile @@ -0,0 +1,19 @@ +# New ports collection makefile for: strobe +# Version required: 1.03 +# Date created: 23 Sep 1996 +# Whom: proff +# +# $Id: Makefile,v 1.14 1996/08/16 18:30:56 peter Exp $ +# + +DISTNAME= strobe-1.03 +CATEGORIES= net security +MASTER_SITES= ftp://suburbia.net/pub/proff/original/strobe/ + +MAINTAINER= proff@suburbia.net + +WRKSRC= ${WRKDIR}/strobe +ALL_TARGET= strobe +MAN1= strobe.1 + +.include <bsd.port.mk> diff --git a/security/strobe/distinfo b/security/strobe/distinfo new file mode 100644 index 0000000..f9a6346 --- /dev/null +++ b/security/strobe/distinfo @@ -0,0 +1 @@ +MD5 (strobe-1.03.tar.gz) = b5633585b27db82a50651b752e0fd203 diff --git a/security/strobe/files/patch-aa b/security/strobe/files/patch-aa new file mode 100644 index 0000000..7ad03f5 --- /dev/null +++ b/security/strobe/files/patch-aa @@ -0,0 +1,33 @@ +--- Makefile.orig Mon Nov 27 18:39:11 1995 ++++ Makefile Tue Jan 7 20:02:22 1997 +@@ -3,9 +3,10 @@ + + # Modify the below to suit your filesystem + +-INSTALLDIR=/usr/local/bin +-LIBDIR=/usr/local/lib +-MANDIR=/usr/local/man/man1 ++PREFIX?=/usr/local ++INSTALLDIR=${PREFIX}/bin ++LIBDIR=${PREFIX}/lib ++MANDIR=${PREFIX}/man/man1 + + #CC=cc + CC=gcc +@@ -40,13 +41,13 @@ + $(MAN): + $(INSTALLDIR)/$(BIN): $(BIN) + -rm -f $(INSTALLDIR)/$(BIN) +- install -m 755 -s $(BIN) $(INSTALLDIR)/$(BIN) ++ install -c -o bin -g bin -m 755 -s $(BIN) $(INSTALLDIR)/$(BIN) + $(LIBDIR)/$(DATA): $(DATA) + -rm -f $(LIBDIR)/$(DATA) +- install -m 644 $(DATA) $(LIBDIR)/$(DATA) ++ install -c -o bin -g bin -m 644 $(DATA) $(LIBDIR)/$(DATA) + $(MANDIR)/$(MAN): $(MAN) + -rm -f $(MANDIR)/$(MAN) +- install -m 644 $(MAN) $(MANDIR)/$(MAN) ++ install -c -o bin -g bin -m 644 $(MAN) $(MANDIR)/$(MAN) + install: $(INSTALLDIR)/$(BIN) $(LIBDIR)/$(DATA) $(MANDIR)/$(MAN) + strobe.man : $(MAN) + nroff -man -Tascii $(MAN) > strobe.man diff --git a/security/strobe/pkg-comment b/security/strobe/pkg-comment new file mode 100644 index 0000000..2e87b16 --- /dev/null +++ b/security/strobe/pkg-comment @@ -0,0 +1 @@ +Fast scatter/gather TCP port scanner diff --git a/security/strobe/pkg-descr b/security/strobe/pkg-descr new file mode 100644 index 0000000..e90e8cc --- /dev/null +++ b/security/strobe/pkg-descr @@ -0,0 +1,10 @@ +strobe is a network/security tool that locates and +describes all listening tcp ports on a (remote) host or on +many hosts in a bandwidth utilisation maximising, and pro- +cess resource minimizing manner. + +strobe approximates a parallel finite state machine inter- +nally. In non-linear multi-host mode it attempts to appor- +tion bandwidth and sockets amoung the hosts very effi- +ciently. This can reap appreciable gains in speed for +multiple distinct hosts/routes. diff --git a/security/strobe/pkg-plist b/security/strobe/pkg-plist new file mode 100644 index 0000000..30a519d --- /dev/null +++ b/security/strobe/pkg-plist @@ -0,0 +1,3 @@ +bin/strobe +lib/strobe.services +man/man1/strobe.1.gz |