5

Is there a GUI version for nmap that can be installed without manually downloading the program?

I don't have a problem with doing so, but it would be nice if there is one available in the repositories, or by adding a repo.

Kevin Bowen
  • 19,615
  • 55
  • 79
  • 83
TellMeWhy
  • 17,484

1 Answers1

13

Zenmap

You can use zenmap, it is in the repository

sudo apt-get install zenmap

Here is its website I think it is the official GUI as the site is nmap.org.

enter image description here

Umit

If you don't like that one try umit, it is in the repository as well

sudo apt-get install umit

This one did not have its own website, here is its source forge page

enter image description here

nmapsi4

Finally there is nmapsi4 too, this seems the best looking one, if you are in to that

sudo apt-get install nmapsi4

Again no website, but here is its launchpad page

enter image description here

Others

There are at least two more available, including a python one and a web interface but this is getting a bit long, to find them yourself, run this command

apt search nmap
Mark Kirby
  • 18,529
  • 19
  • 78
  • 114
  • Helpful, interesting and useful information ! :) – cl-netbox Jan 05 '16 at 16:34
  • @cl-netbox Thanks, I found even more now:) – Mark Kirby Jan 05 '16 at 16:36
  • @DevRobot You are welcome :) – Mark Kirby Jan 05 '16 at 16:41
  • 2
    Great collection - i enhanced the readability a bit ...hope it's ok – dufte Sep 05 '16 at 07:15
  • nmapsi4 now has a website: https://github.com/nmapsi4/nmapsi4 – Jonathan Hult May 21 '18 at 16:30
  • Zenmap was removed from debian (https://packages.debian.org/search?keywords=zenmap&searchon=names) and thus Ubuntu (see also https://askubuntu.com/questions/1233840/has-zenmap-vanished-from-20-04#answer-1233847). Umit is also not provided by either (https://packages.ubuntu.com/search?keywords=umit&searchon=names). This leaves nmapsi4, as the only gui, unless you want to compile it yourself. – Morty Sep 30 '21 at 10:57