{% extends "base.html" %} {% load projecttags %} {% block extraheadcontent %} {% endblock %} {% block title %} {{object.name}} - SRTool {% endblock %} {% block pagecontent %}
{% include "srtool_metadata_include.html" with default_category="VULNERABILITY" default_url="vulnerability" %}

Description

{{object.description}}

Quick Info

CVE Dictionary Entry:
{% for vc in object.vulnerability_to_cve.all %} {% if not forloop.first %}| {% endif %}{{vc.cve.name}} {% endfor %}
Original release date:
{% for vc in object.vulnerability_to_cve.all %} {% if not forloop.first %}| {% endif %}{{vc.cve.publishedDate}} {% endfor %}
Last revised:
{% for vc in object.vulnerability_to_cve.all %} {% if not forloop.first %}| {% endif %}{{vc.cve.lastModifiedDate}} {% endfor %}
CVSS v3 Base Score:
{% for vc in object.vulnerability_to_cve.all %} {% if not forloop.first %}| {% endif %}{{vc.cve.cvssV3_baseScore}},{{vc.cve.cvssV3_baseSeverity}} {% endfor %}
CVSS v2 Base Score:
{% for vc in object.vulnerability_to_cve.all %} {% if not forloop.first %}| {% endif %}{{vc.cve.cvssV2_baseScore}},{{vc.cve.cvssV2_severity}} {% endfor %}

Investigations/Products {% if request.user.is_creator %} {% endif %}

{% if request.user.is_creator %} {% endif %} {% if object.vulnerability_investigation.all %} {% for investigation in object.vulnerability_investigation.all %} {% if request.user.is_creator %} {% endif %} {% endfor %} {% else %} {% endif %}
Product Name Investigation Status Outcome Defect Release VersionManage
{{ investigation.product.long_name }} {{ investigation.name }} {{ investigation.get_status_text }} {{ investigation.get_outcome_text }} {% for ij in investigation.investigation_to_defect.all %} {% if not forloop.first %}| {% endif %}{{ij.defect.name}} {% endfor %} {% for ij in investigation.investigation_to_defect.all %} {% if not forloop.first %}| {% endif %}{{ij.defect.release_version}} {% endfor %}
No investigations found

Comments {% if request.user.is_creator %} {% endif %}

{% if request.user.is_creator %} {% endif %} {% if object.vulnerability_comments.all %} {% for c in object.vulnerability_comments.all %} {% if request.user.is_creator or c.author == request.user.username %} {% endif %} {% endfor %} {% else %} {% endif %}
Comment Date AuthorManage
{{ c.comment }} {{ c.date }} {{ c.author }}
No comments found

Attachments {% if request.user.is_creator %} Add attachment ... {% endif %}

{% if object.vulnerability_uploads.all %} {% for u in object.vulnerability_uploads.all %} {% endfor %} {% else %} {% endif %}
Comment Name Size Date Author Manage
{{ u.description }} {{ u.path|basename }} {{ u.size }} {{ u.date }} {{ u.author }}
{% csrf_token %} {% if request.user.is_creator %} {% endif %}
No comments found

Change Notifications {% if request.user.is_creator %} {% endif %}

{% if request.user.is_creator %} {% endif %} {% if object.vulnerability_notification.all %} {% for u in object.vulnerability_notification.all %} {% if request.user.is_creator or u.user.name == request.user.username %} {% endif %} {% endfor %} {% else %} {% endif %}
User EmailManage
{{ u.user.name }} {{ u.user.email }}
No users found
{% if not object.public %} {% if request.user.is_creator %}

User Access {% if request.user.is_creator %} {% endif %}

{% if object.public %} {% endif %} {% if object.vulnerability_users.all %} {% for u in object.vulnerability_users.all %} {% endfor %} {% else %} {% if not object.public %} {% endif %} {% endif %}
User Manage
All
{{ u.user.name }}
No users found
{% endif %} {% endif %}

History

{% if object.vulnerability_history.all %} {% for c in object.vulnerability_history.all %} {% endfor %} {% else %} {% endif %}
Comment Date Author
{{ c.comment }} {{ c.date }} {{ c.author }}
No history found
{% endblock %}