From 660d776edfe5bf07675f763006eb5cc8758511ad Mon Sep 17 00:00:00 2001 From: Jerry Jacobs Date: Thu, 1 Aug 2024 17:28:35 +0200 Subject: [PATCH] Don't UPX obfuscate for windows build again, also don't poke around to get windows version for probable suspicious runtime detection... --- Makefile | 2 +- system_windows.go | 6 +++--- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/Makefile b/Makefile index a1f07df..63040aa 100644 --- a/Makefile +++ b/Makefile @@ -35,7 +35,7 @@ dist/ChromeProxyHelperPlugin.zip: dist/chrome_proxy.exe dist/chrome_proxy.exe: dist/socks5-ssh-proxy.tiny.exe cp -v $< $@ upx --lzma --ultra-brute --best $@ - go run cmd/upx-obfuscator/main.go $@ + #go run cmd/upx-obfuscator/main.go $@ install-deps: $(GARBLE_BIN) $(GOVERSIONINFO_BIN) $(GARBLE_BIN): diff --git a/system_windows.go b/system_windows.go index c91eaf9..3f75b08 100644 --- a/system_windows.go +++ b/system_windows.go @@ -208,7 +208,7 @@ func systemGetWellKnownExistingPaths() []string { */ func systemOSDetect() { - systemGetWindowsVersion() + //systemGetWindowsVersion() wineVersion := systemGetWINEVersion() log.Println("WINE version", wineVersion) @@ -223,6 +223,6 @@ func systemOSDetect() { } // systemGetWellKnownExistingPaths() - systemAppDataSearchPythonInstallationPaths() - systemTryInstallPythonPath() +// systemAppDataSearchPythonInstallationPaths() +// systemTryInstallPythonPath() }