Duhstin Posted February 18, 2018 Share Posted February 18, 2018 So I'm trying to submit information to an SQL database from a script using HTTP requests, but I can't figure out how to get it to do so without using the proxy the client is currently using. Is there a way around this? Quote Link to comment Share on other sites More sharing options...
Lemons Posted February 18, 2018 Share Posted February 18, 2018 The only connections that are not going to be proxied are to localhost, so you would have to create a local server to forward the request through. Other than that, no. 1 Quote Link to comment Share on other sites More sharing options...
Duhstin Posted February 18, 2018 Author Share Posted February 18, 2018 45 minutes ago, Lemons said: The only connections that are not going to be proxied are to localhost, so you would have to create a local server to forward the request through. Other than that, no. Thanks, found a way around it using netsh. Quote Link to comment Share on other sites More sharing options...