GoodbyeDPI/README.md

106 lines
4.8 KiB
Markdown
Raw Normal View History

2017-05-16 21:07:40 +02:00
GoodbyeDPI — Passive Deep Packet Inspection blocker and Active DPI circumvention utility
=========================
This software designed to bypass Deep Packet Inspection systems found in many Internet Service Providers which block access to certain websites.
2017-05-16 23:05:00 +02:00
It handles DPI connected using optical splitter or port mirroring (**Passive DPI**) which do not block any data but just replying faster than requested destination, and **Active DPI** connected in sequence.
2017-05-16 21:07:40 +02:00
**Windows 7, 8, 8.1 and 10** with administrator privileges required.
# How to use
Download [latest version from Releases page](https://github.com/ValdikSS/GoodbyeDPI/releases) and run.
2017-05-16 21:50:38 +02:00
```
2017-05-17 20:44:19 +02:00
Usage: goodbyedpi.exe [OPTION...]
-p block passive DPI
-r replace Host with hoSt
-s remove space between host header and its value
2017-12-06 01:21:07 +01:00
-m mix Host header case (test.com -> tEsT.cOm)
2017-05-17 20:44:19 +02:00
-f [value] set HTTP fragmentation to value
-e [value] set HTTPS fragmentation to value
-a additional space between Method and Request-URI (enables -s, may break sites)
2017-12-06 01:21:07 +01:00
-w try to find and parse HTTP traffic on all processed ports (not only on port 80)
--port additional TCP port to perform fragmentation on (and HTTP tricks with -w)
--dns-addr redirect UDP DNS requests to the supplied IP address (experimental)
--dns-port redirect UDP DNS requests to the supplied port (53 by default)
2017-05-17 20:44:19 +02:00
-1 -p -r -s -f 2 -e 2 (most compatible mode, default)
-2 -p -r -s -f 2 -e 40 (better speed yet still compatible)
-3 -p -r -s -e 40 (even better speed)
-4 -p -r -s (best speed)
2017-05-16 21:50:38 +02:00
```
2017-12-06 01:21:07 +01:00
Try to run `goodbyedpi.exe -1 -a -m --dns-addr 77.88.8.8 --dns-port 1253` first. This is the most hardcore mode which will show if this program is suitable for your ISP and DPI vendor. If you can open blocked websites with these options, it means your ISP has DPI which can be circumvented. This is the slowest and prone to break websites mode, but suitable for most DPI.
Try `-1` to see if it works too.
2017-05-16 21:50:38 +02:00
2017-05-17 21:02:22 +02:00
Then try `goodbyedpi.exe -2`. It should be faster for HTTPS sites. Mode `-3` speed ups HTTP websites.
2017-05-17 20:44:19 +02:00
2017-05-17 21:02:22 +02:00
Use `goodbyedpi.exe -4` if it works for your ISP's DPI. This is the fastest mode but not compatible with every DPI.
2017-05-16 21:50:38 +02:00
2017-05-16 21:07:40 +02:00
# How does it work
### Passive DPI
2017-07-10 17:44:56 +02:00
Most Passive DPI send HTTP 302 Redirect if you try to access blocked website over HTTP and TCP Reset in case of HTTPS, faster than destination website. Packets sent by DPI always have IP Identification field equal to `0x0000` or `0x0001`, as seen with Russian providers. These packets, if they redirect you to another website (censorship page), are blocked by GoodbyeDPI.
2017-05-16 21:07:40 +02:00
### Active DPI
Active DPI is more tricky to fool. Currently the software uses 4 methods to circumvent Active DPI:
2017-05-16 21:07:40 +02:00
* TCP-level fragmentation for first data packet
* Replacing `Host` header with `hoSt`
* Removing space between header name and value in `Host` header
* Adding additional space between HTTP Method (GET, POST etc) and URI
2017-12-04 20:01:48 +01:00
* Mixing case of Host header value
2017-05-16 21:07:40 +02:00
2017-07-10 17:44:56 +02:00
These methods should not break any website as they're fully compatible with TCP and HTTP standards, yet it's sufficient to prevent DPI data classification and to circumvent censorship. Additional space may break some websites, although it's acceptable by HTTP/1.1 specification (see 19.3 Tolerant Applications).
2017-05-16 21:07:40 +02:00
2017-05-17 14:57:15 +02:00
The program loads WinDivert driver which uses Windows Filtering Platform to set filters and redirect packets to the userspace. It's running as long as console window is visible and terminates when you close the window.
# How to build from source
This project can be build using **GNU Make** and [**mingw**](https://mingw-w64.org). The only dependency is [WinDivert](https://github.com/basil00/Divert).
To build x86 exe run:
`make CPREFIX=i686-w64-mingw32 WINDIVERTHEADERS=/path/to/windivert/include WINDIVERTLIBS=/path/to/windivert/x86`
And for x86_64:
`make CPREFIX=x86_64-w64-mingw32 WINDIVERTHEADERS=/path/to/windivert/include WINDIVERTLIBS=/path/to/windivert/amd64`
2017-06-11 07:32:35 +02:00
# How to install as Windows Service
One way is using an [srvstart](http://www.rozanski.org.uk/software) program.
2017-07-10 17:44:56 +02:00
Unpack it to `goodbyedpi` directory and create 3 files:
*goodbyedpi.ini*
```INI
[GoodByeDPI]
startup=goodbyedpi.exe
shutdown_method=winmessage
auto_restart=n
```
*srvinstall.bat*
```Batchfile
2017-06-14 01:13:39 +02:00
srvstart install GoodByeDPI -c %CD%\goodbyedpi.ini
```
*srvremove.bat*
```Batchfile
srvstart remove GoodByeDPI
```
2017-06-11 07:32:35 +02:00
Run these batch files as Administrator to install/remove service.
Open Windows Services panel to run service or make it start automaticaly.
2017-05-16 21:07:40 +02:00
# Similar projects
[zapret](https://github.com/bol-van/zapret) by @bol-van (for Linux).
# Kudos
Thanks @basil00 for [WinDivert](https://github.com/basil00/Divert). That's the main part of this program.
Thanks for every [BlockCheck](https://github.com/ValdikSS/blockcheck) contributor. It would be impossible to understand DPI behaviour without this utility.