diff options
author | edwin <edwin@FreeBSD.org> | 2003-04-01 10:41:34 +0800 |
---|---|---|
committer | edwin <edwin@FreeBSD.org> | 2003-04-01 10:41:34 +0800 |
commit | 5fce2e74c5bc0b3a33c6b315422b8734955029f4 (patch) | |
tree | e665ace577fc770eb6366ee2422fc2301770322a /security | |
parent | 5303a7c4568424b4afa87883289e18a886a01e76 (diff) | |
download | freebsd-ports-gnome-5fce2e74c5bc0b3a33c6b315422b8734955029f4.tar.gz freebsd-ports-gnome-5fce2e74c5bc0b3a33c6b315422b8734955029f4.tar.zst freebsd-ports-gnome-5fce2e74c5bc0b3a33c6b315422b8734955029f4.zip |
security/ftpmap: Identify remote FTP server software by fingerprinting
Ftpmap scans remote FTP servers to indentify what software
and what versions they are running. It uses program-specific
fingerprints to discover the name of the software even when
banners have been changed or removed, or when some features
have been disabled. IPv6 is fully supported.
PR: ports/48899
Submitted by: Sergei Kolobov <sergei@kolobov.com>
Diffstat (limited to 'security')
-rw-r--r-- | security/Makefile | 1 | ||||
-rw-r--r-- | security/ftpmap/Makefile | 26 | ||||
-rw-r--r-- | security/ftpmap/distinfo | 1 | ||||
-rw-r--r-- | security/ftpmap/pkg-descr | 7 | ||||
-rw-r--r-- | security/ftpmap/pkg-plist | 6 |
5 files changed, 41 insertions, 0 deletions
diff --git a/security/Makefile b/security/Makefile index d7d3ad8242d8..cdc81133684c 100644 --- a/security/Makefile +++ b/security/Makefile @@ -62,6 +62,7 @@ SUBDIR += fragrouter SUBDIR += fressh SUBDIR += fsh + SUBDIR += ftpmap SUBDIR += fuzz SUBDIR += fwanalog SUBDIR += fwbuilder diff --git a/security/ftpmap/Makefile b/security/ftpmap/Makefile new file mode 100644 index 000000000000..26c565625328 --- /dev/null +++ b/security/ftpmap/Makefile @@ -0,0 +1,26 @@ +# New ports collection makefile for: ftpmap +# Date created: 01 Nov 2002 +# Whom: Sergei Kolobov <sergei@kolobov.com> +# +# $FreeBSD$ +# + +PORTNAME= ftpmap +PORTVERSION= 0.4 +CATEGORIES= security ftp +MASTER_SITES= ftp://ftp.pureftpd.org/pub/pure-ftpd/ftpmap/ + +MAINTAINER= sergei@kolobov.com +COMMENT= Identify remote FTP server software by fingerprinting + +GNU_CONFIGURE= yes + +DOCS= AUTHORS NEWS README THANKS + +.if !defined(NOPORTDOCS) +post-install: + @${MKDIR} ${DOCSDIR} + cd ${WRKSRC} && ${INSTALL_DATA} ${DOCS} ${DOCSDIR} +.endif + +.include <bsd.port.mk> diff --git a/security/ftpmap/distinfo b/security/ftpmap/distinfo new file mode 100644 index 000000000000..1571667c4dcf --- /dev/null +++ b/security/ftpmap/distinfo @@ -0,0 +1 @@ +MD5 (ftpmap-0.4.tar.gz) = 5095c0712e4a906dae75f082acbabffb diff --git a/security/ftpmap/pkg-descr b/security/ftpmap/pkg-descr new file mode 100644 index 000000000000..8cb7af42dcb8 --- /dev/null +++ b/security/ftpmap/pkg-descr @@ -0,0 +1,7 @@ +Ftpmap scans remote FTP servers to indentify what software and what versions +they are running. It uses program-specific fingerprints to discover the name +of the software even when banners have been changed or removed, or when some +features have been disabled. IPv6 is fully supported. + +Author: Frank DENIS <j@4u.net> +WWW: http://www.jedi.claranet.fr/ diff --git a/security/ftpmap/pkg-plist b/security/ftpmap/pkg-plist new file mode 100644 index 000000000000..06946609221f --- /dev/null +++ b/security/ftpmap/pkg-plist @@ -0,0 +1,6 @@ +bin/ftpmap +%%PORTDOCS%%%%DOCSDIR%%/AUTHORS +%%PORTDOCS%%%%DOCSDIR%%/NEWS +%%PORTDOCS%%%%DOCSDIR%%/README +%%PORTDOCS%%%%DOCSDIR%%/THANKS +%%PORTDOCS%%@dirrm %%DOCSDIR%% |