From 2f1108cf76f019ae40a6979e291e4f3cab7f5dc6 Mon Sep 17 00:00:00 2001 From: licon Date: Thu, 2 May 2024 00:29:08 +0800 Subject: [PATCH] sslstrip: add page (#12681) MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit * sslstrip: add page --------- Co-authored-by: Fazle Arefin Co-authored-by: VĂ­tor Henrique <87824454+vitorhcl@users.noreply.github.com> Co-authored-by: K.B.Dharun Krishna --- pages/linux/sslstrip.md | 29 +++++++++++++++++++++++++++++ 1 file changed, 29 insertions(+) create mode 100644 pages/linux/sslstrip.md diff --git a/pages/linux/sslstrip.md b/pages/linux/sslstrip.md new file mode 100644 index 0000000000000..79517ecf27c8a --- /dev/null +++ b/pages/linux/sslstrip.md @@ -0,0 +1,29 @@ +# sslstrip + +> Perform Moxie Marlinspike's Secure Sockets Layer (SSL) stripping attacks. +> Perform an ARP spoofing attack in conjunction. +> More information: . + +- Log only HTTPS POST traffic on port 10000 by default: + +`sslstrip` + +- Log only HTTPS POST traffic on port 8080: + +`sslstrip --listen={{8080}}` + +- Log all SSL traffic to and from the server on port 8080: + +`sslstrip --ssl --listen={{8080}}` + +- Log all SSL and HTTP traffic to and from the server on port 8080: + +`sslstrip --listen={{8080}} --all` + +- Specify the file path to store the logs: + +`sslstrip --listen={{8080}} --write={{path/to/file}}` + +- Display help: + +`sslstrip --help`