Skip to content

Instantly share code, notes, and snippets.

@jgamblin
Created November 5, 2016 21:55
Show Gist options
  • Star 25 You must be signed in to star a gist
  • Fork 17 You must be signed in to fork a gist
  • Save jgamblin/7d64a284e5291a444e12c16daebc81e0 to your computer and use it in GitHub Desktop.
Save jgamblin/7d64a284e5291a444e12c16daebc81e0 to your computer and use it in GitHub Desktop.
Script to NMAP a network and Post Differences to Slack
#!/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
}
if [ -e scan-prev.xml ]; then
ndiff scan-prev.xml scan-$date.xml > diff-$date
[ "$?" -eq "1" ] && sed -i -e 1,3d diff-$date && slack
fi
ln -sf scan-$date.xml scan-prev.xml
@cjbischoff
Copy link

I dig it, but its a problem (that I have been able to solve) with scanning AWS hosts externally since - I am scanning against the CNAME. With AWS the IP address/and A record changes frequently causing false alerts. Trying to figure out chopping the header information leaving the ports

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment