├── .editorconfig ├── .github └── CONTRIBUTING.md ├── .gitignore ├── LICENSE ├── README.md ├── pylintrc └── src ├── main.py └── slow_loris ├── __init__.py ├── client.py ├── connection.py ├── helpers.py ├── target.py └── user_agent.py /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProjectMayhem/PySlowLoris/HEAD/.editorconfig -------------------------------------------------------------------------------- /.github/CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProjectMayhem/PySlowLoris/HEAD/.github/CONTRIBUTING.md -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProjectMayhem/PySlowLoris/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProjectMayhem/PySlowLoris/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProjectMayhem/PySlowLoris/HEAD/README.md -------------------------------------------------------------------------------- /pylintrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProjectMayhem/PySlowLoris/HEAD/pylintrc -------------------------------------------------------------------------------- /src/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProjectMayhem/PySlowLoris/HEAD/src/main.py -------------------------------------------------------------------------------- /src/slow_loris/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProjectMayhem/PySlowLoris/HEAD/src/slow_loris/__init__.py -------------------------------------------------------------------------------- /src/slow_loris/client.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProjectMayhem/PySlowLoris/HEAD/src/slow_loris/client.py -------------------------------------------------------------------------------- /src/slow_loris/connection.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProjectMayhem/PySlowLoris/HEAD/src/slow_loris/connection.py -------------------------------------------------------------------------------- /src/slow_loris/helpers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProjectMayhem/PySlowLoris/HEAD/src/slow_loris/helpers.py -------------------------------------------------------------------------------- /src/slow_loris/target.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProjectMayhem/PySlowLoris/HEAD/src/slow_loris/target.py -------------------------------------------------------------------------------- /src/slow_loris/user_agent.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProjectMayhem/PySlowLoris/HEAD/src/slow_loris/user_agent.py --------------------------------------------------------------------------------