Skip to content
NetsCLI

Installation

NetsCLI publishes command-line binaries and desktop installers through GitHub Releases. The CLI/TUI binary is named netscli. The desktop app is distributed as NetsCLI Desktop.

Platform Recommended path Installs
Windows winget install fstubner.netscli CLI and TUI
Windows winget install fstubner.netscli.gui Desktop app
macOS Homebrew or install script CLI and TUI
Linux Install script, Homebrew, AUR, or release artifact CLI and TUI
Rust users cargo install netscli CLI and TUI from crates.io

Use winget for the hash-verified install path:

Terminal window
winget install fstubner.netscli

The desktop app is distributed separately:

Terminal window
winget install fstubner.netscli.gui

Scoop is also supported, for both the CLI and the desktop app:

Terminal window
scoop bucket add fstubner https://github.com/fstubner/scoop-bucket
scoop install netscli
scoop install netscli-gui

Or the PowerShell install script, which picks the right asset for your machine:

Terminal window
iwr -useb https://netscli.com/install.ps1 | iex

Direct Windows installers are attached to GitHub Releases. They are not Authenticode-signed yet, so Windows may show a publisher warning when installing outside winget. The winget manifests verify release asset hashes.

Use Homebrew when available:

Terminal window
brew tap fstubner/tap && brew install netscli

Or use the install script:

Terminal window
curl -fsSL https://netscli.com/install.sh | bash

Desktop .dmg artifacts are attached to GitHub Releases where the release workflow publishes them. macOS may require the usual first-run approval for unsigned or independently distributed apps.

Use the install script:

Terminal window
curl -fsSL https://netscli.com/install.sh | bash

Install with Homebrew on Linux when you use Linuxbrew:

Terminal window
brew tap fstubner/tap && brew install netscli

On Arch-based systems with an AUR helper:

Terminal window
yay -S netscli-bin

Release artifacts may include Linux CLI binaries and desktop packages such as .deb or .AppImage, depending on the release.

If Rust is installed:

Terminal window
cargo install netscli

Cargo installs the CLI/TUI binary. It does not install the desktop app.

Use the same package manager you installed with.

Update the CLI and TUI on Windows:

Terminal window
winget upgrade fstubner.netscli

Update the desktop app on Windows:

Terminal window
winget upgrade fstubner.netscli.gui

Update a Homebrew install:

Terminal window
brew upgrade netscli

For direct release artifacts, download the latest GitHub release and replace the previous install with the matching package for your platform.

Every CLI and desktop release asset is checksummed and signed, and both can be checked before you run anything.

Each asset ships a .sha256 sidecar next to it on the release page. The install scripts fetch and check it for you, and refuse to install if it is missing — a failed checksum request is not treated as permission to skip verification. To check a manual download yourself:

Terminal window
# Linux / macOS
curl -fsSLO https://github.com/fstubner/netscli/releases/latest/download/netscli-linux-x86_64
curl -fsSLO https://github.com/fstubner/netscli/releases/latest/download/netscli-linux-x86_64.sha256
sha256sum -c netscli-linux-x86_64.sha256
Terminal window
# Windows
(Get-FileHash -Algorithm SHA256 .\netscli-windows-x86_64.exe).Hash.ToLower()
# compare against the contents of netscli-windows-x86_64.exe.sha256

A checksum only proves the file matches its own sidecar, and both come from the same place. The signature is what ties the asset to the workflow run that built it.

Every asset is signed keylessly with Sigstore cosign in CI, using the GitHub Actions OIDC identity — no key management, and the signature is bound to the exact run. Each asset ships a .sig and a .pem beside it:

Terminal window
cosign verify-blob \
--signature netscli-linux-x86_64.sig \
--certificate netscli-linux-x86_64.pem \
--certificate-identity-regexp 'https://github.com/fstubner/netscli/.github/workflows/release\.yml@.*' \
--certificate-oidc-issuer https://token.actions.githubusercontent.com \
netscli-linux-x86_64

Substitute the asset name you downloaded — the same command works for the desktop .msi, .dmg, .deb and .AppImage. It needs the cosign CLI. A pass confirms the asset was built and signed by this repository’s release workflow and has not been altered since.

This is separate from platform code signing, which the installers do not yet have — see the Windows and macOS sections above for what your OS will say on first run.

None of the installs above include packet capture. It is a compile-time feature, and the default builds — the desktop installers, the standard CLI release assets, and cargo install netscli — are built without it. That keeps the default install free of any libpcap/Npcap dependency and avoids redistributing Npcap.

Getting it is a deliberate extra step, and the rest of this section is how.

Normal scan, discovery, DNS, ARP, ping, trace, and interface workflows are unaffected and need none of this.

If you do want packet capture, you need both a build that has the feature compiled in and the system capture library.

The install script does both at once — it selects the -pcap build and installs the system library:

Terminal window
curl -fsSL https://netscli.com/install.sh | NETSCLI_PCAP=1 bash
Terminal window
$env:NETSCLI_PCAP=1; iwr -useb https://netscli.com/install.ps1 | iex

On Windows this runs the Npcap installer, which needs administrator rights. Add NETSCLI_SKIP_NPCAP=1 (or NETSCLI_SKIP_LIBPCAP=1 on Unix) if you manage the capture library yourself.

Alternatively, download the -pcap asset directly from the latest releasenetscli-linux-x86_64-pcap, netscli-macos-aarch64-pcap, netscli-windows-x86_64-pcap.exe, and so on — and install the capture library separately. There is no -pcap musl build.

Or build it yourself, which needs the development headers (libpcap-dev on Debian/Ubuntu, or the Npcap SDK on Windows):

Terminal window
cargo install netscli --features pcap

There is no published desktop installer with packet capture. The Packet Capture tool appears in the app but shows setup guidance instead of running. To get a capture-capable desktop build you have to build from source:

Terminal window
cd apps/netscli-gui
npm install
npm run tauri build -- --features pcap
Platform Requirement
Windows Npcap installed. wpcap.dll lives in C:\Windows\System32\Npcap\, which is not on PATH by default — add it, or let NETSCLI_PCAP=1 do it.
Linux libpcap installed, plus capture permissions (CAP_NET_RAW or root).
macOS libpcap available, plus capture permissions where required.

netscli doctor works on every build and reports whether packet capture is compiled in and whether the runtime library is present:

Terminal window
netscli doctor

Note that netscli pcap --check only exists on builds that were compiled with the feature — on a standard build the subcommand is absent entirely and you will get an “unrecognized subcommand” error rather than a useful message. Use doctor to find out which build you have.