1
0
mirror of https://git.FreeBSD.org/ports.git synced 2024-10-20 20:09:11 +00:00

Net_Nmap is a simple interface for Nmap, the

free and open source utility for network
exploration or security auditing.

Net_Nmap can be used to auto discovery hosts
and services in your network or simply to
parse Nmap XML output.

WWW: http://pear.php.net/package/Net_Nmap/

PR:		ports/128059
Submitted by:	Wen Heping<wenheping at gmail.com>
This commit is contained in:
Martin Wilke 2008-10-15 16:02:32 +00:00
parent e4c542c725
commit 500f132b54
Notes: svn2git 2021-03-31 03:12:20 +00:00
svn path=/head/; revision=221623
4 changed files with 47 additions and 0 deletions

View File

@ -665,6 +665,7 @@
SUBDIR += pear-Net_LDAP2
SUBDIR += pear-Net_MAC
SUBDIR += pear-Net_NNTP
SUBDIR += pear-Net_Nmap
SUBDIR += pear-Net_POP3
SUBDIR += pear-Net_Ping
SUBDIR += pear-Net_SMS

View File

@ -0,0 +1,34 @@
# Ports collection makefile for: pear-Net_Nmap
# Date created: 13 Oct 2008
# Whom: Wen Heping<wenheping@gmail.com>
#
# $FreeBSD$
#
PORTNAME= Net_Nmap
PORTVERSION= 1.0.0
CATEGORIES= net pear
MAINTAINER= wenheping@gmail.com
COMMENT= A Simple Wrapper Class for the Nmap Utility
BUILD_DEPENDS= ${PEARDIR}/XML/Parser.php:${PORTSDIR}/devel/pear-XML_Parser
RUN_DEPENDS= ${BUILD_DEPENDS}
CATEGORY= Net
FILES= Nmap.php \
Nmap/Exception.php Nmap/Host.php \
Nmap/Parser.php Nmap/Service.php
EXAMPLES= example1.php example2.php example2.xml
TESTS= NetNmapParseTest.php \
NetNmapParseTest.xml \
NetNmapScanTest.php \
test_config.php
DOCS= LICENSE README
.include <bsd.port.pre.mk>
.include "${PORTSDIR}/devel/pear/bsd.pear.mk"
.include <bsd.port.post.mk>

View File

@ -0,0 +1,3 @@
MD5 (PEAR/Net_Nmap-1.0.0.tgz) = 4773850a9d92924fb38e6eb51e83df65
SHA256 (PEAR/Net_Nmap-1.0.0.tgz) = 77220d4ebca7e2e414b8bb72f4ec4ebe4fc043e7fb7fae2d2ad135412e943a6b
SIZE (PEAR/Net_Nmap-1.0.0.tgz) = 19450

View File

@ -0,0 +1,9 @@
Net_Nmap is a simple interface for Nmap, the
free and open source utility for network
exploration or security auditing.
Net_Nmap can be used to auto discovery hosts
and services in your network or simply to
parse Nmap XML output.
WWW: http://pear.php.net/package/Net_Nmap/