From ba8570602230325d621d246f30ac7be400c0f358 Mon Sep 17 00:00:00 2001 From: trimstray Date: Tue, 4 Jun 2019 14:01:28 +0200 Subject: [PATCH] add 'SlowHTTPTest'; minor updates - signed-off-by: trimstray --- README.md | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/README.md b/README.md index 00fa308..895e1dd 100644 --- a/README.md +++ b/README.md @@ -180,6 +180,7 @@ Only main chapters:   :small_orange_diamond: gobench - http/https load testing and benchmarking tool.
  :small_orange_diamond: hey - HTTP load generator, ApacheBench (ab) replacement, formerly known as rakyll/boom.
  :small_orange_diamond: boom - is a script you can use to quickly smoke-test your web app deployment.
+  :small_orange_diamond: SlowHTTPTest - is a tool that simulates some Application Layer Denial of Service attacks by prolonging HTTP connections in different ways.
  :small_orange_diamond: gobuster - is a free and open source directory/file & DNS busting tool written in Go.

@@ -2750,7 +2751,7 @@ ___ ##### Tool: [ngrep](http://ngrep.sourceforge.net/usage.html) ```bash -ngrep -d eth0 "www.google.com" port 443 +ngrep -d eth0 "www.domain.com" port 443 ``` * `-d [iface|any]` - set interface @@ -2758,14 +2759,14 @@ ngrep -d eth0 "www.google.com" port 443 * `port [1-65535]` - set port number ```bash -ngrep -d eth0 "www.google.com" (host 10.240.20.2) and (port 443) +ngrep -d eth0 "www.domain.com" src host 10.240.20.2 and port 443 ``` * `(host [ip|hostname])` - filter by ip or hostname * `(port [1-65535])` - filter by port number ```bash -ngrep -d eth0 -qt -O ngrep.pcap "www.google.com" port 443 +ngrep -d eth0 -qt -O ngrep.pcap "www.domain.com" port 443 ``` * `-q` - quiet mode (only payloads)