From d566a901ac7874445d93d18957b50cd545b864f2 Mon Sep 17 00:00:00 2001 From: aedes Date: Sun, 22 Mar 2026 16:31:04 +0300 Subject: [PATCH] fix: nmap-ncat -> nmap for Termux --- probe.sh | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/probe.sh b/probe.sh index dbf5bd8..688c831 100644 --- a/probe.sh +++ b/probe.sh @@ -122,9 +122,9 @@ do_h2() { install_deps() { local missing=() command -v curl >/dev/null || missing+=(curl) - command -v nc >/dev/null || missing+=(nmap-ncat) + command -v nc >/dev/null || missing+=(nmap) command -v openssl >/dev/null || missing+=(openssl-tool) - command -v nslookup >/dev/null || missing+=(dnsutils) + command -v nslookup >/dev/null || { command -v host >/dev/null || missing+=(dnsutils); } command -v ping >/dev/null || missing+=(inetutils) if [ ${#missing[@]} -gt 0 ]; then