I would like to implement SSL inspection module using mitmproxy.
Is it possible to intercept every HTTPS packet after decryption, before sending it to the other side (client/server),
forward it to another service, which makes the inspection.
get the service’s response,
and finally send a new packet to the other side with the inspection changes?
It is important to the inspection service that the scope of the inspection will contain the entire packet. (HTTP request/response is not enough)
Thanks