Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/aldo-moreno-leon/ORtester
Open Redirect scanner - (out of date)
https://github.com/aldo-moreno-leon/ORtester
bugbounty pentest-tool
Last synced: 3 months ago
JSON representation
Open Redirect scanner - (out of date)
- Host: GitHub
- URL: https://github.com/aldo-moreno-leon/ORtester
- Owner: aldo-moreno-leon
- License: gpl-3.0
- Created: 2019-01-17T06:04:38.000Z (almost 6 years ago)
- Default Branch: master
- Last Pushed: 2022-11-27T08:38:33.000Z (almost 2 years ago)
- Last Synced: 2024-07-30T14:19:01.719Z (3 months ago)
- Topics: bugbounty, pentest-tool
- Language: Python
- Homepage:
- Size: 116 KB
- Stars: 28
- Watchers: 3
- Forks: 10
- Open Issues: 4
-
Metadata Files:
- Readme: README.md
- License: LICENSE.md
Awesome Lists containing this project
- awesome-hacking-lists - aldo-moreno-leon/ORtester - Open Redirect scanner - (out of date) (Python)
README
## About ORtester
ORtester is a tool designed to detect open redirects vulnerabilities on websites. It helps penetration testers and bug hunters find open redirect bugs through a scan supported by a list of payloads.
## Screenshot
![Alt text](https://github.com/Geek-Pwn/ORtester/blob/master/banner.PNG?raw=true)## Installation
git clone https://github.com/Leonmugen/ORtester.git## Dependencies
ORtester use requests and tldextract python modules.
```
sudo pip install -r requirements.txt
```## Usage
| Short form | Long form | Description |
| --- | --- | --- |
| -u | --url | URL to fuzz |
| -f | --file | File with the list of payloads |
| -h | --help | Show the help message |## Examples
* To scan an URL:
```
python ortester.py -u https://www.example.com/redirect.php?url= -f all.list
```
```
python ortester.py --url https://www.example.com/redirect.php?url= --file all.list
```