#!/bin/sh -e # Simple script to review the CVE mappings PATH=/bin:/usr/bin:/sbin:/usr/sbin if [ ! -n "`which lynx`" ] ; then echo "Sorry, lynx not found" >&2 exit 1 fi if [ ! -n "`which perl`" ] ; then echo "Sorry, perl not found" >&2 exit 1 fi lynx -source https://cve.mitre.org/cve/refs/refmap/source-DEBIAN.html | perl check-cve-refs.pl | /bin/grep -v "references ok" | /usr/bin/less exit 0