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..."
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)
echo "Enter the target URL:"
read target_url
@ -160,8 +166,9 @@ show_menu() {
echo "15) Snort (IDS/IPS)"
echo "16) WPScan (WordPress Scanner)"
echo "17) masscan (Network Scan)"
echo "18) mtr (My Traceroute) (Route Trace)"
echo "q) Exit"
echo -n "Please choose an option (1-17): "
echo -n "Please choose an option (1-18): "
read choice
}
@ -220,6 +227,9 @@ while true; do
17)
run_tool "masscan"
;;
18)
run_tool "mtr"
;;
q)
echo "Exiting. Goodbye!"
exit 0