Cariddi in Termux – Installation & Usage Guide

Cariddi is a simple and powerful web reconnaissance tool that helps you discover URLs, parameters, JavaScript files, and other useful information from websites. It can crawl web pages, collect endpoints, and help you gather data for security testing. It also supports searching for secrets, errors, and useful information during the scan.

Here’s what you can do with Cariddi in Termux:

  • Crawl websites and collect URLs.
  • Find hidden endpoints.
  • Discover JavaScript files.
  • Search for secrets and errors.
  • Save scan results to files.
  • Learn web reconnaissance techniques.

Install Cariddi in Termux

Follow the commands below to install Cariddi in Termux. Copy and run each command one by one to install the tool and prepare it for web reconnaissance.

Update Termux packages.

pkg update && pkg upgrade -y

Install the required packages.

pkg install git golang -y

Clone the Cariddi repository.

git clone https://github.com/edoardottt/cariddi.git

Move into the project directory.

cd cariddi

Download the required Go packages.

go get ./...

Build and install Cariddi.

go install ./cmd/cariddi

Add the Go binary directory to your PATH.

export PATH=$PATH:$HOME/go/bin

Verify the installation.

cariddi -h

Cariddi is now installed and ready to use.

Use Cariddi in Termux

After installing Cariddi in Termux, you can use the following commands to crawl websites and collect reconnaissance data.

Display the help menu.

cariddi -h

Print usage examples.

cariddi -examples

Scan a website.

echo "https://example.com" | cariddi

Hunt for endpoints.

echo "https://example.com" | cariddi -e

Search for secrets.

echo "https://example.com" | cariddi -s

Search for useful information.

echo "https://example.com" | cariddi -info

Search for website errors.

echo "https://example.com" | cariddi -err

Use a random User-Agent.

echo "https://example.com" | cariddi -rua

Output results in JSON format.

echo "https://example.com" | cariddi -json

Save the results to a text file.

echo "https://example.com" | cariddi -ot results.txt

Save the results to an HTML file.

echo "https://example.com" | cariddi -oh results.html

Show the installed version.

cariddi -version

Cariddi will automatically crawl the target website, collect useful information, and display the results in the Termux terminal.

End Note

Cariddi helps you collect URLs, endpoints, JavaScript files, secrets, and other useful information from websites using simple commands. It is a useful tool for web reconnaissance, bug bounty learning, and security research in Termux.

SHARE THIS POST: