Skip to content

Commit

Permalink
Merge branch 'main' into update_queries
Browse files Browse the repository at this point in the history
  • Loading branch information
Rexbeast2 committed Jul 25, 2023
2 parents b8a4f93 + eda965c commit 4d5a594
Show file tree
Hide file tree
Showing 2 changed files with 41 additions and 0 deletions.
24 changes: 24 additions & 0 deletions .github/ISSUE_TEMPLATE/feat--new-checker-request-form.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,24 @@
---
name: 'feat: new checker request form'
about: Template for requesting a new binary checker
title: 'feat: new checker [checker name]'
labels: enhancement, good first issue
assignees: ''

---

### Description

* Website: WEBSITE_LINK_OF_THE_PRODUCT
* CVEs: CVEDETAILS_PRODUCT_PAGE

Many older products may have multiple NVD CPE {vendor, product} pairs associated with them. We can figure out one set from the CVE list above, but if you know of others that need to be added add them here:
* NVD CPE vendor(s):
* NVD CPE products(s):


### Checker creation links
Instructions: [How to add a new checker to the CVE Binary Tool](https://github.com/intel/cve-bin-tool/blob/master/cve_bin_tool/checkers/README.md)

We also have a [checker creation helper script](https://github.com/intel/cve-bin-tool/blob/main/cve_bin_tool/helper_script.py) that can get you started in making the checker.
* [Helper script documentation](https://github.com/intel/cve-bin-tool/blob/main/cve_bin_tool/checkers/README.md#helper-script)
17 changes: 17 additions & 0 deletions .github/workflows/cve_bin_tool_action.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,17 @@
name: CVE Binary Tool Scanner

on:
push:
workflow_dispatch:

permissions:
security-events: write

jobs:
scan:
runs-on: ubuntu-latest
steps:
- uses: intel/cve-bin-tool-action@main
with:
nvd_api_key: '${{ secrets.NVD_API_KEY }}'
exclude_dir: test

0 comments on commit 4d5a594

Please sign in to comment.