aboutsummaryrefslogtreecommitdiffstatshomepage
diff options
context:
space:
mode:
authorEgor Tensin <Egor.Tensin@gmail.com>2023-03-17 19:42:51 +0100
committerEgor Tensin <Egor.Tensin@gmail.com>2023-03-17 19:56:34 +0100
commit765767e924fe86af4fc9f61cfdacbf4a29e43dce (patch)
tree8bce12ac32ac9d825a9ed2b88ea0f2a734bfbe2b
parentrename Ubuntu scripts (diff)
downloadaudit-scripts-765767e924fe86af4fc9f61cfdacbf4a29e43dce.tar.gz
audit-scripts-765767e924fe86af4fc9f61cfdacbf4a29e43dce.zip
add open-ports.sh
-rw-r--r--README.md10
-rwxr-xr-xsrc/open-ports.sh98
2 files changed, 108 insertions, 0 deletions
diff --git a/README.md b/README.md
index 262ee36..629b17d 100644
--- a/README.md
+++ b/README.md
@@ -10,6 +10,16 @@ Find files with the immutable (`+i`) or append-only (`+a`) flag set.
./src/bad-attrs /
+open-ports.sh
+-------------
+
+List open ports for a host.
+
+ ./src/open-ports.sh HOST # Scan all ports
+ ./src/open-ports.sh -6 HOST # Resolve domains to IPv6 addresses
+ ./src/open-ports.sh -t 1000 HOST # Scan the top 1000 most popular ports
+ ./src/open-ports.sh -p 8080-8100 HOST # Specify port ranges in the nmap format
+
writable-dirs
-------------
diff --git a/src/open-ports.sh b/src/open-ports.sh
new file mode 100755
index 0000000..c81290d
--- /dev/null
+++ b/src/open-ports.sh
@@ -0,0 +1,98 @@
+#!/usr/bin/env bash
+
+# Copyright (c) 2023 Egor Tensin <Egor.Tensin@gmail.com>
+# This file is part of the "audit-scripts" project.
+# For details, see https://github.com/egor-tensin/audit-scripts.
+# Distributed under the MIT License.
+
+set -o errexit -o nounset -o pipefail
+shopt -s inherit_errexit lastpipe
+
+script_name="$( basename -- "${BASH_SOURCE[0]}" )"
+readonly script_name
+
+check_tool() {
+ local tool
+ for tool; do
+ if ! command -v "$tool" > /dev/null; then
+ echo "$script_name: $tool is missing" >&2
+ exit 1
+ fi
+ done
+}
+
+print_usage() {
+ echo "usage: $script_name [-h] [-6] [-p PORT_RANGES] [-t TOP_N_PORTS] HOST"
+}
+
+exit_with_usage_error() {
+ local msg
+ for msg; do
+ echo "usage error: $msg" >&2
+ done
+ print_usage >&2
+ exit 1
+}
+
+host=
+declare -a nmap_args=()
+
+parse_args() {
+ local ports=
+ local top_ports=
+
+ local opt
+ while getopts ':h6p:t:' opt; do
+ case "$opt" in
+ h)
+ print_usage
+ exit 0
+ ;;
+ 6)
+ nmap_args+=('-6')
+ ;;
+ p)
+ ports="$OPTARG"
+ ;;
+ t)
+ top_ports="$OPTARG"
+ ;;
+ :)
+ exit_with_usage_error "option -$OPTARG requires an argument"
+ ;;
+ *)
+ exit_with_usage_error "option -$OPTARG is invalid"
+ ;;
+ esac
+ done
+ shift "$((OPTIND - 1))"
+
+ if [ "$#" -ne 1 ]; then
+ exit_with_usage_error
+ fi
+
+ host="$1"
+
+ if [ -n "$ports" ] && [ -n "$top_ports" ]; then
+ exit_with_usage_error "you can't use both -p and -t options"
+ fi
+ if [ -z "$ports" ] && [ -z "$top_ports" ]; then
+ ports='-'
+ fi
+
+ if [ -n "$ports" ]; then
+ nmap_args+=('-p' "$ports")
+ fi
+ if [ -n "$top_ports" ]; then
+ nmap_args+=('--top-ports' "$top_ports")
+ fi
+}
+
+main() {
+ check_tool nmap xmlstarlet
+ parse_args "$@"
+
+ nmap ${nmap_args[@]+"${nmap_args[@]}"} -oX - -- "$host" | xmlstarlet sel -t -v '//port[state/@state="open"]/@portid' -nl
+}
+
+main "$@"