proxy-server

HTTP proxy server

I am beginning work on a very basic HTTP proxy server written in C (Edit: something that just forwards my requests). At this point I am having difficulty in understanding how to proceed. Any help would be beneficial. ...

Regex Proxy Server

I control access via a proxy server and run some regex on every request. For prototype I have used curl, regex and php. Obviously this won't put up with any serious load. Can anyone suggest and proxy servers that would be suitable? ...

Fiddler: Can it be used as a proxy server with arbitray source IP addr

Hi folks: As title mentioned, can achieve it with Fiddler? Thanks. ...

sniff and block packets in a server

I'm new to the concept of nw-sniffing. < so , i'll try to describe the problem with the best terms i know > In an organisation , there are 30 computers connected to a server. And as users of these systems browse the Internet , packets are sent to the outside nw via this server.. i want to write an application that runs in this server , ...

How can I set up a proxy server to mirror an existing proxy server which has a web-based gateway?

So here's the deal: there is a proxy service which I access by appending a string to the domain. So for example, to access foo.com through the bar proxy, I go to foo.com.bar.com. I'm then directed to a web-based authentication form which offers me the chance to choose a domain, and then authenticate by certificate or by password. Afte...

How can I write a route/view/controller for a web framework which acts as a dumb proxy?

That is to say, let's say I'm writing something that's hosted on foo.com. I'd like it to be possible for a user who goes to foo.com/bar.com to be served up bar.com from foo.com and to be able to interact with bar.com (e.g. navigate to foo.com/bar.com/baz via point-and-click). I understand that this is what a proxy is supposed to do. I...

Java socket programming - stream get stuck

I am currently working on a simple proxy server, which receives http request from browser, process it, then forward it to the desire web server. I try to get the request from the input stream of the socket connected by the browser, everything is fine except that the stream get stuck after receiving the last block of data. My code is in...

what .NET class to proxy HTTP requests through? (and keep track of bandwidth used)

What .NET class/methods could I use to write a simple HTTP(s) proxy that would run on my PC that would: Proxy all HTTP(S) requests through it Let me get bandwidth used per proxy'ed request (e.g. content length) Let me get requesting application or process name per proxied request Ability to proxy/stream the requests on through to my n...

IE version of Firefox's Live HTTP Headers

Is there any free equivalent of Firefox's Live HTTP Headers for IE? Proxy servers are okay, provided they are free. ...

WCF reliable sessions via proxy server - not sending authentication credentials on Windows XP

Hello, I have a full trust XBAP which connects using reliable sessions to a remote service using the endpoint configuration attached below. The catch is that when running the application behind a client's organizational proxy server, the WCF requests are blocked on Windows XP but pass through fine on Windows 7. My suspicion (pending fur...

open source C# proxy server - any projects/examples?

Anyone know of any open source C# proxy server projects? Otherwise any articles/tutorials that cover how to use C# classes to get proxy server basic functionality working (in particularly for HTTPS requests) The only one I have found so far (and I will look at) is: http://www.mentalis.org/soft/projects/proxy/ ...

How do I configure Eclipse web browser/network settings?

I use an "anonproxy" to bypass network restrictions in some public networks, and somehow eclipse managed to configure itself to use it. Even after I disabled the proxy settings in firefox, eclipse still uses it. When I try to stop the proxy service, eclipse simply pops a message saying the proxy refused connections. How do I remove any p...

CAtlHttpClientT::SetProxy causing failed connection

I have some client code which needs to call methods on a remote web service. To allow the client out through any proxy server which may be in use I'm trying to use the CAtlHttpClientT::SetProxy function which, according to MSDN: "Calling this method causes all HTTP transactions to be routed through the given proxy server. Calling SetPro...

Pass password for proxy server in Maven2 through command line or prompt?

As I'm uncomfortable storing my username and password (must auth to the proxy server with my normal login credentials) in plaintext in .m2/settings.xml, I'm trying to see if there is a better way to pass my credentials. What I've tried Relying on system proxy settings - didn't work (obviously) Leaving out password - downloaded 5k - 74...

HTTP Proxy Server in Python (with authentication)

I needed a simple HTTP proxy server written in Python so I began googling around and found this page. Not all the proxies were working and so I settled for this or this. ..but neither of them support authentication. Has anyone come across a HTTP Proxy Server written in Python that supports authentication? Thanks. ...

Connecting to Azure storage account thru proxy server

My 'LocalClient' app is in a corporate LAN behind an HTTP proxy server (ISA). The first Azure API call i make - CloudQueue.CreateIfNotExist() - causes an exception: (407) Proxy Authentication Required. I tried following things: Added the <System.Net> defaultProxy element to app.config, but it doesn't seem to be working (Reference: ht...