Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

sslstrip: add page #12681

Merged
merged 15 commits into from May 1, 2024
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
29 changes: 29 additions & 0 deletions 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: <https://www.kali.org/tools/sslstrip/>.
jimmychang851129 marked this conversation as resolved.
Show resolved Hide resolved

- 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`