I created two functions for the mitmdump
addon:
def request(flow)
pass
def response(flow):
pass
Since both of these functions are separate and run independently, how can I figure out which request flow caused the response flow?
I created two functions for the mitmdump
addon:
def request(flow)
pass
def response(flow):
pass
Since both of these functions are separate and run independently, how can I figure out which request flow caused the response flow?