Path: blob/Hacker-x-Phantom/kali-nethunter-phantom.sh
12 views
#!/bin/bash12display_banner() {3cat << "EOF"4_ __ _ _ _ _ _ ______ _ _5| | / / | (_) | \ | | | | | ___ \ | | |6| |/ / __ _| |_ | \| | ___| |_ | |_/ / |__ __ _ _ __ | |_ ___ _ __7| \ / _ | | | | ` |/ _ \ __| | __/| '_ \ / _ | _ \| __/ _ \| _ \8| |\ \ (_| | | | | |\ | __/ |_ | | | | | | (_| | | | | || (_) | | | |9\_| \_/\__ _|_|_| \_| \_/\___|\__| \_| |_| |_|\__ _|_| |_|\__\___/|_| |_|10EOF11}1213run_command() {14eval "$1"15}1617main() {18display_banner19commands=(20"pkg update -y"21"clear"22"pkg install wget -y"23"clear"24"termux-setup-storage"25"wget -O Hacker-X-Phantom https://offs.ec/2MceZWr"26"chmod +x Hacker-X-Phantom"27"./Hacker-X-Phantom"28)29for command in "${commands[@]}"; do30echo "Running command: $command"31run_command "$command"32done33}3435main "$@"363738