AUXILE is a simple Python-based security framework that provides multiple modules for information gathering, web scanning, encryption, and security testing. It offers an interactive command-line interface where you can load different modules and access their available commands. AUXILE is useful for learning security tools and performing authorized security testing in Termux.
Here’s what you can do with AUXILE in Termux:
- Perform information gathering.
- Use web scanning modules.
- Access encryption and hashing tools.
- Check available framework modules.
- Update the AUXILE framework.
- Learn different security commands.
Install AUXILE in Termux
Below are the simple commands to install AUXILE in Termux. Copy and run each command one by one to install the framework.
Update Termux packages.
pkg update && pkg upgrade -yInstall Git and Python 2.
pkg install git python2 -yClone the AUXILE repository.
git clone https://github.com/CiKu370/AUXILE.gitGo to the AUXILE directory.
cd AUXILEGive execute permission to the main file.
chmod 777 AUXILE.pyInstall the required Python packages.
pip2 install -r requirements.txtRun the AUXILE framework.
python2 AUXILE.pyAUXILE is now installed and ready to use.
AUXILE Usage Commands
After starting AUXILE, you can use the following commands to access different modules and framework options.
Show the help menu.
helpDisplay all available modules.
modulesUse the information gathering module.
use infogaUse the web scanners module.
use scannersUse the exploits module.
use exploitsUse the encryption module.
use encryptionUpdate the AUXILE framework.
updateExit the framework.
quitAUXILE Modules
AUXILE includes several built-in modules for different security tasks.
Information Gathering Module
Load the module.
use infogaAvailable commands include:
- Traceroute
- Nping
- DNS lookup
- Reverse DNS lookup
- Host search
- Shared DNS lookup
- Zone transfer test
- WHOIS lookup
- GeoIP lookup
- Reverse IP lookup
- Subnet lookup
- HTTP headers check
- Page links extraction
- MX records lookup
Scanners Module
Load the module.
use scannersAvailable commands include:
- Dork scanner
- Domain age checker
- CMS detection
- Hacked email checker
- Subdomain scanner
- Honeypot detector
- Advanced Nmap
- TCP port scanner
- Default password search
- Hash checker
- Remote code execution scanner
Exploits Module
Load the module.
use exploitsThis module contains exploit-related plugins for security research and testing. Use them only on systems you own or have explicit permission to test.
Encryption Module
Load the module.
use encryptionAvailable commands include:
- Base16 encoding
- Base32 encoding
- Base64 encoding
- Binary conversion
- Decimal conversion
- Hexadecimal conversion
- Reverse strings
- ROT13 cipher
- MD4 hashing
- MD5 hashing
- SHA1 hashing
- SHA224 hashing
- SHA256 hashing
- SHA384 hashing
- SHA512 hashing
- RIPEMD160 hashing
- Whirlpool hashing
You can use these modules to explore the framework and learn its available features for authorized security testing.
End Note
AUXILE provides a collection of useful modules for information gathering, web scanning, and encryption. It is easy to use and helps you explore different security tools and commands in Termux for educational purposes.

