Line 107 and 156 of centinel/primitives/http.py don't decode the body contents, neither does the function.
if "body" in first_response["response"]:
meta_redirect_url = meta_redirect(first_response["response"]["body"])
elif "body.b64" in first_response["response"]:
meta_redirect_url = meta_redirect(first_response["response"]["body.b64"])
Line 107 and 156 of
centinel/primitives/http.py
don't decode the body contents, neither does the function.