Skip to content

Latest commit

Β 

History

362 Commits

Folders and files

NameName
Last commit message
Last commit date
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 

Repository files navigation

TermuxVoid

Unofficial APT Repository: 220+ Ethical Hacking & Pentesting Packages

πŸ“– Table of Contents


πŸ“‹ Prerequisites

Before using TermuxVoid, ensure your environment meets these requirements:

  • Termux installed from F-Droid (recommended) or GitHub
  • Android 7+ with ~2GB free storage for larger tools
  • Working internet connection for package downloads
  • No root required for most tools (some may need root for certain features)

πŸ” Project Overview

TermuxVoid is an unofficial custom APT repository that bridges the gap between mobile convenience and professional security auditing. We host 220+ advanced security tools that are not available in the official Termux repositories. Package installation happens on your device: depending on the tool, the package may build from source, install an upstream dependency, or download an upstream release.

Whether you are a professional penetration tester or an ethical hacking enthusiast, TermuxVoid turns your Android device into a portable powerhouse.

Note

This repository contains tools that are often excluded from official sources due to complexity, licensing, or security sensitivity. Read a package's installation script and its upstream source before installing it.

Security & Transparency

TermuxVoid is an unofficial, community-maintained repository. Package definitions and lifecycle scripts are published here so you can inspect what runs on installation and removal. A package may build from source on your device, install through an upstream package manager, or download an upstream release; the package script is the source of truth.

Each package lives in packages/<name>/ and normally ships a standard Debian layout under DEBIAN/:

  • control β€” metadata (name, version, dependencies, description)
  • preinst β€” pre-install checks (e.g. architecture validation)
  • postinst β€” performs installation (such as building, downloading, or linking the tool)
  • postrm β€” removes files created by the package when possible

What packages doβ€”and do notβ€”change

  • No package modifies $PATH, $HOME, $PREFIX, or any other Termux environment variable.
  • Most tool packages do not alter existing Termux configuration and expose commands through symlinks or package-manager-installed commands instead of environment mutation.
  • Packages whose stated purpose is shell styling, themes, desktop environments, or similar customization may create or change relevant configuration files. Read their scripts carefully before installation and removal.
  • Uninstall scripts are intended to remove files created by the package. Preserve your own configuration backups, especially before installing customization packages.

Before you install

Security tools are powerful and many have dual-use capabilities. Use them only on systems and data you own or are explicitly authorized to test. Do not install a package solely because it is listed here.

  1. Read packages/<name>/DEBIAN/control, preinst, postinst, and postrm (where present).
  2. Check every download URL, Git repository, package-manager command, and configuration change in those scripts.
  3. Review the upstream tool and its license, then install it in a test environment first if it is unfamiliar.
  4. Keep backups of personal configuration before installing shell, theme, or desktop packages.

Don't trust β€” verify. See CONTRIBUTING.md for the package layout and SECURITY.md for the security policy.

Package-source expectations

When a package obtains software from upstream, its scripts should make the source auditable. Contributors should provide the upstream project URL, use a pinned release, tag, or commit where practical, and verify an upstream checksum or signature when one is available. Review every network download, upstream package-manager command, file/configuration change, exposed command, and uninstall action before installing.

πŸš€ Quick Installation

Getting started is seamless. Run the following one-liner in your Termux terminal to add the repository automatically:

# Add repository
curl -sL https://github.com/termuxvoid/repo/raw/main/install.sh | bash

Warning

Piping a remote script directly to bash executes it immediately. For maximum transparency, download and inspect install.sh first, then run it locally.

Once the repository is added, you can install any tool using pkg install:

# Install any tool
pkg install <tool-name>

# Example
pkg install metasploit-framework

Tip

After installation, run pkg update to refresh your local package database. You can search for tools using pkg search <tool-name>.

Note

Removing the TermuxVoid repository later does not remove packages you already installed. Use the package manager to remove individual packages; see the uninstall instructions to remove only the repository source and key.

✨ Featured Tools

We provide a curated selection of industry-standard tools. Here are some highlights:

Tool Category Description
Metasploit Framework Exploitation The world's most used penetration testing framework.
Burp Suite Web Security Leading toolkit for web application security testing.
Ghidra Reverse Eng. NSA's high-end software reverse engineering suite.
THC Hydra Password Cracking Fast network logon cracker supporting many protocols.
SQLMap Web Security Automatic SQL injection and database takeover tool.
πŸ“Š View Mermaid Architecture
graph TD
    A[TermuxVoid Repo] -->|Provides| B[Exploitation]
    A -->|Provides| C[Reverse Engineering]
    A -->|Provides| D[Network Scanning]
    A -->|Provides| E[Password Attacks]

    B --> B1[Metasploit]
    B --> B2[SQLMap]

    C --> C1[Ghidra]
    C --> C2[Radare2]

    D --> D1[Nmap]
    D --> D2[Netcat]

    E --> E1[Hydra]
    E --> E2[John the Ripper]
Loading

🧠 AI Agents

Tool Description
opencode AI-powered coding assistant
claude-code AI-powered coding assistant by Anthropic
antigravity-cli AI coding assistant (glibc wrapper)
copilot-cli GitHub Copilot CLI β€” AI-powered assistance in your terminal
codex-cli Codex CLI by OpenAI β€” lightweight AI-powered coding agent in your terminal
mimocode Autonomous AI engineer β€” creates, modifies, tests, deploys code
openclaude Open-source coding-agent CLI for cloud & local LLMs
hermes-agent AI-powered coding assistant and workflow automation tool
kimi-code AI-powered coding assistant for the terminal by Moonshot AI
mmx-cli CLI tool for MiniMax AI – chat, completion, and image generation from the terminal

Legal & Disclaimer

These tools are provided for educational and authorized security research only. You are responsible for ensuring your use complies with all applicable laws and regulations. Unauthorized access to systems you do not own or lack explicit permission to test is illegal. The maintainers assume no responsibility for any misuse.

❓ Frequently Asked Questions

Are these tools safe to use on a personal device?
Yes, all packages are built from source directly on your device during installation. This means no pre-compiled binaries are shipped β€” each tool is compiled and installed for your specific Termux environment. However, these are powerful security tools; ensure you understand what a tool does before executing it to avoid unintended system modifications.
Are these tools legal to use?
All tools are for legal security research and ethical hacking purposes only. Always obtain proper authorization before testing systems you do not own.
Why aren't these in the official repo?
Many of these tools (like Metasploit or Ghidra) have heavy dependencies, large sizes, or licensing complexities that make them difficult to maintain in the official core repositories. We handle the heavy lifting so you don't have to.
How often are tools updated?
- Security patches within 24 hours - Version updates every Sunday - Emergency fixes as needed
How do I request a new package?
We are constantly expanding. You can request new tools via:
  1. Opening a GitHub Issue
  2. Contacting us on Telegram: Telegram @nullxvoid
  3. Sending an email to: termuxvoid@gmail.com
How do I report a broken package?
Open an issue on **[GitHub](https://github.com/TermuxVoid/repo/issues)** with the tool name and error output. We aim to fix reported issues within 24 hours.
How do I uninstall the TermuxVoid repository?
To remove the repository from your Termux environment:
curl -sL https://github.com/termuxvoid/repo/raw/main/uninstall.sh | bash

This removes the repository source and its GPG key, refreshes APT, and does not remove packages you have already installed.

I get a "package not found" error β€” what should I do?
Ensure you have run `pkg update` after adding the repository. If the issue persists, try:
apt update
pkg search <tool-name>

If the tool still doesn't appear, it may have a different package name β€” check the full package list for the exact name.

🌐 Support & Community

Join our growing community of security researchers and mobile hackers.


πŸ› οΈ Contribution & Support

Support the project to help us keep the packages updated and add more tools:

  • ⭐ Star this repository to show your support.
  • πŸ› Report Bugs responsibly via Issues.
  • πŸ“’ Share with the security community.

View Complete Package List Β»

Built with ❀️ for security researchers by Alienkrishn | Built on-device for best compatibility

About

A Third-Party (Unofficial) Termux APT Repository for Cutting-Edge & Custom Packages Main repository

Topics

Resources

Contributing

Security policy

Stars

151 stars

Watchers

3 watching

Forks

Contributors

Languages