1
0
mirror of https://github.com/byReqz/conn.git synced 2024-11-01 01:03:14 +00:00
conn/conn.sh

31 lines
881 B
Bash
Raw Normal View History

2021-01-15 14:50:17 +00:00
#! /bin/bash
if [[ -z "$1" ]]; then
echo "Usage: conn [ip] (y/n)"
exit
elif [[ -n "$1" ]]; then
echo "checking connection status for $1"
echo "-----------------------------------------"
fping $1
echo "-----------------------------------------"
fi
if [[ -z "$2" ]]; then
echo "portscan? (y/n)"
read portscan
if [[ "$portscan" = "y" ]]; then
echo "-------------------Portscan---------------------"
nmap -Pn $1
fping -c 4 -A $1
echo "------------------------------------------------"
exit
elif [[ "$portscan" = "n" ]]; then
exit
fi
elif [[ "$2" = "y" ]]; then
echo "-------------------Portscan---------------------"
nmap -Pn $1
fping -c 4 -A $1
echo "------------------------------------------------"
exit
elif [[ "$2" = "n" ]]; then
exit
fi