Questions tagged [http-proxy]

An HTTP Proxy is a server that receives requests from your web browser and then makes the request to the Internet on your behalf. It then returns the results to your browser.

A proxy server is a server (a computer system or an application) that acts as an intermediary for requests from clients seeking resources from other servers.

A client connects to the proxy server, requesting some service, such as a file, connection, web page, or other resource available from a different server and the proxy server evaluates the request as a way to simplify and control its complexity.

Today, most proxies are web proxies, facilitating access to content on the World Wide Web.

1502 questions
-1
votes
1 answer

Send Id to proxy.config.json dynamically in angular 8

I am unable to send "id" in following scenario. Ex: url=somedomain/{id}/emp For this I set the url in proxy.config.json file as "/employee": { "target":"somedomain", "secure":false, "pathReWrite: { "/employee":"" } } Now in the Angular…
hari
  • 103
  • 1
  • 2
  • 8
-1
votes
1 answer

Is it possible to send requests to an LDAP server through an HTTP proxy?

We use an HTTP proxy (tinyproxy) on a dedicated machine to be able to reach legacy services from our GKE cluster with a static IP address. I'm aware that this is not the best solution, but the requirements are set by the target environment on which…
-1
votes
1 answer

How to use auth-required proxy for Http request in Android app?

I am sending a post request with following code. Proxy proxy = new Proxy(Proxy.Type.HTTP, new InetSocketAddress(proxyAddr, proxyPort)); URLConnection urlConnection = url.openConnection(proxy); urlConnection.setRequestMethod("POST"); …
ariane26
  • 163
  • 1
  • 6
  • 25
-1
votes
1 answer

Google reCaptcha loading using BrowsermobProxy

I'm trying to load a webpage which contains Google reCaptcha using BrowserMobProxy. Although web page is loading but with captcha there are issues. Is that even possible?
-1
votes
2 answers

SSH via HTTP proxy with password on Windows with mingw64

I use Portable Git x64 on Windows. I run everything thought Git Bash. I need to ssh to a server which is reachable only via HTTP proxy. Authentication for server is via pubkey, authentication for proxy is via password, usernames are different. My…
Igor
  • 368
  • 3
  • 8
-1
votes
2 answers

Unable to resolve dependencies in Android Studio

I am connected to my organization network. I have enabled the proxy. Android studio is successfully able to download plugins and update using the proxy. But the build is never successful. During Gradle sync, the 'Run Build' is always failing. I can…
-1
votes
1 answer

How to get less 403 and more 200 response while Web Scraping in python request using proxy?

I'm working on a research project for which I need to scrape some URLs. I have over 5k URLs of foursquare (like this one: https://foursquare.com/v/t-spesjalleke/4c94ec0d533aa09384d5c345) from which I just need to know if the restaurant is…
-1
votes
1 answer

Not able to forward traffic from `tun` interface to `lo`

Originally asked here: https://networkengineering.stackexchange.com/questions/56278/not-able-to-forward-traffic-from-tun-interface-to-lo I am writing a small VPN server, in which for a certain ip address, I am passing the traffic through an http…
Akshay Deo
  • 528
  • 1
  • 6
  • 22
-1
votes
1 answer

Do you know a webhook which should work with a proxy?

I'm looking for a webhook which is able to work with a proxy, because in my company I have to set up the proxy every time I use a software. I want a webhook for dialogflow, and the language I'm using is Python 3.6.
Kevin S
  • 101
  • 1
  • 7
-1
votes
1 answer

How to block HTTP requests initiated from Java clients on Squid proxy server?

I have deployed Squid Server 3.5.27 on Windows Server 2008 R2. I have one Windows 7 machine pointing to my Squid server which is acting as a proxy. Any browser based request initiated from the Windows7 machine is hitting my proxy server. Once hit,…
amit joshi
  • 31
  • 1
  • 1
  • 9
-1
votes
2 answers

How to simulate "server down" situation using Burp suite proxy?

I tried using Burp suite to simulate the above for a particular domain. I am a beginner on this and don't know how to set it up. I couldn't find a built-in option for this. Also, if there is no option, will I need to forward the request to some…
Lakshay Dulani
  • 1,710
  • 2
  • 18
  • 45
-1
votes
1 answer

Need to intercept the PUT calls from client with the header of manipulation

I have a written a jetty http proxy server, in that i need to intercept the PUT calls from client with the header of manipulation. when I refer jetty there is some fixes in jetty to handle issue (100-continue) header, so I thought it is useful for…
-1
votes
1 answer

Non-resolvable parent POM Error while Performing Maven install

I am using maven 3.3 version and I am passing my HTTP proxy in settings.xml as shown below but while running maven install it is failing badly. Please help me resolve the error. Proxy configuration: optional
-1
votes
1 answer

Does arbitrary manipulation of TCP connection flow cause problems?

When my HTTP proxy was a simple multi-threaded one, GET and CONNECT requests went fine: now I want to fit, in the middle of the TCP dialogue between clients and servers, a queueing mechanism where bytes coming from client and servers are pushed in…
elmazzun
  • 1,066
  • 2
  • 18
  • 44
-1
votes
1 answer

Why is my phone's IP address reported differently (depending on the site) and how can I programmatically obtain a consistent one in ASP.Net?

On my phone, using LTE (not wifi), if I go to whatismyipaddress.com, it reports the IP address as 166.216.xxx.xxx. But if I go to whatismyip.com, it is reported as 107.77.xxxx.xxx. Why is that? When I connect to my server with my phone (again LTE,…
Redwing19
  • 75
  • 7
1 2 3
99
100