Skip to content

Commit

Permalink
feat(checker): add libcoap checker (intel#3229)
Browse files Browse the repository at this point in the history
Signed-off-by: Fabrice Fontaine <fabrice.fontaine@orange.com>
  • Loading branch information
ffontaine committed Aug 10, 2023
1 parent df822cf commit 6643bc5
Show file tree
Hide file tree
Showing 7 changed files with 54 additions and 0 deletions.
1 change: 1 addition & 0 deletions cve_bin_tool/checkers/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -134,6 +134,7 @@
"libarchive",
"libass",
"libbpg",
"libcoap",
"libconfuse",
"libdb",
"libebml",
Expand Down
20 changes: 20 additions & 0 deletions cve_bin_tool/checkers/libcoap.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,20 @@
# Copyright (C) 2023 Orange
# SPDX-License-Identifier: GPL-3.0-or-later


"""
CVE checker for libcoap:
https://www.cvedetails.com/product/143502/Libcoap-Libcoap.html?vendor_id=31037
"""
from __future__ import annotations

from cve_bin_tool.checkers import Checker


class LibcoapChecker(Checker):
CONTAINS_PATTERNS: list[str] = []
FILENAME_PATTERNS: list[str] = []
VERSION_PATTERNS = [r"libcoap ([0-9]+\.[0-9]+\.[0-9]+)"]
VENDOR_PRODUCT = [("libcoap", "libcoap")]
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
33 changes: 33 additions & 0 deletions test/test_data/libcoap.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,33 @@
# Copyright (C) 2023 Orange
# SPDX-License-Identifier: GPL-3.0-or-later

mapping_test_data = [
{"product": "libcoap", "version": "4.3.1", "version_strings": ["libcoap 4.3.1"]}
]
package_test_data = [
{
"url": "http://rpmfind.net/linux/fedora/linux/development/rawhide/Everything/aarch64/os/Packages/l/",
"package_name": "libcoap-4.3.2-0.1.rc1.fc39.aarch64.rpm",
"product": "libcoap",
"version": "4.3.2",
},
{
"url": "http://ftp.fr.debian.org/debian/pool/main/libc/libcoap/",
"package_name": "libcoap-1-0_4.1.2-1_amd64.deb",
"product": "libcoap",
"version": "4.1.2",
},
{
"url": "http://ftp.fr.debian.org/debian/pool/main/libc/libcoap3/",
"package_name": "libcoap3_4.3.1-1_amd64.deb",
"product": "libcoap",
"version": "4.3.1",
"other_products": ["gnutls"],
},
{
"url": "https://downloads.openwrt.org/releases/packages-21.02/x86_64/packages/",
"package_name": "libcoap2_4.2.1-1_x86_64.ipk",
"product": "libcoap",
"version": "4.2.1",
},
]

0 comments on commit 6643bc5

Please sign in to comment.