You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Hello, thank you for this great example. I have one use-case, when I should know the exact status code returned by requested server. Now we can't do it, because we just setup tunnel between requester and remote server. I need to make some manipulations if remote server returns some error codes.
I tried to intercept received bytes and extract http headers from it, but it's encrypted bytes as I think, because I request data by https. Are there any easy way to switch to plain http and not encrypt it in tunnel?
With plain_text feature and http site I can dump bytes and see the headers like:
Hello, thank you for this great example. I have one use-case, when I should know the exact status code returned by requested server. Now we can't do it, because we just setup tunnel between requester and remote server. I need to make some manipulations if remote server returns some error codes.
I tried to intercept received bytes and extract http headers from it, but it's encrypted bytes as I think, because I request data by https. Are there any easy way to switch to plain http and not encrypt it in tunnel?
With plain_text feature and http site I can dump bytes and see the headers like:
HTTP/1.1 200 OK\r\nContent-Encoding: gzip\r\nAge: 394582\r\nCache-Control: max-age=604800\r\nContent-Type: text/html; charset=UTF-8\r\nDate: Tue, 10 Oct 2023 16:05:49 GMT\r\nEtag: \"3147526947+gzip\"\r\nExpires: Tue, 17 Oct 2023 16:05:49 GMT\r\nLast-Modified: Thu, 17 Oct 2019 07:18:26 GMT\r\nServer: ECS (laa/7B7B)\r\nVary: Accept-Encoding\r\nX-Cache: HIT\r\nContent-Length: 648\r\n\r\n\u{1f}�\u{8}\.....
The text was updated successfully, but these errors were encountered: