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

link|improve this question

33% accept rate
feedback

3 Answers

Not easily. Some workaround may be possible though, based on what you actually want to achieve.

link|improve this answer
i want to use it as a socket to connect with an endpoint and send packets of information – Masterban Aug 6 '10 at 20:55
then the answer is No. – Thorbjørn Ravn Andersen Aug 7 '10 at 0:06
feedback

You can use some HTTP proxies to tunnel TCP connections. This is necessary for SSL encrypted HTTPS traffic which is just passed through by the router without being able to look into the stream.

However, most proxies will limit this to port 443 and some other well known alternative HTTPS ports, so it's not a general solution you can rely on.

But it's not a SOCKS proxy at all, it uses the HTTP protocol with the CONNECT method to do that. UDP is not possible, nor is listening for incoming connections.

link|improve this answer
feedback

Socks is a protocol. HTTP can be tunneled over SOCKS. HTTP is not SOCKS. The question doesn't really make sense. Answer is definitely no.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.