More on readme
This commit is contained in:
parent
fb9d1adc25
commit
5bd233a860
1 changed files with 2 additions and 2 deletions
|
@ -6,10 +6,10 @@ This is a tool to overcome the [deep packet inspection](https://en.wikipedia.org
|
|||
|
||||
## How do I know if the network is being DPI
|
||||
|
||||
Typically there are two different ways of blocking the use of a service in the network. The first consists in dropping all tcp packets from all the ports but a few. With this kind of blocking a simple *telnet host port* would end up in a refused or not allowed connection. The second one is a little more sneaky and does allow you to connect any port, or at least don't explicitly blocks you, instead it keeps analyzing the patterns inside the packets and when some pattern that is blacklisted like ssh or smtp handshake messages then it will drop following packets for that TCP connection. The fundamental difference is the first don't allow you even to establish a tcp connection while the second simply start dropping the following packets after the pattern is found and matched with an internal blacklist.
|
||||
Typically there are two different ways of blocking the use of a service in the network. The first consists in dropping all tcp packets from all the ports but a few. With this kind of blocking a simple *telnet host port* would end up in a refused or not allowed connection. The second one is a little more sneaky and does allow you to connect any port, or at least don't explicitly blocks you, instead it keeps analyzing the patterns inside the packets and when some pattern that is blacklisted like ssh or smtp handshake messages then it will drop following packets for that TCP connection. The fundamental difference is the first don't allow you even to establish a tcp connection while the second simply start dropping the following packets after the pattern is found and matched with an internal blacklist. So if you can connect to a <host:port> and suddently the traffic just stops to flow that is a strong indicator that your network is being actively monitored. If you wanna be sure about that you can simply change the protocol over that port if, for instance, you have control over the server that is hosting the service in that port. As an example you can just change ssh port with the HTTP port and retry the connections. What most certainly will happen is that the strange behavior has now swapped ports this kind of dynamic blocking is only possible because the packets are being deeply monitored and changed/drop depending in a set of rules defined by whom controls the network topology.
|
||||
|
||||
|
||||
# Notes
|
||||
|
||||
This tool was inspired in a very nice tool developed from a friend. [FWD](https://github.com/kintoandar/fwd)
|
||||
This tool was inspired in a very nice tool developed from a friend. [FWD](https://github.com/kintoandar/fwd)
|
||||
Thanks @kintoandar for that
|
||||
|
|
Loading…
Reference in a new issue