OWScan in Termux – Installation & Usage Commands

OWScan is a lightweight web scanning tool that helps collect information about websites and identify basic security weaknesses. It runs directly in Termux using PHP and provides a simple command-line interface for performing quick website reconnaissance tasks on Android. The tool is easy to install and useful for beginners learning basic web security and scanning techniques. You can use this tool for:

  • Website fingerprinting
  • Basic vulnerability scanning
  • Simple command-line interface
  • Lightweight and beginner-friendly
  • Works directly in Termux

Installation Commands

Update Termux packages:

pkg update && pkg upgrade -y

Install required packages:

pkg install git php -y

Clone OWScan from GitHub:

git clone https://github.com/Gameye98/OWScan

Go to OWScan directory:

cd OWScan

Give executable permission:

chmod +x *

Usage Commands

Start OWScan:

php owscan.php

Enter target website:

example.com

Now the tool will scan the website and show you the available informations.

READ ALSO  Sqlmap in Termux – Installation & Usage Commands

Leave a Comment