-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathrun.sh
More file actions
28 lines (23 loc) · 811 Bytes
/
run.sh
File metadata and controls
28 lines (23 loc) · 811 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
#!/bin/bash
echo "=========================================="
echo "Android.Ghosts Network Scanner"
echo "Telegram: https://t.me/Android_Ghosts"
echo "=========================================="
# Check if Python is installed
if ! command -v python &> /dev/null; then
echo "[!] Python not found. Running installer..."
./install.sh
fi
# Check if required packages are installed
if ! python -c "import colorama" &> /dev/null; then
echo "[!] Required packages missing. Installing..."
pip install colorama
fi
# Run the scanner
echo "[+] Starting Android.Ghosts Scanner..."
python scanner.py
echo ""
echo "=========================================="
echo "Thank you for using Android.Ghosts Scanner!"
echo "Join us: https://t.me/Android_Ghosts"
echo "=========================================="