HTTP Requests
{% if network.http_ex or network.https_ex %}
| URI |
Details |
{% for http in network.http_ex|add:network.https_ex %}
| {{http.protocol }}://{{http.host}}{{http.uri}} |
{% if http.request %}
|
{% if http.req.sha256 %}
Request content
{% else %}
Request:
{% endif %}
{% for value in http.request|network_rn %}
{{value}}
{% endfor %}
|
{% endif %}
|
{% if http.response %}
{% if http.resp.sha256 %}
Response content
{% else %}
Response:
{% endif %}
{% for value in http.response|network_rn %}
{{value}}
{% endfor %}
Response preview:
{% if http.resp.preview %}
{% for line in http.resp.preview %}
{{line}}
{% endfor %}
{% endif %}
{% else %}
No response
{% endif %}
|
|
{% endfor %}
{% elif network.http %}
| URI |
Data |
{% for request in network.http %}
| {{request.uri}} |
{{request.data}} |
{% endfor %}
{% else %}
No HTTP(s) requests performed.
{% endif %}