1
0
Fork 0
mirror of https://github.com/tldr-pages/tldr.git synced 2024-10-28 13:19:46 +01:00

sslstrip: add page (#12681)

* sslstrip: add page

---------

Co-authored-by: Fazle Arefin <fazlearefin@users.noreply.github.com>
Co-authored-by: Vítor Henrique <87824454+vitorhcl@users.noreply.github.com>
Co-authored-by: K.B.Dharun Krishna <kbdharunkrishna@gmail.com>
This commit is contained in:
licon 2024-05-02 00:29:08 +08:00 committed by GitHub
parent c191f4de43
commit 2f1108cf76
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

29
pages/linux/sslstrip.md Normal file
View file

@ -0,0 +1,29 @@
# sslstrip
> Perform Moxie Marlinspike's Secure Sockets Layer (SSL) stripping attacks.
> Perform an ARP spoofing attack in conjunction.
> More information: <https://www.kali.org/tools/sslstrip/>.
- 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`