socks5 (27)

How do I pull from a Git repository through an HTTP proxy?
Note: while the use-case described is about using submodules within a project, the same applies to a normal git clone of a repository over HTTP. I have a project under Git control. I'd like to add a…
Simple Http proxy using Sockets: Questions
I'm trying to learn how sockets works in C#. My idea was to program a simple http proxy: Here's my code: using System; using System.IO; using System.Net; using System.Net.Sockets; using System.Text;…
How do I make curl ignore the proxy?
How do I make curl ignore the proxy? Setting $NO_PROXY doesn't seem to work for me.…
python - 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?…
I need an always updated proxy list. I will parse it with PHP and use with cURL. But i need only 3 countries(USA,UK, ITALY for example) proxies. Where can i found a proxy list for this? List can…
php - How to use CURL via a proxy?
I am looking to set curl to use a proxy server. The url is provided by an html form, which has not been a problem. Without the proxy it works fine. I have found code on this and other sites, but they…
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 tr…
python - ValueError: unknown url type in urllib2, though the url is fine if opened in a browser
Basically, I am trying to download a URL using urllib2 in python. the code is the following: import urllib2 req=urllib2.Request('www.tattoo-cover.co.uk') req.add_header('User-agent','Mozilla/5.0') r…
proxy - 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 sen…
linux - performing HTTP requests with cURL(using PROXY)
I have this proxy address: 125.119.175.48:8909 How can I perform a HTTP request using cURL like curl http://www.example.com, but specifying the proxy address of my network?…