Scan remote server for open ports and notify by email
305
This app scans given server for open ports and notify by email if forbidden open port found.
Command accept two arguments -- server address and whitelisted ports in the following format:
22/tcp80/tcp53/udp22/tcp,80/tcp,53/udpTo configure notification options the number of environment variables available. Docker compose example:
version: '3'
services:
scanner:
image: bolshakov/nmap-scanner:latest
restart: always
command: myserver.example.com 22/tcp,80/tcp
environment:
- SCAN_INTERVAL=3600 # in seconds
- SCAN_PORT_RANGE=1-65535
- EMAIL_SMTP_HOST=smtp.example.com
- EMAIL_SMTP_PORT=587
- [email protected]
- EMAIL_USERNAME=nmap-scanner
- EMAIL_PASSWORD=secret123
- [email protected]
Content type
Image
Digest
Size
32.8 MB
Last updated
over 8 years ago
docker pull bolshakov/nmap-scanner