FAKENET-NG

Network-Based Indicators

{% for process, process_info in nbis.items() %}
{% for proto, nbis_list in process_info.items() %} {% if proto != 'process_name' %}
    {% for nbi_info in nbis_list %} {% endfor %}
    Select NBI Additional Information Actions
      {% for key, value in nbi_info['nbi'].items() %} {% if key == 'Data Hexdump' %}
    • {{ key|e }} (showing first 256 bytes): {% for line in value %}

      {{ line|e }}

      {% endfor %}

    • {% else %}
    • {{ key|e }}: {{ value|e }}
    • {% endif %} {% endfor %}
    • Transport Layer Protocol: {{ nbi_info['transport_layer_proto']|e }}
    • Destination IP: {{ nbi_info['dst_ip']|e }}
    • Destination port: {{ nbi_info['dport']|e }}
    • SSL encrypted: {{ nbi_info['is_ssl_encrypted']|e }}
    • Network mode: {{ nbi_info['network_mode']|e }}
{% endif %} {% endfor %}
{% endfor %}