Questions tagged [socks5]

Socket Secure [SOCKS], an Internet protocol that routes network packets between a client and server through a proxy server. [SOCKS5] additionally provides authentication

Socket Secure [SOCKS] is an Internet protocol that routes network packets between a client and server through a proxy server. SOCKS5 additionally provides authentication so only authorized users may access a server. Practically, a SOCKS server proxies TCP connections to an arbitrary IP address, and provides a means for UDP packets to be forwarded.

SOCKS performs at Layer 5 of the OSI model (the session layer, an intermediate layer between the presentation layer and the transport layer).

Source: [Wikipedia] - SOCKS

43 questions
11
votes
1 answer

How to use Socks5 across the whole system like a VPN?

I'm looking for a way to use configured a Socks5 across the whole system including terminals, apps, browsers, etc. For instance, I run a socks5 proxy on my localhost on port 1080 using V2ray or Shadowsocks or an SSH tunnel then I can use these…
Benyamin Jafari
  • 4,234
  • 4
  • 27
  • 37
8
votes
1 answer

can you set socks5 proxy from Linux command line?

I've managed to set a socks5 proxy server from Linux towards another server like this : ssh -D 9090 -N -f user@192.168.76.102 Then I changed the settings in mozilla browser to use the socks proxy, and it works, I can surf the internet. What I want…
AlexP
  • 131
7
votes
2 answers

Is SOCKS4/5 supported by apt?

The manpage for apt.conf doesn't mention SOCKS at all. Yet there are a few questions about SOCKS and apt here, and every now and then I see an answer which has something like: Acquire::http::proxy .. Acquire::https::proxy .. Acquire::ftp::proxy…
muru
  • 207,228
6
votes
1 answer

command to set socks proxy

I'm using socks proxy over ssh tunnel ssh -D 1080 -f -C -q -N @ when I set the proxy in System settings > Network > Network proxy, all applications like Chromium, Firefox, apt, ... are following the proxy. now I want to write a shell…
M.A. Heshmat Khah
  • 1,067
  • 2
  • 11
  • 18
6
votes
1 answer

Can I use manual socks proxy for only specific sites?

I am using socks proxy with chrome. With dconf editor, I can add ignore-host so that browser connect this hosts without proxy. Now I want to do opposite of this. I mean I want to specify hosts so that browser connect only these hosts by proxy. Is it…
ibrahim
  • 337
6
votes
1 answer

Slack desktop client with socks proxy

How can I configure slack desktop client to use a socks proxy?
a06e
  • 14,233
5
votes
2 answers

ssh-tunneled SOCKS proxy connection refusals on Firefox 47.0 / Kubuntu 16.04

I am having difficulty making connections to websites using Firefox over a tunneled SOCKS proxy. SOCKS4/SOCKS5 makes no difference. I set up the tunnel with ssh -D 1234 id@remotehost.example.com then point Firefox's SOCKS proxy to localhost on…
5
votes
1 answer

Does creating a SOCKS proxy via ssh hide my activities from my ISP?

I've been using an ssh tunnel for browsing, reading that doing so would encrypt the connection to the internet. However, i have no idea as to what kind of protection that the ssh tunnel really provide. Does it just protect my connection from…
4
votes
1 answer

From WAN, VNC fails to connect through ssh 5900 tunnel if not also proxied locally

On my local network, I can VNC-over-an-ssh-tunnel quite easily. I wish to do the same from abroad. The server is set up to accept WAN-side ssh connections, and this works reliably. The problem is, when abroad I cannot start a successful VNC…
Tfb9
  • 681
4
votes
1 answer

SOCKS proxy to SSH server behind HTTP proxy

I set up a SOCKS proxy at port 9090 to computer B elsewhere: ssh -D localhost:9090 user@B and configured it in my local Google Chrome browser. However, computer B is behind an HTTP proxy, so HTTP requests originating locally get to computer B…
4
votes
1 answer

Run Tor as Client Only

I'm running tor with the following command: tor --ClientOnly 1 --RunAsDaemon 1 --CookieAuthentication 0 --ControlPort 8119 --PidFile tor1.pid --SocksPort 9051 --DataDirectory data/tor/tor1 This create an instance, which I can use via:…
3
votes
0 answers

Problem with proxy after installing tor

Recently I installed Tor on my ubuntu(17.10) and then I figured it out that Tor has set to the wide computer's internet. HTTP = 127.0.0.1:8118 SOCKS = 127.0.0.1:9050 When I disable the proxy in setting, I can't open any web page or anything. Can you…
Matin
  • 31
3
votes
1 answer

What does StackApplet "Network Error" mean?

I just installed StackApplet StackApplet 1.5 using the debian package from the launchpad site. When I first clicked on the preferences button in the menu it tried opening http://localhost:8150/ in Chromium, and I got this error: This webpage is not…
adempewolff
  • 12,400
3
votes
2 answers

Telegram calls via Dante socks5 proxy server not working

I've confugured Dante 1.4on Ubuntu 16.04 as a socks5 proxy for Telegram. Chats are working, but voice calls are not, failing at "Connecting". Is there something special I need to configure in order to proxy Telegram voice traffic? I'm using a single…
2
votes
3 answers

Why doesn't tsocks work with apt-get?

I am using tsocks to socksify my connections. When I run the following commands, apt-get isn't socksified: $ . tsocks -on $ sudo apt-get update However, when I run the whole thing in one line like the following, it works. sudo tsocks apt-get…
Parham Doustdar
  • 151
  • 2
  • 9
1
2 3