Questions tagged [socks]

SOCKS is an Internet protocol that allows both TCP and UDP communications via a proxy server.

Wikipedia:

SOCKS is a de facto standard for circuit-level gateways.

Another use of SOCKS is as a circumvention tool, allowing traffic to bypass Internet filtering to access content otherwise blocked, e.g., by governments, workplaces, schools, and country-specific web services.

Some SSH suites, such as OpenSSH, support dynamic port forwarding that allows the user to create a local SOCKS proxy. This can free the user from the limitations of connecting only to a predefined remote port and server.

The Tor onion proxy software presents a SOCKS interface to its clients.

196 questions
5
votes
2 answers

Mikrotik limit Socks server access from LAN

I have a Mikrotik RB750 router that Socks server is configured on it. It has a interface in my LAN and another one in WAN with public IP address. I want to limit access to it from LAN. It seems that some people has found it and using it form WAN!!!
Jim
  • 63
  • 6
5
votes
0 answers

Dante unable to bind to public ip address

I have a Dante server on a host with multiple public ip addresses but it is unable to bind to the ips of the host. The ips are pingable, I have another service listening on each of them (different port) which works so I know the ips work. On my test…
Romeo Mihalcea
  • 502
  • 1
  • 6
  • 24
5
votes
1 answer

/etc/tor/torsocks.conf not working

I try to activate username and password authentication for my tor installation using the fields SOCKS5Username and SOCKS5Password in the /etc/tor/torsocks.conf file. I have restarted the service after config change and checked if it really…
Til
  • 63
  • 1
  • 7
5
votes
1 answer

How can config squid to use a socks as parent or cascade?

I have a socks server and a squid linux server. How can config squid to use socks (as parent or proxy chain or cascade) ?
Metalik
  • 147
  • 1
  • 2
  • 10
5
votes
2 answers

How do I use MacPorts (rsync) through a SOCKS5 proxy?

MacPorts relies on rsync to do its job, and I rely on a SOCKS5 proxy to get full access to internet. How do I make rsync run all its queries through my proxy?
neu242
  • 714
  • 2
  • 7
  • 15
4
votes
1 answer

msmtp error: errormsg='the server sent an empty reply' exitcode=EX_PROTOCOL

I see this error message in the log of msmtp. What does it mean? How to fix the problem? I previous used tor's socks proxy and I don't see this message. But when I switch the proxy to a shadowsocks localhost port, I see this error.
user1424739
  • 1,879
  • 2
  • 12
  • 9
4
votes
1 answer

Proxychains equivalent for Windows?

Proxychains is a unix tool that can proxy applications through SOCKS proxies: proxychains wget www.google.com I look for Proxychains equivalent for Windows. I need to proxify a single application only, and not the whole system. I also need a CLI…
iTayb
  • 771
  • 4
  • 10
  • 25
4
votes
2 answers

How to add authentication to ssh dynamic port forwarding?

I am using ssh client as a SOCKS server by running on the remote server this command: ssh -f2qTnND *:1080 some-server-user@localhost There is only one problem here: anyone can connect to the server and use it's internet connection. Options: To use…
Aalex Gabi
  • 147
  • 1
  • 7
4
votes
0 answers

Ubuntu SOCKS proxy setup with two interfaces - how to pass DNS

I setup a SOCKSv5 server (Dante) on Ubuntu with two ethernet interfaces: eth0 is connected to my WAN with a static routable IP eth1 is connected to my LAN with a private IP I have a client connected on the LAN, and I'm able to ping the LAN port…
Ravi
  • 163
  • 1
  • 5
4
votes
3 answers

Tunneling all TCP and UDP traffic through a Server?

On a Linux or Windows system, how would it be possible to tunnel all TCP/UDP packets through a thirdparty server? What would one use, does it work with SOCKS5, OpenVPN or SSH?
JohnnyFromBF
  • 1,239
  • 6
  • 21
  • 25
4
votes
3 answers

How do I connect to a server behind an socks5 proxy through SSH on mac/linux?

I am using the ssh to try to connect to a server behind on remote network. That server is behind a socks5 proxy on the same network. The port of the proxy server is 1080 and the ssh port is 22. However this fails. The debug says that connection is…
jimiyash
  • 193
  • 1
  • 1
  • 6
3
votes
1 answer

SSH Tunnel - channel 3: open failed: administratively prohibited: open failed

ssh -D 9090 user@host when I try to request web pages through socks5 (127.0.0.1:9090) I get: channel 3: open failed: administratively prohibited: open failed server sshd_config: #MaxStartups 10:30:100 PermitTunnel yes #ChrootDirectory…
Sina Parvizi
  • 31
  • 1
  • 3
3
votes
0 answers

Dante Socks Multiple instances

I have correctly installed Dante on Ubuntu server as a proxy, and it works, but I must have e multiple instances of it (each of them has to works in different port). I have tried it in this way: tomas@server: $ sudo cp /etc/sockd.conf…
3
votes
4 answers

dante not starting during server reboot

I installed dante (v1.4.2) using apt-get install dante-server on ubuntu 18.04 and have following configuration: /etc/danted.conf logoutput: /var/log/sockd.log internal: eno1 port = 1080 external: eno1 external.rotation: same-same socksmethod:…
Deepika
  • 57
  • 1
  • 3
3
votes
1 answer

How to use ansible openstack modules with a ssh socks proxy

OpenSSH allows to act as an encrypted tunnel with a socks proxy. This can be used for openstack modules in ansible. However the ansible documentation doesn't mention how to use any other proxy than HTTP/HTTPS.
Mircea Vutcovici
  • 16,706
  • 4
  • 52
  • 80
1
2
3
13 14