{% load patrowl_tags %}

Summary per Products

{% for product in products_summary %} {% endfor %}
Status Product Summary CVSS BS Score # exploits
{{product.status}} {{product.product_name}} {{product.cve}} - {{product.summary |truncatechars:64}} {{product.cvss}} {{product.score}} {{product.exploit_cnt}}

Detailed vulnerabilities

{% for product_key, product_value in products_details.items %} {% for vuln in product_value %}

{{product_key}}

Threat analysis
Scores
Threat Score
{{vuln.score}}
CVSSv2 Base Score
{{vuln.cvss}}
CVSSv2 Vector
{{vuln.cvss_vector}}
Metrics
Exploitable?
{% if vuln.is_exploitable == True %}
Yes
{% else %}
-
{% endif %}
Confirmed?
{% if vuln.is_confirmed == True %}
Yes
{% else %}
-
{% endif %}
In the news?
{% if vuln.is_in_the_news == True %}
Yes
{% else %}
-
{% endif %}
Exploited in the wild?
{% if vuln.is_in_the_wild == True %}
Yes
{% else %}
-
{% endif %}
Vulnerability details for PHID-{{vuln.id}}
CVE
{{vuln.cve_id}} - See: nvd, mitre
Summary
{{vuln.summary}}
Access (Attack)
Vector:
{{vuln.access.vector}}
Complexity:
{{vuln.access.complexity}}
Authentication:
{{vuln.access.authentication}}
Impact
Confidentiality:
{{vuln.impact.confidentiality}}
Integrity:
{{vuln.impact.integrity}}
Availability:
{{vuln.impact.availability}}
Related products
{% for vp in vuln.vulnerable_products %}
    {% with cpe=vp|parse_cpe %}
  • {{cpe.get_vendor.0}}-{{cpe.get_product.0}}-{{cpe.get_version.0}}
  • {% endwith %}
{% endfor %}
Links
{% for link in vuln.reflinks %} {% endfor %}
{% endfor %} {% endfor %}