Lines Matching full:product
23 # The product name that the CVE database uses defaults to BPN, but may need to
61 # Check for packages without CVEs (no issues or missing product name)
267 # CVE_PRODUCT can contain more than one product (eg. curl/libcurl)
285 # For each of the known product names (e.g. curl has CPEs using curl and libcurl)...
286 for product in products:
288 if ":" in product:
289 vendor, product = product.split(":", 1)
294 … = conn.execute("SELECT DISTINCT ID FROM PRODUCTS WHERE PRODUCT IS ? AND VENDOR LIKE ?", (product,…
299 bb.note("%s-%s ignores %s" % (product, pv, cve))
305 # Write status once only for each product
307 cves_status.append([product, True])
314 …nn.execute("SELECT * FROM PRODUCTS WHERE ID IS ? AND PRODUCT IS ? AND VENDOR LIKE ?", (cve, produc…
333 (product, pv, operator_start, version_start, cve))
344 (product, pv, operator_end, version_end, cve))
370 bb.note("No CVE records found for product %s, pn %s" % (product, pn))
371 cves_status.append([product, False])
534 p = {"product": s[0], "cvesInRecord": "Yes"}