Phactive - Monitoring an Environment with Nmap red teaming
This is a very basic script that runs nmap every day at 10AM using cronjon that Scans 0-65535 with
"-A -Pn -v -T4 -F -sV" Flags then uses ndiff to compare the result.
If there's any difference it send's a notification to your specified Telegram bot about
new ports discovered.
You must have Nmap and Ndiff Installed
git clone https://github.com/Phexcom/phactive.git /opt/phactive
sudo nano /opt/phactive/main.sh
TARGETS="127.0.0.1" # Target eg: (Ex: scanme.nmap.org, microsoft.com/24, 192.168.0.1; 10.0.0-255.1-254)
chat_id="<Telegram chat id>" # Telegram Chat id
tg_token="<Telegram Bot Token" # Telegram bot Token
To setup a telegram token and chat id Check out this Post
sudo nano /etc/crontab
Then copy and paste then save
00 10 * * * root bash /opt/phactive/main.sh