Created
January 3, 2021 14:00
-
-
Save dvdknaap/2f0aa0dab9e178703e89ad943197039d to your computer and use it in GitHub Desktop.
Access nmap fast
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/bash | |
if [ -z "$1" ] | |
then | |
echo "Usage: doNmap <ip address>"; | |
else | |
echo $1; | |
nmap -p- -T4 -sC -sV -Pn -vvv "$1" > nmap.txt & | |
tail -f nmap.txt; | |
fi |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment