Compare commits

..

No commits in common. "6c4240efbf231f0f04f1189a96652cf80d61db16" and "1436d19c04c0aee1cf95384b027ed96171e4267b" have entirely different histories.

3 changed files with 4 additions and 7 deletions

View File

@ -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):

View File

@ -2,9 +2,6 @@
If HTTP(s) is filtered and outbound SSH is allowed, just create a SOCKS5 proxy over SSH using a [Jump server](https://en.wikipedia.org/wiki/Jump_server). Beat the (corporate) sensorship, and be free!
> [!CAUTION]
> Project has been archived because Palo Alto Networks, Inc. - Cortex [XDR](https://en.wikipedia.org/wiki/Extended_detection_and_response) marks it almost always as Suspicious, removes it or analyses it during runtime. Research case closed, back to WSL ssh SOCKS5 proxy then...
## Background information
The proxy can use [SSHFP DNS record](https://en.wikipedia.org/wiki/SSHFP_record) verification for extra protection so the SSH host public key is side-channel checked.

View File

@ -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()
}