Tagged Questions
The socks tag has no wiki summary.
13
votes
3answers
3k views
How can I use a SOCKS 4/5 proxy with urllib2?
How can I use a SOCKS 4/5 proxy with urllib2 to download a web page?
6
votes
7answers
4k views
Using urllib2 with SOCKS proxy
Is it possible to fetch pages with urllib2 through a SOCKS proxy on a one socks server per opener basic? I've seen the solution using setdefaultproxy method, but I need to have different socks in ...
4
votes
0answers
173 views
socks5 proxy/tunnel for nginx upstream?
are there any solution/patch that would make nginx work with a socks upstream?
something like this:
server {
location / {
proxy_pass socks5://ip:port/
}
}
4
votes
5answers
459 views
How to build proxy gateway?
I have great IM that to work needs proxy of type (SOCKS4,SOCKS4A,SOCKS5), However my company is using Http Proxy.
I would like to build my own proxy that will just forward data to my company's ...
3
votes
2answers
587 views
Python ssh client over socks (proxy)
So, I need to connect to SSH server through proxy socks.
I read paramiko and twisted.conch docs, but didn`t found proxy socks support there.
3
votes
2answers
223 views
Socksifying a Java ServerSocket - how to approach
I would like to have a Java program running on network A have a ServerSocket living on another network B through a proxy. I have played with a SOCKS5 proxy (which works) but it appears that all the ...
3
votes
2answers
475 views
socks in java (opening via socks)
how do i add SOCKS support to my application? and where can i get the libs?
3
votes
2answers
1k views
How to parse a raw HTTP response?
If I have a raw HTTP response as a string:
HTTP/1.1 200 OK
Date: Tue, 11 May 2010 07:28:30 GMT
Expires: -1
Cache-Control: private, max-age=0
Content-Type: text/html; charset=UTF-8
...
3
votes
1answer
2k views
How To Authenticate Socks 5 Proxies Inside PAC (Proxy Auto Config) Files
How can you setup PAC files to use SOCKS proxies with authentication?
Using this simple PAC file as an example:
function FindProxyForURL(url, host) { return "SOCKS 69.123.133.75:7257;"; }
How ...
3
votes
2answers
2k views
Java Proxy client class that supports authentication
I'm looking for a java socks Proxy client class that supports authetication, any suggestions? The java.net.Proxy does not support authentication.
Edit:
I can't seem to find a way that would attach ...
3
votes
2answers
3k views
java runtime 6 with socks v5 proxy - Possible?
I have written an application that (amongst other things) runs a local service in windows that acts as a SOCKS v5 proxy for Firefox.
I'm in the debugging phase right now and have found certain ...
2
votes
0answers
129 views
Networking properties set for a SOCKS proxy & specific Proxy.NO_PROXY
A simple test to force direct connection to toto.localhost.lan (that is served on my local machine) when system properties are configured to use a SOCKS proxy.
package net.wetope.launcher.tests;
...
2
votes
0answers
38 views
Is there a connection method for cucumber/webrat to use a socks5 connection
The host I'd like to test with cucumber is behind a proxy. Using a standart connection e.g. Webrat::Session.new doesn't work because the proxy in the middle ignores my hostheader.
I need a connection ...
2
votes
1answer
79 views
Bytes alignment when sending packets
If I send a packet containing address, port and other stuff, would there be any alignment problem on the other side? (using socks 5 protocol)
2
votes
2answers
1k views
Socks Proxy for HttpWebRequest
According to my research whilst trying to solve this problem, it turns out that the .Net WebProxy class does not support Socks proxies - a tad annoying. I also can't seem to find any code or ...
2
votes
2answers
757 views
C# Reverse PROXY (bypass NAT / FIREWALL)
right now Im searching for like 6h to get into it!
My brain is done!
Ok, heres the deal:
I'm searching a solution, to connect to a PC behind a Router wich is running the Proxy Server to passthrough ...
2
votes
3answers
281 views
SOCKS in C/C++ or another language?
How do i add SOCKS support to my application? and where can i get the libs?
any help appreciated thanks
2
votes
3answers
618 views
Python, implementing proxy support for a socket based application (not urllib2)
I am little stumped: I have a simple messenger client program (pure python, sockets), and I wanted to add proxy support (http/s, socks), however I am a little confused on how to go about it. I am ...
2
votes
2answers
412 views
How can I use SOCKS with HtmlUnit?
Is it possible to use HtmlUnit through SOCKS proxy? Could anyone please provide a code sample?
====
So I've dug through webclient sources, here's the best way I can think of:
Subclass ...
2
votes
2answers
103 views
Java API: Connect using proxies on different threads
I would like to use different proxies instead of just one. Currently the ProxySelector sets a system wide proxy for all URLConnections. Does anyone know of a library that supports non system-wide ...
2
votes
1answer
3k views
Connecting with different Proxies to specific addresses
I am developing a Java webservice application (with JAX-WS) that has to use two different proxies to establish separated connections to internet and an intranet. As solution I tried to write my own ...
2
votes
2answers
773 views
mysql proxy socks
Plain and simple, can anyone explain me how to connect to a mysql server through a proxy (socks4/5).
Preferable via the mysql command line (although there are no options for that in the client).
If ...
2
votes
1answer
934 views
Connecting to a .NET webservice via a SOCKS5 proxy
I'm attempting to connect through a SOCKS5 proxy to a webservice. Currently, my app.config is as follows:
<system.net>
<defaultProxy enabled="true" >
<proxy ...
1
vote
0answers
70 views
java.net.SocketException: Connection timed out:could be due to invalid address on IBM AIX
I am facing one weird issue on IBM AIX machine. It's working fine on windows and other unix box. The issue is:
Exception in thread "main" java.net.SocketException: Connection timed out:could be due ...
1
vote
1answer
54 views
Create socks host with C# for http proxy forwarding
i want to create a proxy server or (Socks host ??) to communicate with browsers (such as firefox) to forward http proxy.
i have a software that do this: bitvise tunnelier.
so, i need to write an ...
1
vote
1answer
116 views
Java Mail: How to use SOCKS for IMAP processing without global sytem properties?
I have the problem described in this question
JavaMail: How to use different SOCKS5 for different threads?
..but there is no really answer to this question :-(
additionally I want to retrieve mails ...
1
vote
1answer
49 views
ADSI INTERFACE to connect Active Directory services through SOCKS (Proxy server)
I had a VBScript to manipulate the Active Directory users by using the ADSI interface. The script works well. This is our current scenario
a Machine ----------------------------> Active Directory ...
1
vote
1answer
119 views
JavaMail: How to use different SOCKS5 for different threads?
I wrote multithreading application which connects to some email accounts from database per thread.
I know that JavaMail have no any options to use SOCKS5 for connection so I decided to use it via ...
1
vote
0answers
176 views
How to tunnel an SSL connection correctly between two NetworkStreams?
HttpWebRequest doesn't support SOCKS proxies, so after a long research I've determined, that the best way to add SOCKS support for WebRequest and WebClient (without reinventing the wheel, like ...
1
vote
1answer
240 views
Library For Sending HTTP/S Requests With Socks5 Proxy. C# / .NET
Does anyone happen to know of a library paid or free that will allow me to send HTTP/S requests using a Socks5 proxy? I've googled without much success. I need a way to either send requests in a ...
1
vote
2answers
94 views
SOCKS Proxy, Why do most browsers support them?
I've noticed that pretty much all the popular browsers support SOCKS Proxy, but have failed to understand as to why would that be the case.
What make's SOCKS Proxy important enough to be supported by ...
1
vote
0answers
199 views
How to use SOCKS in Java?
I use 100% working socks and I can't connect through my application.
SocketAddress proxyAddr = new InetSocketAddress("1.1.1.1", 12345);
Proxy pr = new Proxy(Proxy.Type.SOCKS, ...
1
vote
2answers
205 views
How to run a fabric script over a SOCKS proxy?
I have a SOCKS proxy setup to a gateway server which is created by setting up a host definition in my ssh_config to use DynamicForward localhost:9876. To connect with SSH to the remote server I've ...
1
vote
2answers
606 views
Proxy/Socks C# problem
How I can add proxy/socks4/socks5 to C# Socket.
I need use it throw Socket.
I don't want use WebRequest and any classes.
private static Socket ConnectSocket(string server, int port)
{
Socket s = ...
1
vote
2answers
402 views
Use ping through SOCKS server?
I'd like to periodicity check if my SOCKS server is working fine. In order to do that, I thought of pinging 8.8.8.8 (google DNS server) through the SOCKS server.
Is there other recommended way?
If ...
1
vote
2answers
1k views
Python urllib over TOR?
Sample code:
#!/usr/bin/python
import socks
import socket
import urllib2
socks.setdefaultproxy(socks.PROXY_TYPE_SOCKS4, "127.0.0.1", 9050, True)
socket.socket = socks.socksocket
print ...
1
vote
1answer
248 views
Why doesn't IE/Chrome on Windows support SOCKS5 proxies on port 27977?
I am working with a client who uses proxies on their Windows machines. They recently have come to me to solve the issue of why Interenet Explorer and Chrome refuse to use SOCKS5 proxies on port 27977. ...
1
vote
2answers
154 views
Arranging bytes in a packet
If I need to create a packet like this:
field 1: SOCKS protocol version, 1 byte
field 2: status, 1 byte:
field 3: reserved, must be 0x00
field 4: address type, 1 byte:
field 5: destination address ...
1
vote
1answer
558 views
Is it possible to ENCRYPT standard SOCKS5 proxies?
HI, I am from a country with incredibly heavy internet censorship.
I managed to get some FREE socks 5 proxies like 12.34.56.78:8084. It works well. However, there are still some sites that cant be ...
1
vote
1answer
145 views
What's going wrong with this SOCKS proxy request?
I'm currently trying to implement SOCKS 4/5 functionality in my C++ program (i.e. requests to arbitrary protocols and hosts can be redirected through a given SOCKS proxy if desired). I'm developing ...
1
vote
2answers
198 views
Java Socks5 External Application
I have connected to a socks5 server in my java application, and now I want to launch an external application and have all of its connections run through the socks5 server. The external application ...
1
vote
1answer
133 views
Is it possible in PHP like Java's socksProxyHost?
Is there any option in PHP to set a socks proxy for incoming and outgoing traffic?
1
vote
1answer
262 views
Using socks5 proxy with Net::SMTP
I would like to use Net::SMTP with dynamic socks proxy. IO::Socket::Socks is aware of socks but how it should be used with net::smtp?
1
vote
1answer
382 views
Selenium: Can I tunnel through an *External* HTTP/SOCKS proxy over Firefox?
I know Selenium Server acts AS a proxy. But I want to know if I can instruct a test to connect through to either a SOCKS or plain http proxy, eg: Tuenneling through an external Proxy. (It's so hard to ...
1
vote
2answers
313 views
httplib2 giving internal server error 500 with proxy
Following is the code and error it throws. It works fine without the proxy http = httplib2.Http() .
When I try the same http proxy in Firefox, it works fine.
Any pointers are highly appreciated!
...
1
vote
3answers
1k views
1
vote
1answer
276 views
1
vote
2answers
1k views
Create a SOCKS Proxy that does nothing special
I am trying to create a SOCKS proxy in C++ that runs as a background process on localhost.
If the user's browser is configured to use the proxy, I want all HTTP requests to be passed along through ...
1
vote
1answer
1k views
Java SOCKS proxy
Does socksProxyHost property requires an IP address
System.setProperty("socksProxyHost", preferences.getProxyHost() );
setting it like following, If i provide 127.0.0.1 i get connected to the proxy ...
0
votes
2answers
41 views
boost asio - write equivalent piece of code
I have this piece of code using standard sockets:
void set_fds(int sock1, int sock2, fd_set *fds) {
FD_ZERO (fds);
FD_SET (sock1, fds);
FD_SET (sock2, fds);
}
void do_proxy(int client, ...