Created
June 10, 2022 13:42
-
-
Save blackymetal/3fc54a01bcdd11500059be1be9d0bd41 to your computer and use it in GitHub Desktop.
How to copy request, response, curl raw data from mitmproxy
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# Taken from https://stackoverflow.com/questions/21489645/get-a-raw-request-response-from-mitm-proxy | |
## export the current request/response as curl/httpie/raw/request/response to clipboard | |
# press colon : and input one of commands and enter | |
export.clip curl @focus | |
export.clip httpie @focus | |
export.clip raw @focus | |
export.clip raw_request @focus | |
export.clip raw_response @focus |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment