diff options
author | nobutaka <nobutaka@FreeBSD.org> | 2006-01-04 03:25:23 +0800 |
---|---|---|
committer | nobutaka <nobutaka@FreeBSD.org> | 2006-01-04 03:25:23 +0800 |
commit | 945e1ccc9280364f106e95bdb1b23e56855c4fb7 (patch) | |
tree | b3c320b5c03e70b8702ca0b39f745ef6e3b9dbc5 | |
parent | a8fa81f99f8eda2f89b425f0d16dfcf6f5347d35 (diff) | |
download | freebsd-ports-gnome-945e1ccc9280364f106e95bdb1b23e56855c4fb7.tar.gz freebsd-ports-gnome-945e1ccc9280364f106e95bdb1b23e56855c4fb7.tar.zst freebsd-ports-gnome-945e1ccc9280364f106e95bdb1b23e56855c4fb7.zip |
Add tcpxtract. A tool for extracting files from network traffic.
-rw-r--r-- | net/Makefile | 1 | ||||
-rw-r--r-- | net/tcpxtract/Makefile | 23 | ||||
-rw-r--r-- | net/tcpxtract/distinfo | 3 | ||||
-rw-r--r-- | net/tcpxtract/pkg-descr | 6 |
4 files changed, 33 insertions, 0 deletions
diff --git a/net/Makefile b/net/Makefile index 75f90d50ed44..c71c63774d0c 100644 --- a/net/Makefile +++ b/net/Makefile @@ -757,6 +757,7 @@ SUBDIR += tcptraceroute SUBDIR += tcpview SUBDIR += tcpwatch + SUBDIR += tcpxtract SUBDIR += tdetect SUBDIR += telnetx SUBDIR += telserv diff --git a/net/tcpxtract/Makefile b/net/tcpxtract/Makefile new file mode 100644 index 000000000000..bf9f76985e0f --- /dev/null +++ b/net/tcpxtract/Makefile @@ -0,0 +1,23 @@ +# New ports collection makefile for: tcpxtract +# Date created: 3 January 2006 +# Whom: MANTANI Nobutaka <nobutaka@freebsd.org> +# +# $FreeBSD$ +# + +PORTNAME= tcpxtract +PORTVERSION= 1.0.1 +CATEGORIES= net +MASTER_SITES= ${MASTER_SITE_SOURCEFORGE} +MASTER_SITE_SUBDIR= ${PORTNAME} + +MAINTAINER= nobutaka@freebsd.org +COMMENT= A tool for extracting files from network traffic + +USE_GETOPT_LONG=yes +GNU_CONFIGURE= yes +MAN1= tcpxtract.1 + +PLIST_FILES= bin/tcpxtract etc/tcpxtract.conf + +.include <bsd.port.mk> diff --git a/net/tcpxtract/distinfo b/net/tcpxtract/distinfo new file mode 100644 index 000000000000..32a3dc48e1de --- /dev/null +++ b/net/tcpxtract/distinfo @@ -0,0 +1,3 @@ +MD5 (tcpxtract-1.0.1.tar.gz) = 1d8fe172d4590c33a157798e08dc0ccd +SHA256 (tcpxtract-1.0.1.tar.gz) = 613aa6be39772b236d89c5ef377c27b10ac44d1c34731105599283862dfc05be +SIZE (tcpxtract-1.0.1.tar.gz) = 127102 diff --git a/net/tcpxtract/pkg-descr b/net/tcpxtract/pkg-descr new file mode 100644 index 000000000000..43e55ff1ff75 --- /dev/null +++ b/net/tcpxtract/pkg-descr @@ -0,0 +1,6 @@ +tcpxtract is a tool for extracting files from network traffic based on file +signatures. It supports 26 file formats and you can add new format by editing +its config file. You can extract files from live network or pcap format capture +file. + +WWW: http://tcpxtract.sourceforge.net/ |