mirror of https://github.com/Askill/slowloris.git
12 lines
362 B
Python
12 lines
362 B
Python
|
|
from distutils.core import setup
|
||
|
|
setup(
|
||
|
|
name = "Slowloris",
|
||
|
|
py_modules = ["slowloris"],
|
||
|
|
version = "0.1",
|
||
|
|
description = "Low bandwidth DoS tool. Slowloris rewrite in Python.",
|
||
|
|
author = "Gokberk Yaltirakli",
|
||
|
|
author_email = "webdosusb@gmail.com",
|
||
|
|
url = "https://github.com/gkbrk/slowloris",
|
||
|
|
keywords = ["dos", "http", "slowloris"]
|
||
|
|
)
|