Pivoting with SSH

Today I was trouble shooting a machine at work. I did not have access via RDP or VNC, so I used SSH to forward my traffic to the host so I could access a URL.

This is to serve as a cheat sheet for what I did, in case I need to do it again.

Side Note:

  • A handy trick for lateral movement / pentesting.

Dynamically forwarding traffic via SSH

ssh -D 8080 user@192.x.x.x

This will dynamically forward any traffic through that host. Need to set a tool or browser for send traffic through local host on port 8080.

Key point: This will forward traffic through the host to any ip and port

Using Foxy Proxy:

  • remember to set SOCKS5

Statically forwarding traffic via SSH

ssh   -L 127.0.0.1:8080:192.168.1.1:80 hacker@192.168.1.2

This will forward local port 8080 traffic to 192.168.1.1 port 80 VIA (goes through 192.168.1.2)

ssh  -L 127.0.0.1:8080:192.168.1.1:80 hacker@192.168.1.1

This will forward local port 8080 to the remote host and send the traffic to the remote hosts (192.168.1.1) port 80

2021

Connect to Splunk with Python

This post will cover the following: Connecting to Splunk with the Python SDK, executing a search and receiving the results Connecting to Splunk without ...

Back to Top ↑

2020

Winlogbeat & ELK

TL;DR: Create Logstash conf.d file to allow Winlogbeat to be ingested into Logstash. Change Winlogbeat config file to use Logstash instead of Elasticsearch.

Golang and Windows Network Interfaces

I have been working on Windows and needed to connect to a Network Interface (NIC). I ran into problems, here is what I learned and hope it saves the same tro...

Tcpdump Notes

I have been using tcpdump recently and wanted to note down some of the commands Y’know, for future reference.

Pivoting with SSH

Today I was trouble shooting a machine at work. I did not have access via RDP or VNC, so I used SSH to forward my traffic to the host so I could access a URL.

GitHub Actions

I participated in a DevSecOps type workshop on Saturday (May 9th) in which we created some GitHub Actions. This is a post to solidify the learning and be a c...

Threat Defense Workshop

On April 25th I was fortunate enough to participate in the Trend Micro Threat Defense workshop.

Incident Handling Certification

Since I blogged about my experience at OpenSoc, I wanted to expand on the value I found in my eLearnSecuirty Incident Response course. What you will find bel...

OpenSoc Experience

So Thursday (April 9th) I participated in an online blue team defense simulation event, known as OpenSOC.

Golang Parsing Strings

I have been working with Golang strings and how to manipulate them. Working from other blogs posts I’ve found. When I sit down to code, I seem to forget ever...

Welcome to Jekyll!

You’ll find this post in your _posts directory. Go ahead and edit it and re-build the site to see your changes. You can rebuild the site in many different wa...

Back to Top ↑