Questions tagged [transparentproxy]

A transparent proxy is a service that makes a request on behalf of a client, without changing the request itself, and passes the resulting response unaltered back to the client.

A transparent proxy is a service that makes a request on behalf of a client, without changing the request itself, and passes the resulting response unaltered back to the client. According to RFC 2616 the request can be altered solely for what is required for proxy authentication and identification.

This tag should be used if it is important to the question that the request should be unaltered, or cannot be altered.

Related tag:

70 questions
4
votes
1 answer

tproxy implementation in userspace

I am using an user space tcp/ip stack for a particular application. I saw Tproxy support as kernel module, in Linux kernel space stack. But I need the similar implementation in user space stack. So that I can learn the current internal working of…
TamiL
  • 2,706
  • 4
  • 24
  • 44
4
votes
1 answer

Bug in the dynamic language runtime in combination with IIS 7.5

I apologize for this question length, but I think you'll all find it worth it. Before I begin, let me say that I was really trying to produce an isolated console application, but sadly that proved impossible. The bug does not happen in a console…
Kirk Woll
  • 76,112
  • 22
  • 180
  • 195
3
votes
2 answers

Selenium - MoveToElement() with transparent proxy

I have element public ArticlePage() { PageFactory.InitElements(Browser.driver, this) } [FindsBy(How = How.Id, Using = "someId")] private IWebElement btnTitleView { get; set; } and action Actions action = new…
nEkis
  • 320
  • 1
  • 14
3
votes
0 answers

Using CNTLM as a transparent proxy

I'm trying to setup transparent proxying on both Ubuntu 15.04 and OSX 10.10. I'm on a corporate network so CNTLM is required to authenticate to gain access to the internet. When I set the system wide proxy settings everything is fine. But because of…
harmingcola
  • 454
  • 6
  • 17
3
votes
3 answers

Does IIS with ARR support fully transparent reverse proxy?

I have got a few web servers running and I want all of them to be accessible via one domain. I set up ARR in IIS as a reverse proxy in another server and it works fine. I, however, need the source ip address to be kept when the requests are…
JohnnyLiao
  • 443
  • 2
  • 9
  • 18
3
votes
0 answers

How to get ServiceChannelProxy or ServiceChannel from RealProxy

I want to access the State of the Channel. I'm receiving the __TransparentProxy which contains a RealProxy(rp). I'm able to access it using this function GetRealProxy() But, I am still not able to get the Status from the Real proxy. I'll need to get…
Sailoosha
  • 193
  • 1
  • 3
  • 14
2
votes
0 answers

How to kill unkillable Python-processes running as root

I am experiencing an annoying problem with sshuttle running it on 10.7.3, MBA with the latest firmware update -- after I stop it (ctrl+c twice), or loose connection, or close the lid, I cannot restore it until I restart the system. The restarting…
Andrei
  • 10,918
  • 12
  • 76
  • 110
2
votes
1 answer

Real world problems with placing the HTTP Connection: Header at the end

Are there any known problems with putting the HTTP Connection: field at the end of the headers? From the Standard (RFC2616, section 4.2): it is "good practice" to send general-header fields first (which includes Connection), followed by…
unixman83
  • 9,421
  • 10
  • 68
  • 102
2
votes
1 answer

Should transparent HTTP proxy remove hop HTTP headers?

I read that HTTP proxy should be removing hop HTTP headers (https://www.freesoft.org/CIE/RFC/2068/143.htm) It makes sense since some of these headers are connection-related. The question is. Is this RFC applicable for explicit proxy only or should…
Victor Ronin
  • 22,758
  • 18
  • 92
  • 184
2
votes
1 answer

Transparent proxy that supports TLS-PSK

I'm trying to research a device that uses TLS-PSK as its cipher suite for server authentication. However, mitmproxy nor Burp Suite support the TLS-PSK ciphers. For Burp, this is the underlying Java/BouncyCastle implementation that does not support…
ssabetan
  • 111
  • 1
  • 9
2
votes
1 answer

Getting UDP Destination Address:Port from TPROXY'd Traffic

I'm trying to get the original destination from UDP packets that have been redirected by an iptables TPROXY rule. However several ways of doing this have failed, and using a raw socket to fish from the IP header seems to give me garbled packets. The…
kingtaco
  • 65
  • 1
  • 7
2
votes
0 answers

Jetty Transparent Proxy - add Userinfo

I've successfully created a transparent proxy using jetty 9 with the following servlet code: public class ProxyRewriteServlet extends ProxyServlet.Transparent { private static final String HOST = "192.168.1.20" // 'hidden' server private…
nico.ruti
  • 605
  • 6
  • 17
2
votes
0 answers

Transparent stunnel proxy setsockopt Operation not permitted

I am attempting to run a transparent stunnel4 proxy on a server for a websocket service. The WS server is based on the Ratchet framework and thus does not support WSS, hence the need for a proxy. When transparent is set to none in the stunnel.conf…
Jonny K
  • 31
  • 1
  • 7
2
votes
1 answer

Where I can find RemotingServices.CreateTransparentProxy implementation?

I'm trying to get insights about how transparent proxy created by WCF ChannelFactory work by digging into source codes. CreateTransparentProxy is marked by extern keyword and [MethodImplAttribute(MethodImplOptions.InternalCall)] attribute which…
Leonid Vasilev
  • 11,910
  • 4
  • 36
  • 50
2
votes
1 answer

Masking properties for Textview in android

I have a scrollView in my Activity,the background of scrollView is of multiple colours. To my RelativeLayout I have added Views dynamically. inflated xml:
user1891910
  • 919
  • 3
  • 18
  • 45