diff --git a/nms b/nms new file mode 100644 index 0000000..b1dfa1d --- /dev/null +++ b/nms @@ -0,0 +1,10 @@ +#!/bin/bash + +clear +echo Target: +read x +echo 'Running Nmap scan...' +nmap -A -v -sV -sC -Pn --script vulners,http-sql-injection,http-unsafe-output-escaping,http-enum.nse $x +echo 'Done.' +read -n1 +clear diff --git a/nt b/nt new file mode 100644 index 0000000..ddf3ebe --- /dev/null +++ b/nt @@ -0,0 +1,31 @@ +#!/bin/bash + +# NETWORK TEST +clear +echo "===============================" +echo "TESTING NETWORK CONNECTION..." +echo "===============================" +echo "_______________________________" +echo "CHECKING IP ADDRESS..." +echo "IP ADDRESS:" +curl ifconfig.me; echo +echo "-------------------------------" +echo "_______________________________" +echo "TESTING CLOUDFLARE DNS..." +ping -c 3 1.1.1.1 +echo "-------------------------------" +echo "_______________________________" +echo "TESTING GOOGLE DNS..." +ping -c 3 8.8.8.8 +echo "-------------------------------" +echo "_______________________________" +echo "TESTING QUAD9 DNS..." +ping -c 3 9.9.9.9 +echo "-------------------------------" +echo "_______________________________" +echo "TESTING NETWORK SPEED..." +speedtest-cli +echo "-------------------------------" +echo "DONE." +echo "===============================" +