{% extends 'base/layout.html' %} {% block title %}CPE Lookup Assistant{% endblock %} {% block content %}

CPE Lookup Assistant

Search NVD CPE Dictionary

Search the NVD CPE dictionary to find the exact vendor and product strings for a platform or device. Click Create Mapping on any result to create a CPE Mapping for it.

{% if error %}
NVD API error: {{ error }}
{% endif %} {% if keyword and not error %} {% if results %}
Results for "{{ keyword }}" {{ total }} total — showing {{ results|length }}
{% for r in results %} {% endfor %}
CPE String Title Part Vendor Product Target SW
{{ r.cpe_name }} {% if r.deprecated %}Deprecated{% endif %} {{ r.title|default:"—" }} {{ r.part }} {{ r.vendor }} {{ r.product }} {{ r.target_sw|default:"—" }} {% if not r.deprecated %} Create Mapping {% endif %}
{% if total > results|length %} {% endif %}
{% else %}
No CPE entries found for "{{ keyword }}". Try different keywords — use lowercase vendor names (e.g. cisco, juniper) or product names (e.g. nx-os, junos).
{% endif %} {% endif %} {% endblock %}