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 -yInstall Git and Python.
pkg install git python -yClone the Oralyzer repository.
git clone https://github.com/r0075h3ll/OralyzerGo to the Oralyzer directory.
cd OralyzerInstall the required Python packages.
pip install -r requirements.txtRun Oralyzer.
python3 oralyzer.py -hOralyzer 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.txtTest for CRLF injection.
python3 oralyzer.py -u "https://example.com" -crlfUse payloads from a file.
python3 oralyzer.py -u "https://example.com" -p payloads.txtUse a proxy.
python3 oralyzer.py -u "https://example.com" --proxyFetch URLs from Wayback Machine.
python3 oralyzer.py -u "https://example.com" --waybackDisplay the help menu.
python3 oralyzer.py -hYou 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" --waybackOnly 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.

