Skip to content

Instantly share code, notes, and snippets.

@arnobk
Last active July 30, 2022 09:16
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save arnobk/d209ebfcfb5513d85375d651e78afd41 to your computer and use it in GitHub Desktop.
Save arnobk/d209ebfcfb5513d85375d651e78afd41 to your computer and use it in GitHub Desktop.
GoodByeDPI No Blacklist No DNS
@ECHO OFF
PUSHD "%~dp0"
set _arch=x86
IF "%PROCESSOR_ARCHITECTURE%"=="AMD64" (set _arch=x86_64)
IF DEFINED PROCESSOR_ARCHITEW6432 (set _arch=x86_64)
echo Mod By Arnob Karmokar.
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" start= "auto"
sc description "GoodbyeDPI" "Passive Deep Packet Inspection blocker and Active DPI circumvention utility"
sc start "GoodbyeDPI"
POPD
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment