b52510d219
Passive OS fingerprinting technique based on information coming from remote host when it establishes connection to our system. Captured packets contains enough information to determine OS - and, unlike active scanners (nmap, queSO) - without sending anything to this host.
33 lines
900 B
Makefile
33 lines
900 B
Makefile
# $OpenBSD: Makefile,v 1.1.1.1 2001/10/29 03:20:38 jcs Exp $
|
|
# $NetBSD: Makefile,v 1.1.1.2 2001/03/26 11:59:15 hubertf Exp $
|
|
|
|
COMMENT= passive OS fingerprinting tool
|
|
|
|
DISTNAME= p0f
|
|
PKGNAME= p0f-1.7
|
|
CATEGORIES= security
|
|
NEED_VERSION= 1.363
|
|
|
|
HOMEPAGE= http://lcamtuf.coredump.cx/
|
|
|
|
MAINTAINER= Jose Nazario <jose@crimelabs.net>
|
|
|
|
PERMIT_PACKAGE_CDROM= Yes
|
|
PERMIT_PACKAGE_FTP= Yes
|
|
PERMIT_DISTFILES_CDROM= Yes
|
|
PERMIT_DISTFILES_FTP= Yes
|
|
|
|
MASTER_SITES= http://lcamtuf.coredump.cx/soft/
|
|
EXTRACT_SUFX= .tgz
|
|
|
|
MAKE_FLAGS= CFLAGS='${CFLAGS} -DSYSCONFDIR="\"${SYSCONFDIR}\""'
|
|
|
|
do-install:
|
|
${INSTALL_PROGRAM} ${WRKSRC}/p0f ${PREFIX}/bin/p0f
|
|
${INSTALL_DATA_DIR} ${PREFIX}/share/doc/p0f
|
|
${INSTALL_DATA_DIR} ${PREFIX}/share/examples/p0f
|
|
${INSTALL_DATA} ${WRKSRC}/README ${PREFIX}/share/doc/p0f/README
|
|
${INSTALL_DATA} ${WRKSRC}/p0f.fp ${PREFIX}/share/examples/p0f/p0f.fp
|
|
|
|
.include <bsd.port.mk>
|