{% extends "base_.html" %} {% block title %} ElJefe {% endblock %} {% block extrahead %} {% endblock %} {% block initializer %} {% endblock %} {% block content %} {% load tags %} {% if usb_event %}

USB Event Information

{% ifequal usb_type "mass_storage" %} {% endifequal %} {% ifequal usb_type "other" %} {% endifequal %} {% endif %} {% endblock %}
Hostname{{usb_event.station.hostname}}
IP Address{{usb_event.station.ip_address}}
Action{{usb_event.status}}
Timestamp{{usb_event.event_timestamp}}
Device Serial Number{{usb_event.mass_storage_device.serial_number}}
Device Model{{usb_event.mass_storage_device.model}}
Logical Drive{{usb_event.logical_drive}}
Volume Serial Number{{usb_event.volume_serial_number}}
Caption{{usb_event.device.caption}}
Vendor ID{{usb_event.device.vendor_id}}
Product ID{{usb_event.device.product_id}}
USB Classes {% for usb_info in usb_event.device.usb_class|split:'|'%} {% get_usb_data usb_info as usb_data %} {% endfor %}
Class SubClass Protocol
{{ usb_data.0 }} {{ usb_data.1 }} {{ usb_data.2 }}