29 lines
817 B
Bash
29 lines
817 B
Bash
# Title: LinPeasBase - check_tcp_443
|
|
# ID: check_tcp_443
|
|
# Author: Carlos Polop
|
|
# Last Update: 22-08-2023
|
|
# Description: Check if TCP Internet conns are available (via port 443)
|
|
# License: GNU GPL
|
|
# Version: 1.0
|
|
# Functions Used:
|
|
# Global Variables:
|
|
# Initial Functions:
|
|
# Generated Global Variables: $local_pid, $TIMEOUT_INTERNET_SECONDS_443
|
|
# Fat linpeas: 0
|
|
# Small linpeas: 1
|
|
|
|
|
|
|
|
check_tcp_443(){
|
|
local TIMEOUT_INTERNET_SECONDS_443=$1
|
|
if ! [ -f "/bin/bash" ]; then
|
|
echo " /bin/bash not found"
|
|
return
|
|
fi
|
|
|
|
# example.com
|
|
(bash -c '(echo >/dev/tcp/104.18.74.230/443 2>/dev/null && echo "Port 443 is accessible" && exit 0) 2>/dev/null || echo "Port 443 is not accessible"') & local_pid=$!
|
|
|
|
sleep $TIMEOUT_INTERNET_SECONDS_443 && kill -9 $local_pid 2>/dev/null && echo "Port 443 is not accessible"
|
|
}
|