Some of the highlights are: o [NSE] Added more scripts, bringing the total to 131! o Performed a major OS detection integration run. o Performed a large version detection integration run. o [Zenmap] Added the ability to print Nmap output to a printer. o [Nmap, Ncat, Nping] The default unit for time specifications is now seconds, not milliseconds, and times may have a decimal point. o Ports are now considered open during a SYN scan if a SYN packet (without the ACK flag) is received in response. o [Ncat] In listen mode, the --exec and --sh-exec options now accept a single connection and then exit, just like in normal listen mode. o UDP payloads are now stored in an external data file, nmap-payloads, instead of being hard-coded in the executable. o Added a new library, libnetutil, which contains about 2,700 lines of networking related code which is now shared between Nmap and Nping o Improved service detection match lines. o Improved our brute force password guessing list by mixing in some data sent in by Solar Designer of John the Ripper fame. o [Zenmap] IP addresses are now sorted by octet rather than their string representation. o [Ncat] When receiving a connection/datagram in listen mode, Ncat now prints the connecting source port along with the IP address. o Added EPROTO to the list of known error codes in service scan. o Updated IANA IP address space assignment list for random IP (-iR) generation. o Zenmap's "slow comprehensive scan profile" has been modified to use the best 7-probe host discovery combination we were able to find in extensive empirical testing o Zenmap now lets you save scan results in normal Nmap text output format or (as before) as XML. o [NSE] Raw packet sending at the IP layer is now supported, in addition to the existing Ethernet sending functionality. o Nmap now honors routing table entries that override interface addresses and netmasks. o [Ncat] The HTTP proxy server now accepts client connections over SSL, and added support for HTTP digest authentication of proxies, as both client and server. o Improved the MIT Kerberos version detection signatures. Plus many bugfixes and improvements. For full changelog, see http://nmap.org/changelog.html
72 lines
1.9 KiB
Makefile
72 lines
1.9 KiB
Makefile
# $NetBSD: Makefile,v 1.72 2010/07/22 20:46:29 pettai Exp $
|
|
#
|
|
|
|
DISTNAME= nmap-5.35DC1
|
|
PKGNAME= nmap-5.35dc1
|
|
CATEGORIES= net security
|
|
MASTER_SITES= http://nmap.org/dist/
|
|
EXTRACT_SUFX= .tar.bz2
|
|
|
|
MAINTAINER= pettai@NetBSD.org
|
|
HOMEPAGE= http://insecure.org/nmap/
|
|
COMMENT= Network/port scanner with OS detection
|
|
LICENSE= gnu-gpl-v2
|
|
|
|
PKG_INSTALLATION_TYPES= overwrite pkgviews
|
|
PKG_DESTDIR_SUPPORT= user-destdir
|
|
|
|
BUILDLINK_API_DEPENDS.libpcap= libpcap>=1.0.0
|
|
BUILDLINK_API_DEPENDS.libpcre= libpcre>=7.6
|
|
|
|
GNU_CONFIGURE= yes
|
|
|
|
USE_LANGUAGES= c c++
|
|
USE_LIBTOOL= yes
|
|
USE_TOOLS+= gmake
|
|
PLIST_SRC= ${WRKDIR}/.PLIST_SRC
|
|
|
|
BUILD_DEFS+= IPV6_READY
|
|
|
|
.include "options.mk"
|
|
|
|
CHECK_INTERPRETER_SKIP+= share/zenmap/su-to-zenmap.sh
|
|
|
|
CONFIGURE_ARGS+= --with-libpcap=${BUILDLINK_PREFIX.libpcap}
|
|
CONFIGURE_ARGS+= --with-libpcre=${BUILDLINK_PREFIX.pcre}
|
|
CONFIGURE_ARGS+= --with-openssl=${BUILDLINK_PREFIX.openssl}
|
|
|
|
.include "../../mk/bsd.prefs.mk"
|
|
|
|
.if ${OPSYS} == "SunOS" || ${OPSYS} == "Linux"
|
|
MAKE_ENV+= CPPFLAGS=""
|
|
.endif
|
|
|
|
# The SunPro C++ compiler does not understand __FUNCTION__, as well as
|
|
# __func__. So __FILE__ is the nearest replacement.
|
|
.include "../../mk/compiler.mk"
|
|
.if !empty(PKGSRC_COMPILER:Msunpro)
|
|
CFLAGS.SunOS+= -D__FUNCTION__=__FILE__
|
|
.endif
|
|
|
|
.if empty(PKGSRC_COMPILER:Mgcc)
|
|
# The Makefile uses a hard-coded option -MM to get the dependencies, which
|
|
# is only understood by the GNU compiler. For a normal build the dependen-
|
|
# cies are not needed anyway, only when patching files and fixing bugs.
|
|
pre-build:
|
|
${ECHO} "# ignored" > ${WRKSRC}/makefile.dep
|
|
.endif
|
|
|
|
SUBST_CLASSES+= paths
|
|
SUBST_STAGE.paths= post-patch
|
|
SUBST_FILES.paths= ndiff/setup.py
|
|
SUBST_SED.paths= -e "s|@@PKGMANDIR@@|${PKGMANDIR}|g"
|
|
SUBST_MESSAGE.paths= Fixing paths.
|
|
|
|
post-build:
|
|
${CP} ${PKGDIR}/PLIST ${WRKDIR}/.PLIST_SRC
|
|
|
|
.include "../../devel/pcre/buildlink3.mk"
|
|
.include "../../net/libpcap/buildlink3.mk"
|
|
.include "../../security/openssl/buildlink3.mk"
|
|
|
|
.include "../../mk/bsd.pkg.mk"
|