AUXILE in Termux – Information Gathering and Security Framework

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 -y

Install Git and Python 2.

pkg install git python2 -y

Clone the AUXILE repository.

git clone https://github.com/CiKu370/AUXILE.git

Go to the AUXILE directory.

cd AUXILE

Give execute permission to the main file.

chmod 777 AUXILE.py

Install the required Python packages.

pip2 install -r requirements.txt

Run the AUXILE framework.

python2 AUXILE.py

AUXILE 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.

help

Display all available modules.

modules

Use the information gathering module.

use infoga

Use the web scanners module.

use scanners

Use the exploits module.

use exploits

Use the encryption module.

use encryption

Update the AUXILE framework.

update

Exit the framework.

quit

AUXILE Modules

AUXILE includes several built-in modules for different security tasks.

Information Gathering Module

Load the module.

use infoga

Available 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 scanners

Available 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 exploits

This 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 encryption

Available 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.

SHARE THIS POST: