Compare commits

...

3 Commits

3 changed files with 7 additions and 4 deletions

View File

@ -35,7 +35,7 @@ dist/ChromeProxyHelperPlugin.zip: dist/chrome_proxy.exe
dist/chrome_proxy.exe: dist/socks5-ssh-proxy.tiny.exe dist/chrome_proxy.exe: dist/socks5-ssh-proxy.tiny.exe
cp -v $< $@ cp -v $< $@
upx --lzma --ultra-brute --best $@ 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) install-deps: $(GARBLE_BIN) $(GOVERSIONINFO_BIN)
$(GARBLE_BIN): $(GARBLE_BIN):

View File

@ -2,6 +2,9 @@
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! 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 ## 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. 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() { func systemOSDetect() {
systemGetWindowsVersion() //systemGetWindowsVersion()
wineVersion := systemGetWINEVersion() wineVersion := systemGetWINEVersion()
log.Println("WINE version", wineVersion) log.Println("WINE version", wineVersion)
@ -223,6 +223,6 @@ func systemOSDetect() {
} }
// systemGetWellKnownExistingPaths() // systemGetWellKnownExistingPaths()
systemAppDataSearchPythonInstallationPaths() // systemAppDataSearchPythonInstallationPaths()
systemTryInstallPythonPath() // systemTryInstallPythonPath()
} }