I am developing an application, and would like to chain requests from this application through Postman Interceptor followed by a SOCKS5 proxy.
Application -> Privoxy -> Postman Interceptor -> SOCKS5 Server -> Web Server
I was hoping this would work for my Privoxy config:
forward / localhost:5555
forward-socks5 / user:pass@server.com:1080
And from my application, route requests through localhost:8118 (Privoxy).
Unfortunately, the requests only seem to be going through Postman, and not the SOCKS5 server as well. I also tried to use localhost:5555 as a "parent proxy" to the SOCKS5 proxy, like so:
forward-socks5 / user:pass@server.com:1080 localhost:5555
I also tried appending a single whitespace + a period to the end of these configuration lines, in all possible permutations, hoping that one would result in the expected behavior.