🎓 Ethical Learn
Complete Cybersecurity Tool Learning Platform
Learn Ethical Hacking Tools on Mobile & PC/Laptop | Detailed Guidance with Commands & Examples
✨ What You'll Learn Here
Complete Tool Guide
हर tool की पूरी जानकारी - क्या है, कैसे काम करता है, कहाँ उपयोग होता है
Commands with Examples
हर tool के लिए practical commands और real-world examples
Mobile & PC Learning
Termux (Mobile) और Linux/Windows (PC) दोनों पर सीखें
Ethical Guidance
कानूनी और नैतिक तरीके से tools का उपयोग करना सीखें
📱💻 How to Learn - Mobile & PC/Laptop
📱 Termux Setup on Android - Complete Guide
Termux क्या है? Termux एक Android app है जो आपके mobile में Linux जैसा environment देता है। यहाँ आप सभी cybersecurity tools चला सकते हैं - Nmap, Hydra, SQLmap, Metasploit, और 100+ tools।
pkg update && pkg upgradepkg install nmap hydra python gitgit clone https://github.com/sqlmapproject/sqlmap.gitcd sqlmap && python sqlmap.py -h
✨ Tools you can run on Termux: Nmap, Hydra, SQLmap, Metasploit, John the Ripper, Hashcat, Wireshark (via tshark), Python scripts, and 100+ more
✅ Requirements: Android 7.0+, 2GB RAM, 500MB free storage, Internet connection
💻 Kali Linux (Best for Security)
Kali Linux में सभी tools पहले से इंस्टॉल होते हैं। आप VirtualBox में भी चला सकते हैं।
# Download Kali Linux: https://www.kali.org/get-kali/ # Install on VirtualBox or Dual Boot # Update tools sudo apt update && sudo apt upgrade # Start any tool directly nmap hydra sqlmap msfconsole
💻 Ubuntu/Debian (Regular Linux)
# Install tools one by one sudo apt install nmap -y sudo apt install hydra -y sudo apt install wireshark -y sudo apt install metasploit-framework -y sudo apt install aircrack-ng -y
💻 Windows Setup
# Option 1: WSL (Windows Subsystem for Linux) wsl --install wsl --set-default-version 2 # Option 2: VirtualBox + Kali Linux # Download Kali Linux ISO and install in VirtualBox # Option 3: Individual Windows Tools # Nmap, Wireshark, Burp Suite have Windows installers
🛠️ Security Tools - Complete Guide
हर tool के बारे में जानें: क्या है, कैसे use करें, commands क्या हैं
1️⃣ Information Gathering Tools
🔍 Nmap - Network Scanner
क्या है: नेटवर्क में डिवाइस और खुले पोर्ट ढूँढने का टूल
कैसे use करें:
nmap -sV target.com
nmap -O target.com
Full Guide →
🔮 Maltego - OSINT Tool
क्या है: डोमेन, ईमेल, सोशल मीडिया के बीच संबंध ढूँढना
कैसे use करें: GUI में ड्रैग-एंड-ड्रॉप, transforms चलाएँ
Full Guide →📧 theHarvester - Email Harvester
क्या है: डोमेन से ईमेल और सबडोमेन ढूँढना
कैसे use करें:
theHarvester -d target.com -b google
Full Guide →
2️⃣ Vulnerability Analysis Tools
🕷️ Nikto - Web Server Scanner
क्या है: वेब सर्वर पर खतरनाक फाइल्स और वल्नरेबिलिटी ढूँढना
nikto -h https://target.com
Full Guide →
🗄️ SQLmap - SQL Injection
क्या है: ऑटोमेटेड SQL इंजेक्शन एक्सप्लॉइटेशन
sqlmap -u "http://target.com?id=1" --dbs
Full Guide →
🔬 OpenVAS - Full Scanner
क्या है: पूरा वल्नरेबिलिटी स्कैनर (Enterprise Grade)
gvm-setup && gvm-start
Full Guide →
3️⃣ Password Attacks Tools
🐍 Hydra - Network Cracker
क्या है: SSH, FTP, HTTP पर ब्रूटफोर्स अटैक
hydra -l root -P pass.txt ssh://192.168.1.100
Full Guide →
⚡ Hashcat - GPU Cracker
क्या है: दुनिया का सबसे तेज पासवर्ड क्रैकर (GPU)
hashcat -m 0 hash.txt rockyou.txt
Full Guide →
4️⃣ Wireless Attacks Tools
📡 Aircrack-ng - WiFi Cracking
क्या है: WPA/WPA2 WiFi पासवर्ड क्रैकिंग
airmon-ng start wlan0
airodump-ng wlan0mon
Full Guide →
🔑 Reaver - WPS Attack
क्या है: WPS PIN ब्रूटफोर्स अटैक
reaver -i wlan0mon -b 00:11:22:33:44:55
Full Guide →
5️⃣ Exploitation Tools
🎯 Metasploit - Exploitation Framework
क्या है: दुनिया का सबसे पॉपुलर एक्सप्लॉइटेशन टूल
msfconsole
use exploit/...
set RHOSTS target
exploit
Full Guide →
🐮 BeEF - Browser Exploitation
क्या है: ब्राउज़र एक्सप्लॉइटेशन फ्रेमवर्क
beef-xss
http://localhost:3000/ui/panel
Full Guide →
6️⃣ Sniffing & Forensics Tools
🔍 Wireshark - Packet Analyzer
क्या है: नेटवर्क ट्रैफिक कैप्चर और एनालिसिस
wireshark
ip.addr == 192.168.1.1
Full Guide →
🐘 Ettercap - MITM Attack
क्या है: मैन-इन-द-मिडिल अटैक टूल
ettercap -T -M arp:remote /target// /gateway//
Full Guide →
🔬 Autopsy - Digital Forensics
क्या है: डिजिटल फोरेंसिक प्लेटफॉर्म
autopsy
http://localhost:9999/autopsy
Full Guide →
🌐 Termux ARP Command
क्या है: Network में connected devices के IP और MAC address दिखाने का tool
apt install net-tools -y
arp -a
Full Guide →
📖 How to Learn Effectively
✅ Step 1: Start with Basics
पहले Information Gathering tools (Nmap, theHarvester) सीखें। ये सबसे आसान हैं।
✅ Step 2: Practice on Labs
TryHackMe, HackTheBox, VulnHub पर प्रैक्टिस करें। कभी रियल वेबसाइट पर न करें।
✅ Step 3: Learn Commands
हर tool के commands को उदाहरण सहित समझें। हमारे tool pages में सब दिया है।
✅ Step 4: Mobile + PC
Termux (Mobile) और Kali Linux (PC) दोनों पर प्रैक्टिस करें।