This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
firewall { | |
all-ping enable | |
broadcast-ping disable | |
ipv6-receive-redirects disable | |
ipv6-src-route disable | |
ip-src-route disable | |
log-martians enable | |
name GUEST_LOCAL { | |
default-action accept | |
description "" |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/sh | |
TARGETS=${TARGETS:="192.168.1.0/24"} | |
OPTIONS=${NMAPOPS:="-v -T4 -F -sV"} | |
DATE=$(date +%Y-%m-%d-%H-%M-%S) | |
cd /nmap/diffs | |
nmap $OPTIONS $TARGETS -oA scan-$DATE > /dev/null | |
slack(){ | |
curl -F file=@diff-$DATE -F initial_comment="Internal Port Change Detected" -F channels=#$SLACKCHAN -F token=$SLACKTOKEN https://slack.com/api/files.upload | |
} |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/sh | |
TARGETS="192.168.1.0/24" | |
OPTIONS="-v -T4 -F -sV" | |
date=$(date +%Y-%m-%d-%H-%M-%S) | |
cd /nmap/diffs | |
nmap $OPTIONS $TARGETS -oA scan-$date > /dev/null | |
slack(){ | |
curl -F file=@diff-$date -F initial_comment="Internal Port Change Detected" -F channels=#alerts -F token=xxxx-xxxx-xxxx https://slack.com/api/files.upload | |
} |