How To Install cvechecker on Fedora 36
Introduction
In this tutorial we learn how to install cvechecker
on Fedora 36.
What is cvechecker
The goal of cvechecker is to report about possible vulnerabilities on your system, by scanning a list of installed software and matching results with the CVE database. This is not a bullet-proof method and you will have many false positives (i.e. to detect the revision itself).
We can use yum
or dnf
to install cvechecker
on Fedora 36. In this tutorial we discuss both methods but you only need to choose one of method to install cvechecker.
Install cvechecker on Fedora 36 Using dnf
Update yum database with dnf
using the following command.
sudo dnf makecache --refresh
After updating yum database, We can install cvechecker
using dnf
by running the following command:
sudo dnf -y install cvechecker
Install cvechecker on Fedora 36 Using yum
Update yum database with yum
using the following command.
sudo yum makecache --refresh
After updating yum database, We can install cvechecker
using yum
by running the following command:
sudo yum -y install cvechecker
How To Uninstall cvechecker on Fedora 36
To uninstall only the cvechecker
package we can use the following command:
sudo dnf remove cvechecker
cvechecker Package Contents on Fedora 36
/etc/cvechecker.conf
/usr/bin/cvechecker
/usr/bin/cvegenversdat
/usr/bin/cvereport
/usr/bin/cverules
/usr/bin/pullcves
/usr/lib/.build-id
/usr/lib/.build-id/41
/usr/lib/.build-id/41/982c0d7fc6e47cd12d5635746004783aa158ae
/usr/share/cvechecker
/usr/share/cvechecker/csv2xml.awk
/usr/share/cvechecker/cvereport.xsl
/usr/share/cvechecker/mysql_cvechecker.sql
/usr/share/cvechecker/report.css
/usr/share/doc/cvechecker
/usr/share/doc/cvechecker/ChangeLog
/usr/share/doc/cvechecker/README.md
/usr/share/doc/cvechecker/acknowledgements.html
/usr/share/doc/cvechecker/userguide.html
/usr/share/man/man1/cvechecker.1.gz
/usr/share/man/man1/cvegenversdat.1.gz
/usr/share/man/man1/cvereport.1.gz
/usr/share/man/man1/cverules.1.gz
/usr/share/man/man1/pullcves.1.gz
/var/lib/cvechecker/cache
/var/lib/cvechecker/local
References
Summary
In this tutorial we learn how to install cvechecker
on Fedora 36 using yum and [dnf]((/fedora/36/dnf/).