Skip to content

Instantly share code, notes, and snippets.

@diegoalbuquerque
Created March 27, 2020 14:24
Show Gist options
  • Save diegoalbuquerque/9998dbcbd641d38d0f82c3e259061bf2 to your computer and use it in GitHub Desktop.
Save diegoalbuquerque/9998dbcbd641d38d0f82c3e259061bf2 to your computer and use it in GitHub Desktop.
Fast Scan
#NMAP
nmap -T5 --host-timeout 4s --min-rate 1000 -PN -n -p <PORTAS> <SERVER>
#NETCAT
for i in {1..2000}; do nc -vz <SERVER> $i 2>&1 | grep -vi "failed"; done
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment