From owner-svn-ports-all@freebsd.org Fri Jul 19 09:26:42 2019 Return-Path: Delivered-To: svn-ports-all@mailman.nyi.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.nyi.freebsd.org (Postfix) with ESMTP id 7F1A3BD956; Fri, 19 Jul 2019 09:26:42 +0000 (UTC) (envelope-from yuri@FreeBSD.org) Received: from mxrelay.nyi.freebsd.org (mxrelay.nyi.freebsd.org [IPv6:2610:1c1:1:606c::19:3]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) server-signature RSA-PSS (4096 bits) client-signature RSA-PSS (4096 bits) client-digest SHA256) (Client CN "mxrelay.nyi.freebsd.org", Issuer "Let's Encrypt Authority X3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id 631208DB19; Fri, 19 Jul 2019 09:26:42 +0000 (UTC) (envelope-from yuri@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mxrelay.nyi.freebsd.org (Postfix) with ESMTPS id 3D5521EB89; Fri, 19 Jul 2019 09:26:42 +0000 (UTC) (envelope-from yuri@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id x6J9Qgnd048760; Fri, 19 Jul 2019 09:26:42 GMT (envelope-from yuri@FreeBSD.org) Received: (from yuri@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id x6J9QfGp048752; Fri, 19 Jul 2019 09:26:41 GMT (envelope-from yuri@FreeBSD.org) Message-Id: <201907190926.x6J9QfGp048752@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: yuri set sender to yuri@FreeBSD.org using -f From: Yuri Victorovich Date: Fri, 19 Jul 2019 09:26:41 +0000 (UTC) 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 X-SVN-Group: ports-head X-SVN-Commit-Author: yuri X-SVN-Commit-Paths: in head/www: . slowhttptest slowhttptest/files X-SVN-Commit-Revision: 506919 X-SVN-Commit-Repository: ports MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-Rspamd-Queue-Id: 631208DB19 X-Spamd-Bar: -- Authentication-Results: mx1.freebsd.org X-Spamd-Result: default: False [-2.96 / 15.00]; local_wl_from(0.00)[FreeBSD.org]; NEURAL_HAM_MEDIUM(-1.00)[-1.000,0]; NEURAL_HAM_LONG(-1.00)[-1.000,0]; NEURAL_HAM_SHORT(-0.96)[-0.960,0]; ASN(0.00)[asn:11403, ipnet:2610:1c1:1::/48, country:US] X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.29 Precedence: list List-Id: SVN commit messages for the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 19 Jul 2019 09:26:42 -0000 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 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