Amass in Termux – Installation & Usage Commands

Amass is a popular OSINT tool used to collect information about a domain, especially subdomains. It helps you discover hidden assets and understand how a website is structured. You can quickly set up Amass and start collecting useful domain information in a simple and practical way.

Installation Commands

Update and upgrade Termux packages:

pkg update && pkg upgrade

Install required packages (Go and Git):

pkg install git golang

Download and install Amass using Go:

go install github.com/owasp-amass/amass/v4/...@latest

Add Go binary path to system (important):

export PATH=$PATH:$(go env GOPATH)/bin

Check if Amass is installed successfully:

amass -version

Usage Commands

Find subdomains of a target domain:

amass enum -d example.com

Use passive mode (faster and safe):

amass enum -passive -d example.com

Save output to a file:

amass enum -d example.com -o result.txt

Use brute-force mode for more results:

amass enum -brute -d example.com

Enumerate multiple domains:

amass enum -d example.com -d test.com
READ ALSO  GhostTrack in Termux – Installation and Usage Commands

Leave a Comment