Tagged Questions

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?
4
votes
0answers
179 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
460 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
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
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
130 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
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
758 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
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
104 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
776 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
935 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
1answer
59 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
122 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
50 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
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
208 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
612 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
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
1answer
562 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
135 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
385 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
315 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
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
0answers
41 views

Setting Internet Explorer / Windows to use a Socks5 proxy in C#

This is driving me nuts. I'm making a SSH Tunnelling application, and need to be able to automatically force the system to use HTTP & Socks5 proxies, and have the changes take effect instantly. ...
0
votes
0answers
24 views

Record AIM with a Socks Proxy?

I need to record the AIM traffic at work for compliance reasons. After checking on the internet I have yet to find a single application that actually works. Anyone have any recommendations? Or if ...
0
votes
0answers
57 views

remote connection to device running TOR [closed]

i have MacBook running TOR and it works fine, also i have an iPad which i want to make it connect to internet via the previous MacBook. i tried the following: installed TOR on iPad(there's a ...
0
votes
0answers
48 views

DotNet UDP socks Client

I need make a UDP connection in dotnet via a Socks5 proxy but i can not find an implementation of a socks5 client for dotnet that supports UDP. There are a number for TCP but the service i am ...
0
votes
1answer
55 views

Socks 4 Bind Request Explaination

i was reading this topic http://ftp.icm.edu.pl/packages/socks/socks4/SOCKS4.protocol and what im trying to do is: i have a client/server application, what im trying to do is to use socks 4 BIND ...
0
votes
2answers
87 views

Understanding the Socks5 Protocol

I'm a total newbie with socks5, but I'm trying learn by creating a socks5 server. I've gotten a great deal of information about SocksV5 from reading RFC 1928. It explains the packets which must be ...
0
votes
0answers
140 views

Bypass blocked ports behind proxy [closed]

I know this might sound a bit noobish, but I couldn't find a solution to it and decided to post here. The internet connection at my residence requires me to set up a proxy, i.e. have intra.res123.com ...
0
votes
0answers
37 views

Are there any embeddable socks proxy servers that tunnels traffic through a remote host via ssh?

ssh -D 9191 ronald@ssh.somehost.com will create a socks proxy locally that will tunnel all traffic through the remote host. Is it possible to build this in to an application C++ or C and make it ...
0
votes
1answer
55 views

Is SOCKS5 bind persistent, or one-time only?

I've been studying RFC 1928 and the description of the BIND operation wasn't clear to me. The setup sequence is described as follows, as I understand it: The client establishes connection to the ...
0
votes
1answer
123 views

Setting proxies in HtmlUnit

I'm using proxies with htmlunit, my proxy list contain mixture of both http and socks, I dont know if the next selected proxy to be passed to htmlunit is type http or socks, will htmlunit ...
0
votes
1answer
117 views

How do I find out if the proxy speaks Socks v4 or v5?

Im trying to make a program that connects to a proxy but i have a little problem, I have socksv4 and v5 protocal written up but how do i know which version the proxy is? The reason I'm not using the ...
0
votes
2answers
125 views

Checking the type of a web proxy

How do I determine whether a web proxy IP is of type HTTP or SOCKS4/5 with java? Thank you.
0
votes
1answer
139 views

SSH Shell in Canada for SSHTunnel/Socks proxy testing

i've been using ec2 to crate ssh tunnels to test the rendering of our site from different geographical regions. I now need a node in canada - which ec2 doesn't support. Are there any well known ...
0
votes
2answers
240 views

How to use URLConnection Timeout

I am trying to sort through a list of SOCKS proxies, and figure out which ones have a connect and read time of less than 1000ms, here is my code for(Proxy p : proxies) { try { ...
0
votes
2answers
261 views

URLConnection(Proxy proxy) ignoring the set proxy

I'm trying to test a SOCKS proxy that's under load from multiple machines. The outline of my code is something along the lines of Connect directly to the server with one client, download the test ...
0
votes
0answers
43 views

Don't know how to stop my proxy server

I kinda screwed up. I know very little about linux but I decided to run a proxy server on this server I'm renting (no root privileges) and it works :) But now I don't know how to stop it and I need ...
0
votes
0answers
299 views

Simple Socks Proxy code? (Arduino + Ethernet module)

For a new project, i had a strange idea of using an Arduino with a Wiznet W5100 Ethernet module for routing/proxying http data. The module supports only 4 connections, and i am unsure if this will be ...
0
votes
1answer
448 views

SOCKS5 Proxy using SSLSocket

I have a client/server application that remotely connects to a server via Java's SSLSocket. I'm trying to implement an optional mode that enables connections via an authenticated SOCKS v5 proxy. I ...
0
votes
0answers
368 views

socket connection not properly trying each proxy returned from ProxySelector.select()

Experimentally, java.net.URL cycles through the list of proxies returned by java.net.ProxySelector.select(URI) until if finds one that works. However, once java.net.Socket encounters a broken proxy it ...
0
votes
0answers
72 views

How do I overcome this SOCKS connection issue?

I have a simple Console application that can successfully connect to a SOCKS proxy server but it fails every time when attempting to retrieve data back from that proxy. Connect to SOCKS and get ...

1 2