0ab214306d
arp-scan is a command-line tool for system discovery and fingerprinting. It constructs and sends ARP requests to the specified IP addresses, and displays any responses that are received. arp-scan allows you to: * Send ARP packets to any number of destination hosts, using a configurable output bandwidth or packet rate. This is useful for system discovery, where you may need to scan large address spaces. * Construct the outgoing ARP packet in a flexible way. arp-scan gives control of all of the fields in the ARP packet and the fields in the Ethernet frame header. * Decode and display any returned packets. arp-scan will decode and display any received ARP packets and lookup the vendor using the MAC address. * Fingerprint IP hosts using the arp-fingerprint tool. ok phessler@
23 lines
477 B
Makefile
23 lines
477 B
Makefile
# $OpenBSD: Makefile,v 1.1.1.1 2008/10/07 10:01:41 sthen Exp $
|
|
|
|
COMMENT = ARP scanning and fingerprinting tool
|
|
DISTNAME = arp-scan-1.7
|
|
CATEGORIES = net
|
|
|
|
HOMEPAGE = http://www.nta-monitor.com/tools/arp-scan/
|
|
MAINTAINER = Stuart Henderson <sthen@openbsd.org>
|
|
|
|
MASTER_SITES = ${HOMEPAGE}download/
|
|
|
|
# GPLv2+
|
|
PERMIT_DISTFILES_CDROM =Yes
|
|
PERMIT_DISTFILES_FTP = Yes
|
|
PERMIT_PACKAGE_CDROM = Yes
|
|
PERMIT_PACKAGE_FTP = Yes
|
|
|
|
WANTLIB = c pcap
|
|
|
|
CONFIGURE_STYLE = gnu
|
|
|
|
.include <bsd.port.mk>
|