From 7e27996c19b8c17882ff358994a9680bac480ff3 Mon Sep 17 00:00:00 2001 From: Ikko Eltociear Ashimine Date: Sun, 4 Aug 2024 00:44:53 +0900 Subject: [PATCH] docs: add Japanese README I created Japanese translated README. --- readme.md | 2 +- readme_ja.md | 105 ++++++++++++++++++++++++++++++++++++++++++++++++ readme_ko.md | 2 +- readme_ru.md | 2 +- readme_zh-cn.md | 2 +- 5 files changed, 109 insertions(+), 4 deletions(-) create mode 100644 readme_ja.md diff --git a/readme.md b/readme.md index 8c3be51..3b713e4 100644 --- a/readme.md +++ b/readme.md @@ -2,7 +2,7 @@ # SpoofDPI -Read in other Languages: [🇬🇧English](https://github.com/xvzc/SpoofDPI), [🇰🇷한국어](https://github.com/xvzc/SpoofDPI/blob/main/readme_ko.md), [🇨🇳简体中文](https://github.com/xvzc/SpoofDPI/blob/main/readme_zh-cn.md), [🇷🇺Русский](https://github.com/xvzc/SpoofDPI/blob/main/readme_ru.md) +Read in other Languages: [🇬🇧English](https://github.com/xvzc/SpoofDPI), [🇰🇷한국어](https://github.com/xvzc/SpoofDPI/blob/main/readme_ko.md), [🇨🇳简体中文](https://github.com/xvzc/SpoofDPI/blob/main/readme_zh-cn.md), [🇷🇺Русский](https://github.com/xvzc/SpoofDPI/blob/main/readme_ru.md), [🇯🇵日本語](https://github.com/xvzc/SpoofDPI/blob/main/readme_ja.md) A simple and fast software designed to bypass **Deep Packet Inspection** diff --git a/readme_ja.md b/readme_ja.md new file mode 100644 index 0000000..07c92c1 --- /dev/null +++ b/readme_ja.md @@ -0,0 +1,105 @@ +**⭐PRs or any form of contribution will be appreciated⭐** + +# SpoofDPI + +他の言語で読む: [🇬🇧English](https://github.com/xvzc/SpoofDPI), [🇰🇷한국어](https://github.com/xvzc/SpoofDPI/blob/main/readme_ko.md), [🇨🇳简体中文](https://github.com/xvzc/SpoofDPI/blob/main/readme_zh-cn.md), [🇷🇺Русский](https://github.com/xvzc/SpoofDPI/blob/main/readme_ru.md) + +**Deep Packet Inspection**をバイパスするために設計されたシンプルで高速なソフトウェア + +![image](https://user-images.githubusercontent.com/45588457/148035986-8b0076cc-fefb-48a1-9939-a8d9ab1d6322.png) + +# インストール +## バイナリ +SpoofDPIは`~/.spoof-dpi/bin`にインストールされます。 +任意のディレクトリでSpoofDPIを実行するには、以下の行を`~/.bashrc || ~/.zshrc || ...`に追加してください。 +``` +export PATH=$PATH:~/.spoof-dpi/bin +``` +--- +```bash +# OSX +curl -fsSL https://raw.githubusercontent.com/xvzc/SpoofDPI/main/install.sh | bash -s darwin-amd64 + +# linux-amd64 +curl -fsSL https://raw.githubusercontent.com/xvzc/SpoofDPI/main/install.sh | bash -s linux-amd64 + +# linux-arm +curl -fsSL https://raw.githubusercontent.com/xvzc/SpoofDPI/main/install.sh | bash -s linux-arm + +# linux-arm64 +curl -fsSL https://raw.githubusercontent.com/xvzc/SpoofDPI/main/install.sh | bash -s linux-arm64 + +# linux-mips +curl -fsSL https://raw.githubusercontent.com/xvzc/SpoofDPI/main/install.sh | bash -s linux-mips + +# linux-mipsle +curl -fsSL https://raw.githubusercontent.com/xvzc/SpoofDPI/main/install.sh | bash -s linux-mipsle +``` + + +## Go +**go install**でインストールすることもできます +`$ go install github.com/xvzc/SpoofDPI/cmd/spoof-dpi@latest` + > $GOPATHが$PATHに設定されていることを確認してください + +## Git +自分でビルドすることもできます +`$ git clone https://github.com/xvzc/SpoofDPI.git` +`$ cd SpoofDPI` +`$ go build ./cmd/...` + +# 使用方法 +``` +Usage: spoof-dpi [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-port int + port number for dns (default 53) + -enable-doh + enable 'dns over https' + -no-banner + disable banner + -pattern string + bypass DPI only on packets matching this regex pattern + -port int + port (default 8080) + -timeout int + timeout in milliseconds. no timeout when not given + -url value + Bypass DPI only on this url, can be passed multiple times + -v print spoof-dpi's version. this may contain some other relevant information + -window-size int + 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 +`$ spoof-dpi`を実行すると、自動的にプロキシが設定されます。 + +### Linux +`$ spoof-dpi`を実行し、プロキシオプションを使用してブラウザを開きます。 +`google-chrome --proxy-server="http://127.0.0.1:8080"` + +# 仕組み +### HTTP +世界中のほとんどのウェブサイトがHTTPSをサポートしているため、SpoofDPIはHTTPリクエストのDeep Packet Inspectionをバイパスしませんが、すべてのHTTPリクエストに対してプロキシ接続を提供します。 + +### HTTPS +TLS 1.3はすべてのハンドシェイクプロセスを暗号化しますが、Client helloパケットには依然としてドメイン名がプレーンテキストで表示されます。 +つまり、他の誰かがパケットを見た場合、パケットがどこに向かっているのかを簡単に推測することができます。 +ドメイン名はDPIが処理されている間に重要な情報を提供することができ、実際にClient helloパケットを送信した直後に接続がブロックされることがわかります。 +これをバイパスするためにいくつかの方法を試してみましたが、Client helloパケットをチャンクに分割して送信すると、最初のチャンクだけが検査されるように見えることがわかりました。 +SpoofDPIがこれをバイパスするために行うことは、リクエストの最初の1バイトをサーバーに送信し、その後に残りを送信することです。 + > SpoofDPIはHTTPSリクエストを復号化しないため、SSL証明書は必要ありません。 + +# インスピレーション +[Green Tunnel](https://github.com/SadeghHayeri/GreenTunnel) by @SadeghHayeri +[GoodbyeDPI](https://github.com/ValdikSS/GoodbyeDPI) by @ValdikSS diff --git a/readme_ko.md b/readme_ko.md index 8d6d2f7..d2f4820 100644 --- a/readme_ko.md +++ b/readme_ko.md @@ -2,7 +2,7 @@ # SpoofDPI -다른 언어로 읽기: [🇬🇧English](https://github.com/xvzc/SpoofDPI), [🇰🇷한국어](https://github.com/xvzc/SpoofDPI/blob/main/readme_ko.md), [🇨🇳简体中文](https://github.com/xvzc/SpoofDPI/blob/main/readme_zh-cn.md), [🇷🇺Русский](https://github.com/xvzc/SpoofDPI/blob/main/readme_ru.md) +다른 언어로 읽기: [🇬🇧English](https://github.com/xvzc/SpoofDPI), [🇰🇷한국어](https://github.com/xvzc/SpoofDPI/blob/main/readme_ko.md), [🇨🇳简体中文](https://github.com/xvzc/SpoofDPI/blob/main/readme_zh-cn.md), [🇷🇺Русский](https://github.com/xvzc/SpoofDPI/blob/main/readme_ru.md), [🇯🇵日本語](https://github.com/xvzc/SpoofDPI/blob/main/readme_ja.md) DPI(Deep Packet Inspection) 우회를 위해 고안된 소프트웨어 diff --git a/readme_ru.md b/readme_ru.md index 6377dd3..adfcfac 100644 --- a/readme_ru.md +++ b/readme_ru.md @@ -2,7 +2,7 @@ # SpoofDPI -Можете прочитать на других языках: [🇬🇧English](https://github.com/xvzc/SpoofDPI), [🇰🇷한국어](https://github.com/xvzc/SpoofDPI/blob/main/readme_ko.md), [🇨🇳简体中文](https://github.com/xvzc/SpoofDPI/blob/main/readme_zh-cn.md), [🇷🇺Русский](https://github.com/xvzc/SpoofDPI/blob/main/readme_ru.md) +Можете прочитать на других языках: [🇬🇧English](https://github.com/xvzc/SpoofDPI), [🇰🇷한국어](https://github.com/xvzc/SpoofDPI/blob/main/readme_ko.md), [🇨🇳简体中文](https://github.com/xvzc/SpoofDPI/blob/main/readme_zh-cn.md), [🇷🇺Русский](https://github.com/xvzc/SpoofDPI/blob/main/readme_ru.md), [🇯🇵日本語](https://github.com/xvzc/SpoofDPI/blob/main/readme_ja.md) Простое и быстрое ПО, созданное для обхода **Deep Packet Inspection** diff --git a/readme_zh-cn.md b/readme_zh-cn.md index 123a25c..2ccbe1a 100644 --- a/readme_zh-cn.md +++ b/readme_zh-cn.md @@ -2,7 +2,7 @@ # SpoofDPI -选择语言: [🇬🇧English](https://github.com/xvzc/SpoofDPI), [🇰🇷한국어](https://github.com/xvzc/SpoofDPI/blob/main/readme_ko.md), [🇨🇳简体中文](https://github.com/xvzc/SpoofDPI/blob/main/readme_zh-cn.md), [🇷🇺Русский](https://github.com/xvzc/SpoofDPI/blob/main/readme_ru.md) +选择语言: [🇬🇧English](https://github.com/xvzc/SpoofDPI), [🇰🇷한국어](https://github.com/xvzc/SpoofDPI/blob/main/readme_ko.md), [🇨🇳简体中文](https://github.com/xvzc/SpoofDPI/blob/main/readme_zh-cn.md), [🇷🇺Русский](https://github.com/xvzc/SpoofDPI/blob/main/readme_ru.md), [🇯🇵日本語](https://github.com/xvzc/SpoofDPI/blob/main/readme_ja.md) 规避**深度包检测**的简单工具