Commander

Copy-ready command templates for common penetration testing tools. Select a tool, fill in the parameters, copy, paste, profit.

OpenSSH client for encrypted remote shell access and tunneling

remoteshelltunnelinglinuxpivoting

Connect to Host

Open an SSH shell session.

ssh @

Connect with Private Key

Authenticate using an SSH private key.

ssh -i @

Local Port Forward

Forward a local port to a remote service through SSH.

ssh -L :: @

Access the forwarded service at localhost:{local_port}

SOCKS5 Proxy (Dynamic Forward)

Create a SOCKS5 proxy for pivoting through the SSH host.

ssh -D -N @

Configure proxychains or browser to use 127.0.0.1:{socks_port}

Remote Port Forward

Expose a local service through the remote SSH server.

ssh -R :: @