summaryrefslogtreecommitdiffstats
path: root/rules/nmap.in
blob: 582dfa15da3ad4bd84aba985142fb2e82568d9a3 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
menuconfig NMAP
	tristate
	prompt "nmap                          "
	select OPENSSL if NMAP__OPENSSL
	select OPENSSL
	select LIBPCRE
	select GCCLIBS_CXX
	help
	  Nmap ("Network Mapper") is a utility for network exploration
	  or security auditing. Many systems and network administrators
	  also find it useful for tasks such as network inventory,
	  managing service upgrade schedules, and monitoring host or
	  service uptime.

if NMAP

config NMAP__OPENSSL
       bool "openssl support"

config NMAP__IPV6
       bool "ipv6 support (in included libpcap)"

config NMAP__SERVICES
	bool "Install nmap-services"
	default y
	help
	  This will install a set of nmap extensions, consisting of:
	       nmap-os-fingerprints
	       nmap-service-probes
	       nmap-services
	       nmap-protocols
	       nmap-rpc

endif