mirror of
https://github.com/xvzc/SpoofDPI.git
synced 2024-12-22 14:26:31 +00:00
75 lines
3.9 KiB
Markdown
75 lines
3.9 KiB
Markdown
# SpoofDPI
|
|
|
|
他の言語で読む: [🇬🇧English](https://github.com/xvzc/SpoofDPI), [🇰🇷한국어](https://github.com/xvzc/SpoofDPI/blob/main/_docs/README_ko.md), [🇨🇳简体中文](https://github.com/xvzc/SpoofDPI/blob/main/_docs/README_zh-cn.md), [🇷🇺Русский](https://github.com/xvzc/SpoofDPI/blob/main/_docs/README_ru.md), [🇯🇵日本語](https://github.com/xvzc/SpoofDPI/blob/main/_docs/README_ja.md)
|
|
|
|
**Deep Packet Inspection**をバイパスするために設計されたシンプルで高速なソフトウェア
|
|
|
|
![image](https://user-images.githubusercontent.com/45588457/148035986-8b0076cc-fefb-48a1-9939-a8d9ab1d6322.png)
|
|
|
|
# Installation
|
|
See the installation guide for SpoofDPI [here](https://github.com/xvzc/SpoofDPI/blob/main/_docs/INSTALL.md).
|
|
|
|
|
|
<a href="https://repology.org/project/spoofdpi/versions">
|
|
<img src="https://repology.org/badge/vertical-allrepos/spoofdpi.svg?columns=1" alt="Packaging status">
|
|
</a>
|
|
|
|
# 使用方法
|
|
```
|
|
Usage: spoofdpi [options...]
|
|
-addr string
|
|
listen address (default "127.0.0.1")
|
|
-debug
|
|
enable debug output
|
|
-dns-addr string
|
|
dns address (default "8.8.8.8")
|
|
-dns-ipv4-only
|
|
resolve only version 4 addresses
|
|
-dns-port value
|
|
port number for dns (default 53)
|
|
-enable-doh
|
|
enable 'dns-over-https'
|
|
-pattern value
|
|
bypass DPI only on packets matching this regex pattern; can be given multiple times
|
|
-port value
|
|
port (default 8080)
|
|
-silent
|
|
do not show the banner and server information at start up
|
|
-system-proxy
|
|
enable system-wide proxy (default true)
|
|
-timeout value
|
|
timeout in milliseconds; no timeout when not given
|
|
-v print spoofdpi's version; this may contain some other relevant information
|
|
-window-size value
|
|
chunk size, in number of bytes, for fragmented client hello,
|
|
try lower values if the default value doesn't bypass the DPI;
|
|
when not given, the client hello packet will be sent in two parts:
|
|
fragmentation for the first data packet and the rest
|
|
```
|
|
> ChromeブラウザでHotspot ShieldなどのVPN拡張機能を使用している場合は、
|
|
設定 > 拡張機能に移動して無効にしてください。
|
|
|
|
### OSX
|
|
`spoofdpi`を実行すると、自動的にプロキシが設定されます。
|
|
|
|
### Linux
|
|
`spoofdpi`を実行し、プロキシオプションを使用してブラウザを開きます。
|
|
```bash
|
|
google-chrome --proxy-server="http://127.0.0.1:8080"
|
|
```
|
|
|
|
# 仕組み
|
|
### HTTP
|
|
世界中のほとんどのウェブサイトがHTTPSをサポートしているため、SpoofDPIはHTTPリクエストのDeep Packet Inspectionをバイパスしませんが、すべてのHTTPリクエストに対してプロキシ接続を提供します。
|
|
|
|
### HTTPS
|
|
TLS はすべてのハンドシェイクプロセスを暗号化しますが、Client helloパケットには依然としてドメイン名がプレーンテキストで表示されます。
|
|
つまり、他の誰かがパケットを見た場合、パケットがどこに向かっているのかを簡単に推測することができます。
|
|
ドメイン名はDPIが処理されている間に重要な情報を提供することができ、実際にClient helloパケットを送信した直後に接続がブロックされることがわかります。
|
|
これをバイパスするためにいくつかの方法を試してみましたが、Client helloパケットをチャンクに分割して送信すると、最初のチャンクだけが検査されるように見えることがわかりました。
|
|
SpoofDPIがこれをバイパスするために行うことは、リクエストの最初の1バイトをサーバーに送信し、その後に残りを送信することです。
|
|
|
|
# インスピレーション
|
|
[Green Tunnel](https://github.com/SadeghHayeri/GreenTunnel) by @SadeghHayeri
|
|
[GoodbyeDPI](https://github.com/ValdikSS/GoodbyeDPI) by @ValdikSS
|