Website Information Gathering Tool – WebExtractor Installation & Usage Commands

WebExtractor is a simple information gathering OSINT tool that collects phone numbers, emails, and all available links from a specific URL. It works directly from the Termux terminal using Python and helps in gathering publicly available website information. It can be used for website analysis, reconnaissance practice, and collecting publicly accessible data from web pages.

Installation Commands

Update Termux packages:

pkg update && pkg upgrade -y

Install required packages:

pkg install git python -y

Clone the WebExtractor repository:

git clone https://github.com/s-r-e-e-r-a-j/WebExtractor

Move to the tool directory:

cd WebExtractor

Install Python requirements:

pip install -r requirements.txt

Run the tool:

python webextractor.py

Usage Commands

Start WebExtractor:

python webextractor.py

After starting the tool, it will ask for the target website URL and the type of information you want to collect.

[+] Enter a valid URL: https://www.google.com
[?] Scrape emails? (y/n): y
[?] Scrape phone numbers? (y/n): y
[?] Scrape links? (y/n): y

Choose y for yes or n for no according to the information you want to extract, and the tool will automatically scan the website and display the available results inside the Termux terminal.

READ ALSO  Download Official Termux APK (Latest Version 2026) – Free for Android

Leave a Comment