用于HTTP请求的DoS工具(灵感来自Hulk,但功能更多),使用Python编写:
999个线程发送GET请求:
python doser.py -t 999 -g 'https://targeted.site.com'
999个线程发送带有JSON数据的POST请求:
python doser.py -t 999 -p 'https://targeted.site.com' -ah 'Content-Type: application/json' -d '{"json": "payload"}'
usage: doser.py [-h] [-g G] [-p P] [-d D] [-ah AH] [-t T]
可选参数:
-h, --help 显示此帮助信息并退出
-g 指定GET请求。用法:-g '< url >'
-p 指定POST请求。用法:-p '< url >'
-d 为POST请求指定数据载荷
-ah 指定额外的请求头
-t 指定要使用的线程数
用Golang重写 :)