mirror of
https://git.FreeBSD.org/ports.git
synced 2024-11-05 22:43:24 +00:00
e3e5569e35
Among bug fixes, we have the new skript kiddie output mode! Try it out by adding "-oS - " to your nmap command line: amy# nmap -sS -oS - -O -v vectra $TartInG nmap V. 2.3B3tA14 bY fy0D0r@!n$ecure.org ( www.ins3cuR3.0Rg/nmap/) !nt3r3$t|nG pOrtz On v3cTrA.yuma.nEt (192.168.0.5): P0rt $tate PrOtOc0L $3rv!c3 13 Op3n tCp Dayt|m3 22 0pEn Tcp $SH 23 open tcp tEln3t 79 op3N tcp f!ng3r 513 0peN Tcp lOgIn 514 OpEn tcp $h3ll TcP S3QuEncE PReDiCtion: ClA$s=random p0$|TivE incr3m3nts DIffIculty=24696 (WorthY Challeng3) s3quEnce numb3rz: 61B825b7 61b83793 61B88114 61b8B073 61B90DB2 61BA306B R3m0t3 operAtInG sy$t3m gue$z: OpeNBSD 2.2 - 2.3 NMAP run c0mpleteD -- 1 IP adDR3ss (1 h0sT up) $CAnNed in 1 SEC0nd
35 lines
699 B
Makefile
35 lines
699 B
Makefile
# ex:ts=8
|
|
# Ports collection makefile for: nmap
|
|
# Version required: 1.51
|
|
# Date created: Tue Aug 04, 1998
|
|
# Whom: David O'Brien (obrien@NUXI.com)
|
|
#
|
|
# $FreeBSD$
|
|
#
|
|
|
|
DISTNAME= nmap-2.3BETA14
|
|
PKGNAME= nmap-2.3b14
|
|
CATEGORIES= security net
|
|
MASTER_SITES= http://www.insecure.org/nmap/dist/ \
|
|
ftp://relay.nuxi.com/pub/misc/
|
|
EXTRACT_SUFX= .tgz
|
|
|
|
MAINTAINER= obrien@FreeBSD.org
|
|
|
|
.include <bsd.port.pre.mk>
|
|
|
|
GNU_CONFIGURE= yes
|
|
CONFIGURE_ARGS= --libdir=${PREFIX}/share/misc
|
|
.if ${OSVERSION} < 300004
|
|
CFLAGS+= -DDLT_RAW=12 # for obsoleted <net/bpf.h>
|
|
.endif
|
|
MAN1= nmap.1
|
|
|
|
post-extract:
|
|
@${RM} -rf ${WRKSRC}/libpcap*
|
|
|
|
post-install:
|
|
@strip ${PREFIX}/bin/nmap
|
|
|
|
.include <bsd.port.post.mk>
|