-
Notifications
You must be signed in to change notification settings - Fork 12
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
36 changed files
with
477 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,57 @@ | ||
Keterangan File GoodbyeDPI | ||
|
||
blacklist.txt - daftar isi domain yang akan dibypass dpinya | ||
service_install_dnsredir_blacklist.cmd - digunakan untuk mulai menginstall (default menggunakan dns yandex) | ||
run_dnsredir.cmd - menjalankan aplikasi (default menggunakan dns yandex) | ||
service_remove.cmd - digunakan untuk melakukan uninstall goodbyedpi | ||
|
||
Urutan penggunaan: | ||
1. Silahkan pilih salah satu | ||
*service_install_dnsredir (dengan atau tanpa pilihan dns) | ||
*service_install_dnsredir_blacklist (dengan atau tanpa pilihan dns) | ||
2. Jalankan dengan membuka file | ||
*run_dnsredir.cmd (dengan atau tanpa pilihan dns) | ||
3. Uninstall jika telah selesai menggunakan | ||
*service_remove.cmd | ||
|
||
Daftar DNS yang digunakan: | ||
AdGuard | ||
CleanBrowsing | ||
Cloudflare | ||
NextDNS | ||
OpenDNS | ||
Quad9 | ||
Tiarapp | ||
|
||
Manual penggunaan: | ||
goodbyedpi.exe [OPTION...] | ||
-p block passive DPI | ||
-r replace Host with hoSt | ||
-s remove space between host header and its value | ||
-m mix Host header case (test.com -> tEsT.cOm) | ||
-f [value] set HTTP fragmentation to value | ||
-k [value] enable HTTP persistent (keep-alive) fragmentation and set it to value | ||
-n do not wait for first segment ACK when -k is enabled | ||
-e [value] set HTTPS fragmentation to value | ||
-a additional space between Method and Request-URI (enables -s, may break sites) | ||
-w try to find and parse HTTP traffic on all processed ports (not only on port 80) | ||
--port [value] additional TCP port to perform fragmentation on (and HTTP tricks with -w) | ||
--ip-id [value] handle additional IP ID (decimal, drop redirects and TCP RSTs with this ID). | ||
This option can be supplied multiple times. | ||
--dns-addr [value] redirect UDP DNS requests to the supplied IP address (experimental) | ||
--dns-port [value] redirect UDP DNS requests to the supplied port (53 by default) | ||
--dnsv6-addr [value] redirect UDPv6 DNS requests to the supplied IPv6 address (experimental) | ||
--dnsv6-port [value] redirect UDPv6 DNS requests to the supplied port (53 by default) | ||
--dns-verb print verbose DNS redirection messages | ||
--blacklist [txtfile] perform HTTP tricks only to host names and subdomains from | ||
supplied text file. This option can be supplied multiple times. | ||
--set-ttl [value] activate Fake Request Mode and send it with supplied TTL value. | ||
DANGEROUS! May break websites in unexpected ways. Use with care. | ||
--wrong-chksum activate Fake Request Mode and send it with incorrect TCP checksum. | ||
May not work in a VM or with some routers, but is safer than set-ttl. | ||
|
||
-1 -p -r -s -f 2 -k 2 -n -e 2 (most compatible mode, default) | ||
-2 -p -r -s -f 2 -k 2 -n -e 40 (better speed for HTTPS yet still compatible) | ||
-3 -p -r -s -e 40 (better speed for HTTP and HTTPS) | ||
-4 -p -r -s (best speed) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,6 @@ | ||
netflix.com | ||
netflix.co.id | ||
nflxvideo.net | ||
nflxext.com | ||
nflximg.com | ||
nflxso.net |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,11 @@ | ||
@ECHO OFF | ||
PUSHD "%~dp0" | ||
set _arch=x86 | ||
IF "%PROCESSOR_ARCHITECTURE%"=="AMD64" (set _arch=x86_64) | ||
IF DEFINED PROCESSOR_ARCHITEW6432 (set _arch=x86_64) | ||
PUSHD "%_arch%" | ||
|
||
start "" goodbyedpi.exe -1 --dns-addr 77.88.8.8 --dns-port 1253 --dnsv6-addr 2a02:6b8::feed:0ff --dnsv6-port 1253 | ||
|
||
POPD | ||
POPD |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,11 @@ | ||
@ECHO OFF | ||
PUSHD "%~dp0" | ||
set _arch=x86 | ||
IF "%PROCESSOR_ARCHITECTURE%"=="AMD64" (set _arch=x86_64) | ||
IF DEFINED PROCESSOR_ARCHITEW6432 (set _arch=x86_64) | ||
PUSHD "%_arch%" | ||
|
||
start "" goodbyedpi.exe -1 --dns-addr 176.103.130.130 --dnsv6-addr 2a00:5a60::ad1:0ff | ||
|
||
POPD | ||
POPD |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,11 @@ | ||
@ECHO OFF | ||
PUSHD "%~dp0" | ||
set _arch=x86 | ||
IF "%PROCESSOR_ARCHITECTURE%"=="AMD64" (set _arch=x86_64) | ||
IF DEFINED PROCESSOR_ARCHITEW6432 (set _arch=x86_64) | ||
PUSHD "%_arch%" | ||
|
||
start "" goodbyedpi.exe -1 --dns-addr 185.228.168.9 --dnsv6-addr 2a0d:2a00:1::2 | ||
|
||
POPD | ||
POPD |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,11 @@ | ||
@ECHO OFF | ||
PUSHD "%~dp0" | ||
set _arch=x86 | ||
IF "%PROCESSOR_ARCHITECTURE%"=="AMD64" (set _arch=x86_64) | ||
IF DEFINED PROCESSOR_ARCHITEW6432 (set _arch=x86_64) | ||
PUSHD "%_arch%" | ||
|
||
start "" goodbyedpi.exe -1 --dns-addr 1.1.1.1 --dnsv6-addr 2606:4700:4700::1111 | ||
|
||
POPD | ||
POPD |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,11 @@ | ||
@ECHO OFF | ||
PUSHD "%~dp0" | ||
set _arch=x86 | ||
IF "%PROCESSOR_ARCHITECTURE%"=="AMD64" (set _arch=x86_64) | ||
IF DEFINED PROCESSOR_ARCHITEW6432 (set _arch=x86_64) | ||
PUSHD "%_arch%" | ||
|
||
start "" goodbyedpi.exe -1 --dns-addr 8.8.8.8 --dnsv6-addr 2001:4860:4860::8888 | ||
|
||
POPD | ||
POPD |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,11 @@ | ||
@ECHO OFF | ||
PUSHD "%~dp0" | ||
set _arch=x86 | ||
IF "%PROCESSOR_ARCHITECTURE%"=="AMD64" (set _arch=x86_64) | ||
IF DEFINED PROCESSOR_ARCHITEW6432 (set _arch=x86_64) | ||
PUSHD "%_arch%" | ||
|
||
start "" goodbyedpi.exe -1 --dns-addr 45.90.28.250 --dnsv6-addr 2a07:a8c0::92:3867 | ||
|
||
POPD | ||
POPD |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,11 @@ | ||
@ECHO OFF | ||
PUSHD "%~dp0" | ||
set _arch=x86 | ||
IF "%PROCESSOR_ARCHITECTURE%"=="AMD64" (set _arch=x86_64) | ||
IF DEFINED PROCESSOR_ARCHITEW6432 (set _arch=x86_64) | ||
PUSHD "%_arch%" | ||
|
||
start "" goodbyedpi.exe -1 --dns-addr 208.67.222.222 --dnsv6-addr 2620:119:35::35 | ||
|
||
POPD | ||
POPD |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,11 @@ | ||
@ECHO OFF | ||
PUSHD "%~dp0" | ||
set _arch=x86 | ||
IF "%PROCESSOR_ARCHITECTURE%"=="AMD64" (set _arch=x86_64) | ||
IF DEFINED PROCESSOR_ARCHITEW6432 (set _arch=x86_64) | ||
PUSHD "%_arch%" | ||
|
||
start "" goodbyedpi.exe -1 --dns-addr 9.9.9.9 --dnsv6-addr 2620:fe::fe | ||
|
||
POPD | ||
POPD |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,11 @@ | ||
@ECHO OFF | ||
PUSHD "%~dp0" | ||
set _arch=x86 | ||
IF "%PROCESSOR_ARCHITECTURE%"=="AMD64" (set _arch=x86_64) | ||
IF DEFINED PROCESSOR_ARCHITEW6432 (set _arch=x86_64) | ||
PUSHD "%_arch%" | ||
|
||
start "" goodbyedpi.exe -1 --dns-addr 174.138.21.128 --dnsv6-addr 2400:6180:0:d0::5f6e:4001 | ||
|
||
POPD | ||
POPD |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,17 @@ | ||
@ECHO OFF | ||
PUSHD "%~dp0" | ||
set _arch=x86 | ||
IF "%PROCESSOR_ARCHITECTURE%"=="AMD64" (set _arch=x86_64) | ||
IF DEFINED PROCESSOR_ARCHITEW6432 (set _arch=x86_64) | ||
|
||
echo This script should be run with administrator privileges. | ||
echo Right click - run as administrator. | ||
echo Press any key if you're running it as administrator. | ||
pause | ||
sc stop "GoodbyeDPI" | ||
sc delete "GoodbyeDPI" | ||
sc create "GoodbyeDPI" binPath= "\"%CD%\%_arch%\goodbyedpi.exe\" -1 --dns-addr 77.88.8.8 --dns-port 1253 --dnsv6-addr 2a02:6b8::feed:0ff --dnsv6-port 1253 start= "auto" | ||
sc description "GoodbyeDPI" "Passive Deep Packet Inspection blocker and Active DPI circumvention utility" | ||
sc start "GoodbyeDPI" | ||
|
||
POPD |
17 changes: 17 additions & 0 deletions
17
dependencies/goodbyedpi/service_install_dnsredirAdguard.cmd
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,17 @@ | ||
@ECHO OFF | ||
PUSHD "%~dp0" | ||
set _arch=x86 | ||
IF "%PROCESSOR_ARCHITECTURE%"=="AMD64" (set _arch=x86_64) | ||
IF DEFINED PROCESSOR_ARCHITEW6432 (set _arch=x86_64) | ||
|
||
echo This script should be run with administrator privileges. | ||
echo Right click - run as administrator. | ||
echo Press any key if you're running it as administrator. | ||
pause | ||
sc stop "GoodbyeDPI" | ||
sc delete "GoodbyeDPI" | ||
sc create "GoodbyeDPI" binPath= "\"%CD%\%_arch%\goodbyedpi.exe\" -1 --dns-addr 176.103.130.130 --dnsv6-addr 2a00:5a60::ad1:0ff start= "auto" | ||
sc description "GoodbyeDPI" "Passive Deep Packet Inspection blocker and Active DPI circumvention utility" | ||
sc start "GoodbyeDPI" | ||
|
||
POPD |
17 changes: 17 additions & 0 deletions
17
dependencies/goodbyedpi/service_install_dnsredirCleanBrowsing.cmd
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,17 @@ | ||
@ECHO OFF | ||
PUSHD "%~dp0" | ||
set _arch=x86 | ||
IF "%PROCESSOR_ARCHITECTURE%"=="AMD64" (set _arch=x86_64) | ||
IF DEFINED PROCESSOR_ARCHITEW6432 (set _arch=x86_64) | ||
|
||
echo This script should be run with administrator privileges. | ||
echo Right click - run as administrator. | ||
echo Press any key if you're running it as administrator. | ||
pause | ||
sc stop "GoodbyeDPI" | ||
sc delete "GoodbyeDPI" | ||
sc create "GoodbyeDPI" binPath= "\"%CD%\%_arch%\goodbyedpi.exe\" -1 --dns-addr 185.228.168.9 --dnsv6-addr 2a0d:2a00:1::2 start= "auto" | ||
sc description "GoodbyeDPI" "Passive Deep Packet Inspection blocker and Active DPI circumvention utility" | ||
sc start "GoodbyeDPI" | ||
|
||
POPD |
17 changes: 17 additions & 0 deletions
17
dependencies/goodbyedpi/service_install_dnsredirCloudflare.cmd
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,17 @@ | ||
@ECHO OFF | ||
PUSHD "%~dp0" | ||
set _arch=x86 | ||
IF "%PROCESSOR_ARCHITECTURE%"=="AMD64" (set _arch=x86_64) | ||
IF DEFINED PROCESSOR_ARCHITEW6432 (set _arch=x86_64) | ||
|
||
echo This script should be run with administrator privileges. | ||
echo Right click - run as administrator. | ||
echo Press any key if you're running it as administrator. | ||
pause | ||
sc stop "GoodbyeDPI" | ||
sc delete "GoodbyeDPI" | ||
sc create "GoodbyeDPI" binPath= "\"%CD%\%_arch%\goodbyedpi.exe\" -1 --dns-addr 1.1.1.1 --dnsv6-addr 2606:4700:4700::1111 start= "auto" | ||
sc description "GoodbyeDPI" "Passive Deep Packet Inspection blocker and Active DPI circumvention utility" | ||
sc start "GoodbyeDPI" | ||
|
||
POPD |
17 changes: 17 additions & 0 deletions
17
dependencies/goodbyedpi/service_install_dnsredirGoogle.cmd
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,17 @@ | ||
@ECHO OFF | ||
PUSHD "%~dp0" | ||
set _arch=x86 | ||
IF "%PROCESSOR_ARCHITECTURE%"=="AMD64" (set _arch=x86_64) | ||
IF DEFINED PROCESSOR_ARCHITEW6432 (set _arch=x86_64) | ||
|
||
echo This script should be run with administrator privileges. | ||
echo Right click - run as administrator. | ||
echo Press any key if you're running it as administrator. | ||
pause | ||
sc stop "GoodbyeDPI" | ||
sc delete "GoodbyeDPI" | ||
sc create "GoodbyeDPI" binPath= "\"%CD%\%_arch%\goodbyedpi.exe\" -1 --dns-addr 8.8.8.8 --dnsv6-addr 2001:4860:4860::8888 start= "auto" | ||
sc description "GoodbyeDPI" "Passive Deep Packet Inspection blocker and Active DPI circumvention utility" | ||
sc start "GoodbyeDPI" | ||
|
||
POPD |
17 changes: 17 additions & 0 deletions
17
dependencies/goodbyedpi/service_install_dnsredirNextDNS.cmd
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,17 @@ | ||
@ECHO OFF | ||
PUSHD "%~dp0" | ||
set _arch=x86 | ||
IF "%PROCESSOR_ARCHITECTURE%"=="AMD64" (set _arch=x86_64) | ||
IF DEFINED PROCESSOR_ARCHITEW6432 (set _arch=x86_64) | ||
|
||
echo This script should be run with administrator privileges. | ||
echo Right click - run as administrator. | ||
echo Press any key if you're running it as administrator. | ||
pause | ||
sc stop "GoodbyeDPI" | ||
sc delete "GoodbyeDPI" | ||
sc create "GoodbyeDPI" binPath= "\"%CD%\%_arch%\goodbyedpi.exe\" -1 --dns-addr 45.90.28.250 --dnsv6-addr 2a07:a8c0::92:3867 start= "auto" | ||
sc description "GoodbyeDPI" "Passive Deep Packet Inspection blocker and Active DPI circumvention utility" | ||
sc start "GoodbyeDPI" | ||
|
||
POPD |
17 changes: 17 additions & 0 deletions
17
dependencies/goodbyedpi/service_install_dnsredirOpenDNS.cmd
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,17 @@ | ||
@ECHO OFF | ||
PUSHD "%~dp0" | ||
set _arch=x86 | ||
IF "%PROCESSOR_ARCHITECTURE%"=="AMD64" (set _arch=x86_64) | ||
IF DEFINED PROCESSOR_ARCHITEW6432 (set _arch=x86_64) | ||
|
||
echo This script should be run with administrator privileges. | ||
echo Right click - run as administrator. | ||
echo Press any key if you're running it as administrator. | ||
pause | ||
sc stop "GoodbyeDPI" | ||
sc delete "GoodbyeDPI" | ||
sc create "GoodbyeDPI" binPath= "\"%CD%\%_arch%\goodbyedpi.exe\" -1 --dns-addr 208.67.222.222 --dnsv6-addr 2620:119:35::35 start= "auto" | ||
sc description "GoodbyeDPI" "Passive Deep Packet Inspection blocker and Active DPI circumvention utility" | ||
sc start "GoodbyeDPI" | ||
|
||
POPD |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,17 @@ | ||
@ECHO OFF | ||
PUSHD "%~dp0" | ||
set _arch=x86 | ||
IF "%PROCESSOR_ARCHITECTURE%"=="AMD64" (set _arch=x86_64) | ||
IF DEFINED PROCESSOR_ARCHITEW6432 (set _arch=x86_64) | ||
|
||
echo This script should be run with administrator privileges. | ||
echo Right click - run as administrator. | ||
echo Press any key if you're running it as administrator. | ||
pause | ||
sc stop "GoodbyeDPI" | ||
sc delete "GoodbyeDPI" | ||
sc create "GoodbyeDPI" binPath= "\"%CD%\%_arch%\goodbyedpi.exe\" -1 --dns-addr 9.9.9.9 --dnsv6-addr 2620:fe::fe start= "auto" | ||
sc description "GoodbyeDPI" "Passive Deep Packet Inspection blocker and Active DPI circumvention utility" | ||
sc start "GoodbyeDPI" | ||
|
||
POPD |
17 changes: 17 additions & 0 deletions
17
dependencies/goodbyedpi/service_install_dnsredirTiarapp.cmd
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,17 @@ | ||
@ECHO OFF | ||
PUSHD "%~dp0" | ||
set _arch=x86 | ||
IF "%PROCESSOR_ARCHITECTURE%"=="AMD64" (set _arch=x86_64) | ||
IF DEFINED PROCESSOR_ARCHITEW6432 (set _arch=x86_64) | ||
|
||
echo This script should be run with administrator privileges. | ||
echo Right click - run as administrator. | ||
echo Press any key if you're running it as administrator. | ||
pause | ||
sc stop "GoodbyeDPI" | ||
sc delete "GoodbyeDPI" | ||
sc create "GoodbyeDPI" binPath= "\"%CD%\%_arch%\goodbyedpi.exe\" -1 --dns-addr 174.138.21.128 --dnsv6-addr 2400:6180:0:d0::5f6e:4001 start= "auto" | ||
sc description "GoodbyeDPI" "Passive Deep Packet Inspection blocker and Active DPI circumvention utility" | ||
sc start "GoodbyeDPI" | ||
|
||
POPD |
17 changes: 17 additions & 0 deletions
17
dependencies/goodbyedpi/service_install_dnsredir_blacklist.cmd
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,17 @@ | ||
@ECHO OFF | ||
PUSHD "%~dp0" | ||
set _arch=x86 | ||
IF "%PROCESSOR_ARCHITECTURE%"=="AMD64" (set _arch=x86_64) | ||
IF DEFINED PROCESSOR_ARCHITEW6432 (set _arch=x86_64) | ||
|
||
echo This script should be run with administrator privileges. | ||
echo Right click - run as administrator. | ||
echo Press any key if you're running it as administrator. | ||
pause | ||
sc stop "GoodbyeDPI" | ||
sc delete "GoodbyeDPI" | ||
sc create "GoodbyeDPI" binPath= "\"%CD%\%_arch%\goodbyedpi.exe\" -1 --dns-addr 77.88.8.8 --dns-port 1253 --dnsv6-addr 2a02:6b8::feed:0ff --dnsv6-port 1253 --blacklist \"%CD%\blacklist.txt\"" start= "auto" | ||
sc description "GoodbyeDPI" "Passive Deep Packet Inspection blocker and Active DPI circumvention utility" | ||
sc start "GoodbyeDPI" | ||
|
||
POPD |
17 changes: 17 additions & 0 deletions
17
dependencies/goodbyedpi/service_install_dnsredir_blacklistAdGuard.cmd
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,17 @@ | ||
@ECHO OFF | ||
PUSHD "%~dp0" | ||
set _arch=x86 | ||
IF "%PROCESSOR_ARCHITECTURE%"=="AMD64" (set _arch=x86_64) | ||
IF DEFINED PROCESSOR_ARCHITEW6432 (set _arch=x86_64) | ||
|
||
echo This script should be run with administrator privileges. | ||
echo Right click - run as administrator. | ||
echo Press any key if you're running it as administrator. | ||
pause | ||
sc stop "GoodbyeDPI" | ||
sc delete "GoodbyeDPI" | ||
sc create "GoodbyeDPI" binPath= "\"%CD%\%_arch%\goodbyedpi.exe\" -1 --dns-addr 176.103.130.130 --dnsv6-addr 2a00:5a60::ad1:0ff --blacklist \"%CD%\blacklist.txt\"" start= "auto" | ||
sc description "GoodbyeDPI" "Passive Deep Packet Inspection blocker and Active DPI circumvention utility" | ||
sc start "GoodbyeDPI" | ||
|
||
POPD |
17 changes: 17 additions & 0 deletions
17
dependencies/goodbyedpi/service_install_dnsredir_blacklistCleanBrowsing.cmd
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,17 @@ | ||
@ECHO OFF | ||
PUSHD "%~dp0" | ||
set _arch=x86 | ||
IF "%PROCESSOR_ARCHITECTURE%"=="AMD64" (set _arch=x86_64) | ||
IF DEFINED PROCESSOR_ARCHITEW6432 (set _arch=x86_64) | ||
|
||
echo This script should be run with administrator privileges. | ||
echo Right click - run as administrator. | ||
echo Press any key if you're running it as administrator. | ||
pause | ||
sc stop "GoodbyeDPI" | ||
sc delete "GoodbyeDPI" | ||
sc create "GoodbyeDPI" binPath= "\"%CD%\%_arch%\goodbyedpi.exe\" -1 --dns-addr 185.228.168.9 --dnsv6-addr 2a0d:2a00:1::2 --blacklist \"%CD%\blacklist.txt\"" start= "auto" | ||
sc description "GoodbyeDPI" "Passive Deep Packet Inspection blocker and Active DPI circumvention utility" | ||
sc start "GoodbyeDPI" | ||
|
||
POPD |
Oops, something went wrong.