Vulnerability Scanning – WebMap
Web Frontend for NMAP.
Source:
https://github.com/Rev3rseSecurity/WebMap.git
WebMap Install (Docker)
Install Docker CE:
1 2 3 |
# Add Docker pgp key curl -fsSL https://download.docker.com/linux/debian/gpg | sudo apt-key add - |
1 2 3 |
# Configure Docker apt repo echo 'deb https://download.docker.com/linux/debian stretch stable' > /etc/apt/sources.list.d/docker.list |
1 2 3 4 |
# apt update and install Docker apt-get update apt-get install docker-ce |
Run Nmap Web Frontend:
1 2 3 4 5 6 7 8 |
$ mkdir /tmp/webmap $ docker run -d \ --name webmap \ -h webmap \ -p 8000:8000 \ -v /tmp/webmap:/opt/xml \ rev3rse/webmap |
1 2 3 |
# now you can run Nmap and save the XML Report on /tmp/webmap nmap -sT -A -T4 -oX /tmp/webmap/myscan.xml 192.168.1.0/24 |
Now point your browser to http://localhost:8000