cat << 'EOF' > README.md
Vornex Gücü – Sistem sınırlarını aş, kontrolü eline al.
VORNEX-STOOL, web panelleri ve bot altyapıları üzerinde güvenlik analizi, zafiyet tespiti ve yük testleri gerçekleştirmek amacıyla geliştirilmiş tek dosyalı bir terminal aracıdır.
- 🎯 SQL Injection Testi – Veritabanı girdi parametrelerindeki SQL zafiyetlerini tespit etmeye yönelik test modülü.
- ⚙️ Command Injection Testi – Sunucu tarafı komut çalıştırma açıklarını analiz etme yeteneği.
- 🚀 DDoS (HTTP Flood) –
aiohttpaltyapısı ve çoklu iş parçacığı (multi-threading) ile HTTP yük testi. - 🤖 Telegram / Discord Token İmha – Yetkisiz veya açığa çıkmış bot tokenları ve webhook entegrasyonlarını sıfırlama/silme aracı.
- 📁 Dosya Silme (LFI/RFI) – Yerel ve uzaktan dosya dahil etme/erişim zafiyetlerini kontrol etme modülü.
- ⚡ Tam Otomatik İmha – Tüm denetim ve test modüllerini sırasıyla otomatik çalıştırma seçeneği.
- 🎨 Terminal Arayüzü – Colorama destekli renkli ve menü tabanlı arayüz.
Bu araç yalnızca güvenlik testleri, eğitim ve izinli sistem analizleri için geliştirilmiştir. İzin alınmayan hedef sistemler üzerinde kullanılması yasal sorumluluk doğurabilir. Kullanıcı, aracın kullanımından doğan tüm hukuki sorumluluğu kabul etmiş sayılır.
- Python 3.8 veya üzeri
pip(Python Paket Yöneticisi)- Aktif İnternet Bağlantısı
# ----------------------------------------------------
# 1️⃣ TERMUX (ANDROID)
# ----------------------------------------------------
pkg update -y && pkg upgrade -y
pkg install -y python python-pip git
termux-setup-storage
pip install --upgrade pip
git clone [https://github.com/VornexxBaba/VORNEX-STOOL.git](https://github.com/VornexxBaba/VORNEX-STOOL.git)
cd VORNEX-STOOL
pip install aiohttp colorama aiohttp-socks requests
python3 main.py
# ----------------------------------------------------
# 2️⃣ DEBIAN / UBUNTU LINUX
# ----------------------------------------------------
sudo apt update && sudo apt upgrade -y
sudo apt install -y python3 python3-pip git
git clone [https://github.com/VornexxBaba/VORNEX-STOOL.git](https://github.com/VornexxBaba/VORNEX-STOOL.git)
cd VORNEX-STOOL
pip3 install aiohttp colorama aiohttp-socks requests
python3 main.py
# ----------------------------------------------------
# 3️⃣ ARCH LINUX
# ----------------------------------------------------
sudo pacman -Syu
sudo pacman -S --needed python python-pip git
git clone [https://github.com/VornexxBaba/VORNEX-STOOL.git](https://github.com/VornexxBaba/VORNEX-STOOL.git)
cd VORNEX-STOOL
pip install aiohttp colorama aiohttp-socks requests
python main.py
# ----------------------------------------------------
# 4️⃣ MACOS
# ----------------------------------------------------
brew update
brew install python git
git clone [https://github.com/VornexxBaba/VORNEX-STOOL.git](https://github.com/VornexxBaba/VORNEX-STOOL.git)
cd VORNEX-STOOL
pip3 install aiohttp colorama aiohttp-socks requests
python3 main.py
# ----------------------------------------------------
# 5️⃣ WINDOWS (CMD / PowerShell)
# ----------------------------------------------------
git clone [https://github.com/VornexxBaba/VORNEX-STOOL.git](https://github.com/VornexxBaba/VORNEX-STOOL.git)
cd VORNEX-STOOL
pip install aiohttp colorama aiohttp-socks requests
python main.py