summaryrefslogtreecommitdiff
path: root/security
diff options
context:
space:
mode:
authorAndrej Zverev <az@FreeBSD.org>2005-11-15 08:35:35 +0000
committerAndrej Zverev <az@FreeBSD.org>2005-11-15 08:35:35 +0000
commit104ed9ad1c5d108b688370f2f4e7ad930914f0a0 (patch)
treeed4f94571a46e32af00d98ee5b7df481a8bbcd1d /security
parentUpdate to 2.09. Change maintainer to perl@. Remove copyright notice (diff)
- Move securiy/hping -> net/hping
Notes
Notes: svn path=/head/; revision=148336
Diffstat (limited to 'security')
-rw-r--r--security/Makefile1
-rw-r--r--security/hping/Makefile39
-rw-r--r--security/hping/distinfo2
-rw-r--r--security/hping/files/patch-Makefile.in33
-rw-r--r--security/hping/files/patch-bytesex.h18
-rw-r--r--security/hping/files/patch-configure10
-rw-r--r--security/hping/pkg-descr23
7 files changed, 0 insertions, 126 deletions
diff --git a/security/Makefile b/security/Makefile
index 61187b7f2e34..dfefc99ac5c1 100644
--- a/security/Makefile
+++ b/security/Makefile
@@ -152,7 +152,6 @@
SUBDIR += hmap
SUBDIR += hostapd
SUBDIR += hostsentry
- SUBDIR += hping
SUBDIR += hpn-ssh
SUBDIR += hunch
SUBDIR += hydra
diff --git a/security/hping/Makefile b/security/hping/Makefile
deleted file mode 100644
index 182fd071ae95..000000000000
--- a/security/hping/Makefile
+++ /dev/null
@@ -1,39 +0,0 @@
-# New ports collection makefile for: hping
-# Date Created: 5 Oct 2000
-# Whom: Roman Shterenzon <roman@xpert.com>
-#
-# $FreeBSD$
-#
-
-PORTNAME= hping
-PORTVERSION= 2.0.0r3
-PORTEPOCH= 1
-CATEGORIES= security net
-MASTER_SITES= http://www.hping.org/
-DISTNAME= hping2.0.0-rc3
-
-MAINTAINER= ecu@ipv42.net
-COMMENT= Network auditing tool
-
-WRKSRC= ${WRKDIR}/hping2-rc3
-GNU_CONFIGURE= yes
-CONFIGURE_ARGS+= --force-libpcap
-USE_GMAKE= yes
-
-PLIST_FILES= sbin/hping
-PORTDOCS= AS-BACKDOOR HPING2-HOWTO.txt HPING2-IS-OPEN \
- MORE-FUN-WITH-IPID SPOOFED_SCAN.txt APD.txt
-
-MAN8= hping.8
-
-do-install:
- ${INSTALL_PROGRAM} ${WRKSRC}/hping2 ${PREFIX}/sbin/hping
- ${INSTALL_MAN} ${WRKSRC}/docs/hping2.8 ${PREFIX}/man/man8/hping.8
-.if !defined(NOPORTDOCS)
- ${MKDIR} ${DOCSDIR}
-.for i in ${PORTDOCS}
- ${INSTALL_DATA} ${WRKSRC}/docs/${i} ${DOCSDIR}/
-.endfor
-.endif
-
-.include <bsd.port.mk>
diff --git a/security/hping/distinfo b/security/hping/distinfo
deleted file mode 100644
index 4af755068086..000000000000
--- a/security/hping/distinfo
+++ /dev/null
@@ -1,2 +0,0 @@
-MD5 (hping2.0.0-rc3.tar.gz) = 029bf240f2e0545b664b2f8b9118d9e8
-SIZE (hping2.0.0-rc3.tar.gz) = 124573
diff --git a/security/hping/files/patch-Makefile.in b/security/hping/files/patch-Makefile.in
deleted file mode 100644
index da0dfa76aff1..000000000000
--- a/security/hping/files/patch-Makefile.in
+++ /dev/null
@@ -1,33 +0,0 @@
---- Makefile.in.orig Mon May 3 11:29:39 2004
-+++ Makefile.in Wed May 19 11:23:43 2004
-@@ -6,10 +6,10 @@
- # $date: Sun Jul 25 17:56:15 MET DST 1999$
- # $rev: 3$
-
--CC= gcc
-+CC?= gcc
- AR=/usr/bin/ar
- RANLIB=/usr/bin/ranlib
--CCOPT= -O2 -Wall @PCAP_INCLUDE@
-+CCOPT= -Wall @CFLAGS@ @PCAP_INCLUDE@
- DEBUG= -g
- #uncomment the following if you need libpcap based build under linux
- #(not raccomanded)
-@@ -43,7 +43,7 @@
- $(RANLIB) $@
-
- hping2: byteorder.h $(OBJ)
-- $(CC) -o hping2 $(CCOPT) $(DEBUG) $(OBJ) $(PCAP) @SOLARISLIB@
-+ $(CC) -o hping2 $(CCOPT) $(OBJ) $(PCAP) @SOLARISLIB@
- @echo
- ./hping2 -v
- @echo "use \`make strip' to strip hping2 binary"
-@@ -53,7 +53,7 @@
- ./configure
-
- .c.o:
-- $(CC) -c $(CCOPT) $(DEBUG) $(COMPILE_TIME) $<
-+ $(CC) -c $(CCOPT) $(COMPILE_TIME) $<
-
- clean:
- rm -rf hping2 *.o *.a
diff --git a/security/hping/files/patch-bytesex.h b/security/hping/files/patch-bytesex.h
deleted file mode 100644
index 65ecdcd74020..000000000000
--- a/security/hping/files/patch-bytesex.h
+++ /dev/null
@@ -1,18 +0,0 @@
-
-$FreeBSD$
-
---- bytesex.h.orig Tue Sep 14 15:22:45 2004
-+++ bytesex.h Tue Sep 14 15:21:50 2004
-@@ -8,10 +8,12 @@
- #define ARS_BYTESEX_H
-
- #if defined(__i386__) \
-+ || defined(__ia64__) \
- || defined(__alpha__) \
- || (defined(__mips__) && (defined(MIPSEL) || defined (__MIPSEL__)))
- #define BYTE_ORDER_LITTLE_ENDIAN
- #elif defined(__mc68000__) \
-+ || defined (__amd64__) \
- || defined (__sparc__) \
- || defined (__sparc) \
- || defined (__PPC__) \
diff --git a/security/hping/files/patch-configure b/security/hping/files/patch-configure
deleted file mode 100644
index b7dda57f7370..000000000000
--- a/security/hping/files/patch-configure
+++ /dev/null
@@ -1,10 +0,0 @@
---- configure.orig Fri Sep 14 22:04:25 2001
-+++ configure Fri Sep 14 22:05:02 2001
-@@ -99,6 +99,7 @@
- -e "s^@PCAP_INCLUDE@^$PCAP_INCLUDE^g" \
- -e "s^@MANPATH@^$INSTALL_MANPATH^g" \
- -e "s^@SOLARISLIB@^$SOLARISLIB^g" \
-+ -e "s^@CFLAGS@^$CFLAGS^g" \
- <Makefile.in > Makefile
-
- #
diff --git a/security/hping/pkg-descr b/security/hping/pkg-descr
deleted file mode 100644
index d62dcd7dddbf..000000000000
--- a/security/hping/pkg-descr
+++ /dev/null
@@ -1,23 +0,0 @@
-hping is a command-line oriented TCP/IP packet assembler/analyzer.
-The interface is inspired to the ping(8) unix command, but hping isn't
-only able to send ICMP echo requests. It supports TCP, UDP, ICMP and
-RAW-IP protocols, has a traceroute mode, the ability to send files
-between a covered channel, and many other features.
-While hping was mainly used as a security tool in the past, it can be
-used in many ways by people that don't care about security to test
-networks and hosts. A subset of the stuff you can do using hping:
-
- - Test firewall rules
- - [spoofed] port scanning
- - Test net performance using different protocols,
- packet size, TOS (type of service) and fragmentation.
- - Path MTU discovery
- - Files transfering even between really fascist firewall rules.
- - Traceroute like under different protocols.
- - Firewalk like usage.
- - Remote OS fingerprint.
- - TCP/IP stack auditing.
-
-WWW: http://www.hping.org/
-
--- Nicolas Jombart <ecu@ipv42.net>