-
Notifications
You must be signed in to change notification settings - Fork 1
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
1 parent
62ba783
commit 48bece0
Showing
13 changed files
with
35 additions
and
28 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
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,3 @@ | ||
echo off | ||
cls | ||
cscript //nologo "%~dp0/_.vbs" |
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,25 @@ | ||
Set WshShell = CreateObject("WScript.Shell") | ||
|
||
Set objEnv = WshShell.Environment("PROCESS") | ||
If InStr(objEnv("PROCESSOR_ARCHITECTURE"), "AMD64") > 0 Then | ||
arch = "x86_64" | ||
Else | ||
arch = "x86" | ||
End If | ||
If objEnv("PROCESSOR_ARCHITEW6432") <> "" Then | ||
arch = "x86_64" | ||
End If | ||
|
||
Set objFSO = CreateObject("Scripting.FileSystemObject") | ||
strExePath = objFSO.GetParentFolderName(WScript.ScriptFullName) & "\" & arch & "\GoodbyeDPI.exe" | ||
strParams = "-5 --dns-addr 77.88.8.8 --dns-port 1253 --dnsv6-addr 2a02:6b8::feed:0ff --dnsv6-port 1253" | ||
|
||
WshShell.Run Chr(34) & strExePath & Chr(34) & strParams, 0, False | ||
|
||
Set oShortcut = WshShell.CreateShortcut(WshShell.SpecialFolders("Startup") & "\GoodbyeDPI.lnk") | ||
oShortcut.TargetPath = objFSO.GetParentFolderName(WScript.ScriptFullName) & "\" & "\_.bat" | ||
oShortcut.Arguments = strParams | ||
oShortcut.WindowStyle = 7 | ||
oShortcut.Save | ||
|
||
Set WshShell = Nothing |
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 @@ | ||
MsgBox "GoodbyeDPI has successfully started running in the background. It will also now run automatically on every startup so you don't have to run it every time." & vbCrLf & vbCrLf & "You can now bypass all access barriers on the Internet. Long live freedom!", vbInformation, "GoodbyeDPI" |
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
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,4 @@ | ||
echo off | ||
cls | ||
cscript //nologo "%~dp0/lib/_.vbs" | ||
cscript //nologo "%~dp0/lib/__.vbs" |