{% endif %}
{% endif %}
{% if row.method|cut:" " and row.method != 'NULL' and row.method != '-' and row.method is not None %}
{% trans 'Method' context 'Attack' %}
{% if row.mz|lower == 'method' or 'method' in row.mz_group %}
{% if row.bt == 14 %}
{{ row.method|linebreaksbr }}
{% else %}
{{ row.method|linebreaksbr }}
{% endif %}
{% else %}
{{ row.method|linebreaksbr }}
{% endif %}
{% endif %}
{% if row.body|cut:" " and row.body != 'NULL' and row.body != '-' and row.body is not None %}
{% if row.bt == 4 %}
{% trans 'Info' context 'Attack' %}
{% elif row.bt == 15 %}
Body
{% else %}
{% trans 'Body' context 'Attack' %}
{% endif %}
{% if row.mz|lower == 'body' or 'body' in row.mz_group %}
{% if row.bt == 14 %}
{{ row.body }}
{% elif row.body_is_large %}
{% trans "Content is too large" %}
{% else %}
{{ row.body }}
{% endif %}
{% else %}
{{ row.body }}
{% endif %}
{% endif %}
{% if row.url|cut:" " and row.url != 'NULL' and row.url != '-' and row.url is not None %}
{% trans 'URL' context 'Attack' %}
{% if row.mz|lower == 'url' or 'url' in row.mz_group %}
{% if row.bt == 14 %}
{{ row.url|linebreaksbr }}
{% else %}
{{ row.url|linebreaksbr }}
{% endif %}
{% else %}
{{ row.url|linebreaksbr }}
{% endif %}
{% endif %}
{% if row.param|cut:" " and row.param != 'NULL' and row.param != '-' and row.param is not None %}
{% trans 'ARGS' context 'Attack' %}
{% if row.mz|lower == 'args' or 'args' in row.mz_group %}
{% if row.bt == 14 %}
{{ row.param|linebreaksbr }}
{% else %}
{{ row.param|linebreaksbr }}
{% endif %}
{% else %}
{{ row.param|linebreaksbr }}
{% endif %}
{% endif %}
{% if row.cookie|cut:" " and row.cookie != 'NULL' and row.cookie != '-' and row.cookie is not None %}
{% trans 'Cookie' context 'Attack' %}
{% if row.mz|lower == 'cookie' or 'cookie' in row.mz_group %}
{% if row.bt == 14 %}
{{ row.cookie|linebreaksbr }}
{% else %}
{{ row.cookie|linebreaksbr }}
{% endif %}
{% else %}
{{ row.cookie|linebreaksbr }}
{% endif %}
{% endif %}
{% if row.ua|cut:" " and row.ua != 'NULL' and row.ua != '-' and row.ua is not None %}
{% trans 'User-agent' context 'Attack' %}
{% if row.mz|lower == 'user-agent' or 'user-agent' in row.mz_group %}
{% if row.bt == 14 %}
{{ row.ua|linebreaksbr }}
{% else %}
{{ row.ua|linebreaksbr }}
{% endif %}
{% else %}
{{ row.ua|linebreaksbr }}
{% endif %}
{% endif %}
{% if row.referer|cut:" " and row.referer != 'NULL' and row.referer != '-' and row.referer is not None %}
{% trans 'Referer' context 'Attack' %}
{% if row.mz|lower == 'referer' or 'referer' in row.mz_group %}
{% if row.bt == 14 %}
{{ row.referer|linebreaksbr }}
{% else %}
{{ row.referer|linebreaksbr }}
{% endif %}
{% else %}
{{ row.referer|linebreaksbr }}
{% endif %}
{% endif %}
{% if row.other_headers|cut:" " and row.other_headers != 'NULL' and row.other_headers != '-' and row.other_headers is not None %}
{% trans 'Headers' context 'Attack' %}
{% if row.mz|lower == 'headers' or row.mz|lower == 'other_headers' or 'headers' in row.mz_group or 'other_headers' in row.mz_group %}
{% if row.bt == 14 %}
{{ row.other_headers|repl_carriage_transfer|add_space|linebreaksbr }}
{% else %}
{{ row.other_headers|repl_carriage_transfer|add_space|linebreaksbr }}
{% endif %}
{% else %}
{{ row.other_headers|repl_carriage_transfer|add_space|linebreaksbr|highlighting_red:row.mz|safe }}
{% endif %}
{% endif %}
{% if row.response_headers %}
{% trans 'Response Headers' %}
{% if row.response_headers_is_large %}
{% trans "Content is too large" %}
{% else %}
{{ row.response_headers|repl_carriage_transfer|add_space|linebreaksbr }}
{% endif %}