socks

Using urllib2 with SOCKS proxy

Hello. 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 different openers. So there is SocksiPy library, which works great, but it has to be used this way: import socks import socket socket....

Cocoa NSStream works with SSL, with socks5, but not at the same time

Upon connecting (to an FTP, at first without SSL) I run: NSArray *objects = [NSArray arrayWithObjects:@"proxy.ip", [NSNumber numberWithInt:1080], NSStreamSOCKSProxyVersion5, @"user", @"pass", nil]; NSArray *keys = [NSArray arrayWithObjects:NSStreamSOCKSProxyHostKey, NSStreamSOCKSProxyPortKey, NSStreamSOCKSProxyVersionKey, NSStreamSOCKSP...

Python, implementing proxy support for a socket based application (not urllib2)

Hey guys, 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 assuming that the connection on the socket level will be done to the proxy server, at which point the headers should contain a CONNE...

Multiple connections in a single SSH SOCKS 5 Proxy

Hey guys, My fist question here on Stackoverflow: What should I need to do so that the SSH SOCKS 5 Proxy (SSH2) will allow multiple connections? What I have noticed, is that when I load a page in Firefox (already configured to use the SOCKS 5 proxy), it loads everything one by one. It can be perceived by bare eyes, and I also confirm t...

C# SOCKS proxy service for HTTP requests

I'm trying to build a service that will forward HTTP requests from agents like a browser to the Tor service. Problem is, the Tor service only accepts SOCKS4a connections. So my solution is to listen for HTTP requests, get the URL they're requesting, and make a request via Tor with the help of the Starksoft.Net.Proxy library. Then return...

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 Server: gws X-XSS-Protection: 1; mode=block Connection: close <!doctype html><html>...</html> Is there an easy way I can parse it into an...

Using a SOCKS proxy from C++

How I can use a SOCKS proxy from my C++ socket program? ...

python socket problem

I write this python code: import socks import socket socks.setdefaultproxy(socks.PROXY_TYPE_SOCKS5, "64.83.219.7", 58279) socket.socket = socks.socksocket socket.setdefaulttimeout(19) import urllib2 print urllib2.urlopen('http://www.google.com').read() but when I execute it, I get this error: urllib2.URLError: <urlopen error timed ou...

a problem in socks.h

i use this (http://www.codeproject.com/KB/IP/Socks.aspx) lib in my socket programing in c++ and copy the socks.h in include folder and write this code: #include <windows.h> #include <winsock.h> #include <stdio.h> #include <conio.h> #include <process.h> #include "socks.h" #define PORT 1001 // the port client wil...

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 ...

socks in java (opening via socks)

how do i add SOCKS support to my application? and where can i get the libs? ...

opening via socks

i have this socks : 80.176.245.196:1080 and i want to opening google.com via that socks . what am i going to do ? is this true ? : 80.176.245.196:1080/google.com ...

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! Usage : http = httplib2.Http(proxy_info = httplib2.ProxyInfo(socks.PROXY_TYPE_HTTP, '68.48.25.158', 25681)) main_url = 'http://www.mywebs...

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 proxy facilities in Java only work with client connections, not with ServerSockets (no constructor taking a Proxy argument). Asking Google ...

connect to oracle through socks proxy

My application (linux and windows) connects to oracle through OCI interface. Is it possible to connect to oracle through socks proxy? or some other similar proxy method? Simple ssh tunnel is not enough as I need to access multiple services (including oracle) through single port. Edit: I have tried configuring the proxy as suggested in t...

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 search for because the word proxy just shows how Selenium works, not if it supports this feature....) ...

How to use URLConnection through a SOCKS proxy?

Hi. How can I set the SOCKS proxy for a URLConnection given by (new URL(url)).openConnection()? Different proxies are needed on a per-connection basis, so please don't suggest setting system properties. ...

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? ...

Using HTTP proxies as SOCKS in java

Is there any way to use an HTTP proxy as a SOCKS proxy? i want to use it as a socket to connect with an endpoint and send packets of information ...

Java Socks proxy connection

Socket skt; Proxy proxy = new Proxy(Proxy.Type.SOCKS, new InetSocketAddress(proxy_address,proxy_port)); Socket server = new Socket(address, port); skt = new Socket(proxy); try { skt.setSoTimeout(5*1000); skt.connect(server.getRemoteSocketAddress()); } catch (Exception e) {} the skt socket creates a new socket with the pr...