forked from vanhauser-thc/AutoNmap
-
Notifications
You must be signed in to change notification settings - Fork 0
/
autonmap.conf
25 lines (17 loc) · 876 Bytes
/
autonmap.conf
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
## Begin Config
# The directory for autonmap data/scans
RUN_DIRECTORY="/usr/local/autonmap/"
# The directory you want the web report to live in
WEB_DIRECTORY="/var/www/autonmap/"
# The hosts and subnets you want to scan daily, space seperated.
SCAN_SUBNETS="10.101.0.0/24"
# The full path (http) to where the report will be hosted by your webserver. This is included in the email report.
# I suggest setting up auth using htpasswd etc, in which case you can include the auth in the URL for simplicity if you want.
WEB_URL="http://mywebserver.com/autonmap/scan-$DATE.xml"
# The full path to your chosen nmap binary
NMAP="/usr/bin/nmap"
# The path to the ndiff tool provided with nmap
NDIFF="/usr/bin/ndiff"
# The email address(es), space seperated that you wish to send the email report to.
EMAIL_RECIPIENTS="you@yourdomain.com youteam@yourdomain.com"
## End config