├── LICENSE.md ├── README.md ├── all.list ├── banner.PNG ├── colorama ├── __init__.py ├── __init__.pyc ├── __pycache__ │ ├── __init__.cpython-35.pyc │ ├── __init__.cpython-36.pyc │ ├── ansi.cpython-35.pyc │ ├── ansi.cpython-36.pyc │ ├── ansitowin32.cpython-35.pyc │ ├── ansitowin32.cpython-36.pyc │ ├── initialise.cpython-35.pyc │ ├── initialise.cpython-36.pyc │ ├── win32.cpython-35.pyc │ ├── win32.cpython-36.pyc │ ├── winterm.cpython-35.pyc │ └── winterm.cpython-36.pyc ├── ansi.py ├── ansi.pyc ├── ansitowin32.py ├── ansitowin32.pyc ├── initialise.py ├── initialise.pyc ├── win32.py ├── win32.pyc ├── winterm.py └── winterm.pyc ├── ortester.py ├── payloads.list └── requirements.txt /LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aldo-moreno-leon/ORtester/HEAD/LICENSE.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aldo-moreno-leon/ORtester/HEAD/README.md -------------------------------------------------------------------------------- /all.list: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aldo-moreno-leon/ORtester/HEAD/all.list -------------------------------------------------------------------------------- /banner.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aldo-moreno-leon/ORtester/HEAD/banner.PNG -------------------------------------------------------------------------------- /colorama/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aldo-moreno-leon/ORtester/HEAD/colorama/__init__.py -------------------------------------------------------------------------------- /colorama/__init__.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aldo-moreno-leon/ORtester/HEAD/colorama/__init__.pyc -------------------------------------------------------------------------------- /colorama/__pycache__/__init__.cpython-35.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aldo-moreno-leon/ORtester/HEAD/colorama/__pycache__/__init__.cpython-35.pyc -------------------------------------------------------------------------------- /colorama/__pycache__/__init__.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aldo-moreno-leon/ORtester/HEAD/colorama/__pycache__/__init__.cpython-36.pyc -------------------------------------------------------------------------------- /colorama/__pycache__/ansi.cpython-35.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aldo-moreno-leon/ORtester/HEAD/colorama/__pycache__/ansi.cpython-35.pyc -------------------------------------------------------------------------------- /colorama/__pycache__/ansi.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aldo-moreno-leon/ORtester/HEAD/colorama/__pycache__/ansi.cpython-36.pyc -------------------------------------------------------------------------------- /colorama/__pycache__/ansitowin32.cpython-35.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aldo-moreno-leon/ORtester/HEAD/colorama/__pycache__/ansitowin32.cpython-35.pyc -------------------------------------------------------------------------------- /colorama/__pycache__/ansitowin32.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aldo-moreno-leon/ORtester/HEAD/colorama/__pycache__/ansitowin32.cpython-36.pyc -------------------------------------------------------------------------------- /colorama/__pycache__/initialise.cpython-35.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aldo-moreno-leon/ORtester/HEAD/colorama/__pycache__/initialise.cpython-35.pyc -------------------------------------------------------------------------------- /colorama/__pycache__/initialise.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aldo-moreno-leon/ORtester/HEAD/colorama/__pycache__/initialise.cpython-36.pyc -------------------------------------------------------------------------------- /colorama/__pycache__/win32.cpython-35.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aldo-moreno-leon/ORtester/HEAD/colorama/__pycache__/win32.cpython-35.pyc -------------------------------------------------------------------------------- /colorama/__pycache__/win32.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aldo-moreno-leon/ORtester/HEAD/colorama/__pycache__/win32.cpython-36.pyc -------------------------------------------------------------------------------- /colorama/__pycache__/winterm.cpython-35.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aldo-moreno-leon/ORtester/HEAD/colorama/__pycache__/winterm.cpython-35.pyc -------------------------------------------------------------------------------- /colorama/__pycache__/winterm.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aldo-moreno-leon/ORtester/HEAD/colorama/__pycache__/winterm.cpython-36.pyc -------------------------------------------------------------------------------- /colorama/ansi.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aldo-moreno-leon/ORtester/HEAD/colorama/ansi.py -------------------------------------------------------------------------------- /colorama/ansi.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aldo-moreno-leon/ORtester/HEAD/colorama/ansi.pyc -------------------------------------------------------------------------------- /colorama/ansitowin32.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aldo-moreno-leon/ORtester/HEAD/colorama/ansitowin32.py -------------------------------------------------------------------------------- /colorama/ansitowin32.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aldo-moreno-leon/ORtester/HEAD/colorama/ansitowin32.pyc -------------------------------------------------------------------------------- /colorama/initialise.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aldo-moreno-leon/ORtester/HEAD/colorama/initialise.py -------------------------------------------------------------------------------- /colorama/initialise.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aldo-moreno-leon/ORtester/HEAD/colorama/initialise.pyc -------------------------------------------------------------------------------- /colorama/win32.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aldo-moreno-leon/ORtester/HEAD/colorama/win32.py -------------------------------------------------------------------------------- /colorama/win32.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aldo-moreno-leon/ORtester/HEAD/colorama/win32.pyc -------------------------------------------------------------------------------- /colorama/winterm.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aldo-moreno-leon/ORtester/HEAD/colorama/winterm.py -------------------------------------------------------------------------------- /colorama/winterm.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aldo-moreno-leon/ORtester/HEAD/colorama/winterm.pyc -------------------------------------------------------------------------------- /ortester.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aldo-moreno-leon/ORtester/HEAD/ortester.py -------------------------------------------------------------------------------- /payloads.list: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aldo-moreno-leon/ORtester/HEAD/payloads.list -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- 1 | requests 2 | tldextract 3 | --------------------------------------------------------------------------------