Web based NMAP/Network scanner?

Is anyone aware of anything like a Web based version of NMAP for scanning a local network?

I'm looking for some sort of tool which will display all the devices on my network, and would prefer not have to install in on particular machine just on my webserver.
 
You have arp installed.

# arp -a

And then you have arp-scan... but you need to install it.

But.. # nmap -sP IPrange/24 is your friend. Just make a scrip that make the result on a .txt or .html file if you need it to be on the web.
 
Back
Top