From 1cc756af318559e6eb470de366322312d30d9107 Mon Sep 17 00:00:00 2001
From: rootTHC <57636391+rootTHC@users.noreply.github.com>
Date: Sat, 25 Jan 2020 13:11:36 +0000
Subject: [PATCH] Update README.md
cleanup
---
README.md | 6 +++---
1 file changed, 3 insertions(+), 3 deletions(-)
diff --git a/README.md b/README.md
index ddbb6d7..e2d46e7 100644
--- a/README.md
+++ b/README.md
@@ -105,11 +105,11 @@ This will not add your user to the */var/log/utmp* file and you wont show up in
**2.ii SSH tunnel OUT**
-We use this all the time to circumvent local firewalls or IP filtering:
+We use this all the time to circumvent local firewalls and IP filtering:
```
$ ssh -g -L31337:1.2.3.4:80 user@host.org
```
-You or anyone else can now connect to your computer on port 31337 and gets connected to 1.2.3.4:80 and appearing from host 'host.org'
+You or anyone else can now connect to your computer on port 31337 and gets tunneled to 1.2.3.4 port 80 and appearing with the source IP of 'host.org'.
**2.iii SSH tunnel IN**
@@ -118,7 +118,7 @@ We use this to give access to a friend to an internal machine that is not on the
```
$ ssh -o ExitOnForwardFailure=yes -g -R31338:192.168.0.5:80 user@host.org
```
-Anyone connecting to host.org:31338 will get connected to the compuyter 192.168.0.5 on port 80 via your computer.
+Anyone connecting to host.org:31338 will get tunneled to 192.168.0.5 on port 80 via your computer.
**2.iv SSH socks4/5 OUT**