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.

198 questions
6
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
  • 157
  • 1
  • 2
  • 10
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
  • 522
  • 1
  • 9
  • 27
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
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
  • 724
  • 2
  • 7
  • 15
5
votes
0 answers

Using proxy_pass with a socks5 proxy in nginx

I want to host a service, and then connect to it using a specific proxy when it is accessed via specific domain. Like it's shown here: | # User make a request to s2.example.com |__ s2.example.com <-- This is my VPS that runs debian sid, nginx and…
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
  • 2,189
  • 2
  • 13
  • 9
4
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…
CuriousPanda
  • 43
  • 1
  • 4
4
votes
1 answer

SSH to Remote host via another host

I am trying to ssh to remote Host B, but network access control governs I am only able to do this via Host A. How would I go about doing that? Have tried creating a tunnel to Host A ssh -f -N -D 2222 user@hostA Then when creating new ssh connections…
0rangutang
  • 43
  • 1
  • 3
4
votes
2 answers

Setup an ssh account that can only be used for a socks5 proxy

I have an arch linux machine behind a firewall. I can open a port forwarding for the ssh port. I would like to create a user that can be used only for a socks proxy. ssh -N -D 5000 user@server -p9000 5000 will be the local port the user uses for…
mist
  • 155
  • 6
4
votes
2 answers

Dante sockd can't forward traffic through multiple virtual IPs

I have configured Dante sockd to forward traffic through multiple IP interfaces. The config is basically this: logoutput: /var/log/sockd.log debug: 1 socksmethod: username none internal: eth0 port = 60000 external: eth0 internal: eth0:0 port =…
Simon Greenwood
  • 1,363
  • 9
  • 12
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
  • 791
  • 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
1 answer

Use authentication with Dante Socks

I just set up my dante socks proxy and it works just fine without authentication. Now I want only certain users to be able to use it tho. Preferably only those users that are in the passwd. What would you guys recommend me using? Can I somehow use…
cherrun
  • 749
  • 2
  • 11
  • 17
1
2
3
13 14