Book a Demo!
CoCalc Logo Icon
StoreFeaturesDocsShareSupportNewsAboutPoliciesSign UpSign In
hackerxphantom
GitHub Repository: hackerxphantom/Kali-Nethunter-Termux
Path: blob/Hacker-x-Phantom/kali-nethunter-phantom.sh
12 views
1
#!/bin/bash
2
3
display_banner() {
4
cat << "EOF"
5
_ __ _ _ _ _ _ ______ _ _
6
| | / / | (_) | \ | | | | | ___ \ | | |
7
| |/ / __ _| |_ | \| | ___| |_ | |_/ / |__ __ _ _ __ | |_ ___ _ __
8
| \ / _ | | | | ` |/ _ \ __| | __/| '_ \ / _ | _ \| __/ _ \| _ \
9
| |\ \ (_| | | | | |\ | __/ |_ | | | | | | (_| | | | | || (_) | | | |
10
\_| \_/\__ _|_|_| \_| \_/\___|\__| \_| |_| |_|\__ _|_| |_|\__\___/|_| |_|
11
EOF
12
}
13
14
run_command() {
15
eval "$1"
16
}
17
18
main() {
19
display_banner
20
commands=(
21
"pkg update -y"
22
"clear"
23
"pkg install wget -y"
24
"clear"
25
"termux-setup-storage"
26
"wget -O Hacker-X-Phantom https://offs.ec/2MceZWr"
27
"chmod +x Hacker-X-Phantom"
28
"./Hacker-X-Phantom"
29
)
30
for command in "${commands[@]}"; do
31
echo "Running command: $command"
32
run_command "$command"
33
done
34
}
35
36
main "$@"
37
38