From 66d77205dfd7a6ad6c3504f12e50cecd039d2c30 Mon Sep 17 00:00:00 2001 From: ivuorinen Date: Thu, 2 May 2024 00:13:47 +0000 Subject: [PATCH] Update cheatsheets --- tldr/linux/sslstrip | 34 ++++++++++++++++++++++++++++++++++ 1 file changed, 34 insertions(+) create mode 100644 tldr/linux/sslstrip diff --git a/tldr/linux/sslstrip b/tldr/linux/sslstrip new file mode 100644 index 00000000..22f357ba --- /dev/null +++ b/tldr/linux/sslstrip @@ -0,0 +1,34 @@ +--- +syntax: markdown +tags: [tldr, linux] +source: https://github.com/tldr-pages/tldr.git +--- +# 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`