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 -yInstall the required packages.
pkg install git golang -yClone the Cariddi repository.
git clone https://github.com/edoardottt/cariddi.gitMove into the project directory.
cd cariddiDownload the required Go packages.
go get ./...Build and install Cariddi.
go install ./cmd/cariddiAdd the Go binary directory to your PATH.
export PATH=$PATH:$HOME/go/binVerify the installation.
cariddi -hCariddi 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 -hPrint usage examples.
cariddi -examplesScan a website.
echo "https://example.com" | cariddiHunt for endpoints.
echo "https://example.com" | cariddi -eSearch for secrets.
echo "https://example.com" | cariddi -sSearch for useful information.
echo "https://example.com" | cariddi -infoSearch for website errors.
echo "https://example.com" | cariddi -errUse a random User-Agent.
echo "https://example.com" | cariddi -ruaOutput results in JSON format.
echo "https://example.com" | cariddi -jsonSave the results to a text file.
echo "https://example.com" | cariddi -ot results.txtSave the results to an HTML file.
echo "https://example.com" | cariddi -oh results.htmlShow the installed version.
cariddi -versionCariddi 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.
