Date: Fri, 19 Jul 2019 09:26:41 +0000 (UTC) From: Yuri Victorovich <yuri@FreeBSD.org> To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r506919 - in head/www: . slowhttptest slowhttptest/files Message-ID: <201907190926.x6J9QfGp048752@repo.freebsd.org>
next in thread | raw e-mail | index | archive | help
Author: yuri Date: Fri Jul 19 09:26:40 2019 New Revision: 506919 URL: https://svnweb.freebsd.org/changeset/ports/506919 Log: New port: www/slowhttptest: Application Layer DoS attack simulator for pentesting Added: head/www/slowhttptest/ head/www/slowhttptest/Makefile (contents, props changed) head/www/slowhttptest/distinfo (contents, props changed) head/www/slowhttptest/files/ head/www/slowhttptest/files/patch-src_Makefile.am (contents, props changed) head/www/slowhttptest/pkg-descr (contents, props changed) Modified: head/www/Makefile Modified: head/www/Makefile ============================================================================== --- head/www/Makefile Fri Jul 19 09:20:49 2019 (r506918) +++ head/www/Makefile Fri Jul 19 09:26:40 2019 (r506919) @@ -2226,6 +2226,7 @@ SUBDIR += sitecopy SUBDIR += skytemplate SUBDIR += slowcgi + SUBDIR += slowhttptest SUBDIR += smarty2 SUBDIR += smarty3 SUBDIR += smb_auth Added: head/www/slowhttptest/Makefile ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/www/slowhttptest/Makefile Fri Jul 19 09:26:40 2019 (r506919) @@ -0,0 +1,22 @@ +# $FreeBSD$ + +PORTNAME= slowhttptest +DISTVERSIONPREFIX= v +DISTVERSION= 1.7 +CATEGORIES= www + +MAINTAINER= yuri@FreeBSD.org +COMMENT= Application Layer DoS attack simulator for pentesting + +LICENSE= APACHE20 +LICENSE_FILE= ${WRKSRC}/COPYING + +USES= autoreconf ssl +GNU_CONFIGURE= yes +USE_GITHUB= yes +GH_ACCOUNT= shekyan + +PLIST_FILES= bin/slowhttptest \ + man/man1/slowhttptest.1.gz + +.include <bsd.port.mk> Added: head/www/slowhttptest/distinfo ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/www/slowhttptest/distinfo Fri Jul 19 09:26:40 2019 (r506919) @@ -0,0 +1,3 @@ +TIMESTAMP = 1563526512 +SHA256 (shekyan-slowhttptest-v1.7_GH0.tar.gz) = 9fd3ce4b0a7dda2e96210b1e438c0c8ec924a13e6699410ac8530224b29cfb8e +SIZE (shekyan-slowhttptest-v1.7_GH0.tar.gz) = 117115 Added: head/www/slowhttptest/files/patch-src_Makefile.am ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/www/slowhttptest/files/patch-src_Makefile.am Fri Jul 19 09:26:40 2019 (r506919) @@ -0,0 +1,12 @@ +--- src/Makefile.am.orig 2019-07-19 09:10:22 UTC ++++ src/Makefile.am +@@ -1,7 +1,7 @@ + AUTOMAKE_OPTIONS = foreign + +-FLAGS=@CFLAGS@ -Wall -I/usr/local/include +-LDFLAGS=@LDFLAGS@ -L/usr/local/lib -lssl ++FLAGS=@CFLAGS@ -Wall ++LDFLAGS=@LDFLAGS@ + + bin_PROGRAMS = slowhttptest + slowhttptest_SOURCES = slowhttptestmain.cc slowhttptest.cc slowsocket.cc slowstats.cc slowurl.cc slowlog.cc text-generator.cc range-generator.cc slowhttptest.h slowsocket.h slowstats.h slowurl.h slowlog.h text-generator.h range-generator.h Added: head/www/slowhttptest/pkg-descr ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/www/slowhttptest/pkg-descr Fri Jul 19 09:26:40 2019 (r506919) @@ -0,0 +1,11 @@ +SlowHTTPTest is a highly configurable tool that simulates some Application +Layer Denial of Service attacks by prolonging HTTP connections in different +ways. + +Use it to test your web server for DoS vulnerabilites, or just to figure out +how many concurrent connections it can handle. SlowHTTPTest works on majority +of Linux platforms, OS X and Cygwin - a Unix-like environment and command-line +interface for Microsoft Windows, and comes with a Dockerfile to make things even +easier. + +WWW: https://github.com/shekyan/slowhttptest
Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201907190926.x6J9QfGp048752>