Skip to content

Instantly share code, notes, and snippets.

@dvdknaap
Created January 3, 2021 14:00
Show Gist options
  • Save dvdknaap/2f0aa0dab9e178703e89ad943197039d to your computer and use it in GitHub Desktop.
Save dvdknaap/2f0aa0dab9e178703e89ad943197039d to your computer and use it in GitHub Desktop.
Access nmap fast
#!/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