Oralyzer in Termux – Open Redirect Vulnerability Scanner

Oralyzer is a simple web security tool used to test URLs for open redirect vulnerabilities. It can scan one URL or multiple URLs from a file and supports different testing options. You can also use custom payloads, a proxy, and Wayback Machine URLs. Oralyzer is useful for learning basic URL security testing in Termux.

Here’s what you can do with Oralyzer in Termux:

  • Scan a single target.
  • Scan multiple targets from a file.
  • Test for CRLF injection.
  • Use custom payloads.
  • Use a proxy.
  • Fetch URLs from Wayback Machine.
  • Learn about open redirect testing.

Install Oralyzer in Termux

Below are the simple commands to install Oralyzer in Termux. Copy and run each command one by one to install the tool.

Update Termux packages.

pkg update && pkg upgrade -y

Install Git and Python.

pkg install git python -y

Clone the Oralyzer repository.

git clone https://github.com/r0075h3ll/Oralyzer

Go to the Oralyzer directory.

cd Oralyzer

Install the required Python packages.

pip install -r requirements.txt

Run Oralyzer.

python3 oralyzer.py -h

Oralyzer is now installed and ready to use.

Use Oralyzer in Termux

After installing Oralyzer, you can use different options to scan URLs and test for open redirect vulnerabilities.

Scan a single target.

python3 oralyzer.py -u "https://example.com"

Scan multiple targets from a file.

python3 oralyzer.py -l urls.txt

Test for CRLF injection.

python3 oralyzer.py -u "https://example.com" -crlf

Use payloads from a file.

python3 oralyzer.py -u "https://example.com" -p payloads.txt

Use a proxy.

python3 oralyzer.py -u "https://example.com" --proxy

Fetch URLs from Wayback Machine.

python3 oralyzer.py -u "https://example.com" --wayback

Display the help menu.

python3 oralyzer.py -h

You can combine different options when needed. For example, you can scan a target and use archived URLs with the following command:

python3 oralyzer.py -u "https://example.com" --wayback

Only test websites that you own or have permission to assess. Security testing without permission may be illegal.

End Note

Oralyzer is a simple tool for checking URLs and learning about open redirect vulnerabilities. It provides different options for testing single or multiple targets. You can use it from Termux to practice basic web security testing on authorized websites.

SHARE THIS POST: