| Name | Modified | Size | Downloads / Week |
|---|---|---|---|
| Parent folder | |||
| nmap-exec-ui-app-windows.7z | 2026-02-11 | 12.1 MB | |
| nmap-exec-ui-server-linux | 2026-02-11 | 28.9 MB | |
| README.md | 2026-02-11 | 2.8 kB | |
| Release source code.tar.gz | 2026-02-11 | 34.1 kB | |
| Release source code.zip | 2026-02-11 | 40.9 kB | |
| nmap-exec-ui-server.exe | 2026-02-11 | 28.0 MB | |
| nmap-exec-ui-app-windows.exe | 2026-02-11 | 28.4 MB | |
| Totals: 7 Items | 97.5 MB | 7 | |
Nmap Exec UI - Release Information
This document provides details about the application features and the files included in this release.
📦 Release Artifacts
Windows
| File Name | Description |
|---|---|
nmap-exec-ui-app-windows.7z |
Native GUI App: Standalone window, no terminal or browser needed.Incldues nmap-exec-ui-app-windows.exe and staic folder. |
nmap-exec-ui-server.exe |
Headless Server: Runs in terminal, accessible via browser. |
Linux
| File Name | Description |
|---|---|
nmap-exec-ui-server-linux |
Headless Server: Pure Go binary. Ready to run on any amd64 Linux. |
nmap-exec-ui-app-linux(not included in release) |
Native GUI App: (Source build recommended) Requires GTK3/WebKitGTK. |
[!TIP] Windows releases are typically distributed as
.ziparchives. Linux releases are typically distributed as.tar.gz(tarball) archives.
✨ Key Features
- Modern & Dark UI: Sleek interface with Light/Dark mode toggle.
- Native Experience: Runs as a desktop app using system webviews (WebView2 on Windows, WebKitGTK on Linux).
- Live Scanning: Watch Nmap output stream in real-time as it scans.
- Pretty Results: Automatic parsing of XML output into sortable tables.
- Multi-Tab Workflow: Run multiple concurrent scans in separate tabs without losing context.
- Process Control: Stop/Cancel scans instantly.
- Persistent Config: Remembers your theme preference across restarts.
- Full Nmap Power: Access to all Nmap options including scripts, timing, and evasion techniques.
🐧 Linux Build Instructions
GUI Version (Requires compilation on Linux)
The native GUI app relies on GTK+ webview bindings (CGO), which are hard to cross-compile from Windows. It is recommended to build this directly on a Linux machine.
Debian/Ubuntu:
:::bash
sudo apt install libgtk-3-dev libwebkit2gtk-4.0-dev
Fedora:
:::bash
sudo dnf install gtk3-devel webkit2gtk3-devel
Build:
:::bash
go build -o nmap-exec-ui-app-linux ./cmd/nmap-exec-ui-app
Headless Server Version (Cross-Platform)
Since the server version is pure Go, it can be cross-compiled easily from any OS.
Build for Linux (amd64) from Windows:
:::powershell
$env:GOOS="linux"; $env:GOARCH="amd64"; go build -o nmap-exec-ui-server-linux .
(A pre-compiled nmap-exec-ui-server-linux is included in this release).
🪟 Windows Build Instructions
No external C dependencies required (thanks to go-webview2).
:::powershell
go build -o nmap-exec-ui-app-windows.exe ./cmd/nmap-exec-ui-app
- Place static foder in same directory as binary.