Device or program that stands between two or more interconnected programs/devices
Questions tagged [proxy]
3307 questions
1
vote
1 answer
What class of software should I use to intercept HTTP requests and perform an action
We have inherited an old Web application that needs to be extended with some logging capacities for compliance purposes. Unfortunately, we can't change the application. The application receives XML POST requests. We need to capture several specific…

test1839
- 23
- 1
- 6
1
vote
1 answer
what are some reliable international proxy server providers that I can use to test webpages as viewed in other countries
My group runs several websites with international audiences and we use geo-targeting to serve personalized experiences based on their IP region.
We use the Foxy Proxy plugin for Firefox so we can test whether the correct content is being served. A…

PetroleumJelliffe
- 413
- 1
- 4
- 5
1
vote
2 answers
Manipulate Data in the cache proxy server DB
I am wondering if it is possible to manipulate (Insert/Delete) data in the cache proxy server DB... well I'm not sure how a cache proxy server store the data. But What I am interested in is to add resources to the data base of my cache proxy before…

mrz
- 237
- 1
- 10
1
vote
1 answer
Debian: How to create SOCKS proxy server to exit on specific network interface?
I have a setup with two internet connections.
eth0 - Internet connection 1
eth1 - Internet connection 2
How can I create a SOCKS 4/5 server that will take connections coming from eth0 and proxy the traffic through eth1 ?
I saw that you can use ssh…

Christian Toma
- 160
- 1
- 8
1
vote
1 answer
SSH proxy and remote port?
Sample :
[[Server]] has two interfaces : iface1 and iface2 ;
iface1 only listens SSH
iface2 only listens HTTPS (my target)
Only [[SSHProxy]] is authorized to connect to [[Server]]:22
diagram :
:iface2(listen 443) [[Server]] :iface1(listen 22)…

Steph
- 13
- 2
1
vote
1 answer
Apache proxypass max config option and maxclients interaction
I am having some issues with an apache proxying to a local tomcat instance.
The i have traced the issue down to the way maxclients and proxypass direvtives interact.
in a test environment I set up apache to have 3 max clients and proxypass to have a…

peteches
- 413
- 3
- 8
1
vote
0 answers
How To Block Skype using Squid3?
I have just installed Squid3 on my server and trying to block the Skype messenger. Still no luck. I tried to add the rules in Squid wiki (http://wiki.squid-cache.org/ConfigExamples/Chat/Skype) to the end of the squid.conf :
# Skype
acl numeric_IPs…

THpubs
- 1,695
- 7
- 26
- 43
1
vote
1 answer
Apache frontend for Tomcat, proxy security
I have a server that hosts Tomcat for apps and Apache2 for it's frontend.
They communicate to each other through ajp protocol over mod_moxy and proxy_ajp modules.
Am I really safe using apache virtualhosts in this form:
...
ProxyRequests…

user1492810
- 31
- 1
- 6
1
vote
0 answers
Can Squid3 access PHP Helpers
Can Squid3 use PHP helper programs other than for ACL and redirect?
I need Squid to use a PHP program (with mysql access) to set the parent proxy that should be used for a particular connection, so the program should be able to set values for…

Nyxynyx
- 1,459
- 11
- 39
- 49
1
vote
1 answer
Log and analyze web traffic passing through SSH SOCKS proxy
I've got a cheap VPS running Ubuntu 12.04 that I sometimes proxy web traffic through via SSH when I don't trust the network I'm on. I'd like to have a closer look at some of that traffic on occasion. Is there an easy way to log extra information…

Dan
- 351
- 1
- 7
- 18
1
vote
1 answer
how do I maintain a masqueraded url in a proxy session?
I have a proxypass rule in place for my website's support page (www.company.com/support) to redirect to a thirdparty hosted web site (company.custhelp.com)...but the sites link's themselves are all on the seperate domain. Is there a way I can…

580farm
- 241
- 2
- 4
- 12
1
vote
1 answer
Squid3 proxy server is not working for a single website
I face an annoying and hard to track its root problem with squid3 proxy server running on Ubuntu Server 12.04.
Squid is working fine for all websites I have tried so far to access, except http://ubuntuforums.org/
What I get is the following…

Vangelis Tasoulas
- 196
- 1
- 7
1
vote
2 answers
“X_FORWARDED_FOR” Header Doesn't Present In The Request
In my web application I need to extract the real ip address for clients behind proxy, after searching I found that the possible method to do that is to read the content of "X_FORWARDED_FOR" header , I am using java servlet and the headers of the…

Radi
- 145
- 8
1
vote
0 answers
apache proxyremote and http
ProxyRemote syntax is:
= ://[:port]
So, I have to put protocol before hostname.
But my proxy server is x.y.z.n:1234 (without http)
And when I use proxyremote in this way, it doesn't work. (nothing…

kikio
- 161
- 1
- 9
1
vote
1 answer
Setting up proxy to handle subdomain requests
I have setup a proxy for a site which works with the following nginx config:
server {
listen 80;
server_name proxy.example.com;
access_log /dev/null;
error_log /dev/null;
location / {
proxy_pass …

PeeHaa
- 221
- 4
- 18