├── LICENSE ├── README.md ├── core ├── __init__.py ├── crlf.py ├── others.py └── wayback.py ├── oralyzer.py ├── payloads.txt └── requirements.txt /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r0075h3ll/Oralyzer/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r0075h3ll/Oralyzer/HEAD/README.md -------------------------------------------------------------------------------- /core/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r0075h3ll/Oralyzer/HEAD/core/__init__.py -------------------------------------------------------------------------------- /core/crlf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r0075h3ll/Oralyzer/HEAD/core/crlf.py -------------------------------------------------------------------------------- /core/others.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r0075h3ll/Oralyzer/HEAD/core/others.py -------------------------------------------------------------------------------- /core/wayback.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r0075h3ll/Oralyzer/HEAD/core/wayback.py -------------------------------------------------------------------------------- /oralyzer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r0075h3ll/Oralyzer/HEAD/oralyzer.py -------------------------------------------------------------------------------- /payloads.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r0075h3ll/Oralyzer/HEAD/payloads.txt -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- 1 | requests 2 | bs4 3 | urllib3 4 | --------------------------------------------------------------------------------