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
2
votes
0 answers

Custom tproxy module

I am trying to develop a custom tproxy module .The current tproxy module inside the Linux kernel is working under certain iptable rules . How the iptable and tproxy module works when a packet was arrived .In my case how can I integrate my custom…
TamiL
  • 2,706
  • 4
  • 24
  • 44
2
votes
1 answer

Is it possible to edit viewed profile data on Facebook and seen tweets on Twitter using a transparent proxy?

I'm setting up a network in which individuals see profile information of one friend, switched with that of another friend; such as likes, political views, etc.. Similarly for twitter, would see tweets tweeted by people who they follow. This would be…
Quaxo
  • 21
  • 1
2
votes
0 answers

Delegate of web service interface erroring

I am trying to call methods on a web service using delegate calls: public IEnumerable List(bool showDeleted) { var result = ResponseHelper>(new dynamic[] {InstanceGuid, showDeleted}, "List"); …
Morphed
  • 3,527
  • 2
  • 29
  • 55
2
votes
2 answers

jetty transparent proxy always returns 403 forbidden

I am trying to use the transparent proxy provided by jetty. This is my web.xml
Cui Pengfei 崔鹏飞
  • 8,017
  • 6
  • 46
  • 87
1
vote
1 answer

How to use TransparentUpgradeableProxy as Transparent Proxy

I'm Solidity Newbie. I'm learning how to implement Transparent Proxy using Openzeppelin's TransparentUpgradeableProxy contract, but am having some problems. Step 1: I tried to deploy a simple contract MyConV0, then implemented deploy and call…
1
vote
0 answers

Proxy in AWS to catch specific messages and reply?

Problem: our system, running on AWS, uses an external service and we need to test specific flows/APIs of it. There is no way to completely mock this external service. Desired solution: we need an entity on the network which would monitor, catch…
inspiral
  • 611
  • 1
  • 7
  • 15
1
vote
1 answer

MitmProxy Transparent Proxy + Wireshark - Decrypting TLS 1.3 Traffic

I have a setup as follows to inspect traffic from a device. Device <---> MitmProxy (Transparent Proxy mode) + Wireshark <---> Internet Command used to invoke MitmProxy: SSLKEYLOGFILE="$PWD/mitmproxy/sslkeylogfile.txt" mitmweb --mode transparent…
xefrog
  • 21
  • 1
  • 5
1
vote
1 answer

How do I set up Transparent Proxy on Windows proxy machine?

The current documentation on how to set up a transparent proxy does not include Windows: https://docs.mitmproxy.org/stable/howto-transparent/ I am wondering if someone can please explain to me how to set up Transparent Proxy on my Windows…
DeltaEpsilon
  • 11
  • 1
  • 2
1
vote
1 answer

Forcing traffic from one pod to another

I have two pods running on Kubernetes. To simplify lets called them A and B. The A is an application which makes HTTP requests. The B is a proxy running in the transparent mode. The questions is how should I alter iptables rules so the traffic…
1
vote
1 answer

Is transparent proxying with UDP possible?

I would like to know whether there is the possibility to use transparent proxying within Python for UDP. My socket gets defined with: sock.setsockopt(socket.SOL_IP, IP_TRANSPARENT, 1) sock.setsockopt(socket.SOL_IP, SO_ORIGINAL_DST,…
Kathi24
  • 11
  • 1
1
vote
2 answers

IP_TRANSPARENT SYN not getting SYN+ACK response on localhost

I am writing the following program (though I don't think that this is where the problem is): #include #include #include #include #include #include int main() { int…
Shachar Shemesh
  • 8,193
  • 6
  • 25
  • 57
1
vote
1 answer

nodejs proxyfies requests with dynamic subdomains

i want my server to act as a middleware between the client and another server, the problem is that the target server have a dynamic subdomains that changes everytime randomly i've tried http-proxy-middleware already, it works well with non dynamic …
1
vote
0 answers

How can I create a tunnel between multiple docker containers and the host?

I am setting up two docker containers (say A (172.17.0.2) and B (172.17.0.3)) connected using a bridge. I wish to route all requests from the host container to container A and then container B and then to the internet. The response should follow the…
1
vote
2 answers

TPROXY for IPV6

I have my own NAT modules for IPV6.I need TPROXY support.Is there any patch available for download?I am using the 2.6.32-71 kernel.
maria
  • 11
  • 2
1
vote
0 answers

My python proxy server keeps giving me "The connection was reset"

I have been writing a transparent proxy server in python to log where the request is going. Most pages load e.g. google.co.uk, however, pages such as google.com get stuck loading and some pages such as a local IP get the "Connection reset" error in…