summaryrefslogtreecommitdiffstats
path: root/rules/nmap.in
blob: 3d08b40e32f3caac60c89c3f7fbeda30911c5cf8 (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
## SECTION=networking
menuconfig NMAP
	tristate
	prompt "nmap                          "
	select OPENSSL if NMAP_OPENSSL
	select OPENSSL
	select LIBPCRE
	select LIBPCAP
	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_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