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.

1339 questions
-1
votes
3 answers

Scraping web-page data with urllib with headers and proxy

I have got web-page data, but now I want to get it with proxy. How could I do it? import urllib def get_main_html(): request = urllib.request.Request(URL, headers=headers) doc = lh.parse(urllib.request.urlopen(request)) return doc
v18o
  • 967
  • 1
  • 12
  • 23
-1
votes
1 answer

C# Proxy/IP Spoofing HttpWebRequest

I have searched for similar questions and yet not found any answer.. Many times in making HttpWebRequests..the website blocks the IP address.. Could any one go over the IP Spoofing / Proxy method in .NET Web Requests.. If IP address could not be…
-1
votes
1 answer

Charles video playing unavailable

I'm testing an Andoird & IOS app which includes a feature that allows to watch videos. The problem is - when I use Charles, with a proxy server and a hotspot with my laptop, the videos won't play. Of course that the videos are playing when I'm not…
Nadav Miran
  • 21
  • 1
  • 4
-1
votes
1 answer

Save variable from remote server using XMLHttpRequest

I have seen a couple of other threads relatively similar but I still find my problem unique so I hope you guys give me a chance. What I want to do: use proxy to bypass same origin policy and to save these values (that changes and need to be checked…
Leif
  • 1
-1
votes
1 answer

CORS proxy troubles: 404 not found because of extra params

I have: var url = 'http://cs7-5v4.vk-cdn.net/p10/da565dec1e4757.mp3?extra=30Z5mfWgb6cqPGfxDGrp1D7QgILPRF6pH1pUjnVlGdATqfZei1PFHNheoT19Hw41Oau34IsRFAe6f971LFoxoruML5MoGXqz'; $.get('http://www.corsproxy.com/' + url); Result: 404 Not found Problem:…
VB_
  • 43,322
  • 32
  • 111
  • 238
-1
votes
1 answer

Is there a way to set http(s) proxy for specific domain(s) system wide(on ubuntu)?

The requirement here is to tunnel the specific domain traffic to that proxy and rest should take the default. Any help would be highly appreciated.
Learner85
  • 51
  • 4
-1
votes
1 answer

why http proxy is host+port

In IE when I configure http proxy I need to give host+port and not full url. Why isn't it a normal url? How to configure if the proxy uses https?
Yaron Naveh
  • 21,660
  • 31
  • 97
  • 151
-2
votes
1 answer

How do I fix the Invalid key error that appears while using Git Config Command?

I am trying to configure proxy using the Git Config command. However it constantly throws the invalid key error. $ git config https.proxy https://id1234:testpwd2020@proxy:8080 error: invalid key: https.proxy https://id1234:testpwd2020@proxy:8080 …
-2
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…
-2
votes
1 answer

Inject script tag on static html files served by a node server

I would like to create a server on node where users will request several pages from a static folder and the server should inject a custom tag on them before serving. Is there any recommended way to do it? I've been trying with http-proxy with no…
-2
votes
2 answers

Get host from IP address C

Given a url-link, I have to send a TCP request. The first thing I did, after parsing the url properly was to get the IP: ... struct hostnet *host; ... host = gethostbyname(url); My question is the following: Is there any possible way to get the…
gigiman
  • 11
  • 6
-2
votes
1 answer

Getting HTTP headers from TCP Connections

I was writing a proxifier like app for Linux in golang. The app when executed will listen for all the TCP connections and redirect them to the proxy server address. In between the app also adds a "Proxy-Authorisation : Basic ..." header to the HTTP…
Love_for_CODE
  • 147
  • 1
  • 9
-2
votes
1 answer

how to allow clients connecting to some websites over proxy with their IPs?

I am config squid as forward proxy and everything work correctly. Some websites block my squid server IP and when a client trying connect to that websites over my proxy sever,it can not access to them. I want to telling squid that when a client…
alibag90
  • 17
  • 3
  • 8
-2
votes
1 answer

working with IdHTTPProxyServer1

I want to write a simple proxy with TIdHTTPProxyServer and this is my code : void __fastcall TForm1::FormCreate(TObject *Sender) { IdHTTPProxyServer1->DefaultPort = 8090; IdHTTPProxyServer1->Active =…
-3
votes
2 answers

Authentication between proxy server and main server

Authentication between proxy server and main server I had build proxy server in nodejs and i had also build three other main server. request goes from proxy server to other three server according to routes. i want to make communication between proxy…
1 2 3
89
90