small fixes§

This commit is contained in:
Roman Hergenreder 2020-08-04 14:33:49 +02:00
parent ca2da8bbd4
commit 7300bbf361
2 changed files with 2 additions and 1 deletions

@ -25,6 +25,7 @@ echo "[+] Scanning for open ports…"
PORTS=$(nmap -p- --min-rate=1000 -T4 ${IP_ADDRESS} | grep ^[0-9] | cut -d '/' -f 1 | tr '\n' ',' | sed s/,$//)
if [ -z "${PORTS}" ]; then
echo "[-] No open ports found"
exit
fi
echo "[+] Open ports: ${PORTS}"

@ -101,7 +101,7 @@ if __name__ == "__main__":
command = sys.argv[1]
if command == "getAddress":
if len(sys.argv) >= 2:
if len(sys.argv) >= 3:
print(getAddress(sys.argv[2]))
else:
print(getAddress())