Skip to content

Commit 2ae80c3

Browse files
authored
Merge branch 'main' into add-markdown-linter
2 parents 07d6fbc + 0e39831 commit 2ae80c3

File tree

78 files changed

+741
-512
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

78 files changed

+741
-512
lines changed

.github/actions/spelling/allow.txt

+5
Original file line numberDiff line numberDiff line change
@@ -210,7 +210,9 @@ file
210210
filepaths
211211
filetype
212212
filterdiv
213+
filters
213214
firefox
215+
firejail
214216
flac
215217
fluidsynth
216218
flutterchina
@@ -422,6 +424,7 @@ linux
422424
linuxptp
423425
lite
424426
lldpd
427+
llvm
425428
logrotate
426429
lrzip
427430
lua
@@ -526,6 +529,7 @@ nvdosvgad
526529
nvdosvgadcurl
527530
oath
528531
OCSP
532+
ofono
529533
onboarding
530534
oneline
531535
open
@@ -829,6 +833,7 @@ yasm
829833
yml
830834
YYYY
831835
zabbix
836+
zbar
832837
zchunk
833838
zeek
834839
zip

.github/workflows/build-wheel.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ jobs:
2828
egress-policy: audit
2929

3030
- uses: actions/checkout@b4ffde65f46336ab88eb53be808477a3936bae11 # v4.1.1
31-
- uses: actions/setup-python@42375524e23c412d93fb67b49958b491fce71c38 # v5.4.0
31+
- uses: actions/setup-python@8d9ed9ac5c53483de85588cdf95a591a75ab9f55 # v5.5.0
3232
with:
3333
python-version: ${{ matrix.python-version }}
3434
cache: 'pip'

.github/workflows/codeql-analysis.yml

+2-2
Original file line numberDiff line numberDiff line change
@@ -51,7 +51,7 @@ jobs:
5151

5252
# Initializes the CodeQL tools for scanning.
5353
- name: Initialize CodeQL
54-
uses: github/codeql-action/init@6bb031afdd8eb862ea3fc1848194185e076637e5 # v3.28.11
54+
uses: github/codeql-action/init@1b549b9259bda1cb5ddde3b41741a82a2d15a841 # v3.28.13
5555
with:
5656
languages: ${{ matrix.language }}
5757
# If you wish to specify custom queries, you can do so here or in a config file.
@@ -76,4 +76,4 @@ jobs:
7676
# make release
7777

7878
- name: Perform CodeQL Analysis
79-
uses: github/codeql-action/analyze@6bb031afdd8eb862ea3fc1848194185e076637e5 # v3.28.11
79+
uses: github/codeql-action/analyze@1b549b9259bda1cb5ddde3b41741a82a2d15a841 # v3.28.13

.github/workflows/cve_scan.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ jobs:
2222
egress-policy: audit
2323

2424
- uses: actions/checkout@b4ffde65f46336ab88eb53be808477a3936bae11 # v4.1.1
25-
- uses: actions/setup-python@42375524e23c412d93fb67b49958b491fce71c38 # v5.4.0
25+
- uses: actions/setup-python@8d9ed9ac5c53483de85588cdf95a591a75ab9f55 # v5.5.0
2626
with:
2727
python-version: '3.11'
2828
cache: 'pip'

.github/workflows/formatting.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ jobs:
2424
egress-policy: audit
2525

2626
- uses: actions/checkout@b4ffde65f46336ab88eb53be808477a3936bae11 # v4.1.1
27-
- uses: actions/setup-python@42375524e23c412d93fb67b49958b491fce71c38 # v5.4.0
27+
- uses: actions/setup-python@8d9ed9ac5c53483de85588cdf95a591a75ab9f55 # v5.5.0
2828
with:
2929
python-version: '3.11'
3030
cache: 'pip'

.github/workflows/fuzzing.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ jobs:
1919
uses: actions/checkout@v4
2020

2121
- name: Set up Python
22-
uses: actions/setup-python@v5.4.0
22+
uses: actions/setup-python@v5.5.0
2323
with:
2424
python-version: 3.10.16
2525

.github/workflows/linting.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ jobs:
2424
egress-policy: audit
2525

2626
- uses: actions/checkout@b4ffde65f46336ab88eb53be808477a3936bae11 # v4.1.1
27-
- uses: actions/setup-python@42375524e23c412d93fb67b49958b491fce71c38 # v5.4.0
27+
- uses: actions/setup-python@8d9ed9ac5c53483de85588cdf95a591a75ab9f55 # v5.5.0
2828
with:
2929
python-version: '3.11'
3030
cache: 'pip'

.github/workflows/sbom.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ jobs:
2727
egress-policy: audit
2828

2929
- uses: actions/checkout@b4ffde65f46336ab88eb53be808477a3936bae11 # v4.1.1
30-
- uses: actions/setup-python@42375524e23c412d93fb67b49958b491fce71c38 # v5.4.0
30+
- uses: actions/setup-python@8d9ed9ac5c53483de85588cdf95a591a75ab9f55 # v5.5.0
3131
with:
3232
python-version: ${{ matrix.python }}
3333
cache: 'pip'

.github/workflows/testing.yml

+8-8
Original file line numberDiff line numberDiff line change
@@ -49,7 +49,7 @@ jobs:
4949
pypi.org:443
5050
5151
- uses: actions/checkout@b4ffde65f46336ab88eb53be808477a3936bae11 # v4.1.1
52-
- uses: actions/setup-python@42375524e23c412d93fb67b49958b491fce71c38 # v5.4.0
52+
- uses: actions/setup-python@8d9ed9ac5c53483de85588cdf95a591a75ab9f55 # v5.5.0
5353
with:
5454
python-version: '3.11'
5555
cache: 'pip'
@@ -109,7 +109,7 @@ jobs:
109109
*.codecov.io:443
110110
codecov.io:443
111111
- uses: actions/checkout@b4ffde65f46336ab88eb53be808477a3936bae11 # v4.1.1
112-
- uses: actions/setup-python@42375524e23c412d93fb67b49958b491fce71c38 # v5.4.0
112+
- uses: actions/setup-python@8d9ed9ac5c53483de85588cdf95a591a75ab9f55 # v5.5.0
113113
with:
114114
python-version: ${{ matrix.python }}
115115
cache: 'pip'
@@ -205,7 +205,7 @@ jobs:
205205

206206
steps:
207207
- uses: actions/checkout@b4ffde65f46336ab88eb53be808477a3936bae11 # v4.1.1
208-
- uses: actions/setup-python@42375524e23c412d93fb67b49958b491fce71c38 # v5.4.0
208+
- uses: actions/setup-python@8d9ed9ac5c53483de85588cdf95a591a75ab9f55 # v5.5.0
209209
with:
210210
python-version: '3.13'
211211
cache: 'pip'
@@ -322,7 +322,7 @@ jobs:
322322

323323
steps:
324324
- uses: actions/checkout@b4ffde65f46336ab88eb53be808477a3936bae11 # v4.1.1
325-
- uses: actions/setup-python@42375524e23c412d93fb67b49958b491fce71c38 # v5.4.0
325+
- uses: actions/setup-python@8d9ed9ac5c53483de85588cdf95a591a75ab9f55 # v5.5.0
326326
with:
327327
python-version: '3.13'
328328
cache: 'pip'
@@ -425,7 +425,7 @@ jobs:
425425

426426
steps:
427427
- uses: actions/checkout@b4ffde65f46336ab88eb53be808477a3936bae11 # v4.1.1
428-
- uses: actions/setup-python@42375524e23c412d93fb67b49958b491fce71c38 # v5.4.0
428+
- uses: actions/setup-python@8d9ed9ac5c53483de85588cdf95a591a75ab9f55 # v5.5.0
429429
with:
430430
python-version: '3.13'
431431
cache: 'pip'
@@ -528,7 +528,7 @@ jobs:
528528

529529
steps:
530530
- uses: actions/checkout@b4ffde65f46336ab88eb53be808477a3936bae11 # v4.1.1
531-
- uses: actions/setup-python@42375524e23c412d93fb67b49958b491fce71c38 # v5.4.0
531+
- uses: actions/setup-python@8d9ed9ac5c53483de85588cdf95a591a75ab9f55 # v5.5.0
532532
with:
533533
python-version: '3.13'
534534
cache: 'pip'
@@ -664,7 +664,7 @@ jobs:
664664
www.sqlite.org:443
665665
666666
- uses: actions/checkout@b4ffde65f46336ab88eb53be808477a3936bae11 # v4.1.1
667-
- uses: actions/setup-python@42375524e23c412d93fb67b49958b491fce71c38 # v5.4.0
667+
- uses: actions/setup-python@8d9ed9ac5c53483de85588cdf95a591a75ab9f55 # v5.5.0
668668
with:
669669
python-version: '3.13'
670670
cache: 'pip'
@@ -771,7 +771,7 @@ jobs:
771771
egress-policy: audit
772772

773773
- uses: actions/checkout@b4ffde65f46336ab88eb53be808477a3936bae11 # v4.1.1
774-
- uses: actions/setup-python@42375524e23c412d93fb67b49958b491fce71c38 # v5.4.0
774+
- uses: actions/setup-python@8d9ed9ac5c53483de85588cdf95a591a75ab9f55 # v5.5.0
775775
with:
776776
python-version: '3.12'
777777
cache: 'pip'

.github/workflows/update-cache.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@ jobs:
3131
egress-policy: audit
3232

3333
- uses: actions/checkout@b4ffde65f46336ab88eb53be808477a3936bae11 # v4.1.1
34-
- uses: actions/setup-python@42375524e23c412d93fb67b49958b491fce71c38 # v5.4.0
34+
- uses: actions/setup-python@8d9ed9ac5c53483de85588cdf95a591a75ab9f55 # v5.5.0
3535
with:
3636
python-version: '3.13'
3737
cache: 'pip'

.github/workflows/update-js-dependencies.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ jobs:
2828

2929
- uses: actions/checkout@b4ffde65f46336ab88eb53be808477a3936bae11 # v4.1.1
3030

31-
- uses: actions/setup-python@42375524e23c412d93fb67b49958b491fce71c38 # v5.4.0
31+
- uses: actions/setup-python@8d9ed9ac5c53483de85588cdf95a591a75ab9f55 # v5.5.0
3232
with:
3333
python-version: '3.11'
3434

.github/workflows/update-pre-commit.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ jobs:
2828

2929
- uses: actions/checkout@b4ffde65f46336ab88eb53be808477a3936bae11 # v4.1.1
3030

31-
- uses: actions/setup-python@42375524e23c412d93fb67b49958b491fce71c38 # v5.4.0
31+
- uses: actions/setup-python@8d9ed9ac5c53483de85588cdf95a591a75ab9f55 # v5.5.0
3232
with:
3333
python-version: '3.11'
3434

.github/workflows/validate-yml.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ jobs:
2121
- uses: actions/checkout@b4ffde65f46336ab88eb53be808477a3936bae11 # v4.1.1
2222
with:
2323
fetch-depth: 0
24-
- uses: actions/setup-python@42375524e23c412d93fb67b49958b491fce71c38 # v5.4.0
24+
- uses: actions/setup-python@8d9ed9ac5c53483de85588cdf95a591a75ab9f55 # v5.5.0
2525
with:
2626
python-version: '3.11'
2727
cache: 'pip'

.pre-commit-config.yaml

+1-1
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ repos:
2828
args: ["--py38-plus"]
2929

3030
- repo: https://github.com/pycqa/flake8
31-
rev: 7.1.2
31+
rev: 7.2.0
3232
hooks:
3333
- id: flake8
3434
exclude: ^fuzz/generated/|bandit\.conf$

README.md

+55-54
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ CVE Binary Tool uses the NVD API but is not endorsed or certified by the NVD.
1616

1717
The tool has two main modes of operation:
1818

19-
1. A binary scanner which helps you determine which packages may have been included as part of a piece of software. There are <!-- NUMBER OF CHECKERS START-->402<!--NUMBER OF CHECKERS END--> checkers. Our initial focus was on common, vulnerable open source components such as openssl, libpng, libxml2 and expat.
19+
1. A binary scanner which helps you determine which packages may have been included as part of a piece of software. There are <!-- NUMBER OF CHECKERS START-->407<!--NUMBER OF CHECKERS END--> checkers. Our initial focus was on common, vulnerable open source components such as openssl, libpng, libxml2 and expat.
2020

2121
2. Tools for scanning known component lists in various formats, including .csv, several linux distribution package lists, language specific package scanners and several Software Bill of Materials (SBOM) formats.
2222

@@ -226,65 +226,66 @@ The following checkers are available for finding components in binary files:
226226

227227
<!--CHECKERS TABLE BEGIN-->
228228
| | | | Available checkers | | | |
229-
|----------------- |-------------- |------------------ |------------- |--------------- |------------- |--------------- |
229+
|--------------- |------------- |------------------ |--------------- |----------------- |------------- |--------------- |
230230
| accountsservice |acpid |apache_http_server |apcupsd |apparmor |apr |asn1c |
231231
| assimp |asterisk |atftp |avahi |axel |bash |bind |
232232
| binutils |bird |bison |bluez |boa |boinc |botan |
233233
| bro |bubblewrap |busybox |bwm_ng |bzip2 |c_ares |cairo |
234234
| capnproto |ceph |cflow |chess |chrony |civetweb |clamav |
235235
| clang |collectd |commons_compress |connman |coreutils |cpio |cpp_httplib |
236-
| cronie |cryptsetup |cups |curl |cvs |darkhttpd |dav1d |
237-
| davfs2 |dbus |debianutils |dhclient |dhcpcd |dhcpd |djvulibre |
238-
| dlt_daemon |dmidecode |dnsmasq |docker |domoticz |dosfstools |dotnet |
239-
| dovecot |doxygen |dpkg |dropbear |e2fsprogs |ed |elfutils |
240-
| emacs |enscript |exfatprogs |exim |exiv2 |f2fs_tools |faad2 |
241-
| fastd |ffmpeg |file |firefox |flac |fluidsynth |freeradius |
242-
| freerdp |fribidi |frr |fuse |gawk |gcc |gdal |
243-
| gdb |gdk_pixbuf |gettext |ghostscript |gimp |git |glib |
244-
| glibc |gmp |gnomeshell |gnupg |gnutls |go |gpgme |
245-
| gpsd |graphicsmagick |grep |grub2 |gsasl |gstreamer |guile |
246-
| gupnp |gvfs |gzip |haproxy |harfbuzz |haserl |hdf5 |
247-
| heimdal |hostapd |hunspell |hwloc |i2pd |icecast |icu |
248-
| imagemagick |indent |inetutils |iperf3 |ipmitool |ipsec_tools |iptables |
249-
| irssi |iucode_tool |iwd |jack2 |jacksondatabind |janus |jasper |
250-
| jbig |jhead |jq |json_c |kbd |keepalived |kerberos |
251-
| kexectools |kodi |kubernetes |ldns |lftp |libarchive |libass |
252-
| libbpg |libcap |libcoap |libconfuse |libcurl |libdb |libde265 |
253-
| libebml |libevent |libexpat |libgcrypt |libgd |libgit2 |libheif |
254-
| libical |libidn2 |libinput |libjpeg |libjpeg_turbo |libksba |liblas |
255-
| liblouis |libmatroska |libmemcached |libmicrohttpd |libmodbus |libnss |libopenmpt |
256-
| libpcap |libraw |libreoffice |libreswan |librsvg |librsync |libsamplerate |
257-
| libseccomp |libsndfile |libsolv |libsoup |libsrtp |libssh |libssh2 |
258-
| libtasn1 |libtiff |libtomcrypt |libupnp |libuv |libvips |libvirt |
259-
| libvncserver |libvorbis |libvpx |libxslt |libyaml |libyang |lighttpd |
260-
| linux_kernel |linuxptp |lldpd |logrotate |lrzip |lua |luajit |
261-
| lxc |lynx |lz4 |lzo2 |mailx |mariadb |mbedtls |
262-
| mdadm |memcached |micropython |minetest |mini_httpd |minicom |minidlna |
263-
| miniupnpc |miniupnpd |moby |modsecurity |monit |mosquitto |motion |
264-
| mp4v2 |mpg123 |mpv |msmtp |mtr |mupdf |mutt |
265-
| mysql |nano |nasm |nbd |ncurses |neon |nessus |
266-
| netatalk |netdata |netkit_ftp |netpbm |nettle |nghttp2 |nginx |
267-
| ngircd |nmap |node |ntfs_3g |ntp |ntpsec |oath_toolkit |
268-
| open_iscsi |open_vm_tools |openafs |openblas |opencv |openjpeg |openldap |
269-
| opensc |openssh |openssl |openswan |openvpn |openvswitch |orc |
270-
| p7zip |pango |patch |pcre |pcre2 |pcsc_lite |perl |
271-
| php |picocom |pigz |pixman |pjsip |png |polarssl_fedora |
272-
| poppler |postgresql |ppp |privoxy |procps_ng |proftpd |protobuf_c |
273-
| pspp |pure_ftpd |putty |python |qemu |qpdf |qt |
274-
| quagga |radare2 |radvd |raptor |rauc |rdesktop |readline |
275-
| redis |rpm |rsync |rsyslog |rtl_433 |rtmpdump |ruby |
276-
| runc |rust |samba |sane_backends |sasl |sdl |seahorse |
277-
| shadowsocks_libev |snapd |sngrep |snort |socat |sofia_sip |speex |
278-
| spice |sqlite |squashfs |squid |sslh |stellarium |strongswan |
279-
| stunnel |subversion |sudo |suricata |sylpheed |syslogng |sysstat |
280-
| systemd |tar |tbb |tcpdump |tcpreplay |terminology |tesseract |
281-
| thrift |thttpd |thunderbird |timescaledb |tinyproxy |tor |toybox |
282-
| tpm2_tss |traceroute |transmission |trousers |ttyd |twonky_server |u_boot |
283-
| udisks |unbound |unixodbc |upx |util_linux |uwsgi |varnish |
284-
| vim |vlc |vorbis_tools |vsftpd |wavpack |webkitgtk |wget |
285-
| wireshark |wolfssl |wpa_supplicant |xerces |xml2 |xpdf |xscreensaver |
286-
| xwayland |xz |yasm |zabbix |zchunk |zeek |zlib |
287-
| znc |zsh |zstandard | | | | |
236+
| cronie |cryptsetup |cups |cups_filters |curl |cvs |darkhttpd |
237+
| dav1d |davfs2 |dbus |debianutils |dhclient |dhcpcd |dhcpd |
238+
| djvulibre |dlt_daemon |dmidecode |dnsmasq |docker |domoticz |dosfstools |
239+
| dotnet |dovecot |doxygen |dpkg |dropbear |e2fsprogs |ed |
240+
| elfutils |emacs |enscript |exfatprogs |exim |exiv2 |f2fs_tools |
241+
| faad2 |fastd |ffmpeg |file |firefox |firejail |flac |
242+
| fluidsynth |freeradius |freerdp |fribidi |frr |fuse |gawk |
243+
| gcc |gdal |gdb |gdk_pixbuf |gettext |ghostscript |gimp |
244+
| git |glib |glibc |gmp |gnomeshell |gnupg |gnutls |
245+
| go |gpgme |gpsd |graphicsmagick |grep |grub2 |gsasl |
246+
| gstreamer |guile |gupnp |gvfs |gzip |haproxy |harfbuzz |
247+
| haserl |hdf5 |heimdal |hostapd |hunspell |hwloc |i2pd |
248+
| icecast |icu |imagemagick |indent |inetutils |iperf3 |ipmitool |
249+
| ipsec_tools |iptables |irssi |iucode_tool |iwd |jack2 |jacksondatabind |
250+
| janus |jasper |jbig |jhead |jq |json_c |kbd |
251+
| keepalived |kerberos |kexectools |kodi |kubernetes |ldns |lftp |
252+
| libarchive |libass |libbpg |libcap |libcoap |libconfuse |libcurl |
253+
| libdb |libde265 |libebml |libevent |libexpat |libgcrypt |libgd |
254+
| libgit2 |libheif |libical |libidn2 |libinput |libjpeg |libjpeg_turbo |
255+
| libksba |liblas |liblouis |libmatroska |libmemcached |libmicrohttpd |libmodbus |
256+
| libnss |libopenmpt |libpcap |libraw |libreoffice |libreswan |librsvg |
257+
| librsync |libsamplerate |libseccomp |libsndfile |libsolv |libsoup |libsrtp |
258+
| libssh |libssh2 |libtasn1 |libtiff |libtomcrypt |libupnp |libuv |
259+
| libvips |libvirt |libvncserver |libvorbis |libvpx |libxslt |libyaml |
260+
| libyang |lighttpd |linux_kernel |linuxptp |lldpd |llvm |logrotate |
261+
| lrzip |lua |luajit |lxc |lynx |lz4 |lzo2 |
262+
| mailx |mariadb |mbedtls |mdadm |memcached |micropython |minetest |
263+
| mini_httpd |minicom |minidlna |miniupnpc |miniupnpd |moby |modsecurity |
264+
| monit |mosquitto |motion |mp4v2 |mpg123 |mpv |msmtp |
265+
| mtr |mupdf |mutt |mysql |nano |nasm |nbd |
266+
| ncurses |neon |nessus |netatalk |netdata |netkit_ftp |netpbm |
267+
| nettle |nghttp2 |nginx |ngircd |nmap |node |ntfs_3g |
268+
| ntp |ntpsec |oath_toolkit |ofono |open_iscsi |open_vm_tools |openafs |
269+
| openblas |opencv |openjpeg |openldap |opensc |openssh |openssl |
270+
| openswan |openvpn |openvswitch |orc |p7zip |pango |patch |
271+
| pcre |pcre2 |pcsc_lite |perl |php |picocom |pigz |
272+
| pixman |pjsip |png |polarssl_fedora |poppler |postgresql |ppp |
273+
| privoxy |procps_ng |proftpd |protobuf_c |pspp |pure_ftpd |putty |
274+
| python |qemu |qpdf |qt |quagga |radare2 |radvd |
275+
| raptor |rauc |rdesktop |readline |redis |rpm |rsync |
276+
| rsyslog |rtl_433 |rtmpdump |ruby |runc |rust |samba |
277+
| sane_backends |sasl |sdl |seahorse |shadowsocks_libev |snapd |sngrep |
278+
| snort |socat |sofia_sip |speex |spice |sqlite |squashfs |
279+
| squid |sslh |stellarium |strongswan |stunnel |subversion |sudo |
280+
| suricata |sylpheed |syslogng |sysstat |systemd |tar |tbb |
281+
| tcpdump |tcpreplay |terminology |tesseract |thrift |thttpd |thunderbird |
282+
| timescaledb |tinyproxy |tor |toybox |tpm2_tss |traceroute |transmission |
283+
| trousers |ttyd |twonky_server |u_boot |udisks |unbound |unixodbc |
284+
| upx |util_linux |uwsgi |varnish |vim |vlc |vorbis_tools |
285+
| vsftpd |wavpack |webkitgtk |wget |wireshark |wolfssl |wpa_supplicant |
286+
| xerces |xml2 |xpdf |xscreensaver |xwayland |xz |yasm |
287+
| zabbix |zbar |zchunk |zeek |zlib |znc |zsh |
288+
| zstandard | | | | | | |
288289
<!--CHECKERS TABLE END-->
289290

290291
All the checkers can be found in the checkers directory, as can the

cve_bin_tool/checkers/__init__.py

+4
Original file line numberDiff line numberDiff line change
@@ -68,6 +68,7 @@
6868
"cronie",
6969
"cryptsetup",
7070
"cups",
71+
"cups_filters",
7172
"curl",
7273
"cvs",
7374
"darkhttpd",
@@ -104,6 +105,7 @@
104105
"ffmpeg",
105106
"file",
106107
"firefox",
108+
"firejail",
107109
"flac",
108110
"fluidsynth",
109111
"freeradius",
@@ -290,6 +292,7 @@
290292
"ntp",
291293
"ntpsec",
292294
"oath_toolkit",
295+
"ofono",
293296
"open_iscsi",
294297
"open_vm_tools",
295298
"openafs",
@@ -420,6 +423,7 @@
420423
"xz",
421424
"yasm",
422425
"zabbix",
426+
"zbar",
423427
"zchunk",
424428
"zeek",
425429
"zlib",

0 commit comments

Comments
 (0)