Mr. Crawley is a simple web crawler and OSINT tool that helps collect publicly available information from websites. It can crawl web pages, discover links, and gather useful data for website analysis and reconnaissance. You can easily install and use Mr. Crawley in Termux using a few simple commands.
Here’s what you can do with Mr. Crawley in Termux:
- Crawl websites.
- Discover URLs and web pages.
- Analyze website structure.
- Save crawl results to a file.
- Use custom headers and User-Agent.
- Configure threads and request delay.
Install Mr. Crawley in Termux
Below are the simple commands to install Mr. Crawley in Termux. Copy and run each command one by one to install the tool.
Update Termux packages.
pkg update && pkg upgrade -yInstall Git and Python.
pkg install git python -yInstall the required Python modules.
pip install requests beautifulsoup4 termcolorClone the Mr. Crawley repository.
git clone https://github.com/t0nyc23/mr_crawley.gitMove into the project directory.
cd mr_crawleyRun the tool.
python crawley.pyMr. Crawley is now installed and ready to use.
Use Mr. Crawley in Termux
After installing Mr. Crawley, you can use different commands to crawl websites and customize the scan.
Display the help menu.
python crawley.py -hCrawl a target website.
python crawley.py -u https://example.comUse custom HTTP headers.
python crawley.py -u https://example.com -H "Authorization: Bearer TOKEN"Set the number of threads.
python crawley.py -u https://example.com -t 20Save the results to a file.
python crawley.py -u https://example.com -o results.txtUse a custom User-Agent.
python crawley.py -u https://example.com -a "MyUA/0.1"Add a delay between requests.
python crawley.py -u https://example.com -s 1000Use an HTTP proxy.
python crawley.py -u https://example.com -p http://127.0.0.1:8080Enable verbose mode.
python crawley.py -u https://example.com -dEnter the target website URL and run the command. Mr. Crawley will start crawling the website and display the collected information.
End Note
Mr. Crawley is a simple web crawler that helps you collect publicly available information from websites. It is easy to install, easy to use, and a good tool for learning website crawling and basic OSINT in Termux.

