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

Azure Service Fabric change ip

I'm having a solution in the Azure Service Fabric, we are gathering a lot of information from various sources. I'm facing a very known issue : some of the source we connect to start to block the IP. So I'm looking for a way to use some VPN service…
Kulpemovitz
  • 531
  • 1
  • 9
  • 23
-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
  • 1,237
  • 2
  • 15
  • 25
-1
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
  • 197
  • 1
  • 10
-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_
  • 45,112
  • 42
  • 145
  • 293
-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
  • 5
-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

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
  • 4
  • 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…
osama khan
  • 25
  • 1
  • 10
-3
votes
1 answer

Exception : java.net.MalformedURLException: no protocol: /setwindowsagentaddr

I want to develop a HTTP Proxy , The code is here ; When I run my code , I get this exception : Started on: 9999 request for : /setwindowsagentaddr Encountered exception: java.net.MalformedURLException: no protocol: /setwindowsagentaddr package…
ABCD
  • 1
  • 5
-4
votes
1 answer

JavaScript create proxy server without node.js

Ive been looking around and i cant find an answer for creating a Pure JavaScript Proxy server without node.js. If anyone has an answer please comment. I’m wondering if its possible because i want to set up my own proxy server without node.js so its…
1 2 3
99
100