Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Added SOCKS5 proxy support in preferences #35

Closed
jim618 opened this issue Jun 14, 2012 · 5 comments
Closed

Added SOCKS5 proxy support in preferences #35

jim618 opened this issue Jun 14, 2012 · 5 comments

Comments

@jim618
Copy link
Contributor

jim618 commented Jun 14, 2012

Add SOCKS5 proxy support, as suggested by Haley Amlin, Gary Rowe as follows:

http://stackoverflow.com/a/120818/396747):

if (needsProxy()) {
System.getProperties().put("proxySet", "true");
System.getProperties().put("proxyHost", getProxyHost());
System.getProperties().put("proxyPort", getProxyPort());
} else {
System.getProperties().put("proxySet", "false");
System.getProperties().put("proxyHost", "");
System.getProperties().put("proxyPort", "");
}

java -jar -Dhttp.proxyHost=127.0.0.1 -Dhttp.proxyPort=8123
multibit-exe.jar

@HostFat
Copy link

HostFat commented Oct 7, 2012

will this protect for any possible leak?

@jim618
Copy link
Contributor Author

jim618 commented Oct 8, 2012

It needs more investigation with something like WireShark before I can be sure there is no leaking of data.

Currently the help is sited at http://multibit.org so that is a leak. DNS lookup is used to find the peers so that might leak too.

@LoZio
Copy link

LoZio commented Sep 11, 2013

I also vote for SOCKS support. It is the a basic function for the software. I can imagine all kinds of anonymous transactions, but your IP is stamped in the transactions leading to immediate and certain identification of each movement. This alone makes the client a big hazard to use.

@pgpbpadilla
Copy link

+1 This should be a built-in feature.

@kristovatlas
Copy link

+1 for building this feature into the wallet's GUI, or configuration file at a minimum.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Projects
None yet
Development

No branches or pull requests

6 participants