Added mtr (My Traceroute)

This commit is contained in:
Phil 2026-03-22 00:54:51 +00:00
parent 6a3d66b77a
commit 5e55bec0fc

View File

@ -72,6 +72,12 @@ run_tool() {
echo "Running scan of $ip on port $port at a rate of $rate..." echo "Running scan of $ip on port $port at a rate of $rate..."
sudo masscan -p$port $ip --rate=$rate --exclude=255.255.255.255 sudo masscan -p$port $ip --rate=$rate --exclude=255.255.255.255
;; ;;
mtr)
echo "Enter IP address or Domain to traceroute:"
read ip
echo "Running Network Route Trace of $ip..."
mtr $ip
;;
gobuster) gobuster)
echo "Enter the target URL:" echo "Enter the target URL:"
read target_url read target_url
@ -160,8 +166,9 @@ show_menu() {
echo "15) Snort (IDS/IPS)" echo "15) Snort (IDS/IPS)"
echo "16) WPScan (WordPress Scanner)" echo "16) WPScan (WordPress Scanner)"
echo "17) masscan (Network Scan)" echo "17) masscan (Network Scan)"
echo "18) mtr (My Traceroute) (Route Trace)"
echo "q) Exit" echo "q) Exit"
echo -n "Please choose an option (1-17): " echo -n "Please choose an option (1-18): "
read choice read choice
} }
@ -220,6 +227,9 @@ while true; do
17) 17)
run_tool "masscan" run_tool "masscan"
;; ;;
18)
run_tool "mtr"
;;
q) q)
echo "Exiting. Goodbye!" echo "Exiting. Goodbye!"
exit 0 exit 0