WhatWeb is a web technology identification tool. It helps you find what technologies a website is using, such as CMS, frameworks, server type, plugins, and more. It is very useful during reconnaissance and website analysis.
Installation Commands
Update Termux and install required packages:
pkg update && pkg upgrade && pkg install git ruby -yInstall Bundler (required for gems):
gem install bundlerClone the official repository:
git clone https://github.com/urbanadventurer/WhatWeb.gitMove into the directory:
cd WhatWebInstall required Ruby dependencies:
bundle installNow run WhatWeb:
ruby whatweb https://example.com(Optional) Make it global:
ln -s $PWD/whatweb $PREFIX/bin/whatwebUsage Commands
Scan a website:
whatweb https://example.comScan multiple websites:
whatweb -i targets.txtIncrease scan level:
whatweb -a 3 https://example.comAggressive scan:
whatweb -a 4 https://example.comSave output to file:
whatweb https://example.com -o result.txtVerbose mode:
whatweb -v https://example.com