I'm trying to analyse what information an app is sending so I setup Charles but to my surprise nothing was logged out.
After decompiling the app I see that it doesn't use simple REST calls but rather a library called gRPC.
Is there a good tool out there that will allow me too see what is send out from the app?
The gRPC proxy supports multiple etcd server endpoints.
gRPC proxy is a Go reverse proxy that allows for rich routing of gRPC calls with minimum overhead.
The gRPC protocol uses features of HTTP/2 that cannot be controlled by JavaScript. So that a proxy is required.
If a browser supports HTTP 2, why is a proxy needed? gRPC needs access HTTP/2 trailers, which is not supported in browsers today. This necessitates translation in a proxy of some form.
The Mediator is a Cross-platform GUI gRPC debugging proxy like Charles but design for gRPC.
You can dump all gRPC requests without any configuration, if you need to resolve the message body, the gRPC server needs to support the Server Reflection feature.
gRPC uses HTTP/2 as a transport protocol. Any proxy which supports HTTP/2 for both the front-end and back-end connections should be able to be used to inspect the packets a gRPC connection. Note, some proxies only support HTTP/2 for the front-end or back-end connections and those are incompatible with gRPC.
Envoy Proxy (https://www.envoyproxy.io/) supports proxying gRPC connections and can be configured to log out request information.
Some other example proxies include:
If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!
Donate Us With