Scanning with zenmap

Scanning with zenmap

Zenmap is the GUI Version of nmap. There is a rpm package available and we can try to install it on KALI Linux: https://nmap.org/download.html

sudo apt update

sudo apt install alien

alien zenmap-7.92-1.noarch.rpm

sudo dpkg --install zenmap_7.92-2_all.deb

If not work use the following fix to get zenmap to work:

wget http://archive.ubuntu.com/ubuntu/pool/universe/p/pygtk/python-gtk2_2.24.0-5.1ubuntu2_amd64.deb
wget http://azure.archive.ubuntu.com/ubuntu/pool/universe/p/pygobject-2/python-gobject-2_2.28.6-14ubuntu1_amd64.deb
wget http://security.ubuntu.com/ubuntu/pool/universe/p/pycairo/python-cairo_1.16.2-2ubuntu2_amd64.deb

Install the required dependencies in the following order:

sudo dpkg -i python-gobject-2_2.28.6-14ubuntu1_amd64.deb 
sudo dpkg -i python-cairo_1.16.2-2ubuntu2_amd64.deb
sudo dpkg -i python-gtk2_2.24.0-5.1ubuntu2_amd64.deb 

sudo dpkg --install zenmap_7.92-2_all.deb

Now it should work:

Next we will scan some targets from the hackthebox network.scanning with nmap

If you don't have access yet you can follow my tutorial here how to solve the invite challenge: https://cybercop-training.ch/?p=774

After download the openvpn file and establish the connection it's possible to scan targets from hackthebox network.

nmap -T4 -A -v 10.10.10.28

Last updated