diff --git a/README.md b/README.md index 8573bed..2dad0e5 100644 --- a/README.md +++ b/README.md @@ -1,61 +1,110 @@ -# Kali-Linux-for-Android -Transform your Android device into a cybersecurity playground with Kali Magic! πŸš€ -# KaliMagic πŸŽ©πŸ” - -Discover the cybersecurity playground with Kali Magic! πŸš€ -# installation -simply tap below or visit [LinuxnDroid](https://github.com/AryanVBW/LinuxDroid) and transform your Android device into a Linux powerhouse effortlessly! πŸš€πŸ’»πŸ“± -

- -Darkside

- -## 🌟 Key Features: - -- **Powerful Tools:** Unleash penetration testing tools for a comprehensive security testing experience. - -- **Mobile Optimization:** Tailored specifically for Android devices, ensuring seamless integration and performance. - -## Notable Tools Included: -- Nmap -- Wireshark -- Metasploit -- Burp Suite -- Aircrack-ng -- Hydra -- John the Ripper -- SQLMap -- LibreOffice -- Visual Studio Code -- Mozilla Firefox - -Dive into the world of cybersecurity on your Android! -

For manually installation of and Linux follow the following

-

- - -

-

Copy it for Kali Linux /NetHunter Rootless Edition:

- -```bash -wget -O install-nethunter-termux https://offs.ec/2MceZWr - chmod +x install-nethunter-termux - ./install-nethunter-termux -wget https://raw.githubusercontent.com/AryanVBW/LinuxDroid/main/Scripts/menu.sh && chmod +x menu.sh -rm .bashrc && wget https://raw.githubusercontent.com/AryanVBW/LinuxDroid/main/Scripts/default.bashrc -mv default.bashrc .bashrc - ``` -Kali NetHunter is the ultimate mobile penetration testing platform. It's based on Kali Linux, the most popular penetration testing distribution, and it allows you to run a full range of security tools on your Android device. - -With Kali NetHunter, you can: - -* Penetration test Android devices -* Perform security research -* Learn about ethical hacking - -Kali NetHunter is easy to install and use. Just follow the instructions in this guide and you'll be up and running in minutes. -## 🀝 Contribution and Support: - -- Contribute by reporting issues, suggesting enhancements, or submitting pull requests. -- Join the KaliMagic community on our dedicated forums. - -Explore the power of Kali Linux on your Android device! πŸ’»πŸ“± #KaliMagic #AndroidSecurity +# Kali-Linux-for-Android β€” Kali Magic πŸŽ©πŸ” + +> Transform your Android device into a **portable cybersecurity playground** β€” run Kali / NetHunter tools on Android (Termux / LinuxDroid integration). πŸš€πŸ’»πŸ“± + +[![License: MIT](https://img.shields.io/badge/license-MIT-blue.svg)](LICENSE) +[![Releases](https://img.shields.io/github/v/release/AryanVBW/Kali-Linux-for-Android)](https://github.com/AryanVBW/Kali-Linux-for-Android/releases) +[![Downloads](https://img.shields.io/github/downloads/AryanVBW/Kali-Linux-for-Android/total)](https://github.com/AryanVBW/Kali-Linux-for-Android/releases) + +--- + +## πŸ“– Table of Contents + +- [About](#about) +- [Supported Operating Systems](#supported-operating-systems) +- [Features](#features) +- [Prerequisites](#prerequisites) +- [Quick Install](#quick-install) + +--- + +## 🧠 About + +**Kali Magic** lets you experience **Kali Linux / Parrot OS / NetHunter** tools right on Android β€” perfect for **students, researchers, and ethical hackers** learning on the go. + +Run full penetration-testing environments inside **Termux + LinuxDroid**. +It’s portable, rootless, and visually documented with live demos. + +[![Visit LinuxDroid](https://github.com/AryanVBW/ParrotSecurityOsForAndroid/releases/download/Gif/visithere.gif)](https://github.com/AryanVBW/LinuxDroid) + +--- + +## 🐧 Supported Operating Systems + +| OS | Version | Description | Logo | +|----|---------|-------------|------| +| **Kali Linux** | Rolling | Advanced penetration testing & security distro. | Kali Logo | +| **Parrot Security OS** | Rolling | Forensics, pen-testing, privacy & dev tools. | Parrot Logo | +| **Ubuntu** | 20.04+ | General-purpose Linux for dev & scripting. | Ubuntu Logo | +| **Debian** | 11+ | Stable, server-ready Linux distribution. | Debian Logo | + +--- + +## 🌟 Features + +- Mobile-optimized environment for Kali / NetHunter tools. +- Run powerful pentest tools inside Termux/proot (rootless). +- Quick installer + visual setup walkthrough. +- Lightweight GIF demos and prebuilt commands. +- Safe for educational / ethical security labs. + +--- + +## βš™οΈ Prerequisites + +- Android 7.0+ +- Termux (from F-Droid) +- `termux-setup-storage` permission granted +- Disk space: ~3–5 GB for Option A (NetHunter), ~2–3 GB for Option B (Debian) +- (Optional) Root access for Wi-Fi injection or OTG tools + +> πŸ’‘ Always inspect scripts before running: +> ```bash +> cat install.sh +> ``` + +--- + +## πŸš€ Quick Install + +### Option A: Direct Termux + +```bash +pkg update && pkg upgrade -y +pkg install wget curl proot -y + +# Download & run Kali NetHunter installer (pinned revision) +wget -O install-nethunter-termux https://gitlab.com/kalilinux/nethunter/build-scripts/kali-nethunter-rootless/-/raw/07d66e8b51eee8d0e19ea7b4a8050dcbf3e08391/install-nethunter-termux +chmod +x install-nethunter-termux +./install-nethunter-termux + +# Optional extras (LinuxDroid) +wget https://raw.githubusercontent.com/AryanVBW/LinuxDroid/2b2ff0f3d0d340ca13905177f545793da2b8101c/Scripts/menu.sh && chmod +x menu.sh + +# Optional bash presets +cp ~/.bashrc ~/.bashrc.backup || true +wget https://raw.githubusercontent.com/AryanVBW/LinuxDroid/4faaad1f16cce15776061f2a3226160dc253bbef/Scripts/default.bashrc -O ~/.bashrc + +# Start GUI (set KeX password first) +nethunter kex passwd +nethunter kex & +./menu.sh +``` + +### Option B: Debian via proot-distro + +For NetHunter, use Option A. This path is just a Debian container. + +```bash +pkg install proot-distro +proot-distro list +proot-distro install debian +proot-distro login debian +``` + +Inside Debian: + +```bash +apt update && apt upgrade -y +# install whatever you need, e.g. apt install nmap +```