G+_Drew Moseley Posted December 30, 2015 Share Posted December 30, 2015 Does anyone know of a good set of scripts to act as a frontend for nmap to scan and monitor my home network? I've used nessus in the past and I realize they have a free home-use version but it seems like all of the functionality is there in nmap if there was a decent set of wrapper scripts somewhere. Link to comment Share on other sites More sharing options...
G+_Eddie Foy Posted December 30, 2015 Share Posted December 30, 2015 what exactly do you want to scan for? There is a TON of scripts in the /nse folder. Zenmap is a nice front end for nmap (and should be bundled with nmap). Comes with a few profiles already loaded. And you can build all the ones you want to your heart's content. (pulling form the /nse folder too) OpenVAS has found more stuff then Nessus free did for me, but was noticeably slower. Link to comment Share on other sites More sharing options...
G+_Travis Hershberger Posted December 30, 2015 Share Posted December 30, 2015 You mean something like.... #!/bin/bash nmap -sP -n xxx.xxx.xxx.xxx >> /home/user/nmapscan%d%t.txt mark that as executable and add it to a cron job. Then if you want to check for changes just do a diff or xdiff on two of the files. Depending on exactly what you want to do adding more to the script should be easy. Link to comment Share on other sites More sharing options...
G+_Eddie Foy Posted December 30, 2015 Share Posted December 30, 2015 Travis Hershberger need that ' -0 s| If not run as a cron job, i'd replace the IP for a $1 then you can pass it as an argument to the script (do a single or range.) Add a $2 for the output file. On Zenmap, I like the quickscn Plus gives OS version (guesses) service versions and such. Link to comment Share on other sites More sharing options...
G+_Drew Moseley Posted December 31, 2015 Author Share Posted December 31, 2015 Thanks for the suggestions. I had not heard of OpenVAS so I'll definitely take a look at that. I think the suggestion by Travis Hershberger is more in-line with what I'm thinking but I'm not opposed to a more full featured vulnerability scanner as well. I was unaware of NSE. I'll look into that as well. Link to comment Share on other sites More sharing options...
Recommended Posts