Search code examples
proxychaining

Tools for setting up Proxy Chain


We are trying to setup a chain of proxy server in our development system. We wanted to connect to a service through these proxies. The reason why we thought about proxy chaining is that there is no connectivity to the service from all the systems. So we thought we will run a proxy on one system, which will connect to a proxy on another system and so on.

Client ---> A (Proxy)--->B(proxy)---->Final destination

Could you please suggest some tools to achieve this? The service that we have is a SOAP based secured web service.


Solution

  • There is an open source application called ProxyChain for this, here is readme file for this project: http://proxychains.sourceforge.net/howto.html

    You can install as more as proxy chains you want using this open source software, you can configure it per your requirements. Also you can somehow use some port-forwarding. What is the client for SOAP requests? Is it a web or desktop application?