Setup

Much of this can be found in ubuntu-cve-tracker/README.

  1. Install the necessary software:

    $ sudo apt-get install python3-configobj python3-yaml python3-genshi python3-progressbar python3-macaroonbakery subversion
  2. Download the ubuntu-cve-tracker branch:

    $ mkdir ~/git-pulls
    $ cd ~/git-pulls
    $ git clone git+ssh://<user>@git.launchpad.net/ubuntu-cve-tracker (replace <user> with your launchpad user).
  3. Add the UCT environment variable to your startup scripts (eg ~/.bashrc) and have it point to the ubuntu-cve-tracker branch:

    export UCT="$HOME/git-pulls/ubuntu-cve-tracker"
  4. Create $HOME/.ubuntu-cve-tracker.conf to have something like:

    # python-launchpad-bugs authentication cookies file (sis-changes)
    # This depends on the Firefox installation path (deb vs snap)
    # For debs, by default should be: "/home/<username>/.mozilla/firefox/<work.profile>/cookies.sqlite"
    # Starting from Jammy, Firefox is installed as a snap:
    plb_authentication="/home/<username>/snap/firefox/common/.mozilla/firefox/<work.profile>/cookies.sqlite"
     
    # path to Debian "security-tracker" GIT tree (check-cves)
    # get from https://salsa.debian.org/security-tracker-team/security-tracker
    secure_testing_path='/home/<username>/git-pulls/security-tracker'
     
    # path to archive-layout mirror of supported architectures
    # sis-generate-usn, packages-mirror)
    packages_mirror='<path>/ubuntu-archive-metadata'
    
    # same as packages_mirror, but for Debian testing repository
    debian_mirror='<path>/debian-testing-archive-metadata'
    
    # same as packages_mirror, but for the partner repository
    partner_mirror='<path>/partner-archive-metadata'
    
    # path to usn-tool bzr tree, used to manipulate USN databases
    # and for templates (sis-generate-usn)
    # origin is https://launchpad.net/usn-tool/
    usn_tool='/home/<username>/git-pulls/usn-tool-trunk'
    
    # path to copy of master USN database, used when creating
    # a template for a USN (sis-generate-usn)
    usn_db_copy='/home/<username>/git-pulls/ubuntu-cve-tracker/database.pickle'
    
    # path to individual USN pickle database output when generating a single USN
    # database before merging into the master USN database (sis-generate-usn)
    usn_storage='/tmp/pending-usn'
    
    # path to git tree for the USN website which will be updated with new markdown
    # as USNs are published
    # origin is https://launchpad.net/usn.ubuntu.com
    usn_website='/home/<username>/git-pulls/usn.ubuntu.com'
    
    # where to get the MITRE CVE and NVD databases (check-cves)
    mitre_loc="people.canonical.com:/home/ubuntu-security/cache"
    nvd_loc="people.canonical.com:/home/ubuntu-security/cache"
    nvd2_loc="people.canonical.com:/home/ubuntu-security/nvd-database"
  5. Populate the required data into the packages_mirror and partner_mirror directories:

    cd $UCT;./scripts/packages-mirror
  6. Populate the required data into the secure_testing directory:

    $ cd ~/git-pulls
    $ git clone https://salsa.debian.org/security-tracker-team/security-tracker.git
  7. Pull down an initial copy of the database.pickle database:

    cd $UCT; ./scripts/fetch-db database.pickle.bz2

Usage

check-cves

check-cves is the tool to update the CVE database with new entries.

Prequisites

check-cves needs the archive layout mirrors to contain up-to-date information; the ${UCT}/scripts/packages-mirror script will do this for you.

Usage

To use manually, run like this:

$ cd $UCT ; git pull --ff-only
$ ./scripts/check-cves
$ ./scripts/check-cves http://cve.mitre.org/data/downloads/allitems.xml
$ ./scripts/check-cves <file>

Eg:

$ wget -N http://cve.mitre.org/data/downloads/allitems.xml
$ git pull --ff-only
$ ./scripts/check-cves ./allitems.xml
$ for i in $(seq 2004 $(date +%Y)) recent; do wget --quiet -N http://nvd.nist.gov/download/nvdcve-$i.xml; done
$ ./scripts/check-cves ./nvdcve-2*.xml

The Ubuntu Security team does certain triage actions depending on the day of the week, and the process_cves script will guide you through these and call check-cves with appropriate arguments. Eg:

$ git pull --ff-only
$ ./scripts/process_cves
$ ./scripts/process_cves Mon
$ ./scripts/process_cves Tue

Please see the TRIAGING section in ubuntu-cve-tracker/README for more information.

Embargoed Items

Embargoed items are supported in the following scripts in all the scripts except sync-from-usns.py. If no CVE has been assigned yet, an embargoed item should be prefixed with 'EMB-', followed by any combination of alphanumerics and dashes. Eg: EMB-xorg-2007-0001 EMB-foo

To include embargoed items simply create a symlink from 'embargoed' to the directory holding embargoed items. ubuntu-cve-tracker will not use 'embargoed' unless it is a symlink.

Pre-commit Syntax Checking

To perform pre-commit syntax checking, this little hack should allow for it:

$ make dev_setup

This will install a git pre-commit hook that will run $UCT/scripts/check-syntax on your modified CVE files.

With the above, check-syntax is always run before a commmit, or to avoid check-syntax, you can run: UCT_IGNORE_CHECK_SYNTAX=1 git commit

Other commands

Below are various tools to help maintain and manipulate UCT. All commands assume you are in the top-level directory of UCT (ie cd $UCT).

Please see the UBUNTU-CVE Commands section in ubuntu-cve-tracker/README for more information.

Reports

SecurityTeam/UbuntuCVETracker (last edited 2024-06-11 18:26:18 by federicoquattrin)