Internet Proxy not working

maremare1341-23

New member
Hello,

Running a sandboxed app ( any app) with proxy doesn't work for me. My home IP is still showing on browsers whenever i try to run it via proxy.
My .ini config:


Enabled=y

BlockNetworkFiles=y

RecoverFolder=%{374DE290-123F-4565-9164-39C4925E467B}%

RecoverFolder=%Personal%

RecoverFolder=%Desktop%

BorderColor=#02f6f6,ttl

Template=OpenBluetooth

Template=SkipHook

Template=FileCopy

Template=qWave

Template=BlockPorts

Template=LingerPrograms

Template=AutoRecoverIgnore

ConfigLevel=10

UseFileDeleteV2=y

UseRegDeleteV2=y

AutoRecover=y

ClosedFilePath=!<InternetAccess>,InternetAccessDevices

PromptForInternetAccess=y

NetworkUseProxy=*,Address=5.252.188.xxx;Port=62xxx;Auth=Yes;Login=xxx;EncryptedPW=8vu/teXRlolLRS5lN6NL/A;Bypass=

---

I added x's so i dont reveal my proxy here...
 
Which version of Sandboxie are you using? (Like Sandboxie-Plus 1.14.6)

What system does it fail on? (Like Windows 10 22H2 or Windows 11 version 24H2)
 
Thank you for stating the affected version on your system. I created this issue on the GitHub issue tracker. You might be lucky and have someone reply here, in case that is a configuration issue.
 
There turned out to be a bug with the way the encrypted password is stored. This bug will be fixed in the next release.

David, does not know why the proxy is bypassed instead of it failing, which is the intended behavior. The apps should be blocked.
 
I am quoting offhub for something you can test:

There may be another proxy running on the system. I think the proxy server defined in Sandboxie is not used when a system-wide (or application-wide) proxy server is defined.
  1. Run sandboxed CMD
  2. Run the following command
Code:
reg add "HKEY_CURRENT_USER\Software\Microsoft\Windows\CurrentVersion\Internet Settings" /v proxyEnable /t REG_DWORD /d 0 /f
  1. Run a browser in the same sandbox
  2. See if it makes a difference

This will use sandboxie proxy:
Code:
curl https://api.ipify.org/
This will not use sandboxie proxy:
Code:
curl --socks5 <anotherproxy>:<port> https://api.ipify.org/
 
I can't reproduce the failure mode there it leaks the communication around the proxy, for me when soemthign fails the connection always fails.
Please try the soon to be released 1.14.7 and report back whats the behavioure.
 
Back
Top