socks

C# Reverse PROXY (bypass NAT / FIREWALL)

Hello, 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 my Information. So like this: Me (wanna connect to 1.1.1.1) --> Internet --> 1.1.1.1 -> Router --> PC With the running Server --> ...

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

php - socks proxy

Hi, For the past fifteen day I'm breaking my head to solve this issue. I have a PHP application which connects to a remote mysql server, but the application can't directly access the remote mysql server, it has to connect through a socks proxy. Please could anyone help me to solve this issue. Thanks in advance. ...

Java proxy connection

Im connecting to a proxy and then from the proxy i connect to the server i want. Sometimes the host that the proxy is connected to disconnects and I don't know that happens. Is there something i can send to the proxy server that will tell me if it is connected to the server or not? Or is there a message that the proxy sends to me if it d...

Checking for proxy connection

What do i need to send to a proxy server (http or socks) that will tell me if it is connected to the host i specified it to connect to. ...

Library? C or Python - Socks5 proxy a non-socks aware application.

I need to write an application that will use an open socks5 proxy and tunnel data through it; eg. Photoshop does not support connections via a proxy, I want to create an app that will take all connections from photoshop and run them through the socks5 proxy. Any help would be great, thanks :) ...

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 itself doesn't support socks5. Any input would be great, scratching my head here.. ...

Socket/Proxy problem in java

I have a socket connecting to a proxy then to a remote server i specify. However i want multiple connections to the remove server from the proxy. So i want to create 4 sockets to the same proxy and from the 4 sockets connect to the remote server. When i do this it doesn't work, it only connects to the proxy once. Here is psuedo code: ...

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 information which explains how to implement Socks 4/5 support via a class which can easily be used with HttpWebRequest (the Proxy property, to be ex...

Android, Bad Socket Exception (SOCKS)

I tried to connect to a server through a SOCKS server in an Android client app (Android OS 1.5 and 1.6) with below snippet code: Proxy proxy = new Proxy(Proxy.Type.SOCKS, new InetSocketAddress(Constants.SOCKS_PROXY_HOST, Constants.SOCKS_PROXY_PORT)); socket = new Socket(proxy); InetSocketAddress dest = new InetSocketAddress...

Connecting to a SOCKS5 proxy to do FTP/S in Java

I'm writing a job that will connect to a client's FTP/S server over my SOCKS5 proxy and I'm utilizing the Apache Commons Net package. The issue is that my SOCKS proxy is configured to not require authentication but I am still getting the following exception: java.net.SocketException: SOCKS : authentication failed at java.net.SocksSo...