diff --git a/.gitignore b/.gitignore index d9aede47..362a2ac9 100644 --- a/.gitignore +++ b/.gitignore @@ -1,6 +1,5 @@ .vscode *.txt -*.json *.sqlite3* *.db tags @@ -10,7 +9,7 @@ issues/ vendor/ log/ results/ -*config.toml +config.toml !setup/docker/* .DS_Store dist/ diff --git a/GNUmakefile b/GNUmakefile index 3e0b4ec0..174540d5 100644 --- a/GNUmakefile +++ b/GNUmakefile @@ -80,3 +80,114 @@ build-trivy-to-vuls: pretest fmt # future-vuls build-future-vuls: pretest fmt $(GO) build -o future-vuls contrib/future-vuls/cmd/*.go + + +# integration-test +BASE_DIR := '${PWD}/integration/results' +NOW=$(shell date --iso-8601=seconds) +NOW_JSON_DIR := '${BASE_DIR}/$(NOW)' +ONE_SEC_AFTER=$(shell date -d '+1 second' --iso-8601=seconds) +ONE_SEC_AFTER_JSON_DIR := '${BASE_DIR}/$(ONE_SEC_AFTER)' + +diff: + # git clone git@github.com:vulsio/vulsctl.git + # cd vulsctl/docker + # ./update-all.sh + # cd /path/to/vuls + # vim integration/int-config.toml + # ln -s vuls vuls.new + # ln -s oldvuls vuls.old + # make int + # (ex. test 10 times: for i in `seq 10`; do make int ARGS=-quiet ; done) + mv ${BASE_DIR}/* /tmp + mkdir -p ${NOW_JSON_DIR} + cp integration/data/*.json ${NOW_JSON_DIR} + ./vuls.old report --format-json --refresh-cve --results-dir=${BASE_DIR} -config=./integration/int-config.toml $(ARGS) + mkdir -p ${ONE_SEC_AFTER_JSON_DIR} + cp integration/data/*.json ${ONE_SEC_AFTER_JSON_DIR} + ./vuls.new report --format-json --refresh-cve --results-dir=${BASE_DIR} -config=./integration/int-config.toml $(ARGS) + find ${NOW_JSON_DIR} -type f -exec sed -i -e '/reportedAt/d' {} \; + find ${ONE_SEC_AFTER_JSON_DIR} -type f -exec sed -i -e '/reportedAt/d' {} \; + diff -c ${NOW_JSON_DIR} ${ONE_SEC_AFTER_JSON_DIR} + echo "old: ${NOW_JSON_DIR} , new: ${ONE_SEC_AFTER_JSON_DIR}" + +diff-redis: + # docker network create redis-nw + # docker run --name redis -d --network redis-nw -p 127.0.0.1:6379:6379 redis + # git clone git@github.com:vulsio/vulsctl.git + # cd vulsctl/docker + # ./update-all-redis.sh + # (or export DOCKER_NETWORK=redis-nw; cd /home/ubuntu/vulsctl/docker; ./update-all.sh --dbtype redis --dbpath "redis://redis/0") + # vim integration/int-redis-config.toml + # ln -s vuls vuls.new + # ln -s oldvuls vuls.old + # make int-redis + mv ${BASE_DIR}/* /tmp + mkdir -p ${NOW_JSON_DIR} + cp integration/data/*.json ${NOW_JSON_DIR} + ./vuls.old report --format-json --refresh-cve --results-dir=${BASE_DIR} -config=./integration/int-redis-config.toml + mkdir -p ${ONE_SEC_AFTER_JSON_DIR} + cp integration/data/*.json ${ONE_SEC_AFTER_JSON_DIR} + ./vuls.new report --format-json --refresh-cve --results-dir=${BASE_DIR} -config=./integration/int-redis-config.toml + find ${NOW_JSON_DIR} -type f -exec sed -i -e '/reportedAt/d' {} \; + find ${ONE_SEC_AFTER_JSON_DIR} -type f -exec sed -i -e '/reportedAt/d' {} \; + diff -c ${NOW_JSON_DIR} ${ONE_SEC_AFTER_JSON_DIR} + echo "old: ${NOW_JSON_DIR} , new: ${ONE_SEC_AFTER_JSON_DIR}" + +diff-rdb-redis: + mv ${BASE_DIR}/* /tmp + mkdir -p ${NOW_JSON_DIR} + cp integration/data/*.json ${NOW_JSON_DIR} + ./vuls.new report --format-json --refresh-cve --results-dir=${BASE_DIR} -config=./integration/int-config.toml + mkdir -p ${ONE_SEC_AFTER_JSON_DIR} + cp integration/data/*.json ${ONE_SEC_AFTER_JSON_DIR} + ./vuls.new report --format-json --refresh-cve --results-dir=${BASE_DIR} -config=./integration/int-redis-config.toml + # remove reportedAt line + find ${NOW_JSON_DIR} -type f -exec sed -i -e '/reportedAt/d' {} \; + find ${ONE_SEC_AFTER_JSON_DIR} -type f -exec sed -i -e '/reportedAt/d' {} \; + # remove "Type": line + find ${NOW_JSON_DIR} -type f -exec sed -i -e '/"Type":/d' {} \; + find ${ONE_SEC_AFTER_JSON_DIR} -type f -exec sed -i -e '/"Type":/d' {} \; + # remove "SQLite3Path": line + find ${NOW_JSON_DIR} -type f -exec sed -i -e '/"SQLite3Path":/d' {} \; + find ${ONE_SEC_AFTER_JSON_DIR} -type f -exec sed -i -e '/"SQLite3Path":/d' {} \; + diff -c ${NOW_JSON_DIR} ${ONE_SEC_AFTER_JSON_DIR} + echo "old: ${NOW_JSON_DIR} , new: ${ONE_SEC_AFTER_JSON_DIR}" + for jsonfile in ${NOW_JSON_DIR}/*.json ; do \ + echo $$jsonfile; cat $$jsonfile | jq ".scannedCves | length" ; \ + done + for jsonfile in ${ONE_SEC_AFTER_JSON_DIR}/*.json ; do \ + echo $$jsonfile; cat $$jsonfile | jq ".scannedCves | length" ; \ + done + + +head= $(shell git rev-parse HEAD) +prev= $(shell git rev-parse HEAD^) +branch=$(shell git rev-parse --abbrev-ref HEAD) +build-integration: + git stash + + # buld HEAD + git checkout ${head} + make build + mv -f ./vuls ./vuls.${head} + + # HEAD^ + git checkout ${prev} + make build + mv -f ./vuls ./vuls.${prev} + + git checkout ${branch} + git stash apply stash@\{0\} + + # working tree + make build + + # for integration testing, vuls.new and vuls.old needed. + # ex) + # $ ln -s ./vuls ./vuls.new + # $ ln -s ./vuls.${head} ./vuls.old + # or + # $ ln -s ./vuls.${prev} ./vuls.old + # $ make int + # $ make int-redis \ No newline at end of file diff --git a/config/config.go b/config/config.go index 4cdca670..8bd92f01 100644 --- a/config/config.go +++ b/config/config.go @@ -23,11 +23,9 @@ var Conf Config //Config is struct of Configuration type Config struct { + logging.LogOpts + // scan, report - Debug bool `json:"debug,omitempty"` - DebugSQL bool `json:"debugSQL,omitempty"` - LogDir string `json:"logDir,omitempty"` - Quiet bool `json:"quiet,omitempty"` HTTPProxy string `valid:"url" json:"httpProxy,omitempty"` ResultsDir string `json:"resultsDir,omitempty"` Pipe bool `json:"pipe,omitempty"` @@ -65,8 +63,7 @@ type ReportConf interface { // ScanOpts is options for scan type ScanOpts struct { - Vvv bool `json:"vvv,omitempty"` - DetectIPS bool `json:"detectIps,omitempty"` + Vvv bool `json:"vvv,omitempty"` } // ReportOpts is options for report @@ -164,25 +161,25 @@ func (c *Config) ValidateOnReport() bool { } } - for _, err := range errs { - logging.Log.Error(err) - } - - return len(errs) == 0 -} - -// ValidateOnTui validates configuration -func (c Config) ValidateOnTui() bool { - errs := []error{} - if len(c.ResultsDir) != 0 { - if ok, _ := govalidator.IsFilePath(c.ResultsDir); !ok { - errs = append(errs, xerrors.Errorf( - "JSON base directory must be a *Absolute* file path. -results-dir: %s", c.ResultsDir)) + for _, cnf := range []VulnDictInterface{ + &Conf.CveDict, + &Conf.OvalDict, + &Conf.Gost, + &Conf.Exploit, + &Conf.Metasploit, + } { + if err := cnf.Validate(); err != nil { + errs = append(errs, xerrors.Errorf("Failed to validate %s: %+v", cnf.GetName(), err)) + } + if err := cnf.CheckHTTPHealth(); err != nil { + errs = append(errs, xerrors.Errorf("Run %s as server mode before reporting: %+v", cnf.GetName(), err)) } } + for _, err := range errs { logging.Log.Error(err) } + return len(errs) == 0 } diff --git a/config/ips.go b/config/ips.go deleted file mode 100644 index 075079dc..00000000 --- a/config/ips.go +++ /dev/null @@ -1,6 +0,0 @@ -package config - -const ( - // DeepSecurity is - DeepSecurity string = "deepsecurity" -) diff --git a/config/vulnDictConf.go b/config/vulnDictConf.go index 1af0a943..6d7cc023 100644 --- a/config/vulnDictConf.go +++ b/config/vulnDictConf.go @@ -22,6 +22,7 @@ type VulnDictInterface interface { GetType() string GetURL() string GetSQLite3Path() string + GetDebugSQL() bool } // VulnDict is a base struct of vuln dicts @@ -35,31 +36,38 @@ type VulnDict struct { URL string `json:"-"` // /path/to/cve.sqlite3 - SQLite3Path string `json:"-"` + SQLite3Path string + + DebugSQL bool } // GetType returns type -func (cnf *VulnDict) GetType() string { +func (cnf VulnDict) GetType() string { return cnf.Type } // GetName returns name -func (cnf *VulnDict) GetName() string { +func (cnf VulnDict) GetName() string { return cnf.Name } // GetURL returns url -func (cnf *VulnDict) GetURL() string { +func (cnf VulnDict) GetURL() string { return cnf.URL } // GetSQLite3Path return the path of SQLite3 -func (cnf *VulnDict) GetSQLite3Path() string { +func (cnf VulnDict) GetSQLite3Path() string { return cnf.SQLite3Path } +// GetDebugSQL return debugSQL flag +func (cnf VulnDict) GetDebugSQL() bool { + return cnf.DebugSQL +} + // Validate settings -func (cnf *VulnDict) Validate() error { +func (cnf VulnDict) Validate() error { logging.Log.Infof("%s.type=%s, %s.url=%s, %s.SQLite3Path=%s", cnf.Name, cnf.Type, cnf.Name, cnf.URL, cnf.Name, cnf.SQLite3Path) @@ -99,7 +107,7 @@ func (cnf *VulnDict) Validate() error { } // Init the struct -func (cnf *VulnDict) Init() {} +func (cnf VulnDict) Init() {} func (cnf *VulnDict) setDefault(sqlite3Name string) { if cnf.Type == "" { @@ -112,12 +120,12 @@ func (cnf *VulnDict) setDefault(sqlite3Name string) { } // IsFetchViaHTTP returns if fetch via HTTP -func (cnf *VulnDict) IsFetchViaHTTP() bool { +func (cnf VulnDict) IsFetchViaHTTP() bool { return cnf.Type == "http" } // CheckHTTPHealth checks http server status -func (cnf *VulnDict) CheckHTTPHealth() error { +func (cnf VulnDict) CheckHTTPHealth() error { if !cnf.IsFetchViaHTTP() { return nil } @@ -156,6 +164,7 @@ func (cnf *GovalDictConf) Init() { cnf.SQLite3Path = os.Getenv(govalPATH) } cnf.setDefault("oval.sqlite3") + cnf.DebugSQL = Conf.DebugSQL } // ExploitConf is exploit config @@ -182,6 +191,7 @@ func (cnf *ExploitConf) Init() { cnf.SQLite3Path = os.Getenv(exploitDBPATH) } cnf.setDefault("go-exploitdb.sqlite3") + cnf.DebugSQL = Conf.DebugSQL } // GoCveDictConf is GoCveDict config @@ -208,6 +218,7 @@ func (cnf *GoCveDictConf) Init() { cnf.SQLite3Path = os.Getenv(cveDBPATH) } cnf.setDefault("cve.sqlite3") + cnf.DebugSQL = Conf.DebugSQL } // GostConf is gost config @@ -234,6 +245,7 @@ func (cnf *GostConf) Init() { cnf.SQLite3Path = os.Getenv(gostDBPATH) } cnf.setDefault("gost.sqlite3") + cnf.DebugSQL = Conf.DebugSQL } // MetasploitConf is gost go-metasploitdb @@ -260,4 +272,5 @@ func (cnf *MetasploitConf) Init() { cnf.SQLite3Path = os.Getenv(metasploitDBPATH) } cnf.setDefault("go-msfdb.sqlite3") + cnf.DebugSQL = Conf.DebugSQL } diff --git a/detector/cve_client.go b/detector/cve_client.go index 30c08004..d0d2e4da 100644 --- a/detector/cve_client.go +++ b/detector/cve_client.go @@ -16,15 +16,50 @@ import ( "github.com/future-architect/vuls/logging" "github.com/future-architect/vuls/util" cvedb "github.com/kotakanbe/go-cve-dictionary/db" + cvelog "github.com/kotakanbe/go-cve-dictionary/log" cvemodels "github.com/kotakanbe/go-cve-dictionary/models" ) -// CveClient is api client of CVE dictionary service. -var CveClient cvedictClient +type goCveDictClient struct { + cnf config.VulnDictInterface + driver cvedb.DB +} -type cvedictClient struct { - // httpProxy string - baseURL string +func newGoCveDictClient(cnf config.VulnDictInterface, o logging.LogOpts) (*goCveDictClient, error) { + cvelog.SetLogger(o.LogDir, o.Quiet, o.Debug, false) + + driver, locked, err := newCveDB(cnf) + if locked { + return nil, xerrors.Errorf("SQLite3 is locked: %s", cnf.GetSQLite3Path()) + } else if err != nil { + return nil, err + } + return &goCveDictClient{cnf: cnf, driver: driver}, nil +} + +func (api goCveDictClient) closeDB() error { + if api.driver == nil { + return nil + } + if err := api.driver.CloseDB(); err != nil { + return xerrors.Errorf("Failed to close DB: %+v", err) + } + return nil +} + +func (api goCveDictClient) fetchCveDetails(cveIDs []string) (cveDetails []cvemodels.CveDetail, err error) { + for _, cveID := range cveIDs { + cveDetail, err := api.driver.Get(cveID) + if err != nil { + return nil, xerrors.Errorf("Failed to fetch CVE. err: %w", err) + } + if len(cveDetail.CveID) == 0 { + cveDetails = append(cveDetails, cvemodels.CveDetail{CveID: cveID}) + } else { + cveDetails = append(cveDetails, *cveDetail) + } + } + return } type response struct { @@ -32,28 +67,7 @@ type response struct { CveDetail cvemodels.CveDetail } -func (api cvedictClient) FetchCveDetails(driver cvedb.DB, cveIDs []string) (cveDetails []cvemodels.CveDetail, err error) { - if !config.Conf.CveDict.IsFetchViaHTTP() { - if driver == nil { - return - } - for _, cveID := range cveIDs { - cveDetail, err := driver.Get(cveID) - if err != nil { - return nil, xerrors.Errorf("Failed to fetch CVE. err: %w", err) - } - if len(cveDetail.CveID) == 0 { - cveDetails = append(cveDetails, cvemodels.CveDetail{ - CveID: cveID, - }) - } else { - cveDetails = append(cveDetails, *cveDetail) - } - } - return - } - - api.baseURL = config.Conf.CveDict.URL +func (api goCveDictClient) fetchCveDetailsViaHTTP(cveIDs []string) (cveDetails []cvemodels.CveDetail, err error) { reqChan := make(chan string, len(cveIDs)) resChan := make(chan response, len(cveIDs)) errChan := make(chan error, len(cveIDs)) @@ -73,7 +87,7 @@ func (api cvedictClient) FetchCveDetails(driver cvedb.DB, cveIDs []string) (cveD tasks <- func() { select { case cveID := <-reqChan: - url, err := util.URLPathJoin(api.baseURL, "cves", cveID) + url, err := util.URLPathJoin(api.cnf.GetURL(), "cves", cveID) if err != nil { errChan <- err } else { @@ -109,12 +123,11 @@ func (api cvedictClient) FetchCveDetails(driver cvedb.DB, cveIDs []string) (cveD return } -func (api cvedictClient) httpGet(key, url string, resChan chan<- response, errChan chan<- error) { +func (api goCveDictClient) httpGet(key, url string, resChan chan<- response, errChan chan<- error) { var body string var errs []error var resp *http.Response f := func() (err error) { - // resp, body, errs = gorequest.New().SetDebug(config.Conf.Debug).Get(url).End() resp, body, errs = gorequest.New().Timeout(10 * time.Second).Get(url).End() if 0 < len(errs) || resp == nil || resp.StatusCode != 200 { return xerrors.Errorf("HTTP GET Error, url: %s, resp: %v, err: %+v", @@ -123,8 +136,7 @@ func (api cvedictClient) httpGet(key, url string, resChan chan<- response, errCh return nil } notify := func(err error, t time.Duration) { - logging.Log.Warnf("Failed to HTTP GET. retrying in %s seconds. err: %+v", - t, err) + logging.Log.Warnf("Failed to HTTP GET. retrying in %s seconds. err: %+v", t, err) } err := backoff.RetryNotify(f, backoff.NewExponentialBackOff(), notify) if err != nil { @@ -142,10 +154,9 @@ func (api cvedictClient) httpGet(key, url string, resChan chan<- response, errCh } } -func (api cvedictClient) FetchCveDetailsByCpeName(driver cvedb.DB, cpeName string) ([]cvemodels.CveDetail, error) { - if config.Conf.CveDict.IsFetchViaHTTP() { - api.baseURL = config.Conf.CveDict.URL - url, err := util.URLPathJoin(api.baseURL, "cpes") +func (api goCveDictClient) fetchCveDetailsByCpeName(cpeName string) ([]cvemodels.CveDetail, error) { + if api.cnf.IsFetchViaHTTP() { + url, err := util.URLPathJoin(api.cnf.GetURL(), "cpes") if err != nil { return nil, err } @@ -154,15 +165,14 @@ func (api cvedictClient) FetchCveDetailsByCpeName(driver cvedb.DB, cpeName strin logging.Log.Debugf("HTTP Request to %s, query: %#v", url, query) return api.httpPost(cpeName, url, query) } - return driver.GetByCpeURI(cpeName) + return api.driver.GetByCpeURI(cpeName) } -func (api cvedictClient) httpPost(key, url string, query map[string]string) ([]cvemodels.CveDetail, error) { +func (api goCveDictClient) httpPost(key, url string, query map[string]string) ([]cvemodels.CveDetail, error) { var body string var errs []error var resp *http.Response f := func() (err error) { - // req := gorequest.New().SetDebug(config.Conf.Debug).Post(url) req := gorequest.New().Timeout(10 * time.Second).Post(url) for key := range query { req = req.Send(fmt.Sprintf("%s=%s", key, query[key])).Type("json") @@ -188,3 +198,19 @@ func (api cvedictClient) httpPost(key, url string, query map[string]string) ([]c } return cveDetails, nil } + +func newCveDB(cnf config.VulnDictInterface) (driver cvedb.DB, locked bool, err error) { + if cnf.IsFetchViaHTTP() { + return nil, false, nil + } + path := cnf.GetURL() + if cnf.GetType() == "sqlite3" { + path = cnf.GetSQLite3Path() + } + driver, locked, err = cvedb.NewDB(cnf.GetType(), path, cnf.GetDebugSQL()) + if err != nil { + err = xerrors.Errorf("Failed to init CVE DB. err: %w, path: %s", err, path) + return nil, locked, err + } + return driver, false, nil +} diff --git a/detector/db_client.go b/detector/db_client.go deleted file mode 100644 index 6ed8ab25..00000000 --- a/detector/db_client.go +++ /dev/null @@ -1,184 +0,0 @@ -// +build !scanner - -package detector - -import ( - "github.com/future-architect/vuls/config" - gostdb "github.com/knqyf263/gost/db" - cvedb "github.com/kotakanbe/go-cve-dictionary/db" - ovaldb "github.com/kotakanbe/goval-dictionary/db" - metasploitdb "github.com/takuzoo3868/go-msfdb/db" - exploitdb "github.com/vulsio/go-exploitdb/db" - "golang.org/x/xerrors" -) - -// DBClient is DB client for reporting -type DBClient struct { - CveDB cvedb.DB - OvalDB ovaldb.DB - GostDB gostdb.DB - ExploitDB exploitdb.DB - MetasploitDB metasploitdb.DB -} - -// NewDBClient returns db clients -func NewDBClient(cveDict, ovalDict, gost, exploit, metasploit config.VulnDictInterface, debugSQL bool) (dbclient *DBClient, err error) { - for _, cnf := range []config.VulnDictInterface{cveDict, ovalDict, gost, exploit, metasploit} { - if err := cnf.Validate(); err != nil { - return nil, xerrors.Errorf("Failed to validate %s: %+v", cnf.GetName(), err) - } - if err := cnf.CheckHTTPHealth(); err != nil { - return nil, xerrors.Errorf("Run %s as server mode before reporting: %+v", cnf.GetName(), err) - } - } - - cveDriver, locked, err := NewCveDB(cveDict, debugSQL) - if locked { - return nil, xerrors.Errorf("SQLite3 is locked: %s", cveDict.GetSQLite3Path()) - } else if err != nil { - return nil, err - } - - ovaldb, locked, err := NewOvalDB(ovalDict, debugSQL) - if locked { - return nil, xerrors.Errorf("SQLite3 is locked: %s", ovalDict.GetSQLite3Path()) - } else if err != nil { - return nil, err - } - - gostdb, locked, err := NewGostDB(gost, debugSQL) - if locked { - return nil, xerrors.Errorf("SQLite3 is locked: %s", gost.GetSQLite3Path()) - } else if err != nil { - return nil, err - } - - exploitdb, locked, err := NewExploitDB(exploit, debugSQL) - if locked { - return nil, xerrors.Errorf("SQLite3 is locked: %s", exploit.GetSQLite3Path()) - } else if err != nil { - return nil, err - } - - metasploitdb, locked, err := NewMetasploitDB(metasploit, debugSQL) - if locked { - return nil, xerrors.Errorf("SQLite3 is locked: %s", metasploit.GetSQLite3Path()) - } else if err != nil { - return nil, err - } - - return &DBClient{ - CveDB: cveDriver, - OvalDB: ovaldb, - GostDB: gostdb, - ExploitDB: exploitdb, - MetasploitDB: metasploitdb, - }, nil -} - -// NewCveDB returns cve db client -func NewCveDB(cnf config.VulnDictInterface, debugSQL bool) (driver cvedb.DB, locked bool, err error) { - if cnf.IsFetchViaHTTP() { - return nil, false, nil - } - path := cnf.GetURL() - if cnf.GetType() == "sqlite3" { - path = cnf.GetSQLite3Path() - } - driver, locked, err = cvedb.NewDB(cnf.GetType(), path, debugSQL) - if err != nil { - err = xerrors.Errorf("Failed to init CVE DB. err: %w, path: %s", err, path) - return nil, locked, err - } - return driver, false, nil -} - -// NewOvalDB returns oval db client -func NewOvalDB(cnf config.VulnDictInterface, debugSQL bool) (driver ovaldb.DB, locked bool, err error) { - if cnf.IsFetchViaHTTP() { - return nil, false, nil - } - path := cnf.GetURL() - if cnf.GetType() == "sqlite3" { - path = cnf.GetSQLite3Path() - } - driver, locked, err = ovaldb.NewDB("", cnf.GetType(), path, debugSQL) - if err != nil { - err = xerrors.Errorf("Failed to new OVAL DB. err: %w", err) - if locked { - return nil, true, err - } - return nil, false, err - } - return driver, false, nil -} - -// NewGostDB returns db client for Gost -func NewGostDB(cnf config.VulnDictInterface, debugSQL bool) (driver gostdb.DB, locked bool, err error) { - if cnf.IsFetchViaHTTP() { - return nil, false, nil - } - path := cnf.GetURL() - if cnf.GetType() == "sqlite3" { - path = cnf.GetSQLite3Path() - } - if driver, locked, err = gostdb.NewDB(cnf.GetType(), path, debugSQL); err != nil { - if locked { - return nil, true, xerrors.Errorf("gostDB is locked. err: %w", err) - } - return nil, false, err - } - return driver, false, nil -} - -// NewExploitDB returns db client for Exploit -func NewExploitDB(cnf config.VulnDictInterface, debugSQL bool) (driver exploitdb.DB, locked bool, err error) { - if cnf.IsFetchViaHTTP() { - return nil, false, nil - } - path := cnf.GetURL() - if cnf.GetType() == "sqlite3" { - path = cnf.GetSQLite3Path() - } - if driver, locked, err = exploitdb.NewDB(cnf.GetType(), path, debugSQL); err != nil { - if locked { - return nil, true, xerrors.Errorf("exploitDB is locked. err: %w", err) - } - return nil, false, err - } - return driver, false, nil -} - -// NewMetasploitDB returns db client for Metasploit -func NewMetasploitDB(cnf config.VulnDictInterface, debugSQL bool) (driver metasploitdb.DB, locked bool, err error) { - if cnf.IsFetchViaHTTP() { - return nil, false, nil - } - path := cnf.GetURL() - if cnf.GetType() == "sqlite3" { - path = cnf.GetSQLite3Path() - } - if driver, locked, err = metasploitdb.NewDB(cnf.GetType(), path, debugSQL, false); err != nil { - if locked { - return nil, true, xerrors.Errorf("metasploitDB is locked. err: %w", err) - } - return nil, false, err - } - return driver, false, nil -} - -// CloseDB close dbs -func (d DBClient) CloseDB() (errs []error) { - if d.CveDB != nil { - if err := d.CveDB.CloseDB(); err != nil { - errs = append(errs, xerrors.Errorf("Failed to close cveDB. err: %+v", err)) - } - } - if d.OvalDB != nil { - if err := d.OvalDB.CloseDB(); err != nil { - errs = append(errs, xerrors.Errorf("Failed to close ovalDB. err: %+v", err)) - } - } - //TODO CloseDB gost, exploitdb, metasploit - return errs -} diff --git a/detector/detector.go b/detector/detector.go index b0112691..c1201ad7 100644 --- a/detector/detector.go +++ b/detector/detector.go @@ -7,38 +7,27 @@ import ( "strings" "time" - c "github.com/future-architect/vuls/config" + "github.com/future-architect/vuls/config" "github.com/future-architect/vuls/constant" "github.com/future-architect/vuls/contrib/owasp-dependency-check/parser" "github.com/future-architect/vuls/cwe" - "github.com/future-architect/vuls/exploit" "github.com/future-architect/vuls/gost" "github.com/future-architect/vuls/logging" "github.com/future-architect/vuls/models" - "github.com/future-architect/vuls/msf" "github.com/future-architect/vuls/oval" "github.com/future-architect/vuls/reporter" "github.com/future-architect/vuls/util" - gostdb "github.com/knqyf263/gost/db" - cvedb "github.com/kotakanbe/go-cve-dictionary/db" cvemodels "github.com/kotakanbe/go-cve-dictionary/models" - ovaldb "github.com/kotakanbe/goval-dictionary/db" - metasploitdb "github.com/takuzoo3868/go-msfdb/db" - exploitdb "github.com/vulsio/go-exploitdb/db" "golang.org/x/xerrors" ) -// type Detector struct { -// Targets map[string]c.ServerInfo -// } - // Detect vulns and fill CVE detailed information -func Detect(dbclient DBClient, rs []models.ScanResult, dir string) ([]models.ScanResult, error) { +func Detect(rs []models.ScanResult, dir string) ([]models.ScanResult, error) { // Use the same reportedAt for all rs reportedAt := time.Now() for i, r := range rs { - if !c.Conf.RefreshCve && !needToRefreshCve(r) { + if !config.Conf.RefreshCve && !needToRefreshCve(r) { logging.Log.Info("No need to refresh") continue } @@ -49,10 +38,10 @@ func Detect(dbclient DBClient, rs []models.ScanResult, dir string) ([]models.Sca cpeURIs, owaspDCXMLPath := []string{}, "" if len(r.Container.ContainerID) == 0 { - cpeURIs = c.Conf.Servers[r.ServerName].CpeNames - owaspDCXMLPath = c.Conf.Servers[r.ServerName].OwaspDCXMLPath + cpeURIs = config.Conf.Servers[r.ServerName].CpeNames + owaspDCXMLPath = config.Conf.Servers[r.ServerName].OwaspDCXMLPath } else { - if s, ok := c.Conf.Servers[r.ServerName]; ok { + if s, ok := config.Conf.Servers[r.ServerName]; ok { if con, ok := s.Containers[r.Container.Name]; ok { cpeURIs = con.Cpes owaspDCXMLPath = con.OwaspDCXMLPath @@ -68,46 +57,66 @@ func Detect(dbclient DBClient, rs []models.ScanResult, dir string) ([]models.Sca cpeURIs = append(cpeURIs, cpes...) } - if err := DetectLibsCves(&r, c.Conf.TrivyCacheDBDir, c.Conf.NoProgress); err != nil { + if err := DetectLibsCves(&r, config.Conf.TrivyCacheDBDir, config.Conf.NoProgress); err != nil { return nil, xerrors.Errorf("Failed to fill with Library dependency: %w", err) } - if err := DetectPkgCves(dbclient, &r); err != nil { + if err := DetectPkgCves(&r, config.Conf.OvalDict, config.Conf.Gost); err != nil { return nil, xerrors.Errorf("Failed to detect Pkg CVE: %w", err) } - if err := DetectCpeURIsCves(dbclient.CveDB, &r, cpeURIs); err != nil { + if err := DetectCpeURIsCves(&r, cpeURIs, config.Conf.CveDict, config.Conf.LogOpts); err != nil { return nil, xerrors.Errorf("Failed to detect CVE of `%s`: %w", cpeURIs, err) } - repos := c.Conf.Servers[r.ServerName].GitHubRepos - if err := DetectGitHubCves(&r, repos, c.Conf.IgnoreGitHubDismissed); err != nil { + repos := config.Conf.Servers[r.ServerName].GitHubRepos + if err := DetectGitHubCves(&r, repos, config.Conf.IgnoreGitHubDismissed); err != nil { return nil, xerrors.Errorf("Failed to detect GitHub Cves: %w", err) } - if err := DetectWordPressCves(&r, &c.Conf.WpScan); err != nil { + if err := DetectWordPressCves(&r, config.Conf.WpScan); err != nil { return nil, xerrors.Errorf("Failed to detect WordPress Cves: %w", err) } - if err := FillCveInfo(dbclient, &r); err != nil { - return nil, err + logging.Log.Infof("Fill CVE detailed with gost") + if err := gost.FillCVEsWithRedHat(&r, config.Conf.Gost); err != nil { + return nil, xerrors.Errorf("Failed to fill with gost: %w", err) } + logging.Log.Infof("Fill CVE detailed with go-cve-dictionary") + if err := FillCvesWithNvdJvn(&r, config.Conf.CveDict, config.Conf.LogOpts); err != nil { + return nil, xerrors.Errorf("Failed to fill with CVE: %w", err) + } + + nExploitCve, err := FillWithExploit(&r, config.Conf.Exploit) + if err != nil { + return nil, xerrors.Errorf("Failed to fill with exploit: %w", err) + } + logging.Log.Infof("%s: %d exploits are detected", r.FormatServerName(), nExploitCve) + + nMetasploitCve, err := FillWithMetasploit(&r, config.Conf.Metasploit) + if err != nil { + return nil, xerrors.Errorf("Failed to fill with metasploit: %w", err) + } + logging.Log.Infof("%s: %d modules are detected", r.FormatServerName(), nMetasploitCve) + + FillCweDict(&r) + r.ReportedBy, _ = os.Hostname() - r.Lang = c.Conf.Lang + r.Lang = config.Conf.Lang r.ReportedAt = reportedAt - r.ReportedVersion = c.Version - r.ReportedRevision = c.Revision - r.Config.Report = c.Conf - r.Config.Report.Servers = map[string]c.ServerInfo{ - r.ServerName: c.Conf.Servers[r.ServerName], + r.ReportedVersion = config.Version + r.ReportedRevision = config.Revision + r.Config.Report = config.Conf + r.Config.Report.Servers = map[string]config.ServerInfo{ + r.ServerName: config.Conf.Servers[r.ServerName], } rs[i] = r } // Overwrite the json file every time to clear the fields specified in config.IgnoredJSONKeys for _, r := range rs { - if s, ok := c.Conf.Servers[r.ServerName]; ok { + if s, ok := config.Conf.Servers[r.ServerName]; ok { r = r.ClearFields(s.IgnoredJSONKeys) } //TODO don't call here @@ -116,23 +125,23 @@ func Detect(dbclient DBClient, rs []models.ScanResult, dir string) ([]models.Sca } } - if c.Conf.DiffPlus || c.Conf.DiffMinus { - prevs, err := loadPrevious(rs) + if config.Conf.DiffPlus || config.Conf.DiffMinus { + prevs, err := loadPrevious(rs, config.Conf.ResultsDir) if err != nil { return nil, err } - rs = diff(rs, prevs, c.Conf.DiffPlus, c.Conf.DiffMinus) + rs = diff(rs, prevs, config.Conf.DiffPlus, config.Conf.DiffMinus) } for i, r := range rs { - r.ScannedCves = r.ScannedCves.FilterByCvssOver(c.Conf.CvssScoreOver) - r.ScannedCves = r.ScannedCves.FilterUnfixed(c.Conf.IgnoreUnfixed) + r.ScannedCves = r.ScannedCves.FilterByCvssOver(config.Conf.CvssScoreOver) + r.ScannedCves = r.ScannedCves.FilterUnfixed(config.Conf.IgnoreUnfixed) // IgnoreCves ignoreCves := []string{} if r.Container.Name == "" { - ignoreCves = c.Conf.Servers[r.ServerName].IgnoreCves - } else if con, ok := c.Conf.Servers[r.ServerName].Containers[r.Container.Name]; ok { + ignoreCves = config.Conf.Servers[r.ServerName].IgnoreCves + } else if con, ok := config.Conf.Servers[r.ServerName].Containers[r.Container.Name]; ok { ignoreCves = con.IgnoreCves } r.ScannedCves = r.ScannedCves.FilterIgnoreCves(ignoreCves) @@ -140,34 +149,35 @@ func Detect(dbclient DBClient, rs []models.ScanResult, dir string) ([]models.Sca // ignorePkgs ignorePkgsRegexps := []string{} if r.Container.Name == "" { - ignorePkgsRegexps = c.Conf.Servers[r.ServerName].IgnorePkgsRegexp - } else if s, ok := c.Conf.Servers[r.ServerName].Containers[r.Container.Name]; ok { + ignorePkgsRegexps = config.Conf.Servers[r.ServerName].IgnorePkgsRegexp + } else if s, ok := config.Conf.Servers[r.ServerName].Containers[r.Container.Name]; ok { ignorePkgsRegexps = s.IgnorePkgsRegexp } r.ScannedCves = r.ScannedCves.FilterIgnorePkgs(ignorePkgsRegexps) // IgnoreUnscored - if c.Conf.IgnoreUnscoredCves { + if config.Conf.IgnoreUnscoredCves { r.ScannedCves = r.ScannedCves.FindScoredVulns() } - r.FilterInactiveWordPressLibs(c.Conf.WpScan.DetectInactive) + r.FilterInactiveWordPressLibs(config.Conf.WpScan.DetectInactive) rs[i] = r } return rs, nil } // DetectPkgCves detects OS pkg cves -func DetectPkgCves(dbclient DBClient, r *models.ScanResult) error { +// pass 2 configs +func DetectPkgCves(r *models.ScanResult, ovalCnf config.GovalDictConf, gostCnf config.GostConf) error { // Pkg Scan if r.Release != "" { // OVAL - if err := detectPkgsCvesWithOval(dbclient.OvalDB, r); err != nil { + if err := detectPkgsCvesWithOval(ovalCnf, r); err != nil { return xerrors.Errorf("Failed to detect CVE with OVAL: %w", err) } // gost - if err := detectPkgsCvesWithGost(dbclient.GostDB, r); err != nil { + if err := detectPkgsCvesWithGost(gostCnf, r); err != nil { return xerrors.Errorf("Failed to detect CVE with gost: %w", err) } } else if reuseScannedCves(r) { @@ -209,7 +219,7 @@ func DetectPkgCves(dbclient DBClient, r *models.ScanResult) error { } // DetectGitHubCves fetches CVEs from GitHub Security Alerts -func DetectGitHubCves(r *models.ScanResult, githubConfs map[string]c.GitHubConf, ignoreDismissed bool) error { +func DetectGitHubCves(r *models.ScanResult, githubConfs map[string]config.GitHubConf, ignoreDismissed bool) error { if len(githubConfs) == 0 { return nil } @@ -230,7 +240,7 @@ func DetectGitHubCves(r *models.ScanResult, githubConfs map[string]c.GitHubConf, } // DetectWordPressCves detects CVEs of WordPress -func DetectWordPressCves(r *models.ScanResult, wpCnf *c.WpScanConf) error { +func DetectWordPressCves(r *models.ScanResult, wpCnf config.WpScanConf) error { if len(r.WordPressPackages) == 0 { return nil } @@ -243,51 +253,33 @@ func DetectWordPressCves(r *models.ScanResult, wpCnf *c.WpScanConf) error { return nil } -// FillCveInfo fill scanResult with cve info. -func FillCveInfo(dbclient DBClient, r *models.ScanResult) error { - logging.Log.Infof("Fill CVE detailed with gost") - if err := gost.NewClient(r.Family).FillCVEsWithRedHat(dbclient.GostDB, r); err != nil { - return xerrors.Errorf("Failed to fill with gost: %w", err) - } - - logging.Log.Infof("Fill CVE detailed with CVE-DB") - if err := fillCvesWithNvdJvn(dbclient.CveDB, r); err != nil { - return xerrors.Errorf("Failed to fill with CVE: %w", err) - } - - logging.Log.Infof("Fill exploit with Exploit-DB") - nExploitCve, err := fillWithExploitDB(dbclient.ExploitDB, r) - if err != nil { - return xerrors.Errorf("Failed to fill with exploit: %w", err) - } - logging.Log.Infof("%s: %d exploits are detected", - r.FormatServerName(), nExploitCve) - - logging.Log.Infof("Fill metasploit module with Metasploit-DB") - nMetasploitCve, err := fillWithMetasploit(dbclient.MetasploitDB, r) - if err != nil { - return xerrors.Errorf("Failed to fill with metasploit: %w", err) - } - logging.Log.Infof("%s: %d modules are detected", - r.FormatServerName(), nMetasploitCve) - - logging.Log.Infof("Fill CWE with NVD") - fillCweDict(r) - - return nil -} - -// fillCvesWithNvdJvn fills CVE detail with NVD, JVN -func fillCvesWithNvdJvn(driver cvedb.DB, r *models.ScanResult) error { +// FillCvesWithNvdJvn fills CVE detail with NVD, JVN +func FillCvesWithNvdJvn(r *models.ScanResult, cnf config.GoCveDictConf, logOpts logging.LogOpts) (err error) { cveIDs := []string{} for _, v := range r.ScannedCves { cveIDs = append(cveIDs, v.CveID) } - ds, err := CveClient.FetchCveDetails(driver, cveIDs) + client, err := newGoCveDictClient(&cnf, logOpts) if err != nil { return err } + defer func() { + if err := client.closeDB(); err != nil { + logging.Log.Errorf("Failed to close DB. err: %+v") + } + }() + + var ds []cvemodels.CveDetail + if cnf.IsFetchViaHTTP() { + ds, err = client.fetchCveDetailsViaHTTP(cveIDs) + } else { + ds, err = client.fetchCveDetails(cveIDs) + } + if err != nil { + return err + } + for _, d := range ds { nvd, exploits, mitigations := models.ConvertNvdJSONToModel(d.CveID, d.NvdJSON) jvn := models.ConvertJvnToModel(d.CveID, d.Jvn) @@ -337,72 +329,29 @@ func fillCertAlerts(cvedetail *cvemodels.CveDetail) (dict models.AlertDict) { } // detectPkgsCvesWithOval fetches OVAL database -func detectPkgsCvesWithOval(driver ovaldb.DB, r *models.ScanResult) error { - var ovalClient oval.Client - var ovalFamily string - - switch r.Family { - case constant.Debian, constant.Raspbian: - ovalClient = oval.NewDebian() - ovalFamily = constant.Debian - case constant.Ubuntu: - ovalClient = oval.NewUbuntu() - ovalFamily = constant.Ubuntu - case constant.RedHat: - ovalClient = oval.NewRedhat() - ovalFamily = constant.RedHat - case constant.CentOS: - ovalClient = oval.NewCentOS() - //use RedHat's OVAL - ovalFamily = constant.RedHat - case constant.Oracle: - ovalClient = oval.NewOracle() - ovalFamily = constant.Oracle - case constant.SUSEEnterpriseServer: - // TODO other suse family - ovalClient = oval.NewSUSE() - ovalFamily = constant.SUSEEnterpriseServer - case constant.Alpine: - ovalClient = oval.NewAlpine() - ovalFamily = constant.Alpine - case constant.Amazon: - ovalClient = oval.NewAmazon() - ovalFamily = constant.Amazon - case constant.FreeBSD, constant.Windows: - return nil - case constant.ServerTypePseudo: - return nil - default: - if r.Family == "" { - return xerrors.New("Probably an error occurred during scanning. Check the error message") - } - return xerrors.Errorf("OVAL for %s is not implemented yet", r.Family) +func detectPkgsCvesWithOval(cnf config.GovalDictConf, r *models.ScanResult) error { + ovalClient, err := oval.NewOVALClient(r.Family, cnf) + if err != nil { + return err } - if !c.Conf.OvalDict.IsFetchViaHTTP() { - if driver == nil { - return xerrors.Errorf("You have to fetch OVAL data for %s before reporting. For details, see `https://github.com/kotakanbe/goval-dictionary#usage`", r.Family) - } - if err := driver.NewOvalDB(ovalFamily); err != nil { - return xerrors.Errorf("Failed to New Oval DB. err: %w", err) - } - } - - logging.Log.Debugf("Check whether oval fetched: %s %s", ovalFamily, r.Release) - ok, err := ovalClient.CheckIfOvalFetched(driver, ovalFamily, r.Release) + logging.Log.Debugf("Check if oval fetched: %s %s", r.Family, r.Release) + ok, err := ovalClient.CheckIfOvalFetched(r.Family, r.Release) if err != nil { return err } if !ok { - return xerrors.Errorf("OVAL entries of %s %s are not found. Fetch OVAL before reporting. For details, see `https://github.com/kotakanbe/goval-dictionary#usage`", ovalFamily, r.Release) + return xerrors.Errorf("OVAL entries of %s %s are not found. Fetch OVAL before reporting. For details, see `https://github.com/kotakanbe/goval-dictionary#usage`", r.Family, r.Release) } - _, err = ovalClient.CheckIfOvalFresh(driver, ovalFamily, r.Release) + logging.Log.Debugf("Check if oval fresh: %s %s", r.Family, r.Release) + _, err = ovalClient.CheckIfOvalFresh(r.Family, r.Release) if err != nil { return err } - nCVEs, err := ovalClient.FillWithOval(driver, r) + logging.Log.Debugf("Fill with oval: %s %s", r.Family, r.Release) + nCVEs, err := ovalClient.FillWithOval(r) if err != nil { return err } @@ -411,36 +360,36 @@ func detectPkgsCvesWithOval(driver ovaldb.DB, r *models.ScanResult) error { return nil } -func detectPkgsCvesWithGost(driver gostdb.DB, r *models.ScanResult) error { - nCVEs, err := gost.NewClient(r.Family).DetectUnfixed(driver, r, true) +func detectPkgsCvesWithGost(cnf config.GostConf, r *models.ScanResult) error { + client, err := gost.NewClient(cnf, r.Family) + if err != nil { + return xerrors.Errorf("Failed to new a gost client: %w", err) + } - logging.Log.Infof("%s: %d unfixed CVEs are detected with gost", - r.FormatServerName(), nCVEs) - return err -} + nCVEs, err := client.DetectUnfixed(r, true) + if err != nil { + return xerrors.Errorf("Failed to detect unfixed CVEs with gost: %w", err) + } -// fillWithExploitDB fills Exploits with exploit dataabase -// https://github.com/vulsio/go-exploitdb -func fillWithExploitDB(driver exploitdb.DB, r *models.ScanResult) (nExploitCve int, err error) { - return exploit.FillWithExploit(driver, r, &c.Conf.Exploit) -} - -// fillWithMetasploit fills metasploit modules with metasploit database -// https://github.com/takuzoo3868/go-msfdb -func fillWithMetasploit(driver metasploitdb.DB, r *models.ScanResult) (nMetasploitCve int, err error) { - return msf.FillWithMetasploit(driver, r) + logging.Log.Infof("%s: %d unfixed CVEs are detected with gost", r.FormatServerName(), nCVEs) + return nil } // DetectCpeURIsCves detects CVEs of given CPE-URIs -func DetectCpeURIsCves(driver cvedb.DB, r *models.ScanResult, cpeURIs []string) error { - nCVEs := 0 - if len(cpeURIs) != 0 && driver == nil && !c.Conf.CveDict.IsFetchViaHTTP() { - return xerrors.Errorf("cpeURIs %s specified, but cve-dictionary DB not found. Fetch cve-dictionary before reporting. For details, see `https://github.com/kotakanbe/go-cve-dictionary#deploy-go-cve-dictionary`", - cpeURIs) +func DetectCpeURIsCves(r *models.ScanResult, cpeURIs []string, cnf config.GoCveDictConf, logOpts logging.LogOpts) error { + client, err := newGoCveDictClient(&cnf, logOpts) + if err != nil { + return err } + defer func() { + if err := client.closeDB(); err != nil { + logging.Log.Errorf("Failed to close DB. err: %+v") + } + }() + nCVEs := 0 for _, name := range cpeURIs { - details, err := CveClient.FetchCveDetailsByCpeName(driver, name) + details, err := client.fetchCveDetailsByCpeName(name) if err != nil { return err } @@ -466,7 +415,8 @@ func DetectCpeURIsCves(driver cvedb.DB, r *models.ScanResult, cpeURIs []string) return nil } -func fillCweDict(r *models.ScanResult) { +// FillCweDict fills CWE +func FillCweDict(r *models.ScanResult) { uniqCweIDMap := map[string]bool{} for _, vinfo := range r.ScannedCves { for _, cont := range vinfo.CveContents { diff --git a/detector/exploitdb.go b/detector/exploitdb.go new file mode 100644 index 00000000..0feb2a1e --- /dev/null +++ b/detector/exploitdb.go @@ -0,0 +1,223 @@ +// +build !scanner + +package detector + +import ( + "encoding/json" + "net/http" + "time" + + "github.com/cenkalti/backoff" + "github.com/future-architect/vuls/config" + "github.com/future-architect/vuls/logging" + "github.com/future-architect/vuls/models" + "github.com/future-architect/vuls/util" + "github.com/parnurzeal/gorequest" + exploitdb "github.com/vulsio/go-exploitdb/db" + exploitmodels "github.com/vulsio/go-exploitdb/models" + + "golang.org/x/xerrors" +) + +// FillWithExploit fills exploit information that has in Exploit +func FillWithExploit(r *models.ScanResult, cnf config.ExploitConf) (nExploitCve int, err error) { + if cnf.IsFetchViaHTTP() { + var cveIDs []string + for cveID := range r.ScannedCves { + cveIDs = append(cveIDs, cveID) + } + prefix, _ := util.URLPathJoin(cnf.GetURL(), "cves") + responses, err := getCvesViaHTTP(cveIDs, prefix) + if err != nil { + return 0, err + } + for _, res := range responses { + exps := []*exploitmodels.Exploit{} + if err := json.Unmarshal([]byte(res.json), &exps); err != nil { + return 0, err + } + exploits := ConvertToModels(exps) + v, ok := r.ScannedCves[res.request.cveID] + if ok { + v.Exploits = exploits + } + r.ScannedCves[res.request.cveID] = v + nExploitCve++ + } + } else { + + driver, locked, err := newExploitDB(&cnf) + if locked { + return 0, xerrors.Errorf("SQLite3 is locked: %s", cnf.GetSQLite3Path()) + } else if err != nil { + return 0, err + } + defer func() { + if err := driver.CloseDB(); err != nil { + logging.Log.Errorf("Failed to close DB. err: %+v") + } + }() + + for cveID, vuln := range r.ScannedCves { + if cveID == "" { + continue + } + es := driver.GetExploitByCveID(cveID) + if len(es) == 0 { + continue + } + exploits := ConvertToModels(es) + vuln.Exploits = exploits + r.ScannedCves[cveID] = vuln + nExploitCve++ + } + } + return nExploitCve, nil +} + +// ConvertToModels converts gost model to vuls model +func ConvertToModels(es []*exploitmodels.Exploit) (exploits []models.Exploit) { + for _, e := range es { + var documentURL, shellURL *string + if e.OffensiveSecurity != nil { + os := e.OffensiveSecurity + if os.Document != nil { + documentURL = &os.Document.DocumentURL + } + if os.ShellCode != nil { + shellURL = &os.ShellCode.ShellCodeURL + } + } + exploit := models.Exploit{ + ExploitType: e.ExploitType, + ID: e.ExploitUniqueID, + URL: e.URL, + Description: e.Description, + DocumentURL: documentURL, + ShellCodeURL: shellURL, + } + exploits = append(exploits, exploit) + } + return exploits +} + +type exploitResponse struct { + request request + json string +} + +func getCvesViaHTTP(cveIDs []string, urlPrefix string) ( + responses []exploitResponse, err error) { + nReq := len(cveIDs) + reqChan := make(chan request, nReq) + resChan := make(chan exploitResponse, nReq) + errChan := make(chan error, nReq) + defer close(reqChan) + defer close(resChan) + defer close(errChan) + + go func() { + for _, cveID := range cveIDs { + reqChan <- request{ + cveID: cveID, + } + } + }() + + concurrency := 10 + tasks := util.GenWorkers(concurrency) + for i := 0; i < nReq; i++ { + tasks <- func() { + select { + case req := <-reqChan: + url, err := util.URLPathJoin( + urlPrefix, + req.cveID, + ) + if err != nil { + errChan <- err + } else { + logging.Log.Debugf("HTTP Request to %s", url) + httpGet(url, req, resChan, errChan) + } + } + } + } + + timeout := time.After(2 * 60 * time.Second) + var errs []error + for i := 0; i < nReq; i++ { + select { + case res := <-resChan: + responses = append(responses, res) + case err := <-errChan: + errs = append(errs, err) + case <-timeout: + return nil, xerrors.New("Timeout Fetching OVAL") + } + } + if len(errs) != 0 { + return nil, xerrors.Errorf("Failed to fetch OVAL. err: %w", errs) + } + return +} + +type request struct { + osMajorVersion string + packName string + isSrcPack bool + cveID string +} + +func httpGet(url string, req request, resChan chan<- exploitResponse, errChan chan<- error) { + var body string + var errs []error + var resp *http.Response + count, retryMax := 0, 3 + f := func() (err error) { + // resp, body, errs = gorequest.New().SetDebug(config.Conf.Debug).Get(url).End() + resp, body, errs = gorequest.New().Timeout(10 * time.Second).Get(url).End() + if 0 < len(errs) || resp == nil || resp.StatusCode != 200 { + count++ + if count == retryMax { + return nil + } + return xerrors.Errorf("HTTP GET error, url: %s, resp: %v, err: %+v", url, resp, errs) + } + return nil + } + notify := func(err error, t time.Duration) { + logging.Log.Warnf("Failed to HTTP GET. retrying in %s seconds. err: %+v", t, err) + } + err := backoff.RetryNotify(f, backoff.NewExponentialBackOff(), notify) + if err != nil { + errChan <- xerrors.Errorf("HTTP Error %w", err) + return + } + if count == retryMax { + errChan <- xerrors.New("Retry count exceeded") + return + } + + resChan <- exploitResponse{ + request: req, + json: body, + } +} + +func newExploitDB(cnf config.VulnDictInterface) (driver exploitdb.DB, locked bool, err error) { + if cnf.IsFetchViaHTTP() { + return nil, false, nil + } + path := cnf.GetURL() + if cnf.GetType() == "sqlite3" { + path = cnf.GetSQLite3Path() + } + if driver, locked, err = exploitdb.NewDB(cnf.GetType(), path, cnf.GetDebugSQL()); err != nil { + if locked { + return nil, true, xerrors.Errorf("exploitDB is locked. err: %w", err) + } + return nil, false, err + } + return driver, false, nil +} diff --git a/detector/msf.go b/detector/msf.go new file mode 100644 index 00000000..90cce6ca --- /dev/null +++ b/detector/msf.go @@ -0,0 +1,81 @@ +// +build !scanner + +package detector + +import ( + "github.com/future-architect/vuls/config" + "github.com/future-architect/vuls/logging" + "github.com/future-architect/vuls/models" + metasploitdb "github.com/takuzoo3868/go-msfdb/db" + metasploitmodels "github.com/takuzoo3868/go-msfdb/models" + "golang.org/x/xerrors" +) + +// FillWithMetasploit fills metasploit module information that has in module +func FillWithMetasploit(r *models.ScanResult, cnf config.MetasploitConf) (nMetasploitCve int, err error) { + + driver, locked, err := newMetasploitDB(&cnf) + if locked { + return 0, xerrors.Errorf("SQLite3 is locked: %s", cnf.GetSQLite3Path()) + } else if err != nil { + return 0, err + } + defer func() { + if err := driver.CloseDB(); err != nil { + logging.Log.Errorf("Failed to close DB. err: %+v") + } + }() + + for cveID, vuln := range r.ScannedCves { + if cveID == "" { + continue + } + ms := driver.GetModuleByCveID(cveID) + if len(ms) == 0 { + continue + } + modules := ConvertToModelsMsf(ms) + vuln.Metasploits = modules + r.ScannedCves[cveID] = vuln + nMetasploitCve++ + } + + return nMetasploitCve, nil +} + +// ConvertToModelsMsf converts gost model to vuls model +func ConvertToModelsMsf(ms []*metasploitmodels.Metasploit) (modules []models.Metasploit) { + for _, m := range ms { + var links []string + if 0 < len(m.References) { + for _, u := range m.References { + links = append(links, u.Link) + } + } + module := models.Metasploit{ + Name: m.Name, + Title: m.Title, + Description: m.Description, + URLs: links, + } + modules = append(modules, module) + } + return modules +} + +func newMetasploitDB(cnf config.VulnDictInterface) (driver metasploitdb.DB, locked bool, err error) { + if cnf.IsFetchViaHTTP() { + return nil, false, nil + } + path := cnf.GetURL() + if cnf.GetType() == "sqlite3" { + path = cnf.GetSQLite3Path() + } + if driver, locked, err = metasploitdb.NewDB(cnf.GetType(), path, cnf.GetDebugSQL(), false); err != nil { + if locked { + return nil, true, xerrors.Errorf("metasploitDB is locked. err: %w", err) + } + return nil, false, err + } + return driver, false, nil +} diff --git a/detector/util.go b/detector/util.go index d723967d..d3f149a3 100644 --- a/detector/util.go +++ b/detector/util.go @@ -42,8 +42,8 @@ func needToRefreshCve(r models.ScanResult) bool { return true } -func loadPrevious(currs models.ScanResults) (prevs models.ScanResults, err error) { - dirs, err := ListValidJSONDirs() +func loadPrevious(currs models.ScanResults, resultsDir string) (prevs models.ScanResults, err error) { + dirs, err := ListValidJSONDirs(resultsDir) if err != nil { return } @@ -234,16 +234,16 @@ var jsonDirPattern = regexp.MustCompile( // ListValidJSONDirs returns valid json directory as array // Returned array is sorted so that recent directories are at the head -func ListValidJSONDirs() (dirs []string, err error) { +func ListValidJSONDirs(resultsDir string) (dirs []string, err error) { var dirInfo []os.FileInfo - if dirInfo, err = ioutil.ReadDir(config.Conf.ResultsDir); err != nil { + if dirInfo, err = ioutil.ReadDir(resultsDir); err != nil { err = xerrors.Errorf("Failed to read %s: %w", config.Conf.ResultsDir, err) return } for _, d := range dirInfo { if d.IsDir() && jsonDirPattern.MatchString(d.Name()) { - jsonDir := filepath.Join(config.Conf.ResultsDir, d.Name()) + jsonDir := filepath.Join(resultsDir, d.Name()) dirs = append(dirs, jsonDir) } } diff --git a/detector/wordpress.go b/detector/wordpress.go index 14597e53..b0211e97 100644 --- a/detector/wordpress.go +++ b/detector/wordpress.go @@ -9,7 +9,7 @@ import ( "strings" "time" - c "github.com/future-architect/vuls/config" + "github.com/future-architect/vuls/config" "github.com/future-architect/vuls/errof" "github.com/future-architect/vuls/logging" "github.com/future-architect/vuls/models" @@ -50,7 +50,7 @@ type References struct { // DetectWordPressCves access to wpscan and fetch scurity alerts and then set to the given ScanResult. // https://wpscan.com/ -func detectWordPressCves(r *models.ScanResult, cnf *c.WpScanConf) (int, error) { +func detectWordPressCves(r *models.ScanResult, cnf config.WpScanConf) (int, error) { if len(r.WordPressPackages) == 0 { return 0, nil } @@ -230,7 +230,7 @@ func httpRequest(url, token string) (string, error) { fmt.Sprintf("Failed to access to wpscan.com. err: %s", err)) } req.Header.Set("Authorization", fmt.Sprintf("Token token=%s", token)) - client, err := util.GetHTTPClient(c.Conf.HTTPProxy) + client, err := util.GetHTTPClient(config.Conf.HTTPProxy) if err != nil { return "", err } diff --git a/exploit/exploit.go b/exploit/exploit.go deleted file mode 100644 index abfb4fe9..00000000 --- a/exploit/exploit.go +++ /dev/null @@ -1,85 +0,0 @@ -// +build !scanner - -package exploit - -import ( - "encoding/json" - - "github.com/future-architect/vuls/config" - "github.com/future-architect/vuls/models" - "github.com/future-architect/vuls/util" - "github.com/vulsio/go-exploitdb/db" - exploitmodels "github.com/vulsio/go-exploitdb/models" -) - -// FillWithExploit fills exploit information that has in Exploit -func FillWithExploit(driver db.DB, r *models.ScanResult, cnf *config.ExploitConf) (nExploitCve int, err error) { - if cnf.IsFetchViaHTTP() { - var cveIDs []string - for cveID := range r.ScannedCves { - cveIDs = append(cveIDs, cveID) - } - prefix, _ := util.URLPathJoin(cnf.URL, "cves") - responses, err := getCvesViaHTTP(cveIDs, prefix) - if err != nil { - return 0, err - } - for _, res := range responses { - exps := []*exploitmodels.Exploit{} - if err := json.Unmarshal([]byte(res.json), &exps); err != nil { - return 0, err - } - exploits := ConvertToModels(exps) - v, ok := r.ScannedCves[res.request.cveID] - if ok { - v.Exploits = exploits - } - r.ScannedCves[res.request.cveID] = v - nExploitCve++ - } - } else { - if driver == nil { - return 0, nil - } - for cveID, vuln := range r.ScannedCves { - if cveID == "" { - continue - } - es := driver.GetExploitByCveID(cveID) - if len(es) == 0 { - continue - } - exploits := ConvertToModels(es) - vuln.Exploits = exploits - r.ScannedCves[cveID] = vuln - nExploitCve++ - } - } - return nExploitCve, nil -} - -// ConvertToModels converts gost model to vuls model -func ConvertToModels(es []*exploitmodels.Exploit) (exploits []models.Exploit) { - for _, e := range es { - var documentURL, shellURL *string - if e.OffensiveSecurity != nil { - os := e.OffensiveSecurity - if os.Document != nil { - documentURL = &os.Document.DocumentURL - } - if os.ShellCode != nil { - shellURL = &os.ShellCode.ShellCodeURL - } - } - exploit := models.Exploit{ - ExploitType: e.ExploitType, - ID: e.ExploitUniqueID, - URL: e.URL, - Description: e.Description, - DocumentURL: documentURL, - ShellCodeURL: shellURL, - } - exploits = append(exploits, exploit) - } - return exploits -} diff --git a/exploit/util.go b/exploit/util.go deleted file mode 100644 index 60c3970c..00000000 --- a/exploit/util.go +++ /dev/null @@ -1,116 +0,0 @@ -package exploit - -import ( - "net/http" - "time" - - "github.com/cenkalti/backoff" - "github.com/future-architect/vuls/logging" - "github.com/future-architect/vuls/util" - "github.com/parnurzeal/gorequest" - "golang.org/x/xerrors" -) - -type response struct { - request request - json string -} - -func getCvesViaHTTP(cveIDs []string, urlPrefix string) ( - responses []response, err error) { - nReq := len(cveIDs) - reqChan := make(chan request, nReq) - resChan := make(chan response, nReq) - errChan := make(chan error, nReq) - defer close(reqChan) - defer close(resChan) - defer close(errChan) - - go func() { - for _, cveID := range cveIDs { - reqChan <- request{ - cveID: cveID, - } - } - }() - - concurrency := 10 - tasks := util.GenWorkers(concurrency) - for i := 0; i < nReq; i++ { - tasks <- func() { - select { - case req := <-reqChan: - url, err := util.URLPathJoin( - urlPrefix, - req.cveID, - ) - if err != nil { - errChan <- err - } else { - logging.Log.Debugf("HTTP Request to %s", url) - httpGet(url, req, resChan, errChan) - } - } - } - } - - timeout := time.After(2 * 60 * time.Second) - var errs []error - for i := 0; i < nReq; i++ { - select { - case res := <-resChan: - responses = append(responses, res) - case err := <-errChan: - errs = append(errs, err) - case <-timeout: - return nil, xerrors.New("Timeout Fetching OVAL") - } - } - if len(errs) != 0 { - return nil, xerrors.Errorf("Failed to fetch OVAL. err: %w", errs) - } - return -} - -type request struct { - osMajorVersion string - packName string - isSrcPack bool - cveID string -} - -func httpGet(url string, req request, resChan chan<- response, errChan chan<- error) { - var body string - var errs []error - var resp *http.Response - count, retryMax := 0, 3 - f := func() (err error) { - // resp, body, errs = gorequest.New().SetDebug(config.Conf.Debug).Get(url).End() - resp, body, errs = gorequest.New().Timeout(10 * time.Second).Get(url).End() - if 0 < len(errs) || resp == nil || resp.StatusCode != 200 { - count++ - if count == retryMax { - return nil - } - return xerrors.Errorf("HTTP GET error, url: %s, resp: %v, err: %+v", url, resp, errs) - } - return nil - } - notify := func(err error, t time.Duration) { - logging.Log.Warnf("Failed to HTTP GET. retrying in %s seconds. err: %+v", t, err) - } - err := backoff.RetryNotify(f, backoff.NewExponentialBackOff(), notify) - if err != nil { - errChan <- xerrors.Errorf("HTTP Error %w", err) - return - } - if count == retryMax { - errChan <- xerrors.New("Retry count exceeded") - return - } - - resChan <- response{ - request: req, - json: body, - } -} diff --git a/go.mod b/go.mod index 1e6418a2..b27e5822 100644 --- a/go.mod +++ b/go.mod @@ -8,7 +8,7 @@ require ( github.com/aquasecurity/fanal v0.0.0-20210119051230-28c249da7cfd github.com/aquasecurity/trivy v0.16.0 github.com/aquasecurity/trivy-db v0.0.0-20210121143430-2a5c54036a86 - github.com/asaskevich/govalidator v0.0.0-20200907205600-7a23bdc65eef + github.com/asaskevich/govalidator v0.0.0-20210307081110-f21760c49a8d github.com/aws/aws-sdk-go v1.36.31 github.com/boltdb/bolt v1.3.1 github.com/cenkalti/backoff v2.2.1+incompatible @@ -26,27 +26,35 @@ require ( github.com/knqyf263/go-cpe v0.0.0-20201213041631-54f6ab28673f github.com/knqyf263/go-deb-version v0.0.0-20190517075300-09fca494f03d github.com/knqyf263/go-rpm-version v0.0.0-20170716094938-74609b86c936 - github.com/knqyf263/gost v0.1.8 - github.com/kotakanbe/go-cve-dictionary v0.5.9 + github.com/knqyf263/gost v0.1.10 + github.com/kotakanbe/go-cve-dictionary v0.5.10 github.com/kotakanbe/go-pingscanner v0.1.0 - github.com/kotakanbe/goval-dictionary v0.3.2 + github.com/kotakanbe/goval-dictionary v0.3.3 github.com/kotakanbe/logrus-prefixed-formatter v0.0.0-20180123152602-928f7356cb96 + github.com/lib/pq v1.10.0 // indirect + github.com/magiconair/properties v1.8.4 // indirect github.com/mgutz/ansi v0.0.0-20200706080929-d51e80ef957d // indirect github.com/mitchellh/go-homedir v1.1.0 + github.com/mitchellh/mapstructure v1.4.1 // indirect github.com/nlopes/slack v0.6.0 github.com/nsf/termbox-go v0.0.0-20200418040025-38ba6e5628f1 // indirect - github.com/olekukonko/tablewriter v0.0.4 + github.com/olekukonko/tablewriter v0.0.5 github.com/parnurzeal/gorequest v0.2.16 + github.com/pelletier/go-toml v1.8.1 // indirect github.com/rifflock/lfshook v0.0.0-20180920164130-b9218ef580f5 github.com/sirupsen/logrus v1.7.0 - github.com/spf13/afero v1.5.1 - github.com/spf13/cobra v1.1.1 - github.com/takuzoo3868/go-msfdb v0.1.4 - github.com/vulsio/go-exploitdb v0.1.6 - golang.org/x/crypto v0.0.0-20210220033148-5ea612d1eb83 // indirect - golang.org/x/net v0.0.0-20210226172049-e18ecbb05110 // indirect + github.com/spf13/afero v1.6.0 + github.com/spf13/cast v1.3.1 // indirect + github.com/spf13/cobra v1.1.3 + github.com/spf13/jwalterweatherman v1.1.0 // indirect + github.com/takuzoo3868/go-msfdb v0.1.5 + github.com/vulsio/go-exploitdb v0.1.7 + golang.org/x/crypto v0.0.0-20210322153248-0c34fe9e7dc2 // indirect + golang.org/x/lint v0.0.0-20201208152925-83fdc39ff7b5 // indirect + golang.org/x/net v0.0.0-20210323141857-08027d57d8cf // indirect golang.org/x/oauth2 v0.0.0-20210125201302-af13f521f196 - golang.org/x/sys v0.0.0-20210301091718-77cc2087c03b // indirect + golang.org/x/sys v0.0.0-20210320140829-1e4c9ba3b0c4 // indirect golang.org/x/xerrors v0.0.0-20200804184101-5ec99f83aff1 + gopkg.in/ini.v1 v1.62.0 // indirect k8s.io/utils v0.0.0-20210111153108-fddb29f9d009 ) diff --git a/go.sum b/go.sum index be252da8..7c20c01f 100644 --- a/go.sum +++ b/go.sum @@ -1,6 +1,5 @@ cloud.google.com/go v0.26.0/go.mod h1:aQUYkXzVsufM+DwF1aE+0xfcU+56JwCaLick0ClmMTw= cloud.google.com/go v0.34.0/go.mod h1:aQUYkXzVsufM+DwF1aE+0xfcU+56JwCaLick0ClmMTw= -cloud.google.com/go v0.37.4/go.mod h1:NHPJ89PdicEuT9hdPXMROBD91xc5uRDxsMtSB16k7hw= cloud.google.com/go v0.38.0/go.mod h1:990N+gfupTy94rShfmMCWGDn0LpTmnzTp2qbd1dvSRU= cloud.google.com/go v0.44.1/go.mod h1:iSa0KzasP4Uvy3f1mN/7PiObzGgflwredwwASm/v6AU= cloud.google.com/go v0.44.2/go.mod h1:60680Gw3Yr4ikxnPRS/oxxkBccT6SA1yMk63TGekxKY= @@ -70,7 +69,6 @@ github.com/Microsoft/go-winio v0.4.14/go.mod h1:qXqCSQ3Xa7+6tgxaGTIe4Kpcdsi+P8jB github.com/Microsoft/go-winio v0.4.15-0.20190919025122-fc70bd9a86b5/go.mod h1:tTuCMEN+UleMWgg9dVx4Hu52b1bJo+59jBh3ajtinzw= github.com/Microsoft/hcsshim v0.8.6/go.mod h1:Op3hHsoHPAvb6lceZHDtd9OkTew38wNoXnJs8iY7rUg= github.com/NYTimes/gziphandler v0.0.0-20170623195520-56545f4a5d46/go.mod h1:3wb06e3pkSAbeQ52E9H9iFoQsEEwGN64994WTCIhntQ= -github.com/Nvveen/Gotty v0.0.0-20120604004816-cd527374f1e5/go.mod h1:lmUJ/7eu/Q8D7ML55dXQrVaamCz2vxCfdQBasLZfHKk= github.com/OneOfOne/xxhash v1.2.2/go.mod h1:HSdplMjZKSmBqAxg5vPj2TmRDmfkzw+cTzAElWljhcU= github.com/OneOfOne/xxhash v1.2.7/go.mod h1:eZbhyaAYD41SGSSsnmcpxVoRiQ/MPUTjUdIIOT9Um7Q= github.com/PuerkitoBio/goquery v1.5.1/go.mod h1:GsLWisAFVj4WgDibEWF4pvYnkVQBpKBKeU+7zCJoLcc= @@ -79,8 +77,6 @@ github.com/PuerkitoBio/purell v1.0.0/go.mod h1:c11w/QuzBsJSee3cPx9rAFu61PvFxuPbt github.com/PuerkitoBio/purell v1.1.1/go.mod h1:c11w/QuzBsJSee3cPx9rAFu61PvFxuPbtSwDGJws/X0= github.com/PuerkitoBio/urlesc v0.0.0-20160726150825-5bd2802263f2/go.mod h1:uGdkoq3SwY9Y+13GIhn11/XLaGBb4BfwItxLd5jeuXE= github.com/PuerkitoBio/urlesc v0.0.0-20170810143723-de5bf2ad4578/go.mod h1:uGdkoq3SwY9Y+13GIhn11/XLaGBb4BfwItxLd5jeuXE= -github.com/Shopify/sarama v1.19.0/go.mod h1:FVkBWblsNy7DGZRfXLU0O9RCGt5g3g3yEuWXgklEdEo= -github.com/Shopify/toxiproxy v2.1.4+incompatible/go.mod h1:OXgGpZ6Cli1/URJOF1DMxUHB2q5Ap20/P/eIdh4G0pI= github.com/VividCortex/ewma v1.1.1 h1:MnEK4VOv6n0RSY4vtRe3h11qjxL3+t0B8yOL8iMXdcM= github.com/VividCortex/ewma v1.1.1/go.mod h1:2Tkkvm3sRDVXaiyucHiACn4cqf7DpdyLvmxzcbUokwA= github.com/alcortesm/tgz v0.0.0-20161220082320-9c5fe88206d7/go.mod h1:6zEj6s6u/ghQa61ZWa/C2Aw3RkjiTBOix7dkqa1VLIs= @@ -91,13 +87,10 @@ github.com/alicebob/miniredis/v2 v2.14.1/go.mod h1:uS970Sw5Gs9/iK3yBg0l9Uj9s25wX github.com/andybalholm/cascadia v1.1.0/go.mod h1:GsXiBklL0woXo1j/WYWtSYYC4ouU9PqHO0sqidkEA4Y= github.com/andybalholm/cascadia v1.2.0/go.mod h1:YCyR8vOZT9aZ1CHEd8ap0gMVm2aFgxBp0T0eFw1RUQY= github.com/anmitsu/go-shlex v0.0.0-20161002113705-648efa622239/go.mod h1:2FmKhYUyUczH0OGQWaF5ceTx0UBShxjsH6f8oGKYe2c= -github.com/apache/thrift v0.12.0/go.mod h1:cp2SuWMxlEZw2r+iP2GNCdIi4C1qmUzdZFSVb+bacwQ= github.com/aquasecurity/bolt-fixtures v0.0.0-20200903104109-d34e7f983986 h1:2a30xLN2sUZcMXl50hg+PJCIDdJgIvIbVcKqLJ/ZrtM= github.com/aquasecurity/bolt-fixtures v0.0.0-20200903104109-d34e7f983986/go.mod h1:NT+jyeCzXk6vXR5MTkdn4z64TgGfE5HMLC8qfj5unl8= -github.com/aquasecurity/fanal v0.0.0-20190819081512-f04452b627c6/go.mod h1:enEz4FFetw4XAbkffaYgyCVq1556R9Ry+noqT4rq9BE= github.com/aquasecurity/fanal v0.0.0-20210119051230-28c249da7cfd h1:meqa2AA+7K1r/nfNB19K2AP/v8+nemuWeQoTSqZ2R9s= github.com/aquasecurity/fanal v0.0.0-20210119051230-28c249da7cfd/go.mod h1:kur6SaohYhsjQLzijAdtn+X8rkTtwxawE51WyVCXLKk= -github.com/aquasecurity/go-dep-parser v0.0.0-20190819075924-ea223f0ef24b/go.mod h1:BpNTD9vHfrejKsED9rx04ldM1WIbeyXGYxUrqTVwxVQ= github.com/aquasecurity/go-dep-parser v0.0.0-20201028043324-889d4a92b8e0 h1:cLH3SebzhbJ+jU1GIad8A1N8p7m7OjHhtY6JePISiVc= github.com/aquasecurity/go-dep-parser v0.0.0-20201028043324-889d4a92b8e0/go.mod h1:X42mTIRhgPalSm81Om2kD+3ydeunbC8TZtZj1bvgRo8= github.com/aquasecurity/go-gem-version v0.0.0-20201115065557-8eed6fe000ce h1:QgBRgJvtEOBtUXilDb1MLi1p1MWoyFDXAu5DEUl5nwM= @@ -110,7 +103,6 @@ github.com/aquasecurity/go-version v0.0.0-20201107203531-5e48ac5d022a/go.mod h1: github.com/aquasecurity/go-version v0.0.0-20210121072130-637058cfe492 h1:rcEG5HI490FF0a7zuvxOxen52ddygCfNVjP0XOCMl+M= github.com/aquasecurity/go-version v0.0.0-20210121072130-637058cfe492/go.mod h1:9Beu8XsUNNfzml7WBf3QmyPToP1wm1Gj/Vc5UJKqTzU= github.com/aquasecurity/testdocker v0.0.0-20210106133225-0b17fe083674/go.mod h1:psfu0MVaiTDLpNxCoNsTeILSKY2EICBwv345f3M+Ffs= -github.com/aquasecurity/trivy v0.1.6/go.mod h1:5hobyhxLzDtxruHzPxpND2PUKOssvGUdE9BocpJUwo4= github.com/aquasecurity/trivy v0.16.0 h1:lyzqYGQ2TYxcjFwKBw6aU3PwHLvc0+6VTech+0/LnqQ= github.com/aquasecurity/trivy v0.16.0/go.mod h1:SLXDW/zKJWE7XhMEGGfkFGABNvz6b8BAbNjuXztJlj0= github.com/aquasecurity/trivy-db v0.0.0-20210105160501-c5bf4e153277/go.mod h1:N7CWA/vjVw78GWAdCJGhFQVqNGEA4e47a6eIWm+C/Bc= @@ -124,10 +116,10 @@ github.com/armon/go-metrics v0.0.0-20180917152333-f0300d1749da/go.mod h1:Q73ZrmV github.com/armon/go-radix v0.0.0-20180808171621-7fddfc383310/go.mod h1:ufUuZ+zHj4x4TnLV4JWEpy2hxWSpsRywHrMgIH9cCH8= github.com/armon/go-socks5 v0.0.0-20160902184237-e75332964ef5/go.mod h1:wHh0iHkYZB8zMSxRWpUBQtwG5a7fFgvEO+odwuTv2gs= github.com/asaskevich/govalidator v0.0.0-20190424111038-f61b66f89f4a/go.mod h1:lB+ZfQJz7igIIfQNfa7Ml4HSf2uFQQRzpGGRXenZAgY= -github.com/asaskevich/govalidator v0.0.0-20200907205600-7a23bdc65eef h1:46PFijGLmAjMPwCCCo7Jf0W6f9slllCkkv7vyc1yOSg= github.com/asaskevich/govalidator v0.0.0-20200907205600-7a23bdc65eef/go.mod h1:WaHUgvxTVq04UNunO+XhnAqY/wQc+bxr74GqbsZ/Jqw= +github.com/asaskevich/govalidator v0.0.0-20210307081110-f21760c49a8d h1:Byv0BzEl3/e6D5CLfI0j/7hiIEtvGVFPCZ7Ei2oq8iQ= +github.com/asaskevich/govalidator v0.0.0-20210307081110-f21760c49a8d/go.mod h1:WaHUgvxTVq04UNunO+XhnAqY/wQc+bxr74GqbsZ/Jqw= github.com/aws/aws-sdk-go v1.16.26/go.mod h1:KmX6BPdI08NWTb3/sm4ZGu5ShLoqVDhKgpiN924inxo= -github.com/aws/aws-sdk-go v1.19.11/go.mod h1:KmX6BPdI08NWTb3/sm4ZGu5ShLoqVDhKgpiN924inxo= github.com/aws/aws-sdk-go v1.27.1/go.mod h1:KmX6BPdI08NWTb3/sm4ZGu5ShLoqVDhKgpiN924inxo= github.com/aws/aws-sdk-go v1.36.31 h1:BMVngapDGAfLBVEVzaSIw3fmJdWx7jOvhLCXgRXbXQI= github.com/aws/aws-sdk-go v1.36.31/go.mod h1:hcU610XS61/+aQV88ixoOzUoG7v3b31pl2zKMmprdro= @@ -138,7 +130,6 @@ github.com/bketelsen/crypt v0.0.3-0.20200106085610-5cbc8cc4026c/go.mod h1:MKsuJm github.com/blang/semver v3.5.0+incompatible/go.mod h1:kRBLl5iJ+tD4TcOOxsy/0fnwebNt5EWlYSAyrTnjyyk= github.com/boltdb/bolt v1.3.1 h1:JQmyP4ZBrce+ZQu0dY660FMfatumYDLun9hBCUVIkF4= github.com/boltdb/bolt v1.3.1/go.mod h1:clJnj/oiGkjum5o1McbSZDSLxVThjynRyGBgiAx27Ps= -github.com/briandowns/spinner v0.0.0-20190319032542-ac46072a5a91/go.mod h1:hw/JEQBIE+c/BLI4aKM8UU8v+ZqrD3h7HC27kKt8JQU= github.com/briandowns/spinner v1.12.0 h1:72O0PzqGJb6G3KgrcIOtL/JAGGZ5ptOMCn9cUHmqsmw= github.com/briandowns/spinner v1.12.0/go.mod h1:QOuQk7x+EaDASo80FEXwlwiA+j/PPIcX3FScO+3/ZPQ= github.com/caarlos0/env/v6 v6.0.0 h1:NZt6FAoB8ieKO5lEwRdwCzYxWFx7ZYF2R7UcoyaWtyc= @@ -151,8 +142,9 @@ github.com/cespare/xxhash v1.1.0/go.mod h1:XrSqR1VqqWfGrhpAt58auRo0WTKS1nRRg3ghf github.com/cespare/xxhash/v2 v2.1.1 h1:6MnRN8NT7+YBpUIWxHtefFZOKTAPgGjpQSxqLNn0+qY= github.com/cespare/xxhash/v2 v2.1.1/go.mod h1:VGX0DQ3Q6kWi7AoAeZDth3/j3BFtOZR5XLFGgcrjCOs= github.com/cheggaaa/pb/v3 v3.0.3/go.mod h1:Pp35CDuiEpHa/ZLGCtBbM6CBwMstv1bJlG884V+73Yc= -github.com/cheggaaa/pb/v3 v3.0.5 h1:lmZOti7CraK9RSjzExsY53+WWfub9Qv13B5m4ptEoPE= github.com/cheggaaa/pb/v3 v3.0.5/go.mod h1:X1L61/+36nz9bjIsrDU52qHKOQukUQe2Ge+YvGuquCw= +github.com/cheggaaa/pb/v3 v3.0.7 h1:58wduqwoqpsklsCZ7NZ5dsrCqPWv2t0+p85FcBds6XY= +github.com/cheggaaa/pb/v3 v3.0.7/go.mod h1:X1L61/+36nz9bjIsrDU52qHKOQukUQe2Ge+YvGuquCw= github.com/chzyer/logex v1.1.10/go.mod h1:+Ywpsq7O8HXn0nuIou7OrIPyXbp3wmkHB+jjWRnGsAI= github.com/chzyer/readline v0.0.0-20180603132655-2972be24d48e/go.mod h1:nSuG5e5PlCu98SY8svDHJxuZscDgtXS6KTTbou5AhLI= github.com/chzyer/test v0.0.0-20180213035817-a1ea475d72b1/go.mod h1:Q3SI9o4m/ZMnBNeIyt5eFwwo7qiLfzFZmjNmxjkiQlU= @@ -161,10 +153,8 @@ github.com/cncf/udpa/go v0.0.0-20191209042840-269d4d468f6f/go.mod h1:M8M6+tZqaGX github.com/cockroachdb/datadriven v0.0.0-20190809214429-80d97fb3cbaa/go.mod h1:zn76sxSg3SzpJ0PPJaLDCu+Bu0Lg3sKTORVIj19EIF8= github.com/containerd/containerd v1.3.0/go.mod h1:bC6axHOhabU15QhwfG7w5PipXdVtMXFTttgp+kVtyUA= github.com/containerd/containerd v1.3.3/go.mod h1:bC6axHOhabU15QhwfG7w5PipXdVtMXFTttgp+kVtyUA= -github.com/containerd/continuity v0.0.0-20180921161001-7f53d412b9eb/go.mod h1:GL3xCUCBDV3CZiTSEKksMWbLE66hEyuu9qyDOOqM47Y= github.com/containerd/continuity v0.0.0-20190426062206-aaeac12a7ffc/go.mod h1:GL3xCUCBDV3CZiTSEKksMWbLE66hEyuu9qyDOOqM47Y= github.com/coreos/bbolt v1.3.2/go.mod h1:iRUV2dpdMOn7Bo10OQBFzIJO9kkE559Wcmn+qkEiiKk= -github.com/coreos/clair v0.0.0-20180919182544-44ae4bc9590a/go.mod h1:uXhHPWAoRqw0jJc2f8RrPCwRhIo9otQ8OEWUFtpCiwA= github.com/coreos/etcd v3.3.10+incompatible/go.mod h1:uF7uidLiAD3TWHmW31ZFd/JWoc32PjwdhPthX9715RE= github.com/coreos/etcd v3.3.13+incompatible/go.mod h1:uF7uidLiAD3TWHmW31ZFd/JWoc32PjwdhPthX9715RE= github.com/coreos/go-etcd v2.0.0+incompatible/go.mod h1:Jez6KQU2B/sWsbdaef3ED8NzMklzPG4d5KIOhIy30Tk= @@ -188,7 +178,6 @@ github.com/davecgh/go-spew v1.1.0/go.mod h1:J7Y8YcW2NihsgmVo/mv3lAwl/skON4iLHjSs github.com/davecgh/go-spew v1.1.1 h1:vj9j/u1bqnvCEfJOwUhtlOARqs3+rkHYY13jYWTU97c= github.com/davecgh/go-spew v1.1.1/go.mod h1:J7Y8YcW2NihsgmVo/mv3lAwl/skON4iLHjSsI+c5H38= github.com/deckarep/golang-set v1.7.1/go.mod h1:93vsz/8Wt4joVM7c2AVqh+YRMiUSc14yDtF28KmMOgQ= -github.com/denisenkom/go-mssqldb v0.0.0-20190515213511-eb9f6a1743f3/go.mod h1:zAg7JM8CkOJ43xKXIj7eRO9kmWm/TW578qo+oDO6tuM= github.com/denisenkom/go-mssqldb v0.0.0-20191124224453-732737034ffd h1:83Wprp6ROGeiHFAP8WJdI2RoxALQYgdllERc3N5N2DM= github.com/denisenkom/go-mssqldb v0.0.0-20191124224453-732737034ffd/go.mod h1:xbL0rPBG9cCiLr28tMa8zpbdarY27NDyej4t/EjAShU= github.com/dgrijalva/jwt-go v3.2.0+incompatible h1:7qlOGliEKZXTDg6OTjfoBKDXWrumCAMpl/TFQ4/5kLM= @@ -198,33 +187,21 @@ github.com/dgryski/go-rendezvous v0.0.0-20200823014737-9f7001d12a5f/go.mod h1:cu github.com/dgryski/go-sip13 v0.0.0-20181026042036-e10d5fee7954/go.mod h1:vAd38F8PWV+bWy6jNmig1y/TA+kYO4g3RSRF0IAv0no= github.com/dnaeon/go-vcr v1.0.1 h1:r8L/HqC0Hje5AXMu1ooW8oyQyOFv4GxqpL0nRP7SLLY= github.com/dnaeon/go-vcr v1.0.1/go.mod h1:aBB1+wY4s93YsC3HHjMBMrwTj2R9FHDzUr9KyGc8n1E= -github.com/docker/cli v0.0.0-20180920165730-54c19e67f69c/go.mod h1:JLrzqnKDaYBop7H2jaqPtU4hHvMKP+vjCwu2uszcLI8= github.com/docker/cli v0.0.0-20191017083524-a8ff7f821017/go.mod h1:JLrzqnKDaYBop7H2jaqPtU4hHvMKP+vjCwu2uszcLI8= -github.com/docker/distribution v0.0.0-20180920194744-16128bbac47f/go.mod h1:J2gT2udsDAN96Uj4KfcMRqY0/ypR+oyYUYmja8H+y+w= github.com/docker/distribution v2.7.1-0.20190205005809-0d3efadf0154+incompatible/go.mod h1:J2gT2udsDAN96Uj4KfcMRqY0/ypR+oyYUYmja8H+y+w= github.com/docker/distribution v2.7.1+incompatible/go.mod h1:J2gT2udsDAN96Uj4KfcMRqY0/ypR+oyYUYmja8H+y+w= -github.com/docker/docker v0.0.0-20180924202107-a9c061deec0f/go.mod h1:eEKB0N0r5NX/I1kEveEz05bcu8tLC/8azJZsviup8Sk= github.com/docker/docker v0.7.3-0.20190327010347-be7ac8be2ae0/go.mod h1:eEKB0N0r5NX/I1kEveEz05bcu8tLC/8azJZsviup8Sk= github.com/docker/docker v0.7.3-0.20190506211059-b20a14b54661/go.mod h1:eEKB0N0r5NX/I1kEveEz05bcu8tLC/8azJZsviup8Sk= github.com/docker/docker v1.4.2-0.20190924003213-a8608b5b67c7/go.mod h1:eEKB0N0r5NX/I1kEveEz05bcu8tLC/8azJZsviup8Sk= -github.com/docker/docker-ce v0.0.0-20180924210327-f53bd8bb8e43/go.mod h1:l1FUGRYBvbjnZ8MS6A2xOji4aZFlY/Qmgz7p4oXH7ac= -github.com/docker/docker-credential-helpers v0.6.1/go.mod h1:WRaJzqw3CTB9bk10avuGsjVBZsD05qeibJ1/TYlvc0Y= github.com/docker/docker-credential-helpers v0.6.3/go.mod h1:WRaJzqw3CTB9bk10avuGsjVBZsD05qeibJ1/TYlvc0Y= -github.com/docker/go-connections v0.0.0-20180821093606-97c2040d34df/go.mod h1:Gbd7IOopHjR8Iph03tsViu4nIes5XhDvyHbTtUxmeec= github.com/docker/go-connections v0.4.0/go.mod h1:Gbd7IOopHjR8Iph03tsViu4nIes5XhDvyHbTtUxmeec= -github.com/docker/go-metrics v0.0.0-20180209012529-399ea8c73916/go.mod h1:/u0gXw0Gay3ceNrsHubL3BtdOL2fHf93USgMTe0W5dI= github.com/docker/go-units v0.3.3/go.mod h1:fgPhTUdO+D/Jk86RDLlptpiXQzgHJF7gydDDbaIK4Dk= github.com/docker/go-units v0.4.0/go.mod h1:fgPhTUdO+D/Jk86RDLlptpiXQzgHJF7gydDDbaIK4Dk= -github.com/docker/libtrust v0.0.0-20160708172513-aabc10ec26b7/go.mod h1:cyGadeNEkKy96OOhEzfZl+yxihPEzKnqJwvfuSUqbZE= github.com/docker/spdystream v0.0.0-20160310174837-449fdfce4d96/go.mod h1:Qh8CwZgvJUkLughtfhJv5dyTYa91l1fOUCrgjqmcifM= github.com/dustin/go-humanize v0.0.0-20171111073723-bb3d318650d4/go.mod h1:HtrtbFcZ19U5GC7JDqmcUSB87Iq5E25KnS6fMYU6eOk= github.com/dustin/go-humanize v1.0.0/go.mod h1:HtrtbFcZ19U5GC7JDqmcUSB87Iq5E25KnS6fMYU6eOk= -github.com/eapache/go-resiliency v1.1.0/go.mod h1:kFI+JgMyC7bLPUVY133qvEBtVayf5mFgVsvEsIPBvNs= -github.com/eapache/go-xerial-snappy v0.0.0-20180814174437-776d5712da21/go.mod h1:+020luEh2TKB4/GOp8oxxtq0Daoen/Cii55CzbTV6DU= -github.com/eapache/queue v1.1.0/go.mod h1:6eCeP0CKFpHLu8blIFXhExK/dRa7WDZfr6jVFPTqq+I= github.com/elazarl/goproxy v0.0.0-20170405201442-c4fc26588b6e/go.mod h1:/Zj4wYkgs4iZTTu3o/KG3Itv/qCCa8VVMlb3i9OVuzc= github.com/elazarl/goproxy v0.0.0-20190421051319-9d40249d3c2f/go.mod h1:/Zj4wYkgs4iZTTu3o/KG3Itv/qCCa8VVMlb3i9OVuzc= -github.com/elazarl/goproxy v0.0.0-20190711103511-473e67f1d7d2/go.mod h1:/Zj4wYkgs4iZTTu3o/KG3Itv/qCCa8VVMlb3i9OVuzc= github.com/elazarl/goproxy v0.0.0-20200809112317-0581fc3aee2d/go.mod h1:Ro8st/ElPeALwNFlcTpWmkr6IoMFfkjXAvTHpevnDsM= github.com/elazarl/goproxy v0.0.0-20210110162100-a92cc753f88e h1:/cwV7t2xezilMljIftb7WlFtzGANRCnoOhPjtl2ifcs= github.com/elazarl/goproxy v0.0.0-20210110162100-a92cc753f88e/go.mod h1:Ro8st/ElPeALwNFlcTpWmkr6IoMFfkjXAvTHpevnDsM= @@ -237,7 +214,6 @@ github.com/emersion/go-smtp v0.14.0 h1:RYW203p+EcPjL8Z/ZpT9lZ6iOc8MG1MQzEx1UKEkX github.com/emersion/go-smtp v0.14.0/go.mod h1:qm27SGYgoIPRot6ubfQ/GpiPy/g3PaZAVRxiO/sDUgQ= github.com/emicklei/go-restful v0.0.0-20170410110728-ff4f55a20633/go.mod h1:otzb+WCGbkyDHkqmQmT5YD2WR4BBwUdeQoFo8l/7tVs= github.com/emicklei/go-restful v2.9.5+incompatible/go.mod h1:otzb+WCGbkyDHkqmQmT5YD2WR4BBwUdeQoFo8l/7tVs= -github.com/emirpasic/gods v1.9.0/go.mod h1:YfzfFFoVP/catgzJb4IKIqXjX78Ha8FMSDh3ymbK86o= github.com/emirpasic/gods v1.12.0/go.mod h1:YfzfFFoVP/catgzJb4IKIqXjX78Ha8FMSDh3ymbK86o= github.com/envoyproxy/go-control-plane v0.9.0/go.mod h1:YTl/9mNaCwkRvm6d1a2C3ymFceY/DCBVvsKhRF0iEA4= github.com/envoyproxy/go-control-plane v0.9.1-0.20191026205805-5f8ba28d4473/go.mod h1:YTl/9mNaCwkRvm6d1a2C3ymFceY/DCBVvsKhRF0iEA4= @@ -245,26 +221,20 @@ github.com/envoyproxy/go-control-plane v0.9.4/go.mod h1:6rpuAdCZL397s3pYoYcLgu1m github.com/envoyproxy/protoc-gen-validate v0.1.0/go.mod h1:iSmxcyjqTsJpI2R4NaDN7+kN2VEUnK/pcBlmesArF7c= github.com/erikstmartin/go-testdb v0.0.0-20160219214506-8d10e4a1bae5 h1:Yzb9+7DPaBjB8zlTR87/ElzFsnQfuHnVUVqpZZIcV5Y= github.com/erikstmartin/go-testdb v0.0.0-20160219214506-8d10e4a1bae5/go.mod h1:a2zkGnVExMxdzMo3M0Hi/3sEU+cWnZpSni0O6/Yb/P0= -github.com/etcd-io/bbolt v1.3.2/go.mod h1:ZF2nL25h33cCyBtcyWeZ2/I3HQOfTP+0PIEvHjkjCrw= github.com/evanphx/json-patch v4.2.0+incompatible/go.mod h1:50XU6AFN0ol/bzJsmQLiYLvXMP4fmwYFNcr97nuDLSk= github.com/fatih/color v1.7.0/go.mod h1:Zm6kSWBoL9eyXnKyktHP6abPY2pDugNf5KwzbycvMj4= github.com/fatih/color v1.9.0/go.mod h1:eQcE1qtQxscV5RaZvpXrrb8Drkc3/DdQ+uUYCNjL+zU= github.com/fatih/color v1.10.0 h1:s36xzo75JdqLaaWoiEHk767eHiwo0598uUxyfiPkDsg= github.com/fatih/color v1.10.0/go.mod h1:ELkj/draVOlAH/xkhN6mQ50Qd0MPOk5AAr3maGEBuJM= -github.com/fernet/fernet-go v0.0.0-20180830025343-9eac43b88a5e/go.mod h1:2H9hjfbpSMHwY503FclkV/lZTBh2YlOmLLSda12uL8c= github.com/flynn/go-shlex v0.0.0-20150515145356-3f9db97f8568/go.mod h1:xEzjJPgXI435gkrCt3MPfRiAkVrwSbHsst4LCFVfpJc= github.com/fsnotify/fsnotify v1.4.7/go.mod h1:jwhsz4b93w/PPRr/qN1Yymfu8t87LnFCMoQvtojpjFo= github.com/fsnotify/fsnotify v1.4.9 h1:hsms1Qyu0jgnwNXIxa+/V/PDsU6CfLf6CNO8H7IWoS4= github.com/fsnotify/fsnotify v1.4.9/go.mod h1:znqG4EE+3YCdAaPaxE2ZRY/06pZUdp0tY4IgpuI1SZQ= -github.com/genuinetools/pkg v0.0.0-20180910213200-1c141f661797/go.mod h1:XTcrCYlXPxnxL2UpnwuRn7tcaTn9HAhxFoFJucootk8= -github.com/genuinetools/reg v0.16.0/go.mod h1:12Fe9EIvK3dG/qWhNk5e9O96I8SGmCKLsJ8GsXUbk+Y= github.com/ghodss/yaml v0.0.0-20150909031657-73d445a93680/go.mod h1:4dBDuWmgqj2HViK6kFavaiC9ZROes6MMH2rRYeMEF04= github.com/ghodss/yaml v0.0.0-20180820084758-c7ce16629ff4/go.mod h1:4dBDuWmgqj2HViK6kFavaiC9ZROes6MMH2rRYeMEF04= github.com/ghodss/yaml v1.0.0/go.mod h1:4dBDuWmgqj2HViK6kFavaiC9ZROes6MMH2rRYeMEF04= github.com/gin-contrib/sse v0.1.0/go.mod h1:RHrZQHXnP2xjPF+u1gW/2HnVO7nvIa9PG3Gm+fLHvGI= github.com/gin-gonic/gin v1.5.0/go.mod h1:Nd6IXA8m5kNZdNEHMBd93KT+mdY3+bewLgRvmCsR2Do= -github.com/gliderlabs/ssh v0.1.1/go.mod h1:U7qILu1NlMHj9FlMhZLlkCdDnU1DBEAqr0aevW3Awn0= -github.com/gliderlabs/ssh v0.1.3/go.mod h1:U7qILu1NlMHj9FlMhZLlkCdDnU1DBEAqr0aevW3Awn0= github.com/gliderlabs/ssh v0.2.2/go.mod h1:U7qILu1NlMHj9FlMhZLlkCdDnU1DBEAqr0aevW3Awn0= github.com/go-git/gcfg v1.5.0/go.mod h1:5m20vg6GwYabIxaOonVkTdrILxQMpEShl1xiMF4ua+E= github.com/go-git/go-billy/v5 v5.0.0/go.mod h1:pmpqyWchKfYfrkb/UVH4otLvyi/5gJlGI4Hb3ZqZ3W0= @@ -299,8 +269,9 @@ github.com/go-redis/redis v6.15.9+incompatible h1:K0pv1D7EQUjfyoMql+r/jZqCLizCGK github.com/go-redis/redis v6.15.9+incompatible/go.mod h1:NAIEuMOZ/fxfXJIrKDQDz8wamY7mA7PouImQ2Jvg6kA= github.com/go-redis/redis/v8 v8.4.0/go.mod h1:A1tbYoHSa1fXwN+//ljcCYYJeLmVrwL9hbQN45Jdy0M= github.com/go-redis/redis/v8 v8.4.10/go.mod h1:d5yY/TlkQyYBSBHnXUmnf1OrHbyQere5JV4dLKwvXmo= -github.com/go-redis/redis/v8 v8.4.11 h1:t2lToev01VTrqYQcv+QFbxtGgcf64K+VUMgf9Ap6A/E= github.com/go-redis/redis/v8 v8.4.11/go.mod h1:d5yY/TlkQyYBSBHnXUmnf1OrHbyQere5JV4dLKwvXmo= +github.com/go-redis/redis/v8 v8.8.0 h1:fDZP58UN/1RD3DjtTXP/fFZ04TFohSYhjZDkcDe2dnw= +github.com/go-redis/redis/v8 v8.8.0/go.mod h1:F7resOH5Kdug49Otu24RjHWwgK7u9AmtqWMnCV1iP5Y= github.com/go-restruct/restruct v0.0.0-20191227155143-5734170a48a1/go.mod h1:KqrpKpn4M8OLznErihXTGLlsXFGeLxHUrLRRI/1YjGk= github.com/go-sql-driver/mysql v1.4.1/go.mod h1:zAC/RDZ24gD3HViQzih4MyKcchzm+sOG5ZlKdlhCg5w= github.com/go-sql-driver/mysql v1.5.0 h1:ozyZYNQW3x3HtqT1jira07DN2PArx2v7/mN66gGcHOs= @@ -326,7 +297,6 @@ github.com/golang/groupcache v0.0.0-20190129154638-5b532d6fd5ef/go.mod h1:cIg4er github.com/golang/groupcache v0.0.0-20190702054246-869f871628b6/go.mod h1:cIg4eruTrX1D+g88fzRXU5OdNfaM+9IcxsU14FzY7Hc= github.com/golang/groupcache v0.0.0-20191227052852-215e87163ea7/go.mod h1:cIg4eruTrX1D+g88fzRXU5OdNfaM+9IcxsU14FzY7Hc= github.com/golang/groupcache v0.0.0-20200121045136-8c9f03a8e57e/go.mod h1:cIg4eruTrX1D+g88fzRXU5OdNfaM+9IcxsU14FzY7Hc= -github.com/golang/lint v0.0.0-20180702182130-06c8688daad7/go.mod h1:tluoj9z5200jBnyusfRPU2LqT6J+DAorxEvtC7LHB+E= github.com/golang/mock v1.1.1/go.mod h1:oTYuIxOrZwtPieC+H1uAHpcLFnEyAGVDL/k47Jfbm0A= github.com/golang/mock v1.2.0/go.mod h1:oTYuIxOrZwtPieC+H1uAHpcLFnEyAGVDL/k47Jfbm0A= github.com/golang/mock v1.3.1/go.mod h1:sBzyDLLjw3U8JLTeZvSv8jJB+tU5PVekmnlKIyFUx0Y= @@ -350,7 +320,6 @@ github.com/golang/protobuf v1.4.0/go.mod h1:jodUvKwWbYaEsadDk5Fwe5c77LiNKVO9IDvq github.com/golang/protobuf v1.4.1/go.mod h1:U8fpvMrcmy5pZrNK1lt4xCsGvpyWQ/VVv6QDs8UjoX8= github.com/golang/protobuf v1.4.2 h1:+Z5KGCizgyZCbGh1KZqA0fcLLkwbsjIzS4aV2v7wJX0= github.com/golang/protobuf v1.4.2/go.mod h1:oDoupMAO8OvCJWAcko0GGGIgR6R6ocIYbsSw735rRwI= -github.com/golang/snappy v0.0.0-20180518054509-2e65f85255db/go.mod h1:/XxbfmMg8lxefKM7IXC3fBNl/7bRcc72aCRzEWrmP2Q= github.com/google/btree v0.0.0-20180813153112-4030bb1f1f0c/go.mod h1:lNA+9X1NB3Zf8V7Ke586lFgjr2dZNuvo3lPJSGZ5JPQ= github.com/google/btree v1.0.0/go.mod h1:lNA+9X1NB3Zf8V7Ke586lFgjr2dZNuvo3lPJSGZ5JPQ= github.com/google/go-cmp v0.2.0/go.mod h1:oXzfMopK8JAjlY9xF4vHSVASa0yLyX7SntLO5aqRK0M= @@ -361,8 +330,9 @@ github.com/google/go-cmp v0.4.1/go.mod h1:v8dTdLbMG2kIc/vJvl+f65V22dbkXbowE6jgT/ github.com/google/go-cmp v0.5.0/go.mod h1:v8dTdLbMG2kIc/vJvl+f65V22dbkXbowE6jgT/gNBxE= github.com/google/go-cmp v0.5.1/go.mod h1:v8dTdLbMG2kIc/vJvl+f65V22dbkXbowE6jgT/gNBxE= github.com/google/go-cmp v0.5.3/go.mod h1:v8dTdLbMG2kIc/vJvl+f65V22dbkXbowE6jgT/gNBxE= -github.com/google/go-cmp v0.5.4 h1:L8R9j+yAqZuZjsqh/z+F1NCffTKKLShY6zXTItVIZ8M= github.com/google/go-cmp v0.5.4/go.mod h1:v8dTdLbMG2kIc/vJvl+f65V22dbkXbowE6jgT/gNBxE= +github.com/google/go-cmp v0.5.5 h1:Khx7svrCpmxxtHBq5j2mp/xVjsi8hQMfNLvJFAlrGgU= +github.com/google/go-cmp v0.5.5/go.mod h1:v8dTdLbMG2kIc/vJvl+f65V22dbkXbowE6jgT/gNBxE= github.com/google/go-containerregistry v0.0.0-20200331213917-3d03ed9b1ca2/go.mod h1:pD1UFYs7MCAx+ZLShBdttcaOSbyc8F9Na/9IZLNwJeA= github.com/google/go-github/v28 v28.1.1 h1:kORf5ekX5qwXO2mGzXXOjMe/g6ap8ahVe0sBEulhSxo= github.com/google/go-github/v28 v28.1.1/go.mod h1:bsqJWQX05omyWVmc00nEUql9mhQyv38lDZ8kPZcQVoM= @@ -408,12 +378,11 @@ github.com/gorilla/websocket v1.4.2/go.mod h1:YR8l580nyteQvAITg2hZ9XVh4b55+EU/ad github.com/gosuri/uitable v0.0.4 h1:IG2xLKRvErL3uhY6e1BylFzG+aJiwQviDDTfOKeKTpY= github.com/gosuri/uitable v0.0.4/go.mod h1:tKR86bXuXPZazfOTG1FIzvjIdXzd0mo4Vtn16vt0PJo= github.com/gregjones/httpcache v0.0.0-20180305231024-9cad4c3443a7/go.mod h1:FecbI9+v66THATjSRHfNgh1IVFe/9kFxbXtjV0ctIMA= -github.com/grokify/html-strip-tags-go v0.0.0-20190424092004-025bd760b278 h1:DZo48DQFIDo/YWjUeFip1dfJztBhRuaxfUnPd+gAfcs= -github.com/grokify/html-strip-tags-go v0.0.0-20190424092004-025bd760b278/go.mod h1:Xk7G0nwBiIloTMbLddk4WWJOqi4i/JLhadLd0HUXO30= +github.com/grokify/html-strip-tags-go v0.0.1 h1:0fThFwLbW7P/kOiTBs03FsJSV9RM2M/Q/MOnCQxKMo0= +github.com/grokify/html-strip-tags-go v0.0.1/go.mod h1:2Su6romC5/1VXOQMaWL2yb618ARB8iVo6/DR99A6d78= github.com/grpc-ecosystem/go-grpc-middleware v1.0.0/go.mod h1:FiyG127CGDf3tlThmgyCl78X/SZQqEOJBCDaAfeWzPs= github.com/grpc-ecosystem/go-grpc-middleware v1.0.1-0.20190118093823-f849b5445de4/go.mod h1:FiyG127CGDf3tlThmgyCl78X/SZQqEOJBCDaAfeWzPs= github.com/grpc-ecosystem/go-grpc-prometheus v1.2.0/go.mod h1:8NvIoxWQoOIhqOTXgfV/d3M/q6VIi02HzZEHgUlZvzk= -github.com/grpc-ecosystem/grpc-gateway v1.5.0/go.mod h1:RSKVYQBd5MCa4OVpNdGskqpgL2+G+NZTnrVHpWWfpdw= github.com/grpc-ecosystem/grpc-gateway v1.9.0/go.mod h1:vNeuVxBJEsws4ogUvrchl83t/GYV9WGTSLVdBhOQFDY= github.com/grpc-ecosystem/grpc-gateway v1.9.5/go.mod h1:vNeuVxBJEsws4ogUvrchl83t/GYV9WGTSLVdBhOQFDY= github.com/hashicorp/consul/api v1.1.0/go.mod h1:VmuI/Lkw1nC05EYQWNKwWGbkg+FbDBtguAZLlVdkD9Q= @@ -451,7 +420,6 @@ github.com/htcat/htcat v1.0.2 h1:zro95dGwkKDeZOgq9ei+9szd5qurGxBGfHY8hRehA7k= github.com/htcat/htcat v1.0.2/go.mod h1:i8ViQbjSi2+lJzM6Lx20FIxHENCz6mzJglK3HH06W3s= github.com/ianlancetaylor/demangle v0.0.0-20181102032728-5e5cf60278f6/go.mod h1:aSSvb/t6k1mPoxDqO4vJh6VOCGPwU4O0C2/Eqndh1Sc= github.com/imdario/mergo v0.3.5/go.mod h1:2EnlNZ0deacrJVfApfmtdGgDfMuh/nq6Ok1EcJh5FfA= -github.com/inconshreveable/log15 v0.0.0-20180818164646-67afb5ed74ec/go.mod h1:cOaXtrgN4ScfRrD9Bre7U1thNq5RtJ8ZoP4iXVGRj6o= github.com/inconshreveable/log15 v0.0.0-20200109203555-b30bc20e4fd1/go.mod h1:cOaXtrgN4ScfRrD9Bre7U1thNq5RtJ8ZoP4iXVGRj6o= github.com/inconshreveable/log15 v0.0.0-20201112154412-8562bdadbbac h1:n1DqxAo4oWPMvH1+v+DLYlMCecgumhhgnxAPdqDIFHI= github.com/inconshreveable/log15 v0.0.0-20201112154412-8562bdadbbac/go.mod h1:cOaXtrgN4ScfRrD9Bre7U1thNq5RtJ8ZoP4iXVGRj6o= @@ -461,7 +429,6 @@ github.com/jbenet/go-context v0.0.0-20150711004518-d14ea06fba99/go.mod h1:1lJo3i github.com/jesseduffield/gocui v0.3.0 h1:l7wH8MKR2p+ozuZdtdhQiX7szILbv50vkMk1tg2+xow= github.com/jesseduffield/gocui v0.3.0/go.mod h1:2RtZznzYKt8RLRwvFiSkXjU0Ei8WwHdubgnlaYH47dw= github.com/jessevdk/go-flags v1.4.0/go.mod h1:4FA24M0QyGHXBuZZK/XkWh8h0e1EYbRYJSGM75WSRxI= -github.com/jinzhu/gorm v1.9.10/go.mod h1:Kh6hTsSGffh4ui079FHrR5Gg+5D0hgihqDcsDN2BBJY= github.com/jinzhu/gorm v1.9.12/go.mod h1:vhTjlKSJUTWNtcbQtrMBFCxy7eXTzeCAzfL5fBZT/Qs= github.com/jinzhu/gorm v1.9.16 h1:+IyIjPEABKRpsu/F8OvDPy9fyQlgsg2luMV2ZIH5i5o= github.com/jinzhu/gorm v1.9.16/go.mod h1:G3LB3wezTOWM2ITLzPxEXgSkOXAntiLHS7UdBefADcs= @@ -489,12 +456,10 @@ github.com/k0kubun/colorstring v0.0.0-20150214042306-9440f1994b88 h1:uC1QfSlInpQ github.com/k0kubun/colorstring v0.0.0-20150214042306-9440f1994b88/go.mod h1:3w7q1U84EfirKl04SVQ/s7nPm1ZPhiXd34z40TNz36k= github.com/k0kubun/pp v3.0.1+incompatible h1:3tqvf7QgUnZ5tXO6pNAZlrvHgl6DvifjDrd9g2S9Z40= github.com/k0kubun/pp v3.0.1+incompatible/go.mod h1:GWse8YhT0p8pT4ir3ZgBbfZild3tgzSScAn6HmfYukg= -github.com/kevinburke/ssh_config v0.0.0-20180830205328-81db2a75821e/go.mod h1:CT57kijsi8u/K/BOFA39wgDQJ9CxiF4nAY/ojJ6r6mM= github.com/kevinburke/ssh_config v0.0.0-20190725054713-01f96b0aa0cd/go.mod h1:CT57kijsi8u/K/BOFA39wgDQJ9CxiF4nAY/ojJ6r6mM= github.com/kisielk/errcheck v1.1.0/go.mod h1:EZBBE59ingxPouuu3KfxchcWSUPOHkagtvWXihfKN4Q= github.com/kisielk/errcheck v1.2.0/go.mod h1:/BMXB+zMLi60iA8Vv6Ksmxu/1UDYcXs4uQLJ+jE2L00= github.com/kisielk/gotool v1.0.0/go.mod h1:XhKaO+MFFWcvkIS/tQcRk01m1F5IRFswLeQ+oQHNcck= -github.com/knqyf263/berkeleydb v0.0.0-20190501065933-fafe01fb9662/go.mod h1:bu1CcN4tUtoRcI/B/RFHhxMNKFHVq/c3SV+UTyduoXg= github.com/knqyf263/go-apk-version v0.0.0-20200609155635-041fdbb8563f h1:GvCU5GXhHq+7LeOzx/haG7HSIZokl3/0GkoUFzsRJjg= github.com/knqyf263/go-apk-version v0.0.0-20200609155635-041fdbb8563f/go.mod h1:q59u9px8b7UTj0nIjEjvmTWekazka6xIt6Uogz5Dm+8= github.com/knqyf263/go-cpe v0.0.0-20201213041631-54f6ab28673f h1:vZP1dTKPOR7zSAbgqNbnTnYX77+gj3eu0QK+UmANZqE= @@ -503,20 +468,18 @@ github.com/knqyf263/go-deb-version v0.0.0-20190517075300-09fca494f03d h1:X4cedH4 github.com/knqyf263/go-deb-version v0.0.0-20190517075300-09fca494f03d/go.mod h1:o8sgWoz3JADecfc/cTYD92/Et1yMqMy0utV1z+VaZao= github.com/knqyf263/go-rpm-version v0.0.0-20170716094938-74609b86c936 h1:HDjRqotkViMNcGMGicb7cgxklx8OwnjtCBmyWEqrRvM= github.com/knqyf263/go-rpm-version v0.0.0-20170716094938-74609b86c936/go.mod h1:i4sF0l1fFnY1aiw08QQSwVAFxHEm311Me3WsU/X7nL0= -github.com/knqyf263/go-rpmdb v0.0.0-20190501070121-10a1c42a10dc/go.mod h1:MrSSvdMpTSymaQWk1yFr9sxFSyQmKMj6jkbvGrchBV8= github.com/knqyf263/go-rpmdb v0.0.0-20201215100354-a9e3110d8ee1/go.mod h1:RDPNeIkU5NWXtt0OMEoILyxwUC/DyXeRtK295wpqSi0= -github.com/knqyf263/go-version v1.1.1/go.mod h1:0tBvHvOBSf5TqGNcY+/ih9o8qo3R16iZCpB9rP0D3VM= -github.com/knqyf263/gost v0.1.8 h1:8tHClkE3sMMl+qmPU3v7TyUpucs2goGzMAnD+1V6dow= -github.com/knqyf263/gost v0.1.8/go.mod h1:rlf9JZR6qMyXtnz0bqyMIexDoYhFt+on0FK+OL7MhmU= +github.com/knqyf263/gost v0.1.10 h1:9SWMPRsZh+0kKqQb/o20f5PNMESpJi3/8CdzrikaA4o= +github.com/knqyf263/gost v0.1.10/go.mod h1:Vs6YmVm5GdkVUc9uu8VEGaOdhMKk+0lf7rZALLJlUSA= github.com/knqyf263/nested v0.0.1/go.mod h1:zwhsIhMkBg90DTOJQvxPkKIypEHPYkgWHs4gybdlUmk= github.com/konsorten/go-windows-terminal-sequences v1.0.1/go.mod h1:T0+1ngSBFLxvqU3pZ+m/2kptfBszLMUkC4ZK/EgS/cQ= github.com/konsorten/go-windows-terminal-sequences v1.0.2/go.mod h1:T0+1ngSBFLxvqU3pZ+m/2kptfBszLMUkC4ZK/EgS/cQ= -github.com/kotakanbe/go-cve-dictionary v0.5.9 h1:T5bhMjC4V3c5ansidn/08q9yL15Buu/N7xG3Bx4ZfjQ= -github.com/kotakanbe/go-cve-dictionary v0.5.9/go.mod h1:Yp8EUO4zMTuM9lvwm1NwTUQtlhsTSJQDIpfNlk3meFc= +github.com/kotakanbe/go-cve-dictionary v0.5.10 h1:20d+JF9pgbURTL8G9pRinqYarLO/Cf0cBvZYzCbFHic= +github.com/kotakanbe/go-cve-dictionary v0.5.10/go.mod h1:E/CipfNDV31W39MH9QtgkA12JFBMe/3CELxXVvPRphQ= github.com/kotakanbe/go-pingscanner v0.1.0 h1:VG4/9l0i8WeToXclj7bIGoAZAu7a07Z3qmQiIfU0gT0= github.com/kotakanbe/go-pingscanner v0.1.0/go.mod h1:/761QZzuZFcfN8h/1QuawUA+pKukp3qcNj5mxJCOiAk= -github.com/kotakanbe/goval-dictionary v0.3.2 h1:n3ZBiw3XqIvwm8bDtgNKgKawfNznuaWoysl8HwunTlU= -github.com/kotakanbe/goval-dictionary v0.3.2/go.mod h1:1FcXF2+KKTN+IwLbU+iUsufgUrlpurk8nFJUThksEiQ= +github.com/kotakanbe/goval-dictionary v0.3.3 h1:b9o1ZPFGmk0WZV0nnk4mWl5vTKINequ+QVW6w9m+8RI= +github.com/kotakanbe/goval-dictionary v0.3.3/go.mod h1:69e5kFTZEAcT5Lqq8NRlKUjXm0ZNxvT8d3yS/iqFJjs= github.com/kotakanbe/logrus-prefixed-formatter v0.0.0-20180123152602-928f7356cb96 h1:xNVK0mQJdQjw+QYeaMM4G6fvucWr8rTGGIhlPakx1wU= github.com/kotakanbe/logrus-prefixed-formatter v0.0.0-20180123152602-928f7356cb96/go.mod h1:ljq48H1V+0Vh0u7ucA3LjR4AfkAeCpxrf7LaaCk8Vmo= github.com/kr/fs v0.1.0/go.mod h1:FFnZGqtBN9Gxj7eW1uZ42v5BccTP0vu6NEaFoC2HwRg= @@ -524,6 +487,7 @@ github.com/kr/logfmt v0.0.0-20140226030751-b84e30acd515/go.mod h1:+0opPa2QZZtGFB github.com/kr/pretty v0.1.0/go.mod h1:dAy3ld7l9f0ibDNOQOHHMYYIIbhfbHSm3C4ZsoJORNo= github.com/kr/pty v1.1.1/go.mod h1:pFQYn66WHrOpPYNljwOMqo10TkYh1fy3cYio2l3bCsQ= github.com/kr/pty v1.1.5/go.mod h1:9r2w37qlBe7rQ6e1fg1S/9xpWHSnaqNdHD3WcMdbPDA= +github.com/kr/pty v1.1.8/go.mod h1:O1sed60cT9XZ5uDucP5qwvh+TE3NnUj51EiZO/lmSfw= github.com/kr/text v0.1.0/go.mod h1:4Jbv+DJW3UT/LiOwJeYQe1efqtUx/iVham/4vfdArNI= github.com/kr/text v0.2.0 h1:5Nx0Ya0ZqY2ygV366QzturHI13Jq95ApcVaJBhpS+AY= github.com/kr/text v0.2.0/go.mod h1:eLer722TekiGuMkidMxC/pM04lWEeraHUUmBw8l2grE= @@ -538,11 +502,13 @@ github.com/leodido/go-urn v1.1.0/go.mod h1:+cyI34gQWZcE1eQU7NVgKkkzdXDQHr1dBMtdA github.com/leodido/go-urn v1.2.0 h1:hpXL4XnriNwQ/ABnpepYM/1vCLWNDfUNts8dX3xTG6Y= github.com/leodido/go-urn v1.2.0/go.mod h1:+8+nEpDfqqsY+g338gtMEUOtuK+4dEMhiQEgxpxOKII= github.com/lib/pq v1.1.1/go.mod h1:5WUZQaWbwv1U+lTReE5YruASi9Al49XbQIvNi/34Woo= -github.com/lib/pq v1.9.0 h1:L8nSXQQzAYByakOFMTwpjRoHsMJklur4Gi59b6VivR8= github.com/lib/pq v1.9.0/go.mod h1:AlVN5x4E4T544tWzH6hKfbfQvm3HdbOxrmggDNAPY9o= +github.com/lib/pq v1.10.0 h1:Zx5DJFEYQXio93kgXnQ09fXNiUKsqv4OUEu2UtGcB1E= +github.com/lib/pq v1.10.0/go.mod h1:AlVN5x4E4T544tWzH6hKfbfQvm3HdbOxrmggDNAPY9o= github.com/magiconair/properties v1.8.0/go.mod h1:PppfXfuXeibc/6YijjN8zIbojt8czPbwD3XqdrwzmxQ= -github.com/magiconair/properties v1.8.1 h1:ZC2Vc7/ZFkGmsVC9KvOjumD+G5lXy2RtTKyzRKO2BQ4= github.com/magiconair/properties v1.8.1/go.mod h1:PppfXfuXeibc/6YijjN8zIbojt8czPbwD3XqdrwzmxQ= +github.com/magiconair/properties v1.8.4 h1:8KGKTcQQGm0Kv7vEbKFErAoAOFyyacLStRtQSeYtvkY= +github.com/magiconair/properties v1.8.4/go.mod h1:y3VJvCyxH9uVvJTWEGAELF3aiYNyPKd5NZ3oSwXrF60= github.com/mailru/easyjson v0.0.0-20160728113105-d5b7844b561a/go.mod h1:C1wdFJiN94OJF2b5HbByQZoLdCWB1Yqtg26g4irojpc= github.com/mailru/easyjson v0.0.0-20190614124828-94de47d64c63/go.mod h1:C1wdFJiN94OJF2b5HbByQZoLdCWB1Yqtg26g4irojpc= github.com/mailru/easyjson v0.0.0-20190626092158-b2ccc519800e/go.mod h1:C1wdFJiN94OJF2b5HbByQZoLdCWB1Yqtg26g4irojpc= @@ -572,8 +538,6 @@ github.com/mattn/go-runewidth v0.0.7/go.mod h1:H031xJmbD/WCDINGzjvQ9THkh0rPKHF+m github.com/mattn/go-runewidth v0.0.9/go.mod h1:H031xJmbD/WCDINGzjvQ9THkh0rPKHF+m2gUSrubnMI= github.com/mattn/go-runewidth v0.0.10 h1:CoZ3S2P7pvtP45xOtBw+/mDL2z0RKI576gSkzRRpdGg= github.com/mattn/go-runewidth v0.0.10/go.mod h1:RAqKPSqVFrSLVXbA8x7dzmKdmGzieGRCM46jaSJTDAk= -github.com/mattn/go-sqlite3 v1.10.0/go.mod h1:FPy6KqzDD04eiIsT53CuJW3U88zkxoIYsOqkbpncsNc= -github.com/mattn/go-sqlite3 v1.11.0/go.mod h1:FPy6KqzDD04eiIsT53CuJW3U88zkxoIYsOqkbpncsNc= github.com/mattn/go-sqlite3 v1.14.0/go.mod h1:JIl7NbARA7phWnGvh0LKTyg7S9BA+6gx71ShQilpsus= github.com/mattn/go-sqlite3 v1.14.6/go.mod h1:NyWgC/yNuGj7Q9rpYnZvas74GogHl5/Z4A/KQRfk6bU= github.com/mattn/go-sqlite3 v2.0.1+incompatible/go.mod h1:FPy6KqzDD04eiIsT53CuJW3U88zkxoIYsOqkbpncsNc= @@ -589,12 +553,12 @@ github.com/mitchellh/go-homedir v1.0.0/go.mod h1:SfyaCUpYCn1Vlf4IUYiD9fPX4A5wJrk github.com/mitchellh/go-homedir v1.1.0 h1:lukF9ziXFxDFPkA1vsr5zpc1XuPDn/wFntq5mG+4E0Y= github.com/mitchellh/go-homedir v1.1.0/go.mod h1:SfyaCUpYCn1Vlf4IUYiD9fPX4A5wJrkLzIz1N1q0pr0= github.com/mitchellh/go-testing-interface v1.0.0/go.mod h1:kRemZodwjscx+RGhAo8eIhFbs2+BFgRtFPeD/KE+zxI= -github.com/mitchellh/go-wordwrap v1.0.0/go.mod h1:ZXFpozHsX6DPmq2I0TCekCxypsnAUbP2oI0UX1GXzOo= github.com/mitchellh/gox v0.4.0/go.mod h1:Sd9lOJ0+aimLBi73mGofS1ycjY8lL3uZM3JPS42BGNg= github.com/mitchellh/iochan v1.0.0/go.mod h1:JwYml1nuB7xOzsp52dPpHFffvOCDupsG0QubkSMEySY= github.com/mitchellh/mapstructure v0.0.0-20160808181253-ca63d7c062ee/go.mod h1:FVVH3fgwuzCH5S8UJGiWEs2h04kUh9fWfEaFds41c1Y= -github.com/mitchellh/mapstructure v1.1.2 h1:fmNYVwqnSfB9mZU6OS2O6GsXM+wcskZDuKQzvN1EDeE= github.com/mitchellh/mapstructure v1.1.2/go.mod h1:FVVH3fgwuzCH5S8UJGiWEs2h04kUh9fWfEaFds41c1Y= +github.com/mitchellh/mapstructure v1.4.1 h1:CpVNEelQCZBooIPDn+AR3NpivK/TIKU8bDxdASFVQag= +github.com/mitchellh/mapstructure v1.4.1/go.mod h1:bFUtVrKA4DC2yAKiSyO/QUcy7e+RRV2QTWOzhPopBRo= github.com/modern-go/concurrent v0.0.0-20180228061459-e0a39a4cb421/go.mod h1:6dJC0mAP4ikYIbvyc7fijjWJddQyLn8Ig3JB5CqoB9Q= github.com/modern-go/concurrent v0.0.0-20180306012644-bacd9c7ef1dd/go.mod h1:6dJC0mAP4ikYIbvyc7fijjWJddQyLn8Ig3JB5CqoB9Q= github.com/modern-go/reflect2 v0.0.0-20180320133207-05fbef0ca5da/go.mod h1:bx2lNnkwVCuqBIxFjflWJWanXIb3RllmbCylyMrvgv0= @@ -618,43 +582,40 @@ github.com/oklog/ulid v1.3.1/go.mod h1:CirwcVhetQ6Lv90oh/F+FBtV6XMibvdAFo93nm5qn github.com/olekukonko/tablewriter v0.0.0-20170122224234-a0225b3f23b5/go.mod h1:vsDQFd/mU46D+Z4whnwzcISnGGzXWMclvtLoiIKAKIo= github.com/olekukonko/tablewriter v0.0.1/go.mod h1:vsDQFd/mU46D+Z4whnwzcISnGGzXWMclvtLoiIKAKIo= github.com/olekukonko/tablewriter v0.0.2-0.20190607075207-195002e6e56a/go.mod h1:rSAaSIOAGT9odnlyGlUfAJaoc5w2fSBUmeGDbRWPxyQ= -github.com/olekukonko/tablewriter v0.0.4 h1:vHD/YYe1Wolo78koG299f7V/VAS08c6IpCLn+Ejf/w8= github.com/olekukonko/tablewriter v0.0.4/go.mod h1:zq6QwlOf5SlnkVbMSr5EoBv3636FWnp+qbPhuoO21uA= +github.com/olekukonko/tablewriter v0.0.5 h1:P2Ga83D34wi1o9J6Wh1mRuqd4mF/x/lgBS7N7AbDhec= +github.com/olekukonko/tablewriter v0.0.5/go.mod h1:hPp6KlRPjbx+hW8ykQs1w3UBbZlj6HuIJcUGPhkA7kY= github.com/onsi/ginkgo v0.0.0-20170829012221-11459a886d9c/go.mod h1:lLunBs/Ym6LB5Z9jYTR76FiuTmxDTDusOGeTQH+WWjE= github.com/onsi/ginkgo v1.6.0/go.mod h1:lLunBs/Ym6LB5Z9jYTR76FiuTmxDTDusOGeTQH+WWjE= -github.com/onsi/ginkgo v1.7.0/go.mod h1:lLunBs/Ym6LB5Z9jYTR76FiuTmxDTDusOGeTQH+WWjE= github.com/onsi/ginkgo v1.8.0/go.mod h1:lLunBs/Ym6LB5Z9jYTR76FiuTmxDTDusOGeTQH+WWjE= github.com/onsi/ginkgo v1.10.1/go.mod h1:lLunBs/Ym6LB5Z9jYTR76FiuTmxDTDusOGeTQH+WWjE= github.com/onsi/ginkgo v1.12.1/go.mod h1:zj2OWP4+oCPe1qIXoGWkgMRwljMUYCdkwsT2108oapk= -github.com/onsi/ginkgo v1.14.2 h1:8mVmC9kjFFmA8H4pKMUhcblgifdkOIXPvbhN1T36q1M= github.com/onsi/ginkgo v1.14.2/go.mod h1:iSB4RoI2tjJc9BBv4NKIKWKya62Rps+oPG/Lv9klQyY= +github.com/onsi/ginkgo v1.15.0 h1:1V1NfVQR87RtWAgp1lv9JZJ5Jap+XFGKPi00andXGi4= +github.com/onsi/ginkgo v1.15.0/go.mod h1:hF8qUzuuC8DJGygJH3726JnCZX4MYbRB8yFfISqnKUg= github.com/onsi/gomega v0.0.0-20170829124025-dcabb60a477c/go.mod h1:C1qb7wdrVGGVU+Z6iS04AVkA3Q65CEZX59MT0QO5uiA= -github.com/onsi/gomega v1.4.2/go.mod h1:ex+gbHU/CVuBBDIJjb2X0qEXbFg53c61hWP/1CpauHY= -github.com/onsi/gomega v1.4.3/go.mod h1:ex+gbHU/CVuBBDIJjb2X0qEXbFg53c61hWP/1CpauHY= github.com/onsi/gomega v1.5.0/go.mod h1:ex+gbHU/CVuBBDIJjb2X0qEXbFg53c61hWP/1CpauHY= github.com/onsi/gomega v1.7.0/go.mod h1:ex+gbHU/CVuBBDIJjb2X0qEXbFg53c61hWP/1CpauHY= github.com/onsi/gomega v1.7.1/go.mod h1:XdKZgCCFLUoM/7CFJVPcG8C1xQ1AJ0vpAezJrB7JYyY= github.com/onsi/gomega v1.10.1/go.mod h1:iN09h71vgCQne3DLsj+A5owkum+a2tYe+TOCB1ybHNo= github.com/onsi/gomega v1.10.3/go.mod h1:V9xEwhxec5O8UDM77eCW8vLymOMltsqPVYWrpDsH8xc= -github.com/onsi/gomega v1.10.4 h1:NiTx7EEvBzu9sFOD1zORteLSt3o8gnlvZZwSE9TnY9U= github.com/onsi/gomega v1.10.4/go.mod h1:g/HbgYopi++010VEqkFgJHKC09uJiW9UkXvMUuKHUCQ= +github.com/onsi/gomega v1.10.5 h1:7n6FEkpFmfCoo2t+YYqXH0evK+a9ICQz0xcAy9dYcaQ= +github.com/onsi/gomega v1.10.5/go.mod h1:gza4q3jKQJijlu05nKWRCW/GavJumGt8aNRxWg7mt48= github.com/open-policy-agent/opa v0.21.1/go.mod h1:cZaTfhxsj7QdIiUI0U9aBtOLLTqVNe+XE60+9kZKLHw= -github.com/opencontainers/go-digest v0.0.0-20180430190053-c9281466c8b2/go.mod h1:cMLVZDEM3+U2I4VmLI6N8jQYUd2OVphdqWwCJHrFt2s= github.com/opencontainers/go-digest v1.0.0-rc1/go.mod h1:cMLVZDEM3+U2I4VmLI6N8jQYUd2OVphdqWwCJHrFt2s= github.com/opencontainers/image-spec v1.0.1/go.mod h1:BtxoFyWECRxE4U/7sNtV5W15zMzWCbyJoFRP3s7yZA0= github.com/opencontainers/image-spec v1.0.2-0.20190823105129-775207bd45b6/go.mod h1:BtxoFyWECRxE4U/7sNtV5W15zMzWCbyJoFRP3s7yZA0= github.com/opencontainers/runc v0.1.1/go.mod h1:qT5XzbpPznkRYVz/mWwUaVBUv2rmF59PVA73FjuZG0U= -github.com/openzipkin/zipkin-go v0.1.6/go.mod h1:QgAqvLzwWbR/WpD4A3cGpPtJrZXNIiJc5AZX7/PBEpw= github.com/parnurzeal/gorequest v0.2.16 h1:T/5x+/4BT+nj+3eSknXmCTnEVGSzFzPGdpqmUVVZXHQ= github.com/parnurzeal/gorequest v0.2.16/go.mod h1:3Kh2QUMJoqw3icWAecsyzkpY7UzRfDhbRdTjtNwNiUE= github.com/pascaldekloe/goe v0.0.0-20180627143212-57f6aae5913c/go.mod h1:lzWF7FIEvWOWxwDKqyGYQf6ZUaNfKdP144TG7ZOy1lc= github.com/pelletier/go-buffruneio v0.2.0/go.mod h1:JkE26KsDizTr40EUHkXVtNPvgGtbSNq5BcowyYOWdKo= -github.com/pelletier/go-toml v1.2.0 h1:T5zMGML61Wp+FlcbWjRDT7yAxhJNAiPPLOFECq181zc= github.com/pelletier/go-toml v1.2.0/go.mod h1:5z9KED0ma1S8pY6P1sdut58dfprrGBbd/94hg7ilaic= +github.com/pelletier/go-toml v1.8.1 h1:1Nf83orprkJyknT6h7zbuEGUEjcyVlCxSUGTENmNCRM= +github.com/pelletier/go-toml v1.8.1/go.mod h1:T2/BmBdy8dvIRq1a/8aqjN41wvWlN4lrapLU/GW4pbc= github.com/peterbourgon/diskv v2.0.1+incompatible/go.mod h1:uqqh8zWWbv1HBMNONnaR/tNboyR3/BZd58JJSHlUSCU= github.com/peterh/liner v0.0.0-20170211195444-bf27d3ba8e1d/go.mod h1:xIteQHvHuaLYG9IFj6mSxM0fCKrs34IrEQUhOYuGPHc= -github.com/peterhellberg/link v1.0.0/go.mod h1:gtSlOT4jmkY8P47hbTc8PTgiDDWpdPbFYl75keYyBB8= -github.com/pierrec/lz4 v2.0.5+incompatible/go.mod h1:pdkljMzZIN41W+lC3N2tnIh5sFi+IEE17M5jbnwPHcY= github.com/pkg/errors v0.0.0-20181023235946-059132a15dd0/go.mod h1:bwawxfHBFNV+L2hUp1rHADufV3IMtnDRdf1r5NINEl0= github.com/pkg/errors v0.8.0/go.mod h1:bwawxfHBFNV+L2hUp1rHADufV3IMtnDRdf1r5NINEl0= github.com/pkg/errors v0.8.1/go.mod h1:bwawxfHBFNV+L2hUp1rHADufV3IMtnDRdf1r5NINEl0= @@ -666,25 +627,18 @@ github.com/pmezard/go-difflib v1.0.0 h1:4DBwDE0NGyQoBHbLQYPwSUPoCMWR5BEzIk/f1lZb github.com/pmezard/go-difflib v1.0.0/go.mod h1:iKH77koFhYxTK1pcRnkKkqfTogsbg7gZNVY4sRDYZ/4= github.com/posener/complete v1.1.1/go.mod h1:em0nMJCgc9GFtwrmVmEMR/ZL6WyhyjMBndrE9hABlRI= github.com/pquerna/cachecontrol v0.0.0-20171018203845-0dec1b30a021/go.mod h1:prYjPmNq4d1NPVmpShWobRqXY3q7Vp+80DqgxxUrUIA= -github.com/prometheus/client_golang v0.0.0-20180924113449-f69c853d21c1/go.mod h1:7SWBe2y4D6OKWSNQJUaRYU/AaXPKyh/dDVn+NZz0KFw= github.com/prometheus/client_golang v0.0.0-20181025174421-f30f42803563/go.mod h1:7SWBe2y4D6OKWSNQJUaRYU/AaXPKyh/dDVn+NZz0KFw= github.com/prometheus/client_golang v0.9.1/go.mod h1:7SWBe2y4D6OKWSNQJUaRYU/AaXPKyh/dDVn+NZz0KFw= -github.com/prometheus/client_golang v0.9.3-0.20190127221311-3c4408c8b829/go.mod h1:p2iRAGwDERtqlqzRXnrOVns+ignqQo//hLXqYxZYVNs= github.com/prometheus/client_golang v0.9.3/go.mod h1:/TN21ttK/J9q6uSwhBd54HahCDft0ttaMvbicHlPoso= github.com/prometheus/client_golang v1.0.0/go.mod h1:db9x61etRT2tGnBNRi70OPL5FsnadC4Ky3P0J6CfImo= github.com/prometheus/client_model v0.0.0-20180712105110-5c3871d89910/go.mod h1:MbSGuTsp3dbXC40dX6PRTWyKYBIrTGTE9sqQNg2J8bo= -github.com/prometheus/client_model v0.0.0-20190115171406-56726106282f/go.mod h1:MbSGuTsp3dbXC40dX6PRTWyKYBIrTGTE9sqQNg2J8bo= github.com/prometheus/client_model v0.0.0-20190129233127-fd36f4220a90/go.mod h1:xMI15A0UPsDsEKsMN9yxemIoYk6Tm2C1GtYGdfGttqA= github.com/prometheus/client_model v0.0.0-20190812154241-14fe0d1b01d4/go.mod h1:xMI15A0UPsDsEKsMN9yxemIoYk6Tm2C1GtYGdfGttqA= -github.com/prometheus/common v0.0.0-20180801064454-c7de2306084e/go.mod h1:daVV7qP5qjZbuso7PdcryaAu0sAZbrN9i7WWcTMWvro= github.com/prometheus/common v0.0.0-20181020173914-7e9e6cabbd39/go.mod h1:daVV7qP5qjZbuso7PdcryaAu0sAZbrN9i7WWcTMWvro= github.com/prometheus/common v0.0.0-20181113130724-41aa239b4cce/go.mod h1:daVV7qP5qjZbuso7PdcryaAu0sAZbrN9i7WWcTMWvro= -github.com/prometheus/common v0.2.0/go.mod h1:TNfzLD0ON7rHzMJeJkieUDPYmFC7Snx/y86RQel1bk4= github.com/prometheus/common v0.4.0/go.mod h1:TNfzLD0ON7rHzMJeJkieUDPYmFC7Snx/y86RQel1bk4= github.com/prometheus/common v0.4.1/go.mod h1:TNfzLD0ON7rHzMJeJkieUDPYmFC7Snx/y86RQel1bk4= -github.com/prometheus/procfs v0.0.0-20180920065004-418d78d0b9a7/go.mod h1:c3At6R/oaqEKCNdg8wHV1ftS6bRYblBhIjjI8uT2IGk= github.com/prometheus/procfs v0.0.0-20181005140218-185b4288413d/go.mod h1:c3At6R/oaqEKCNdg8wHV1ftS6bRYblBhIjjI8uT2IGk= -github.com/prometheus/procfs v0.0.0-20190117184657-bf6a532e95b1/go.mod h1:c3At6R/oaqEKCNdg8wHV1ftS6bRYblBhIjjI8uT2IGk= github.com/prometheus/procfs v0.0.0-20190507164030-5867b95ac084/go.mod h1:TjEm7ze935MbeOT/UhFTIMYKhuLP4wbCsTZCD3I8kEA= github.com/prometheus/procfs v0.0.2/go.mod h1:TjEm7ze935MbeOT/UhFTIMYKhuLP4wbCsTZCD3I8kEA= github.com/prometheus/tsdb v0.7.1/go.mod h1:qhTCs0VvXwvX/y3TZrWD7rabWM+ijKTux40TwIPHuXU= @@ -710,10 +664,8 @@ github.com/sclevine/spec v1.2.0/go.mod h1:W4J29eT/Kzv7/b9IWLB055Z+qvVC9vt0Arko24 github.com/sean-/seed v0.0.0-20170313163322-e2103e2c3529/go.mod h1:DxrIzT+xaE7yg65j358z/aeFdxmN0P9QXhEzd20vsDc= github.com/sergi/go-diff v1.0.0/go.mod h1:0CfEIISq7TuYL3j771MWULgwwjU+GofnZX9QAmXWZgo= github.com/sergi/go-diff v1.1.0/go.mod h1:STckp+ISIX8hZLjrqAeVduY0gWCT9IjLuqbuNXdaHfM= -github.com/shurcooL/httpfs v0.0.0-20171119174359-809beceb2371/go.mod h1:ZY1cvUeJuFPAdZ/B6v7RHavJWZn2YPVFQ1OSXhCGOkg= github.com/shurcooL/sanitized_anchor_name v1.0.0/go.mod h1:1NzhyTcUVG4SuEtjjoZeVRXNmyL/1OwPU0+IJeTBvfc= github.com/simplereach/timeutils v1.2.0/go.mod h1:VVbQDfN/FHRZa1LSqcwo4kNZ62OOyqLLGQKYB3pB0Q8= -github.com/sirupsen/logrus v1.0.6/go.mod h1:pMByvHTf9Beacp5x1UXfOR9xyW/9antXMhjMPG0dEzc= github.com/sirupsen/logrus v1.2.0/go.mod h1:LxeOpSwHxABJmUn/MG1IvRgCAasNZTLOkJPxbbu5VWo= github.com/sirupsen/logrus v1.4.1/go.mod h1:ni0Sbl8bgC9z8RoU9G6nDWqqs/fq4eDPysMBDgk/93Q= github.com/sirupsen/logrus v1.4.2/go.mod h1:tLMulIdttU9McNUspp0xgXVQah82FyeX6MwdIuYE2rE= @@ -724,7 +676,6 @@ github.com/smartystreets/assertions v0.0.0-20180927180507-b2de0cb4f26d/go.mod h1 github.com/smartystreets/assertions v1.2.0 h1:42S6lae5dvLc7BrLu/0ugRtcFVjoJNMC/N3yZFZkDFs= github.com/smartystreets/assertions v1.2.0/go.mod h1:tcbTF8ujkAEcZ8TElKY+i30BzYlVhC/LOxJk7iOWnoo= github.com/smartystreets/goconvey v0.0.0-20190330032615-68dc04aab96a/go.mod h1:syvi0/a8iFYH4r/RixwvyeAJjdLS9QV7WQ/tjFTllLA= -github.com/smartystreets/goconvey v0.0.0-20190731233626-505e41936337/go.mod h1:syvi0/a8iFYH4r/RixwvyeAJjdLS9QV7WQ/tjFTllLA= github.com/smartystreets/goconvey v1.6.4 h1:fv0U8FUIMPNf1L9lnHLvLhgicrIVChEkdzIKYqbNC9s= github.com/smartystreets/goconvey v1.6.4/go.mod h1:syvi0/a8iFYH4r/RixwvyeAJjdLS9QV7WQ/tjFTllLA= github.com/soheilhy/cmux v0.1.4/go.mod h1:IM3LyeVVIOuxMH7sFAkER9+bJ4dT7Ms6E4xg4kGIyLM= @@ -732,18 +683,21 @@ github.com/sosedoff/gitkit v0.2.0/go.mod h1:A+o6ZazfVJwetlcHz3ah6th66XcBdsyzLo+a github.com/spaolacci/murmur3 v0.0.0-20180118202830-f09979ecbc72/go.mod h1:JwIasOWyU6f++ZhiEuf87xNszmSA2myDM2Kzu9HwQUA= github.com/spf13/afero v1.1.2/go.mod h1:j4pytiNVoe2o6bmDsKpLACNPDBIoEAkihy7loJ1B0CQ= github.com/spf13/afero v1.2.2/go.mod h1:9ZxEEn6pIJ8Rxe320qSDBk6AsU0r9pR7Q4OcevTdifk= -github.com/spf13/afero v1.5.1 h1:VHu76Lk0LSP1x254maIu2bplkWpfBWI+B+6fdoZprcg= -github.com/spf13/afero v1.5.1/go.mod h1:Ai8FlHk4v/PARR026UzYexafAt9roJ7LcLMAmO6Z93I= -github.com/spf13/cast v1.3.0 h1:oget//CVOEoFewqQxwr0Ej5yjygnqGkvggSE/gB35Q8= +github.com/spf13/afero v1.6.0 h1:xoax2sJ2DT8S8xA2paPFjDCScCNeWsg75VG0DLRreiY= +github.com/spf13/afero v1.6.0/go.mod h1:Ai8FlHk4v/PARR026UzYexafAt9roJ7LcLMAmO6Z93I= github.com/spf13/cast v1.3.0/go.mod h1:Qx5cxh0v+4UWYiBimWS+eyWzqEqokIECu5etghLkUJE= +github.com/spf13/cast v1.3.1 h1:nFm6S0SMdyzrzcmThSipiEubIDy8WEXKNZ0UOgiRpng= +github.com/spf13/cast v1.3.1/go.mod h1:Qx5cxh0v+4UWYiBimWS+eyWzqEqokIECu5etghLkUJE= github.com/spf13/cobra v0.0.0-20181021141114-fe5e611709b0/go.mod h1:1l0Ry5zgKvJasoi3XT1TypsSe7PqH0Sj9dhYf7v3XqQ= github.com/spf13/cobra v0.0.3/go.mod h1:1l0Ry5zgKvJasoi3XT1TypsSe7PqH0Sj9dhYf7v3XqQ= github.com/spf13/cobra v0.0.5/go.mod h1:3K3wKZymM7VvHMDS9+Akkh4K60UwM26emMESw8tLCHU= github.com/spf13/cobra v1.0.0/go.mod h1:/6GTrnGXV9HjY+aR4k0oJ5tcvakLuG6EuKReYlHNrgE= -github.com/spf13/cobra v1.1.1 h1:KfztREH0tPxJJ+geloSLaAkaPkr4ki2Er5quFV1TDo4= github.com/spf13/cobra v1.1.1/go.mod h1:WnodtKOvamDL/PwE2M4iKs8aMDBZ5Q5klgD3qfVJQMI= -github.com/spf13/jwalterweatherman v1.0.0 h1:XHEdyB+EcvlqZamSM4ZOMGlc93t6AcsBEu9Gc1vn7yk= +github.com/spf13/cobra v1.1.3 h1:xghbfqPkxzxP3C/f3n5DdpAbdKLj4ZE4BWQI362l53M= +github.com/spf13/cobra v1.1.3/go.mod h1:pGADOWyqRD/YMrPZigI/zbliZ2wVD/23d+is3pSWzOo= github.com/spf13/jwalterweatherman v1.0.0/go.mod h1:cQK4TGJAtQXfYWX+Ddv3mKDzgVb68N+wFjFa4jdeBTo= +github.com/spf13/jwalterweatherman v1.1.0 h1:ue6voC5bR5F8YxI5S67j9i582FU4Qvo2bmqnqMYADFk= +github.com/spf13/jwalterweatherman v1.1.0/go.mod h1:aNWZUN0dPAAO/Ljvb5BEdw96iTZ0EXowPYD95IqWIGo= github.com/spf13/pflag v0.0.0-20170130214245-9ff6c6923cff/go.mod h1:DYY7MBk1bdzusC3SYhjObp+wFpr4gzcvqqNjLnInEg4= github.com/spf13/pflag v0.0.0-20181024212040-082b515c9490/go.mod h1:DYY7MBk1bdzusC3SYhjObp+wFpr4gzcvqqNjLnInEg4= github.com/spf13/pflag v1.0.1/go.mod h1:DYY7MBk1bdzusC3SYhjObp+wFpr4gzcvqqNjLnInEg4= @@ -766,13 +720,14 @@ github.com/stretchr/testify v1.2.2/go.mod h1:a8OnRcib4nhh0OaRAV+Yts87kKdq0PP7pXf github.com/stretchr/testify v1.3.0/go.mod h1:M5WIy9Dh21IEIfnGCwXGc5bZfKNJtfHm1UVUgZn+9EI= github.com/stretchr/testify v1.4.0/go.mod h1:j7eGeouHqKxXV5pUuKE4zz7dFj8WfuZ+81PSLYec5m4= github.com/stretchr/testify v1.5.1/go.mod h1:5W2xD1RspED5o8YsWQXVCued0rvSQ+mT+I5cxcmMvtA= -github.com/stretchr/testify v1.6.1 h1:hDPOHmpOpP40lSULcqw7IrRb/u7w6RpDC9399XyoNd0= github.com/stretchr/testify v1.6.1/go.mod h1:6Fq8oRcR53rry900zMqJjRRixrwX3KX962/h/Wwjteg= +github.com/stretchr/testify v1.7.0 h1:nwc3DEeHmmLAfoZucVR881uASk0Mfjw8xYJ99tb5CcY= +github.com/stretchr/testify v1.7.0/go.mod h1:6Fq8oRcR53rry900zMqJjRRixrwX3KX962/h/Wwjteg= github.com/subosito/gotenv v1.2.0 h1:Slr1R9HxAlEKefgq5jn9U+DnETlIUa6HfgEzj0g5d7s= github.com/subosito/gotenv v1.2.0/go.mod h1:N0PQaV/YGNqwC0u51sEeR/aUtSLEXKX9iv69rRypqCw= -github.com/takuzoo3868/go-msfdb v0.1.4 h1:NjnK1dzUEA4Nwm2Z6jmld2K7Snn6oAmW68KAT/qOH6I= -github.com/takuzoo3868/go-msfdb v0.1.4/go.mod h1:VdYWAq8ikjJGOx0+srShozXsd1x0aHZ+yqAB59tJQsI= -github.com/tealeg/xlsx v1.0.3/go.mod h1:uxu5UY2ovkuRPWKQ8Q7JG0JbSivrISjdPzZQKeo74mA= +github.com/takuzoo3868/go-msfdb v0.1.5 h1:qYTWYM/JVFFR30Y5JsONfhrlXn9//ZcA93aknatPI5Q= +github.com/takuzoo3868/go-msfdb v0.1.5/go.mod h1:ThpfHn0SeVo8hVKwhQ2jXoPFq4+auinU5BHcDVKZBpk= +github.com/tealeg/xlsx v1.0.5/go.mod h1:btRS8dz54TDnvKNosuAqxrM1QgN1udgk9O34bDCnORM= github.com/testcontainers/testcontainers-go v0.3.1/go.mod h1:br7bkzIukhPSIjy07Ma3OuXjjFvl2jm7CDU0LQNsqLw= github.com/tmc/grpc-websocket-proxy v0.0.0-20170815181823-89b8d40f7ca8/go.mod h1:ncp9v5uamzpCO7NfCPTXjqaC+bZgJeR0sMTm6dMHP7U= github.com/tmc/grpc-websocket-proxy v0.0.0-20190109142713-0ad062ec5ee5/go.mod h1:ncp9v5uamzpCO7NfCPTXjqaC+bZgJeR0sMTm6dMHP7U= @@ -793,9 +748,8 @@ github.com/valyala/fasttemplate v1.2.1 h1:TVEnxayobAdVkhQfrfes2IzOB6o+z4roRkPF52 github.com/valyala/fasttemplate v1.2.1/go.mod h1:KHLXt3tVN2HBp8eijSv/kGJopbvo7S+qRAEEKiv+SiQ= github.com/vdemeester/k8s-pkg-credentialprovider v1.17.4/go.mod h1:inCTmtUdr5KJbreVojo06krnTgaeAz/Z7lynpPk/Q2c= github.com/vmware/govmomi v0.20.3/go.mod h1:URlwyTFZX72RmxtxuaFL2Uj3fD1JTvZdx59bHWk6aFU= -github.com/vulsio/go-exploitdb v0.1.6 h1:RbjF6pakpuUqR1XLDaN/vsFeM+oKZC8nJrPbt8+v5hE= -github.com/vulsio/go-exploitdb v0.1.6/go.mod h1:CMNvEqjsVa2IMGsoyDV4QKXlOSWIaB6b6+29F6YmJWU= -github.com/xanzy/ssh-agent v0.2.0/go.mod h1:0NyE30eGUDliuLEHJgYte/zncp2zdTStcOnWhgSqHD8= +github.com/vulsio/go-exploitdb v0.1.7 h1:wdq+6H/PvGGnUiyAaLQ3DtczsLy3rrBQgmNOiXH62z0= +github.com/vulsio/go-exploitdb v0.1.7/go.mod h1:4strSWuNtCTz76QB8RuxpMQmYifArGKiHKBFCMOTxY4= github.com/xanzy/ssh-agent v0.2.1/go.mod h1:mLlQY/MoOhWBj+gOGMQkOeiEvkx+8pJSI+0Bx9h2kr4= github.com/xiang90/probing v0.0.0-20190116061207-43a291ad63a2/go.mod h1:UETIi67q53MR2AWcXfiuqkDkRtnGDLqkBTpCHuJHxtU= github.com/xordataexchange/crypt v0.0.3-0.20170626215501-b2862e3d0a77/go.mod h1:aYKd//L2LvnjZzWKhF00oedf4jCCReLcmhLdhm1A27Q= @@ -805,21 +759,28 @@ github.com/ymomoi/goval-parser v0.0.0-20170813122243-0a0be1dd9d08/go.mod h1:ox1N github.com/yuin/goldmark v1.1.25/go.mod h1:3hX8gzYuyVAZsxl0MRgGTJEmQBFcNTphYh9decYSb74= github.com/yuin/goldmark v1.1.27/go.mod h1:3hX8gzYuyVAZsxl0MRgGTJEmQBFcNTphYh9decYSb74= github.com/yuin/goldmark v1.1.32/go.mod h1:3hX8gzYuyVAZsxl0MRgGTJEmQBFcNTphYh9decYSb74= +github.com/yuin/goldmark v1.2.1/go.mod h1:3hX8gzYuyVAZsxl0MRgGTJEmQBFcNTphYh9decYSb74= github.com/yuin/gopher-lua v0.0.0-20191220021717-ab39c6098bdb/go.mod h1:gqRgreBUhTSL0GeU64rtZ3Uq3wtjOa/TB2YfrtkCbVQ= go.etcd.io/bbolt v1.3.2/go.mod h1:IbVyRI1SCnLcuJnV2u8VeU0CEYM7e686BmAb1XKL+uU= go.etcd.io/bbolt v1.3.3/go.mod h1:IbVyRI1SCnLcuJnV2u8VeU0CEYM7e686BmAb1XKL+uU= go.etcd.io/bbolt v1.3.5 h1:XAzx9gjCb0Rxj7EoqcClPD1d5ZBxZJk0jbuoPHenBt0= go.etcd.io/bbolt v1.3.5/go.mod h1:G5EMThwa9y8QZGBClrRx5EY+Yw9kAhnjy3bSjsnlVTQ= go.etcd.io/etcd v0.0.0-20191023171146-3cf2f69b5738/go.mod h1:dnLIgRNXwCJa5e+c6mIZCrds/GIG4ncV9HhK5PX7jPg= -go.opencensus.io v0.20.1/go.mod h1:6WKK9ahsWS3RSO+PY9ZHZUfv2irvY6gN279GOPZjmmk= go.opencensus.io v0.21.0/go.mod h1:mSImk1erAIZhrmZN+AvHh14ztQfjbGwt4TtuofqLduU= go.opencensus.io v0.22.0/go.mod h1:+kGneAE2xo2IficOXnaByMWTGM9T73dGwxeWcUqIpI8= go.opencensus.io v0.22.2/go.mod h1:yxeiOL68Rb0Xd1ddK5vPZ/oVn4vY4Ynel7k9FzqtOIw= go.opencensus.io v0.22.3/go.mod h1:yxeiOL68Rb0Xd1ddK5vPZ/oVn4vY4Ynel7k9FzqtOIw= go.opencensus.io v0.22.4/go.mod h1:yxeiOL68Rb0Xd1ddK5vPZ/oVn4vY4Ynel7k9FzqtOIw= go.opentelemetry.io/otel v0.14.0/go.mod h1:vH5xEuwy7Rts0GNtsCW3HYQoZDY+OmBJ6t1bFGGlxgw= -go.opentelemetry.io/otel v0.16.0 h1:uIWEbdeb4vpKPGITLsRVUS44L5oDbDUCZxn8lkxhmgw= go.opentelemetry.io/otel v0.16.0/go.mod h1:e4GKElweB8W2gWUqbghw0B8t5MCTccc9212eNHnOHwA= +go.opentelemetry.io/otel v0.19.0 h1:Lenfy7QHRXPZVsw/12CWpxX6d/JkrX8wrx2vO8G80Ng= +go.opentelemetry.io/otel v0.19.0/go.mod h1:j9bF567N9EfomkSidSfmMwIwIBuP37AMAIzVW85OxSg= +go.opentelemetry.io/otel/metric v0.19.0 h1:dtZ1Ju44gkJkYvo+3qGqVXmf88tc+a42edOywypengg= +go.opentelemetry.io/otel/metric v0.19.0/go.mod h1:8f9fglJPRnXuskQmKpnad31lcLJ2VmNNqIsx/uIwBSc= +go.opentelemetry.io/otel/oteltest v0.19.0 h1:YVfA0ByROYqTwOxqHVZYZExzEpfZor+MU1rU+ip2v9Q= +go.opentelemetry.io/otel/oteltest v0.19.0/go.mod h1:tI4yxwh8U21v7JD6R3BcA/2+RBoTKFexE/PJ/nSO7IA= +go.opentelemetry.io/otel/trace v0.19.0 h1:1ucYlenXIDA1OlHVLDZKX0ObXV5RLaq06DtUKz5e5zc= +go.opentelemetry.io/otel/trace v0.19.0/go.mod h1:4IXiNextNOpPnRlI4ryK69mn5iC84bjBWZQA5DXz/qg= go.uber.org/atomic v1.3.2/go.mod h1:gD2HeocX3+yG+ygLZcrzQJaqmWj9AIm7n08wl/qW/PE= go.uber.org/atomic v1.4.0/go.mod h1:gD2HeocX3+yG+ygLZcrzQJaqmWj9AIm7n08wl/qW/PE= go.uber.org/atomic v1.5.0/go.mod h1:sABNBOSYdrvTF6hTgEIbc7YasKWGhgEQZyfxyTvoXHQ= @@ -831,22 +792,20 @@ go.uber.org/multierr v1.4.0 h1:f3WCSC2KzAcBXGATIxAB1E2XuCpNU255wNKZ505qi3E= go.uber.org/multierr v1.4.0/go.mod h1:VgVr7evmIr6uPjLBxg28wmKNXyqE9akIJ5XnfpiKl+4= go.uber.org/tools v0.0.0-20190618225709-2cfd321de3ee h1:0mgffUl7nfd+FpvXMVz4IDEaUSmT1ysygQC7qYo7sG4= go.uber.org/tools v0.0.0-20190618225709-2cfd321de3ee/go.mod h1:vJERXedbb3MVM5f9Ejo0C68/HhF8uaILCdgjnY+goOA= -go.uber.org/zap v1.9.1/go.mod h1:vwi/ZaCAaUcBkycHslxD9B2zi4UTXhF60s6SWpuDF0Q= go.uber.org/zap v1.10.0/go.mod h1:vwi/ZaCAaUcBkycHslxD9B2zi4UTXhF60s6SWpuDF0Q= go.uber.org/zap v1.13.0 h1:nR6NoDBgAf67s68NhaXbsojM+2gxp3S1hWkHDl27pVU= go.uber.org/zap v1.13.0/go.mod h1:zwrFLgMcdUuIBviXEYEH1YKNaOBnKXsx2IPda5bBwHM= golang.org/x/crypto v0.0.0-20180904163835-0709b304e793/go.mod h1:6SG95UA2DQfeDnfUPMdvaQW0Q7yPrPDi9nlGo2tz2b4= -golang.org/x/crypto v0.0.0-20180910181607-0e37d006457b/go.mod h1:6SG95UA2DQfeDnfUPMdvaQW0Q7yPrPDi9nlGo2tz2b4= golang.org/x/crypto v0.0.0-20181029021203-45a5f77698d3/go.mod h1:6SG95UA2DQfeDnfUPMdvaQW0Q7yPrPDi9nlGo2tz2b4= golang.org/x/crypto v0.0.0-20181203042331-505ab145d0a9/go.mod h1:6SG95UA2DQfeDnfUPMdvaQW0Q7yPrPDi9nlGo2tz2b4= golang.org/x/crypto v0.0.0-20190211182817-74369b46fc67/go.mod h1:6SG95UA2DQfeDnfUPMdvaQW0Q7yPrPDi9nlGo2tz2b4= golang.org/x/crypto v0.0.0-20190219172222-a4c6cb3142f2/go.mod h1:6SG95UA2DQfeDnfUPMdvaQW0Q7yPrPDi9nlGo2tz2b4= golang.org/x/crypto v0.0.0-20190308221718-c2843e01d9a2/go.mod h1:djNgcEr1/C05ACkg1iLfiJU5Ep61QUkGW8qpdssI0+w= golang.org/x/crypto v0.0.0-20190325154230-a5d413f7728c/go.mod h1:djNgcEr1/C05ACkg1iLfiJU5Ep61QUkGW8qpdssI0+w= -golang.org/x/crypto v0.0.0-20190404164418-38d8ce5564a5/go.mod h1:WFFai1msRO1wXaEeE5yQxYXgSfI8pQAWXbQop6sCtWE= golang.org/x/crypto v0.0.0-20190510104115-cbcb75029529/go.mod h1:yigFU9vqHzYiE8UmvKecakEJjdnWj3jj499lnFckfCI= golang.org/x/crypto v0.0.0-20190605123033-f99c8df09eb5/go.mod h1:yigFU9vqHzYiE8UmvKecakEJjdnWj3jj499lnFckfCI= golang.org/x/crypto v0.0.0-20190611184440-5c40567a22f8/go.mod h1:yigFU9vqHzYiE8UmvKecakEJjdnWj3jj499lnFckfCI= +golang.org/x/crypto v0.0.0-20190701094942-4def268fd1a4/go.mod h1:yigFU9vqHzYiE8UmvKecakEJjdnWj3jj499lnFckfCI= golang.org/x/crypto v0.0.0-20190820162420-60c769a6c586/go.mod h1:yigFU9vqHzYiE8UmvKecakEJjdnWj3jj499lnFckfCI= golang.org/x/crypto v0.0.0-20191011191535-87dc89f01550/go.mod h1:yigFU9vqHzYiE8UmvKecakEJjdnWj3jj499lnFckfCI= golang.org/x/crypto v0.0.0-20191205180655-e7c4368fe9dd/go.mod h1:LzIPMQfyMNhhGPhUkYOs5KpL4U8rLKemX1yGLhDgUto= @@ -857,8 +816,8 @@ golang.org/x/crypto v0.0.0-20200622213623-75b288015ac9/go.mod h1:LzIPMQfyMNhhGPh golang.org/x/crypto v0.0.0-20200820211705-5c72a883971a/go.mod h1:LzIPMQfyMNhhGPhUkYOs5KpL4U8rLKemX1yGLhDgUto= golang.org/x/crypto v0.0.0-20201002170205-7f63de1d35b0/go.mod h1:LzIPMQfyMNhhGPhUkYOs5KpL4U8rLKemX1yGLhDgUto= golang.org/x/crypto v0.0.0-20201221181555-eec23a3978ad/go.mod h1:jdWPYTVW3xRLrWPugEBEK3UY2ZEsg3UU495nc5E+M+I= -golang.org/x/crypto v0.0.0-20210220033148-5ea612d1eb83 h1:/ZScEX8SfEmUGRHs0gxpqteO5nfNW6axyZbBdw9A12g= -golang.org/x/crypto v0.0.0-20210220033148-5ea612d1eb83/go.mod h1:jdWPYTVW3xRLrWPugEBEK3UY2ZEsg3UU495nc5E+M+I= +golang.org/x/crypto v0.0.0-20210322153248-0c34fe9e7dc2 h1:It14KIkyBFYkHkwZ7k45minvA9aorojkyjGk9KJ5B/w= +golang.org/x/crypto v0.0.0-20210322153248-0c34fe9e7dc2/go.mod h1:T9bdIzuCu7OtxOm1hfPfRQxPLYneinmdGuTeoZ9dtd4= golang.org/x/exp v0.0.0-20190121172915-509febef88a4/go.mod h1:CJ0aWSM057203Lf6IL+f9T1iT9GByDxfZKAQTCR3kQA= golang.org/x/exp v0.0.0-20190125153040-c74c464bbbf2/go.mod h1:CJ0aWSM057203Lf6IL+f9T1iT9GByDxfZKAQTCR3kQA= golang.org/x/exp v0.0.0-20190306152737-a1d7652674e8/go.mod h1:CJ0aWSM057203Lf6IL+f9T1iT9GByDxfZKAQTCR3kQA= @@ -873,7 +832,6 @@ golang.org/x/exp v0.0.0-20200207192155-f17229e696bd/go.mod h1:J/WKrq2StrnmMY6+EH golang.org/x/exp v0.0.0-20200224162631-6cc2880d07d6/go.mod h1:3jZMyOhIsHpP37uCMkUooju7aAi5cS1Q23tOzKc+0MU= golang.org/x/image v0.0.0-20190227222117-0694c2d4d067/go.mod h1:kZ7UVZpmo3dzQBMxlp+ypCbDeSB+sBbTgSJuh5dn5js= golang.org/x/image v0.0.0-20190802002840-cff245a6509b/go.mod h1:FeLwcggjj3mMvU+oOTbSwawSJRM1uh48EjtB4UJZlP0= -golang.org/x/lint v0.0.0-20180702182130-06c8688daad7/go.mod h1:UVdnD1Gm6xHRNCYTkRU2/jEulfH38KcIWyp/GAMgvoE= golang.org/x/lint v0.0.0-20181023182221-1baf3a9d7d67/go.mod h1:UVdnD1Gm6xHRNCYTkRU2/jEulfH38KcIWyp/GAMgvoE= golang.org/x/lint v0.0.0-20181026193005-c67002cb31c3/go.mod h1:UVdnD1Gm6xHRNCYTkRU2/jEulfH38KcIWyp/GAMgvoE= golang.org/x/lint v0.0.0-20190227174305-5b3e6a55c961/go.mod h1:wehouNa3lNwaWXcvxsM5YxQ5yQlVC4a0KAMCusXpPoU= @@ -901,13 +859,11 @@ golang.org/x/net v0.0.0-20180218175443-cbe0f9307d01/go.mod h1:mL1N/T3taQHkDXs73r golang.org/x/net v0.0.0-20180724234803-3673e40ba225/go.mod h1:mL1N/T3taQHkDXs73rZJwtUhF3w3ftmwwsq0BUmARs4= golang.org/x/net v0.0.0-20180826012351-8a410e7b638d/go.mod h1:mL1N/T3taQHkDXs73rZJwtUhF3w3ftmwwsq0BUmARs4= golang.org/x/net v0.0.0-20180906233101-161cd47e91fd/go.mod h1:mL1N/T3taQHkDXs73rZJwtUhF3w3ftmwwsq0BUmARs4= -golang.org/x/net v0.0.0-20180925072008-f04abc6bdfa7/go.mod h1:mL1N/T3taQHkDXs73rZJwtUhF3w3ftmwwsq0BUmARs4= golang.org/x/net v0.0.0-20181023162649-9b4f9f5ad519/go.mod h1:mL1N/T3taQHkDXs73rZJwtUhF3w3ftmwwsq0BUmARs4= golang.org/x/net v0.0.0-20181114220301-adae6a3d119a/go.mod h1:mL1N/T3taQHkDXs73rZJwtUhF3w3ftmwwsq0BUmARs4= golang.org/x/net v0.0.0-20181201002055-351d144fa1fc/go.mod h1:mL1N/T3taQHkDXs73rZJwtUhF3w3ftmwwsq0BUmARs4= golang.org/x/net v0.0.0-20181220203305-927f97764cc3/go.mod h1:mL1N/T3taQHkDXs73rZJwtUhF3w3ftmwwsq0BUmARs4= golang.org/x/net v0.0.0-20190108225652-1e06a53dbb7e/go.mod h1:mL1N/T3taQHkDXs73rZJwtUhF3w3ftmwwsq0BUmARs4= -golang.org/x/net v0.0.0-20190125091013-d26f9f9a57f3/go.mod h1:mL1N/T3taQHkDXs73rZJwtUhF3w3ftmwwsq0BUmARs4= golang.org/x/net v0.0.0-20190213061140-3a22650c66bd/go.mod h1:mL1N/T3taQHkDXs73rZJwtUhF3w3ftmwwsq0BUmARs4= golang.org/x/net v0.0.0-20190311183353-d8887717615a/go.mod h1:t9HGtf8HONx5eT2rtn7q6eTqICYqUVnKs3thJo3Qplg= golang.org/x/net v0.0.0-20190404232315-eb5bcb51f2a3/go.mod h1:t9HGtf8HONx5eT2rtn7q6eTqICYqUVnKs3thJo3Qplg= @@ -938,12 +894,14 @@ golang.org/x/net v0.0.0-20200625001655-4c5254603344/go.mod h1:/O7V0waA8r7cgGh81R golang.org/x/net v0.0.0-20200707034311-ab3426394381/go.mod h1:/O7V0waA8r7cgGh81Ro3o1hOxt32SMVPicZroKQ2sZA= golang.org/x/net v0.0.0-20200822124328-c89045814202/go.mod h1:/O7V0waA8r7cgGh81Ro3o1hOxt32SMVPicZroKQ2sZA= golang.org/x/net v0.0.0-20201006153459-a7d1128ccaa0/go.mod h1:sp8m0HH+o8qH0wwXwYZr8TS3Oi6o0r6Gce1SSxlDquU= +golang.org/x/net v0.0.0-20201021035429-f5854403a974/go.mod h1:sp8m0HH+o8qH0wwXwYZr8TS3Oi6o0r6Gce1SSxlDquU= golang.org/x/net v0.0.0-20201110031124-69a78807bb2b/go.mod h1:sp8m0HH+o8qH0wwXwYZr8TS3Oi6o0r6Gce1SSxlDquU= golang.org/x/net v0.0.0-20201202161906-c7110b5ffcbb/go.mod h1:sp8m0HH+o8qH0wwXwYZr8TS3Oi6o0r6Gce1SSxlDquU= golang.org/x/net v0.0.0-20201224014010-6772e930b67b/go.mod h1:m0MpNAwzfU5UDzcl9v0D8zg8gWTRqZa9RBIspLL5mdg= golang.org/x/net v0.0.0-20210119194325-5f4716e94777/go.mod h1:m0MpNAwzfU5UDzcl9v0D8zg8gWTRqZa9RBIspLL5mdg= -golang.org/x/net v0.0.0-20210226172049-e18ecbb05110 h1:qWPm9rbaAMKs8Bq/9LRpbMqxWRVUAQwMI9fVrssnTfw= golang.org/x/net v0.0.0-20210226172049-e18ecbb05110/go.mod h1:m0MpNAwzfU5UDzcl9v0D8zg8gWTRqZa9RBIspLL5mdg= +golang.org/x/net v0.0.0-20210323141857-08027d57d8cf h1:sewfyKLWuY3ko6EI4hbFziQ8bHkfammpzCDfLT92I1c= +golang.org/x/net v0.0.0-20210323141857-08027d57d8cf/go.mod h1:RBQZq4jEuRlivfhVLdyRGr576XBO4/greRjx4P4O3yc= golang.org/x/oauth2 v0.0.0-20180821212333-d2e6202438be/go.mod h1:N/0e6XlmueqKjAGxoOufVs8QHGRruUQn6yWY3a++T0U= golang.org/x/oauth2 v0.0.0-20190226205417-e64efc72b421/go.mod h1:gOpvHmFTYa4IltrdGE7lF6nIHvwfUNPOp7c8zoXwtLw= golang.org/x/oauth2 v0.0.0-20190604053449-0f29369cfe45/go.mod h1:gOpvHmFTYa4IltrdGE7lF6nIHvwfUNPOp7c8zoXwtLw= @@ -960,17 +918,15 @@ golang.org/x/sync v0.0.0-20190423024810-112230192c58/go.mod h1:RxMgew5VJxzue5/jJ golang.org/x/sync v0.0.0-20190911185100-cd5d95a43a6e/go.mod h1:RxMgew5VJxzue5/jJTE5uejpjVlOe/izrB70Jof72aM= golang.org/x/sync v0.0.0-20200317015054-43a5402ce75a/go.mod h1:RxMgew5VJxzue5/jJTE5uejpjVlOe/izrB70Jof72aM= golang.org/x/sync v0.0.0-20200625203802-6e8e738ad208/go.mod h1:RxMgew5VJxzue5/jJTE5uejpjVlOe/izrB70Jof72aM= +golang.org/x/sync v0.0.0-20201020160332-67f06af15bc9/go.mod h1:RxMgew5VJxzue5/jJTE5uejpjVlOe/izrB70Jof72aM= golang.org/x/sys v0.0.0-20170830134202-bb24a47a89ea/go.mod h1:STP8DvDyc/dI5b8T5hshtkjS+E42TnysNCUPdjciGhY= golang.org/x/sys v0.0.0-20180823144017-11551d06cbcc/go.mod h1:STP8DvDyc/dI5b8T5hshtkjS+E42TnysNCUPdjciGhY= golang.org/x/sys v0.0.0-20180830151530-49385e6e1522/go.mod h1:STP8DvDyc/dI5b8T5hshtkjS+E42TnysNCUPdjciGhY= -golang.org/x/sys v0.0.0-20180903190138-2b024373dcd9/go.mod h1:STP8DvDyc/dI5b8T5hshtkjS+E42TnysNCUPdjciGhY= golang.org/x/sys v0.0.0-20180905080454-ebe1bf3edb33/go.mod h1:STP8DvDyc/dI5b8T5hshtkjS+E42TnysNCUPdjciGhY= golang.org/x/sys v0.0.0-20180909124046-d0be0721c37e/go.mod h1:STP8DvDyc/dI5b8T5hshtkjS+E42TnysNCUPdjciGhY= -golang.org/x/sys v0.0.0-20180925112736-b09afc3d579e/go.mod h1:STP8DvDyc/dI5b8T5hshtkjS+E42TnysNCUPdjciGhY= golang.org/x/sys v0.0.0-20181026203630-95b1ffbd15a5/go.mod h1:STP8DvDyc/dI5b8T5hshtkjS+E42TnysNCUPdjciGhY= golang.org/x/sys v0.0.0-20181107165924-66b7b1311ac8/go.mod h1:STP8DvDyc/dI5b8T5hshtkjS+E42TnysNCUPdjciGhY= golang.org/x/sys v0.0.0-20181116152217-5ac8a444bdc5/go.mod h1:STP8DvDyc/dI5b8T5hshtkjS+E42TnysNCUPdjciGhY= -golang.org/x/sys v0.0.0-20181122145206-62eef0e2fa9b/go.mod h1:STP8DvDyc/dI5b8T5hshtkjS+E42TnysNCUPdjciGhY= golang.org/x/sys v0.0.0-20181205085412-a5c9d58dba9a/go.mod h1:STP8DvDyc/dI5b8T5hshtkjS+E42TnysNCUPdjciGhY= golang.org/x/sys v0.0.0-20190204203706-41f3e6584952/go.mod h1:STP8DvDyc/dI5b8T5hshtkjS+E42TnysNCUPdjciGhY= golang.org/x/sys v0.0.0-20190209173611-3b5209105503/go.mod h1:STP8DvDyc/dI5b8T5hshtkjS+E42TnysNCUPdjciGhY= @@ -978,7 +934,6 @@ golang.org/x/sys v0.0.0-20190215142949-d0b11bdaac8a/go.mod h1:STP8DvDyc/dI5b8T5h golang.org/x/sys v0.0.0-20190221075227-b4e8571b14e0/go.mod h1:STP8DvDyc/dI5b8T5hshtkjS+E42TnysNCUPdjciGhY= golang.org/x/sys v0.0.0-20190222072716-a9d3bda3a223/go.mod h1:STP8DvDyc/dI5b8T5hshtkjS+E42TnysNCUPdjciGhY= golang.org/x/sys v0.0.0-20190312061237-fead79001313/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs= -golang.org/x/sys v0.0.0-20190403152447-81d4e9dc473e/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs= golang.org/x/sys v0.0.0-20190412213103-97732733099d/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs= golang.org/x/sys v0.0.0-20190422165155-953cdadca894/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs= golang.org/x/sys v0.0.0-20190502145724-3ef323f4f1fd/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs= @@ -1022,10 +977,12 @@ golang.org/x/sys v0.0.0-20200831180312-196b9ba8737a/go.mod h1:h1NjWce9XRLGQEsW7w golang.org/x/sys v0.0.0-20200930185726-fdedc70b468f/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs= golang.org/x/sys v0.0.0-20201006155630-ac719f4daadf/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs= golang.org/x/sys v0.0.0-20201119102817-f84b799fce68/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs= +golang.org/x/sys v0.0.0-20210112080510-489259a85091/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs= golang.org/x/sys v0.0.0-20210113181707-4bcb84eeeb78/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs= golang.org/x/sys v0.0.0-20210124154548-22da62e12c0c/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs= -golang.org/x/sys v0.0.0-20210301091718-77cc2087c03b h1:kHlr0tATeLRMEiZJu5CknOw/E8V6h69sXXQFGoPtjcc= -golang.org/x/sys v0.0.0-20210301091718-77cc2087c03b/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs= +golang.org/x/sys v0.0.0-20210315160823-c6e025ad8005/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs= +golang.org/x/sys v0.0.0-20210320140829-1e4c9ba3b0c4 h1:EZ2mChiOa8udjfp6rRmswTbtZN/QzUQp4ptM4rnjHvc= +golang.org/x/sys v0.0.0-20210320140829-1e4c9ba3b0c4/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs= golang.org/x/term v0.0.0-20201117132131-f5c789dd3221/go.mod h1:Nr5EML6q2oocZ2LXRh80K7BxOlk5/8JxuGnuhpl+muw= golang.org/x/term v0.0.0-20201126162022-7de9c90e9dd1 h1:v+OssWQX+hTHEmOBgwxdZxK4zHq3yOs8F9J7mk0PY8E= golang.org/x/term v0.0.0-20201126162022-7de9c90e9dd1/go.mod h1:bj7SfCRtBDWHUb9snDiAeCFNEtKQo2Wmx5Cou7ajbmo= @@ -1063,6 +1020,7 @@ golang.org/x/tools v0.0.0-20190614205625-5aca471b1d59/go.mod h1:/rFqwRUd4F7ZHNgw golang.org/x/tools v0.0.0-20190621195816-6e04913cbbac/go.mod h1:/rFqwRUd4F7ZHNgwSSTFct+R/Kf4OFW1sUzUTQQTgfc= golang.org/x/tools v0.0.0-20190628153133-6cdbf07be9d0/go.mod h1:/rFqwRUd4F7ZHNgwSSTFct+R/Kf4OFW1sUzUTQQTgfc= golang.org/x/tools v0.0.0-20190706070813-72ffa07ba3db/go.mod h1:jcCCGcm9btYwXyDqrUWc6MKQKKGJCWEQ3AfLSRIbEuI= +golang.org/x/tools v0.0.0-20190729092621-ff9f1409240a/go.mod h1:jcCCGcm9btYwXyDqrUWc6MKQKKGJCWEQ3AfLSRIbEuI= golang.org/x/tools v0.0.0-20190816200558-6889da9d5479/go.mod h1:b+2E5dAYhXwXZwtnZ6UAqBI28+e2cm9otk0dWdXHAEo= golang.org/x/tools v0.0.0-20190911174233-4f2ddba30aff/go.mod h1:b+2E5dAYhXwXZwtnZ6UAqBI28+e2cm9otk0dWdXHAEo= golang.org/x/tools v0.0.0-20190920225731-5eefd052ad72/go.mod h1:b+2E5dAYhXwXZwtnZ6UAqBI28+e2cm9otk0dWdXHAEo= @@ -1096,9 +1054,9 @@ golang.org/x/tools v0.0.0-20200515010526-7d3b6ebf133d/go.mod h1:EkVYQZoAsY45+roY golang.org/x/tools v0.0.0-20200618134242-20370b0cb4b2/go.mod h1:EkVYQZoAsY45+roYkvgYkIh4xh/qjgUK9TdY2XT94GE= golang.org/x/tools v0.0.0-20200729194436-6467de6f59a7/go.mod h1:njjCfa9FT2d7l9Bc6FUM5FLjQPp3cFF28FI3qnDFljA= golang.org/x/tools v0.0.0-20200804011535-6c149bb5ef0d/go.mod h1:njjCfa9FT2d7l9Bc6FUM5FLjQPp3cFF28FI3qnDFljA= -golang.org/x/tools v0.0.0-20200825202427-b303f430e36d h1:W07d4xkoAUSNOkOzdzXCdFGxT7o2rW4q8M34tB2i//k= golang.org/x/tools v0.0.0-20200825202427-b303f430e36d/go.mod h1:njjCfa9FT2d7l9Bc6FUM5FLjQPp3cFF28FI3qnDFljA= -golang.org/x/xerrors v0.0.0-20190410155217-1f06c39b4373/go.mod h1:I/5z698sn9Ka8TeJc9MKroUUfqBBauWjQqLJ2OPfmY0= +golang.org/x/tools v0.0.0-20201224043029-2b0845dc783e h1:4nW4NLDYnU28ojHaHO8OVxFHk/aQ33U01a9cjED+pzE= +golang.org/x/tools v0.0.0-20201224043029-2b0845dc783e/go.mod h1:emZCQorbCU4vsT4fOWvOPXz4eW1wZW4PmDk9uLelYpA= golang.org/x/xerrors v0.0.0-20190717185122-a985d3407aa7/go.mod h1:I/5z698sn9Ka8TeJc9MKroUUfqBBauWjQqLJ2OPfmY0= golang.org/x/xerrors v0.0.0-20191011141410-1b5146add898/go.mod h1:I/5z698sn9Ka8TeJc9MKroUUfqBBauWjQqLJ2OPfmY0= golang.org/x/xerrors v0.0.0-20191204190536-9bdfabe68543/go.mod h1:I/5z698sn9Ka8TeJc9MKroUUfqBBauWjQqLJ2OPfmY0= @@ -1107,7 +1065,6 @@ golang.org/x/xerrors v0.0.0-20200804184101-5ec99f83aff1/go.mod h1:I/5z698sn9Ka8T gonum.org/v1/gonum v0.0.0-20190331200053-3d26580ed485/go.mod h1:2ltnJ7xHfj0zHS40VVPYEAAMTa3ZGguvHGBSJeRWqE0= gonum.org/v1/netlib v0.0.0-20190313105609-8cb42192e0e0/go.mod h1:wa6Ws7BG/ESfp6dHfk7C6KdzKA7wR7u/rKwOGE66zvw= gonum.org/v1/netlib v0.0.0-20190331212654-76723241ea4e/go.mod h1:kS+toOQn6AQKjmKJ7gzohV1XkqsFehRA2FbsbkopSuQ= -google.golang.org/api v0.3.1/go.mod h1:6wY9I6uQWHQ8EM57III9mq/AjF+i8G65rmVagqKMtkk= google.golang.org/api v0.4.0/go.mod h1:8k5glujaEP+g9n7WNsDg8QP6cUVNI86fCNMcbazEtwE= google.golang.org/api v0.6.1-0.20190607001116-5213b8090861/go.mod h1:btoxGiFvQNVUZQ8W08zLtrVS08CNpINPEfxXxgJL1Q4= google.golang.org/api v0.7.0/go.mod h1:WtwebWUNSVBH/HAw79HIFXZNqEvBhG+Ra+ax0hx3E3M= @@ -1134,9 +1091,7 @@ google.golang.org/appengine v1.6.6 h1:lMO5rYAqUxkmaj76jAkRUvt5JZgFymx/+Q5Mzfivuh google.golang.org/appengine v1.6.6/go.mod h1:8WjMMxjGQR8xUklV/ARdw2HLXBOI7O7uCIDZVag1xfc= google.golang.org/genproto v0.0.0-20180817151627-c66870c02cf8/go.mod h1:JiN7NxoALGmiZfu7CAH4rXhgtRTLTxftemlI0sWmxmc= google.golang.org/genproto v0.0.0-20180831171423-11092d34479b/go.mod h1:JiN7NxoALGmiZfu7CAH4rXhgtRTLTxftemlI0sWmxmc= -google.golang.org/genproto v0.0.0-20180924164928-221a8d4f7494/go.mod h1:JiN7NxoALGmiZfu7CAH4rXhgtRTLTxftemlI0sWmxmc= google.golang.org/genproto v0.0.0-20190307195333-5fe7a883aa19/go.mod h1:VzzqZJRnGkLBvHegQrXjBqPurQTc5/KpmUdxsrq26oE= -google.golang.org/genproto v0.0.0-20190404172233-64821d5d2107/go.mod h1:VzzqZJRnGkLBvHegQrXjBqPurQTc5/KpmUdxsrq26oE= google.golang.org/genproto v0.0.0-20190418145605-e7d98fc518a7/go.mod h1:VzzqZJRnGkLBvHegQrXjBqPurQTc5/KpmUdxsrq26oE= google.golang.org/genproto v0.0.0-20190425155659-357c62f0e4bb/go.mod h1:VzzqZJRnGkLBvHegQrXjBqPurQTc5/KpmUdxsrq26oE= google.golang.org/genproto v0.0.0-20190502173448-54afdca5d873/go.mod h1:VzzqZJRnGkLBvHegQrXjBqPurQTc5/KpmUdxsrq26oE= @@ -1164,7 +1119,6 @@ google.golang.org/genproto v0.0.0-20200618031413-b414f8b61790/go.mod h1:jDfRM7Fc google.golang.org/genproto v0.0.0-20200729003335-053ba62fc06f/go.mod h1:FWY/as6DDZQgahTzZj3fqbO1CbirC29ZNUFHwi0/+no= google.golang.org/genproto v0.0.0-20200804131852-c06518451d9c/go.mod h1:FWY/as6DDZQgahTzZj3fqbO1CbirC29ZNUFHwi0/+no= google.golang.org/genproto v0.0.0-20200825200019-8632dd797987/go.mod h1:FWY/as6DDZQgahTzZj3fqbO1CbirC29ZNUFHwi0/+no= -google.golang.org/grpc v1.15.0/go.mod h1:0JHn/cJsOMiMfNA9+DeHDlAU7KAAB5GDlYFpa9MZMio= google.golang.org/grpc v1.17.0/go.mod h1:6QZJwpn2B+Zp71q/5VxRsJ6NXXVCE5NRUHRo+f3cWCs= google.golang.org/grpc v1.19.0/go.mod h1:mqu4LbDTu4XGKhr4mRzUsmM4RtVoemTSY81AxZiDr8c= google.golang.org/grpc v1.20.1/go.mod h1:10oTOabMzJvdu6/UiuZezV6QK5dSlG84ov/aaiqXj38= @@ -1192,7 +1146,6 @@ google.golang.org/protobuf v1.23.1-0.20200526195155-81db48ad09cc/go.mod h1:EGpAD google.golang.org/protobuf v1.24.0/go.mod h1:r/3tXBNzIEhYS9I1OUVjXDlt8tc493IdKGjtUeSXeh4= google.golang.org/protobuf v1.25.0 h1:Ejskq+SyPohKW+1uil0JJMtmHCgJPJ/qWTxr8qp+R4c= google.golang.org/protobuf v1.25.0/go.mod h1:9JNX74DMeImyA3h4bdi1ymwjUzf21/xIlbajtzgsN7c= -gopkg.in/airbrake/gobrake.v2 v2.0.9/go.mod h1:/h5ZAUhDkGaJfjzjKLSjv6zCL6O0LLBxU4K+aSYdM/U= gopkg.in/alecthomas/kingpin.v2 v2.2.6/go.mod h1:FMv+mEhP44yOT+4EoQTLFTRgOQ1FBLkstjWtayDeSgw= gopkg.in/check.v1 v0.0.0-20161208181325-20d25e280405/go.mod h1:Co6ibVJAznAaIkqp8huTwlJQCZ016jof/cbN4VW5Yz0= gopkg.in/check.v1 v1.0.0-20180628173108-788fd7840127/go.mod h1:Co6ibVJAznAaIkqp8huTwlJQCZ016jof/cbN4VW5Yz0= @@ -1206,24 +1159,22 @@ gopkg.in/cheggaaa/pb.v1 v1.0.28/go.mod h1:V/YB90LKu/1FcN3WVnfiiE5oMCibMjukxqG/qS gopkg.in/errgo.v2 v2.1.0/go.mod h1:hNsd1EY+bozCKY1Ytp96fpM3vjJbqLJn88ws8XvfDNI= gopkg.in/fsnotify.v1 v1.4.7/go.mod h1:Tz8NjZHkW78fSQdbUxIjBTcgA1z1m8ZHf0WmKUhAMys= gopkg.in/gcfg.v1 v1.2.0/go.mod h1:yesOnuUOFQAhST5vPY4nbZsb/huCgGGXlipJsBn0b3o= -gopkg.in/gemnasium/logrus-airbrake-hook.v2 v2.1.2/go.mod h1:Xk6kEKp8OKb+X14hQBKWaSkCsqBpgog8nAV2xsGOxlo= gopkg.in/go-playground/assert.v1 v1.2.1/go.mod h1:9RXL0bg/zibRAgZUYszZSwO/z8Y/a8bDuhia5mkpMnE= gopkg.in/go-playground/validator.v9 v9.29.1/go.mod h1:+c9/zcJMFNgbLvly1L1V+PpxWdVbfP1avr/N00E2vyQ= gopkg.in/go-playground/validator.v9 v9.30.0/go.mod h1:+c9/zcJMFNgbLvly1L1V+PpxWdVbfP1avr/N00E2vyQ= gopkg.in/go-playground/validator.v9 v9.31.0 h1:bmXmP2RSNtFES+bn4uYuHT7iJFJv7Vj+an+ZQdDaD1M= gopkg.in/go-playground/validator.v9 v9.31.0/go.mod h1:+c9/zcJMFNgbLvly1L1V+PpxWdVbfP1avr/N00E2vyQ= gopkg.in/inf.v0 v0.9.1/go.mod h1:cWUDdTG/fYaXco+Dcufb5Vnc6Gp2YChqWtbxRZE0mXw= -gopkg.in/ini.v1 v1.51.0 h1:AQvPpx3LzTDM0AjnIRlVFwFFGC+npRopjZxLJj6gdno= gopkg.in/ini.v1 v1.51.0/go.mod h1:pNLf8WUiyNEtQjuu5G5vTm06TEv9tsIgeAvK8hOrP4k= +gopkg.in/ini.v1 v1.62.0 h1:duBzk771uxoUuOlyRLkHsygud9+5lrlGjdFBb4mSKDU= +gopkg.in/ini.v1 v1.62.0/go.mod h1:pNLf8WUiyNEtQjuu5G5vTm06TEv9tsIgeAvK8hOrP4k= gopkg.in/mgo.v2 v2.0.0-20180705113604-9856a29383ce/go.mod h1:yeKp02qBN3iKW1OzL3MGk2IdtZzaj7SFntXj72NppTA= gopkg.in/natefinch/lumberjack.v2 v2.0.0/go.mod h1:l0ndWWf7gzL7RNwBG7wST/UCcT4T24xpD6X8LsfU/+k= gopkg.in/resty.v1 v1.12.0/go.mod h1:mDo4pnntr5jdWRML875a/NmxYqAlA73dVijT2AXvQQo= gopkg.in/square/go-jose.v2 v2.2.2/go.mod h1:M9dMgbHiYLoDGQrXy7OpJDJWiKiU//h+vD76mk0e1AI= -gopkg.in/src-d/go-billy.v4 v4.2.1/go.mod h1:tm33zBoOwxjYHZIE+OV8bxTWFMJLrconzFMd38aARFk= -gopkg.in/src-d/go-billy.v4 v4.3.0/go.mod h1:tm33zBoOwxjYHZIE+OV8bxTWFMJLrconzFMd38aARFk= -gopkg.in/src-d/go-git-fixtures.v3 v3.1.1/go.mod h1:dLBcvytrw/TYZsNTWCnkNF2DSIlzWYqTe3rJR56Ac7g= -gopkg.in/src-d/go-git-fixtures.v3 v3.4.0/go.mod h1:dLBcvytrw/TYZsNTWCnkNF2DSIlzWYqTe3rJR56Ac7g= -gopkg.in/src-d/go-git.v4 v4.10.0/go.mod h1:Vtut8izDyrM8BUVQnzJ+YvmNcem2J89EmfZYCkLokZk= +gopkg.in/src-d/go-billy.v4 v4.3.2/go.mod h1:nDjArDMp+XMs1aFAESLRjfGSgfvoYN0hDfzEk0GjC98= +gopkg.in/src-d/go-git-fixtures.v3 v3.5.0/go.mod h1:dLBcvytrw/TYZsNTWCnkNF2DSIlzWYqTe3rJR56Ac7g= +gopkg.in/src-d/go-git.v4 v4.13.1/go.mod h1:nx5NYcxdKxq5fpltdHnPa2Exj4Sx0EclMWZQbYDu2z8= gopkg.in/tomb.v1 v1.0.0-20141024135613-dd632973f1e7 h1:uRGJdciOHaEIrze2W8Q3AKkepLTh2hOroT7a+7czfdQ= gopkg.in/tomb.v1 v1.0.0-20141024135613-dd632973f1e7/go.mod h1:dt/ZhP58zS4L8KSrWDmTeBkI65Dw0HsyUHuEVlX15mw= gopkg.in/warnings.v0 v0.1.1/go.mod h1:jksf8JmL6Qr/oQM2OXTHunEvvTAsrWBLb6OOjuVWRNI= @@ -1241,7 +1192,6 @@ gopkg.in/yaml.v3 v3.0.0-20200313102051-9f266ea9e77c/go.mod h1:K4uyk7z7BCEPqu6E+C gopkg.in/yaml.v3 v3.0.0-20200615113413-eeeca48fe776 h1:tQIYjPdBoyREyB9XMu+nnTclpTYkz2zFM+lzLJFO4gQ= gopkg.in/yaml.v3 v3.0.0-20200615113413-eeeca48fe776/go.mod h1:K4uyk7z7BCEPqu6E+C64Yfv1cQ7kz7rIZviUmN+EgEM= gotest.tools v0.0.0-20181223230014-1083505acf35/go.mod h1:R//lfYlUuTOTfblYI3lGoAAAebUdzjvbmQsuB7Ykd90= -gotest.tools v2.1.0+incompatible/go.mod h1:DsYFclhRJ6vuDpmuTbkuFWG+y2sxOXAzmJt81HFBacw= gotest.tools v2.2.0+incompatible/go.mod h1:DsYFclhRJ6vuDpmuTbkuFWG+y2sxOXAzmJt81HFBacw= honnef.co/go/tools v0.0.0-20180728063816-88497007e858/go.mod h1:rf3lG4BRIbNafJWhAfAdb/ePZxsR/4RtNHQocxwk9r4= honnef.co/go/tools v0.0.0-20190102054323-c2f93a96b099/go.mod h1:rf3lG4BRIbNafJWhAfAdb/ePZxsR/4RtNHQocxwk9r4= diff --git a/gost/base.go b/gost/base.go deleted file mode 100644 index 4ba1eb0e..00000000 --- a/gost/base.go +++ /dev/null @@ -1,17 +0,0 @@ -// +build !scanner - -package gost - -import ( - "github.com/future-architect/vuls/models" - "github.com/knqyf263/gost/db" -) - -// Base is a base struct -type Base struct { -} - -// FillCVEsWithRedHat fills cve information that has in Gost -func (b Base) FillCVEsWithRedHat(driver db.DB, r *models.ScanResult) error { - return RedHat{}.fillCvesWithRedHatAPI(driver, r) -} diff --git a/gost/debian.go b/gost/debian.go index e3affd11..85805795 100644 --- a/gost/debian.go +++ b/gost/debian.go @@ -5,12 +5,10 @@ package gost import ( "encoding/json" - "github.com/future-architect/vuls/config" "github.com/future-architect/vuls/constant" "github.com/future-architect/vuls/logging" "github.com/future-architect/vuls/models" "github.com/future-architect/vuls/util" - "github.com/knqyf263/gost/db" gostmodels "github.com/knqyf263/gost/models" ) @@ -35,7 +33,7 @@ func (deb Debian) supported(major string) bool { } // DetectUnfixed fills cve information that has in Gost -func (deb Debian) DetectUnfixed(driver db.DB, r *models.ScanResult, _ bool) (nCVEs int, err error) { +func (deb Debian) DetectUnfixed(r *models.ScanResult, _ bool) (nCVEs int, err error) { if !deb.supported(major(r.Release)) { // only logging logging.Log.Warnf("Debian %s is not supported yet", r.Release) @@ -65,8 +63,8 @@ func (deb Debian) DetectUnfixed(driver db.DB, r *models.ScanResult, _ bool) (nCV } packCvesList := []packCves{} - if config.Conf.Gost.IsFetchViaHTTP() { - url, _ := util.URLPathJoin(config.Conf.Gost.URL, "debian", major(scanResult.Release), "pkgs") + if deb.DBDriver.Cnf.IsFetchViaHTTP() { + url, _ := util.URLPathJoin(deb.DBDriver.Cnf.GetURL(), "debian", major(scanResult.Release), "pkgs") responses, err := getAllUnfixedCvesViaHTTP(r, url) if err != nil { return 0, err @@ -88,11 +86,11 @@ func (deb Debian) DetectUnfixed(driver db.DB, r *models.ScanResult, _ bool) (nCV }) } } else { - if driver == nil { + if deb.DBDriver.DB == nil { return 0, nil } for _, pack := range scanResult.Packages { - cveDebs := driver.GetUnfixedCvesDebian(major(scanResult.Release), pack.Name) + cveDebs := deb.DBDriver.DB.GetUnfixedCvesDebian(major(scanResult.Release), pack.Name) cves := []models.CveContent{} for _, cveDeb := range cveDebs { cves = append(cves, *deb.ConvertToModel(&cveDeb)) @@ -106,7 +104,7 @@ func (deb Debian) DetectUnfixed(driver db.DB, r *models.ScanResult, _ bool) (nCV // SrcPack for _, pack := range scanResult.SrcPackages { - cveDebs := driver.GetUnfixedCvesDebian(major(scanResult.Release), pack.Name) + cveDebs := deb.DBDriver.DB.GetUnfixedCvesDebian(major(scanResult.Release), pack.Name) cves := []models.CveContent{} for _, cveDeb := range cveDebs { cves = append(cves, *deb.ConvertToModel(&cveDeb)) diff --git a/gost/gost.go b/gost/gost.go index d715bd2b..0f9d7d17 100644 --- a/gost/gost.go +++ b/gost/gost.go @@ -3,28 +3,84 @@ package gost import ( + "github.com/future-architect/vuls/config" + "github.com/future-architect/vuls/logging" "github.com/future-architect/vuls/models" "github.com/knqyf263/gost/db" + "golang.org/x/xerrors" "github.com/future-architect/vuls/constant" ) +// DBDriver is a DB Driver +type DBDriver struct { + DB db.DB + Cnf config.VulnDictInterface +} + // Client is the interface of OVAL client. type Client interface { - DetectUnfixed(db.DB, *models.ScanResult, bool) (int, error) - FillCVEsWithRedHat(db.DB, *models.ScanResult) error + DetectUnfixed(*models.ScanResult, bool) (int, error) +} + +// Base is a base struct +type Base struct { + DBDriver DBDriver +} + +// FillCVEsWithRedHat fills CVE detailed with Red Hat Security +func FillCVEsWithRedHat(r *models.ScanResult, cnf config.GostConf) error { + db, locked, err := newGostDB(cnf) + if locked { + return xerrors.Errorf("SQLite3 is locked: %s", cnf.GetSQLite3Path()) + } else if err != nil { + return err + } + defer func() { + if err := db.CloseDB(); err != nil { + logging.Log.Errorf("Failed to close DB. err: %+v") + } + }() + return RedHat{Base{DBDriver{DB: db, Cnf: &cnf}}}.fillCvesWithRedHatAPI(r) } // NewClient make Client by family -func NewClient(family string) Client { +func NewClient(cnf config.GostConf, family string) (Client, error) { + db, locked, err := newGostDB(cnf) + if locked { + return nil, xerrors.Errorf("SQLite3 is locked: %s", cnf.GetSQLite3Path()) + } else if err != nil { + return nil, err + } + + driver := DBDriver{DB: db, Cnf: &cnf} + switch family { case constant.RedHat, constant.CentOS: - return RedHat{} + return RedHat{Base{DBDriver: driver}}, nil case constant.Debian, constant.Raspbian: - return Debian{} + return Debian{Base{DBDriver: driver}}, nil case constant.Windows: - return Microsoft{} + return Microsoft{Base{DBDriver: driver}}, nil default: - return Pseudo{} + return Pseudo{}, nil } } + +// NewGostDB returns db client for Gost +func newGostDB(cnf config.GostConf) (driver db.DB, locked bool, err error) { + if cnf.IsFetchViaHTTP() { + return nil, false, nil + } + path := cnf.GetURL() + if cnf.GetType() == "sqlite3" { + path = cnf.GetSQLite3Path() + } + if driver, locked, err = db.NewDB(cnf.GetType(), path, cnf.GetDebugSQL()); err != nil { + if locked { + return nil, true, xerrors.Errorf("gostDB is locked. err: %w", err) + } + return nil, false, err + } + return driver, false, nil +} diff --git a/gost/microsoft.go b/gost/microsoft.go index 6b2853b1..407e232c 100644 --- a/gost/microsoft.go +++ b/gost/microsoft.go @@ -6,7 +6,6 @@ import ( "strings" "github.com/future-architect/vuls/models" - "github.com/knqyf263/gost/db" gostmodels "github.com/knqyf263/gost/models" ) @@ -16,15 +15,15 @@ type Microsoft struct { } // DetectUnfixed fills cve information that has in Gost -func (ms Microsoft) DetectUnfixed(driver db.DB, r *models.ScanResult, _ bool) (nCVEs int, err error) { - if driver == nil { +func (ms Microsoft) DetectUnfixed(r *models.ScanResult, _ bool) (nCVEs int, err error) { + if ms.DBDriver.DB == nil { return 0, nil } cveIDs := []string{} for cveID := range r.ScannedCves { cveIDs = append(cveIDs, cveID) } - for cveID, msCve := range driver.GetMicrosoftMulti(cveIDs) { + for cveID, msCve := range ms.DBDriver.DB.GetMicrosoftMulti(cveIDs) { if _, ok := r.ScannedCves[cveID]; !ok { continue } diff --git a/gost/pseudo.go b/gost/pseudo.go index dc9358fb..d2c9bd37 100644 --- a/gost/pseudo.go +++ b/gost/pseudo.go @@ -4,7 +4,6 @@ package gost import ( "github.com/future-architect/vuls/models" - "github.com/knqyf263/gost/db" ) // Pseudo is Gost client except for RedHat family and Debian @@ -13,6 +12,6 @@ type Pseudo struct { } // DetectUnfixed fills cve information that has in Gost -func (pse Pseudo) DetectUnfixed(driver db.DB, r *models.ScanResult, _ bool) (int, error) { +func (pse Pseudo) DetectUnfixed(r *models.ScanResult, _ bool) (int, error) { return 0, nil } diff --git a/gost/redhat.go b/gost/redhat.go index aede2fb9..487de369 100644 --- a/gost/redhat.go +++ b/gost/redhat.go @@ -10,7 +10,6 @@ import ( "github.com/future-architect/vuls/config" "github.com/future-architect/vuls/models" "github.com/future-architect/vuls/util" - "github.com/knqyf263/gost/db" gostmodels "github.com/knqyf263/gost/models" ) @@ -20,14 +19,9 @@ type RedHat struct { } // DetectUnfixed fills cve information that has in Gost -func (red RedHat) DetectUnfixed(driver db.DB, r *models.ScanResult, ignoreWillNotFix bool) (nCVEs int, err error) { - return red.detectUnfixed(driver, r, ignoreWillNotFix) -} - -func (red RedHat) detectUnfixed(driver db.DB, r *models.ScanResult, ignoreWillNotFix bool) (nCVEs int, err error) { - if config.Conf.Gost.IsFetchViaHTTP() { - prefix, _ := util.URLPathJoin(config.Conf.Gost.URL, - "redhat", major(r.Release), "pkgs") +func (red RedHat) DetectUnfixed(r *models.ScanResult, ignoreWillNotFix bool) (nCVEs int, err error) { + if red.DBDriver.Cnf.IsFetchViaHTTP() { + prefix, _ := util.URLPathJoin(red.DBDriver.Cnf.GetURL(), "redhat", major(r.Release), "pkgs") responses, err := getAllUnfixedCvesViaHTTP(r, prefix) if err != nil { return 0, err @@ -45,12 +39,12 @@ func (red RedHat) detectUnfixed(driver db.DB, r *models.ScanResult, ignoreWillNo } } } else { - if driver == nil { + if red.DBDriver.DB == nil { return 0, nil } for _, pack := range r.Packages { // CVE-ID: RedhatCVE - cves := driver.GetUnfixedCvesRedhat(major(r.Release), pack.Name, ignoreWillNotFix) + cves := red.DBDriver.DB.GetUnfixedCvesRedhat(major(r.Release), pack.Name, ignoreWillNotFix) for _, cve := range cves { if newly := red.setUnfixedCveToScanResult(&cve, r); newly { nCVEs++ @@ -61,7 +55,7 @@ func (red RedHat) detectUnfixed(driver db.DB, r *models.ScanResult, ignoreWillNo return nCVEs, nil } -func (red RedHat) fillCvesWithRedHatAPI(driver db.DB, r *models.ScanResult) error { +func (red RedHat) fillCvesWithRedHatAPI(r *models.ScanResult) error { cveIDs := []string{} for cveID, vuln := range r.ScannedCves { if _, ok := vuln.CveContents[models.RedHatAPI]; ok { @@ -70,9 +64,8 @@ func (red RedHat) fillCvesWithRedHatAPI(driver db.DB, r *models.ScanResult) erro cveIDs = append(cveIDs, cveID) } - if config.Conf.Gost.IsFetchViaHTTP() { - prefix, _ := util.URLPathJoin(config.Conf.Gost.URL, - "redhat", "cves") + if red.DBDriver.Cnf.IsFetchViaHTTP() { + prefix, _ := util.URLPathJoin(config.Conf.Gost.URL, "redhat", "cves") responses, err := getCvesViaHTTP(cveIDs, prefix) if err != nil { return err @@ -88,10 +81,10 @@ func (red RedHat) fillCvesWithRedHatAPI(driver db.DB, r *models.ScanResult) erro red.setFixedCveToScanResult(&redCve, r) } } else { - if driver == nil { + if red.DBDriver.DB == nil { return nil } - for _, redCve := range driver.GetRedhatMulti(cveIDs) { + for _, redCve := range red.DBDriver.DB.GetRedhatMulti(cveIDs) { if len(redCve.Name) == 0 { continue } diff --git a/integration/data/amazon_2.json b/integration/data/amazon_2.json new file mode 100755 index 00000000..d3269600 --- /dev/null +++ b/integration/data/amazon_2.json @@ -0,0 +1,6534 @@ +{ + "jsonVersion": 4, + "lang": "", + "serverUUID": "", + "serverName": "amazon_2", + "family": "amazon", + "release": "2 (Karoo)", + "container": { + "containerID": "", + "name": "", + "image": "", + "type": "", + "uuid": "" + }, + "platform": { + "name": "aws", + "instanceID": "i-048327c9df8186148" + }, + "ipv4Addrs": [ + "192.168.0.33" + ], + "scannedAt": "2021-03-24T16:12:58.527243903+09:00", + "scanMode": "fast-root mode", + "scannedVersion": "v0.15.9", + "scannedRevision": "build-20210324_121008_fc3b438", + "scannedBy": "dev", + "scannedVia": "remote", + "scannedIpv4Addrs": [ + "172.21.0.1", + "172.19.0.1", + "172.18.0.1", + "172.17.0.1", + "172.20.0.1" + ], + "reportedAt": "0001-01-01T00:00:00Z", + "reportedVersion": "", + "reportedRevision": "", + "reportedBy": "", + "errors": [], + "warnings": [], + "scannedCves": {}, + "runningKernel": { + "release": "4.14.225-168.357.amzn2.x86_64", + "version": "", + "rebootRequired": false + }, + "packages": { + "GeoIP": { + "name": "GeoIP", + "version": "1.5.0", + "release": "11.amzn2.0.2", + "newVersion": "1.5.0", + "newRelease": "11.amzn2.0.2", + "arch": "x86_64", + "repository": "" + }, + "PyYAML": { + "name": "PyYAML", + "version": "3.10", + "release": "11.amzn2.0.2", + "newVersion": "3.10", + "newRelease": "11.amzn2.0.2", + "arch": "x86_64", + "repository": "" + }, + "acl": { + "name": "acl", + "version": "2.2.51", + "release": "14.amzn2", + "newVersion": "2.2.51", + "newRelease": "14.amzn2", + "arch": "x86_64", + "repository": "" + }, + "acpid": { + "name": "acpid", + "version": "2.0.19", + "release": "9.amzn2.0.1", + "newVersion": "2.0.19", + "newRelease": "9.amzn2.0.1", + "arch": "x86_64", + "repository": "", + "AffectedProcs": [ + { + "pid": "3243", + "name": "acpid" + } + ] + }, + "amazon-linux-extras": { + "name": "amazon-linux-extras", + "version": "2.0.0", + "release": "1.amzn2", + "newVersion": "2.0.0", + "newRelease": "1.amzn2", + "arch": "noarch", + "repository": "" + }, + "amazon-linux-extras-yum-plugin": { + "name": "amazon-linux-extras-yum-plugin", + "version": "2.0.0", + "release": "1.amzn2", + "newVersion": "2.0.0", + "newRelease": "1.amzn2", + "arch": "noarch", + "repository": "" + }, + "amazon-ssm-agent": { + "name": "amazon-ssm-agent", + "version": "3.0.161.0", + "release": "1.amzn2", + "newVersion": "3.0.161.0", + "newRelease": "1.amzn2", + "arch": "x86_64", + "repository": "", + "AffectedProcs": [ + { + "pid": "3213", + "name": "ssm-agent-worke" + }, + { + "pid": "3031", + "name": "amazon-ssm-agen" + } + ] + }, + "at": { + "name": "at", + "version": "3.1.13", + "release": "24.amzn2", + "newVersion": "3.1.13", + "newRelease": "24.amzn2", + "arch": "x86_64", + "repository": "", + "AffectedProcs": [ + { + "pid": "3057", + "name": "atd" + } + ] + }, + "attr": { + "name": "attr", + "version": "2.4.46", + "release": "12.amzn2.0.2", + "newVersion": "2.4.46", + "newRelease": "12.amzn2.0.2", + "arch": "x86_64", + "repository": "" + }, + "audit": { + "name": "audit", + "version": "2.8.1", + "release": "3.amzn2.1", + "newVersion": "2.8.1", + "newRelease": "3.amzn2.1", + "arch": "x86_64", + "repository": "", + "AffectedProcs": [ + { + "pid": "2443", + "name": "auditd" + } + ] + }, + "audit-libs": { + "name": "audit-libs", + "version": "2.8.1", + "release": "3.amzn2.1", + "newVersion": "2.8.1", + "newRelease": "3.amzn2.1", + "arch": "x86_64", + "repository": "", + "AffectedProcs": [ + { + "pid": "1", + "name": "systemd" + }, + { + "pid": "2443", + "name": "auditd" + }, + { + "pid": "3057", + "name": "atd" + }, + { + "pid": "3312", + "name": "sshd" + }, + { + "pid": "2480", + "name": "dbus-daemon" + }, + { + "pid": "3050", + "name": "crond" + }, + { + "pid": "3330", + "name": "sshd" + }, + { + "pid": "3208", + "name": "sshd", + "listenPortStats": [ + { + "bindAddress": "*", + "port": "22", + "portReachableTo": [] + } + ] + } + ] + }, + "authconfig": { + "name": "authconfig", + "version": "6.2.8", + "release": "30.amzn2.0.2", + "newVersion": "6.2.8", + "newRelease": "30.amzn2.0.2", + "arch": "x86_64", + "repository": "" + }, + "aws-cfn-bootstrap": { + "name": "aws-cfn-bootstrap", + "version": "1.4", + "release": "34.amzn2", + "newVersion": "1.4", + "newRelease": "34.amzn2", + "arch": "noarch", + "repository": "" + }, + "awscli": { + "name": "awscli", + "version": "1.18.147", + "release": "1.amzn2.0.1", + "newVersion": "1.18.147", + "newRelease": "1.amzn2.0.1", + "arch": "noarch", + "repository": "" + }, + "basesystem": { + "name": "basesystem", + "version": "10.0", + "release": "7.amzn2.0.1", + "newVersion": "10.0", + "newRelease": "7.amzn2.0.1", + "arch": "noarch", + "repository": "" + }, + "bash": { + "name": "bash", + "version": "4.2.46", + "release": "34.amzn2", + "newVersion": "4.2.46", + "newRelease": "34.amzn2", + "arch": "x86_64", + "repository": "" + }, + "bash-completion": { + "name": "bash-completion", + "version": "1:2.1", + "release": "6.amzn2", + "newVersion": "1:2.1", + "newRelease": "6.amzn2", + "arch": "noarch", + "repository": "" + }, + "bc": { + "name": "bc", + "version": "1.06.95", + "release": "13.amzn2.0.2", + "newVersion": "1.06.95", + "newRelease": "13.amzn2.0.2", + "arch": "x86_64", + "repository": "" + }, + "bind-export-libs": { + "name": "bind-export-libs", + "version": "32:9.11.4", + "release": "26.P2.amzn2.4", + "newVersion": "32:9.11.4", + "newRelease": "26.P2.amzn2.4", + "arch": "x86_64", + "repository": "", + "AffectedProcs": [ + { + "pid": "2833", + "name": "dhclient" + }, + { + "pid": "2717", + "name": "dhclient" + } + ] + }, + "bind-libs": { + "name": "bind-libs", + "version": "32:9.11.4", + "release": "26.P2.amzn2.4", + "newVersion": "32:9.11.4", + "newRelease": "26.P2.amzn2.4", + "arch": "x86_64", + "repository": "" + }, + "bind-libs-lite": { + "name": "bind-libs-lite", + "version": "32:9.11.4", + "release": "26.P2.amzn2.4", + "newVersion": "32:9.11.4", + "newRelease": "26.P2.amzn2.4", + "arch": "x86_64", + "repository": "" + }, + "bind-license": { + "name": "bind-license", + "version": "32:9.11.4", + "release": "26.P2.amzn2.4", + "newVersion": "32:9.11.4", + "newRelease": "26.P2.amzn2.4", + "arch": "noarch", + "repository": "" + }, + "bind-utils": { + "name": "bind-utils", + "version": "32:9.11.4", + "release": "26.P2.amzn2.4", + "newVersion": "32:9.11.4", + "newRelease": "26.P2.amzn2.4", + "arch": "x86_64", + "repository": "" + }, + "binutils": { + "name": "binutils", + "version": "2.29.1", + "release": "30.amzn2", + "newVersion": "2.29.1", + "newRelease": "30.amzn2", + "arch": "x86_64", + "repository": "" + }, + "blktrace": { + "name": "blktrace", + "version": "1.0.5", + "release": "9.amzn2", + "newVersion": "1.0.5", + "newRelease": "9.amzn2", + "arch": "x86_64", + "repository": "" + }, + "boost-date-time": { + "name": "boost-date-time", + "version": "1.53.0", + "release": "27.amzn2.0.5", + "newVersion": "1.53.0", + "newRelease": "27.amzn2.0.5", + "arch": "x86_64", + "repository": "" + }, + "boost-system": { + "name": "boost-system", + "version": "1.53.0", + "release": "27.amzn2.0.5", + "newVersion": "1.53.0", + "newRelease": "27.amzn2.0.5", + "arch": "x86_64", + "repository": "" + }, + "boost-thread": { + "name": "boost-thread", + "version": "1.53.0", + "release": "27.amzn2.0.5", + "newVersion": "1.53.0", + "newRelease": "27.amzn2.0.5", + "arch": "x86_64", + "repository": "" + }, + "bridge-utils": { + "name": "bridge-utils", + "version": "1.5", + "release": "9.amzn2.0.2", + "newVersion": "1.5", + "newRelease": "9.amzn2.0.2", + "arch": "x86_64", + "repository": "" + }, + "bzip2": { + "name": "bzip2", + "version": "1.0.6", + "release": "13.amzn2.0.2", + "newVersion": "1.0.6", + "newRelease": "13.amzn2.0.2", + "arch": "x86_64", + "repository": "" + }, + "bzip2-libs": { + "name": "bzip2-libs", + "version": "1.0.6", + "release": "13.amzn2.0.2", + "newVersion": "1.0.6", + "newRelease": "13.amzn2.0.2", + "arch": "x86_64", + "repository": "", + "AffectedProcs": [ + { + "pid": "3034", + "name": "rsyslogd" + }, + { + "pid": "2485", + "name": "rpcbind", + "listenPortStats": [ + { + "bindAddress": "*", + "port": "111", + "portReachableTo": [] + } + ] + }, + { + "pid": "3312", + "name": "sshd" + }, + { + "pid": "2480", + "name": "dbus-daemon" + }, + { + "pid": "3330", + "name": "sshd" + }, + { + "pid": "2491", + "name": "chronyd" + }, + { + "pid": "1693", + "name": "lvmetad" + }, + { + "pid": "3208", + "name": "sshd", + "listenPortStats": [ + { + "bindAddress": "*", + "port": "22", + "portReachableTo": [] + } + ] + }, + { + "pid": "2833", + "name": "dhclient" + }, + { + "pid": "2717", + "name": "dhclient" + } + ] + }, + "ca-certificates": { + "name": "ca-certificates", + "version": "2020.2.41", + "release": "70.0.amzn2.0.1", + "newVersion": "2020.2.41", + "newRelease": "70.0.amzn2.0.1", + "arch": "noarch", + "repository": "" + }, + "chkconfig": { + "name": "chkconfig", + "version": "1.7.4", + "release": "1.amzn2.0.2", + "newVersion": "1.7.4", + "newRelease": "1.amzn2.0.2", + "arch": "x86_64", + "repository": "" + }, + "chrony": { + "name": "chrony", + "version": "3.5.1", + "release": "1.amzn2.0.1", + "newVersion": "3.5.1", + "newRelease": "1.amzn2.0.1", + "arch": "x86_64", + "repository": "", + "AffectedProcs": [ + { + "pid": "2491", + "name": "chronyd" + } + ] + }, + "cloud-init": { + "name": "cloud-init", + "version": "19.3", + "release": "43.amzn2", + "newVersion": "19.3", + "newRelease": "43.amzn2", + "arch": "noarch", + "repository": "" + }, + "cloud-utils-growpart": { + "name": "cloud-utils-growpart", + "version": "0.31", + "release": "2.amzn2", + "newVersion": "0.31", + "newRelease": "2.amzn2", + "arch": "noarch", + "repository": "" + }, + "coreutils": { + "name": "coreutils", + "version": "8.22", + "release": "24.amzn2", + "newVersion": "8.22", + "newRelease": "24.amzn2", + "arch": "x86_64", + "repository": "" + }, + "cpio": { + "name": "cpio", + "version": "2.11", + "release": "28.amzn2", + "newVersion": "2.11", + "newRelease": "28.amzn2", + "arch": "x86_64", + "repository": "" + }, + "cracklib": { + "name": "cracklib", + "version": "2.9.0", + "release": "11.amzn2.0.2", + "newVersion": "2.9.0", + "newRelease": "11.amzn2.0.2", + "arch": "x86_64", + "repository": "", + "AffectedProcs": [ + { + "pid": "3312", + "name": "sshd" + }, + { + "pid": "3330", + "name": "sshd" + } + ] + }, + "cracklib-dicts": { + "name": "cracklib-dicts", + "version": "2.9.0", + "release": "11.amzn2.0.2", + "newVersion": "2.9.0", + "newRelease": "11.amzn2.0.2", + "arch": "x86_64", + "repository": "" + }, + "cronie": { + "name": "cronie", + "version": "1.4.11", + "release": "23.amzn2", + "newVersion": "1.4.11", + "newRelease": "23.amzn2", + "arch": "x86_64", + "repository": "", + "AffectedProcs": [ + { + "pid": "3050", + "name": "crond" + } + ] + }, + "cronie-anacron": { + "name": "cronie-anacron", + "version": "1.4.11", + "release": "23.amzn2", + "newVersion": "1.4.11", + "newRelease": "23.amzn2", + "arch": "x86_64", + "repository": "" + }, + "crontabs": { + "name": "crontabs", + "version": "1.11", + "release": "6.20121102git.amzn2", + "newVersion": "1.11", + "newRelease": "6.20121102git.amzn2", + "arch": "noarch", + "repository": "" + }, + "cryptsetup": { + "name": "cryptsetup", + "version": "1.7.4", + "release": "4.amzn2", + "newVersion": "1.7.4", + "newRelease": "4.amzn2", + "arch": "x86_64", + "repository": "" + }, + "cryptsetup-libs": { + "name": "cryptsetup-libs", + "version": "1.7.4", + "release": "4.amzn2", + "newVersion": "1.7.4", + "newRelease": "4.amzn2", + "arch": "x86_64", + "repository": "" + }, + "curl": { + "name": "curl", + "version": "7.61.1", + "release": "12.amzn2.0.2", + "newVersion": "7.61.1", + "newRelease": "12.amzn2.0.2", + "arch": "x86_64", + "repository": "" + }, + "cyrus-sasl-lib": { + "name": "cyrus-sasl-lib", + "version": "2.1.26", + "release": "23.amzn2", + "newVersion": "2.1.26", + "newRelease": "23.amzn2", + "arch": "x86_64", + "repository": "", + "AffectedProcs": [ + { + "pid": "2978", + "name": "master", + "listenPortStats": [ + { + "bindAddress": "127.0.0.1", + "port": "25", + "portReachableTo": [] + } + ] + }, + { + "pid": "3312", + "name": "sshd" + }, + { + "pid": "2979", + "name": "pickup" + }, + { + "pid": "2512", + "name": "rngd" + }, + { + "pid": "2980", + "name": "qmgr" + }, + { + "pid": "3330", + "name": "sshd" + }, + { + "pid": "3208", + "name": "sshd", + "listenPortStats": [ + { + "bindAddress": "*", + "port": "22", + "portReachableTo": [] + } + ] + }, + { + "pid": "2833", + "name": "dhclient" + }, + { + "pid": "2717", + "name": "dhclient" + } + ] + }, + "cyrus-sasl-plain": { + "name": "cyrus-sasl-plain", + "version": "2.1.26", + "release": "23.amzn2", + "newVersion": "2.1.26", + "newRelease": "23.amzn2", + "arch": "x86_64", + "repository": "" + }, + "dbus": { + "name": "dbus", + "version": "1:1.10.24", + "release": "7.amzn2", + "newVersion": "1:1.10.24", + "newRelease": "7.amzn2", + "arch": "x86_64", + "repository": "", + "AffectedProcs": [ + { + "pid": "2480", + "name": "dbus-daemon" + } + ] + }, + "dbus-libs": { + "name": "dbus-libs", + "version": "1:1.10.24", + "release": "7.amzn2", + "newVersion": "1:1.10.24", + "newRelease": "7.amzn2", + "arch": "x86_64", + "repository": "", + "AffectedProcs": [ + { + "pid": "2480", + "name": "dbus-daemon" + } + ] + }, + "device-mapper": { + "name": "device-mapper", + "version": "7:1.02.146", + "release": "4.amzn2.0.2", + "newVersion": "7:1.02.146", + "newRelease": "4.amzn2.0.2", + "arch": "x86_64", + "repository": "" + }, + "device-mapper-event": { + "name": "device-mapper-event", + "version": "7:1.02.146", + "release": "4.amzn2.0.2", + "newVersion": "7:1.02.146", + "newRelease": "4.amzn2.0.2", + "arch": "x86_64", + "repository": "" + }, + "device-mapper-event-libs": { + "name": "device-mapper-event-libs", + "version": "7:1.02.146", + "release": "4.amzn2.0.2", + "newVersion": "7:1.02.146", + "newRelease": "4.amzn2.0.2", + "arch": "x86_64", + "repository": "" + }, + "device-mapper-libs": { + "name": "device-mapper-libs", + "version": "7:1.02.146", + "release": "4.amzn2.0.2", + "newVersion": "7:1.02.146", + "newRelease": "4.amzn2.0.2", + "arch": "x86_64", + "repository": "", + "AffectedProcs": [ + { + "pid": "1693", + "name": "lvmetad" + } + ] + }, + "device-mapper-persistent-data": { + "name": "device-mapper-persistent-data", + "version": "0.7.3", + "release": "3.amzn2", + "newVersion": "0.7.3", + "newRelease": "3.amzn2", + "arch": "x86_64", + "repository": "" + }, + "dhclient": { + "name": "dhclient", + "version": "12:4.2.5", + "release": "77.amzn2.1.1", + "newVersion": "12:4.2.5", + "newRelease": "77.amzn2.1.1", + "arch": "x86_64", + "repository": "", + "AffectedProcs": [ + { + "pid": "2833", + "name": "dhclient" + }, + { + "pid": "2717", + "name": "dhclient" + } + ] + }, + "dhcp-common": { + "name": "dhcp-common", + "version": "12:4.2.5", + "release": "77.amzn2.1.1", + "newVersion": "12:4.2.5", + "newRelease": "77.amzn2.1.1", + "arch": "x86_64", + "repository": "" + }, + "dhcp-libs": { + "name": "dhcp-libs", + "version": "12:4.2.5", + "release": "77.amzn2.1.1", + "newVersion": "12:4.2.5", + "newRelease": "77.amzn2.1.1", + "arch": "x86_64", + "repository": "", + "AffectedProcs": [ + { + "pid": "2833", + "name": "dhclient" + }, + { + "pid": "2717", + "name": "dhclient" + } + ] + }, + "diffutils": { + "name": "diffutils", + "version": "3.3", + "release": "5.amzn2", + "newVersion": "3.3", + "newRelease": "5.amzn2", + "arch": "x86_64", + "repository": "" + }, + "dmidecode": { + "name": "dmidecode", + "version": "1:3.0", + "release": "5.amzn2.0.2", + "newVersion": "1:3.0", + "newRelease": "5.amzn2.0.2", + "arch": "x86_64", + "repository": "" + }, + "dmraid": { + "name": "dmraid", + "version": "1.0.0.rc16", + "release": "28.amzn2.0.2", + "newVersion": "1.0.0.rc16", + "newRelease": "28.amzn2.0.2", + "arch": "x86_64", + "repository": "" + }, + "dmraid-events": { + "name": "dmraid-events", + "version": "1.0.0.rc16", + "release": "28.amzn2.0.2", + "newVersion": "1.0.0.rc16", + "newRelease": "28.amzn2.0.2", + "arch": "x86_64", + "repository": "" + }, + "dosfstools": { + "name": "dosfstools", + "version": "3.0.20", + "release": "10.amzn2", + "newVersion": "3.0.20", + "newRelease": "10.amzn2", + "arch": "x86_64", + "repository": "" + }, + "dracut": { + "name": "dracut", + "version": "033", + "release": "535.amzn2.1.3", + "newVersion": "033", + "newRelease": "535.amzn2.1.3", + "arch": "x86_64", + "repository": "" + }, + "dracut-config-ec2": { + "name": "dracut-config-ec2", + "version": "1.0", + "release": "1.amzn2", + "newVersion": "1.0", + "newRelease": "1.amzn2", + "arch": "noarch", + "repository": "" + }, + "dracut-config-generic": { + "name": "dracut-config-generic", + "version": "033", + "release": "535.amzn2.1.3", + "newVersion": "033", + "newRelease": "535.amzn2.1.3", + "arch": "x86_64", + "repository": "" + }, + "dyninst": { + "name": "dyninst", + "version": "9.3.1", + "release": "3.amzn2", + "newVersion": "9.3.1", + "newRelease": "3.amzn2", + "arch": "x86_64", + "repository": "" + }, + "e2fsprogs": { + "name": "e2fsprogs", + "version": "1.42.9", + "release": "19.amzn2", + "newVersion": "1.42.9", + "newRelease": "19.amzn2", + "arch": "x86_64", + "repository": "" + }, + "e2fsprogs-libs": { + "name": "e2fsprogs-libs", + "version": "1.42.9", + "release": "19.amzn2", + "newVersion": "1.42.9", + "newRelease": "19.amzn2", + "arch": "x86_64", + "repository": "" + }, + "ec2-hibinit-agent": { + "name": "ec2-hibinit-agent", + "version": "1.0.2", + "release": "3.amzn2", + "newVersion": "1.0.2", + "newRelease": "3.amzn2", + "arch": "noarch", + "repository": "" + }, + "ec2-instance-connect": { + "name": "ec2-instance-connect", + "version": "1.1", + "release": "13.amzn2", + "newVersion": "1.1", + "newRelease": "13.amzn2", + "arch": "noarch", + "repository": "" + }, + "ec2-net-utils": { + "name": "ec2-net-utils", + "version": "1.4", + "release": "3.amzn2", + "newVersion": "1.4", + "newRelease": "3.amzn2", + "arch": "noarch", + "repository": "" + }, + "ec2-utils": { + "name": "ec2-utils", + "version": "1.2", + "release": "3.amzn2", + "newVersion": "1.2", + "newRelease": "3.amzn2", + "arch": "noarch", + "repository": "" + }, + "ed": { + "name": "ed", + "version": "1.9", + "release": "4.amzn2.0.2", + "newVersion": "1.9", + "newRelease": "4.amzn2.0.2", + "arch": "x86_64", + "repository": "" + }, + "elfutils-default-yama-scope": { + "name": "elfutils-default-yama-scope", + "version": "0.176", + "release": "2.amzn2", + "newVersion": "0.176", + "newRelease": "2.amzn2", + "arch": "noarch", + "repository": "" + }, + "elfutils-libelf": { + "name": "elfutils-libelf", + "version": "0.176", + "release": "2.amzn2", + "newVersion": "0.176", + "newRelease": "2.amzn2", + "arch": "x86_64", + "repository": "", + "AffectedProcs": [ + { + "pid": "3034", + "name": "rsyslogd" + }, + { + "pid": "2485", + "name": "rpcbind", + "listenPortStats": [ + { + "bindAddress": "*", + "port": "111", + "portReachableTo": [] + } + ] + }, + { + "pid": "3312", + "name": "sshd" + }, + { + "pid": "2480", + "name": "dbus-daemon" + }, + { + "pid": "3330", + "name": "sshd" + }, + { + "pid": "2491", + "name": "chronyd" + }, + { + "pid": "1693", + "name": "lvmetad" + }, + { + "pid": "3208", + "name": "sshd", + "listenPortStats": [ + { + "bindAddress": "*", + "port": "22", + "portReachableTo": [] + } + ] + }, + { + "pid": "2833", + "name": "dhclient" + }, + { + "pid": "2717", + "name": "dhclient" + } + ] + }, + "elfutils-libs": { + "name": "elfutils-libs", + "version": "0.176", + "release": "2.amzn2", + "newVersion": "0.176", + "newRelease": "2.amzn2", + "arch": "x86_64", + "repository": "", + "AffectedProcs": [ + { + "pid": "3034", + "name": "rsyslogd" + }, + { + "pid": "2485", + "name": "rpcbind", + "listenPortStats": [ + { + "bindAddress": "*", + "port": "111", + "portReachableTo": [] + } + ] + }, + { + "pid": "3312", + "name": "sshd" + }, + { + "pid": "2480", + "name": "dbus-daemon" + }, + { + "pid": "3330", + "name": "sshd" + }, + { + "pid": "2491", + "name": "chronyd" + }, + { + "pid": "1693", + "name": "lvmetad" + }, + { + "pid": "3208", + "name": "sshd", + "listenPortStats": [ + { + "bindAddress": "*", + "port": "22", + "portReachableTo": [] + } + ] + }, + { + "pid": "2833", + "name": "dhclient" + }, + { + "pid": "2717", + "name": "dhclient" + } + ] + }, + "ethtool": { + "name": "ethtool", + "version": "2:4.8", + "release": "10.amzn2", + "newVersion": "2:4.8", + "newRelease": "10.amzn2", + "arch": "x86_64", + "repository": "" + }, + "expat": { + "name": "expat", + "version": "2.1.0", + "release": "12.amzn2", + "newVersion": "2.1.0", + "newRelease": "12.amzn2", + "arch": "x86_64", + "repository": "", + "AffectedProcs": [ + { + "pid": "2480", + "name": "dbus-daemon" + } + ] + }, + "file": { + "name": "file", + "version": "5.11", + "release": "36.amzn2.0.1", + "newVersion": "5.11", + "newRelease": "36.amzn2.0.1", + "arch": "x86_64", + "repository": "" + }, + "file-libs": { + "name": "file-libs", + "version": "5.11", + "release": "36.amzn2.0.1", + "newVersion": "5.11", + "newRelease": "36.amzn2.0.1", + "arch": "x86_64", + "repository": "" + }, + "filesystem": { + "name": "filesystem", + "version": "3.2", + "release": "25.amzn2.0.4", + "newVersion": "3.2", + "newRelease": "25.amzn2.0.4", + "arch": "x86_64", + "repository": "" + }, + "findutils": { + "name": "findutils", + "version": "1:4.5.11", + "release": "6.amzn2", + "newVersion": "1:4.5.11", + "newRelease": "6.amzn2", + "arch": "x86_64", + "repository": "" + }, + "fipscheck": { + "name": "fipscheck", + "version": "1.4.1", + "release": "6.amzn2.0.2", + "newVersion": "1.4.1", + "newRelease": "6.amzn2.0.2", + "arch": "x86_64", + "repository": "" + }, + "fipscheck-lib": { + "name": "fipscheck-lib", + "version": "1.4.1", + "release": "6.amzn2.0.2", + "newVersion": "1.4.1", + "newRelease": "6.amzn2.0.2", + "arch": "x86_64", + "repository": "", + "AffectedProcs": [ + { + "pid": "3312", + "name": "sshd" + }, + { + "pid": "3330", + "name": "sshd" + }, + { + "pid": "3208", + "name": "sshd", + "listenPortStats": [ + { + "bindAddress": "*", + "port": "22", + "portReachableTo": [] + } + ] + } + ] + }, + "freetype": { + "name": "freetype", + "version": "2.8", + "release": "14.amzn2.1", + "newVersion": "2.8", + "newRelease": "14.amzn2.1", + "arch": "x86_64", + "repository": "" + }, + "gawk": { + "name": "gawk", + "version": "4.0.2", + "release": "4.amzn2.1.2", + "newVersion": "4.0.2", + "newRelease": "4.amzn2.1.2", + "arch": "x86_64", + "repository": "" + }, + "gdbm": { + "name": "gdbm", + "version": "1:1.13", + "release": "6.amzn2.0.2", + "newVersion": "1:1.13", + "newRelease": "6.amzn2.0.2", + "arch": "x86_64", + "repository": "" + }, + "gdisk": { + "name": "gdisk", + "version": "0.8.10", + "release": "3.amzn2", + "newVersion": "0.8.10", + "newRelease": "3.amzn2", + "arch": "x86_64", + "repository": "" + }, + "generic-logos": { + "name": "generic-logos", + "version": "18.0.0", + "release": "4.amzn2", + "newVersion": "18.0.0", + "newRelease": "4.amzn2", + "arch": "noarch", + "repository": "" + }, + "gettext": { + "name": "gettext", + "version": "0.19.8.1", + "release": "3.amzn2", + "newVersion": "0.19.8.1", + "newRelease": "3.amzn2", + "arch": "x86_64", + "repository": "" + }, + "gettext-libs": { + "name": "gettext-libs", + "version": "0.19.8.1", + "release": "3.amzn2", + "newVersion": "0.19.8.1", + "newRelease": "3.amzn2", + "arch": "x86_64", + "repository": "" + }, + "glib2": { + "name": "glib2", + "version": "2.56.1", + "release": "7.amzn2.0.1", + "newVersion": "2.56.1", + "newRelease": "7.amzn2.0.1", + "arch": "x86_64", + "repository": "" + }, + "glibc": { + "name": "glibc", + "version": "2.26", + "release": "42.amzn2", + "newVersion": "2.26", + "newRelease": "42.amzn2", + "arch": "x86_64", + "repository": "", + "AffectedProcs": [ + { + "pid": "1", + "name": "systemd" + }, + { + "pid": "2978", + "name": "master", + "listenPortStats": [ + { + "bindAddress": "127.0.0.1", + "port": "25", + "portReachableTo": [] + } + ] + }, + { + "pid": "2443", + "name": "auditd" + }, + { + "pid": "2488", + "name": "gssproxy" + }, + { + "pid": "1662", + "name": "systemd-journal" + }, + { + "pid": "3057", + "name": "atd" + }, + { + "pid": "3103", + "name": "agetty" + }, + { + "pid": "3034", + "name": "rsyslogd" + }, + { + "pid": "3213", + "name": "ssm-agent-worke" + }, + { + "pid": "2485", + "name": "rpcbind", + "listenPortStats": [ + { + "bindAddress": "*", + "port": "111", + "portReachableTo": [] + } + ] + }, + { + "pid": "3312", + "name": "sshd" + }, + { + "pid": "2979", + "name": "pickup" + }, + { + "pid": "2473", + "name": "lsmd" + }, + { + "pid": "2476", + "name": "systemd-logind" + }, + { + "pid": "2512", + "name": "rngd" + }, + { + "pid": "3243", + "name": "acpid" + }, + { + "pid": "2980", + "name": "qmgr" + }, + { + "pid": "2480", + "name": "dbus-daemon" + }, + { + "pid": "3050", + "name": "crond" + }, + { + "pid": "3330", + "name": "sshd" + }, + { + "pid": "1700", + "name": "systemd-udevd" + }, + { + "pid": "2491", + "name": "chronyd" + }, + { + "pid": "3031", + "name": "amazon-ssm-agen" + }, + { + "pid": "1693", + "name": "lvmetad" + }, + { + "pid": "3104", + "name": "agetty" + }, + { + "pid": "3208", + "name": "sshd", + "listenPortStats": [ + { + "bindAddress": "*", + "port": "22", + "portReachableTo": [] + } + ] + }, + { + "pid": "2833", + "name": "dhclient" + }, + { + "pid": "2717", + "name": "dhclient" + } + ] + }, + "glibc-all-langpacks": { + "name": "glibc-all-langpacks", + "version": "2.26", + "release": "42.amzn2", + "newVersion": "2.26", + "newRelease": "42.amzn2", + "arch": "x86_64", + "repository": "", + "AffectedProcs": [ + { + "pid": "3104", + "name": "agetty" + } + ] + }, + "glibc-common": { + "name": "glibc-common", + "version": "2.26", + "release": "42.amzn2", + "newVersion": "2.26", + "newRelease": "42.amzn2", + "arch": "x86_64", + "repository": "", + "AffectedProcs": [ + { + "pid": "3104", + "name": "agetty" + } + ] + }, + "glibc-locale-source": { + "name": "glibc-locale-source", + "version": "2.26", + "release": "42.amzn2", + "newVersion": "2.26", + "newRelease": "42.amzn2", + "arch": "x86_64", + "repository": "" + }, + "glibc-minimal-langpack": { + "name": "glibc-minimal-langpack", + "version": "2.26", + "release": "42.amzn2", + "newVersion": "2.26", + "newRelease": "42.amzn2", + "arch": "x86_64", + "repository": "" + }, + "gmp": { + "name": "gmp", + "version": "1:6.0.0", + "release": "15.amzn2.0.2", + "newVersion": "1:6.0.0", + "newRelease": "15.amzn2.0.2", + "arch": "x86_64", + "repository": "" + }, + "gnupg2": { + "name": "gnupg2", + "version": "2.0.22", + "release": "5.amzn2.0.4", + "newVersion": "2.0.22", + "newRelease": "5.amzn2.0.4", + "arch": "x86_64", + "repository": "" + }, + "gpg-pubkey": { + "name": "gpg-pubkey", + "version": "c87f5b1a", + "release": "593863f8", + "newVersion": "c87f5b1a", + "newRelease": "593863f8", + "arch": "(none)", + "repository": "" + }, + "gpgme": { + "name": "gpgme", + "version": "1.3.2", + "release": "5.amzn2.0.2", + "newVersion": "1.3.2", + "newRelease": "5.amzn2.0.2", + "arch": "x86_64", + "repository": "" + }, + "gpm-libs": { + "name": "gpm-libs", + "version": "1.20.7", + "release": "15.amzn2.0.2", + "newVersion": "1.20.7", + "newRelease": "15.amzn2.0.2", + "arch": "x86_64", + "repository": "" + }, + "grep": { + "name": "grep", + "version": "2.20", + "release": "3.amzn2.0.2", + "newVersion": "2.20", + "newRelease": "3.amzn2.0.2", + "arch": "x86_64", + "repository": "" + }, + "groff-base": { + "name": "groff-base", + "version": "1.22.2", + "release": "8.amzn2.0.2", + "newVersion": "1.22.2", + "newRelease": "8.amzn2.0.2", + "arch": "x86_64", + "repository": "" + }, + "grub2": { + "name": "grub2", + "version": "1:2.02", + "release": "35.amzn2.0.4", + "newVersion": "1:2.02", + "newRelease": "35.amzn2.0.4", + "arch": "x86_64", + "repository": "" + }, + "grub2-common": { + "name": "grub2-common", + "version": "1:2.02", + "release": "35.amzn2.0.4", + "newVersion": "1:2.02", + "newRelease": "35.amzn2.0.4", + "arch": "noarch", + "repository": "" + }, + "grub2-pc": { + "name": "grub2-pc", + "version": "1:2.02", + "release": "35.amzn2.0.4", + "newVersion": "1:2.02", + "newRelease": "35.amzn2.0.4", + "arch": "x86_64", + "repository": "" + }, + "grub2-pc-modules": { + "name": "grub2-pc-modules", + "version": "1:2.02", + "release": "35.amzn2.0.4", + "newVersion": "1:2.02", + "newRelease": "35.amzn2.0.4", + "arch": "noarch", + "repository": "" + }, + "grub2-tools": { + "name": "grub2-tools", + "version": "1:2.02", + "release": "35.amzn2.0.4", + "newVersion": "1:2.02", + "newRelease": "35.amzn2.0.4", + "arch": "x86_64", + "repository": "" + }, + "grub2-tools-extra": { + "name": "grub2-tools-extra", + "version": "1:2.02", + "release": "35.amzn2.0.4", + "newVersion": "1:2.02", + "newRelease": "35.amzn2.0.4", + "arch": "x86_64", + "repository": "" + }, + "grub2-tools-minimal": { + "name": "grub2-tools-minimal", + "version": "1:2.02", + "release": "35.amzn2.0.4", + "newVersion": "1:2.02", + "newRelease": "35.amzn2.0.4", + "arch": "x86_64", + "repository": "" + }, + "grubby": { + "name": "grubby", + "version": "8.28", + "release": "23.amzn2.0.1", + "newVersion": "8.28", + "newRelease": "23.amzn2.0.1", + "arch": "x86_64", + "repository": "" + }, + "gssproxy": { + "name": "gssproxy", + "version": "0.7.0", + "release": "17.amzn2", + "newVersion": "0.7.0", + "newRelease": "17.amzn2", + "arch": "x86_64", + "repository": "", + "AffectedProcs": [ + { + "pid": "2488", + "name": "gssproxy" + } + ] + }, + "gzip": { + "name": "gzip", + "version": "1.5", + "release": "10.amzn2", + "newVersion": "1.5", + "newRelease": "10.amzn2", + "arch": "x86_64", + "repository": "" + }, + "hardlink": { + "name": "hardlink", + "version": "1:1.3", + "release": "3.amzn2", + "newVersion": "1:1.3", + "newRelease": "3.amzn2", + "arch": "x86_64", + "repository": "" + }, + "hibagent": { + "name": "hibagent", + "version": "1.1.0", + "release": "5.amzn2", + "newVersion": "1.1.0", + "newRelease": "5.amzn2", + "arch": "noarch", + "repository": "" + }, + "hostname": { + "name": "hostname", + "version": "3.13", + "release": "3.amzn2.0.2", + "newVersion": "3.13", + "newRelease": "3.amzn2.0.2", + "arch": "x86_64", + "repository": "" + }, + "hunspell": { + "name": "hunspell", + "version": "1.3.2", + "release": "16.amzn2", + "newVersion": "1.3.2", + "newRelease": "16.amzn2", + "arch": "x86_64", + "repository": "" + }, + "hunspell-en": { + "name": "hunspell-en", + "version": "0.20121024", + "release": "6.amzn2.0.1", + "newVersion": "0.20121024", + "newRelease": "6.amzn2.0.1", + "arch": "noarch", + "repository": "" + }, + "hunspell-en-GB": { + "name": "hunspell-en-GB", + "version": "0.20121024", + "release": "6.amzn2.0.1", + "newVersion": "0.20121024", + "newRelease": "6.amzn2.0.1", + "arch": "noarch", + "repository": "" + }, + "hunspell-en-US": { + "name": "hunspell-en-US", + "version": "0.20121024", + "release": "6.amzn2.0.1", + "newVersion": "0.20121024", + "newRelease": "6.amzn2.0.1", + "arch": "noarch", + "repository": "" + }, + "hwdata": { + "name": "hwdata", + "version": "0.252", + "release": "9.3.amzn2", + "newVersion": "0.252", + "newRelease": "9.3.amzn2", + "arch": "x86_64", + "repository": "" + }, + "info": { + "name": "info", + "version": "5.1", + "release": "5.amzn2", + "newVersion": "5.1", + "newRelease": "5.amzn2", + "arch": "x86_64", + "repository": "" + }, + "initscripts": { + "name": "initscripts", + "version": "9.49.47", + "release": "1.amzn2.0.1", + "newVersion": "9.49.47", + "newRelease": "1.amzn2.0.1", + "arch": "x86_64", + "repository": "" + }, + "iproute": { + "name": "iproute", + "version": "4.15.0", + "release": "1.amzn2.0.4", + "newVersion": "4.15.0", + "newRelease": "1.amzn2.0.4", + "arch": "x86_64", + "repository": "" + }, + "iptables": { + "name": "iptables", + "version": "1.8.4", + "release": "10.amzn2.1.2", + "newVersion": "1.8.4", + "newRelease": "10.amzn2.1.2", + "arch": "x86_64", + "repository": "" + }, + "iptables-libs": { + "name": "iptables-libs", + "version": "1.8.4", + "release": "10.amzn2.1.2", + "newVersion": "1.8.4", + "newRelease": "10.amzn2.1.2", + "arch": "x86_64", + "repository": "" + }, + "iputils": { + "name": "iputils", + "version": "20160308", + "release": "10.amzn2.0.2", + "newVersion": "20160308", + "newRelease": "10.amzn2.0.2", + "arch": "x86_64", + "repository": "" + }, + "irqbalance": { + "name": "irqbalance", + "version": "2:1.5.0", + "release": "4.amzn2.0.1", + "newVersion": "2:1.5.0", + "newRelease": "4.amzn2.0.1", + "arch": "x86_64", + "repository": "" + }, + "jansson": { + "name": "jansson", + "version": "2.10", + "release": "1.amzn2.0.2", + "newVersion": "2.10", + "newRelease": "1.amzn2.0.2", + "arch": "x86_64", + "repository": "" + }, + "jbigkit-libs": { + "name": "jbigkit-libs", + "version": "2.0", + "release": "11.amzn2.0.2", + "newVersion": "2.0", + "newRelease": "11.amzn2.0.2", + "arch": "x86_64", + "repository": "" + }, + "json-c": { + "name": "json-c", + "version": "0.11", + "release": "4.amzn2.0.4", + "newVersion": "0.11", + "newRelease": "4.amzn2.0.4", + "arch": "x86_64", + "repository": "" + }, + "kbd": { + "name": "kbd", + "version": "1.15.5", + "release": "15.amzn2", + "newVersion": "1.15.5", + "newRelease": "15.amzn2", + "arch": "x86_64", + "repository": "" + }, + "kbd-legacy": { + "name": "kbd-legacy", + "version": "1.15.5", + "release": "15.amzn2", + "newVersion": "1.15.5", + "newRelease": "15.amzn2", + "arch": "noarch", + "repository": "" + }, + "kbd-misc": { + "name": "kbd-misc", + "version": "1.15.5", + "release": "15.amzn2", + "newVersion": "1.15.5", + "newRelease": "15.amzn2", + "arch": "noarch", + "repository": "" + }, + "kernel": { + "name": "kernel", + "version": "4.14.225", + "release": "168.357.amzn2", + "newVersion": "4.14.225", + "newRelease": "168.357.amzn2", + "arch": "x86_64", + "repository": "" + }, + "kernel-tools": { + "name": "kernel-tools", + "version": "4.14.225", + "release": "168.357.amzn2", + "newVersion": "4.14.225", + "newRelease": "168.357.amzn2", + "arch": "x86_64", + "repository": "" + }, + "keyutils": { + "name": "keyutils", + "version": "1.5.8", + "release": "3.amzn2.0.2", + "newVersion": "1.5.8", + "newRelease": "3.amzn2.0.2", + "arch": "x86_64", + "repository": "" + }, + "keyutils-libs": { + "name": "keyutils-libs", + "version": "1.5.8", + "release": "3.amzn2.0.2", + "newVersion": "1.5.8", + "newRelease": "3.amzn2.0.2", + "arch": "x86_64", + "repository": "", + "AffectedProcs": [ + { + "pid": "2978", + "name": "master", + "listenPortStats": [ + { + "bindAddress": "127.0.0.1", + "port": "25", + "portReachableTo": [] + } + ] + }, + { + "pid": "2443", + "name": "auditd" + }, + { + "pid": "2488", + "name": "gssproxy" + }, + { + "pid": "2485", + "name": "rpcbind", + "listenPortStats": [ + { + "bindAddress": "*", + "port": "111", + "portReachableTo": [] + } + ] + }, + { + "pid": "3312", + "name": "sshd" + }, + { + "pid": "2979", + "name": "pickup" + }, + { + "pid": "2512", + "name": "rngd" + }, + { + "pid": "2980", + "name": "qmgr" + }, + { + "pid": "3330", + "name": "sshd" + }, + { + "pid": "3208", + "name": "sshd", + "listenPortStats": [ + { + "bindAddress": "*", + "port": "22", + "portReachableTo": [] + } + ] + }, + { + "pid": "2833", + "name": "dhclient" + }, + { + "pid": "2717", + "name": "dhclient" + } + ] + }, + "kmod": { + "name": "kmod", + "version": "25", + "release": "3.amzn2.0.2", + "newVersion": "25", + "newRelease": "3.amzn2.0.2", + "arch": "x86_64", + "repository": "" + }, + "kmod-libs": { + "name": "kmod-libs", + "version": "25", + "release": "3.amzn2.0.2", + "newVersion": "25", + "newRelease": "3.amzn2.0.2", + "arch": "x86_64", + "repository": "", + "AffectedProcs": [ + { + "pid": "1", + "name": "systemd" + }, + { + "pid": "1700", + "name": "systemd-udevd" + } + ] + }, + "kpartx": { + "name": "kpartx", + "version": "0.4.9", + "release": "127.amzn2", + "newVersion": "0.4.9", + "newRelease": "127.amzn2", + "arch": "x86_64", + "repository": "" + }, + "kpatch-runtime": { + "name": "kpatch-runtime", + "version": "0.9.2", + "release": "4.amzn2", + "newVersion": "0.9.2", + "newRelease": "4.amzn2", + "arch": "noarch", + "repository": "" + }, + "krb5-libs": { + "name": "krb5-libs", + "version": "1.15.1", + "release": "37.amzn2.2.2", + "newVersion": "1.15.1", + "newRelease": "37.amzn2.2.2", + "arch": "x86_64", + "repository": "", + "AffectedProcs": [ + { + "pid": "2978", + "name": "master", + "listenPortStats": [ + { + "bindAddress": "127.0.0.1", + "port": "25", + "portReachableTo": [] + } + ] + }, + { + "pid": "2443", + "name": "auditd" + }, + { + "pid": "2488", + "name": "gssproxy" + }, + { + "pid": "2485", + "name": "rpcbind", + "listenPortStats": [ + { + "bindAddress": "*", + "port": "111", + "portReachableTo": [] + } + ] + }, + { + "pid": "3312", + "name": "sshd" + }, + { + "pid": "2979", + "name": "pickup" + }, + { + "pid": "2512", + "name": "rngd" + }, + { + "pid": "2980", + "name": "qmgr" + }, + { + "pid": "3330", + "name": "sshd" + }, + { + "pid": "3208", + "name": "sshd", + "listenPortStats": [ + { + "bindAddress": "*", + "port": "22", + "portReachableTo": [] + } + ] + }, + { + "pid": "2833", + "name": "dhclient" + }, + { + "pid": "2717", + "name": "dhclient" + } + ] + }, + "langtable": { + "name": "langtable", + "version": "0.0.31", + "release": "4.amzn2", + "newVersion": "0.0.31", + "newRelease": "4.amzn2", + "arch": "noarch", + "repository": "" + }, + "langtable-data": { + "name": "langtable-data", + "version": "0.0.31", + "release": "4.amzn2", + "newVersion": "0.0.31", + "newRelease": "4.amzn2", + "arch": "noarch", + "repository": "" + }, + "langtable-python": { + "name": "langtable-python", + "version": "0.0.31", + "release": "4.amzn2", + "newVersion": "0.0.31", + "newRelease": "4.amzn2", + "arch": "noarch", + "repository": "" + }, + "less": { + "name": "less", + "version": "458", + "release": "9.amzn2.0.2", + "newVersion": "458", + "newRelease": "9.amzn2.0.2", + "arch": "x86_64", + "repository": "" + }, + "libacl": { + "name": "libacl", + "version": "2.2.51", + "release": "14.amzn2", + "newVersion": "2.2.51", + "newRelease": "14.amzn2", + "arch": "x86_64", + "repository": "", + "AffectedProcs": [ + { + "pid": "1662", + "name": "systemd-journal" + }, + { + "pid": "2476", + "name": "systemd-logind" + }, + { + "pid": "1700", + "name": "systemd-udevd" + } + ] + }, + "libaio": { + "name": "libaio", + "version": "0.3.109", + "release": "13.amzn2.0.2", + "newVersion": "0.3.109", + "newRelease": "13.amzn2.0.2", + "arch": "x86_64", + "repository": "" + }, + "libassuan": { + "name": "libassuan", + "version": "2.1.0", + "release": "3.amzn2.0.2", + "newVersion": "2.1.0", + "newRelease": "3.amzn2.0.2", + "arch": "x86_64", + "repository": "" + }, + "libattr": { + "name": "libattr", + "version": "2.4.46", + "release": "12.amzn2.0.2", + "newVersion": "2.4.46", + "newRelease": "12.amzn2.0.2", + "arch": "x86_64", + "repository": "", + "AffectedProcs": [ + { + "pid": "1", + "name": "systemd" + }, + { + "pid": "1662", + "name": "systemd-journal" + }, + { + "pid": "3034", + "name": "rsyslogd" + }, + { + "pid": "2485", + "name": "rpcbind", + "listenPortStats": [ + { + "bindAddress": "*", + "port": "111", + "portReachableTo": [] + } + ] + }, + { + "pid": "3312", + "name": "sshd" + }, + { + "pid": "2476", + "name": "systemd-logind" + }, + { + "pid": "2480", + "name": "dbus-daemon" + }, + { + "pid": "3330", + "name": "sshd" + }, + { + "pid": "1700", + "name": "systemd-udevd" + }, + { + "pid": "2491", + "name": "chronyd" + }, + { + "pid": "1693", + "name": "lvmetad" + }, + { + "pid": "3208", + "name": "sshd", + "listenPortStats": [ + { + "bindAddress": "*", + "port": "22", + "portReachableTo": [] + } + ] + }, + { + "pid": "2833", + "name": "dhclient" + }, + { + "pid": "2717", + "name": "dhclient" + } + ] + }, + "libbasicobjects": { + "name": "libbasicobjects", + "version": "0.1.1", + "release": "29.amzn2", + "newVersion": "0.1.1", + "newRelease": "29.amzn2", + "arch": "x86_64", + "repository": "", + "AffectedProcs": [ + { + "pid": "2488", + "name": "gssproxy" + } + ] + }, + "libblkid": { + "name": "libblkid", + "version": "2.30.2", + "release": "2.amzn2.0.4", + "newVersion": "2.30.2", + "newRelease": "2.amzn2.0.4", + "arch": "x86_64", + "repository": "", + "AffectedProcs": [ + { + "pid": "1", + "name": "systemd" + }, + { + "pid": "1700", + "name": "systemd-udevd" + } + ] + }, + "libcap": { + "name": "libcap", + "version": "2.22", + "release": "9.amzn2.0.2", + "newVersion": "2.22", + "newRelease": "9.amzn2.0.2", + "arch": "x86_64", + "repository": "", + "AffectedProcs": [ + { + "pid": "1", + "name": "systemd" + }, + { + "pid": "3034", + "name": "rsyslogd" + }, + { + "pid": "2485", + "name": "rpcbind", + "listenPortStats": [ + { + "bindAddress": "*", + "port": "111", + "portReachableTo": [] + } + ] + }, + { + "pid": "3312", + "name": "sshd" + }, + { + "pid": "2476", + "name": "systemd-logind" + }, + { + "pid": "2480", + "name": "dbus-daemon" + }, + { + "pid": "3330", + "name": "sshd" + }, + { + "pid": "2491", + "name": "chronyd" + }, + { + "pid": "1693", + "name": "lvmetad" + }, + { + "pid": "3208", + "name": "sshd", + "listenPortStats": [ + { + "bindAddress": "*", + "port": "22", + "portReachableTo": [] + } + ] + }, + { + "pid": "2833", + "name": "dhclient" + }, + { + "pid": "2717", + "name": "dhclient" + } + ] + }, + "libcap-ng": { + "name": "libcap-ng", + "version": "0.7.5", + "release": "4.amzn2.0.4", + "newVersion": "0.7.5", + "newRelease": "4.amzn2.0.4", + "arch": "x86_64", + "repository": "", + "AffectedProcs": [ + { + "pid": "1", + "name": "systemd" + }, + { + "pid": "2443", + "name": "auditd" + }, + { + "pid": "3057", + "name": "atd" + }, + { + "pid": "3312", + "name": "sshd" + }, + { + "pid": "2480", + "name": "dbus-daemon" + }, + { + "pid": "3050", + "name": "crond" + }, + { + "pid": "3330", + "name": "sshd" + }, + { + "pid": "3208", + "name": "sshd", + "listenPortStats": [ + { + "bindAddress": "*", + "port": "22", + "portReachableTo": [] + } + ] + }, + { + "pid": "2833", + "name": "dhclient" + }, + { + "pid": "2717", + "name": "dhclient" + } + ] + }, + "libcollection": { + "name": "libcollection", + "version": "0.7.0", + "release": "29.amzn2", + "newVersion": "0.7.0", + "newRelease": "29.amzn2", + "arch": "x86_64", + "repository": "", + "AffectedProcs": [ + { + "pid": "2488", + "name": "gssproxy" + } + ] + }, + "libcom_err": { + "name": "libcom_err", + "version": "1.42.9", + "release": "19.amzn2", + "newVersion": "1.42.9", + "newRelease": "19.amzn2", + "arch": "x86_64", + "repository": "", + "AffectedProcs": [ + { + "pid": "2978", + "name": "master", + "listenPortStats": [ + { + "bindAddress": "127.0.0.1", + "port": "25", + "portReachableTo": [] + } + ] + }, + { + "pid": "2443", + "name": "auditd" + }, + { + "pid": "2488", + "name": "gssproxy" + }, + { + "pid": "2485", + "name": "rpcbind", + "listenPortStats": [ + { + "bindAddress": "*", + "port": "111", + "portReachableTo": [] + } + ] + }, + { + "pid": "3312", + "name": "sshd" + }, + { + "pid": "2979", + "name": "pickup" + }, + { + "pid": "2512", + "name": "rngd" + }, + { + "pid": "2980", + "name": "qmgr" + }, + { + "pid": "3330", + "name": "sshd" + }, + { + "pid": "3208", + "name": "sshd", + "listenPortStats": [ + { + "bindAddress": "*", + "port": "22", + "portReachableTo": [] + } + ] + }, + { + "pid": "2833", + "name": "dhclient" + }, + { + "pid": "2717", + "name": "dhclient" + } + ] + }, + "libconfig": { + "name": "libconfig", + "version": "1.4.9", + "release": "5.amzn2.0.2", + "newVersion": "1.4.9", + "newRelease": "5.amzn2.0.2", + "arch": "x86_64", + "repository": "", + "AffectedProcs": [ + { + "pid": "2473", + "name": "lsmd" + } + ] + }, + "libcroco": { + "name": "libcroco", + "version": "0.6.12", + "release": "6.amzn2", + "newVersion": "0.6.12", + "newRelease": "6.amzn2", + "arch": "x86_64", + "repository": "" + }, + "libcrypt": { + "name": "libcrypt", + "version": "2.26", + "release": "42.amzn2", + "newVersion": "2.26", + "newRelease": "42.amzn2", + "arch": "x86_64", + "repository": "", + "AffectedProcs": [ + { + "pid": "2978", + "name": "master", + "listenPortStats": [ + { + "bindAddress": "127.0.0.1", + "port": "25", + "portReachableTo": [] + } + ] + }, + { + "pid": "3312", + "name": "sshd" + }, + { + "pid": "2979", + "name": "pickup" + }, + { + "pid": "2512", + "name": "rngd" + }, + { + "pid": "2980", + "name": "qmgr" + }, + { + "pid": "3330", + "name": "sshd" + }, + { + "pid": "3208", + "name": "sshd", + "listenPortStats": [ + { + "bindAddress": "*", + "port": "22", + "portReachableTo": [] + } + ] + }, + { + "pid": "2833", + "name": "dhclient" + }, + { + "pid": "2717", + "name": "dhclient" + } + ] + }, + "libcurl": { + "name": "libcurl", + "version": "7.61.1", + "release": "12.amzn2.0.2", + "newVersion": "7.61.1", + "newRelease": "12.amzn2.0.2", + "arch": "x86_64", + "repository": "", + "AffectedProcs": [ + { + "pid": "2512", + "name": "rngd" + } + ] + }, + "libdaemon": { + "name": "libdaemon", + "version": "0.14", + "release": "7.amzn2.0.2", + "newVersion": "0.14", + "newRelease": "7.amzn2.0.2", + "arch": "x86_64", + "repository": "" + }, + "libdb": { + "name": "libdb", + "version": "5.3.21", + "release": "24.amzn2.0.3", + "newVersion": "5.3.21", + "newRelease": "24.amzn2.0.3", + "arch": "x86_64", + "repository": "", + "AffectedProcs": [ + { + "pid": "2978", + "name": "master", + "listenPortStats": [ + { + "bindAddress": "127.0.0.1", + "port": "25", + "portReachableTo": [] + } + ] + }, + { + "pid": "2979", + "name": "pickup" + }, + { + "pid": "2980", + "name": "qmgr" + } + ] + }, + "libdb-utils": { + "name": "libdb-utils", + "version": "5.3.21", + "release": "24.amzn2.0.3", + "newVersion": "5.3.21", + "newRelease": "24.amzn2.0.3", + "arch": "x86_64", + "repository": "" + }, + "libdrm": { + "name": "libdrm", + "version": "2.4.97", + "release": "2.amzn2", + "newVersion": "2.4.97", + "newRelease": "2.amzn2", + "arch": "x86_64", + "repository": "" + }, + "libdwarf": { + "name": "libdwarf", + "version": "20130207", + "release": "4.amzn2.0.2", + "newVersion": "20130207", + "newRelease": "4.amzn2.0.2", + "arch": "x86_64", + "repository": "" + }, + "libedit": { + "name": "libedit", + "version": "3.0", + "release": "12.20121213cvs.amzn2.0.2", + "newVersion": "3.0", + "newRelease": "12.20121213cvs.amzn2.0.2", + "arch": "x86_64", + "repository": "" + }, + "libestr": { + "name": "libestr", + "version": "0.1.9", + "release": "2.amzn2.0.2", + "newVersion": "0.1.9", + "newRelease": "2.amzn2.0.2", + "arch": "x86_64", + "repository": "", + "AffectedProcs": [ + { + "pid": "3034", + "name": "rsyslogd" + } + ] + }, + "libevent": { + "name": "libevent", + "version": "2.0.21", + "release": "4.amzn2.0.3", + "newVersion": "2.0.21", + "newRelease": "4.amzn2.0.3", + "arch": "x86_64", + "repository": "", + "AffectedProcs": [ + { + "pid": "2488", + "name": "gssproxy" + } + ] + }, + "libfastjson": { + "name": "libfastjson", + "version": "0.99.4", + "release": "3.amzn2", + "newVersion": "0.99.4", + "newRelease": "3.amzn2", + "arch": "x86_64", + "repository": "", + "AffectedProcs": [ + { + "pid": "3034", + "name": "rsyslogd" + } + ] + }, + "libfdisk": { + "name": "libfdisk", + "version": "2.30.2", + "release": "2.amzn2.0.4", + "newVersion": "2.30.2", + "newRelease": "2.amzn2.0.4", + "arch": "x86_64", + "repository": "" + }, + "libffi": { + "name": "libffi", + "version": "3.0.13", + "release": "18.amzn2.0.2", + "newVersion": "3.0.13", + "newRelease": "18.amzn2.0.2", + "arch": "x86_64", + "repository": "" + }, + "libgcc": { + "name": "libgcc", + "version": "7.3.1", + "release": "12.amzn2", + "newVersion": "7.3.1", + "newRelease": "12.amzn2", + "arch": "x86_64", + "repository": "", + "AffectedProcs": [ + { + "pid": "1", + "name": "systemd" + }, + { + "pid": "2978", + "name": "master", + "listenPortStats": [ + { + "bindAddress": "127.0.0.1", + "port": "25", + "portReachableTo": [] + } + ] + }, + { + "pid": "1662", + "name": "systemd-journal" + }, + { + "pid": "3034", + "name": "rsyslogd" + }, + { + "pid": "2485", + "name": "rpcbind", + "listenPortStats": [ + { + "bindAddress": "*", + "port": "111", + "portReachableTo": [] + } + ] + }, + { + "pid": "3312", + "name": "sshd" + }, + { + "pid": "2979", + "name": "pickup" + }, + { + "pid": "2476", + "name": "systemd-logind" + }, + { + "pid": "2980", + "name": "qmgr" + }, + { + "pid": "2480", + "name": "dbus-daemon" + }, + { + "pid": "3330", + "name": "sshd" + }, + { + "pid": "1700", + "name": "systemd-udevd" + }, + { + "pid": "2491", + "name": "chronyd" + }, + { + "pid": "1693", + "name": "lvmetad" + }, + { + "pid": "3208", + "name": "sshd", + "listenPortStats": [ + { + "bindAddress": "*", + "port": "22", + "portReachableTo": [] + } + ] + }, + { + "pid": "2833", + "name": "dhclient" + }, + { + "pid": "2717", + "name": "dhclient" + } + ] + }, + "libgcrypt": { + "name": "libgcrypt", + "version": "1.5.3", + "release": "14.amzn2.0.2", + "newVersion": "1.5.3", + "newRelease": "14.amzn2.0.2", + "arch": "x86_64", + "repository": "", + "AffectedProcs": [ + { + "pid": "1662", + "name": "systemd-journal" + }, + { + "pid": "3034", + "name": "rsyslogd" + }, + { + "pid": "2485", + "name": "rpcbind", + "listenPortStats": [ + { + "bindAddress": "*", + "port": "111", + "portReachableTo": [] + } + ] + }, + { + "pid": "3312", + "name": "sshd" + }, + { + "pid": "2512", + "name": "rngd" + }, + { + "pid": "2480", + "name": "dbus-daemon" + }, + { + "pid": "3330", + "name": "sshd" + }, + { + "pid": "3208", + "name": "sshd", + "listenPortStats": [ + { + "bindAddress": "*", + "port": "22", + "portReachableTo": [] + } + ] + } + ] + }, + "libgomp": { + "name": "libgomp", + "version": "7.3.1", + "release": "12.amzn2", + "newVersion": "7.3.1", + "newRelease": "12.amzn2", + "arch": "x86_64", + "repository": "" + }, + "libgpg-error": { + "name": "libgpg-error", + "version": "1.12", + "release": "3.amzn2.0.3", + "newVersion": "1.12", + "newRelease": "3.amzn2.0.3", + "arch": "x86_64", + "repository": "", + "AffectedProcs": [ + { + "pid": "1662", + "name": "systemd-journal" + }, + { + "pid": "3034", + "name": "rsyslogd" + }, + { + "pid": "2485", + "name": "rpcbind", + "listenPortStats": [ + { + "bindAddress": "*", + "port": "111", + "portReachableTo": [] + } + ] + }, + { + "pid": "3312", + "name": "sshd" + }, + { + "pid": "2512", + "name": "rngd" + }, + { + "pid": "2480", + "name": "dbus-daemon" + }, + { + "pid": "3330", + "name": "sshd" + }, + { + "pid": "3208", + "name": "sshd", + "listenPortStats": [ + { + "bindAddress": "*", + "port": "22", + "portReachableTo": [] + } + ] + } + ] + }, + "libicu": { + "name": "libicu", + "version": "50.2", + "release": "4.amzn2", + "newVersion": "50.2", + "newRelease": "4.amzn2", + "arch": "x86_64", + "repository": "" + }, + "libidn": { + "name": "libidn", + "version": "1.28", + "release": "4.amzn2.0.2", + "newVersion": "1.28", + "newRelease": "4.amzn2.0.2", + "arch": "x86_64", + "repository": "" + }, + "libidn2": { + "name": "libidn2", + "version": "2.3.0", + "release": "1.amzn2", + "newVersion": "2.3.0", + "newRelease": "1.amzn2", + "arch": "x86_64", + "repository": "", + "AffectedProcs": [ + { + "pid": "2512", + "name": "rngd" + } + ] + }, + "libini_config": { + "name": "libini_config", + "version": "1.3.1", + "release": "29.amzn2", + "newVersion": "1.3.1", + "newRelease": "29.amzn2", + "arch": "x86_64", + "repository": "", + "AffectedProcs": [ + { + "pid": "2488", + "name": "gssproxy" + } + ] + }, + "libjpeg-turbo": { + "name": "libjpeg-turbo", + "version": "1.2.90", + "release": "6.amzn2.0.3", + "newVersion": "1.2.90", + "newRelease": "6.amzn2.0.3", + "arch": "x86_64", + "repository": "" + }, + "libmetalink": { + "name": "libmetalink", + "version": "0.1.3", + "release": "13.amzn2", + "newVersion": "0.1.3", + "newRelease": "13.amzn2", + "arch": "x86_64", + "repository": "" + }, + "libmnl": { + "name": "libmnl", + "version": "1.0.3", + "release": "7.amzn2.0.2", + "newVersion": "1.0.3", + "newRelease": "7.amzn2.0.2", + "arch": "x86_64", + "repository": "" + }, + "libmount": { + "name": "libmount", + "version": "2.30.2", + "release": "2.amzn2.0.4", + "newVersion": "2.30.2", + "newRelease": "2.amzn2.0.4", + "arch": "x86_64", + "repository": "", + "AffectedProcs": [ + { + "pid": "1", + "name": "systemd" + } + ] + }, + "libnetfilter_conntrack": { + "name": "libnetfilter_conntrack", + "version": "1.0.6", + "release": "1.amzn2.0.2", + "newVersion": "1.0.6", + "newRelease": "1.amzn2.0.2", + "arch": "x86_64", + "repository": "" + }, + "libnfnetlink": { + "name": "libnfnetlink", + "version": "1.0.1", + "release": "4.amzn2.0.2", + "newVersion": "1.0.1", + "newRelease": "4.amzn2.0.2", + "arch": "x86_64", + "repository": "" + }, + "libnfsidmap": { + "name": "libnfsidmap", + "version": "0.25", + "release": "19.amzn2", + "newVersion": "0.25", + "newRelease": "19.amzn2", + "arch": "x86_64", + "repository": "" + }, + "libnghttp2": { + "name": "libnghttp2", + "version": "1.41.0", + "release": "1.amzn2", + "newVersion": "1.41.0", + "newRelease": "1.amzn2", + "arch": "x86_64", + "repository": "", + "AffectedProcs": [ + { + "pid": "2512", + "name": "rngd" + } + ] + }, + "libnl3": { + "name": "libnl3", + "version": "3.2.28", + "release": "4.amzn2.0.1", + "newVersion": "3.2.28", + "newRelease": "4.amzn2.0.1", + "arch": "x86_64", + "repository": "" + }, + "libnl3-cli": { + "name": "libnl3-cli", + "version": "3.2.28", + "release": "4.amzn2.0.1", + "newVersion": "3.2.28", + "newRelease": "4.amzn2.0.1", + "arch": "x86_64", + "repository": "" + }, + "libpath_utils": { + "name": "libpath_utils", + "version": "0.2.1", + "release": "29.amzn2", + "newVersion": "0.2.1", + "newRelease": "29.amzn2", + "arch": "x86_64", + "repository": "", + "AffectedProcs": [ + { + "pid": "2488", + "name": "gssproxy" + } + ] + }, + "libpcap": { + "name": "libpcap", + "version": "14:1.5.3", + "release": "11.amzn2", + "newVersion": "14:1.5.3", + "newRelease": "11.amzn2", + "arch": "x86_64", + "repository": "" + }, + "libpciaccess": { + "name": "libpciaccess", + "version": "0.14", + "release": "1.amzn2", + "newVersion": "0.14", + "newRelease": "1.amzn2", + "arch": "x86_64", + "repository": "" + }, + "libpipeline": { + "name": "libpipeline", + "version": "1.2.3", + "release": "3.amzn2.0.2", + "newVersion": "1.2.3", + "newRelease": "3.amzn2.0.2", + "arch": "x86_64", + "repository": "" + }, + "libpng": { + "name": "libpng", + "version": "2:1.5.13", + "release": "8.amzn2", + "newVersion": "2:1.5.13", + "newRelease": "8.amzn2", + "arch": "x86_64", + "repository": "" + }, + "libpwquality": { + "name": "libpwquality", + "version": "1.2.3", + "release": "5.amzn2", + "newVersion": "1.2.3", + "newRelease": "5.amzn2", + "arch": "x86_64", + "repository": "", + "AffectedProcs": [ + { + "pid": "3312", + "name": "sshd" + }, + { + "pid": "3330", + "name": "sshd" + } + ] + }, + "libref_array": { + "name": "libref_array", + "version": "0.1.5", + "release": "29.amzn2", + "newVersion": "0.1.5", + "newRelease": "29.amzn2", + "arch": "x86_64", + "repository": "", + "AffectedProcs": [ + { + "pid": "2488", + "name": "gssproxy" + } + ] + }, + "libseccomp": { + "name": "libseccomp", + "version": "2.4.1", + "release": "1.amzn2", + "newVersion": "2.4.1", + "newRelease": "1.amzn2", + "arch": "x86_64", + "repository": "", + "AffectedProcs": [ + { + "pid": "2491", + "name": "chronyd" + } + ] + }, + "libselinux": { + "name": "libselinux", + "version": "2.5", + "release": "12.amzn2.0.2", + "newVersion": "2.5", + "newRelease": "12.amzn2.0.2", + "arch": "x86_64", + "repository": "", + "AffectedProcs": [ + { + "pid": "1", + "name": "systemd" + }, + { + "pid": "2978", + "name": "master", + "listenPortStats": [ + { + "bindAddress": "127.0.0.1", + "port": "25", + "portReachableTo": [] + } + ] + }, + { + "pid": "2443", + "name": "auditd" + }, + { + "pid": "2488", + "name": "gssproxy" + }, + { + "pid": "1662", + "name": "systemd-journal" + }, + { + "pid": "3057", + "name": "atd" + }, + { + "pid": "3034", + "name": "rsyslogd" + }, + { + "pid": "2485", + "name": "rpcbind", + "listenPortStats": [ + { + "bindAddress": "*", + "port": "111", + "portReachableTo": [] + } + ] + }, + { + "pid": "3312", + "name": "sshd" + }, + { + "pid": "2979", + "name": "pickup" + }, + { + "pid": "2476", + "name": "systemd-logind" + }, + { + "pid": "2512", + "name": "rngd" + }, + { + "pid": "2980", + "name": "qmgr" + }, + { + "pid": "2480", + "name": "dbus-daemon" + }, + { + "pid": "3050", + "name": "crond" + }, + { + "pid": "3330", + "name": "sshd" + }, + { + "pid": "1700", + "name": "systemd-udevd" + }, + { + "pid": "1693", + "name": "lvmetad" + }, + { + "pid": "3208", + "name": "sshd", + "listenPortStats": [ + { + "bindAddress": "*", + "port": "22", + "portReachableTo": [] + } + ] + }, + { + "pid": "2833", + "name": "dhclient" + }, + { + "pid": "2717", + "name": "dhclient" + } + ] + }, + "libselinux-utils": { + "name": "libselinux-utils", + "version": "2.5", + "release": "12.amzn2.0.2", + "newVersion": "2.5", + "newRelease": "12.amzn2.0.2", + "arch": "x86_64", + "repository": "" + }, + "libsemanage": { + "name": "libsemanage", + "version": "2.5", + "release": "11.amzn2", + "newVersion": "2.5", + "newRelease": "11.amzn2", + "arch": "x86_64", + "repository": "" + }, + "libsepol": { + "name": "libsepol", + "version": "2.5", + "release": "8.1.amzn2.0.2", + "newVersion": "2.5", + "newRelease": "8.1.amzn2.0.2", + "arch": "x86_64", + "repository": "", + "AffectedProcs": [ + { + "pid": "1693", + "name": "lvmetad" + } + ] + }, + "libsmartcols": { + "name": "libsmartcols", + "version": "2.30.2", + "release": "2.amzn2.0.4", + "newVersion": "2.30.2", + "newRelease": "2.amzn2.0.4", + "arch": "x86_64", + "repository": "" + }, + "libss": { + "name": "libss", + "version": "1.42.9", + "release": "19.amzn2", + "newVersion": "1.42.9", + "newRelease": "19.amzn2", + "arch": "x86_64", + "repository": "" + }, + "libssh2": { + "name": "libssh2", + "version": "1.4.3", + "release": "12.amzn2.2.3", + "newVersion": "1.4.3", + "newRelease": "12.amzn2.2.3", + "arch": "x86_64", + "repository": "", + "AffectedProcs": [ + { + "pid": "2512", + "name": "rngd" + } + ] + }, + "libsss_idmap": { + "name": "libsss_idmap", + "version": "1.16.5", + "release": "10.amzn2.6", + "newVersion": "1.16.5", + "newRelease": "10.amzn2.6", + "arch": "x86_64", + "repository": "" + }, + "libsss_nss_idmap": { + "name": "libsss_nss_idmap", + "version": "1.16.5", + "release": "10.amzn2.6", + "newVersion": "1.16.5", + "newRelease": "10.amzn2.6", + "arch": "x86_64", + "repository": "" + }, + "libstdc++": { + "name": "libstdc++", + "version": "7.3.1", + "release": "12.amzn2", + "newVersion": "7.3.1", + "newRelease": "12.amzn2", + "arch": "x86_64", + "repository": "", + "AffectedProcs": [ + { + "pid": "2978", + "name": "master", + "listenPortStats": [ + { + "bindAddress": "127.0.0.1", + "port": "25", + "portReachableTo": [] + } + ] + }, + { + "pid": "2979", + "name": "pickup" + }, + { + "pid": "2980", + "name": "qmgr" + } + ] + }, + "libstoragemgmt": { + "name": "libstoragemgmt", + "version": "1.6.1", + "release": "2.amzn2", + "newVersion": "1.6.1", + "newRelease": "2.amzn2", + "arch": "x86_64", + "repository": "", + "AffectedProcs": [ + { + "pid": "2473", + "name": "lsmd" + } + ] + }, + "libstoragemgmt-python": { + "name": "libstoragemgmt-python", + "version": "1.6.1", + "release": "2.amzn2", + "newVersion": "1.6.1", + "newRelease": "2.amzn2", + "arch": "noarch", + "repository": "" + }, + "libstoragemgmt-python-clibs": { + "name": "libstoragemgmt-python-clibs", + "version": "1.6.1", + "release": "2.amzn2", + "newVersion": "1.6.1", + "newRelease": "2.amzn2", + "arch": "x86_64", + "repository": "" + }, + "libsysfs": { + "name": "libsysfs", + "version": "2.1.0", + "release": "16.amzn2.0.2", + "newVersion": "2.1.0", + "newRelease": "16.amzn2.0.2", + "arch": "x86_64", + "repository": "", + "AffectedProcs": [ + { + "pid": "2512", + "name": "rngd" + } + ] + }, + "libtasn1": { + "name": "libtasn1", + "version": "4.10", + "release": "1.amzn2.0.2", + "newVersion": "4.10", + "newRelease": "1.amzn2.0.2", + "arch": "x86_64", + "repository": "" + }, + "libteam": { + "name": "libteam", + "version": "1.27", + "release": "9.amzn2", + "newVersion": "1.27", + "newRelease": "9.amzn2", + "arch": "x86_64", + "repository": "" + }, + "libtiff": { + "name": "libtiff", + "version": "4.0.3", + "release": "35.amzn2", + "newVersion": "4.0.3", + "newRelease": "35.amzn2", + "arch": "x86_64", + "repository": "" + }, + "libtirpc": { + "name": "libtirpc", + "version": "0.2.4", + "release": "0.16.amzn2", + "newVersion": "0.2.4", + "newRelease": "0.16.amzn2", + "arch": "x86_64", + "repository": "", + "AffectedProcs": [ + { + "pid": "2485", + "name": "rpcbind", + "listenPortStats": [ + { + "bindAddress": "*", + "port": "111", + "portReachableTo": [] + } + ] + } + ] + }, + "libunistring": { + "name": "libunistring", + "version": "0.9.3", + "release": "9.amzn2.0.2", + "newVersion": "0.9.3", + "newRelease": "9.amzn2.0.2", + "arch": "x86_64", + "repository": "", + "AffectedProcs": [ + { + "pid": "2512", + "name": "rngd" + } + ] + }, + "libuser": { + "name": "libuser", + "version": "0.60", + "release": "9.amzn2", + "newVersion": "0.60", + "newRelease": "9.amzn2", + "arch": "x86_64", + "repository": "" + }, + "libutempter": { + "name": "libutempter", + "version": "1.1.6", + "release": "4.amzn2.0.2", + "newVersion": "1.1.6", + "newRelease": "4.amzn2.0.2", + "arch": "x86_64", + "repository": "" + }, + "libuuid": { + "name": "libuuid", + "version": "2.30.2", + "release": "2.amzn2.0.4", + "newVersion": "2.30.2", + "newRelease": "2.amzn2.0.4", + "arch": "x86_64", + "repository": "", + "AffectedProcs": [ + { + "pid": "1", + "name": "systemd" + }, + { + "pid": "3034", + "name": "rsyslogd" + }, + { + "pid": "1700", + "name": "systemd-udevd" + } + ] + }, + "libverto": { + "name": "libverto", + "version": "0.2.5", + "release": "4.amzn2.0.2", + "newVersion": "0.2.5", + "newRelease": "4.amzn2.0.2", + "arch": "x86_64", + "repository": "", + "AffectedProcs": [ + { + "pid": "2488", + "name": "gssproxy" + } + ] + }, + "libverto-libevent": { + "name": "libverto-libevent", + "version": "0.2.5", + "release": "4.amzn2.0.2", + "newVersion": "0.2.5", + "newRelease": "4.amzn2.0.2", + "arch": "x86_64", + "repository": "", + "AffectedProcs": [ + { + "pid": "2488", + "name": "gssproxy" + } + ] + }, + "libwebp": { + "name": "libwebp", + "version": "0.3.0", + "release": "7.amzn2", + "newVersion": "0.3.0", + "newRelease": "7.amzn2", + "arch": "x86_64", + "repository": "" + }, + "libxml2": { + "name": "libxml2", + "version": "2.9.1", + "release": "6.amzn2.5.1", + "newVersion": "2.9.1", + "newRelease": "6.amzn2.5.1", + "arch": "x86_64", + "repository": "", + "AffectedProcs": [ + { + "pid": "2512", + "name": "rngd" + } + ] + }, + "libxml2-python": { + "name": "libxml2-python", + "version": "2.9.1", + "release": "6.amzn2.5.1", + "newVersion": "2.9.1", + "newRelease": "6.amzn2.5.1", + "arch": "x86_64", + "repository": "" + }, + "libyaml": { + "name": "libyaml", + "version": "0.1.4", + "release": "11.amzn2.0.2", + "newVersion": "0.1.4", + "newRelease": "11.amzn2.0.2", + "arch": "x86_64", + "repository": "" + }, + "lm_sensors-libs": { + "name": "lm_sensors-libs", + "version": "3.4.0", + "release": "8.20160601gitf9185e5.amzn2", + "newVersion": "3.4.0", + "newRelease": "8.20160601gitf9185e5.amzn2", + "arch": "x86_64", + "repository": "" + }, + "logrotate": { + "name": "logrotate", + "version": "3.8.6", + "release": "15.amzn2", + "newVersion": "3.8.6", + "newRelease": "15.amzn2", + "arch": "x86_64", + "repository": "" + }, + "lsof": { + "name": "lsof", + "version": "4.87", + "release": "6.amzn2", + "newVersion": "4.87", + "newRelease": "6.amzn2", + "arch": "x86_64", + "repository": "" + }, + "lua": { + "name": "lua", + "version": "5.1.4", + "release": "15.amzn2.0.2", + "newVersion": "5.1.4", + "newRelease": "15.amzn2.0.2", + "arch": "x86_64", + "repository": "" + }, + "lvm2": { + "name": "lvm2", + "version": "7:2.02.177", + "release": "4.amzn2.0.2", + "newVersion": "7:2.02.177", + "newRelease": "4.amzn2.0.2", + "arch": "x86_64", + "repository": "", + "AffectedProcs": [ + { + "pid": "1693", + "name": "lvmetad" + } + ] + }, + "lvm2-libs": { + "name": "lvm2-libs", + "version": "7:2.02.177", + "release": "4.amzn2.0.2", + "newVersion": "7:2.02.177", + "newRelease": "4.amzn2.0.2", + "arch": "x86_64", + "repository": "" + }, + "lz4": { + "name": "lz4", + "version": "1.7.5", + "release": "2.amzn2.0.1", + "newVersion": "1.7.5", + "newRelease": "2.amzn2.0.1", + "arch": "x86_64", + "repository": "", + "AffectedProcs": [ + { + "pid": "1662", + "name": "systemd-journal" + }, + { + "pid": "3034", + "name": "rsyslogd" + }, + { + "pid": "2485", + "name": "rpcbind", + "listenPortStats": [ + { + "bindAddress": "*", + "port": "111", + "portReachableTo": [] + } + ] + }, + { + "pid": "3312", + "name": "sshd" + }, + { + "pid": "2480", + "name": "dbus-daemon" + }, + { + "pid": "3330", + "name": "sshd" + }, + { + "pid": "3208", + "name": "sshd", + "listenPortStats": [ + { + "bindAddress": "*", + "port": "22", + "portReachableTo": [] + } + ] + } + ] + }, + "make": { + "name": "make", + "version": "1:3.82", + "release": "24.amzn2", + "newVersion": "1:3.82", + "newRelease": "24.amzn2", + "arch": "x86_64", + "repository": "" + }, + "man-db": { + "name": "man-db", + "version": "2.6.3", + "release": "9.amzn2.0.3", + "newVersion": "2.6.3", + "newRelease": "9.amzn2.0.3", + "arch": "x86_64", + "repository": "" + }, + "man-pages": { + "name": "man-pages", + "version": "3.53", + "release": "5.amzn2", + "newVersion": "3.53", + "newRelease": "5.amzn2", + "arch": "noarch", + "repository": "" + }, + "man-pages-overrides": { + "name": "man-pages-overrides", + "version": "7.5.2", + "release": "1.amzn2", + "newVersion": "7.5.2", + "newRelease": "1.amzn2", + "arch": "x86_64", + "repository": "" + }, + "mariadb-libs": { + "name": "mariadb-libs", + "version": "1:5.5.68", + "release": "1.amzn2", + "newVersion": "1:5.5.68", + "newRelease": "1.amzn2", + "arch": "x86_64", + "repository": "", + "AffectedProcs": [ + { + "pid": "2978", + "name": "master", + "listenPortStats": [ + { + "bindAddress": "127.0.0.1", + "port": "25", + "portReachableTo": [] + } + ] + }, + { + "pid": "2979", + "name": "pickup" + }, + { + "pid": "2980", + "name": "qmgr" + } + ] + }, + "mdadm": { + "name": "mdadm", + "version": "4.0", + "release": "5.amzn2.0.2", + "newVersion": "4.0", + "newRelease": "5.amzn2.0.2", + "arch": "x86_64", + "repository": "" + }, + "microcode_ctl": { + "name": "microcode_ctl", + "version": "2:2.1", + "release": "47.amzn2.0.7", + "newVersion": "2:2.1", + "newRelease": "47.amzn2.0.7", + "arch": "x86_64", + "repository": "" + }, + "mlocate": { + "name": "mlocate", + "version": "0.26", + "release": "8.amzn2", + "newVersion": "0.26", + "newRelease": "8.amzn2", + "arch": "x86_64", + "repository": "" + }, + "mtr": { + "name": "mtr", + "version": "2:0.92", + "release": "2.amzn2", + "newVersion": "2:0.92", + "newRelease": "2.amzn2", + "arch": "x86_64", + "repository": "" + }, + "nano": { + "name": "nano", + "version": "2.9.8", + "release": "2.amzn2.0.1", + "newVersion": "2.9.8", + "newRelease": "2.amzn2.0.1", + "arch": "x86_64", + "repository": "" + }, + "ncurses": { + "name": "ncurses", + "version": "6.0", + "release": "8.20170212.amzn2.1.3", + "newVersion": "6.0", + "newRelease": "8.20170212.amzn2.1.3", + "arch": "x86_64", + "repository": "" + }, + "ncurses-base": { + "name": "ncurses-base", + "version": "6.0", + "release": "8.20170212.amzn2.1.3", + "newVersion": "6.0", + "newRelease": "8.20170212.amzn2.1.3", + "arch": "noarch", + "repository": "" + }, + "ncurses-libs": { + "name": "ncurses-libs", + "version": "6.0", + "release": "8.20170212.amzn2.1.3", + "newVersion": "6.0", + "newRelease": "8.20170212.amzn2.1.3", + "arch": "x86_64", + "repository": "" + }, + "net-tools": { + "name": "net-tools", + "version": "2.0", + "release": "0.22.20131004git.amzn2.0.2", + "newVersion": "2.0", + "newRelease": "0.22.20131004git.amzn2.0.2", + "arch": "x86_64", + "repository": "" + }, + "nettle": { + "name": "nettle", + "version": "2.7.1", + "release": "8.amzn2.0.2", + "newVersion": "2.7.1", + "newRelease": "8.amzn2.0.2", + "arch": "x86_64", + "repository": "", + "AffectedProcs": [ + { + "pid": "2491", + "name": "chronyd" + } + ] + }, + "newt": { + "name": "newt", + "version": "0.52.15", + "release": "4.amzn2.0.2", + "newVersion": "0.52.15", + "newRelease": "4.amzn2.0.2", + "arch": "x86_64", + "repository": "" + }, + "newt-python": { + "name": "newt-python", + "version": "0.52.15", + "release": "4.amzn2.0.2", + "newVersion": "0.52.15", + "newRelease": "4.amzn2.0.2", + "arch": "x86_64", + "repository": "" + }, + "nfs-utils": { + "name": "nfs-utils", + "version": "1:1.3.0", + "release": "0.54.amzn2.0.2", + "newVersion": "1:1.3.0", + "newRelease": "0.54.amzn2.0.2", + "arch": "x86_64", + "repository": "" + }, + "nspr": { + "name": "nspr", + "version": "4.25.0", + "release": "2.amzn2", + "newVersion": "4.25.0", + "newRelease": "2.amzn2", + "arch": "x86_64", + "repository": "", + "AffectedProcs": [ + { + "pid": "2978", + "name": "master", + "listenPortStats": [ + { + "bindAddress": "127.0.0.1", + "port": "25", + "portReachableTo": [] + } + ] + }, + { + "pid": "3312", + "name": "sshd" + }, + { + "pid": "2979", + "name": "pickup" + }, + { + "pid": "2512", + "name": "rngd" + }, + { + "pid": "2980", + "name": "qmgr" + }, + { + "pid": "3330", + "name": "sshd" + }, + { + "pid": "3208", + "name": "sshd", + "listenPortStats": [ + { + "bindAddress": "*", + "port": "22", + "portReachableTo": [] + } + ] + }, + { + "pid": "2833", + "name": "dhclient" + }, + { + "pid": "2717", + "name": "dhclient" + } + ] + }, + "nss": { + "name": "nss", + "version": "3.53.1", + "release": "3.amzn2", + "newVersion": "3.53.1", + "newRelease": "3.amzn2", + "arch": "x86_64", + "repository": "", + "AffectedProcs": [ + { + "pid": "2978", + "name": "master", + "listenPortStats": [ + { + "bindAddress": "127.0.0.1", + "port": "25", + "portReachableTo": [] + } + ] + }, + { + "pid": "3312", + "name": "sshd" + }, + { + "pid": "2979", + "name": "pickup" + }, + { + "pid": "2512", + "name": "rngd" + }, + { + "pid": "2980", + "name": "qmgr" + }, + { + "pid": "3330", + "name": "sshd" + }, + { + "pid": "3208", + "name": "sshd", + "listenPortStats": [ + { + "bindAddress": "*", + "port": "22", + "portReachableTo": [] + } + ] + }, + { + "pid": "2833", + "name": "dhclient" + }, + { + "pid": "2717", + "name": "dhclient" + } + ] + }, + "nss-pem": { + "name": "nss-pem", + "version": "1.0.3", + "release": "5.amzn2", + "newVersion": "1.0.3", + "newRelease": "5.amzn2", + "arch": "x86_64", + "repository": "" + }, + "nss-softokn": { + "name": "nss-softokn", + "version": "3.53.1", + "release": "6.amzn2", + "newVersion": "3.53.1", + "newRelease": "6.amzn2", + "arch": "x86_64", + "repository": "" + }, + "nss-softokn-freebl": { + "name": "nss-softokn-freebl", + "version": "3.53.1", + "release": "6.amzn2", + "newVersion": "3.53.1", + "newRelease": "6.amzn2", + "arch": "x86_64", + "repository": "" + }, + "nss-sysinit": { + "name": "nss-sysinit", + "version": "3.53.1", + "release": "3.amzn2", + "newVersion": "3.53.1", + "newRelease": "3.amzn2", + "arch": "x86_64", + "repository": "" + }, + "nss-tools": { + "name": "nss-tools", + "version": "3.53.1", + "release": "3.amzn2", + "newVersion": "3.53.1", + "newRelease": "3.amzn2", + "arch": "x86_64", + "repository": "" + }, + "nss-util": { + "name": "nss-util", + "version": "3.53.1", + "release": "1.amzn2", + "newVersion": "3.53.1", + "newRelease": "1.amzn2", + "arch": "x86_64", + "repository": "", + "AffectedProcs": [ + { + "pid": "2978", + "name": "master", + "listenPortStats": [ + { + "bindAddress": "127.0.0.1", + "port": "25", + "portReachableTo": [] + } + ] + }, + { + "pid": "3312", + "name": "sshd" + }, + { + "pid": "2979", + "name": "pickup" + }, + { + "pid": "2512", + "name": "rngd" + }, + { + "pid": "2980", + "name": "qmgr" + }, + { + "pid": "3330", + "name": "sshd" + }, + { + "pid": "3208", + "name": "sshd", + "listenPortStats": [ + { + "bindAddress": "*", + "port": "22", + "portReachableTo": [] + } + ] + }, + { + "pid": "2833", + "name": "dhclient" + }, + { + "pid": "2717", + "name": "dhclient" + } + ] + }, + "ntsysv": { + "name": "ntsysv", + "version": "1.7.4", + "release": "1.amzn2.0.2", + "newVersion": "1.7.4", + "newRelease": "1.amzn2.0.2", + "arch": "x86_64", + "repository": "" + }, + "numactl-libs": { + "name": "numactl-libs", + "version": "2.0.9", + "release": "7.amzn2", + "newVersion": "2.0.9", + "newRelease": "7.amzn2", + "arch": "x86_64", + "repository": "" + }, + "openldap": { + "name": "openldap", + "version": "2.4.44", + "release": "22.amzn2", + "newVersion": "2.4.44", + "newRelease": "22.amzn2", + "arch": "x86_64", + "repository": "", + "AffectedProcs": [ + { + "pid": "2978", + "name": "master", + "listenPortStats": [ + { + "bindAddress": "127.0.0.1", + "port": "25", + "portReachableTo": [] + } + ] + }, + { + "pid": "3312", + "name": "sshd" + }, + { + "pid": "2979", + "name": "pickup" + }, + { + "pid": "2512", + "name": "rngd" + }, + { + "pid": "2980", + "name": "qmgr" + }, + { + "pid": "3330", + "name": "sshd" + }, + { + "pid": "3208", + "name": "sshd", + "listenPortStats": [ + { + "bindAddress": "*", + "port": "22", + "portReachableTo": [] + } + ] + }, + { + "pid": "2833", + "name": "dhclient" + }, + { + "pid": "2717", + "name": "dhclient" + } + ] + }, + "openssh": { + "name": "openssh", + "version": "7.4p1", + "release": "21.amzn2.0.1", + "newVersion": "7.4p1", + "newRelease": "21.amzn2.0.1", + "arch": "x86_64", + "repository": "" + }, + "openssh-clients": { + "name": "openssh-clients", + "version": "7.4p1", + "release": "21.amzn2.0.1", + "newVersion": "7.4p1", + "newRelease": "21.amzn2.0.1", + "arch": "x86_64", + "repository": "" + }, + "openssh-server": { + "name": "openssh-server", + "version": "7.4p1", + "release": "21.amzn2.0.1", + "newVersion": "7.4p1", + "newRelease": "21.amzn2.0.1", + "arch": "x86_64", + "repository": "", + "AffectedProcs": [ + { + "pid": "3312", + "name": "sshd" + }, + { + "pid": "3330", + "name": "sshd" + }, + { + "pid": "3208", + "name": "sshd", + "listenPortStats": [ + { + "bindAddress": "*", + "port": "22", + "portReachableTo": [] + } + ] + } + ] + }, + "openssl": { + "name": "openssl", + "version": "1:1.0.2k", + "release": "19.amzn2.0.6", + "newVersion": "1:1.0.2k", + "newRelease": "19.amzn2.0.6", + "arch": "x86_64", + "repository": "" + }, + "openssl-libs": { + "name": "openssl-libs", + "version": "1:1.0.2k", + "release": "19.amzn2.0.6", + "newVersion": "1:1.0.2k", + "newRelease": "19.amzn2.0.6", + "arch": "x86_64", + "repository": "", + "AffectedProcs": [ + { + "pid": "2978", + "name": "master", + "listenPortStats": [ + { + "bindAddress": "127.0.0.1", + "port": "25", + "portReachableTo": [] + } + ] + }, + { + "pid": "3312", + "name": "sshd" + }, + { + "pid": "2979", + "name": "pickup" + }, + { + "pid": "2512", + "name": "rngd" + }, + { + "pid": "2980", + "name": "qmgr" + }, + { + "pid": "3330", + "name": "sshd" + }, + { + "pid": "3208", + "name": "sshd", + "listenPortStats": [ + { + "bindAddress": "*", + "port": "22", + "portReachableTo": [] + } + ] + }, + { + "pid": "2833", + "name": "dhclient" + }, + { + "pid": "2717", + "name": "dhclient" + } + ] + }, + "os-prober": { + "name": "os-prober", + "version": "1.58", + "release": "9.amzn2.0.2", + "newVersion": "1.58", + "newRelease": "9.amzn2.0.2", + "arch": "x86_64", + "repository": "" + }, + "p11-kit": { + "name": "p11-kit", + "version": "0.23.22", + "release": "1.amzn2.0.1", + "newVersion": "0.23.22", + "newRelease": "1.amzn2.0.1", + "arch": "x86_64", + "repository": "" + }, + "p11-kit-trust": { + "name": "p11-kit-trust", + "version": "0.23.22", + "release": "1.amzn2.0.1", + "newVersion": "0.23.22", + "newRelease": "1.amzn2.0.1", + "arch": "x86_64", + "repository": "" + }, + "pam": { + "name": "pam", + "version": "1.1.8", + "release": "23.amzn2.0.1", + "newVersion": "1.1.8", + "newRelease": "23.amzn2.0.1", + "arch": "x86_64", + "repository": "", + "AffectedProcs": [ + { + "pid": "1", + "name": "systemd" + }, + { + "pid": "3057", + "name": "atd" + }, + { + "pid": "3312", + "name": "sshd" + }, + { + "pid": "3050", + "name": "crond" + }, + { + "pid": "3330", + "name": "sshd" + }, + { + "pid": "3208", + "name": "sshd", + "listenPortStats": [ + { + "bindAddress": "*", + "port": "22", + "portReachableTo": [] + } + ] + } + ] + }, + "parted": { + "name": "parted", + "version": "3.1", + "release": "29.amzn2", + "newVersion": "3.1", + "newRelease": "29.amzn2", + "arch": "x86_64", + "repository": "" + }, + "passwd": { + "name": "passwd", + "version": "0.79", + "release": "5.amzn2", + "newVersion": "0.79", + "newRelease": "5.amzn2", + "arch": "x86_64", + "repository": "" + }, + "pciutils": { + "name": "pciutils", + "version": "3.5.1", + "release": "3.amzn2", + "newVersion": "3.5.1", + "newRelease": "3.amzn2", + "arch": "x86_64", + "repository": "" + }, + "pciutils-libs": { + "name": "pciutils-libs", + "version": "3.5.1", + "release": "3.amzn2", + "newVersion": "3.5.1", + "newRelease": "3.amzn2", + "arch": "x86_64", + "repository": "" + }, + "pcre": { + "name": "pcre", + "version": "8.32", + "release": "17.amzn2.0.2", + "newVersion": "8.32", + "newRelease": "17.amzn2.0.2", + "arch": "x86_64", + "repository": "", + "AffectedProcs": [ + { + "pid": "1", + "name": "systemd" + }, + { + "pid": "2978", + "name": "master", + "listenPortStats": [ + { + "bindAddress": "127.0.0.1", + "port": "25", + "portReachableTo": [] + } + ] + }, + { + "pid": "2443", + "name": "auditd" + }, + { + "pid": "2488", + "name": "gssproxy" + }, + { + "pid": "1662", + "name": "systemd-journal" + }, + { + "pid": "3057", + "name": "atd" + }, + { + "pid": "3034", + "name": "rsyslogd" + }, + { + "pid": "2485", + "name": "rpcbind", + "listenPortStats": [ + { + "bindAddress": "*", + "port": "111", + "portReachableTo": [] + } + ] + }, + { + "pid": "3312", + "name": "sshd" + }, + { + "pid": "2979", + "name": "pickup" + }, + { + "pid": "2476", + "name": "systemd-logind" + }, + { + "pid": "2512", + "name": "rngd" + }, + { + "pid": "2980", + "name": "qmgr" + }, + { + "pid": "2480", + "name": "dbus-daemon" + }, + { + "pid": "3050", + "name": "crond" + }, + { + "pid": "3330", + "name": "sshd" + }, + { + "pid": "1700", + "name": "systemd-udevd" + }, + { + "pid": "1693", + "name": "lvmetad" + }, + { + "pid": "3208", + "name": "sshd", + "listenPortStats": [ + { + "bindAddress": "*", + "port": "22", + "portReachableTo": [] + } + ] + }, + { + "pid": "2833", + "name": "dhclient" + }, + { + "pid": "2717", + "name": "dhclient" + } + ] + }, + "pcre2": { + "name": "pcre2", + "version": "10.23", + "release": "2.amzn2.0.2", + "newVersion": "10.23", + "newRelease": "2.amzn2.0.2", + "arch": "x86_64", + "repository": "" + }, + "perl": { + "name": "perl", + "version": "4:5.16.3", + "release": "299.amzn2.0.1", + "newVersion": "4:5.16.3", + "newRelease": "299.amzn2.0.1", + "arch": "x86_64", + "repository": "" + }, + "perl-Carp": { + "name": "perl-Carp", + "version": "1.26", + "release": "244.amzn2", + "newVersion": "1.26", + "newRelease": "244.amzn2", + "arch": "noarch", + "repository": "" + }, + "perl-Encode": { + "name": "perl-Encode", + "version": "2.51", + "release": "7.amzn2.0.2", + "newVersion": "2.51", + "newRelease": "7.amzn2.0.2", + "arch": "x86_64", + "repository": "" + }, + "perl-Exporter": { + "name": "perl-Exporter", + "version": "5.68", + "release": "3.amzn2", + "newVersion": "5.68", + "newRelease": "3.amzn2", + "arch": "noarch", + "repository": "" + }, + "perl-File-Path": { + "name": "perl-File-Path", + "version": "2.09", + "release": "2.amzn2", + "newVersion": "2.09", + "newRelease": "2.amzn2", + "arch": "noarch", + "repository": "" + }, + "perl-File-Temp": { + "name": "perl-File-Temp", + "version": "0.23.01", + "release": "3.amzn2", + "newVersion": "0.23.01", + "newRelease": "3.amzn2", + "arch": "noarch", + "repository": "" + }, + "perl-Filter": { + "name": "perl-Filter", + "version": "1.49", + "release": "3.amzn2.0.2", + "newVersion": "1.49", + "newRelease": "3.amzn2.0.2", + "arch": "x86_64", + "repository": "" + }, + "perl-Getopt-Long": { + "name": "perl-Getopt-Long", + "version": "2.40", + "release": "3.amzn2", + "newVersion": "2.40", + "newRelease": "3.amzn2", + "arch": "noarch", + "repository": "" + }, + "perl-HTTP-Tiny": { + "name": "perl-HTTP-Tiny", + "version": "0.033", + "release": "3.amzn2", + "newVersion": "0.033", + "newRelease": "3.amzn2", + "arch": "noarch", + "repository": "" + }, + "perl-PathTools": { + "name": "perl-PathTools", + "version": "3.40", + "release": "5.amzn2.0.2", + "newVersion": "3.40", + "newRelease": "5.amzn2.0.2", + "arch": "x86_64", + "repository": "" + }, + "perl-Pod-Escapes": { + "name": "perl-Pod-Escapes", + "version": "1:1.04", + "release": "299.amzn2.0.1", + "newVersion": "1:1.04", + "newRelease": "299.amzn2.0.1", + "arch": "noarch", + "repository": "" + }, + "perl-Pod-Perldoc": { + "name": "perl-Pod-Perldoc", + "version": "3.20", + "release": "4.amzn2", + "newVersion": "3.20", + "newRelease": "4.amzn2", + "arch": "noarch", + "repository": "" + }, + "perl-Pod-Simple": { + "name": "perl-Pod-Simple", + "version": "1:3.28", + "release": "4.amzn2", + "newVersion": "1:3.28", + "newRelease": "4.amzn2", + "arch": "noarch", + "repository": "" + }, + "perl-Pod-Usage": { + "name": "perl-Pod-Usage", + "version": "1.63", + "release": "3.amzn2", + "newVersion": "1.63", + "newRelease": "3.amzn2", + "arch": "noarch", + "repository": "" + }, + "perl-Scalar-List-Utils": { + "name": "perl-Scalar-List-Utils", + "version": "1.27", + "release": "248.amzn2.0.2", + "newVersion": "1.27", + "newRelease": "248.amzn2.0.2", + "arch": "x86_64", + "repository": "" + }, + "perl-Socket": { + "name": "perl-Socket", + "version": "2.010", + "release": "4.amzn2.0.2", + "newVersion": "2.010", + "newRelease": "4.amzn2.0.2", + "arch": "x86_64", + "repository": "" + }, + "perl-Storable": { + "name": "perl-Storable", + "version": "2.45", + "release": "3.amzn2.0.2", + "newVersion": "2.45", + "newRelease": "3.amzn2.0.2", + "arch": "x86_64", + "repository": "" + }, + "perl-Text-ParseWords": { + "name": "perl-Text-ParseWords", + "version": "3.29", + "release": "4.amzn2", + "newVersion": "3.29", + "newRelease": "4.amzn2", + "arch": "noarch", + "repository": "" + }, + "perl-Time-HiRes": { + "name": "perl-Time-HiRes", + "version": "4:1.9725", + "release": "3.amzn2.0.2", + "newVersion": "4:1.9725", + "newRelease": "3.amzn2.0.2", + "arch": "x86_64", + "repository": "" + }, + "perl-Time-Local": { + "name": "perl-Time-Local", + "version": "1.2300", + "release": "2.amzn2", + "newVersion": "1.2300", + "newRelease": "2.amzn2", + "arch": "noarch", + "repository": "" + }, + "perl-constant": { + "name": "perl-constant", + "version": "1.27", + "release": "2.amzn2.0.1", + "newVersion": "1.27", + "newRelease": "2.amzn2.0.1", + "arch": "noarch", + "repository": "" + }, + "perl-libs": { + "name": "perl-libs", + "version": "4:5.16.3", + "release": "299.amzn2.0.1", + "newVersion": "4:5.16.3", + "newRelease": "299.amzn2.0.1", + "arch": "x86_64", + "repository": "" + }, + "perl-macros": { + "name": "perl-macros", + "version": "4:5.16.3", + "release": "299.amzn2.0.1", + "newVersion": "4:5.16.3", + "newRelease": "299.amzn2.0.1", + "arch": "x86_64", + "repository": "" + }, + "perl-parent": { + "name": "perl-parent", + "version": "1:0.225", + "release": "244.amzn2.0.1", + "newVersion": "1:0.225", + "newRelease": "244.amzn2.0.1", + "arch": "noarch", + "repository": "" + }, + "perl-podlators": { + "name": "perl-podlators", + "version": "2.5.1", + "release": "3.amzn2.0.1", + "newVersion": "2.5.1", + "newRelease": "3.amzn2.0.1", + "arch": "noarch", + "repository": "" + }, + "perl-threads": { + "name": "perl-threads", + "version": "1.87", + "release": "4.amzn2.0.2", + "newVersion": "1.87", + "newRelease": "4.amzn2.0.2", + "arch": "x86_64", + "repository": "" + }, + "perl-threads-shared": { + "name": "perl-threads-shared", + "version": "1.43", + "release": "6.amzn2.0.2", + "newVersion": "1.43", + "newRelease": "6.amzn2.0.2", + "arch": "x86_64", + "repository": "" + }, + "pinentry": { + "name": "pinentry", + "version": "0.8.1", + "release": "17.amzn2.0.2", + "newVersion": "0.8.1", + "newRelease": "17.amzn2.0.2", + "arch": "x86_64", + "repository": "" + }, + "pkgconfig": { + "name": "pkgconfig", + "version": "1:0.27.1", + "release": "4.amzn2.0.2", + "newVersion": "1:0.27.1", + "newRelease": "4.amzn2.0.2", + "arch": "x86_64", + "repository": "" + }, + "plymouth": { + "name": "plymouth", + "version": "0.8.9", + "release": "0.28.20140113.amzn2.0.2", + "newVersion": "0.8.9", + "newRelease": "0.28.20140113.amzn2.0.2", + "arch": "x86_64", + "repository": "" + }, + "plymouth-core-libs": { + "name": "plymouth-core-libs", + "version": "0.8.9", + "release": "0.28.20140113.amzn2.0.2", + "newVersion": "0.8.9", + "newRelease": "0.28.20140113.amzn2.0.2", + "arch": "x86_64", + "repository": "" + }, + "plymouth-scripts": { + "name": "plymouth-scripts", + "version": "0.8.9", + "release": "0.28.20140113.amzn2.0.2", + "newVersion": "0.8.9", + "newRelease": "0.28.20140113.amzn2.0.2", + "arch": "x86_64", + "repository": "" + }, + "pm-utils": { + "name": "pm-utils", + "version": "1.4.1", + "release": "27.amzn2.0.1", + "newVersion": "1.4.1", + "newRelease": "27.amzn2.0.1", + "arch": "x86_64", + "repository": "" + }, + "policycoreutils": { + "name": "policycoreutils", + "version": "2.5", + "release": "22.amzn2", + "newVersion": "2.5", + "newRelease": "22.amzn2", + "arch": "x86_64", + "repository": "" + }, + "popt": { + "name": "popt", + "version": "1.13", + "release": "16.amzn2.0.2", + "newVersion": "1.13", + "newRelease": "16.amzn2.0.2", + "arch": "x86_64", + "repository": "", + "AffectedProcs": [ + { + "pid": "2488", + "name": "gssproxy" + } + ] + }, + "postfix": { + "name": "postfix", + "version": "2:2.10.1", + "release": "6.amzn2.0.3", + "newVersion": "2:2.10.1", + "newRelease": "6.amzn2.0.3", + "arch": "x86_64", + "repository": "", + "AffectedProcs": [ + { + "pid": "2978", + "name": "master", + "listenPortStats": [ + { + "bindAddress": "127.0.0.1", + "port": "25", + "portReachableTo": [] + } + ] + }, + { + "pid": "2979", + "name": "pickup" + }, + { + "pid": "2980", + "name": "qmgr" + } + ] + }, + "procps-ng": { + "name": "procps-ng", + "version": "3.3.10", + "release": "26.amzn2", + "newVersion": "3.3.10", + "newRelease": "26.amzn2", + "arch": "x86_64", + "repository": "" + }, + "psacct": { + "name": "psacct", + "version": "6.6.1", + "release": "13.amzn2.0.2", + "newVersion": "6.6.1", + "newRelease": "13.amzn2.0.2", + "arch": "x86_64", + "repository": "" + }, + "psmisc": { + "name": "psmisc", + "version": "22.20", + "release": "15.amzn2.0.2", + "newVersion": "22.20", + "newRelease": "15.amzn2.0.2", + "arch": "x86_64", + "repository": "" + }, + "pth": { + "name": "pth", + "version": "2.0.7", + "release": "23.amzn2.0.2", + "newVersion": "2.0.7", + "newRelease": "23.amzn2.0.2", + "arch": "x86_64", + "repository": "" + }, + "pygpgme": { + "name": "pygpgme", + "version": "0.3", + "release": "9.amzn2.0.3", + "newVersion": "0.3", + "newRelease": "9.amzn2.0.3", + "arch": "x86_64", + "repository": "" + }, + "pyliblzma": { + "name": "pyliblzma", + "version": "0.5.3", + "release": "25.amzn2", + "newVersion": "0.5.3", + "newRelease": "25.amzn2", + "arch": "x86_64", + "repository": "" + }, + "pystache": { + "name": "pystache", + "version": "0.5.3", + "release": "2.amzn2", + "newVersion": "0.5.3", + "newRelease": "2.amzn2", + "arch": "noarch", + "repository": "" + }, + "python": { + "name": "python", + "version": "2.7.18", + "release": "1.amzn2.0.3", + "newVersion": "2.7.18", + "newRelease": "1.amzn2.0.3", + "arch": "x86_64", + "repository": "" + }, + "python-babel": { + "name": "python-babel", + "version": "0.9.6", + "release": "8.amzn2.0.1", + "newVersion": "0.9.6", + "newRelease": "8.amzn2.0.1", + "arch": "noarch", + "repository": "" + }, + "python-backports": { + "name": "python-backports", + "version": "1.0", + "release": "8.amzn2.0.2", + "newVersion": "1.0", + "newRelease": "8.amzn2.0.2", + "arch": "x86_64", + "repository": "" + }, + "python-backports-ssl_match_hostname": { + "name": "python-backports-ssl_match_hostname", + "version": "3.5.0.1", + "release": "1.amzn2", + "newVersion": "3.5.0.1", + "newRelease": "1.amzn2", + "arch": "noarch", + "repository": "" + }, + "python-cffi": { + "name": "python-cffi", + "version": "1.6.0", + "release": "5.amzn2.0.2", + "newVersion": "1.6.0", + "newRelease": "5.amzn2.0.2", + "arch": "x86_64", + "repository": "" + }, + "python-chardet": { + "name": "python-chardet", + "version": "2.2.1", + "release": "1.amzn2", + "newVersion": "2.2.1", + "newRelease": "1.amzn2", + "arch": "noarch", + "repository": "" + }, + "python-colorama": { + "name": "python-colorama", + "version": "0.3.2", + "release": "3.amzn2", + "newVersion": "0.3.2", + "newRelease": "3.amzn2", + "arch": "noarch", + "repository": "" + }, + "python-configobj": { + "name": "python-configobj", + "version": "4.7.2", + "release": "7.amzn2", + "newVersion": "4.7.2", + "newRelease": "7.amzn2", + "arch": "noarch", + "repository": "" + }, + "python-daemon": { + "name": "python-daemon", + "version": "1.6", + "release": "4.amzn2", + "newVersion": "1.6", + "newRelease": "4.amzn2", + "arch": "noarch", + "repository": "" + }, + "python-devel": { + "name": "python-devel", + "version": "2.7.18", + "release": "1.amzn2.0.3", + "newVersion": "2.7.18", + "newRelease": "1.amzn2.0.3", + "arch": "x86_64", + "repository": "" + }, + "python-docutils": { + "name": "python-docutils", + "version": "0.12", + "release": "0.2.20140510svn7747.amzn2", + "newVersion": "0.12", + "newRelease": "0.2.20140510svn7747.amzn2", + "arch": "noarch", + "repository": "" + }, + "python-enum34": { + "name": "python-enum34", + "version": "1.0.4", + "release": "1.amzn2", + "newVersion": "1.0.4", + "newRelease": "1.amzn2", + "arch": "noarch", + "repository": "" + }, + "python-idna": { + "name": "python-idna", + "version": "2.4", + "release": "1.amzn2", + "newVersion": "2.4", + "newRelease": "1.amzn2", + "arch": "noarch", + "repository": "" + }, + "python-iniparse": { + "name": "python-iniparse", + "version": "0.4", + "release": "9.amzn2", + "newVersion": "0.4", + "newRelease": "9.amzn2", + "arch": "noarch", + "repository": "" + }, + "python-ipaddress": { + "name": "python-ipaddress", + "version": "1.0.16", + "release": "2.amzn2", + "newVersion": "1.0.16", + "newRelease": "2.amzn2", + "arch": "noarch", + "repository": "" + }, + "python-jinja2": { + "name": "python-jinja2", + "version": "2.7.2", + "release": "3.amzn2", + "newVersion": "2.7.2", + "newRelease": "3.amzn2", + "arch": "noarch", + "repository": "" + }, + "python-jsonpatch": { + "name": "python-jsonpatch", + "version": "1.2", + "release": "4.amzn2", + "newVersion": "1.2", + "newRelease": "4.amzn2", + "arch": "noarch", + "repository": "" + }, + "python-jsonpointer": { + "name": "python-jsonpointer", + "version": "1.9", + "release": "2.amzn2", + "newVersion": "1.9", + "newRelease": "2.amzn2", + "arch": "noarch", + "repository": "" + }, + "python-jwcrypto": { + "name": "python-jwcrypto", + "version": "0.4.2", + "release": "1.amzn2", + "newVersion": "0.4.2", + "newRelease": "1.amzn2", + "arch": "noarch", + "repository": "" + }, + "python-kitchen": { + "name": "python-kitchen", + "version": "1.1.1", + "release": "5.amzn2", + "newVersion": "1.1.1", + "newRelease": "5.amzn2", + "arch": "noarch", + "repository": "" + }, + "python-libs": { + "name": "python-libs", + "version": "2.7.18", + "release": "1.amzn2.0.3", + "newVersion": "2.7.18", + "newRelease": "1.amzn2.0.3", + "arch": "x86_64", + "repository": "" + }, + "python-lockfile": { + "name": "python-lockfile", + "version": "1:0.9.1", + "release": "4.amzn2", + "newVersion": "1:0.9.1", + "newRelease": "4.amzn2", + "arch": "noarch", + "repository": "" + }, + "python-markupsafe": { + "name": "python-markupsafe", + "version": "0.11", + "release": "10.amzn2.0.2", + "newVersion": "0.11", + "newRelease": "10.amzn2.0.2", + "arch": "x86_64", + "repository": "" + }, + "python-pillow": { + "name": "python-pillow", + "version": "2.0.0", + "release": "21.gitd1c6db8.amzn2.0.1", + "newVersion": "2.0.0", + "newRelease": "21.gitd1c6db8.amzn2.0.1", + "arch": "x86_64", + "repository": "" + }, + "python-ply": { + "name": "python-ply", + "version": "3.4", + "release": "11.amzn2", + "newVersion": "3.4", + "newRelease": "11.amzn2", + "arch": "noarch", + "repository": "" + }, + "python-pycparser": { + "name": "python-pycparser", + "version": "2.14", + "release": "1.amzn2", + "newVersion": "2.14", + "newRelease": "1.amzn2", + "arch": "noarch", + "repository": "" + }, + "python-pycurl": { + "name": "python-pycurl", + "version": "7.19.0", + "release": "19.amzn2.0.2", + "newVersion": "7.19.0", + "newRelease": "19.amzn2.0.2", + "arch": "x86_64", + "repository": "" + }, + "python-repoze-lru": { + "name": "python-repoze-lru", + "version": "0.4", + "release": "3.amzn2", + "newVersion": "0.4", + "newRelease": "3.amzn2", + "arch": "noarch", + "repository": "" + }, + "python-requests": { + "name": "python-requests", + "version": "2.6.0", + "release": "7.amzn2", + "newVersion": "2.6.0", + "newRelease": "7.amzn2", + "arch": "noarch", + "repository": "" + }, + "python-simplejson": { + "name": "python-simplejson", + "version": "3.2.0", + "release": "1.amzn2.0.2", + "newVersion": "3.2.0", + "newRelease": "1.amzn2.0.2", + "arch": "x86_64", + "repository": "" + }, + "python-six": { + "name": "python-six", + "version": "1.9.0", + "release": "2.amzn2", + "newVersion": "1.9.0", + "newRelease": "2.amzn2", + "arch": "noarch", + "repository": "" + }, + "python-urlgrabber": { + "name": "python-urlgrabber", + "version": "3.10", + "release": "9.amzn2.0.1", + "newVersion": "3.10", + "newRelease": "9.amzn2.0.1", + "arch": "noarch", + "repository": "" + }, + "python-urllib3": { + "name": "python-urllib3", + "version": "1.25.7", + "release": "1.amzn2.0.1", + "newVersion": "1.25.7", + "newRelease": "1.amzn2.0.1", + "arch": "noarch", + "repository": "" + }, + "python2-botocore": { + "name": "python2-botocore", + "version": "1.18.6", + "release": "1.amzn2.0.1", + "newVersion": "1.18.6", + "newRelease": "1.amzn2.0.1", + "arch": "noarch", + "repository": "" + }, + "python2-cryptography": { + "name": "python2-cryptography", + "version": "1.7.2", + "release": "2.amzn2", + "newVersion": "1.7.2", + "newRelease": "2.amzn2", + "arch": "x86_64", + "repository": "" + }, + "python2-dateutil": { + "name": "python2-dateutil", + "version": "1:2.6.0", + "release": "3.amzn2.0.1", + "newVersion": "1:2.6.0", + "newRelease": "3.amzn2.0.1", + "arch": "noarch", + "repository": "" + }, + "python2-futures": { + "name": "python2-futures", + "version": "3.0.5", + "release": "1.amzn2", + "newVersion": "3.0.5", + "newRelease": "1.amzn2", + "arch": "noarch", + "repository": "" + }, + "python2-jmespath": { + "name": "python2-jmespath", + "version": "0.9.3", + "release": "1.amzn2.0.1", + "newVersion": "0.9.3", + "newRelease": "1.amzn2.0.1", + "arch": "noarch", + "repository": "" + }, + "python2-jsonschema": { + "name": "python2-jsonschema", + "version": "2.5.1", + "release": "3.amzn2.0.1", + "newVersion": "2.5.1", + "newRelease": "3.amzn2.0.1", + "arch": "noarch", + "repository": "" + }, + "python2-oauthlib": { + "name": "python2-oauthlib", + "version": "2.0.1", + "release": "8.amzn2.0.1", + "newVersion": "2.0.1", + "newRelease": "8.amzn2.0.1", + "arch": "noarch", + "repository": "" + }, + "python2-pyasn1": { + "name": "python2-pyasn1", + "version": "0.1.9", + "release": "7.amzn2.0.1", + "newVersion": "0.1.9", + "newRelease": "7.amzn2.0.1", + "arch": "noarch", + "repository": "" + }, + "python2-rpm": { + "name": "python2-rpm", + "version": "4.11.3", + "release": "40.amzn2.0.5", + "newVersion": "4.11.3", + "newRelease": "40.amzn2.0.5", + "arch": "x86_64", + "repository": "" + }, + "python2-rsa": { + "name": "python2-rsa", + "version": "3.4.1", + "release": "1.amzn2.0.1", + "newVersion": "3.4.1", + "newRelease": "1.amzn2.0.1", + "arch": "noarch", + "repository": "" + }, + "python2-s3transfer": { + "name": "python2-s3transfer", + "version": "0.3.3", + "release": "1.amzn2.0.1", + "newVersion": "0.3.3", + "newRelease": "1.amzn2.0.1", + "arch": "noarch", + "repository": "" + }, + "python2-setuptools": { + "name": "python2-setuptools", + "version": "38.4.0", + "release": "3.amzn2.0.6", + "newVersion": "38.4.0", + "newRelease": "3.amzn2.0.6", + "arch": "noarch", + "repository": "" + }, + "pyxattr": { + "name": "pyxattr", + "version": "0.5.1", + "release": "5.amzn2.0.2", + "newVersion": "0.5.1", + "newRelease": "5.amzn2.0.2", + "arch": "x86_64", + "repository": "" + }, + "qrencode-libs": { + "name": "qrencode-libs", + "version": "3.4.1", + "release": "3.amzn2.0.2", + "newVersion": "3.4.1", + "newRelease": "3.amzn2.0.2", + "arch": "x86_64", + "repository": "" + }, + "quota": { + "name": "quota", + "version": "1:4.01", + "release": "17.amzn2", + "newVersion": "1:4.01", + "newRelease": "17.amzn2", + "arch": "x86_64", + "repository": "" + }, + "quota-nls": { + "name": "quota-nls", + "version": "1:4.01", + "release": "17.amzn2", + "newVersion": "1:4.01", + "newRelease": "17.amzn2", + "arch": "noarch", + "repository": "" + }, + "rdate": { + "name": "rdate", + "version": "1.4", + "release": "25.amzn2.0.1", + "newVersion": "1.4", + "newRelease": "25.amzn2.0.1", + "arch": "x86_64", + "repository": "" + }, + "readline": { + "name": "readline", + "version": "6.2", + "release": "10.amzn2.0.2", + "newVersion": "6.2", + "newRelease": "10.amzn2.0.2", + "arch": "x86_64", + "repository": "" + }, + "rng-tools": { + "name": "rng-tools", + "version": "6.8", + "release": "3.amzn2.0.5", + "newVersion": "6.8", + "newRelease": "3.amzn2.0.5", + "arch": "x86_64", + "repository": "", + "AffectedProcs": [ + { + "pid": "2512", + "name": "rngd" + } + ] + }, + "rootfiles": { + "name": "rootfiles", + "version": "8.1", + "release": "11.amzn2", + "newVersion": "8.1", + "newRelease": "11.amzn2", + "arch": "noarch", + "repository": "" + }, + "rpcbind": { + "name": "rpcbind", + "version": "0.2.0", + "release": "44.amzn2", + "newVersion": "0.2.0", + "newRelease": "44.amzn2", + "arch": "x86_64", + "repository": "", + "AffectedProcs": [ + { + "pid": "2485", + "name": "rpcbind", + "listenPortStats": [ + { + "bindAddress": "*", + "port": "111", + "portReachableTo": [] + } + ] + } + ] + }, + "rpm": { + "name": "rpm", + "version": "4.11.3", + "release": "40.amzn2.0.5", + "newVersion": "4.11.3", + "newRelease": "40.amzn2.0.5", + "arch": "x86_64", + "repository": "" + }, + "rpm-build-libs": { + "name": "rpm-build-libs", + "version": "4.11.3", + "release": "40.amzn2.0.5", + "newVersion": "4.11.3", + "newRelease": "40.amzn2.0.5", + "arch": "x86_64", + "repository": "" + }, + "rpm-libs": { + "name": "rpm-libs", + "version": "4.11.3", + "release": "40.amzn2.0.5", + "newVersion": "4.11.3", + "newRelease": "40.amzn2.0.5", + "arch": "x86_64", + "repository": "" + }, + "rpm-plugin-systemd-inhibit": { + "name": "rpm-plugin-systemd-inhibit", + "version": "4.11.3", + "release": "40.amzn2.0.5", + "newVersion": "4.11.3", + "newRelease": "40.amzn2.0.5", + "arch": "x86_64", + "repository": "" + }, + "rsync": { + "name": "rsync", + "version": "3.1.2", + "release": "4.amzn2", + "newVersion": "3.1.2", + "newRelease": "4.amzn2", + "arch": "x86_64", + "repository": "" + }, + "rsyslog": { + "name": "rsyslog", + "version": "8.24.0", + "release": "52.amzn2", + "newVersion": "8.24.0", + "newRelease": "52.amzn2", + "arch": "x86_64", + "repository": "", + "AffectedProcs": [ + { + "pid": "3034", + "name": "rsyslogd" + } + ] + }, + "scl-utils": { + "name": "scl-utils", + "version": "20130529", + "release": "18.amzn2.0.1", + "newVersion": "20130529", + "newRelease": "18.amzn2.0.1", + "arch": "x86_64", + "repository": "" + }, + "screen": { + "name": "screen", + "version": "4.1.0", + "release": "0.25.20120314git3c2946.amzn2", + "newVersion": "4.1.0", + "newRelease": "0.25.20120314git3c2946.amzn2", + "arch": "x86_64", + "repository": "" + }, + "sed": { + "name": "sed", + "version": "4.2.2", + "release": "5.amzn2.0.2", + "newVersion": "4.2.2", + "newRelease": "5.amzn2.0.2", + "arch": "x86_64", + "repository": "" + }, + "selinux-policy": { + "name": "selinux-policy", + "version": "3.13.1", + "release": "192.amzn2.6.7", + "newVersion": "3.13.1", + "newRelease": "192.amzn2.6.7", + "arch": "noarch", + "repository": "" + }, + "selinux-policy-targeted": { + "name": "selinux-policy-targeted", + "version": "3.13.1", + "release": "192.amzn2.6.7", + "newVersion": "3.13.1", + "newRelease": "192.amzn2.6.7", + "arch": "noarch", + "repository": "" + }, + "setserial": { + "name": "setserial", + "version": "2.17", + "release": "33.amzn2.0.1", + "newVersion": "2.17", + "newRelease": "33.amzn2.0.1", + "arch": "x86_64", + "repository": "" + }, + "setup": { + "name": "setup", + "version": "2.8.71", + "release": "10.amzn2.0.1", + "newVersion": "2.8.71", + "newRelease": "10.amzn2.0.1", + "arch": "noarch", + "repository": "" + }, + "setuptool": { + "name": "setuptool", + "version": "1.19.11", + "release": "8.amzn2.0.1", + "newVersion": "1.19.11", + "newRelease": "8.amzn2.0.1", + "arch": "x86_64", + "repository": "" + }, + "sgpio": { + "name": "sgpio", + "version": "1.2.0.10", + "release": "13.amzn2.0.1", + "newVersion": "1.2.0.10", + "newRelease": "13.amzn2.0.1", + "arch": "x86_64", + "repository": "" + }, + "shadow-utils": { + "name": "shadow-utils", + "version": "2:4.1.5.1", + "release": "24.amzn2.0.2", + "newVersion": "2:4.1.5.1", + "newRelease": "24.amzn2.0.2", + "arch": "x86_64", + "repository": "" + }, + "shared-mime-info": { + "name": "shared-mime-info", + "version": "1.8", + "release": "4.amzn2", + "newVersion": "1.8", + "newRelease": "4.amzn2", + "arch": "x86_64", + "repository": "" + }, + "slang": { + "name": "slang", + "version": "2.2.4", + "release": "11.amzn2.0.2", + "newVersion": "2.2.4", + "newRelease": "11.amzn2.0.2", + "arch": "x86_64", + "repository": "" + }, + "sqlite": { + "name": "sqlite", + "version": "3.7.17", + "release": "8.amzn2.1.1", + "newVersion": "3.7.17", + "newRelease": "8.amzn2.1.1", + "arch": "x86_64", + "repository": "" + }, + "sssd-client": { + "name": "sssd-client", + "version": "1.16.5", + "release": "10.amzn2.6", + "newVersion": "1.16.5", + "newRelease": "10.amzn2.6", + "arch": "x86_64", + "repository": "", + "AffectedProcs": [ + { + "pid": "2978", + "name": "master", + "listenPortStats": [ + { + "bindAddress": "127.0.0.1", + "port": "25", + "portReachableTo": [] + } + ] + }, + { + "pid": "2443", + "name": "auditd" + }, + { + "pid": "3057", + "name": "atd" + }, + { + "pid": "3103", + "name": "agetty" + }, + { + "pid": "3312", + "name": "sshd" + }, + { + "pid": "2979", + "name": "pickup" + }, + { + "pid": "2473", + "name": "lsmd" + }, + { + "pid": "2476", + "name": "systemd-logind" + }, + { + "pid": "2980", + "name": "qmgr" + }, + { + "pid": "2480", + "name": "dbus-daemon" + }, + { + "pid": "3050", + "name": "crond" + }, + { + "pid": "3330", + "name": "sshd" + }, + { + "pid": "1700", + "name": "systemd-udevd" + }, + { + "pid": "2491", + "name": "chronyd" + }, + { + "pid": "3104", + "name": "agetty" + }, + { + "pid": "3208", + "name": "sshd", + "listenPortStats": [ + { + "bindAddress": "*", + "port": "22", + "portReachableTo": [] + } + ] + } + ] + }, + "strace": { + "name": "strace", + "version": "4.26", + "release": "1.amzn2.0.1", + "newVersion": "4.26", + "newRelease": "1.amzn2.0.1", + "arch": "x86_64", + "repository": "" + }, + "sudo": { + "name": "sudo", + "version": "1.8.23", + "release": "10.amzn2.1", + "newVersion": "1.8.23", + "newRelease": "10.amzn2.1", + "arch": "x86_64", + "repository": "" + }, + "sysctl-defaults": { + "name": "sysctl-defaults", + "version": "1.0", + "release": "2.amzn2", + "newVersion": "1.0", + "newRelease": "2.amzn2", + "arch": "noarch", + "repository": "" + }, + "sysstat": { + "name": "sysstat", + "version": "10.1.5", + "release": "18.amzn2.0.1", + "newVersion": "10.1.5", + "newRelease": "18.amzn2.0.1", + "arch": "x86_64", + "repository": "" + }, + "system-release": { + "name": "system-release", + "version": "1:2", + "release": "13.amzn2", + "newVersion": "1:2", + "newRelease": "13.amzn2", + "arch": "x86_64", + "repository": "" + }, + "systemd": { + "name": "systemd", + "version": "219", + "release": "57.amzn2.0.12", + "newVersion": "219", + "newRelease": "57.amzn2.0.12", + "arch": "x86_64", + "repository": "", + "AffectedProcs": [ + { + "pid": "1", + "name": "systemd" + }, + { + "pid": "1662", + "name": "systemd-journal" + }, + { + "pid": "2476", + "name": "systemd-logind" + }, + { + "pid": "1700", + "name": "systemd-udevd" + } + ] + }, + "systemd-libs": { + "name": "systemd-libs", + "version": "219", + "release": "57.amzn2.0.12", + "newVersion": "219", + "newRelease": "57.amzn2.0.12", + "arch": "x86_64", + "repository": "", + "AffectedProcs": [ + { + "pid": "3034", + "name": "rsyslogd" + }, + { + "pid": "2485", + "name": "rpcbind", + "listenPortStats": [ + { + "bindAddress": "*", + "port": "111", + "portReachableTo": [] + } + ] + }, + { + "pid": "3312", + "name": "sshd" + }, + { + "pid": "2480", + "name": "dbus-daemon" + }, + { + "pid": "3330", + "name": "sshd" + }, + { + "pid": "2491", + "name": "chronyd" + }, + { + "pid": "1693", + "name": "lvmetad" + }, + { + "pid": "3208", + "name": "sshd", + "listenPortStats": [ + { + "bindAddress": "*", + "port": "22", + "portReachableTo": [] + } + ] + }, + { + "pid": "2833", + "name": "dhclient" + }, + { + "pid": "2717", + "name": "dhclient" + } + ] + }, + "systemd-sysv": { + "name": "systemd-sysv", + "version": "219", + "release": "57.amzn2.0.12", + "newVersion": "219", + "newRelease": "57.amzn2.0.12", + "arch": "x86_64", + "repository": "" + }, + "systemtap-runtime": { + "name": "systemtap-runtime", + "version": "4.2", + "release": "1.amzn2.0.1", + "newVersion": "4.2", + "newRelease": "1.amzn2.0.1", + "arch": "x86_64", + "repository": "" + }, + "sysvinit-tools": { + "name": "sysvinit-tools", + "version": "2.88", + "release": "14.dsf.amzn2.0.2", + "newVersion": "2.88", + "newRelease": "14.dsf.amzn2.0.2", + "arch": "x86_64", + "repository": "" + }, + "tar": { + "name": "tar", + "version": "2:1.26", + "release": "35.amzn2", + "newVersion": "2:1.26", + "newRelease": "35.amzn2", + "arch": "x86_64", + "repository": "" + }, + "tcp_wrappers": { + "name": "tcp_wrappers", + "version": "7.6", + "release": "77.amzn2.0.2", + "newVersion": "7.6", + "newRelease": "77.amzn2.0.2", + "arch": "x86_64", + "repository": "" + }, + "tcp_wrappers-libs": { + "name": "tcp_wrappers-libs", + "version": "7.6", + "release": "77.amzn2.0.2", + "newVersion": "7.6", + "newRelease": "77.amzn2.0.2", + "arch": "x86_64", + "repository": "", + "AffectedProcs": [ + { + "pid": "2443", + "name": "auditd" + }, + { + "pid": "2485", + "name": "rpcbind", + "listenPortStats": [ + { + "bindAddress": "*", + "port": "111", + "portReachableTo": [] + } + ] + }, + { + "pid": "3312", + "name": "sshd" + }, + { + "pid": "3330", + "name": "sshd" + }, + { + "pid": "3208", + "name": "sshd", + "listenPortStats": [ + { + "bindAddress": "*", + "port": "22", + "portReachableTo": [] + } + ] + } + ] + }, + "tcpdump": { + "name": "tcpdump", + "version": "14:4.9.2", + "release": "4.amzn2.1", + "newVersion": "14:4.9.2", + "newRelease": "4.amzn2.1", + "arch": "x86_64", + "repository": "" + }, + "tcsh": { + "name": "tcsh", + "version": "6.18.01", + "release": "15.amzn2.0.2", + "newVersion": "6.18.01", + "newRelease": "15.amzn2.0.2", + "arch": "x86_64", + "repository": "" + }, + "teamd": { + "name": "teamd", + "version": "1.27", + "release": "9.amzn2", + "newVersion": "1.27", + "newRelease": "9.amzn2", + "arch": "x86_64", + "repository": "" + }, + "time": { + "name": "time", + "version": "1.7", + "release": "45.amzn2.0.2", + "newVersion": "1.7", + "newRelease": "45.amzn2.0.2", + "arch": "x86_64", + "repository": "" + }, + "traceroute": { + "name": "traceroute", + "version": "3:2.0.22", + "release": "2.amzn2.0.1", + "newVersion": "3:2.0.22", + "newRelease": "2.amzn2.0.1", + "arch": "x86_64", + "repository": "" + }, + "tzdata": { + "name": "tzdata", + "version": "2020d", + "release": "2.amzn2", + "newVersion": "2020d", + "newRelease": "2.amzn2", + "arch": "noarch", + "repository": "" + }, + "unzip": { + "name": "unzip", + "version": "6.0", + "release": "43.amzn2", + "newVersion": "6.0", + "newRelease": "43.amzn2", + "arch": "x86_64", + "repository": "" + }, + "update-motd": { + "name": "update-motd", + "version": "1.1.2", + "release": "2.amzn2", + "newVersion": "1.1.2", + "newRelease": "2.amzn2", + "arch": "noarch", + "repository": "" + }, + "usermode": { + "name": "usermode", + "version": "1.111", + "release": "5.amzn2.0.2", + "newVersion": "1.111", + "newRelease": "5.amzn2.0.2", + "arch": "x86_64", + "repository": "" + }, + "ustr": { + "name": "ustr", + "version": "1.0.4", + "release": "16.amzn2.0.3", + "newVersion": "1.0.4", + "newRelease": "16.amzn2.0.3", + "arch": "x86_64", + "repository": "" + }, + "util-linux": { + "name": "util-linux", + "version": "2.30.2", + "release": "2.amzn2.0.4", + "newVersion": "2.30.2", + "newRelease": "2.amzn2.0.4", + "arch": "x86_64", + "repository": "", + "AffectedProcs": [ + { + "pid": "3103", + "name": "agetty" + }, + { + "pid": "3104", + "name": "agetty" + } + ] + }, + "vim-common": { + "name": "vim-common", + "version": "2:8.1.1602", + "release": "1.amzn2", + "newVersion": "2:8.1.1602", + "newRelease": "1.amzn2", + "arch": "x86_64", + "repository": "" + }, + "vim-enhanced": { + "name": "vim-enhanced", + "version": "2:8.1.1602", + "release": "1.amzn2", + "newVersion": "2:8.1.1602", + "newRelease": "1.amzn2", + "arch": "x86_64", + "repository": "" + }, + "vim-filesystem": { + "name": "vim-filesystem", + "version": "2:8.1.1602", + "release": "1.amzn2", + "newVersion": "2:8.1.1602", + "newRelease": "1.amzn2", + "arch": "noarch", + "repository": "" + }, + "vim-minimal": { + "name": "vim-minimal", + "version": "2:8.1.1602", + "release": "1.amzn2", + "newVersion": "2:8.1.1602", + "newRelease": "1.amzn2", + "arch": "x86_64", + "repository": "" + }, + "virt-what": { + "name": "virt-what", + "version": "1.18", + "release": "4.amzn2", + "newVersion": "1.18", + "newRelease": "4.amzn2", + "arch": "x86_64", + "repository": "" + }, + "wget": { + "name": "wget", + "version": "1.14", + "release": "18.amzn2.1", + "newVersion": "1.14", + "newRelease": "18.amzn2.1", + "arch": "x86_64", + "repository": "" + }, + "which": { + "name": "which", + "version": "2.20", + "release": "7.amzn2.0.2", + "newVersion": "2.20", + "newRelease": "7.amzn2.0.2", + "arch": "x86_64", + "repository": "" + }, + "words": { + "name": "words", + "version": "3.0", + "release": "22.amzn2", + "newVersion": "3.0", + "newRelease": "22.amzn2", + "arch": "noarch", + "repository": "" + }, + "xfsdump": { + "name": "xfsdump", + "version": "3.1.8", + "release": "6.amzn2", + "newVersion": "3.1.8", + "newRelease": "6.amzn2", + "arch": "x86_64", + "repository": "" + }, + "xfsprogs": { + "name": "xfsprogs", + "version": "4.5.0", + "release": "18.amzn2.0.1", + "newVersion": "4.5.0", + "newRelease": "18.amzn2.0.1", + "arch": "x86_64", + "repository": "" + }, + "xz": { + "name": "xz", + "version": "5.2.2", + "release": "1.amzn2.0.2", + "newVersion": "5.2.2", + "newRelease": "1.amzn2.0.2", + "arch": "x86_64", + "repository": "" + }, + "xz-libs": { + "name": "xz-libs", + "version": "5.2.2", + "release": "1.amzn2.0.2", + "newVersion": "5.2.2", + "newRelease": "1.amzn2.0.2", + "arch": "x86_64", + "repository": "", + "AffectedProcs": [ + { + "pid": "1", + "name": "systemd" + }, + { + "pid": "1662", + "name": "systemd-journal" + }, + { + "pid": "3034", + "name": "rsyslogd" + }, + { + "pid": "2485", + "name": "rpcbind", + "listenPortStats": [ + { + "bindAddress": "*", + "port": "111", + "portReachableTo": [] + } + ] + }, + { + "pid": "3312", + "name": "sshd" + }, + { + "pid": "2512", + "name": "rngd" + }, + { + "pid": "2480", + "name": "dbus-daemon" + }, + { + "pid": "3330", + "name": "sshd" + }, + { + "pid": "1700", + "name": "systemd-udevd" + }, + { + "pid": "2491", + "name": "chronyd" + }, + { + "pid": "1693", + "name": "lvmetad" + }, + { + "pid": "3208", + "name": "sshd", + "listenPortStats": [ + { + "bindAddress": "*", + "port": "22", + "portReachableTo": [] + } + ] + }, + { + "pid": "2833", + "name": "dhclient" + }, + { + "pid": "2717", + "name": "dhclient" + } + ] + }, + "yajl": { + "name": "yajl", + "version": "2.0.4", + "release": "4.amzn2.0.1", + "newVersion": "2.0.4", + "newRelease": "4.amzn2.0.1", + "arch": "x86_64", + "repository": "" + }, + "yum": { + "name": "yum", + "version": "3.4.3", + "release": "158.amzn2.0.5", + "newVersion": "3.4.3", + "newRelease": "158.amzn2.0.5", + "arch": "noarch", + "repository": "" + }, + "yum-langpacks": { + "name": "yum-langpacks", + "version": "0.4.2", + "release": "7.amzn2", + "newVersion": "0.4.2", + "newRelease": "7.amzn2", + "arch": "noarch", + "repository": "" + }, + "yum-metadata-parser": { + "name": "yum-metadata-parser", + "version": "1.1.4", + "release": "10.amzn2.0.2", + "newVersion": "1.1.4", + "newRelease": "10.amzn2.0.2", + "arch": "x86_64", + "repository": "" + }, + "yum-plugin-priorities": { + "name": "yum-plugin-priorities", + "version": "1.1.31", + "release": "46.amzn2.0.1", + "newVersion": "1.1.31", + "newRelease": "46.amzn2.0.1", + "arch": "noarch", + "repository": "" + }, + "yum-utils": { + "name": "yum-utils", + "version": "1.1.31", + "release": "46.amzn2.0.1", + "newVersion": "1.1.31", + "newRelease": "46.amzn2.0.1", + "arch": "noarch", + "repository": "" + }, + "zip": { + "name": "zip", + "version": "3.0", + "release": "11.amzn2.0.2", + "newVersion": "3.0", + "newRelease": "11.amzn2.0.2", + "arch": "x86_64", + "repository": "" + }, + "zlib": { + "name": "zlib", + "version": "1.2.7", + "release": "18.amzn2", + "newVersion": "1.2.7", + "newRelease": "18.amzn2", + "arch": "x86_64", + "repository": "", + "AffectedProcs": [ + { + "pid": "1", + "name": "systemd" + }, + { + "pid": "2978", + "name": "master", + "listenPortStats": [ + { + "bindAddress": "127.0.0.1", + "port": "25", + "portReachableTo": [] + } + ] + }, + { + "pid": "3034", + "name": "rsyslogd" + }, + { + "pid": "2485", + "name": "rpcbind", + "listenPortStats": [ + { + "bindAddress": "*", + "port": "111", + "portReachableTo": [] + } + ] + }, + { + "pid": "3312", + "name": "sshd" + }, + { + "pid": "2979", + "name": "pickup" + }, + { + "pid": "2512", + "name": "rngd" + }, + { + "pid": "2980", + "name": "qmgr" + }, + { + "pid": "2480", + "name": "dbus-daemon" + }, + { + "pid": "3330", + "name": "sshd" + }, + { + "pid": "1700", + "name": "systemd-udevd" + }, + { + "pid": "2491", + "name": "chronyd" + }, + { + "pid": "1693", + "name": "lvmetad" + }, + { + "pid": "3208", + "name": "sshd", + "listenPortStats": [ + { + "bindAddress": "*", + "port": "22", + "portReachableTo": [] + } + ] + }, + { + "pid": "2833", + "name": "dhclient" + }, + { + "pid": "2717", + "name": "dhclient" + } + ] + } + }, + "constant": { + "scan": { + "logDir": "/var/log/vuls", + "resultsDir": "/home/ubuntu/go/src/github.com/future-architect/vuls/results", + "default": { + "port": "22", + "scanMode": [ + "fast" + ] + }, + "servers": { + "ama": { + "serverName": "ama", + "user": "ec2-user", + "host": "18.183.255.208", + "port": "22", + "keyPath": "/home/ubuntu/.ssh/stg.pem", + "scanMode": [ + "fast-root" + ], + "wordpress": {} + } + }, + "cveDict": { + "Name": "cveDict", + "Type": "sqlite3", + "SQLite3Path": "/home/ubuntu/go/src/github.com/kotakanbe/go-cve-dictionary/cve.sqlite3", + "DebugSQL": false + }, + "ovalDict": { + "Name": "ovalDict", + "Type": "sqlite3", + "SQLite3Path": "/home/ubuntu/go/src/github.com/kotakanbe/goval-dictionary/oval.sqlite3", + "DebugSQL": false + }, + "gost": { + "Name": "gost", + "Type": "sqlite3", + "SQLite3Path": "/home/ubuntu/go/src/github.com/future-architect/vuls/gost.sqlite3", + "DebugSQL": false + }, + "exploit": { + "Name": "exploit", + "Type": "sqlite3", + "SQLite3Path": "/home/ubuntu/go/src/github.com/vulsio/go-exploitdb/go-exploitdb.sqlite3", + "DebugSQL": false + }, + "metasploit": { + "Name": "metasploit", + "Type": "sqlite3", + "SQLite3Path": "/home/ubuntu/go/src/github.com/takuzoo3868/go-msfdb/go-msfdb.sqlite3", + "DebugSQL": false + } + }, + "report": { + "default": {}, + "cveDict": { + "Name": "", + "Type": "", + "SQLite3Path": "", + "DebugSQL": false + }, + "ovalDict": { + "Name": "", + "Type": "", + "SQLite3Path": "", + "DebugSQL": false + }, + "gost": { + "Name": "", + "Type": "", + "SQLite3Path": "", + "DebugSQL": false + }, + "exploit": { + "Name": "", + "Type": "", + "SQLite3Path": "", + "DebugSQL": false + }, + "metasploit": { + "Name": "", + "Type": "", + "SQLite3Path": "", + "DebugSQL": false + } + } + } +} diff --git a/integration/data/centos_7.json b/integration/data/centos_7.json new file mode 100755 index 00000000..9b26d634 --- /dev/null +++ b/integration/data/centos_7.json @@ -0,0 +1,5634 @@ +{ + "jsonVersion": 4, + "lang": "", + "serverUUID": "", + "serverName": "centos_7", + "family": "centos", + "release": "7.7.1908", + "container": { + "containerID": "", + "name": "", + "image": "", + "type": "", + "uuid": "" + }, + "platform": { + "name": "aws", + "instanceID": "i-04514844352ecc500" + }, + "ipv4Addrs": [ + "192.168.0.20" + ], + "scannedAt": "2021-03-24T15:20:39.666753334+09:00", + "scanMode": "fast-root mode", + "scannedVersion": "v0.15.9", + "scannedRevision": "build-20210324_123209_fc3b438", + "scannedBy": "dev", + "scannedVia": "remote", + "scannedIpv4Addrs": [ + "172.21.0.1", + "172.19.0.1", + "172.18.0.1", + "172.17.0.1", + "172.20.0.1" + ], + "reportedAt": "0001-01-01T00:00:00Z", + "reportedVersion": "", + "reportedRevision": "", + "reportedBy": "", + "errors": [], + "warnings": [], + "scannedCves": {}, + "runningKernel": { + "release": "3.10.0-1062.12.1.el7.x86_64", + "version": "", + "rebootRequired": false + }, + "packages": { + "PyYAML": { + "name": "PyYAML", + "version": "3.10", + "release": "11.el7", + "newVersion": "3.10", + "newRelease": "11.el7", + "arch": "x86_64", + "repository": "" + }, + "acl": { + "name": "acl", + "version": "2.2.51", + "release": "14.el7", + "newVersion": "2.2.51", + "newRelease": "15.el7", + "arch": "x86_64", + "repository": "base" + }, + "audit": { + "name": "audit", + "version": "2.8.5", + "release": "4.el7", + "newVersion": "2.8.5", + "newRelease": "4.el7", + "arch": "x86_64", + "repository": "", + "AffectedProcs": [ + { + "pid": "441", + "name": "auditd" + } + ] + }, + "audit-libs": { + "name": "audit-libs", + "version": "2.8.5", + "release": "4.el7", + "newVersion": "2.8.5", + "newRelease": "4.el7", + "arch": "x86_64", + "repository": "", + "AffectedProcs": [ + { + "pid": "1", + "name": "systemd", + "listenPortStats": [ + { + "bindAddress": "*", + "port": "111", + "portReachableTo": [] + } + ] + }, + { + "pid": "2684", + "name": "sshd" + }, + { + "pid": "1161", + "name": "sshd" + }, + { + "pid": "1063", + "name": "crond" + }, + { + "pid": "2687", + "name": "sshd" + }, + { + "pid": "543", + "name": "dbus-daemon" + }, + { + "pid": "441", + "name": "auditd" + }, + { + "pid": "1158", + "name": "sshd" + }, + { + "pid": "1106", + "name": "sshd", + "listenPortStats": [ + { + "bindAddress": "*", + "port": "22", + "portReachableTo": [] + } + ] + } + ] + }, + "audit-libs-python": { + "name": "audit-libs-python", + "version": "2.8.5", + "release": "4.el7", + "newVersion": "2.8.5", + "newRelease": "4.el7", + "arch": "x86_64", + "repository": "" + }, + "authconfig": { + "name": "authconfig", + "version": "6.2.8", + "release": "30.el7", + "newVersion": "6.2.8", + "newRelease": "30.el7", + "arch": "x86_64", + "repository": "" + }, + "basesystem": { + "name": "basesystem", + "version": "10.0", + "release": "7.el7.centos", + "newVersion": "10.0", + "newRelease": "7.el7.centos", + "arch": "noarch", + "repository": "" + }, + "bash": { + "name": "bash", + "version": "4.2.46", + "release": "33.el7", + "newVersion": "4.2.46", + "newRelease": "34.el7", + "arch": "x86_64", + "repository": "base", + "AffectedProcs": [ + { + "pid": "2688", + "name": "bash" + } + ] + }, + "bind-export-libs": { + "name": "bind-export-libs", + "version": "32:9.11.4", + "release": "9.P2.el7", + "newVersion": "32:9.11.4", + "newRelease": "26.P2.el7_9.4", + "arch": "x86_64", + "repository": "updates", + "AffectedProcs": [ + { + "pid": "843", + "name": "dhclient" + } + ] + }, + "binutils": { + "name": "binutils", + "version": "2.27", + "release": "41.base.el7_7.2", + "newVersion": "2.27", + "newRelease": "44.base.el7", + "arch": "x86_64", + "repository": "base" + }, + "btrfs-progs": { + "name": "btrfs-progs", + "version": "4.9.1", + "release": "1.el7", + "newVersion": "4.9.1", + "newRelease": "1.el7", + "arch": "x86_64", + "repository": "" + }, + "bzip2-libs": { + "name": "bzip2-libs", + "version": "1.0.6", + "release": "13.el7", + "newVersion": "1.0.6", + "newRelease": "13.el7", + "arch": "x86_64", + "repository": "", + "AffectedProcs": [ + { + "pid": "901", + "name": "tuned" + }, + { + "pid": "2684", + "name": "sshd" + }, + { + "pid": "538", + "name": "polkitd" + }, + { + "pid": "1161", + "name": "sshd" + }, + { + "pid": "495", + "name": "rpcbind", + "listenPortStats": [ + { + "bindAddress": "*", + "port": "111", + "portReachableTo": [] + } + ] + }, + { + "pid": "2687", + "name": "sshd" + }, + { + "pid": "543", + "name": "dbus-daemon" + }, + { + "pid": "843", + "name": "dhclient" + }, + { + "pid": "1158", + "name": "sshd" + }, + { + "pid": "1106", + "name": "sshd", + "listenPortStats": [ + { + "bindAddress": "*", + "port": "22", + "portReachableTo": [] + } + ] + }, + { + "pid": "553", + "name": "chronyd" + }, + { + "pid": "1052", + "name": "rsyslogd" + } + ] + }, + "ca-certificates": { + "name": "ca-certificates", + "version": "2019.2.32", + "release": "76.el7_7", + "newVersion": "2020.2.41", + "newRelease": "70.0.el7_8", + "arch": "noarch", + "repository": "base" + }, + "centos-release": { + "name": "centos-release", + "version": "7", + "release": "7.1908.0.el7.centos", + "newVersion": "7", + "newRelease": "9.2009.1.el7.centos", + "arch": "x86_64", + "repository": "updates" + }, + "checkpolicy": { + "name": "checkpolicy", + "version": "2.5", + "release": "8.el7", + "newVersion": "2.5", + "newRelease": "8.el7", + "arch": "x86_64", + "repository": "" + }, + "chkconfig": { + "name": "chkconfig", + "version": "1.7.4", + "release": "1.el7", + "newVersion": "1.7.6", + "newRelease": "1.el7", + "arch": "x86_64", + "repository": "base" + }, + "chrony": { + "name": "chrony", + "version": "3.4", + "release": "1.el7", + "newVersion": "3.4", + "newRelease": "1.el7", + "arch": "x86_64", + "repository": "", + "AffectedProcs": [ + { + "pid": "553", + "name": "chronyd" + } + ] + }, + "cloud-init": { + "name": "cloud-init", + "version": "18.5", + "release": "3.el7.centos", + "newVersion": "19.4", + "newRelease": "7.el7.centos.4", + "arch": "x86_64", + "repository": "updates" + }, + "cloud-utils-growpart": { + "name": "cloud-utils-growpart", + "version": "0.29", + "release": "5.el7", + "newVersion": "0.29", + "newRelease": "5.el7", + "arch": "noarch", + "repository": "" + }, + "coreutils": { + "name": "coreutils", + "version": "8.22", + "release": "24.el7", + "newVersion": "8.22", + "newRelease": "24.el7_9.2", + "arch": "x86_64", + "repository": "updates" + }, + "cpio": { + "name": "cpio", + "version": "2.11", + "release": "27.el7", + "newVersion": "2.11", + "newRelease": "28.el7", + "arch": "x86_64", + "repository": "base" + }, + "cracklib": { + "name": "cracklib", + "version": "2.9.0", + "release": "11.el7", + "newVersion": "2.9.0", + "newRelease": "11.el7", + "arch": "x86_64", + "repository": "", + "AffectedProcs": [ + { + "pid": "2684", + "name": "sshd" + }, + { + "pid": "1161", + "name": "sshd" + }, + { + "pid": "2687", + "name": "sshd" + }, + { + "pid": "1158", + "name": "sshd" + } + ] + }, + "cracklib-dicts": { + "name": "cracklib-dicts", + "version": "2.9.0", + "release": "11.el7", + "newVersion": "2.9.0", + "newRelease": "11.el7", + "arch": "x86_64", + "repository": "" + }, + "cronie": { + "name": "cronie", + "version": "1.4.11", + "release": "23.el7", + "newVersion": "1.4.11", + "newRelease": "23.el7", + "arch": "x86_64", + "repository": "", + "AffectedProcs": [ + { + "pid": "1063", + "name": "crond" + } + ] + }, + "cronie-anacron": { + "name": "cronie-anacron", + "version": "1.4.11", + "release": "23.el7", + "newVersion": "1.4.11", + "newRelease": "23.el7", + "arch": "x86_64", + "repository": "" + }, + "crontabs": { + "name": "crontabs", + "version": "1.11", + "release": "6.20121102git.el7", + "newVersion": "1.11", + "newRelease": "6.20121102git.el7", + "arch": "noarch", + "repository": "" + }, + "cryptsetup-libs": { + "name": "cryptsetup-libs", + "version": "2.0.3", + "release": "5.el7", + "newVersion": "2.0.3", + "newRelease": "6.el7", + "arch": "x86_64", + "repository": "base" + }, + "curl": { + "name": "curl", + "version": "7.29.0", + "release": "54.el7_7.2", + "newVersion": "7.29.0", + "newRelease": "59.el7_9.1", + "arch": "x86_64", + "repository": "updates" + }, + "cyrus-sasl-lib": { + "name": "cyrus-sasl-lib", + "version": "2.1.26", + "release": "23.el7", + "newVersion": "2.1.26", + "newRelease": "23.el7", + "arch": "x86_64", + "repository": "", + "AffectedProcs": [ + { + "pid": "1049", + "name": "qmgr" + }, + { + "pid": "1045", + "name": "master", + "listenPortStats": [ + { + "bindAddress": "127.0.0.1", + "port": "25", + "portReachableTo": [] + }, + { + "bindAddress": "[::1]", + "port": "25", + "portReachableTo": [] + } + ] + }, + { + "pid": "2684", + "name": "sshd" + }, + { + "pid": "1161", + "name": "sshd" + }, + { + "pid": "1048", + "name": "pickup" + }, + { + "pid": "2687", + "name": "sshd" + }, + { + "pid": "843", + "name": "dhclient" + }, + { + "pid": "1158", + "name": "sshd" + }, + { + "pid": "1106", + "name": "sshd", + "listenPortStats": [ + { + "bindAddress": "*", + "port": "22", + "portReachableTo": [] + } + ] + } + ] + }, + "dbus": { + "name": "dbus", + "version": "1:1.10.24", + "release": "13.el7_6", + "newVersion": "1:1.10.24", + "newRelease": "15.el7", + "arch": "x86_64", + "repository": "base", + "AffectedProcs": [ + { + "pid": "543", + "name": "dbus-daemon" + } + ] + }, + "dbus-glib": { + "name": "dbus-glib", + "version": "0.100", + "release": "7.el7", + "newVersion": "0.100", + "newRelease": "7.el7", + "arch": "x86_64", + "repository": "", + "AffectedProcs": [ + { + "pid": "901", + "name": "tuned" + } + ] + }, + "dbus-libs": { + "name": "dbus-libs", + "version": "1:1.10.24", + "release": "13.el7_6", + "newVersion": "1:1.10.24", + "newRelease": "15.el7", + "arch": "x86_64", + "repository": "base", + "AffectedProcs": [ + { + "pid": "901", + "name": "tuned" + }, + { + "pid": "543", + "name": "dbus-daemon" + } + ] + }, + "dbus-python": { + "name": "dbus-python", + "version": "1.1.1", + "release": "9.el7", + "newVersion": "1.1.1", + "newRelease": "9.el7", + "arch": "x86_64", + "repository": "", + "AffectedProcs": [ + { + "pid": "901", + "name": "tuned" + } + ] + }, + "device-mapper": { + "name": "device-mapper", + "version": "7:1.02.158", + "release": "2.el7_7.2", + "newVersion": "7:1.02.170", + "newRelease": "6.el7_9.4", + "arch": "x86_64", + "repository": "updates" + }, + "device-mapper-libs": { + "name": "device-mapper-libs", + "version": "7:1.02.158", + "release": "2.el7_7.2", + "newVersion": "7:1.02.170", + "newRelease": "6.el7_9.4", + "arch": "x86_64", + "repository": "updates" + }, + "dhclient": { + "name": "dhclient", + "version": "12:4.2.5", + "release": "77.el7.centos", + "newVersion": "12:4.2.5", + "newRelease": "82.el7.centos", + "arch": "x86_64", + "repository": "base", + "AffectedProcs": [ + { + "pid": "843", + "name": "dhclient" + } + ] + }, + "dhcp-common": { + "name": "dhcp-common", + "version": "12:4.2.5", + "release": "77.el7.centos", + "newVersion": "12:4.2.5", + "newRelease": "82.el7.centos", + "arch": "x86_64", + "repository": "base" + }, + "dhcp-libs": { + "name": "dhcp-libs", + "version": "12:4.2.5", + "release": "77.el7.centos", + "newVersion": "12:4.2.5", + "newRelease": "82.el7.centos", + "arch": "x86_64", + "repository": "base", + "AffectedProcs": [ + { + "pid": "843", + "name": "dhclient" + } + ] + }, + "diffutils": { + "name": "diffutils", + "version": "3.3", + "release": "5.el7", + "newVersion": "3.3", + "newRelease": "5.el7", + "arch": "x86_64", + "repository": "" + }, + "dmidecode": { + "name": "dmidecode", + "version": "1:3.2", + "release": "3.el7", + "newVersion": "1:3.2", + "newRelease": "5.el7_9.1", + "arch": "x86_64", + "repository": "updates" + }, + "dracut": { + "name": "dracut", + "version": "033", + "release": "564.el7", + "newVersion": "033", + "newRelease": "572.el7", + "arch": "x86_64", + "repository": "base" + }, + "dracut-config-generic": { + "name": "dracut-config-generic", + "version": "033", + "release": "564.el7", + "newVersion": "033", + "newRelease": "572.el7", + "arch": "x86_64", + "repository": "base" + }, + "dracut-config-rescue": { + "name": "dracut-config-rescue", + "version": "033", + "release": "564.el7", + "newVersion": "033", + "newRelease": "572.el7", + "arch": "x86_64", + "repository": "base" + }, + "dracut-network": { + "name": "dracut-network", + "version": "033", + "release": "564.el7", + "newVersion": "033", + "newRelease": "572.el7", + "arch": "x86_64", + "repository": "base" + }, + "e2fsprogs": { + "name": "e2fsprogs", + "version": "1.42.9", + "release": "16.el7", + "newVersion": "1.42.9", + "newRelease": "19.el7", + "arch": "x86_64", + "repository": "base" + }, + "e2fsprogs-libs": { + "name": "e2fsprogs-libs", + "version": "1.42.9", + "release": "16.el7", + "newVersion": "1.42.9", + "newRelease": "19.el7", + "arch": "x86_64", + "repository": "base" + }, + "elfutils-default-yama-scope": { + "name": "elfutils-default-yama-scope", + "version": "0.176", + "release": "2.el7", + "newVersion": "0.176", + "newRelease": "5.el7", + "arch": "noarch", + "repository": "base" + }, + "elfutils-libelf": { + "name": "elfutils-libelf", + "version": "0.176", + "release": "2.el7", + "newVersion": "0.176", + "newRelease": "5.el7", + "arch": "x86_64", + "repository": "base", + "AffectedProcs": [ + { + "pid": "901", + "name": "tuned" + }, + { + "pid": "2684", + "name": "sshd" + }, + { + "pid": "538", + "name": "polkitd" + }, + { + "pid": "1161", + "name": "sshd" + }, + { + "pid": "495", + "name": "rpcbind", + "listenPortStats": [ + { + "bindAddress": "*", + "port": "111", + "portReachableTo": [] + } + ] + }, + { + "pid": "2687", + "name": "sshd" + }, + { + "pid": "543", + "name": "dbus-daemon" + }, + { + "pid": "843", + "name": "dhclient" + }, + { + "pid": "1158", + "name": "sshd" + }, + { + "pid": "1106", + "name": "sshd", + "listenPortStats": [ + { + "bindAddress": "*", + "port": "22", + "portReachableTo": [] + } + ] + }, + { + "pid": "553", + "name": "chronyd" + }, + { + "pid": "1052", + "name": "rsyslogd" + } + ] + }, + "elfutils-libs": { + "name": "elfutils-libs", + "version": "0.176", + "release": "2.el7", + "newVersion": "0.176", + "newRelease": "5.el7", + "arch": "x86_64", + "repository": "base", + "AffectedProcs": [ + { + "pid": "901", + "name": "tuned" + }, + { + "pid": "2684", + "name": "sshd" + }, + { + "pid": "538", + "name": "polkitd" + }, + { + "pid": "1161", + "name": "sshd" + }, + { + "pid": "495", + "name": "rpcbind", + "listenPortStats": [ + { + "bindAddress": "*", + "port": "111", + "portReachableTo": [] + } + ] + }, + { + "pid": "2687", + "name": "sshd" + }, + { + "pid": "543", + "name": "dbus-daemon" + }, + { + "pid": "843", + "name": "dhclient" + }, + { + "pid": "1158", + "name": "sshd" + }, + { + "pid": "1106", + "name": "sshd", + "listenPortStats": [ + { + "bindAddress": "*", + "port": "22", + "portReachableTo": [] + } + ] + }, + { + "pid": "553", + "name": "chronyd" + }, + { + "pid": "1052", + "name": "rsyslogd" + } + ] + }, + "ethtool": { + "name": "ethtool", + "version": "2:4.8", + "release": "10.el7", + "newVersion": "2:4.8", + "newRelease": "10.el7", + "arch": "x86_64", + "repository": "" + }, + "expat": { + "name": "expat", + "version": "2.1.0", + "release": "10.el7_3", + "newVersion": "2.1.0", + "newRelease": "12.el7", + "arch": "x86_64", + "repository": "base", + "AffectedProcs": [ + { + "pid": "901", + "name": "tuned" + }, + { + "pid": "538", + "name": "polkitd" + }, + { + "pid": "543", + "name": "dbus-daemon" + } + ] + }, + "file": { + "name": "file", + "version": "5.11", + "release": "35.el7", + "newVersion": "5.11", + "newRelease": "37.el7", + "arch": "x86_64", + "repository": "base" + }, + "file-libs": { + "name": "file-libs", + "version": "5.11", + "release": "35.el7", + "newVersion": "5.11", + "newRelease": "37.el7", + "arch": "x86_64", + "repository": "base" + }, + "filesystem": { + "name": "filesystem", + "version": "3.2", + "release": "25.el7", + "newVersion": "3.2", + "newRelease": "25.el7", + "arch": "x86_64", + "repository": "" + }, + "findutils": { + "name": "findutils", + "version": "1:4.5.11", + "release": "6.el7", + "newVersion": "1:4.5.11", + "newRelease": "6.el7", + "arch": "x86_64", + "repository": "" + }, + "fipscheck": { + "name": "fipscheck", + "version": "1.4.1", + "release": "6.el7", + "newVersion": "1.4.1", + "newRelease": "6.el7", + "arch": "x86_64", + "repository": "" + }, + "fipscheck-lib": { + "name": "fipscheck-lib", + "version": "1.4.1", + "release": "6.el7", + "newVersion": "1.4.1", + "newRelease": "6.el7", + "arch": "x86_64", + "repository": "", + "AffectedProcs": [ + { + "pid": "2684", + "name": "sshd" + }, + { + "pid": "1161", + "name": "sshd" + }, + { + "pid": "2687", + "name": "sshd" + }, + { + "pid": "1158", + "name": "sshd" + }, + { + "pid": "1106", + "name": "sshd", + "listenPortStats": [ + { + "bindAddress": "*", + "port": "22", + "portReachableTo": [] + } + ] + } + ] + }, + "freetype": { + "name": "freetype", + "version": "2.8", + "release": "14.el7", + "newVersion": "2.8", + "newRelease": "14.el7_9.1", + "arch": "x86_64", + "repository": "updates" + }, + "gawk": { + "name": "gawk", + "version": "4.0.2", + "release": "4.el7_3.1", + "newVersion": "4.0.2", + "newRelease": "4.el7_3.1", + "arch": "x86_64", + "repository": "" + }, + "gdbm": { + "name": "gdbm", + "version": "1.10", + "release": "8.el7", + "newVersion": "1.10", + "newRelease": "8.el7", + "arch": "x86_64", + "repository": "" + }, + "gettext": { + "name": "gettext", + "version": "0.19.8.1", + "release": "2.el7", + "newVersion": "0.19.8.1", + "newRelease": "3.el7", + "arch": "x86_64", + "repository": "base" + }, + "gettext-libs": { + "name": "gettext-libs", + "version": "0.19.8.1", + "release": "2.el7", + "newVersion": "0.19.8.1", + "newRelease": "3.el7", + "arch": "x86_64", + "repository": "base" + }, + "glib2": { + "name": "glib2", + "version": "2.56.1", + "release": "5.el7", + "newVersion": "2.56.1", + "newRelease": "8.el7", + "arch": "x86_64", + "repository": "updates", + "AffectedProcs": [ + { + "pid": "901", + "name": "tuned" + }, + { + "pid": "538", + "name": "polkitd" + } + ] + }, + "glibc": { + "name": "glibc", + "version": "2.17", + "release": "292.el7", + "newVersion": "2.17", + "newRelease": "323.el7_9", + "arch": "x86_64", + "repository": "updates", + "AffectedProcs": [ + { + "pid": "1049", + "name": "qmgr" + }, + { + "pid": "549", + "name": "gssproxy" + }, + { + "pid": "1045", + "name": "master", + "listenPortStats": [ + { + "bindAddress": "127.0.0.1", + "port": "25", + "portReachableTo": [] + }, + { + "bindAddress": "[::1]", + "port": "25", + "portReachableTo": [] + } + ] + }, + { + "pid": "1064", + "name": "agetty" + }, + { + "pid": "1", + "name": "systemd", + "listenPortStats": [ + { + "bindAddress": "*", + "port": "111", + "portReachableTo": [] + } + ] + }, + { + "pid": "901", + "name": "tuned" + }, + { + "pid": "2684", + "name": "sshd" + }, + { + "pid": "416", + "name": "systemd-udevd" + }, + { + "pid": "538", + "name": "polkitd" + }, + { + "pid": "1161", + "name": "sshd" + }, + { + "pid": "495", + "name": "rpcbind", + "listenPortStats": [ + { + "bindAddress": "*", + "port": "111", + "portReachableTo": [] + } + ] + }, + { + "pid": "1063", + "name": "crond" + }, + { + "pid": "376", + "name": "systemd-journal" + }, + { + "pid": "1048", + "name": "pickup" + }, + { + "pid": "541", + "name": "systemd-logind" + }, + { + "pid": "2687", + "name": "sshd" + }, + { + "pid": "543", + "name": "dbus-daemon" + }, + { + "pid": "843", + "name": "dhclient" + }, + { + "pid": "1065", + "name": "agetty" + }, + { + "pid": "441", + "name": "auditd" + }, + { + "pid": "1158", + "name": "sshd" + }, + { + "pid": "2688", + "name": "bash" + }, + { + "pid": "1106", + "name": "sshd", + "listenPortStats": [ + { + "bindAddress": "*", + "port": "22", + "portReachableTo": [] + } + ] + }, + { + "pid": "553", + "name": "chronyd" + }, + { + "pid": "1052", + "name": "rsyslogd" + } + ] + }, + "glibc-common": { + "name": "glibc-common", + "version": "2.17", + "release": "292.el7", + "newVersion": "2.17", + "newRelease": "323.el7_9", + "arch": "x86_64", + "repository": "updates", + "AffectedProcs": [ + { + "pid": "549", + "name": "gssproxy" + }, + { + "pid": "1064", + "name": "agetty" + }, + { + "pid": "901", + "name": "tuned" + }, + { + "pid": "1063", + "name": "crond" + }, + { + "pid": "1065", + "name": "agetty" + }, + { + "pid": "2688", + "name": "bash" + } + ] + }, + "gmp": { + "name": "gmp", + "version": "1:6.0.0", + "release": "15.el7", + "newVersion": "1:6.0.0", + "newRelease": "15.el7", + "arch": "x86_64", + "repository": "" + }, + "gnupg2": { + "name": "gnupg2", + "version": "2.0.22", + "release": "5.el7_5", + "newVersion": "2.0.22", + "newRelease": "5.el7_5", + "arch": "x86_64", + "repository": "" + }, + "gobject-introspection": { + "name": "gobject-introspection", + "version": "1.56.1", + "release": "1.el7", + "newVersion": "1.56.1", + "newRelease": "1.el7", + "arch": "x86_64", + "repository": "", + "AffectedProcs": [ + { + "pid": "901", + "name": "tuned" + } + ] + }, + "gpg-pubkey": { + "name": "gpg-pubkey", + "version": "f4a80eb5", + "release": "53a7ff4b", + "newVersion": "f4a80eb5", + "newRelease": "53a7ff4b", + "arch": "(none)", + "repository": "" + }, + "gpgme": { + "name": "gpgme", + "version": "1.3.2", + "release": "5.el7", + "newVersion": "1.3.2", + "newRelease": "5.el7", + "arch": "x86_64", + "repository": "" + }, + "grep": { + "name": "grep", + "version": "2.20", + "release": "3.el7", + "newVersion": "2.20", + "newRelease": "3.el7", + "arch": "x86_64", + "repository": "" + }, + "groff-base": { + "name": "groff-base", + "version": "1.22.2", + "release": "8.el7", + "newVersion": "1.22.2", + "newRelease": "8.el7", + "arch": "x86_64", + "repository": "" + }, + "grub2": { + "name": "grub2", + "version": "1:2.02", + "release": "0.80.el7.centos", + "newVersion": "1:2.02", + "newRelease": "0.87.el7.centos.6", + "arch": "x86_64", + "repository": "updates" + }, + "grub2-common": { + "name": "grub2-common", + "version": "1:2.02", + "release": "0.80.el7.centos", + "newVersion": "1:2.02", + "newRelease": "0.87.el7.centos.6", + "arch": "noarch", + "repository": "updates" + }, + "grub2-pc": { + "name": "grub2-pc", + "version": "1:2.02", + "release": "0.80.el7.centos", + "newVersion": "1:2.02", + "newRelease": "0.87.el7.centos.6", + "arch": "x86_64", + "repository": "updates" + }, + "grub2-pc-modules": { + "name": "grub2-pc-modules", + "version": "1:2.02", + "release": "0.80.el7.centos", + "newVersion": "1:2.02", + "newRelease": "0.87.el7.centos.6", + "arch": "noarch", + "repository": "updates" + }, + "grub2-tools": { + "name": "grub2-tools", + "version": "1:2.02", + "release": "0.80.el7.centos", + "newVersion": "1:2.02", + "newRelease": "0.87.el7.centos.6", + "arch": "x86_64", + "repository": "updates" + }, + "grub2-tools-extra": { + "name": "grub2-tools-extra", + "version": "1:2.02", + "release": "0.80.el7.centos", + "newVersion": "1:2.02", + "newRelease": "0.87.el7.centos.6", + "arch": "x86_64", + "repository": "updates" + }, + "grub2-tools-minimal": { + "name": "grub2-tools-minimal", + "version": "1:2.02", + "release": "0.80.el7.centos", + "newVersion": "1:2.02", + "newRelease": "0.87.el7.centos.6", + "arch": "x86_64", + "repository": "updates" + }, + "grubby": { + "name": "grubby", + "version": "8.28", + "release": "26.el7", + "newVersion": "8.28", + "newRelease": "26.el7", + "arch": "x86_64", + "repository": "" + }, + "gssproxy": { + "name": "gssproxy", + "version": "0.7.0", + "release": "26.el7", + "newVersion": "0.7.0", + "newRelease": "29.el7", + "arch": "x86_64", + "repository": "base", + "AffectedProcs": [ + { + "pid": "549", + "name": "gssproxy" + } + ] + }, + "gzip": { + "name": "gzip", + "version": "1.5", + "release": "10.el7", + "newVersion": "1.5", + "newRelease": "10.el7", + "arch": "x86_64", + "repository": "" + }, + "hardlink": { + "name": "hardlink", + "version": "1:1.0", + "release": "19.el7", + "newVersion": "1:1.0", + "newRelease": "19.el7", + "arch": "x86_64", + "repository": "" + }, + "hostname": { + "name": "hostname", + "version": "3.13", + "release": "3.el7_7.1", + "newVersion": "3.13", + "newRelease": "3.el7_7.1", + "arch": "x86_64", + "repository": "" + }, + "hwdata": { + "name": "hwdata", + "version": "0.252", + "release": "9.3.el7", + "newVersion": "0.252", + "newRelease": "9.7.el7", + "arch": "x86_64", + "repository": "base" + }, + "info": { + "name": "info", + "version": "5.1", + "release": "5.el7", + "newVersion": "5.1", + "newRelease": "5.el7", + "arch": "x86_64", + "repository": "" + }, + "initscripts": { + "name": "initscripts", + "version": "9.49.47", + "release": "1.el7", + "newVersion": "9.49.53", + "newRelease": "1.el7_9.1", + "arch": "x86_64", + "repository": "updates" + }, + "iproute": { + "name": "iproute", + "version": "4.11.0", + "release": "25.el7_7.2", + "newVersion": "4.11.0", + "newRelease": "30.el7", + "arch": "x86_64", + "repository": "base" + }, + "iptables": { + "name": "iptables", + "version": "1.4.21", + "release": "33.el7", + "newVersion": "1.4.21", + "newRelease": "35.el7", + "arch": "x86_64", + "repository": "base" + }, + "iputils": { + "name": "iputils", + "version": "20160308", + "release": "10.el7", + "newVersion": "20160308", + "newRelease": "10.el7", + "arch": "x86_64", + "repository": "" + }, + "irqbalance": { + "name": "irqbalance", + "version": "3:1.0.7", + "release": "12.el7", + "newVersion": "3:1.0.7", + "newRelease": "12.el7", + "arch": "x86_64", + "repository": "" + }, + "iwl7265-firmware": { + "name": "iwl7265-firmware", + "version": "22.0.7.0", + "release": "72.el7", + "newVersion": "22.0.7.0", + "newRelease": "72.el7", + "arch": "noarch", + "repository": "" + }, + "jansson": { + "name": "jansson", + "version": "2.10", + "release": "1.el7", + "newVersion": "2.10", + "newRelease": "1.el7", + "arch": "x86_64", + "repository": "" + }, + "json-c": { + "name": "json-c", + "version": "0.11", + "release": "4.el7_0", + "newVersion": "0.11", + "newRelease": "4.el7_0", + "arch": "x86_64", + "repository": "" + }, + "kbd": { + "name": "kbd", + "version": "1.15.5", + "release": "15.el7", + "newVersion": "1.15.5", + "newRelease": "15.el7", + "arch": "x86_64", + "repository": "" + }, + "kbd-legacy": { + "name": "kbd-legacy", + "version": "1.15.5", + "release": "15.el7", + "newVersion": "1.15.5", + "newRelease": "15.el7", + "arch": "noarch", + "repository": "" + }, + "kbd-misc": { + "name": "kbd-misc", + "version": "1.15.5", + "release": "15.el7", + "newVersion": "1.15.5", + "newRelease": "15.el7", + "arch": "noarch", + "repository": "" + }, + "kernel": { + "name": "kernel", + "version": "3.10.0", + "release": "1062.12.1.el7", + "newVersion": "3.10.0", + "newRelease": "1160.21.1.el7", + "arch": "x86_64", + "repository": "updates" + }, + "kernel-tools": { + "name": "kernel-tools", + "version": "3.10.0", + "release": "1062.12.1.el7", + "newVersion": "3.10.0", + "newRelease": "1160.21.1.el7", + "arch": "x86_64", + "repository": "updates" + }, + "kernel-tools-libs": { + "name": "kernel-tools-libs", + "version": "3.10.0", + "release": "1062.12.1.el7", + "newVersion": "3.10.0", + "newRelease": "1160.21.1.el7", + "arch": "x86_64", + "repository": "updates" + }, + "kexec-tools": { + "name": "kexec-tools", + "version": "2.0.15", + "release": "33.el7", + "newVersion": "2.0.15", + "newRelease": "51.el7_9.1", + "arch": "x86_64", + "repository": "updates" + }, + "keyutils": { + "name": "keyutils", + "version": "1.5.8", + "release": "3.el7", + "newVersion": "1.5.8", + "newRelease": "3.el7", + "arch": "x86_64", + "repository": "" + }, + "keyutils-libs": { + "name": "keyutils-libs", + "version": "1.5.8", + "release": "3.el7", + "newVersion": "1.5.8", + "newRelease": "3.el7", + "arch": "x86_64", + "repository": "", + "AffectedProcs": [ + { + "pid": "1049", + "name": "qmgr" + }, + { + "pid": "549", + "name": "gssproxy" + }, + { + "pid": "1045", + "name": "master", + "listenPortStats": [ + { + "bindAddress": "127.0.0.1", + "port": "25", + "portReachableTo": [] + }, + { + "bindAddress": "[::1]", + "port": "25", + "portReachableTo": [] + } + ] + }, + { + "pid": "901", + "name": "tuned" + }, + { + "pid": "2684", + "name": "sshd" + }, + { + "pid": "1161", + "name": "sshd" + }, + { + "pid": "495", + "name": "rpcbind", + "listenPortStats": [ + { + "bindAddress": "*", + "port": "111", + "portReachableTo": [] + } + ] + }, + { + "pid": "1048", + "name": "pickup" + }, + { + "pid": "2687", + "name": "sshd" + }, + { + "pid": "843", + "name": "dhclient" + }, + { + "pid": "441", + "name": "auditd" + }, + { + "pid": "1158", + "name": "sshd" + }, + { + "pid": "1106", + "name": "sshd", + "listenPortStats": [ + { + "bindAddress": "*", + "port": "22", + "portReachableTo": [] + } + ] + } + ] + }, + "kmod": { + "name": "kmod", + "version": "20", + "release": "25.el7", + "newVersion": "20", + "newRelease": "28.el7", + "arch": "x86_64", + "repository": "base" + }, + "kmod-libs": { + "name": "kmod-libs", + "version": "20", + "release": "25.el7", + "newVersion": "20", + "newRelease": "28.el7", + "arch": "x86_64", + "repository": "base", + "AffectedProcs": [ + { + "pid": "1", + "name": "systemd", + "listenPortStats": [ + { + "bindAddress": "*", + "port": "111", + "portReachableTo": [] + } + ] + }, + { + "pid": "416", + "name": "systemd-udevd" + } + ] + }, + "kpartx": { + "name": "kpartx", + "version": "0.4.9", + "release": "127.el7", + "newVersion": "0.4.9", + "newRelease": "134.el7_9", + "arch": "x86_64", + "repository": "updates" + }, + "krb5-libs": { + "name": "krb5-libs", + "version": "1.15.1", + "release": "37.el7_7.2", + "newVersion": "1.15.1", + "newRelease": "50.el7", + "arch": "x86_64", + "repository": "base", + "AffectedProcs": [ + { + "pid": "1049", + "name": "qmgr" + }, + { + "pid": "549", + "name": "gssproxy" + }, + { + "pid": "1045", + "name": "master", + "listenPortStats": [ + { + "bindAddress": "127.0.0.1", + "port": "25", + "portReachableTo": [] + }, + { + "bindAddress": "[::1]", + "port": "25", + "portReachableTo": [] + } + ] + }, + { + "pid": "901", + "name": "tuned" + }, + { + "pid": "2684", + "name": "sshd" + }, + { + "pid": "1161", + "name": "sshd" + }, + { + "pid": "495", + "name": "rpcbind", + "listenPortStats": [ + { + "bindAddress": "*", + "port": "111", + "portReachableTo": [] + } + ] + }, + { + "pid": "1048", + "name": "pickup" + }, + { + "pid": "2687", + "name": "sshd" + }, + { + "pid": "843", + "name": "dhclient" + }, + { + "pid": "441", + "name": "auditd" + }, + { + "pid": "1158", + "name": "sshd" + }, + { + "pid": "1106", + "name": "sshd", + "listenPortStats": [ + { + "bindAddress": "*", + "port": "22", + "portReachableTo": [] + } + ] + } + ] + }, + "less": { + "name": "less", + "version": "458", + "release": "9.el7", + "newVersion": "458", + "newRelease": "9.el7", + "arch": "x86_64", + "repository": "" + }, + "libacl": { + "name": "libacl", + "version": "2.2.51", + "release": "14.el7", + "newVersion": "2.2.51", + "newRelease": "15.el7", + "arch": "x86_64", + "repository": "base", + "AffectedProcs": [ + { + "pid": "416", + "name": "systemd-udevd" + }, + { + "pid": "376", + "name": "systemd-journal" + }, + { + "pid": "541", + "name": "systemd-logind" + } + ] + }, + "libassuan": { + "name": "libassuan", + "version": "2.1.0", + "release": "3.el7", + "newVersion": "2.1.0", + "newRelease": "3.el7", + "arch": "x86_64", + "repository": "" + }, + "libattr": { + "name": "libattr", + "version": "2.4.46", + "release": "13.el7", + "newVersion": "2.4.46", + "newRelease": "13.el7", + "arch": "x86_64", + "repository": "", + "AffectedProcs": [ + { + "pid": "1", + "name": "systemd", + "listenPortStats": [ + { + "bindAddress": "*", + "port": "111", + "portReachableTo": [] + } + ] + }, + { + "pid": "901", + "name": "tuned" + }, + { + "pid": "2684", + "name": "sshd" + }, + { + "pid": "416", + "name": "systemd-udevd" + }, + { + "pid": "538", + "name": "polkitd" + }, + { + "pid": "1161", + "name": "sshd" + }, + { + "pid": "495", + "name": "rpcbind", + "listenPortStats": [ + { + "bindAddress": "*", + "port": "111", + "portReachableTo": [] + } + ] + }, + { + "pid": "376", + "name": "systemd-journal" + }, + { + "pid": "541", + "name": "systemd-logind" + }, + { + "pid": "2687", + "name": "sshd" + }, + { + "pid": "543", + "name": "dbus-daemon" + }, + { + "pid": "843", + "name": "dhclient" + }, + { + "pid": "1158", + "name": "sshd" + }, + { + "pid": "1106", + "name": "sshd", + "listenPortStats": [ + { + "bindAddress": "*", + "port": "22", + "portReachableTo": [] + } + ] + }, + { + "pid": "553", + "name": "chronyd" + }, + { + "pid": "1052", + "name": "rsyslogd" + } + ] + }, + "libbasicobjects": { + "name": "libbasicobjects", + "version": "0.1.1", + "release": "32.el7", + "newVersion": "0.1.1", + "newRelease": "32.el7", + "arch": "x86_64", + "repository": "", + "AffectedProcs": [ + { + "pid": "549", + "name": "gssproxy" + } + ] + }, + "libblkid": { + "name": "libblkid", + "version": "2.23.2", + "release": "61.el7_7.1", + "newVersion": "2.23.2", + "newRelease": "65.el7_9.1", + "arch": "x86_64", + "repository": "updates", + "AffectedProcs": [ + { + "pid": "1", + "name": "systemd", + "listenPortStats": [ + { + "bindAddress": "*", + "port": "111", + "portReachableTo": [] + } + ] + }, + { + "pid": "901", + "name": "tuned" + }, + { + "pid": "416", + "name": "systemd-udevd" + }, + { + "pid": "538", + "name": "polkitd" + } + ] + }, + "libcap": { + "name": "libcap", + "version": "2.22", + "release": "10.el7", + "newVersion": "2.22", + "newRelease": "11.el7", + "arch": "x86_64", + "repository": "base", + "AffectedProcs": [ + { + "pid": "1", + "name": "systemd", + "listenPortStats": [ + { + "bindAddress": "*", + "port": "111", + "portReachableTo": [] + } + ] + }, + { + "pid": "901", + "name": "tuned" + }, + { + "pid": "2684", + "name": "sshd" + }, + { + "pid": "538", + "name": "polkitd" + }, + { + "pid": "1161", + "name": "sshd" + }, + { + "pid": "495", + "name": "rpcbind", + "listenPortStats": [ + { + "bindAddress": "*", + "port": "111", + "portReachableTo": [] + } + ] + }, + { + "pid": "541", + "name": "systemd-logind" + }, + { + "pid": "2687", + "name": "sshd" + }, + { + "pid": "543", + "name": "dbus-daemon" + }, + { + "pid": "843", + "name": "dhclient" + }, + { + "pid": "1158", + "name": "sshd" + }, + { + "pid": "1106", + "name": "sshd", + "listenPortStats": [ + { + "bindAddress": "*", + "port": "22", + "portReachableTo": [] + } + ] + }, + { + "pid": "553", + "name": "chronyd" + }, + { + "pid": "1052", + "name": "rsyslogd" + } + ] + }, + "libcap-ng": { + "name": "libcap-ng", + "version": "0.7.5", + "release": "4.el7", + "newVersion": "0.7.5", + "newRelease": "4.el7", + "arch": "x86_64", + "repository": "", + "AffectedProcs": [ + { + "pid": "1", + "name": "systemd", + "listenPortStats": [ + { + "bindAddress": "*", + "port": "111", + "portReachableTo": [] + } + ] + }, + { + "pid": "2684", + "name": "sshd" + }, + { + "pid": "1161", + "name": "sshd" + }, + { + "pid": "1063", + "name": "crond" + }, + { + "pid": "2687", + "name": "sshd" + }, + { + "pid": "543", + "name": "dbus-daemon" + }, + { + "pid": "843", + "name": "dhclient" + }, + { + "pid": "441", + "name": "auditd" + }, + { + "pid": "1158", + "name": "sshd" + }, + { + "pid": "1106", + "name": "sshd", + "listenPortStats": [ + { + "bindAddress": "*", + "port": "22", + "portReachableTo": [] + } + ] + } + ] + }, + "libcgroup": { + "name": "libcgroup", + "version": "0.41", + "release": "21.el7", + "newVersion": "0.41", + "newRelease": "21.el7", + "arch": "x86_64", + "repository": "" + }, + "libcollection": { + "name": "libcollection", + "version": "0.7.0", + "release": "32.el7", + "newVersion": "0.7.0", + "newRelease": "32.el7", + "arch": "x86_64", + "repository": "", + "AffectedProcs": [ + { + "pid": "549", + "name": "gssproxy" + } + ] + }, + "libcom_err": { + "name": "libcom_err", + "version": "1.42.9", + "release": "16.el7", + "newVersion": "1.42.9", + "newRelease": "19.el7", + "arch": "x86_64", + "repository": "base", + "AffectedProcs": [ + { + "pid": "1049", + "name": "qmgr" + }, + { + "pid": "549", + "name": "gssproxy" + }, + { + "pid": "1045", + "name": "master", + "listenPortStats": [ + { + "bindAddress": "127.0.0.1", + "port": "25", + "portReachableTo": [] + }, + { + "bindAddress": "[::1]", + "port": "25", + "portReachableTo": [] + } + ] + }, + { + "pid": "901", + "name": "tuned" + }, + { + "pid": "2684", + "name": "sshd" + }, + { + "pid": "1161", + "name": "sshd" + }, + { + "pid": "495", + "name": "rpcbind", + "listenPortStats": [ + { + "bindAddress": "*", + "port": "111", + "portReachableTo": [] + } + ] + }, + { + "pid": "1048", + "name": "pickup" + }, + { + "pid": "2687", + "name": "sshd" + }, + { + "pid": "843", + "name": "dhclient" + }, + { + "pid": "441", + "name": "auditd" + }, + { + "pid": "1158", + "name": "sshd" + }, + { + "pid": "1106", + "name": "sshd", + "listenPortStats": [ + { + "bindAddress": "*", + "port": "22", + "portReachableTo": [] + } + ] + } + ] + }, + "libcroco": { + "name": "libcroco", + "version": "0.6.12", + "release": "4.el7", + "newVersion": "0.6.12", + "newRelease": "6.el7_9", + "arch": "x86_64", + "repository": "updates" + }, + "libcurl": { + "name": "libcurl", + "version": "7.29.0", + "release": "54.el7_7.2", + "newVersion": "7.29.0", + "newRelease": "59.el7_9.1", + "arch": "x86_64", + "repository": "updates" + }, + "libdaemon": { + "name": "libdaemon", + "version": "0.14", + "release": "7.el7", + "newVersion": "0.14", + "newRelease": "7.el7", + "arch": "x86_64", + "repository": "" + }, + "libdb": { + "name": "libdb", + "version": "5.3.21", + "release": "25.el7", + "newVersion": "5.3.21", + "newRelease": "25.el7", + "arch": "x86_64", + "repository": "", + "AffectedProcs": [ + { + "pid": "1049", + "name": "qmgr" + }, + { + "pid": "1045", + "name": "master", + "listenPortStats": [ + { + "bindAddress": "127.0.0.1", + "port": "25", + "portReachableTo": [] + }, + { + "bindAddress": "[::1]", + "port": "25", + "portReachableTo": [] + } + ] + }, + { + "pid": "1048", + "name": "pickup" + } + ] + }, + "libdb-utils": { + "name": "libdb-utils", + "version": "5.3.21", + "release": "25.el7", + "newVersion": "5.3.21", + "newRelease": "25.el7", + "arch": "x86_64", + "repository": "" + }, + "libedit": { + "name": "libedit", + "version": "3.0", + "release": "12.20121213cvs.el7", + "newVersion": "3.0", + "newRelease": "12.20121213cvs.el7", + "arch": "x86_64", + "repository": "" + }, + "libestr": { + "name": "libestr", + "version": "0.1.9", + "release": "2.el7", + "newVersion": "0.1.9", + "newRelease": "2.el7", + "arch": "x86_64", + "repository": "", + "AffectedProcs": [ + { + "pid": "1052", + "name": "rsyslogd" + } + ] + }, + "libevent": { + "name": "libevent", + "version": "2.0.21", + "release": "4.el7", + "newVersion": "2.0.21", + "newRelease": "4.el7", + "arch": "x86_64", + "repository": "", + "AffectedProcs": [ + { + "pid": "549", + "name": "gssproxy" + } + ] + }, + "libfastjson": { + "name": "libfastjson", + "version": "0.99.4", + "release": "3.el7", + "newVersion": "0.99.4", + "newRelease": "3.el7", + "arch": "x86_64", + "repository": "", + "AffectedProcs": [ + { + "pid": "1052", + "name": "rsyslogd" + } + ] + }, + "libffi": { + "name": "libffi", + "version": "3.0.13", + "release": "18.el7", + "newVersion": "3.0.13", + "newRelease": "19.el7", + "arch": "x86_64", + "repository": "base", + "AffectedProcs": [ + { + "pid": "901", + "name": "tuned" + }, + { + "pid": "538", + "name": "polkitd" + } + ] + }, + "libgcc": { + "name": "libgcc", + "version": "4.8.5", + "release": "39.el7", + "newVersion": "4.8.5", + "newRelease": "44.el7", + "arch": "x86_64", + "repository": "base", + "AffectedProcs": [ + { + "pid": "1049", + "name": "qmgr" + }, + { + "pid": "1045", + "name": "master", + "listenPortStats": [ + { + "bindAddress": "127.0.0.1", + "port": "25", + "portReachableTo": [] + }, + { + "bindAddress": "[::1]", + "port": "25", + "portReachableTo": [] + } + ] + }, + { + "pid": "1", + "name": "systemd", + "listenPortStats": [ + { + "bindAddress": "*", + "port": "111", + "portReachableTo": [] + } + ] + }, + { + "pid": "901", + "name": "tuned" + }, + { + "pid": "2684", + "name": "sshd" + }, + { + "pid": "416", + "name": "systemd-udevd" + }, + { + "pid": "538", + "name": "polkitd" + }, + { + "pid": "1161", + "name": "sshd" + }, + { + "pid": "495", + "name": "rpcbind", + "listenPortStats": [ + { + "bindAddress": "*", + "port": "111", + "portReachableTo": [] + } + ] + }, + { + "pid": "376", + "name": "systemd-journal" + }, + { + "pid": "1048", + "name": "pickup" + }, + { + "pid": "541", + "name": "systemd-logind" + }, + { + "pid": "2687", + "name": "sshd" + }, + { + "pid": "543", + "name": "dbus-daemon" + }, + { + "pid": "843", + "name": "dhclient" + }, + { + "pid": "1158", + "name": "sshd" + }, + { + "pid": "1106", + "name": "sshd", + "listenPortStats": [ + { + "bindAddress": "*", + "port": "22", + "portReachableTo": [] + } + ] + }, + { + "pid": "553", + "name": "chronyd" + }, + { + "pid": "1052", + "name": "rsyslogd" + } + ] + }, + "libgcrypt": { + "name": "libgcrypt", + "version": "1.5.3", + "release": "14.el7", + "newVersion": "1.5.3", + "newRelease": "14.el7", + "arch": "x86_64", + "repository": "", + "AffectedProcs": [ + { + "pid": "901", + "name": "tuned" + }, + { + "pid": "2684", + "name": "sshd" + }, + { + "pid": "538", + "name": "polkitd" + }, + { + "pid": "1161", + "name": "sshd" + }, + { + "pid": "495", + "name": "rpcbind", + "listenPortStats": [ + { + "bindAddress": "*", + "port": "111", + "portReachableTo": [] + } + ] + }, + { + "pid": "376", + "name": "systemd-journal" + }, + { + "pid": "2687", + "name": "sshd" + }, + { + "pid": "543", + "name": "dbus-daemon" + }, + { + "pid": "1158", + "name": "sshd" + }, + { + "pid": "1106", + "name": "sshd", + "listenPortStats": [ + { + "bindAddress": "*", + "port": "22", + "portReachableTo": [] + } + ] + }, + { + "pid": "1052", + "name": "rsyslogd" + } + ] + }, + "libgomp": { + "name": "libgomp", + "version": "4.8.5", + "release": "39.el7", + "newVersion": "4.8.5", + "newRelease": "44.el7", + "arch": "x86_64", + "repository": "base" + }, + "libgpg-error": { + "name": "libgpg-error", + "version": "1.12", + "release": "3.el7", + "newVersion": "1.12", + "newRelease": "3.el7", + "arch": "x86_64", + "repository": "", + "AffectedProcs": [ + { + "pid": "901", + "name": "tuned" + }, + { + "pid": "2684", + "name": "sshd" + }, + { + "pid": "538", + "name": "polkitd" + }, + { + "pid": "1161", + "name": "sshd" + }, + { + "pid": "495", + "name": "rpcbind", + "listenPortStats": [ + { + "bindAddress": "*", + "port": "111", + "portReachableTo": [] + } + ] + }, + { + "pid": "376", + "name": "systemd-journal" + }, + { + "pid": "2687", + "name": "sshd" + }, + { + "pid": "543", + "name": "dbus-daemon" + }, + { + "pid": "1158", + "name": "sshd" + }, + { + "pid": "1106", + "name": "sshd", + "listenPortStats": [ + { + "bindAddress": "*", + "port": "22", + "portReachableTo": [] + } + ] + }, + { + "pid": "1052", + "name": "rsyslogd" + } + ] + }, + "libidn": { + "name": "libidn", + "version": "1.28", + "release": "4.el7", + "newVersion": "1.28", + "newRelease": "4.el7", + "arch": "x86_64", + "repository": "" + }, + "libini_config": { + "name": "libini_config", + "version": "1.3.1", + "release": "32.el7", + "newVersion": "1.3.1", + "newRelease": "32.el7", + "arch": "x86_64", + "repository": "", + "AffectedProcs": [ + { + "pid": "549", + "name": "gssproxy" + } + ] + }, + "libmnl": { + "name": "libmnl", + "version": "1.0.3", + "release": "7.el7", + "newVersion": "1.0.3", + "newRelease": "7.el7", + "arch": "x86_64", + "repository": "" + }, + "libmount": { + "name": "libmount", + "version": "2.23.2", + "release": "61.el7_7.1", + "newVersion": "2.23.2", + "newRelease": "65.el7_9.1", + "arch": "x86_64", + "repository": "updates", + "AffectedProcs": [ + { + "pid": "1", + "name": "systemd", + "listenPortStats": [ + { + "bindAddress": "*", + "port": "111", + "portReachableTo": [] + } + ] + }, + { + "pid": "901", + "name": "tuned" + }, + { + "pid": "538", + "name": "polkitd" + } + ] + }, + "libndp": { + "name": "libndp", + "version": "1.2", + "release": "9.el7", + "newVersion": "1.2", + "newRelease": "9.el7", + "arch": "x86_64", + "repository": "" + }, + "libnetfilter_conntrack": { + "name": "libnetfilter_conntrack", + "version": "1.0.6", + "release": "1.el7_3", + "newVersion": "1.0.6", + "newRelease": "1.el7_3", + "arch": "x86_64", + "repository": "" + }, + "libnfnetlink": { + "name": "libnfnetlink", + "version": "1.0.1", + "release": "4.el7", + "newVersion": "1.0.1", + "newRelease": "4.el7", + "arch": "x86_64", + "repository": "" + }, + "libnfsidmap": { + "name": "libnfsidmap", + "version": "0.25", + "release": "19.el7", + "newVersion": "0.25", + "newRelease": "19.el7", + "arch": "x86_64", + "repository": "" + }, + "libnl3": { + "name": "libnl3", + "version": "3.2.28", + "release": "4.el7", + "newVersion": "3.2.28", + "newRelease": "4.el7", + "arch": "x86_64", + "repository": "" + }, + "libnl3-cli": { + "name": "libnl3-cli", + "version": "3.2.28", + "release": "4.el7", + "newVersion": "3.2.28", + "newRelease": "4.el7", + "arch": "x86_64", + "repository": "" + }, + "libpath_utils": { + "name": "libpath_utils", + "version": "0.2.1", + "release": "32.el7", + "newVersion": "0.2.1", + "newRelease": "32.el7", + "arch": "x86_64", + "repository": "", + "AffectedProcs": [ + { + "pid": "549", + "name": "gssproxy" + } + ] + }, + "libpipeline": { + "name": "libpipeline", + "version": "1.2.3", + "release": "3.el7", + "newVersion": "1.2.3", + "newRelease": "3.el7", + "arch": "x86_64", + "repository": "" + }, + "libpng": { + "name": "libpng", + "version": "2:1.5.13", + "release": "7.el7_2", + "newVersion": "2:1.5.13", + "newRelease": "8.el7", + "arch": "x86_64", + "repository": "base" + }, + "libpwquality": { + "name": "libpwquality", + "version": "1.2.3", + "release": "5.el7", + "newVersion": "1.2.3", + "newRelease": "5.el7", + "arch": "x86_64", + "repository": "", + "AffectedProcs": [ + { + "pid": "2684", + "name": "sshd" + }, + { + "pid": "1161", + "name": "sshd" + }, + { + "pid": "2687", + "name": "sshd" + }, + { + "pid": "1158", + "name": "sshd" + } + ] + }, + "libref_array": { + "name": "libref_array", + "version": "0.1.5", + "release": "32.el7", + "newVersion": "0.1.5", + "newRelease": "32.el7", + "arch": "x86_64", + "repository": "", + "AffectedProcs": [ + { + "pid": "549", + "name": "gssproxy" + } + ] + }, + "libseccomp": { + "name": "libseccomp", + "version": "2.3.1", + "release": "3.el7", + "newVersion": "2.3.1", + "newRelease": "4.el7", + "arch": "x86_64", + "repository": "base", + "AffectedProcs": [ + { + "pid": "553", + "name": "chronyd" + } + ] + }, + "libselinux": { + "name": "libselinux", + "version": "2.5", + "release": "14.1.el7", + "newVersion": "2.5", + "newRelease": "15.el7", + "arch": "x86_64", + "repository": "base", + "AffectedProcs": [ + { + "pid": "1049", + "name": "qmgr" + }, + { + "pid": "549", + "name": "gssproxy" + }, + { + "pid": "1045", + "name": "master", + "listenPortStats": [ + { + "bindAddress": "127.0.0.1", + "port": "25", + "portReachableTo": [] + }, + { + "bindAddress": "[::1]", + "port": "25", + "portReachableTo": [] + } + ] + }, + { + "pid": "1", + "name": "systemd", + "listenPortStats": [ + { + "bindAddress": "*", + "port": "111", + "portReachableTo": [] + } + ] + }, + { + "pid": "901", + "name": "tuned" + }, + { + "pid": "2684", + "name": "sshd" + }, + { + "pid": "416", + "name": "systemd-udevd" + }, + { + "pid": "538", + "name": "polkitd" + }, + { + "pid": "1161", + "name": "sshd" + }, + { + "pid": "495", + "name": "rpcbind", + "listenPortStats": [ + { + "bindAddress": "*", + "port": "111", + "portReachableTo": [] + } + ] + }, + { + "pid": "1063", + "name": "crond" + }, + { + "pid": "376", + "name": "systemd-journal" + }, + { + "pid": "1048", + "name": "pickup" + }, + { + "pid": "541", + "name": "systemd-logind" + }, + { + "pid": "2687", + "name": "sshd" + }, + { + "pid": "543", + "name": "dbus-daemon" + }, + { + "pid": "843", + "name": "dhclient" + }, + { + "pid": "441", + "name": "auditd" + }, + { + "pid": "1158", + "name": "sshd" + }, + { + "pid": "1106", + "name": "sshd", + "listenPortStats": [ + { + "bindAddress": "*", + "port": "22", + "portReachableTo": [] + } + ] + }, + { + "pid": "1052", + "name": "rsyslogd" + } + ] + }, + "libselinux-python": { + "name": "libselinux-python", + "version": "2.5", + "release": "14.1.el7", + "newVersion": "2.5", + "newRelease": "15.el7", + "arch": "x86_64", + "repository": "base" + }, + "libselinux-utils": { + "name": "libselinux-utils", + "version": "2.5", + "release": "14.1.el7", + "newVersion": "2.5", + "newRelease": "15.el7", + "arch": "x86_64", + "repository": "base" + }, + "libsemanage": { + "name": "libsemanage", + "version": "2.5", + "release": "14.el7", + "newVersion": "2.5", + "newRelease": "14.el7", + "arch": "x86_64", + "repository": "" + }, + "libsemanage-python": { + "name": "libsemanage-python", + "version": "2.5", + "release": "14.el7", + "newVersion": "2.5", + "newRelease": "14.el7", + "arch": "x86_64", + "repository": "" + }, + "libsepol": { + "name": "libsepol", + "version": "2.5", + "release": "10.el7", + "newVersion": "2.5", + "newRelease": "10.el7", + "arch": "x86_64", + "repository": "" + }, + "libsmartcols": { + "name": "libsmartcols", + "version": "2.23.2", + "release": "61.el7_7.1", + "newVersion": "2.23.2", + "newRelease": "65.el7_9.1", + "arch": "x86_64", + "repository": "updates" + }, + "libss": { + "name": "libss", + "version": "1.42.9", + "release": "16.el7", + "newVersion": "1.42.9", + "newRelease": "19.el7", + "arch": "x86_64", + "repository": "base" + }, + "libssh2": { + "name": "libssh2", + "version": "1.8.0", + "release": "3.el7", + "newVersion": "1.8.0", + "newRelease": "4.el7", + "arch": "x86_64", + "repository": "base" + }, + "libstdc++": { + "name": "libstdc++", + "version": "4.8.5", + "release": "39.el7", + "newVersion": "4.8.5", + "newRelease": "44.el7", + "arch": "x86_64", + "repository": "base", + "AffectedProcs": [ + { + "pid": "1049", + "name": "qmgr" + }, + { + "pid": "1045", + "name": "master", + "listenPortStats": [ + { + "bindAddress": "127.0.0.1", + "port": "25", + "portReachableTo": [] + }, + { + "bindAddress": "[::1]", + "port": "25", + "portReachableTo": [] + } + ] + }, + { + "pid": "538", + "name": "polkitd" + }, + { + "pid": "1048", + "name": "pickup" + } + ] + }, + "libsysfs": { + "name": "libsysfs", + "version": "2.1.0", + "release": "16.el7", + "newVersion": "2.1.0", + "newRelease": "16.el7", + "arch": "x86_64", + "repository": "" + }, + "libtasn1": { + "name": "libtasn1", + "version": "4.10", + "release": "1.el7", + "newVersion": "4.10", + "newRelease": "1.el7", + "arch": "x86_64", + "repository": "" + }, + "libteam": { + "name": "libteam", + "version": "1.27", + "release": "9.el7", + "newVersion": "1.29", + "newRelease": "3.el7", + "arch": "x86_64", + "repository": "base" + }, + "libtirpc": { + "name": "libtirpc", + "version": "0.2.4", + "release": "0.16.el7", + "newVersion": "0.2.4", + "newRelease": "0.16.el7", + "arch": "x86_64", + "repository": "", + "AffectedProcs": [ + { + "pid": "495", + "name": "rpcbind", + "listenPortStats": [ + { + "bindAddress": "*", + "port": "111", + "portReachableTo": [] + } + ] + } + ] + }, + "libunistring": { + "name": "libunistring", + "version": "0.9.3", + "release": "9.el7", + "newVersion": "0.9.3", + "newRelease": "9.el7", + "arch": "x86_64", + "repository": "" + }, + "libuser": { + "name": "libuser", + "version": "0.60", + "release": "9.el7", + "newVersion": "0.60", + "newRelease": "9.el7", + "arch": "x86_64", + "repository": "" + }, + "libutempter": { + "name": "libutempter", + "version": "1.1.6", + "release": "4.el7", + "newVersion": "1.1.6", + "newRelease": "4.el7", + "arch": "x86_64", + "repository": "" + }, + "libuuid": { + "name": "libuuid", + "version": "2.23.2", + "release": "61.el7_7.1", + "newVersion": "2.23.2", + "newRelease": "65.el7_9.1", + "arch": "x86_64", + "repository": "updates", + "AffectedProcs": [ + { + "pid": "1", + "name": "systemd", + "listenPortStats": [ + { + "bindAddress": "*", + "port": "111", + "portReachableTo": [] + } + ] + }, + { + "pid": "901", + "name": "tuned" + }, + { + "pid": "416", + "name": "systemd-udevd" + }, + { + "pid": "538", + "name": "polkitd" + }, + { + "pid": "1052", + "name": "rsyslogd" + } + ] + }, + "libverto": { + "name": "libverto", + "version": "0.2.5", + "release": "4.el7", + "newVersion": "0.2.5", + "newRelease": "4.el7", + "arch": "x86_64", + "repository": "", + "AffectedProcs": [ + { + "pid": "549", + "name": "gssproxy" + } + ] + }, + "libverto-libevent": { + "name": "libverto-libevent", + "version": "0.2.5", + "release": "4.el7", + "newVersion": "0.2.5", + "newRelease": "4.el7", + "arch": "x86_64", + "repository": "", + "AffectedProcs": [ + { + "pid": "549", + "name": "gssproxy" + } + ] + }, + "libxml2": { + "name": "libxml2", + "version": "2.9.1", + "release": "6.el7_2.3", + "newVersion": "2.9.1", + "newRelease": "6.el7.5", + "arch": "x86_64", + "repository": "base" + }, + "libxml2-python": { + "name": "libxml2-python", + "version": "2.9.1", + "release": "6.el7_2.3", + "newVersion": "2.9.1", + "newRelease": "6.el7.5", + "arch": "x86_64", + "repository": "base" + }, + "libyaml": { + "name": "libyaml", + "version": "0.1.4", + "release": "11.el7_0", + "newVersion": "0.1.4", + "newRelease": "11.el7_0", + "arch": "x86_64", + "repository": "" + }, + "logrotate": { + "name": "logrotate", + "version": "3.8.6", + "release": "17.el7", + "newVersion": "3.8.6", + "newRelease": "19.el7", + "arch": "x86_64", + "repository": "base" + }, + "lshw": { + "name": "lshw", + "version": "B.02.18", + "release": "13.el7", + "newVersion": "B.02.18", + "newRelease": "17.el7", + "arch": "x86_64", + "repository": "base" + }, + "lsof": { + "name": "lsof", + "version": "4.87", + "release": "6.el7", + "newVersion": "4.87", + "newRelease": "6.el7", + "arch": "x86_64", + "repository": "" + }, + "lua": { + "name": "lua", + "version": "5.1.4", + "release": "15.el7", + "newVersion": "5.1.4", + "newRelease": "15.el7", + "arch": "x86_64", + "repository": "" + }, + "lz4": { + "name": "lz4", + "version": "1.7.5", + "release": "3.el7", + "newVersion": "1.8.3", + "newRelease": "1.el7", + "arch": "x86_64", + "repository": "base", + "AffectedProcs": [ + { + "pid": "901", + "name": "tuned" + }, + { + "pid": "2684", + "name": "sshd" + }, + { + "pid": "538", + "name": "polkitd" + }, + { + "pid": "1161", + "name": "sshd" + }, + { + "pid": "495", + "name": "rpcbind", + "listenPortStats": [ + { + "bindAddress": "*", + "port": "111", + "portReachableTo": [] + } + ] + }, + { + "pid": "376", + "name": "systemd-journal" + }, + { + "pid": "2687", + "name": "sshd" + }, + { + "pid": "543", + "name": "dbus-daemon" + }, + { + "pid": "1158", + "name": "sshd" + }, + { + "pid": "1106", + "name": "sshd", + "listenPortStats": [ + { + "bindAddress": "*", + "port": "22", + "portReachableTo": [] + } + ] + }, + { + "pid": "1052", + "name": "rsyslogd" + } + ] + }, + "lzo": { + "name": "lzo", + "version": "2.06", + "release": "8.el7", + "newVersion": "2.06", + "newRelease": "8.el7", + "arch": "x86_64", + "repository": "" + }, + "make": { + "name": "make", + "version": "1:3.82", + "release": "24.el7", + "newVersion": "1:3.82", + "newRelease": "24.el7", + "arch": "x86_64", + "repository": "" + }, + "man-db": { + "name": "man-db", + "version": "2.6.3", + "release": "11.el7", + "newVersion": "2.6.3", + "newRelease": "11.el7", + "arch": "x86_64", + "repository": "" + }, + "mariadb-libs": { + "name": "mariadb-libs", + "version": "1:5.5.64", + "release": "1.el7", + "newVersion": "1:5.5.68", + "newRelease": "1.el7", + "arch": "x86_64", + "repository": "base", + "AffectedProcs": [ + { + "pid": "1049", + "name": "qmgr" + }, + { + "pid": "1045", + "name": "master", + "listenPortStats": [ + { + "bindAddress": "127.0.0.1", + "port": "25", + "portReachableTo": [] + }, + { + "bindAddress": "[::1]", + "port": "25", + "portReachableTo": [] + } + ] + }, + { + "pid": "1048", + "name": "pickup" + } + ] + }, + "microcode_ctl": { + "name": "microcode_ctl", + "version": "2:2.1", + "release": "53.7.el7_7", + "newVersion": "2:2.1", + "newRelease": "73.8.el7_9", + "arch": "x86_64", + "repository": "updates" + }, + "mozjs17": { + "name": "mozjs17", + "version": "17.0.0", + "release": "20.el7", + "newVersion": "17.0.0", + "newRelease": "20.el7", + "arch": "x86_64", + "repository": "", + "AffectedProcs": [ + { + "pid": "538", + "name": "polkitd" + } + ] + }, + "ncurses": { + "name": "ncurses", + "version": "5.9", + "release": "14.20130511.el7_4", + "newVersion": "5.9", + "newRelease": "14.20130511.el7_4", + "arch": "x86_64", + "repository": "" + }, + "ncurses-base": { + "name": "ncurses-base", + "version": "5.9", + "release": "14.20130511.el7_4", + "newVersion": "5.9", + "newRelease": "14.20130511.el7_4", + "arch": "noarch", + "repository": "" + }, + "ncurses-libs": { + "name": "ncurses-libs", + "version": "5.9", + "release": "14.20130511.el7_4", + "newVersion": "5.9", + "newRelease": "14.20130511.el7_4", + "arch": "x86_64", + "repository": "", + "AffectedProcs": [ + { + "pid": "2688", + "name": "bash" + } + ] + }, + "net-tools": { + "name": "net-tools", + "version": "2.0", + "release": "0.25.20131004git.el7", + "newVersion": "2.0", + "newRelease": "0.25.20131004git.el7", + "arch": "x86_64", + "repository": "" + }, + "newt": { + "name": "newt", + "version": "0.52.15", + "release": "4.el7", + "newVersion": "0.52.15", + "newRelease": "4.el7", + "arch": "x86_64", + "repository": "" + }, + "newt-python": { + "name": "newt-python", + "version": "0.52.15", + "release": "4.el7", + "newVersion": "0.52.15", + "newRelease": "4.el7", + "arch": "x86_64", + "repository": "" + }, + "nfs-utils": { + "name": "nfs-utils", + "version": "1:1.3.0", + "release": "0.65.el7", + "newVersion": "1:1.3.0", + "newRelease": "0.68.el7", + "arch": "x86_64", + "repository": "base" + }, + "nspr": { + "name": "nspr", + "version": "4.21.0", + "release": "1.el7", + "newVersion": "4.25.0", + "newRelease": "2.el7_9", + "arch": "x86_64", + "repository": "updates", + "AffectedProcs": [ + { + "pid": "1049", + "name": "qmgr" + }, + { + "pid": "1045", + "name": "master", + "listenPortStats": [ + { + "bindAddress": "127.0.0.1", + "port": "25", + "portReachableTo": [] + }, + { + "bindAddress": "[::1]", + "port": "25", + "portReachableTo": [] + } + ] + }, + { + "pid": "2684", + "name": "sshd" + }, + { + "pid": "538", + "name": "polkitd" + }, + { + "pid": "1161", + "name": "sshd" + }, + { + "pid": "1048", + "name": "pickup" + }, + { + "pid": "2687", + "name": "sshd" + }, + { + "pid": "843", + "name": "dhclient" + }, + { + "pid": "1158", + "name": "sshd" + }, + { + "pid": "1106", + "name": "sshd", + "listenPortStats": [ + { + "bindAddress": "*", + "port": "22", + "portReachableTo": [] + } + ] + } + ] + }, + "nss": { + "name": "nss", + "version": "3.44.0", + "release": "7.el7_7", + "newVersion": "3.53.1", + "newRelease": "3.el7_9", + "arch": "x86_64", + "repository": "updates", + "AffectedProcs": [ + { + "pid": "1049", + "name": "qmgr" + }, + { + "pid": "1045", + "name": "master", + "listenPortStats": [ + { + "bindAddress": "127.0.0.1", + "port": "25", + "portReachableTo": [] + }, + { + "bindAddress": "[::1]", + "port": "25", + "portReachableTo": [] + } + ] + }, + { + "pid": "2684", + "name": "sshd" + }, + { + "pid": "1161", + "name": "sshd" + }, + { + "pid": "1048", + "name": "pickup" + }, + { + "pid": "2687", + "name": "sshd" + }, + { + "pid": "843", + "name": "dhclient" + }, + { + "pid": "1158", + "name": "sshd" + }, + { + "pid": "1106", + "name": "sshd", + "listenPortStats": [ + { + "bindAddress": "*", + "port": "22", + "portReachableTo": [] + } + ] + } + ] + }, + "nss-pem": { + "name": "nss-pem", + "version": "1.0.3", + "release": "7.el7", + "newVersion": "1.0.3", + "newRelease": "7.el7", + "arch": "x86_64", + "repository": "" + }, + "nss-softokn": { + "name": "nss-softokn", + "version": "3.44.0", + "release": "8.el7_7", + "newVersion": "3.53.1", + "newRelease": "6.el7_9", + "arch": "x86_64", + "repository": "updates" + }, + "nss-softokn-freebl": { + "name": "nss-softokn-freebl", + "version": "3.44.0", + "release": "8.el7_7", + "newVersion": "3.53.1", + "newRelease": "6.el7_9", + "arch": "x86_64", + "repository": "updates", + "AffectedProcs": [ + { + "pid": "1049", + "name": "qmgr" + }, + { + "pid": "1045", + "name": "master", + "listenPortStats": [ + { + "bindAddress": "127.0.0.1", + "port": "25", + "portReachableTo": [] + }, + { + "bindAddress": "[::1]", + "port": "25", + "portReachableTo": [] + } + ] + }, + { + "pid": "2684", + "name": "sshd" + }, + { + "pid": "1161", + "name": "sshd" + }, + { + "pid": "1048", + "name": "pickup" + }, + { + "pid": "2687", + "name": "sshd" + }, + { + "pid": "843", + "name": "dhclient" + }, + { + "pid": "1158", + "name": "sshd" + }, + { + "pid": "1106", + "name": "sshd", + "listenPortStats": [ + { + "bindAddress": "*", + "port": "22", + "portReachableTo": [] + } + ] + }, + { + "pid": "553", + "name": "chronyd" + } + ] + }, + "nss-sysinit": { + "name": "nss-sysinit", + "version": "3.44.0", + "release": "7.el7_7", + "newVersion": "3.53.1", + "newRelease": "3.el7_9", + "arch": "x86_64", + "repository": "updates" + }, + "nss-tools": { + "name": "nss-tools", + "version": "3.44.0", + "release": "7.el7_7", + "newVersion": "3.53.1", + "newRelease": "3.el7_9", + "arch": "x86_64", + "repository": "updates" + }, + "nss-util": { + "name": "nss-util", + "version": "3.44.0", + "release": "4.el7_7", + "newVersion": "3.53.1", + "newRelease": "1.el7_9", + "arch": "x86_64", + "repository": "updates", + "AffectedProcs": [ + { + "pid": "1049", + "name": "qmgr" + }, + { + "pid": "1045", + "name": "master", + "listenPortStats": [ + { + "bindAddress": "127.0.0.1", + "port": "25", + "portReachableTo": [] + }, + { + "bindAddress": "[::1]", + "port": "25", + "portReachableTo": [] + } + ] + }, + { + "pid": "2684", + "name": "sshd" + }, + { + "pid": "1161", + "name": "sshd" + }, + { + "pid": "1048", + "name": "pickup" + }, + { + "pid": "2687", + "name": "sshd" + }, + { + "pid": "843", + "name": "dhclient" + }, + { + "pid": "1158", + "name": "sshd" + }, + { + "pid": "1106", + "name": "sshd", + "listenPortStats": [ + { + "bindAddress": "*", + "port": "22", + "portReachableTo": [] + } + ] + } + ] + }, + "numactl-libs": { + "name": "numactl-libs", + "version": "2.0.12", + "release": "3.el7_7.1", + "newVersion": "2.0.12", + "newRelease": "5.el7", + "arch": "x86_64", + "repository": "base" + }, + "openldap": { + "name": "openldap", + "version": "2.4.44", + "release": "21.el7_6", + "newVersion": "2.4.44", + "newRelease": "22.el7", + "arch": "x86_64", + "repository": "base", + "AffectedProcs": [ + { + "pid": "1049", + "name": "qmgr" + }, + { + "pid": "1045", + "name": "master", + "listenPortStats": [ + { + "bindAddress": "127.0.0.1", + "port": "25", + "portReachableTo": [] + }, + { + "bindAddress": "[::1]", + "port": "25", + "portReachableTo": [] + } + ] + }, + { + "pid": "2684", + "name": "sshd" + }, + { + "pid": "1161", + "name": "sshd" + }, + { + "pid": "1048", + "name": "pickup" + }, + { + "pid": "2687", + "name": "sshd" + }, + { + "pid": "843", + "name": "dhclient" + }, + { + "pid": "1158", + "name": "sshd" + }, + { + "pid": "1106", + "name": "sshd", + "listenPortStats": [ + { + "bindAddress": "*", + "port": "22", + "portReachableTo": [] + } + ] + } + ] + }, + "openssh": { + "name": "openssh", + "version": "7.4p1", + "release": "21.el7", + "newVersion": "7.4p1", + "newRelease": "21.el7", + "arch": "x86_64", + "repository": "" + }, + "openssh-clients": { + "name": "openssh-clients", + "version": "7.4p1", + "release": "21.el7", + "newVersion": "7.4p1", + "newRelease": "21.el7", + "arch": "x86_64", + "repository": "" + }, + "openssh-server": { + "name": "openssh-server", + "version": "7.4p1", + "release": "21.el7", + "newVersion": "7.4p1", + "newRelease": "21.el7", + "arch": "x86_64", + "repository": "", + "AffectedProcs": [ + { + "pid": "2684", + "name": "sshd" + }, + { + "pid": "1161", + "name": "sshd" + }, + { + "pid": "2687", + "name": "sshd" + }, + { + "pid": "1158", + "name": "sshd" + }, + { + "pid": "1106", + "name": "sshd", + "listenPortStats": [ + { + "bindAddress": "*", + "port": "22", + "portReachableTo": [] + } + ] + } + ] + }, + "openssl": { + "name": "openssl", + "version": "1:1.0.2k", + "release": "19.el7", + "newVersion": "1:1.0.2k", + "newRelease": "21.el7_9", + "arch": "x86_64", + "repository": "updates" + }, + "openssl-libs": { + "name": "openssl-libs", + "version": "1:1.0.2k", + "release": "19.el7", + "newVersion": "1:1.0.2k", + "newRelease": "21.el7_9", + "arch": "x86_64", + "repository": "updates", + "AffectedProcs": [ + { + "pid": "1049", + "name": "qmgr" + }, + { + "pid": "1045", + "name": "master", + "listenPortStats": [ + { + "bindAddress": "127.0.0.1", + "port": "25", + "portReachableTo": [] + }, + { + "bindAddress": "[::1]", + "port": "25", + "portReachableTo": [] + } + ] + }, + { + "pid": "901", + "name": "tuned" + }, + { + "pid": "2684", + "name": "sshd" + }, + { + "pid": "1161", + "name": "sshd" + }, + { + "pid": "1048", + "name": "pickup" + }, + { + "pid": "2687", + "name": "sshd" + }, + { + "pid": "843", + "name": "dhclient" + }, + { + "pid": "1158", + "name": "sshd" + }, + { + "pid": "1106", + "name": "sshd", + "listenPortStats": [ + { + "bindAddress": "*", + "port": "22", + "portReachableTo": [] + } + ] + } + ] + }, + "os-prober": { + "name": "os-prober", + "version": "1.58", + "release": "9.el7", + "newVersion": "1.58", + "newRelease": "9.el7", + "arch": "x86_64", + "repository": "" + }, + "p11-kit": { + "name": "p11-kit", + "version": "0.23.5", + "release": "3.el7", + "newVersion": "0.23.5", + "newRelease": "3.el7", + "arch": "x86_64", + "repository": "" + }, + "p11-kit-trust": { + "name": "p11-kit-trust", + "version": "0.23.5", + "release": "3.el7", + "newVersion": "0.23.5", + "newRelease": "3.el7", + "arch": "x86_64", + "repository": "" + }, + "pam": { + "name": "pam", + "version": "1.1.8", + "release": "22.el7", + "newVersion": "1.1.8", + "newRelease": "23.el7", + "arch": "x86_64", + "repository": "base", + "AffectedProcs": [ + { + "pid": "1", + "name": "systemd", + "listenPortStats": [ + { + "bindAddress": "*", + "port": "111", + "portReachableTo": [] + } + ] + }, + { + "pid": "2684", + "name": "sshd" + }, + { + "pid": "1161", + "name": "sshd" + }, + { + "pid": "1063", + "name": "crond" + }, + { + "pid": "2687", + "name": "sshd" + }, + { + "pid": "1158", + "name": "sshd" + }, + { + "pid": "1106", + "name": "sshd", + "listenPortStats": [ + { + "bindAddress": "*", + "port": "22", + "portReachableTo": [] + } + ] + } + ] + }, + "parted": { + "name": "parted", + "version": "3.1", + "release": "31.el7", + "newVersion": "3.1", + "newRelease": "32.el7", + "arch": "x86_64", + "repository": "base" + }, + "passwd": { + "name": "passwd", + "version": "0.79", + "release": "5.el7", + "newVersion": "0.79", + "newRelease": "6.el7", + "arch": "x86_64", + "repository": "base" + }, + "pciutils-libs": { + "name": "pciutils-libs", + "version": "3.5.1", + "release": "3.el7", + "newVersion": "3.5.1", + "newRelease": "3.el7", + "arch": "x86_64", + "repository": "" + }, + "pcre": { + "name": "pcre", + "version": "8.32", + "release": "17.el7", + "newVersion": "8.32", + "newRelease": "17.el7", + "arch": "x86_64", + "repository": "", + "AffectedProcs": [ + { + "pid": "1049", + "name": "qmgr" + }, + { + "pid": "549", + "name": "gssproxy" + }, + { + "pid": "1045", + "name": "master", + "listenPortStats": [ + { + "bindAddress": "127.0.0.1", + "port": "25", + "portReachableTo": [] + }, + { + "bindAddress": "[::1]", + "port": "25", + "portReachableTo": [] + } + ] + }, + { + "pid": "1", + "name": "systemd", + "listenPortStats": [ + { + "bindAddress": "*", + "port": "111", + "portReachableTo": [] + } + ] + }, + { + "pid": "901", + "name": "tuned" + }, + { + "pid": "2684", + "name": "sshd" + }, + { + "pid": "416", + "name": "systemd-udevd" + }, + { + "pid": "538", + "name": "polkitd" + }, + { + "pid": "1161", + "name": "sshd" + }, + { + "pid": "495", + "name": "rpcbind", + "listenPortStats": [ + { + "bindAddress": "*", + "port": "111", + "portReachableTo": [] + } + ] + }, + { + "pid": "1063", + "name": "crond" + }, + { + "pid": "376", + "name": "systemd-journal" + }, + { + "pid": "1048", + "name": "pickup" + }, + { + "pid": "541", + "name": "systemd-logind" + }, + { + "pid": "2687", + "name": "sshd" + }, + { + "pid": "543", + "name": "dbus-daemon" + }, + { + "pid": "843", + "name": "dhclient" + }, + { + "pid": "441", + "name": "auditd" + }, + { + "pid": "1158", + "name": "sshd" + }, + { + "pid": "1106", + "name": "sshd", + "listenPortStats": [ + { + "bindAddress": "*", + "port": "22", + "portReachableTo": [] + } + ] + }, + { + "pid": "1052", + "name": "rsyslogd" + } + ] + }, + "pinentry": { + "name": "pinentry", + "version": "0.8.1", + "release": "17.el7", + "newVersion": "0.8.1", + "newRelease": "17.el7", + "arch": "x86_64", + "repository": "" + }, + "pkgconfig": { + "name": "pkgconfig", + "version": "1:0.27.1", + "release": "4.el7", + "newVersion": "1:0.27.1", + "newRelease": "4.el7", + "arch": "x86_64", + "repository": "" + }, + "policycoreutils": { + "name": "policycoreutils", + "version": "2.5", + "release": "33.el7", + "newVersion": "2.5", + "newRelease": "34.el7", + "arch": "x86_64", + "repository": "base" + }, + "policycoreutils-python": { + "name": "policycoreutils-python", + "version": "2.5", + "release": "33.el7", + "newVersion": "2.5", + "newRelease": "34.el7", + "arch": "x86_64", + "repository": "base" + }, + "polkit": { + "name": "polkit", + "version": "0.112", + "release": "22.el7_7.1", + "newVersion": "0.112", + "newRelease": "26.el7", + "arch": "x86_64", + "repository": "base", + "AffectedProcs": [ + { + "pid": "538", + "name": "polkitd" + } + ] + }, + "polkit-pkla-compat": { + "name": "polkit-pkla-compat", + "version": "0.1", + "release": "4.el7", + "newVersion": "0.1", + "newRelease": "4.el7", + "arch": "x86_64", + "repository": "" + }, + "popt": { + "name": "popt", + "version": "1.13", + "release": "16.el7", + "newVersion": "1.13", + "newRelease": "16.el7", + "arch": "x86_64", + "repository": "", + "AffectedProcs": [ + { + "pid": "549", + "name": "gssproxy" + } + ] + }, + "postfix": { + "name": "postfix", + "version": "2:2.10.1", + "release": "7.el7", + "newVersion": "2:2.10.1", + "newRelease": "9.el7", + "arch": "x86_64", + "repository": "base", + "AffectedProcs": [ + { + "pid": "1049", + "name": "qmgr" + }, + { + "pid": "1045", + "name": "master", + "listenPortStats": [ + { + "bindAddress": "127.0.0.1", + "port": "25", + "portReachableTo": [] + }, + { + "bindAddress": "[::1]", + "port": "25", + "portReachableTo": [] + } + ] + }, + { + "pid": "1048", + "name": "pickup" + } + ] + }, + "procps-ng": { + "name": "procps-ng", + "version": "3.3.10", + "release": "26.el7_7.1", + "newVersion": "3.3.10", + "newRelease": "28.el7", + "arch": "x86_64", + "repository": "base" + }, + "pth": { + "name": "pth", + "version": "2.0.7", + "release": "23.el7", + "newVersion": "2.0.7", + "newRelease": "23.el7", + "arch": "x86_64", + "repository": "" + }, + "pygpgme": { + "name": "pygpgme", + "version": "0.3", + "release": "9.el7", + "newVersion": "0.3", + "newRelease": "9.el7", + "arch": "x86_64", + "repository": "" + }, + "pyliblzma": { + "name": "pyliblzma", + "version": "0.5.3", + "release": "11.el7", + "newVersion": "0.5.3", + "newRelease": "11.el7", + "arch": "x86_64", + "repository": "" + }, + "pyserial": { + "name": "pyserial", + "version": "2.6", + "release": "6.el7", + "newVersion": "2.6", + "newRelease": "6.el7", + "arch": "noarch", + "repository": "" + }, + "python": { + "name": "python", + "version": "2.7.5", + "release": "86.el7", + "newVersion": "2.7.5", + "newRelease": "90.el7", + "arch": "x86_64", + "repository": "updates", + "AffectedProcs": [ + { + "pid": "901", + "name": "tuned" + } + ] + }, + "python-IPy": { + "name": "python-IPy", + "version": "0.75", + "release": "6.el7", + "newVersion": "0.75", + "newRelease": "6.el7", + "arch": "noarch", + "repository": "" + }, + "python-babel": { + "name": "python-babel", + "version": "0.9.6", + "release": "8.el7", + "newVersion": "0.9.6", + "newRelease": "8.el7", + "arch": "noarch", + "repository": "" + }, + "python-backports": { + "name": "python-backports", + "version": "1.0", + "release": "8.el7", + "newVersion": "1.0", + "newRelease": "8.el7", + "arch": "x86_64", + "repository": "" + }, + "python-backports-ssl_match_hostname": { + "name": "python-backports-ssl_match_hostname", + "version": "3.5.0.1", + "release": "1.el7", + "newVersion": "3.5.0.1", + "newRelease": "1.el7", + "arch": "noarch", + "repository": "" + }, + "python-chardet": { + "name": "python-chardet", + "version": "2.2.1", + "release": "3.el7", + "newVersion": "2.2.1", + "newRelease": "3.el7", + "arch": "noarch", + "repository": "" + }, + "python-configobj": { + "name": "python-configobj", + "version": "4.7.2", + "release": "7.el7", + "newVersion": "4.7.2", + "newRelease": "7.el7", + "arch": "noarch", + "repository": "" + }, + "python-decorator": { + "name": "python-decorator", + "version": "3.4.0", + "release": "3.el7", + "newVersion": "3.4.0", + "newRelease": "3.el7", + "arch": "noarch", + "repository": "" + }, + "python-gobject-base": { + "name": "python-gobject-base", + "version": "3.22.0", + "release": "1.el7_4.1", + "newVersion": "3.22.0", + "newRelease": "1.el7_4.1", + "arch": "x86_64", + "repository": "", + "AffectedProcs": [ + { + "pid": "901", + "name": "tuned" + } + ] + }, + "python-iniparse": { + "name": "python-iniparse", + "version": "0.4", + "release": "9.el7", + "newVersion": "0.4", + "newRelease": "9.el7", + "arch": "noarch", + "repository": "" + }, + "python-ipaddress": { + "name": "python-ipaddress", + "version": "1.0.16", + "release": "2.el7", + "newVersion": "1.0.16", + "newRelease": "2.el7", + "arch": "noarch", + "repository": "" + }, + "python-jinja2": { + "name": "python-jinja2", + "version": "2.7.2", + "release": "4.el7", + "newVersion": "2.7.2", + "newRelease": "4.el7", + "arch": "noarch", + "repository": "" + }, + "python-jsonpatch": { + "name": "python-jsonpatch", + "version": "1.2", + "release": "4.el7", + "newVersion": "1.2", + "newRelease": "4.el7", + "arch": "noarch", + "repository": "" + }, + "python-jsonpointer": { + "name": "python-jsonpointer", + "version": "1.9", + "release": "2.el7", + "newVersion": "1.9", + "newRelease": "2.el7", + "arch": "noarch", + "repository": "" + }, + "python-kitchen": { + "name": "python-kitchen", + "version": "1.1.1", + "release": "5.el7", + "newVersion": "1.1.1", + "newRelease": "5.el7", + "arch": "noarch", + "repository": "" + }, + "python-libs": { + "name": "python-libs", + "version": "2.7.5", + "release": "86.el7", + "newVersion": "2.7.5", + "newRelease": "90.el7", + "arch": "x86_64", + "repository": "updates", + "AffectedProcs": [ + { + "pid": "901", + "name": "tuned" + } + ] + }, + "python-linux-procfs": { + "name": "python-linux-procfs", + "version": "0.4.11", + "release": "4.el7", + "newVersion": "0.4.11", + "newRelease": "4.el7", + "arch": "noarch", + "repository": "" + }, + "python-markupsafe": { + "name": "python-markupsafe", + "version": "0.11", + "release": "10.el7", + "newVersion": "0.11", + "newRelease": "10.el7", + "arch": "x86_64", + "repository": "" + }, + "python-perf": { + "name": "python-perf", + "version": "3.10.0", + "release": "1062.12.1.el7", + "newVersion": "3.10.0", + "newRelease": "1160.21.1.el7", + "arch": "x86_64", + "repository": "updates" + }, + "python-prettytable": { + "name": "python-prettytable", + "version": "0.7.2", + "release": "3.el7", + "newVersion": "0.7.2", + "newRelease": "3.el7", + "arch": "noarch", + "repository": "" + }, + "python-pycurl": { + "name": "python-pycurl", + "version": "7.19.0", + "release": "19.el7", + "newVersion": "7.19.0", + "newRelease": "19.el7", + "arch": "x86_64", + "repository": "" + }, + "python-pyudev": { + "name": "python-pyudev", + "version": "0.15", + "release": "9.el7", + "newVersion": "0.15", + "newRelease": "9.el7", + "arch": "noarch", + "repository": "" + }, + "python-requests": { + "name": "python-requests", + "version": "2.6.0", + "release": "8.el7_7", + "newVersion": "2.6.0", + "newRelease": "10.el7", + "arch": "noarch", + "repository": "base" + }, + "python-schedutils": { + "name": "python-schedutils", + "version": "0.4", + "release": "6.el7", + "newVersion": "0.4", + "newRelease": "6.el7", + "arch": "x86_64", + "repository": "" + }, + "python-setuptools": { + "name": "python-setuptools", + "version": "0.9.8", + "release": "7.el7", + "newVersion": "0.9.8", + "newRelease": "7.el7", + "arch": "noarch", + "repository": "" + }, + "python-six": { + "name": "python-six", + "version": "1.9.0", + "release": "2.el7", + "newVersion": "1.9.0", + "newRelease": "2.el7", + "arch": "noarch", + "repository": "" + }, + "python-urlgrabber": { + "name": "python-urlgrabber", + "version": "3.10", + "release": "9.el7", + "newVersion": "3.10", + "newRelease": "10.el7", + "arch": "noarch", + "repository": "base" + }, + "python-urllib3": { + "name": "python-urllib3", + "version": "1.10.2", + "release": "7.el7", + "newVersion": "1.10.2", + "newRelease": "7.el7", + "arch": "noarch", + "repository": "" + }, + "pyxattr": { + "name": "pyxattr", + "version": "0.5.1", + "release": "5.el7", + "newVersion": "0.5.1", + "newRelease": "5.el7", + "arch": "x86_64", + "repository": "" + }, + "qemu-guest-agent": { + "name": "qemu-guest-agent", + "version": "10:2.12.0", + "release": "3.el7", + "newVersion": "10:2.12.0", + "newRelease": "3.el7", + "arch": "x86_64", + "repository": "" + }, + "qrencode-libs": { + "name": "qrencode-libs", + "version": "3.4.1", + "release": "3.el7", + "newVersion": "3.4.1", + "newRelease": "3.el7", + "arch": "x86_64", + "repository": "" + }, + "quota": { + "name": "quota", + "version": "1:4.01", + "release": "19.el7", + "newVersion": "1:4.01", + "newRelease": "19.el7", + "arch": "x86_64", + "repository": "" + }, + "quota-nls": { + "name": "quota-nls", + "version": "1:4.01", + "release": "19.el7", + "newVersion": "1:4.01", + "newRelease": "19.el7", + "arch": "noarch", + "repository": "" + }, + "readline": { + "name": "readline", + "version": "6.2", + "release": "11.el7", + "newVersion": "6.2", + "newRelease": "11.el7", + "arch": "x86_64", + "repository": "" + }, + "rootfiles": { + "name": "rootfiles", + "version": "8.1", + "release": "11.el7", + "newVersion": "8.1", + "newRelease": "11.el7", + "arch": "noarch", + "repository": "" + }, + "rpcbind": { + "name": "rpcbind", + "version": "0.2.0", + "release": "48.el7", + "newVersion": "0.2.0", + "newRelease": "49.el7", + "arch": "x86_64", + "repository": "base", + "AffectedProcs": [ + { + "pid": "495", + "name": "rpcbind", + "listenPortStats": [ + { + "bindAddress": "*", + "port": "111", + "portReachableTo": [] + } + ] + } + ] + }, + "rpm": { + "name": "rpm", + "version": "4.11.3", + "release": "40.el7", + "newVersion": "4.11.3", + "newRelease": "45.el7", + "arch": "x86_64", + "repository": "base" + }, + "rpm-build-libs": { + "name": "rpm-build-libs", + "version": "4.11.3", + "release": "40.el7", + "newVersion": "4.11.3", + "newRelease": "45.el7", + "arch": "x86_64", + "repository": "base" + }, + "rpm-libs": { + "name": "rpm-libs", + "version": "4.11.3", + "release": "40.el7", + "newVersion": "4.11.3", + "newRelease": "45.el7", + "arch": "x86_64", + "repository": "base" + }, + "rpm-python": { + "name": "rpm-python", + "version": "4.11.3", + "release": "40.el7", + "newVersion": "4.11.3", + "newRelease": "45.el7", + "arch": "x86_64", + "repository": "base" + }, + "rsync": { + "name": "rsync", + "version": "3.1.2", + "release": "6.el7_6.1", + "newVersion": "3.1.2", + "newRelease": "10.el7", + "arch": "x86_64", + "repository": "base" + }, + "rsyslog": { + "name": "rsyslog", + "version": "8.24.0", + "release": "41.el7_7.2", + "newVersion": "8.24.0", + "newRelease": "57.el7_9", + "arch": "x86_64", + "repository": "updates", + "AffectedProcs": [ + { + "pid": "1052", + "name": "rsyslogd" + } + ] + }, + "sed": { + "name": "sed", + "version": "4.2.2", + "release": "5.el7", + "newVersion": "4.2.2", + "newRelease": "7.el7", + "arch": "x86_64", + "repository": "base" + }, + "selinux-policy": { + "name": "selinux-policy", + "version": "3.13.1", + "release": "252.el7_7.6", + "newVersion": "3.13.1", + "newRelease": "268.el7_9.2", + "arch": "noarch", + "repository": "updates" + }, + "selinux-policy-targeted": { + "name": "selinux-policy-targeted", + "version": "3.13.1", + "release": "252.el7_7.6", + "newVersion": "3.13.1", + "newRelease": "268.el7_9.2", + "arch": "noarch", + "repository": "updates", + "AffectedProcs": [ + { + "pid": "1", + "name": "systemd", + "listenPortStats": [ + { + "bindAddress": "*", + "port": "111", + "portReachableTo": [] + } + ] + }, + { + "pid": "416", + "name": "systemd-udevd" + } + ] + }, + "setools-libs": { + "name": "setools-libs", + "version": "3.3.8", + "release": "4.el7", + "newVersion": "3.3.8", + "newRelease": "4.el7", + "arch": "x86_64", + "repository": "" + }, + "setup": { + "name": "setup", + "version": "2.8.71", + "release": "10.el7", + "newVersion": "2.8.71", + "newRelease": "11.el7", + "arch": "noarch", + "repository": "base" + }, + "sg3_utils": { + "name": "sg3_utils", + "version": "1.37", + "release": "18.el7_7.2", + "newVersion": "1:1.37", + "newRelease": "19.el7", + "arch": "x86_64", + "repository": "base" + }, + "sg3_utils-libs": { + "name": "sg3_utils-libs", + "version": "1.37", + "release": "18.el7_7.2", + "newVersion": "1:1.37", + "newRelease": "19.el7", + "arch": "x86_64", + "repository": "base" + }, + "shadow-utils": { + "name": "shadow-utils", + "version": "2:4.6", + "release": "5.el7", + "newVersion": "2:4.6", + "newRelease": "5.el7", + "arch": "x86_64", + "repository": "" + }, + "shared-mime-info": { + "name": "shared-mime-info", + "version": "1.8", + "release": "4.el7", + "newVersion": "1.8", + "newRelease": "5.el7", + "arch": "x86_64", + "repository": "base" + }, + "slang": { + "name": "slang", + "version": "2.2.4", + "release": "11.el7", + "newVersion": "2.2.4", + "newRelease": "11.el7", + "arch": "x86_64", + "repository": "" + }, + "snappy": { + "name": "snappy", + "version": "1.1.0", + "release": "3.el7", + "newVersion": "1.1.0", + "newRelease": "3.el7", + "arch": "x86_64", + "repository": "" + }, + "sqlite": { + "name": "sqlite", + "version": "3.7.17", + "release": "8.el7_7.1", + "newVersion": "3.7.17", + "newRelease": "8.el7_7.1", + "arch": "x86_64", + "repository": "" + }, + "sudo": { + "name": "sudo", + "version": "1.8.23", + "release": "4.el7_7.2", + "newVersion": "1.8.23", + "newRelease": "10.el7_9.1", + "arch": "x86_64", + "repository": "updates" + }, + "systemd": { + "name": "systemd", + "version": "219", + "release": "67.el7_7.3", + "newVersion": "219", + "newRelease": "78.el7_9.3", + "arch": "x86_64", + "repository": "updates", + "AffectedProcs": [ + { + "pid": "1", + "name": "systemd", + "listenPortStats": [ + { + "bindAddress": "*", + "port": "111", + "portReachableTo": [] + } + ] + }, + { + "pid": "416", + "name": "systemd-udevd" + }, + { + "pid": "376", + "name": "systemd-journal" + }, + { + "pid": "541", + "name": "systemd-logind" + } + ] + }, + "systemd-libs": { + "name": "systemd-libs", + "version": "219", + "release": "67.el7_7.3", + "newVersion": "219", + "newRelease": "78.el7_9.3", + "arch": "x86_64", + "repository": "updates", + "AffectedProcs": [ + { + "pid": "901", + "name": "tuned" + }, + { + "pid": "2684", + "name": "sshd" + }, + { + "pid": "538", + "name": "polkitd" + }, + { + "pid": "1161", + "name": "sshd" + }, + { + "pid": "495", + "name": "rpcbind", + "listenPortStats": [ + { + "bindAddress": "*", + "port": "111", + "portReachableTo": [] + } + ] + }, + { + "pid": "2687", + "name": "sshd" + }, + { + "pid": "543", + "name": "dbus-daemon" + }, + { + "pid": "843", + "name": "dhclient" + }, + { + "pid": "1158", + "name": "sshd" + }, + { + "pid": "1106", + "name": "sshd", + "listenPortStats": [ + { + "bindAddress": "*", + "port": "22", + "portReachableTo": [] + } + ] + }, + { + "pid": "553", + "name": "chronyd" + }, + { + "pid": "1052", + "name": "rsyslogd" + } + ] + }, + "systemd-sysv": { + "name": "systemd-sysv", + "version": "219", + "release": "67.el7_7.3", + "newVersion": "219", + "newRelease": "78.el7_9.3", + "arch": "x86_64", + "repository": "updates" + }, + "sysvinit-tools": { + "name": "sysvinit-tools", + "version": "2.88", + "release": "14.dsf.el7", + "newVersion": "2.88", + "newRelease": "14.dsf.el7", + "arch": "x86_64", + "repository": "" + }, + "tar": { + "name": "tar", + "version": "2:1.26", + "release": "35.el7", + "newVersion": "2:1.26", + "newRelease": "35.el7", + "arch": "x86_64", + "repository": "" + }, + "tcp_wrappers": { + "name": "tcp_wrappers", + "version": "7.6", + "release": "77.el7", + "newVersion": "7.6", + "newRelease": "77.el7", + "arch": "x86_64", + "repository": "" + }, + "tcp_wrappers-libs": { + "name": "tcp_wrappers-libs", + "version": "7.6", + "release": "77.el7", + "newVersion": "7.6", + "newRelease": "77.el7", + "arch": "x86_64", + "repository": "", + "AffectedProcs": [ + { + "pid": "2684", + "name": "sshd" + }, + { + "pid": "1161", + "name": "sshd" + }, + { + "pid": "495", + "name": "rpcbind", + "listenPortStats": [ + { + "bindAddress": "*", + "port": "111", + "portReachableTo": [] + } + ] + }, + { + "pid": "2687", + "name": "sshd" + }, + { + "pid": "441", + "name": "auditd" + }, + { + "pid": "1158", + "name": "sshd" + }, + { + "pid": "1106", + "name": "sshd", + "listenPortStats": [ + { + "bindAddress": "*", + "port": "22", + "portReachableTo": [] + } + ] + } + ] + }, + "teamd": { + "name": "teamd", + "version": "1.27", + "release": "9.el7", + "newVersion": "1.29", + "newRelease": "3.el7", + "arch": "x86_64", + "repository": "base" + }, + "tuned": { + "name": "tuned", + "version": "2.11.0", + "release": "5.el7_7.1", + "newVersion": "2.11.0", + "newRelease": "11.el7_9", + "arch": "noarch", + "repository": "updates" + }, + "tzdata": { + "name": "tzdata", + "version": "2019c", + "release": "1.el7", + "newVersion": "2021a", + "newRelease": "1.el7", + "arch": "noarch", + "repository": "updates" + }, + "ustr": { + "name": "ustr", + "version": "1.0.4", + "release": "16.el7", + "newVersion": "1.0.4", + "newRelease": "16.el7", + "arch": "x86_64", + "repository": "" + }, + "util-linux": { + "name": "util-linux", + "version": "2.23.2", + "release": "61.el7_7.1", + "newVersion": "2.23.2", + "newRelease": "65.el7_9.1", + "arch": "x86_64", + "repository": "updates", + "AffectedProcs": [ + { + "pid": "1064", + "name": "agetty" + }, + { + "pid": "1065", + "name": "agetty" + } + ] + }, + "vim-minimal": { + "name": "vim-minimal", + "version": "2:7.4.629", + "release": "6.el7", + "newVersion": "2:7.4.629", + "newRelease": "8.el7_9", + "arch": "x86_64", + "repository": "updates" + }, + "virt-what": { + "name": "virt-what", + "version": "1.18", + "release": "4.el7", + "newVersion": "1.18", + "newRelease": "4.el7", + "arch": "x86_64", + "repository": "" + }, + "which": { + "name": "which", + "version": "2.20", + "release": "7.el7", + "newVersion": "2.20", + "newRelease": "7.el7", + "arch": "x86_64", + "repository": "" + }, + "wpa_supplicant": { + "name": "wpa_supplicant", + "version": "1:2.6", + "release": "12.el7", + "newVersion": "1:2.6", + "newRelease": "12.el7_9.2", + "arch": "x86_64", + "repository": "updates" + }, + "xfsprogs": { + "name": "xfsprogs", + "version": "4.5.0", + "release": "20.el7", + "newVersion": "4.5.0", + "newRelease": "22.el7", + "arch": "x86_64", + "repository": "base" + }, + "xz": { + "name": "xz", + "version": "5.2.2", + "release": "1.el7", + "newVersion": "5.2.2", + "newRelease": "1.el7", + "arch": "x86_64", + "repository": "" + }, + "xz-libs": { + "name": "xz-libs", + "version": "5.2.2", + "release": "1.el7", + "newVersion": "5.2.2", + "newRelease": "1.el7", + "arch": "x86_64", + "repository": "", + "AffectedProcs": [ + { + "pid": "1", + "name": "systemd", + "listenPortStats": [ + { + "bindAddress": "*", + "port": "111", + "portReachableTo": [] + } + ] + }, + { + "pid": "901", + "name": "tuned" + }, + { + "pid": "2684", + "name": "sshd" + }, + { + "pid": "416", + "name": "systemd-udevd" + }, + { + "pid": "538", + "name": "polkitd" + }, + { + "pid": "1161", + "name": "sshd" + }, + { + "pid": "495", + "name": "rpcbind", + "listenPortStats": [ + { + "bindAddress": "*", + "port": "111", + "portReachableTo": [] + } + ] + }, + { + "pid": "376", + "name": "systemd-journal" + }, + { + "pid": "2687", + "name": "sshd" + }, + { + "pid": "543", + "name": "dbus-daemon" + }, + { + "pid": "843", + "name": "dhclient" + }, + { + "pid": "1158", + "name": "sshd" + }, + { + "pid": "1106", + "name": "sshd", + "listenPortStats": [ + { + "bindAddress": "*", + "port": "22", + "portReachableTo": [] + } + ] + }, + { + "pid": "553", + "name": "chronyd" + }, + { + "pid": "1052", + "name": "rsyslogd" + } + ] + }, + "yum": { + "name": "yum", + "version": "3.4.3", + "release": "163.el7.centos", + "newVersion": "3.4.3", + "newRelease": "168.el7.centos", + "arch": "noarch", + "repository": "base" + }, + "yum-metadata-parser": { + "name": "yum-metadata-parser", + "version": "1.1.4", + "release": "10.el7", + "newVersion": "1.1.4", + "newRelease": "10.el7", + "arch": "x86_64", + "repository": "" + }, + "yum-plugin-fastestmirror": { + "name": "yum-plugin-fastestmirror", + "version": "1.1.31", + "release": "52.el7", + "newVersion": "1.1.31", + "newRelease": "54.el7_8", + "arch": "noarch", + "repository": "base" + }, + "yum-utils": { + "name": "yum-utils", + "version": "1.1.31", + "release": "52.el7", + "newVersion": "1.1.31", + "newRelease": "54.el7_8", + "arch": "noarch", + "repository": "base" + }, + "zlib": { + "name": "zlib", + "version": "1.2.7", + "release": "18.el7", + "newVersion": "1.2.7", + "newRelease": "19.el7_9", + "arch": "x86_64", + "repository": "updates", + "AffectedProcs": [ + { + "pid": "1049", + "name": "qmgr" + }, + { + "pid": "1045", + "name": "master", + "listenPortStats": [ + { + "bindAddress": "127.0.0.1", + "port": "25", + "portReachableTo": [] + }, + { + "bindAddress": "[::1]", + "port": "25", + "portReachableTo": [] + } + ] + }, + { + "pid": "1", + "name": "systemd", + "listenPortStats": [ + { + "bindAddress": "*", + "port": "111", + "portReachableTo": [] + } + ] + }, + { + "pid": "901", + "name": "tuned" + }, + { + "pid": "2684", + "name": "sshd" + }, + { + "pid": "416", + "name": "systemd-udevd" + }, + { + "pid": "538", + "name": "polkitd" + }, + { + "pid": "1161", + "name": "sshd" + }, + { + "pid": "495", + "name": "rpcbind", + "listenPortStats": [ + { + "bindAddress": "*", + "port": "111", + "portReachableTo": [] + } + ] + }, + { + "pid": "1048", + "name": "pickup" + }, + { + "pid": "2687", + "name": "sshd" + }, + { + "pid": "543", + "name": "dbus-daemon" + }, + { + "pid": "843", + "name": "dhclient" + }, + { + "pid": "1158", + "name": "sshd" + }, + { + "pid": "1106", + "name": "sshd", + "listenPortStats": [ + { + "bindAddress": "*", + "port": "22", + "portReachableTo": [] + } + ] + }, + { + "pid": "553", + "name": "chronyd" + }, + { + "pid": "1052", + "name": "rsyslogd" + } + ] + } + }, + "constant": { + "scan": { + "logDir": "/var/log/vuls", + "resultsDir": "/home/ubuntu/go/src/github.com/future-architect/vuls/results", + "default": { + "port": "22", + "scanMode": [ + "fast" + ] + }, + "servers": { + "c7": { + "serverName": "c7", + "user": "centos", + "host": "54.249.18.65", + "port": "22", + "keyPath": "/home/ubuntu/.ssh/stg.pem", + "scanMode": [ + "fast-root" + ], + "wordpress": {} + } + }, + "cveDict": { + "Name": "cveDict", + "Type": "sqlite3", + "SQLite3Path": "/home/ubuntu/go/src/github.com/kotakanbe/go-cve-dictionary/cve.sqlite3", + "DebugSQL": false + }, + "ovalDict": { + "Name": "ovalDict", + "Type": "sqlite3", + "SQLite3Path": "/home/ubuntu/go/src/github.com/kotakanbe/goval-dictionary/oval.sqlite3", + "DebugSQL": false + }, + "gost": { + "Name": "gost", + "Type": "sqlite3", + "SQLite3Path": "/home/ubuntu/go/src/github.com/future-architect/vuls/gost.sqlite3", + "DebugSQL": false + }, + "exploit": { + "Name": "exploit", + "Type": "sqlite3", + "SQLite3Path": "/home/ubuntu/go/src/github.com/vulsio/go-exploitdb/go-exploitdb.sqlite3", + "DebugSQL": false + }, + "metasploit": { + "Name": "metasploit", + "Type": "sqlite3", + "SQLite3Path": "/home/ubuntu/go/src/github.com/takuzoo3868/go-msfdb/go-msfdb.sqlite3", + "DebugSQL": false + } + }, + "report": { + "default": {}, + "cveDict": { + "Name": "", + "Type": "", + "SQLite3Path": "", + "DebugSQL": false + }, + "ovalDict": { + "Name": "", + "Type": "", + "SQLite3Path": "", + "DebugSQL": false + }, + "gost": { + "Name": "", + "Type": "", + "SQLite3Path": "", + "DebugSQL": false + }, + "exploit": { + "Name": "", + "Type": "", + "SQLite3Path": "", + "DebugSQL": false + }, + "metasploit": { + "Name": "", + "Type": "", + "SQLite3Path": "", + "DebugSQL": false + } + } + } +} diff --git a/integration/data/debian_10.json b/integration/data/debian_10.json new file mode 100755 index 00000000..63ed3801 --- /dev/null +++ b/integration/data/debian_10.json @@ -0,0 +1,5631 @@ +{ + "jsonVersion": 4, + "lang": "", + "serverUUID": "", + "serverName": "debian_10", + "family": "debian", + "release": "10", + "container": { + "containerID": "", + "name": "", + "image": "", + "type": "", + "uuid": "" + }, + "platform": { + "name": "aws", + "instanceID": "i-0545d194b9d8a7a45" + }, + "ipv4Addrs": [ + "192.168.0.175" + ], + "scannedAt": "2021-03-24T16:34:40.023094971+09:00", + "scanMode": "fast-root mode", + "scannedVersion": "v0.15.9", + "scannedRevision": "build-20210324_121008_fc3b438", + "scannedBy": "dev", + "scannedVia": "remote", + "scannedIpv4Addrs": [ + "172.21.0.1", + "172.19.0.1", + "172.18.0.1", + "172.17.0.1", + "172.20.0.1" + ], + "reportedAt": "0001-01-01T00:00:00Z", + "reportedVersion": "", + "reportedRevision": "", + "reportedBy": "", + "errors": [], + "warnings": [], + "scannedCves": {}, + "runningKernel": { + "release": "4.19.0-14-cloud-amd64", + "version": "4.19.171-2", + "rebootRequired": false + }, + "packages": { + "adduser": { + "name": "adduser", + "version": "3.118", + "release": "", + "newVersion": "3.118", + "newRelease": "", + "arch": "", + "repository": "" + }, + "apparmor": { + "name": "apparmor", + "version": "2.13.2-10", + "release": "", + "newVersion": "2.13.2-10", + "newRelease": "", + "arch": "", + "repository": "" + }, + "apt": { + "name": "apt", + "version": "1.8.2.2", + "release": "", + "newVersion": "1.8.2.2", + "newRelease": "", + "arch": "", + "repository": "" + }, + "apt-listchanges": { + "name": "apt-listchanges", + "version": "3.19", + "release": "", + "newVersion": "3.19", + "newRelease": "", + "arch": "", + "repository": "" + }, + "apt-utils": { + "name": "apt-utils", + "version": "1.8.2.2", + "release": "", + "newVersion": "1.8.2.2", + "newRelease": "", + "arch": "", + "repository": "" + }, + "awscli": { + "name": "awscli", + "version": "1.16.113-1", + "release": "", + "newVersion": "1.16.113-1", + "newRelease": "", + "arch": "", + "repository": "" + }, + "base-files": { + "name": "base-files", + "version": "10.3+deb10u8", + "release": "", + "newVersion": "10.3+deb10u8", + "newRelease": "", + "arch": "", + "repository": "" + }, + "base-passwd": { + "name": "base-passwd", + "version": "3.5.46", + "release": "", + "newVersion": "3.5.46", + "newRelease": "", + "arch": "", + "repository": "" + }, + "bash": { + "name": "bash", + "version": "5.0-4", + "release": "", + "newVersion": "5.0-4", + "newRelease": "", + "arch": "", + "repository": "" + }, + "bash-completion": { + "name": "bash-completion", + "version": "1:2.8-6", + "release": "", + "newVersion": "1:2.8-6", + "newRelease": "", + "arch": "", + "repository": "" + }, + "bind9-host": { + "name": "bind9-host", + "version": "1:9.11.5.P4+dfsg-5.1+deb10u2", + "release": "", + "newVersion": "1:9.11.5.P4+dfsg-5.1+deb10u3", + "newRelease": "", + "arch": "", + "repository": "buster/updates/main" + }, + "bsdmainutils": { + "name": "bsdmainutils", + "version": "11.1.2+b1", + "release": "", + "newVersion": "11.1.2+b1", + "newRelease": "", + "arch": "", + "repository": "" + }, + "bsdutils": { + "name": "bsdutils", + "version": "1:2.33.1-0.1", + "release": "", + "newVersion": "1:2.33.1-0.1", + "newRelease": "", + "arch": "", + "repository": "" + }, + "bzip2": { + "name": "bzip2", + "version": "1.0.6-9.2~deb10u1", + "release": "", + "newVersion": "1.0.6-9.2~deb10u1", + "newRelease": "", + "arch": "", + "repository": "" + }, + "ca-certificates": { + "name": "ca-certificates", + "version": "20200601~deb10u2", + "release": "", + "newVersion": "20200601~deb10u2", + "newRelease": "", + "arch": "", + "repository": "" + }, + "chrony": { + "name": "chrony", + "version": "3.4-4+deb10u1", + "release": "", + "newVersion": "3.4-4+deb10u1", + "newRelease": "", + "arch": "", + "repository": "", + "AffectedProcs": [ + { + "pid": "528", + "name": "chronyd" + }, + { + "pid": "530", + "name": "chronyd" + } + ] + }, + "cloud-guest-utils": { + "name": "cloud-guest-utils", + "version": "0.29-1", + "release": "", + "newVersion": "0.29-1", + "newRelease": "", + "arch": "", + "repository": "" + }, + "cloud-image-utils": { + "name": "cloud-image-utils", + "version": "0.29-1", + "release": "", + "newVersion": "0.29-1", + "newRelease": "", + "arch": "", + "repository": "" + }, + "cloud-init": { + "name": "cloud-init", + "version": "20.2-2~deb10u1", + "release": "", + "newVersion": "20.2-2~deb10u1", + "newRelease": "", + "arch": "", + "repository": "" + }, + "cloud-initramfs-growroot": { + "name": "cloud-initramfs-growroot", + "version": "0.18.debian7", + "release": "", + "newVersion": "0.18.debian7", + "newRelease": "", + "arch": "", + "repository": "" + }, + "cloud-utils": { + "name": "cloud-utils", + "version": "0.29-1", + "release": "", + "newVersion": "0.29-1", + "newRelease": "", + "arch": "", + "repository": "" + }, + "coreutils": { + "name": "coreutils", + "version": "8.30-3", + "release": "", + "newVersion": "8.30-3", + "newRelease": "", + "arch": "", + "repository": "" + }, + "cpio": { + "name": "cpio", + "version": "2.12+dfsg-9", + "release": "", + "newVersion": "2.12+dfsg-9", + "newRelease": "", + "arch": "", + "repository": "" + }, + "cron": { + "name": "cron", + "version": "3.0pl1-134+deb10u1", + "release": "", + "newVersion": "3.0pl1-134+deb10u1", + "newRelease": "", + "arch": "", + "repository": "", + "AffectedProcs": [ + { + "pid": "520", + "name": "cron" + } + ] + }, + "curl": { + "name": "curl", + "version": "7.64.0-4+deb10u1", + "release": "", + "newVersion": "7.64.0-4+deb10u1", + "newRelease": "", + "arch": "", + "repository": "" + }, + "dash": { + "name": "dash", + "version": "0.5.10.2-5", + "release": "", + "newVersion": "0.5.10.2-5", + "newRelease": "", + "arch": "", + "repository": "" + }, + "dbus": { + "name": "dbus", + "version": "1.12.20-0+deb10u1", + "release": "", + "newVersion": "1.12.20-0+deb10u1", + "newRelease": "", + "arch": "", + "repository": "", + "AffectedProcs": [ + { + "pid": "521", + "name": "dbus-daemon" + } + ] + }, + "dctrl-tools": { + "name": "dctrl-tools", + "version": "2.24-3", + "release": "", + "newVersion": "2.24-3", + "newRelease": "", + "arch": "", + "repository": "" + }, + "debconf": { + "name": "debconf", + "version": "1.5.71", + "release": "", + "newVersion": "1.5.71", + "newRelease": "", + "arch": "", + "repository": "" + }, + "debian-archive-keyring": { + "name": "debian-archive-keyring", + "version": "2019.1", + "release": "", + "newVersion": "2019.1", + "newRelease": "", + "arch": "", + "repository": "" + }, + "debian-goodies": { + "name": "debian-goodies", + "version": "0.84", + "release": "", + "newVersion": "0.84", + "newRelease": "", + "arch": "", + "repository": "" + }, + "debianutils": { + "name": "debianutils", + "version": "4.8.6.1", + "release": "", + "newVersion": "4.8.6.1", + "newRelease": "", + "arch": "", + "repository": "" + }, + "diffutils": { + "name": "diffutils", + "version": "1:3.7-3", + "release": "", + "newVersion": "1:3.7-3", + "newRelease": "", + "arch": "", + "repository": "" + }, + "dirmngr": { + "name": "dirmngr", + "version": "2.2.12-1+deb10u1", + "release": "", + "newVersion": "2.2.12-1+deb10u1", + "newRelease": "", + "arch": "", + "repository": "" + }, + "distro-info-data": { + "name": "distro-info-data", + "version": "0.41+deb10u3", + "release": "", + "newVersion": "0.41+deb10u3", + "newRelease": "", + "arch": "", + "repository": "" + }, + "dmsetup": { + "name": "dmsetup", + "version": "2:1.02.155-3", + "release": "", + "newVersion": "2:1.02.155-3", + "newRelease": "", + "arch": "", + "repository": "" + }, + "docutils-common": { + "name": "docutils-common", + "version": "0.14+dfsg-4", + "release": "", + "newVersion": "0.14+dfsg-4", + "newRelease": "", + "arch": "", + "repository": "" + }, + "dpkg": { + "name": "dpkg", + "version": "1.19.7", + "release": "", + "newVersion": "1.19.7", + "newRelease": "", + "arch": "", + "repository": "" + }, + "e2fsprogs": { + "name": "e2fsprogs", + "version": "1.44.5-1+deb10u3", + "release": "", + "newVersion": "1.44.5-1+deb10u3", + "newRelease": "", + "arch": "", + "repository": "" + }, + "elfutils": { + "name": "elfutils", + "version": "0.176-1.1", + "release": "", + "newVersion": "0.176-1.1", + "newRelease": "", + "arch": "", + "repository": "" + }, + "ethtool": { + "name": "ethtool", + "version": "1:4.19-1", + "release": "", + "newVersion": "1:4.19-1", + "newRelease": "", + "arch": "", + "repository": "" + }, + "exim4-base": { + "name": "exim4-base", + "version": "4.92-8+deb10u4", + "release": "", + "newVersion": "4.92-8+deb10u4", + "newRelease": "", + "arch": "", + "repository": "" + }, + "exim4-config": { + "name": "exim4-config", + "version": "4.92-8+deb10u4", + "release": "", + "newVersion": "4.92-8+deb10u4", + "newRelease": "", + "arch": "", + "repository": "" + }, + "exim4-daemon-light": { + "name": "exim4-daemon-light", + "version": "4.92-8+deb10u4", + "release": "", + "newVersion": "4.92-8+deb10u4", + "newRelease": "", + "arch": "", + "repository": "", + "AffectedProcs": [ + { + "pid": "2627", + "name": "exim4", + "listenPortStats": [ + { + "bindAddress": "127.0.0.1", + "port": "25", + "portReachableTo": [] + }, + { + "bindAddress": "[::1]", + "port": "25", + "portReachableTo": [] + } + ] + } + ] + }, + "fdisk": { + "name": "fdisk", + "version": "2.33.1-0.1", + "release": "", + "newVersion": "2.33.1-0.1", + "newRelease": "", + "arch": "", + "repository": "" + }, + "file": { + "name": "file", + "version": "1:5.35-4+deb10u2", + "release": "", + "newVersion": "1:5.35-4+deb10u2", + "newRelease": "", + "arch": "", + "repository": "" + }, + "findutils": { + "name": "findutils", + "version": "4.6.0+git+20190209-2", + "release": "", + "newVersion": "4.6.0+git+20190209-2", + "newRelease": "", + "arch": "", + "repository": "" + }, + "gcc-8-base": { + "name": "gcc-8-base", + "version": "8.3.0-6", + "release": "", + "newVersion": "8.3.0-6", + "newRelease": "", + "arch": "", + "repository": "" + }, + "gdisk": { + "name": "gdisk", + "version": "1.0.3-1.1", + "release": "", + "newVersion": "1.0.3-1.1", + "newRelease": "", + "arch": "", + "repository": "" + }, + "genisoimage": { + "name": "genisoimage", + "version": "9:1.1.11-3+b2", + "release": "", + "newVersion": "9:1.1.11-3+b2", + "newRelease": "", + "arch": "", + "repository": "" + }, + "geoip-database": { + "name": "geoip-database", + "version": "20181108-1", + "release": "", + "newVersion": "20181108-1", + "newRelease": "", + "arch": "", + "repository": "" + }, + "gettext-base": { + "name": "gettext-base", + "version": "0.19.8.1-9", + "release": "", + "newVersion": "0.19.8.1-9", + "newRelease": "", + "arch": "", + "repository": "" + }, + "gnupg": { + "name": "gnupg", + "version": "2.2.12-1+deb10u1", + "release": "", + "newVersion": "2.2.12-1+deb10u1", + "newRelease": "", + "arch": "", + "repository": "" + }, + "gnupg-l10n": { + "name": "gnupg-l10n", + "version": "2.2.12-1+deb10u1", + "release": "", + "newVersion": "2.2.12-1+deb10u1", + "newRelease": "", + "arch": "", + "repository": "" + }, + "gnupg-utils": { + "name": "gnupg-utils", + "version": "2.2.12-1+deb10u1", + "release": "", + "newVersion": "2.2.12-1+deb10u1", + "newRelease": "", + "arch": "", + "repository": "" + }, + "gpg": { + "name": "gpg", + "version": "2.2.12-1+deb10u1", + "release": "", + "newVersion": "2.2.12-1+deb10u1", + "newRelease": "", + "arch": "", + "repository": "" + }, + "gpg-agent": { + "name": "gpg-agent", + "version": "2.2.12-1+deb10u1", + "release": "", + "newVersion": "2.2.12-1+deb10u1", + "newRelease": "", + "arch": "", + "repository": "" + }, + "gpg-wks-client": { + "name": "gpg-wks-client", + "version": "2.2.12-1+deb10u1", + "release": "", + "newVersion": "2.2.12-1+deb10u1", + "newRelease": "", + "arch": "", + "repository": "" + }, + "gpg-wks-server": { + "name": "gpg-wks-server", + "version": "2.2.12-1+deb10u1", + "release": "", + "newVersion": "2.2.12-1+deb10u1", + "newRelease": "", + "arch": "", + "repository": "" + }, + "gpgconf": { + "name": "gpgconf", + "version": "2.2.12-1+deb10u1", + "release": "", + "newVersion": "2.2.12-1+deb10u1", + "newRelease": "", + "arch": "", + "repository": "" + }, + "gpgsm": { + "name": "gpgsm", + "version": "2.2.12-1+deb10u1", + "release": "", + "newVersion": "2.2.12-1+deb10u1", + "newRelease": "", + "arch": "", + "repository": "" + }, + "gpgv": { + "name": "gpgv", + "version": "2.2.12-1+deb10u1", + "release": "", + "newVersion": "2.2.12-1+deb10u1", + "newRelease": "", + "arch": "", + "repository": "" + }, + "grep": { + "name": "grep", + "version": "3.3-1", + "release": "", + "newVersion": "3.3-1", + "newRelease": "", + "arch": "", + "repository": "" + }, + "groff-base": { + "name": "groff-base", + "version": "1.22.4-3", + "release": "", + "newVersion": "1.22.4-3", + "newRelease": "", + "arch": "", + "repository": "" + }, + "grub-cloud-amd64": { + "name": "grub-cloud-amd64", + "version": "0.0.4", + "release": "", + "newVersion": "0.0.4", + "newRelease": "", + "arch": "", + "repository": "" + }, + "grub-common": { + "name": "grub-common", + "version": "2.02+dfsg1-20+deb10u3", + "release": "", + "newVersion": "2.02+dfsg1-20+deb10u4", + "newRelease": "", + "arch": "", + "repository": "buster/updates/main" + }, + "grub-efi-amd64-bin": { + "name": "grub-efi-amd64-bin", + "version": "2.02+dfsg1-20+deb10u3", + "release": "", + "newVersion": "2.02+dfsg1-20+deb10u4", + "newRelease": "", + "arch": "", + "repository": "buster/updates/main" + }, + "grub-pc-bin": { + "name": "grub-pc-bin", + "version": "2.02+dfsg1-20+deb10u3", + "release": "", + "newVersion": "2.02+dfsg1-20+deb10u4", + "newRelease": "", + "arch": "", + "repository": "buster/updates/main" + }, + "grub2-common": { + "name": "grub2-common", + "version": "2.02+dfsg1-20+deb10u3", + "release": "", + "newVersion": "2.02+dfsg1-20+deb10u4", + "newRelease": "", + "arch": "", + "repository": "buster/updates/main" + }, + "guile-2.2-libs": { + "name": "guile-2.2-libs", + "version": "2.2.4+1-2+deb10u1", + "release": "", + "newVersion": "2.2.4+1-2+deb10u1", + "newRelease": "", + "arch": "", + "repository": "" + }, + "gzip": { + "name": "gzip", + "version": "1.9-3", + "release": "", + "newVersion": "1.9-3", + "newRelease": "", + "arch": "", + "repository": "" + }, + "hostname": { + "name": "hostname", + "version": "3.21", + "release": "", + "newVersion": "3.21", + "newRelease": "", + "arch": "", + "repository": "" + }, + "ifupdown": { + "name": "ifupdown", + "version": "0.8.35", + "release": "", + "newVersion": "0.8.35", + "newRelease": "", + "arch": "", + "repository": "" + }, + "init": { + "name": "init", + "version": "1.56+nmu1", + "release": "", + "newVersion": "1.56+nmu1", + "newRelease": "", + "arch": "", + "repository": "" + }, + "init-system-helpers": { + "name": "init-system-helpers", + "version": "1.56+nmu1", + "release": "", + "newVersion": "1.56+nmu1", + "newRelease": "", + "arch": "", + "repository": "" + }, + "initramfs-tools": { + "name": "initramfs-tools", + "version": "0.133+deb10u1", + "release": "", + "newVersion": "0.133+deb10u1", + "newRelease": "", + "arch": "", + "repository": "" + }, + "initramfs-tools-core": { + "name": "initramfs-tools-core", + "version": "0.133+deb10u1", + "release": "", + "newVersion": "0.133+deb10u1", + "newRelease": "", + "arch": "", + "repository": "" + }, + "iproute2": { + "name": "iproute2", + "version": "4.20.0-2+deb10u1", + "release": "", + "newVersion": "4.20.0-2+deb10u1", + "newRelease": "", + "arch": "", + "repository": "" + }, + "iptables": { + "name": "iptables", + "version": "1.8.2-4", + "release": "", + "newVersion": "1.8.2-4", + "newRelease": "", + "arch": "", + "repository": "" + }, + "iputils-ping": { + "name": "iputils-ping", + "version": "3:20180629-2+deb10u1", + "release": "", + "newVersion": "3:20180629-2+deb10u1", + "newRelease": "", + "arch": "", + "repository": "" + }, + "isc-dhcp-client": { + "name": "isc-dhcp-client", + "version": "4.4.1-2", + "release": "", + "newVersion": "4.4.1-2", + "newRelease": "", + "arch": "", + "repository": "" + }, + "iso-codes": { + "name": "iso-codes", + "version": "4.2-1", + "release": "", + "newVersion": "4.2-1", + "newRelease": "", + "arch": "", + "repository": "" + }, + "klibc-utils": { + "name": "klibc-utils", + "version": "2.0.6-1", + "release": "", + "newVersion": "2.0.6-1", + "newRelease": "", + "arch": "", + "repository": "" + }, + "kmod": { + "name": "kmod", + "version": "26-1", + "release": "", + "newVersion": "26-1", + "newRelease": "", + "arch": "", + "repository": "" + }, + "krb5-locales": { + "name": "krb5-locales", + "version": "1.17-3+deb10u1", + "release": "", + "newVersion": "1.17-3+deb10u1", + "newRelease": "", + "arch": "", + "repository": "" + }, + "less": { + "name": "less", + "version": "487-0.1+b1", + "release": "", + "newVersion": "487-0.1+b1", + "newRelease": "", + "arch": "", + "repository": "" + }, + "libacl1": { + "name": "libacl1", + "version": "2.2.53-4", + "release": "", + "newVersion": "2.2.53-4", + "newRelease": "", + "arch": "", + "repository": "", + "AffectedProcs": [ + { + "pid": "1", + "name": "systemd" + }, + { + "pid": "225", + "name": "systemd-journal" + }, + { + "pid": "606", + "name": "systemd" + }, + { + "pid": "524", + "name": "systemd-logind" + }, + { + "pid": "240", + "name": "systemd-udevd" + }, + { + "pid": "607", + "name": "(sd-pam)" + } + ] + }, + "libaio1": { + "name": "libaio1", + "version": "0.3.112-3", + "release": "", + "newVersion": "0.3.112-3", + "newRelease": "", + "arch": "", + "repository": "" + }, + "libapparmor1": { + "name": "libapparmor1", + "version": "2.13.2-10", + "release": "", + "newVersion": "2.13.2-10", + "newRelease": "", + "arch": "", + "repository": "" + }, + "libapt-inst2.0": { + "name": "libapt-inst2.0", + "version": "1.8.2.2", + "release": "", + "newVersion": "1.8.2.2", + "newRelease": "", + "arch": "", + "repository": "" + }, + "libapt-pkg5.0": { + "name": "libapt-pkg5.0", + "version": "1.8.2.2", + "release": "", + "newVersion": "1.8.2.2", + "newRelease": "", + "arch": "", + "repository": "", + "AffectedProcs": [ + { + "pid": "536", + "name": "unattended-upgr" + } + ] + }, + "libargon2-1": { + "name": "libargon2-1", + "version": "0~20171227-0.2", + "release": "", + "newVersion": "0~20171227-0.2", + "newRelease": "", + "arch": "", + "repository": "", + "AffectedProcs": [ + { + "pid": "1", + "name": "systemd" + }, + { + "pid": "225", + "name": "systemd-journal" + }, + { + "pid": "606", + "name": "systemd" + }, + { + "pid": "524", + "name": "systemd-logind" + }, + { + "pid": "607", + "name": "(sd-pam)" + } + ] + }, + "libasm1": { + "name": "libasm1", + "version": "0.176-1.1", + "release": "", + "newVersion": "0.176-1.1", + "newRelease": "", + "arch": "", + "repository": "" + }, + "libassuan0": { + "name": "libassuan0", + "version": "2.5.2-1", + "release": "", + "newVersion": "2.5.2-1", + "newRelease": "", + "arch": "", + "repository": "" + }, + "libattr1": { + "name": "libattr1", + "version": "1:2.4.48-4", + "release": "", + "newVersion": "1:2.4.48-4", + "newRelease": "", + "arch": "", + "repository": "", + "AffectedProcs": [ + { + "pid": "1", + "name": "systemd" + }, + { + "pid": "225", + "name": "systemd-journal" + }, + { + "pid": "606", + "name": "systemd" + }, + { + "pid": "524", + "name": "systemd-logind" + }, + { + "pid": "240", + "name": "systemd-udevd" + }, + { + "pid": "607", + "name": "(sd-pam)" + } + ] + }, + "libaudit-common": { + "name": "libaudit-common", + "version": "1:2.8.4-3", + "release": "", + "newVersion": "1:2.8.4-3", + "newRelease": "", + "arch": "", + "repository": "" + }, + "libaudit1": { + "name": "libaudit1", + "version": "1:2.8.4-3", + "release": "", + "newVersion": "1:2.8.4-3", + "newRelease": "", + "arch": "", + "repository": "" + }, + "libbind9-161": { + "name": "libbind9-161", + "version": "1:9.11.5.P4+dfsg-5.1+deb10u2", + "release": "", + "newVersion": "1:9.11.5.P4+dfsg-5.1+deb10u3", + "newRelease": "", + "arch": "", + "repository": "buster/updates/main" + }, + "libblkid1": { + "name": "libblkid1", + "version": "2.33.1-0.1", + "release": "", + "newVersion": "2.33.1-0.1", + "newRelease": "", + "arch": "", + "repository": "" + }, + "libbsd0": { + "name": "libbsd0", + "version": "0.9.1-2", + "release": "", + "newVersion": "0.9.1-2", + "newRelease": "", + "arch": "", + "repository": "" + }, + "libbz2-1.0": { + "name": "libbz2-1.0", + "version": "1.0.6-9.2~deb10u1", + "release": "", + "newVersion": "1.0.6-9.2~deb10u1", + "newRelease": "", + "arch": "", + "repository": "" + }, + "libc-bin": { + "name": "libc-bin", + "version": "2.28-10", + "release": "", + "newVersion": "2.28-10", + "newRelease": "", + "arch": "", + "repository": "", + "AffectedProcs": [ + { + "pid": "536", + "name": "unattended-upgr" + }, + { + "pid": "520", + "name": "cron" + }, + { + "pid": "529", + "name": "agetty" + }, + { + "pid": "533", + "name": "agetty" + } + ] + }, + "libc-l10n": { + "name": "libc-l10n", + "version": "2.28-10", + "release": "", + "newVersion": "2.28-10", + "newRelease": "", + "arch": "", + "repository": "" + }, + "libc6": { + "name": "libc6", + "version": "2.28-10", + "release": "", + "newVersion": "2.28-10", + "newRelease": "", + "arch": "", + "repository": "", + "AffectedProcs": [ + { + "pid": "536", + "name": "unattended-upgr" + }, + { + "pid": "520", + "name": "cron" + }, + { + "pid": "529", + "name": "agetty" + }, + { + "pid": "533", + "name": "agetty" + }, + { + "pid": "1358", + "name": "bash" + }, + { + "pid": "1362", + "name": "su" + }, + { + "pid": "1363", + "name": "bash" + } + ] + }, + "libcap-ng0": { + "name": "libcap-ng0", + "version": "0.7.9-2", + "release": "", + "newVersion": "0.7.9-2", + "newRelease": "", + "arch": "", + "repository": "" + }, + "libcap2": { + "name": "libcap2", + "version": "1:2.25-2", + "release": "", + "newVersion": "1:2.25-2", + "newRelease": "", + "arch": "", + "repository": "" + }, + "libcap2-bin": { + "name": "libcap2-bin", + "version": "1:2.25-2", + "release": "", + "newVersion": "1:2.25-2", + "newRelease": "", + "arch": "", + "repository": "" + }, + "libcom-err2": { + "name": "libcom-err2", + "version": "1.44.5-1+deb10u3", + "release": "", + "newVersion": "1.44.5-1+deb10u3", + "newRelease": "", + "arch": "", + "repository": "" + }, + "libcryptsetup12": { + "name": "libcryptsetup12", + "version": "2:2.1.0-5+deb10u2", + "release": "", + "newVersion": "2:2.1.0-5+deb10u2", + "newRelease": "", + "arch": "", + "repository": "" + }, + "libcurl3-gnutls": { + "name": "libcurl3-gnutls", + "version": "7.64.0-4+deb10u1", + "release": "", + "newVersion": "7.64.0-4+deb10u1", + "newRelease": "", + "arch": "", + "repository": "" + }, + "libcurl4": { + "name": "libcurl4", + "version": "7.64.0-4+deb10u1", + "release": "", + "newVersion": "7.64.0-4+deb10u1", + "newRelease": "", + "arch": "", + "repository": "" + }, + "libdb5.3": { + "name": "libdb5.3", + "version": "5.3.28+dfsg1-0.5", + "release": "", + "newVersion": "5.3.28+dfsg1-0.5", + "newRelease": "", + "arch": "", + "repository": "", + "AffectedProcs": [ + { + "pid": "2627", + "name": "exim4", + "listenPortStats": [ + { + "bindAddress": "127.0.0.1", + "port": "25", + "portReachableTo": [] + }, + { + "bindAddress": "[::1]", + "port": "25", + "portReachableTo": [] + } + ] + } + ] + }, + "libdbus-1-3": { + "name": "libdbus-1-3", + "version": "1.12.20-0+deb10u1", + "release": "", + "newVersion": "1.12.20-0+deb10u1", + "newRelease": "", + "arch": "", + "repository": "" + }, + "libdebconfclient0": { + "name": "libdebconfclient0", + "version": "0.249", + "release": "", + "newVersion": "0.249", + "newRelease": "", + "arch": "", + "repository": "" + }, + "libdevmapper1.02.1": { + "name": "libdevmapper1.02.1", + "version": "2:1.02.155-3", + "release": "", + "newVersion": "2:1.02.155-3", + "newRelease": "", + "arch": "", + "repository": "" + }, + "libdns-export1104": { + "name": "libdns-export1104", + "version": "1:9.11.5.P4+dfsg-5.1+deb10u2", + "release": "", + "newVersion": "1:9.11.5.P4+dfsg-5.1+deb10u3", + "newRelease": "", + "arch": "", + "repository": "buster/updates/main" + }, + "libdns1104": { + "name": "libdns1104", + "version": "1:9.11.5.P4+dfsg-5.1+deb10u2", + "release": "", + "newVersion": "1:9.11.5.P4+dfsg-5.1+deb10u3", + "newRelease": "", + "arch": "", + "repository": "buster/updates/main" + }, + "libdw1": { + "name": "libdw1", + "version": "0.176-1.1", + "release": "", + "newVersion": "0.176-1.1", + "newRelease": "", + "arch": "", + "repository": "" + }, + "libedit2": { + "name": "libedit2", + "version": "3.1-20181209-1", + "release": "", + "newVersion": "3.1-20181209-1", + "newRelease": "", + "arch": "", + "repository": "" + }, + "libefiboot1": { + "name": "libefiboot1", + "version": "37-2+deb10u1", + "release": "", + "newVersion": "37-2+deb10u1", + "newRelease": "", + "arch": "", + "repository": "" + }, + "libefivar1": { + "name": "libefivar1", + "version": "37-2+deb10u1", + "release": "", + "newVersion": "37-2+deb10u1", + "newRelease": "", + "arch": "", + "repository": "" + }, + "libelf1": { + "name": "libelf1", + "version": "0.176-1.1", + "release": "", + "newVersion": "0.176-1.1", + "newRelease": "", + "arch": "", + "repository": "" + }, + "libestr0": { + "name": "libestr0", + "version": "0.1.10-2.1", + "release": "", + "newVersion": "0.1.10-2.1", + "newRelease": "", + "arch": "", + "repository": "", + "AffectedProcs": [ + { + "pid": "522", + "name": "rsyslogd" + } + ] + }, + "libevent-2.1-6": { + "name": "libevent-2.1-6", + "version": "2.1.8-stable-4", + "release": "", + "newVersion": "2.1.8-stable-4", + "newRelease": "", + "arch": "", + "repository": "", + "AffectedProcs": [ + { + "pid": "2627", + "name": "exim4", + "listenPortStats": [ + { + "bindAddress": "127.0.0.1", + "port": "25", + "portReachableTo": [] + }, + { + "bindAddress": "[::1]", + "port": "25", + "portReachableTo": [] + } + ] + } + ] + }, + "libexpat1": { + "name": "libexpat1", + "version": "2.2.6-2+deb10u1", + "release": "", + "newVersion": "2.2.6-2+deb10u1", + "newRelease": "", + "arch": "", + "repository": "" + }, + "libext2fs2": { + "name": "libext2fs2", + "version": "1.44.5-1+deb10u3", + "release": "", + "newVersion": "1.44.5-1+deb10u3", + "newRelease": "", + "arch": "", + "repository": "" + }, + "libfastjson4": { + "name": "libfastjson4", + "version": "0.99.8-2", + "release": "", + "newVersion": "0.99.8-2", + "newRelease": "", + "arch": "", + "repository": "", + "AffectedProcs": [ + { + "pid": "522", + "name": "rsyslogd" + } + ] + }, + "libfdisk1": { + "name": "libfdisk1", + "version": "2.33.1-0.1", + "release": "", + "newVersion": "2.33.1-0.1", + "newRelease": "", + "arch": "", + "repository": "" + }, + "libffi6": { + "name": "libffi6", + "version": "3.2.1-9", + "release": "", + "newVersion": "3.2.1-9", + "newRelease": "", + "arch": "", + "repository": "", + "AffectedProcs": [ + { + "pid": "2627", + "name": "exim4", + "listenPortStats": [ + { + "bindAddress": "127.0.0.1", + "port": "25", + "portReachableTo": [] + }, + { + "bindAddress": "[::1]", + "port": "25", + "portReachableTo": [] + } + ] + } + ] + }, + "libfile-which-perl": { + "name": "libfile-which-perl", + "version": "1.23-1", + "release": "", + "newVersion": "1.23-1", + "newRelease": "", + "arch": "", + "repository": "" + }, + "libfreetype6": { + "name": "libfreetype6", + "version": "2.9.1-3+deb10u2", + "release": "", + "newVersion": "2.9.1-3+deb10u2", + "newRelease": "", + "arch": "", + "repository": "" + }, + "libfribidi0": { + "name": "libfribidi0", + "version": "1.0.5-3.1+deb10u1", + "release": "", + "newVersion": "1.0.5-3.1+deb10u1", + "newRelease": "", + "arch": "", + "repository": "" + }, + "libfstrm0": { + "name": "libfstrm0", + "version": "0.4.0-1", + "release": "", + "newVersion": "0.4.0-1", + "newRelease": "", + "arch": "", + "repository": "" + }, + "libfuse2": { + "name": "libfuse2", + "version": "2.9.9-1+deb10u1", + "release": "", + "newVersion": "2.9.9-1+deb10u1", + "newRelease": "", + "arch": "", + "repository": "" + }, + "libgc1c2": { + "name": "libgc1c2", + "version": "1:7.6.4-0.4", + "release": "", + "newVersion": "1:7.6.4-0.4", + "newRelease": "", + "arch": "", + "repository": "" + }, + "libgcc1": { + "name": "libgcc1", + "version": "1:8.3.0-6", + "release": "", + "newVersion": "1:8.3.0-6", + "newRelease": "", + "arch": "", + "repository": "" + }, + "libgcrypt20": { + "name": "libgcrypt20", + "version": "1.8.4-5", + "release": "", + "newVersion": "1.8.4-5", + "newRelease": "", + "arch": "", + "repository": "" + }, + "libgdbm-compat4": { + "name": "libgdbm-compat4", + "version": "1.18.1-4", + "release": "", + "newVersion": "1.18.1-4", + "newRelease": "", + "arch": "", + "repository": "" + }, + "libgdbm6": { + "name": "libgdbm6", + "version": "1.18.1-4", + "release": "", + "newVersion": "1.18.1-4", + "newRelease": "", + "arch": "", + "repository": "" + }, + "libgeoip1": { + "name": "libgeoip1", + "version": "1.6.12-1", + "release": "", + "newVersion": "1.6.12-1", + "newRelease": "", + "arch": "", + "repository": "" + }, + "libglib2.0-0": { + "name": "libglib2.0-0", + "version": "2.58.3-2+deb10u2", + "release": "", + "newVersion": "2.58.3-2+deb10u2", + "newRelease": "", + "arch": "", + "repository": "", + "AffectedProcs": [ + { + "pid": "536", + "name": "unattended-upgr" + } + ] + }, + "libgmp10": { + "name": "libgmp10", + "version": "2:6.1.2+dfsg-4", + "release": "", + "newVersion": "2:6.1.2+dfsg-4", + "newRelease": "", + "arch": "", + "repository": "", + "AffectedProcs": [ + { + "pid": "2627", + "name": "exim4", + "listenPortStats": [ + { + "bindAddress": "127.0.0.1", + "port": "25", + "portReachableTo": [] + }, + { + "bindAddress": "[::1]", + "port": "25", + "portReachableTo": [] + } + ] + } + ] + }, + "libgnutls-dane0": { + "name": "libgnutls-dane0", + "version": "3.6.7-4+deb10u6", + "release": "", + "newVersion": "3.6.7-4+deb10u6", + "newRelease": "", + "arch": "", + "repository": "", + "AffectedProcs": [ + { + "pid": "2627", + "name": "exim4", + "listenPortStats": [ + { + "bindAddress": "127.0.0.1", + "port": "25", + "portReachableTo": [] + }, + { + "bindAddress": "[::1]", + "port": "25", + "portReachableTo": [] + } + ] + } + ] + }, + "libgnutls30": { + "name": "libgnutls30", + "version": "3.6.7-4+deb10u6", + "release": "", + "newVersion": "3.6.7-4+deb10u6", + "newRelease": "", + "arch": "", + "repository": "", + "AffectedProcs": [ + { + "pid": "2627", + "name": "exim4", + "listenPortStats": [ + { + "bindAddress": "127.0.0.1", + "port": "25", + "portReachableTo": [] + }, + { + "bindAddress": "[::1]", + "port": "25", + "portReachableTo": [] + } + ] + } + ] + }, + "libgpg-error0": { + "name": "libgpg-error0", + "version": "1.35-1", + "release": "", + "newVersion": "1.35-1", + "newRelease": "", + "arch": "", + "repository": "" + }, + "libgpm2": { + "name": "libgpm2", + "version": "1.20.7-5", + "release": "", + "newVersion": "1.20.7-5", + "newRelease": "", + "arch": "", + "repository": "" + }, + "libgsasl7": { + "name": "libgsasl7", + "version": "1.8.0-8+b2", + "release": "", + "newVersion": "1.8.0-8+b2", + "newRelease": "", + "arch": "", + "repository": "" + }, + "libgssapi-krb5-2": { + "name": "libgssapi-krb5-2", + "version": "1.17-3+deb10u1", + "release": "", + "newVersion": "1.17-3+deb10u1", + "newRelease": "", + "arch": "", + "repository": "", + "AffectedProcs": [ + { + "pid": "603", + "name": "sshd" + }, + { + "pid": "1357", + "name": "sshd" + }, + { + "pid": "538", + "name": "sshd", + "listenPortStats": [ + { + "bindAddress": "*", + "port": "22", + "portReachableTo": [] + } + ] + }, + { + "pid": "1351", + "name": "sshd" + }, + { + "pid": "615", + "name": "sshd" + } + ] + }, + "libhogweed4": { + "name": "libhogweed4", + "version": "3.4.1-1", + "release": "", + "newVersion": "3.4.1-1", + "newRelease": "", + "arch": "", + "repository": "", + "AffectedProcs": [ + { + "pid": "2627", + "name": "exim4", + "listenPortStats": [ + { + "bindAddress": "127.0.0.1", + "port": "25", + "portReachableTo": [] + }, + { + "bindAddress": "[::1]", + "port": "25", + "portReachableTo": [] + } + ] + } + ] + }, + "libicu63": { + "name": "libicu63", + "version": "63.1-6+deb10u1", + "release": "", + "newVersion": "63.1-6+deb10u1", + "newRelease": "", + "arch": "", + "repository": "" + }, + "libidn11": { + "name": "libidn11", + "version": "1.33-2.2", + "release": "", + "newVersion": "1.33-2.2", + "newRelease": "", + "arch": "", + "repository": "" + }, + "libidn2-0": { + "name": "libidn2-0", + "version": "2.0.5-1+deb10u1", + "release": "", + "newVersion": "2.0.5-1+deb10u1", + "newRelease": "", + "arch": "", + "repository": "", + "AffectedProcs": [ + { + "pid": "2627", + "name": "exim4", + "listenPortStats": [ + { + "bindAddress": "127.0.0.1", + "port": "25", + "portReachableTo": [] + }, + { + "bindAddress": "[::1]", + "port": "25", + "portReachableTo": [] + } + ] + } + ] + }, + "libip4tc0": { + "name": "libip4tc0", + "version": "1.8.2-4", + "release": "", + "newVersion": "1.8.2-4", + "newRelease": "", + "arch": "", + "repository": "", + "AffectedProcs": [ + { + "pid": "1", + "name": "systemd" + }, + { + "pid": "225", + "name": "systemd-journal" + }, + { + "pid": "606", + "name": "systemd" + }, + { + "pid": "524", + "name": "systemd-logind" + }, + { + "pid": "607", + "name": "(sd-pam)" + } + ] + }, + "libip6tc0": { + "name": "libip6tc0", + "version": "1.8.2-4", + "release": "", + "newVersion": "1.8.2-4", + "newRelease": "", + "arch": "", + "repository": "" + }, + "libipc-system-simple-perl": { + "name": "libipc-system-simple-perl", + "version": "1.25-4", + "release": "", + "newVersion": "1.25-4", + "newRelease": "", + "arch": "", + "repository": "" + }, + "libiptc0": { + "name": "libiptc0", + "version": "1.8.2-4", + "release": "", + "newVersion": "1.8.2-4", + "newRelease": "", + "arch": "", + "repository": "" + }, + "libisc-export1100": { + "name": "libisc-export1100", + "version": "1:9.11.5.P4+dfsg-5.1+deb10u2", + "release": "", + "newVersion": "1:9.11.5.P4+dfsg-5.1+deb10u3", + "newRelease": "", + "arch": "", + "repository": "buster/updates/main" + }, + "libisc1100": { + "name": "libisc1100", + "version": "1:9.11.5.P4+dfsg-5.1+deb10u2", + "release": "", + "newVersion": "1:9.11.5.P4+dfsg-5.1+deb10u3", + "newRelease": "", + "arch": "", + "repository": "buster/updates/main" + }, + "libisccc161": { + "name": "libisccc161", + "version": "1:9.11.5.P4+dfsg-5.1+deb10u2", + "release": "", + "newVersion": "1:9.11.5.P4+dfsg-5.1+deb10u3", + "newRelease": "", + "arch": "", + "repository": "buster/updates/main" + }, + "libisccfg163": { + "name": "libisccfg163", + "version": "1:9.11.5.P4+dfsg-5.1+deb10u2", + "release": "", + "newVersion": "1:9.11.5.P4+dfsg-5.1+deb10u3", + "newRelease": "", + "arch": "", + "repository": "buster/updates/main" + }, + "libjson-c3": { + "name": "libjson-c3", + "version": "0.12.1+ds-2+deb10u1", + "release": "", + "newVersion": "0.12.1+ds-2+deb10u1", + "newRelease": "", + "arch": "", + "repository": "", + "AffectedProcs": [ + { + "pid": "1", + "name": "systemd" + }, + { + "pid": "225", + "name": "systemd-journal" + }, + { + "pid": "606", + "name": "systemd" + }, + { + "pid": "524", + "name": "systemd-logind" + }, + { + "pid": "607", + "name": "(sd-pam)" + } + ] + }, + "libk5crypto3": { + "name": "libk5crypto3", + "version": "1.17-3+deb10u1", + "release": "", + "newVersion": "1.17-3+deb10u1", + "newRelease": "", + "arch": "", + "repository": "", + "AffectedProcs": [ + { + "pid": "603", + "name": "sshd" + }, + { + "pid": "1357", + "name": "sshd" + }, + { + "pid": "538", + "name": "sshd", + "listenPortStats": [ + { + "bindAddress": "*", + "port": "22", + "portReachableTo": [] + } + ] + }, + { + "pid": "1351", + "name": "sshd" + }, + { + "pid": "615", + "name": "sshd" + } + ] + }, + "libkeyutils1": { + "name": "libkeyutils1", + "version": "1.6-6", + "release": "", + "newVersion": "1.6-6", + "newRelease": "", + "arch": "", + "repository": "" + }, + "libklibc": { + "name": "libklibc", + "version": "2.0.6-1", + "release": "", + "newVersion": "2.0.6-1", + "newRelease": "", + "arch": "", + "repository": "" + }, + "libkmod2": { + "name": "libkmod2", + "version": "26-1", + "release": "", + "newVersion": "26-1", + "newRelease": "", + "arch": "", + "repository": "", + "AffectedProcs": [ + { + "pid": "1", + "name": "systemd" + }, + { + "pid": "225", + "name": "systemd-journal" + }, + { + "pid": "606", + "name": "systemd" + }, + { + "pid": "524", + "name": "systemd-logind" + }, + { + "pid": "240", + "name": "systemd-udevd" + }, + { + "pid": "607", + "name": "(sd-pam)" + } + ] + }, + "libkrb5-3": { + "name": "libkrb5-3", + "version": "1.17-3+deb10u1", + "release": "", + "newVersion": "1.17-3+deb10u1", + "newRelease": "", + "arch": "", + "repository": "", + "AffectedProcs": [ + { + "pid": "603", + "name": "sshd" + }, + { + "pid": "1357", + "name": "sshd" + }, + { + "pid": "538", + "name": "sshd", + "listenPortStats": [ + { + "bindAddress": "*", + "port": "22", + "portReachableTo": [] + } + ] + }, + { + "pid": "1351", + "name": "sshd" + }, + { + "pid": "615", + "name": "sshd" + } + ] + }, + "libkrb5support0": { + "name": "libkrb5support0", + "version": "1.17-3+deb10u1", + "release": "", + "newVersion": "1.17-3+deb10u1", + "newRelease": "", + "arch": "", + "repository": "", + "AffectedProcs": [ + { + "pid": "603", + "name": "sshd" + }, + { + "pid": "1357", + "name": "sshd" + }, + { + "pid": "538", + "name": "sshd", + "listenPortStats": [ + { + "bindAddress": "*", + "port": "22", + "portReachableTo": [] + } + ] + }, + { + "pid": "1351", + "name": "sshd" + }, + { + "pid": "615", + "name": "sshd" + } + ] + }, + "libksba8": { + "name": "libksba8", + "version": "1.3.5-2", + "release": "", + "newVersion": "1.3.5-2", + "newRelease": "", + "arch": "", + "repository": "" + }, + "libkyotocabinet16v5": { + "name": "libkyotocabinet16v5", + "version": "1.2.76-4.2+b1", + "release": "", + "newVersion": "1.2.76-4.2+b1", + "newRelease": "", + "arch": "", + "repository": "" + }, + "libldap-2.4-2": { + "name": "libldap-2.4-2", + "version": "2.4.47+dfsg-3+deb10u5", + "release": "", + "newVersion": "2.4.47+dfsg-3+deb10u6", + "newRelease": "", + "arch": "", + "repository": "buster/updates/main" + }, + "libldap-common": { + "name": "libldap-common", + "version": "2.4.47+dfsg-3+deb10u5", + "release": "", + "newVersion": "2.4.47+dfsg-3+deb10u6", + "newRelease": "", + "arch": "", + "repository": "buster/updates/main" + }, + "liblmdb0": { + "name": "liblmdb0", + "version": "0.9.22-1", + "release": "", + "newVersion": "0.9.22-1", + "newRelease": "", + "arch": "", + "repository": "" + }, + "liblognorm5": { + "name": "liblognorm5", + "version": "2.0.5-1", + "release": "", + "newVersion": "2.0.5-1", + "newRelease": "", + "arch": "", + "repository": "" + }, + "libltdl7": { + "name": "libltdl7", + "version": "2.4.6-9", + "release": "", + "newVersion": "2.4.6-9", + "newRelease": "", + "arch": "", + "repository": "" + }, + "liblwres161": { + "name": "liblwres161", + "version": "1:9.11.5.P4+dfsg-5.1+deb10u2", + "release": "", + "newVersion": "1:9.11.5.P4+dfsg-5.1+deb10u3", + "newRelease": "", + "arch": "", + "repository": "buster/updates/main" + }, + "liblz4-1": { + "name": "liblz4-1", + "version": "1.8.3-1", + "release": "", + "newVersion": "1.8.3-1", + "newRelease": "", + "arch": "", + "repository": "", + "AffectedProcs": [ + { + "pid": "1", + "name": "systemd" + }, + { + "pid": "225", + "name": "systemd-journal" + }, + { + "pid": "603", + "name": "sshd" + }, + { + "pid": "606", + "name": "systemd" + }, + { + "pid": "536", + "name": "unattended-upgr" + }, + { + "pid": "1357", + "name": "sshd" + }, + { + "pid": "538", + "name": "sshd", + "listenPortStats": [ + { + "bindAddress": "*", + "port": "22", + "portReachableTo": [] + } + ] + }, + { + "pid": "1351", + "name": "sshd" + }, + { + "pid": "524", + "name": "systemd-logind" + }, + { + "pid": "522", + "name": "rsyslogd" + }, + { + "pid": "615", + "name": "sshd" + }, + { + "pid": "521", + "name": "dbus-daemon" + }, + { + "pid": "607", + "name": "(sd-pam)" + } + ] + }, + "liblzma5": { + "name": "liblzma5", + "version": "5.2.4-1", + "release": "", + "newVersion": "5.2.4-1", + "newRelease": "", + "arch": "", + "repository": "" + }, + "liblzo2-2": { + "name": "liblzo2-2", + "version": "2.10-0.1", + "release": "", + "newVersion": "2.10-0.1", + "newRelease": "", + "arch": "", + "repository": "" + }, + "libmagic-mgc": { + "name": "libmagic-mgc", + "version": "1:5.35-4+deb10u2", + "release": "", + "newVersion": "1:5.35-4+deb10u2", + "newRelease": "", + "arch": "", + "repository": "" + }, + "libmagic1": { + "name": "libmagic1", + "version": "1:5.35-4+deb10u2", + "release": "", + "newVersion": "1:5.35-4+deb10u2", + "newRelease": "", + "arch": "", + "repository": "" + }, + "libmailutils5": { + "name": "libmailutils5", + "version": "1:3.5-4", + "release": "", + "newVersion": "1:3.5-4", + "newRelease": "", + "arch": "", + "repository": "" + }, + "libmariadb3": { + "name": "libmariadb3", + "version": "1:10.3.27-0+deb10u1", + "release": "", + "newVersion": "1:10.3.27-0+deb10u1", + "newRelease": "", + "arch": "", + "repository": "" + }, + "libmnl0": { + "name": "libmnl0", + "version": "1.0.4-2", + "release": "", + "newVersion": "1.0.4-2", + "newRelease": "", + "arch": "", + "repository": "" + }, + "libmount1": { + "name": "libmount1", + "version": "2.33.1-0.1", + "release": "", + "newVersion": "2.33.1-0.1", + "newRelease": "", + "arch": "", + "repository": "" + }, + "libmpdec2": { + "name": "libmpdec2", + "version": "2.4.2-2", + "release": "", + "newVersion": "2.4.2-2", + "newRelease": "", + "arch": "", + "repository": "" + }, + "libncurses6": { + "name": "libncurses6", + "version": "6.1+20181013-2+deb10u2", + "release": "", + "newVersion": "6.1+20181013-2+deb10u2", + "newRelease": "", + "arch": "", + "repository": "" + }, + "libncursesw6": { + "name": "libncursesw6", + "version": "6.1+20181013-2+deb10u2", + "release": "", + "newVersion": "6.1+20181013-2+deb10u2", + "newRelease": "", + "arch": "", + "repository": "" + }, + "libnetfilter-conntrack3": { + "name": "libnetfilter-conntrack3", + "version": "1.0.7-1", + "release": "", + "newVersion": "1.0.7-1", + "newRelease": "", + "arch": "", + "repository": "" + }, + "libnettle6": { + "name": "libnettle6", + "version": "3.4.1-1", + "release": "", + "newVersion": "3.4.1-1", + "newRelease": "", + "arch": "", + "repository": "", + "AffectedProcs": [ + { + "pid": "2627", + "name": "exim4", + "listenPortStats": [ + { + "bindAddress": "127.0.0.1", + "port": "25", + "portReachableTo": [] + }, + { + "bindAddress": "[::1]", + "port": "25", + "portReachableTo": [] + } + ] + }, + { + "pid": "528", + "name": "chronyd" + }, + { + "pid": "530", + "name": "chronyd" + } + ] + }, + "libnewt0.52": { + "name": "libnewt0.52", + "version": "0.52.20-8", + "release": "", + "newVersion": "0.52.20-8", + "newRelease": "", + "arch": "", + "repository": "" + }, + "libnfnetlink0": { + "name": "libnfnetlink0", + "version": "1.0.1-3+b1", + "release": "", + "newVersion": "1.0.1-3+b1", + "newRelease": "", + "arch": "", + "repository": "" + }, + "libnftnl11": { + "name": "libnftnl11", + "version": "1.1.2-2", + "release": "", + "newVersion": "1.1.2-2", + "newRelease": "", + "arch": "", + "repository": "" + }, + "libnghttp2-14": { + "name": "libnghttp2-14", + "version": "1.36.0-2+deb10u1", + "release": "", + "newVersion": "1.36.0-2+deb10u1", + "newRelease": "", + "arch": "", + "repository": "" + }, + "libnpth0": { + "name": "libnpth0", + "version": "1.6-1", + "release": "", + "newVersion": "1.6-1", + "newRelease": "", + "arch": "", + "repository": "" + }, + "libntlm0": { + "name": "libntlm0", + "version": "1.5-1+deb10u1", + "release": "", + "newVersion": "1.5-1+deb10u1", + "newRelease": "", + "arch": "", + "repository": "" + }, + "libp11-kit0": { + "name": "libp11-kit0", + "version": "0.23.15-2+deb10u1", + "release": "", + "newVersion": "0.23.15-2+deb10u1", + "newRelease": "", + "arch": "", + "repository": "", + "AffectedProcs": [ + { + "pid": "2627", + "name": "exim4", + "listenPortStats": [ + { + "bindAddress": "127.0.0.1", + "port": "25", + "portReachableTo": [] + }, + { + "bindAddress": "[::1]", + "port": "25", + "portReachableTo": [] + } + ] + } + ] + }, + "libpam-modules": { + "name": "libpam-modules", + "version": "1.3.1-5", + "release": "", + "newVersion": "1.3.1-5", + "newRelease": "", + "arch": "", + "repository": "" + }, + "libpam-modules-bin": { + "name": "libpam-modules-bin", + "version": "1.3.1-5", + "release": "", + "newVersion": "1.3.1-5", + "newRelease": "", + "arch": "", + "repository": "" + }, + "libpam-runtime": { + "name": "libpam-runtime", + "version": "1.3.1-5", + "release": "", + "newVersion": "1.3.1-5", + "newRelease": "", + "arch": "", + "repository": "" + }, + "libpam-systemd": { + "name": "libpam-systemd", + "version": "241-7~deb10u6", + "release": "", + "newVersion": "241-7~deb10u6", + "newRelease": "", + "arch": "", + "repository": "" + }, + "libpam0g": { + "name": "libpam0g", + "version": "1.3.1-5", + "release": "", + "newVersion": "1.3.1-5", + "newRelease": "", + "arch": "", + "repository": "" + }, + "libpcap0.8": { + "name": "libpcap0.8", + "version": "1.8.1-6", + "release": "", + "newVersion": "1.8.1-6", + "newRelease": "", + "arch": "", + "repository": "" + }, + "libpci3": { + "name": "libpci3", + "version": "1:3.5.2-1", + "release": "", + "newVersion": "1:3.5.2-1", + "newRelease": "", + "arch": "", + "repository": "" + }, + "libpcre2-8-0": { + "name": "libpcre2-8-0", + "version": "10.32-5", + "release": "", + "newVersion": "10.32-5", + "newRelease": "", + "arch": "", + "repository": "" + }, + "libpcre3": { + "name": "libpcre3", + "version": "2:8.39-12", + "release": "", + "newVersion": "2:8.39-12", + "newRelease": "", + "arch": "", + "repository": "" + }, + "libperl5.28": { + "name": "libperl5.28", + "version": "5.28.1-6+deb10u1", + "release": "", + "newVersion": "5.28.1-6+deb10u1", + "newRelease": "", + "arch": "", + "repository": "" + }, + "libpipeline1": { + "name": "libpipeline1", + "version": "1.5.1-2", + "release": "", + "newVersion": "1.5.1-2", + "newRelease": "", + "arch": "", + "repository": "" + }, + "libpng16-16": { + "name": "libpng16-16", + "version": "1.6.36-6", + "release": "", + "newVersion": "1.6.36-6", + "newRelease": "", + "arch": "", + "repository": "" + }, + "libpopt0": { + "name": "libpopt0", + "version": "1.16-12", + "release": "", + "newVersion": "1.16-12", + "newRelease": "", + "arch": "", + "repository": "" + }, + "libprocps7": { + "name": "libprocps7", + "version": "2:3.3.15-2", + "release": "", + "newVersion": "2:3.3.15-2", + "newRelease": "", + "arch": "", + "repository": "" + }, + "libprotobuf-c1": { + "name": "libprotobuf-c1", + "version": "1.3.1-1+b1", + "release": "", + "newVersion": "1.3.1-1+b1", + "newRelease": "", + "arch": "", + "repository": "" + }, + "libpsl5": { + "name": "libpsl5", + "version": "0.20.2-2", + "release": "", + "newVersion": "0.20.2-2", + "newRelease": "", + "arch": "", + "repository": "" + }, + "libpython-stdlib": { + "name": "libpython-stdlib", + "version": "2.7.16-1", + "release": "", + "newVersion": "2.7.16-1", + "newRelease": "", + "arch": "", + "repository": "" + }, + "libpython2-stdlib": { + "name": "libpython2-stdlib", + "version": "2.7.16-1", + "release": "", + "newVersion": "2.7.16-1", + "newRelease": "", + "arch": "", + "repository": "" + }, + "libpython2.7": { + "name": "libpython2.7", + "version": "2.7.16-2+deb10u1", + "release": "", + "newVersion": "2.7.16-2+deb10u1", + "newRelease": "", + "arch": "", + "repository": "" + }, + "libpython2.7-minimal": { + "name": "libpython2.7-minimal", + "version": "2.7.16-2+deb10u1", + "release": "", + "newVersion": "2.7.16-2+deb10u1", + "newRelease": "", + "arch": "", + "repository": "" + }, + "libpython2.7-stdlib": { + "name": "libpython2.7-stdlib", + "version": "2.7.16-2+deb10u1", + "release": "", + "newVersion": "2.7.16-2+deb10u1", + "newRelease": "", + "arch": "", + "repository": "" + }, + "libpython3-stdlib": { + "name": "libpython3-stdlib", + "version": "3.7.3-1", + "release": "", + "newVersion": "3.7.3-1", + "newRelease": "", + "arch": "", + "repository": "" + }, + "libpython3.7-minimal": { + "name": "libpython3.7-minimal", + "version": "3.7.3-2+deb10u2", + "release": "", + "newVersion": "3.7.3-2+deb10u2", + "newRelease": "", + "arch": "", + "repository": "" + }, + "libpython3.7-stdlib": { + "name": "libpython3.7-stdlib", + "version": "3.7.3-2+deb10u2", + "release": "", + "newVersion": "3.7.3-2+deb10u2", + "newRelease": "", + "arch": "", + "repository": "", + "AffectedProcs": [ + { + "pid": "536", + "name": "unattended-upgr" + } + ] + }, + "libreadline7": { + "name": "libreadline7", + "version": "7.0-5", + "release": "", + "newVersion": "7.0-5", + "newRelease": "", + "arch": "", + "repository": "" + }, + "librtmp1": { + "name": "librtmp1", + "version": "2.4+20151223.gitfa8646d.1-2", + "release": "", + "newVersion": "2.4+20151223.gitfa8646d.1-2", + "newRelease": "", + "arch": "", + "repository": "" + }, + "libsasl2-2": { + "name": "libsasl2-2", + "version": "2.1.27+dfsg-1+deb10u1", + "release": "", + "newVersion": "2.1.27+dfsg-1+deb10u1", + "newRelease": "", + "arch": "", + "repository": "" + }, + "libsasl2-modules": { + "name": "libsasl2-modules", + "version": "2.1.27+dfsg-1+deb10u1", + "release": "", + "newVersion": "2.1.27+dfsg-1+deb10u1", + "newRelease": "", + "arch": "", + "repository": "" + }, + "libsasl2-modules-db": { + "name": "libsasl2-modules-db", + "version": "2.1.27+dfsg-1+deb10u1", + "release": "", + "newVersion": "2.1.27+dfsg-1+deb10u1", + "newRelease": "", + "arch": "", + "repository": "" + }, + "libseccomp2": { + "name": "libseccomp2", + "version": "2.3.3-4", + "release": "", + "newVersion": "2.3.3-4", + "newRelease": "", + "arch": "", + "repository": "", + "AffectedProcs": [ + { + "pid": "1", + "name": "systemd" + }, + { + "pid": "225", + "name": "systemd-journal" + }, + { + "pid": "606", + "name": "systemd" + }, + { + "pid": "524", + "name": "systemd-logind" + }, + { + "pid": "528", + "name": "chronyd" + }, + { + "pid": "530", + "name": "chronyd" + }, + { + "pid": "607", + "name": "(sd-pam)" + } + ] + }, + "libselinux1": { + "name": "libselinux1", + "version": "2.8-1+b1", + "release": "", + "newVersion": "2.8-1+b1", + "newRelease": "", + "arch": "", + "repository": "" + }, + "libsemanage-common": { + "name": "libsemanage-common", + "version": "2.8-2", + "release": "", + "newVersion": "2.8-2", + "newRelease": "", + "arch": "", + "repository": "" + }, + "libsemanage1": { + "name": "libsemanage1", + "version": "2.8-2", + "release": "", + "newVersion": "2.8-2", + "newRelease": "", + "arch": "", + "repository": "" + }, + "libsepol1": { + "name": "libsepol1", + "version": "2.8-1", + "release": "", + "newVersion": "2.8-1", + "newRelease": "", + "arch": "", + "repository": "" + }, + "libslang2": { + "name": "libslang2", + "version": "2.3.2-2", + "release": "", + "newVersion": "2.3.2-2", + "newRelease": "", + "arch": "", + "repository": "" + }, + "libsmartcols1": { + "name": "libsmartcols1", + "version": "2.33.1-0.1", + "release": "", + "newVersion": "2.33.1-0.1", + "newRelease": "", + "arch": "", + "repository": "" + }, + "libsqlite3-0": { + "name": "libsqlite3-0", + "version": "3.27.2-3+deb10u1", + "release": "", + "newVersion": "3.27.2-3+deb10u1", + "newRelease": "", + "arch": "", + "repository": "" + }, + "libss2": { + "name": "libss2", + "version": "1.44.5-1+deb10u3", + "release": "", + "newVersion": "1.44.5-1+deb10u3", + "newRelease": "", + "arch": "", + "repository": "" + }, + "libssh2-1": { + "name": "libssh2-1", + "version": "1.8.0-2.1", + "release": "", + "newVersion": "1.8.0-2.1", + "newRelease": "", + "arch": "", + "repository": "" + }, + "libssl1.1": { + "name": "libssl1.1", + "version": "1.1.1d-0+deb10u4", + "release": "", + "newVersion": "1.1.1d-0+deb10u5", + "newRelease": "", + "arch": "", + "repository": "buster/updates/main", + "AffectedProcs": [ + { + "pid": "1", + "name": "systemd" + }, + { + "pid": "225", + "name": "systemd-journal" + }, + { + "pid": "603", + "name": "sshd" + }, + { + "pid": "606", + "name": "systemd" + }, + { + "pid": "1357", + "name": "sshd" + }, + { + "pid": "421", + "name": "dhclient" + }, + { + "pid": "538", + "name": "sshd", + "listenPortStats": [ + { + "bindAddress": "*", + "port": "22", + "portReachableTo": [] + } + ] + }, + { + "pid": "1351", + "name": "sshd" + }, + { + "pid": "524", + "name": "systemd-logind" + }, + { + "pid": "343", + "name": "dhclient" + }, + { + "pid": "615", + "name": "sshd" + }, + { + "pid": "240", + "name": "systemd-udevd" + }, + { + "pid": "607", + "name": "(sd-pam)" + } + ] + }, + "libstdc++6": { + "name": "libstdc++6", + "version": "8.3.0-6", + "release": "", + "newVersion": "8.3.0-6", + "newRelease": "", + "arch": "", + "repository": "", + "AffectedProcs": [ + { + "pid": "536", + "name": "unattended-upgr" + } + ] + }, + "libsystemd0": { + "name": "libsystemd0", + "version": "241-7~deb10u6", + "release": "", + "newVersion": "241-7~deb10u6", + "newRelease": "", + "arch": "", + "repository": "" + }, + "libtasn1-6": { + "name": "libtasn1-6", + "version": "4.13-3", + "release": "", + "newVersion": "4.13-3", + "newRelease": "", + "arch": "", + "repository": "", + "AffectedProcs": [ + { + "pid": "2627", + "name": "exim4", + "listenPortStats": [ + { + "bindAddress": "127.0.0.1", + "port": "25", + "portReachableTo": [] + }, + { + "bindAddress": "[::1]", + "port": "25", + "portReachableTo": [] + } + ] + } + ] + }, + "libtinfo6": { + "name": "libtinfo6", + "version": "6.1+20181013-2+deb10u2", + "release": "", + "newVersion": "6.1+20181013-2+deb10u2", + "newRelease": "", + "arch": "", + "repository": "" + }, + "libuchardet0": { + "name": "libuchardet0", + "version": "0.0.6-3", + "release": "", + "newVersion": "0.0.6-3", + "newRelease": "", + "arch": "", + "repository": "" + }, + "libudev1": { + "name": "libudev1", + "version": "241-7~deb10u6", + "release": "", + "newVersion": "241-7~deb10u6", + "newRelease": "", + "arch": "", + "repository": "" + }, + "libunbound8": { + "name": "libunbound8", + "version": "1.9.0-2+deb10u2", + "release": "", + "newVersion": "1.9.0-2+deb10u2", + "newRelease": "", + "arch": "", + "repository": "", + "AffectedProcs": [ + { + "pid": "2627", + "name": "exim4", + "listenPortStats": [ + { + "bindAddress": "127.0.0.1", + "port": "25", + "portReachableTo": [] + }, + { + "bindAddress": "[::1]", + "port": "25", + "portReachableTo": [] + } + ] + } + ] + }, + "libunistring2": { + "name": "libunistring2", + "version": "0.9.10-1", + "release": "", + "newVersion": "0.9.10-1", + "newRelease": "", + "arch": "", + "repository": "", + "AffectedProcs": [ + { + "pid": "2627", + "name": "exim4", + "listenPortStats": [ + { + "bindAddress": "127.0.0.1", + "port": "25", + "portReachableTo": [] + }, + { + "bindAddress": "[::1]", + "port": "25", + "portReachableTo": [] + } + ] + } + ] + }, + "libutempter0": { + "name": "libutempter0", + "version": "1.1.6-3", + "release": "", + "newVersion": "1.1.6-3", + "newRelease": "", + "arch": "", + "repository": "" + }, + "libuuid1": { + "name": "libuuid1", + "version": "2.33.1-0.1", + "release": "", + "newVersion": "2.33.1-0.1", + "newRelease": "", + "arch": "", + "repository": "" + }, + "libwrap0": { + "name": "libwrap0", + "version": "7.6.q-28", + "release": "", + "newVersion": "7.6.q-28", + "newRelease": "", + "arch": "", + "repository": "" + }, + "libxml2": { + "name": "libxml2", + "version": "2.9.4+dfsg1-7+deb10u1", + "release": "", + "newVersion": "2.9.4+dfsg1-7+deb10u1", + "newRelease": "", + "arch": "", + "repository": "" + }, + "libxtables12": { + "name": "libxtables12", + "version": "1.8.2-4", + "release": "", + "newVersion": "1.8.2-4", + "newRelease": "", + "arch": "", + "repository": "" + }, + "libyaml-0-2": { + "name": "libyaml-0-2", + "version": "0.2.1-1", + "release": "", + "newVersion": "0.2.1-1", + "newRelease": "", + "arch": "", + "repository": "" + }, + "libzstd1": { + "name": "libzstd1", + "version": "1.3.8+dfsg-3", + "release": "", + "newVersion": "1.3.8+dfsg-3+deb10u2", + "newRelease": "", + "arch": "", + "repository": "buster/updates/main", + "AffectedProcs": [ + { + "pid": "536", + "name": "unattended-upgr" + } + ] + }, + "linux-base": { + "name": "linux-base", + "version": "4.6", + "release": "", + "newVersion": "4.6", + "newRelease": "", + "arch": "", + "repository": "" + }, + "linux-image-4.19.0-14-cloud-amd64": { + "name": "linux-image-4.19.0-14-cloud-amd64", + "version": "4.19.171-2", + "release": "", + "newVersion": "4.19.171-2", + "newRelease": "", + "arch": "", + "repository": "" + }, + "linux-image-cloud-amd64": { + "name": "linux-image-cloud-amd64", + "version": "4.19+105+deb10u9", + "release": "", + "newVersion": "4.19+105+deb10u9", + "newRelease": "", + "arch": "", + "repository": "" + }, + "locales": { + "name": "locales", + "version": "2.28-10", + "release": "", + "newVersion": "2.28-10", + "newRelease": "", + "arch": "", + "repository": "" + }, + "login": { + "name": "login", + "version": "1:4.5-1.1", + "release": "", + "newVersion": "1:4.5-1.1", + "newRelease": "", + "arch": "", + "repository": "" + }, + "logrotate": { + "name": "logrotate", + "version": "3.14.0-4", + "release": "", + "newVersion": "3.14.0-4", + "newRelease": "", + "arch": "", + "repository": "" + }, + "lsb-base": { + "name": "lsb-base", + "version": "10.2019051400", + "release": "", + "newVersion": "10.2019051400", + "newRelease": "", + "arch": "", + "repository": "" + }, + "lsb-release": { + "name": "lsb-release", + "version": "10.2019051400", + "release": "", + "newVersion": "10.2019051400", + "newRelease": "", + "arch": "", + "repository": "" + }, + "lsof": { + "name": "lsof", + "version": "4.91+dfsg-1", + "release": "", + "newVersion": "4.91+dfsg-1", + "newRelease": "", + "arch": "", + "repository": "" + }, + "mailutils": { + "name": "mailutils", + "version": "1:3.5-4", + "release": "", + "newVersion": "1:3.5-4", + "newRelease": "", + "arch": "", + "repository": "" + }, + "mailutils-common": { + "name": "mailutils-common", + "version": "1:3.5-4", + "release": "", + "newVersion": "1:3.5-4", + "newRelease": "", + "arch": "", + "repository": "" + }, + "man-db": { + "name": "man-db", + "version": "2.8.5-2", + "release": "", + "newVersion": "2.8.5-2", + "newRelease": "", + "arch": "", + "repository": "" + }, + "manpages": { + "name": "manpages", + "version": "4.16-2", + "release": "", + "newVersion": "4.16-2", + "newRelease": "", + "arch": "", + "repository": "" + }, + "mariadb-common": { + "name": "mariadb-common", + "version": "1:10.3.27-0+deb10u1", + "release": "", + "newVersion": "1:10.3.27-0+deb10u1", + "newRelease": "", + "arch": "", + "repository": "" + }, + "mawk": { + "name": "mawk", + "version": "1.3.3-17+b3", + "release": "", + "newVersion": "1.3.3-17+b3", + "newRelease": "", + "arch": "", + "repository": "" + }, + "mime-support": { + "name": "mime-support", + "version": "3.62", + "release": "", + "newVersion": "3.62", + "newRelease": "", + "arch": "", + "repository": "" + }, + "mount": { + "name": "mount", + "version": "2.33.1-0.1", + "release": "", + "newVersion": "2.33.1-0.1", + "newRelease": "", + "arch": "", + "repository": "" + }, + "mysql-common": { + "name": "mysql-common", + "version": "5.8+1.0.5", + "release": "", + "newVersion": "5.8+1.0.5", + "newRelease": "", + "arch": "", + "repository": "" + }, + "nano": { + "name": "nano", + "version": "3.2-3", + "release": "", + "newVersion": "3.2-3", + "newRelease": "", + "arch": "", + "repository": "" + }, + "ncurses-base": { + "name": "ncurses-base", + "version": "6.1+20181013-2+deb10u2", + "release": "", + "newVersion": "6.1+20181013-2+deb10u2", + "newRelease": "", + "arch": "", + "repository": "" + }, + "ncurses-bin": { + "name": "ncurses-bin", + "version": "6.1+20181013-2+deb10u2", + "release": "", + "newVersion": "6.1+20181013-2+deb10u2", + "newRelease": "", + "arch": "", + "repository": "" + }, + "net-tools": { + "name": "net-tools", + "version": "1.60+git20180626.aebd88e-1", + "release": "", + "newVersion": "1.60+git20180626.aebd88e-1", + "newRelease": "", + "arch": "", + "repository": "" + }, + "netbase": { + "name": "netbase", + "version": "5.6", + "release": "", + "newVersion": "5.6", + "newRelease": "", + "arch": "", + "repository": "" + }, + "openssh-client": { + "name": "openssh-client", + "version": "1:7.9p1-10+deb10u2", + "release": "", + "newVersion": "1:7.9p1-10+deb10u2", + "newRelease": "", + "arch": "", + "repository": "" + }, + "openssh-server": { + "name": "openssh-server", + "version": "1:7.9p1-10+deb10u2", + "release": "", + "newVersion": "1:7.9p1-10+deb10u2", + "newRelease": "", + "arch": "", + "repository": "", + "AffectedProcs": [ + { + "pid": "603", + "name": "sshd" + }, + { + "pid": "1357", + "name": "sshd" + }, + { + "pid": "538", + "name": "sshd", + "listenPortStats": [ + { + "bindAddress": "*", + "port": "22", + "portReachableTo": [] + } + ] + }, + { + "pid": "1351", + "name": "sshd" + }, + { + "pid": "615", + "name": "sshd" + } + ] + }, + "openssh-sftp-server": { + "name": "openssh-sftp-server", + "version": "1:7.9p1-10+deb10u2", + "release": "", + "newVersion": "1:7.9p1-10+deb10u2", + "newRelease": "", + "arch": "", + "repository": "" + }, + "openssl": { + "name": "openssl", + "version": "1.1.1d-0+deb10u4", + "release": "", + "newVersion": "1.1.1d-0+deb10u5", + "newRelease": "", + "arch": "", + "repository": "buster/updates/main" + }, + "passwd": { + "name": "passwd", + "version": "1:4.5-1.1", + "release": "", + "newVersion": "1:4.5-1.1", + "newRelease": "", + "arch": "", + "repository": "" + }, + "pciutils": { + "name": "pciutils", + "version": "1:3.5.2-1", + "release": "", + "newVersion": "1:3.5.2-1", + "newRelease": "", + "arch": "", + "repository": "" + }, + "perl": { + "name": "perl", + "version": "5.28.1-6+deb10u1", + "release": "", + "newVersion": "5.28.1-6+deb10u1", + "newRelease": "", + "arch": "", + "repository": "" + }, + "perl-base": { + "name": "perl-base", + "version": "5.28.1-6+deb10u1", + "release": "", + "newVersion": "5.28.1-6+deb10u1", + "newRelease": "", + "arch": "", + "repository": "" + }, + "perl-modules-5.28": { + "name": "perl-modules-5.28", + "version": "5.28.1-6+deb10u1", + "release": "", + "newVersion": "5.28.1-6+deb10u1", + "newRelease": "", + "arch": "", + "repository": "" + }, + "pinentry-curses": { + "name": "pinentry-curses", + "version": "1.1.0-2", + "release": "", + "newVersion": "1.1.0-2", + "newRelease": "", + "arch": "", + "repository": "" + }, + "popularity-contest": { + "name": "popularity-contest", + "version": "1.67", + "release": "", + "newVersion": "1.67", + "newRelease": "", + "arch": "", + "repository": "" + }, + "procps": { + "name": "procps", + "version": "2:3.3.15-2", + "release": "", + "newVersion": "2:3.3.15-2", + "newRelease": "", + "arch": "", + "repository": "" + }, + "psmisc": { + "name": "psmisc", + "version": "23.2-1", + "release": "", + "newVersion": "23.2-1", + "newRelease": "", + "arch": "", + "repository": "" + }, + "publicsuffix": { + "name": "publicsuffix", + "version": "20190415.1030-1", + "release": "", + "newVersion": "20190415.1030-1", + "newRelease": "", + "arch": "", + "repository": "" + }, + "python": { + "name": "python", + "version": "2.7.16-1", + "release": "", + "newVersion": "2.7.16-1", + "newRelease": "", + "arch": "", + "repository": "" + }, + "python-apt-common": { + "name": "python-apt-common", + "version": "1.8.4.3", + "release": "", + "newVersion": "1.8.4.3", + "newRelease": "", + "arch": "", + "repository": "" + }, + "python-boto": { + "name": "python-boto", + "version": "2.44.0-1.1", + "release": "", + "newVersion": "2.44.0-1.1", + "newRelease": "", + "arch": "", + "repository": "" + }, + "python-certifi": { + "name": "python-certifi", + "version": "2018.8.24-1", + "release": "", + "newVersion": "2018.8.24-1", + "newRelease": "", + "arch": "", + "repository": "" + }, + "python-chardet": { + "name": "python-chardet", + "version": "3.0.4-3", + "release": "", + "newVersion": "3.0.4-3", + "newRelease": "", + "arch": "", + "repository": "" + }, + "python-idna": { + "name": "python-idna", + "version": "2.6-1", + "release": "", + "newVersion": "2.6-1", + "newRelease": "", + "arch": "", + "repository": "" + }, + "python-minimal": { + "name": "python-minimal", + "version": "2.7.16-1", + "release": "", + "newVersion": "2.7.16-1", + "newRelease": "", + "arch": "", + "repository": "" + }, + "python-pkg-resources": { + "name": "python-pkg-resources", + "version": "40.8.0-1", + "release": "", + "newVersion": "40.8.0-1", + "newRelease": "", + "arch": "", + "repository": "" + }, + "python-requests": { + "name": "python-requests", + "version": "2.21.0-1", + "release": "", + "newVersion": "2.21.0-1", + "newRelease": "", + "arch": "", + "repository": "" + }, + "python-six": { + "name": "python-six", + "version": "1.12.0-1", + "release": "", + "newVersion": "1.12.0-1", + "newRelease": "", + "arch": "", + "repository": "" + }, + "python-urllib3": { + "name": "python-urllib3", + "version": "1.24.1-1", + "release": "", + "newVersion": "1.24.1-1", + "newRelease": "", + "arch": "", + "repository": "" + }, + "python2": { + "name": "python2", + "version": "2.7.16-1", + "release": "", + "newVersion": "2.7.16-1", + "newRelease": "", + "arch": "", + "repository": "" + }, + "python2-minimal": { + "name": "python2-minimal", + "version": "2.7.16-1", + "release": "", + "newVersion": "2.7.16-1", + "newRelease": "", + "arch": "", + "repository": "" + }, + "python2.7": { + "name": "python2.7", + "version": "2.7.16-2+deb10u1", + "release": "", + "newVersion": "2.7.16-2+deb10u1", + "newRelease": "", + "arch": "", + "repository": "" + }, + "python2.7-minimal": { + "name": "python2.7-minimal", + "version": "2.7.16-2+deb10u1", + "release": "", + "newVersion": "2.7.16-2+deb10u1", + "newRelease": "", + "arch": "", + "repository": "" + }, + "python3": { + "name": "python3", + "version": "3.7.3-1", + "release": "", + "newVersion": "3.7.3-1", + "newRelease": "", + "arch": "", + "repository": "" + }, + "python3-apt": { + "name": "python3-apt", + "version": "1.8.4.3", + "release": "", + "newVersion": "1.8.4.3", + "newRelease": "", + "arch": "", + "repository": "", + "AffectedProcs": [ + { + "pid": "536", + "name": "unattended-upgr" + } + ] + }, + "python3-asn1crypto": { + "name": "python3-asn1crypto", + "version": "0.24.0-1", + "release": "", + "newVersion": "0.24.0-1", + "newRelease": "", + "arch": "", + "repository": "" + }, + "python3-blinker": { + "name": "python3-blinker", + "version": "1.4+dfsg1-0.2", + "release": "", + "newVersion": "1.4+dfsg1-0.2", + "newRelease": "", + "arch": "", + "repository": "" + }, + "python3-boto": { + "name": "python3-boto", + "version": "2.44.0-1.1", + "release": "", + "newVersion": "2.44.0-1.1", + "newRelease": "", + "arch": "", + "repository": "" + }, + "python3-botocore": { + "name": "python3-botocore", + "version": "1.12.103+repack-1", + "release": "", + "newVersion": "1.12.103+repack-1", + "newRelease": "", + "arch": "", + "repository": "" + }, + "python3-certifi": { + "name": "python3-certifi", + "version": "2018.8.24-1", + "release": "", + "newVersion": "2018.8.24-1", + "newRelease": "", + "arch": "", + "repository": "" + }, + "python3-cffi-backend": { + "name": "python3-cffi-backend", + "version": "1.12.2-1", + "release": "", + "newVersion": "1.12.2-1", + "newRelease": "", + "arch": "", + "repository": "" + }, + "python3-chardet": { + "name": "python3-chardet", + "version": "3.0.4-3", + "release": "", + "newVersion": "3.0.4-3", + "newRelease": "", + "arch": "", + "repository": "" + }, + "python3-colorama": { + "name": "python3-colorama", + "version": "0.3.7-1", + "release": "", + "newVersion": "0.3.7-1", + "newRelease": "", + "arch": "", + "repository": "" + }, + "python3-configobj": { + "name": "python3-configobj", + "version": "5.0.6-3", + "release": "", + "newVersion": "5.0.6-3", + "newRelease": "", + "arch": "", + "repository": "" + }, + "python3-cryptography": { + "name": "python3-cryptography", + "version": "2.6.1-3+deb10u2", + "release": "", + "newVersion": "2.6.1-3+deb10u2", + "newRelease": "", + "arch": "", + "repository": "" + }, + "python3-dateutil": { + "name": "python3-dateutil", + "version": "2.7.3-3", + "release": "", + "newVersion": "2.7.3-3", + "newRelease": "", + "arch": "", + "repository": "" + }, + "python3-dbus": { + "name": "python3-dbus", + "version": "1.2.8-3", + "release": "", + "newVersion": "1.2.8-3", + "newRelease": "", + "arch": "", + "repository": "", + "AffectedProcs": [ + { + "pid": "536", + "name": "unattended-upgr" + } + ] + }, + "python3-debconf": { + "name": "python3-debconf", + "version": "1.5.71", + "release": "", + "newVersion": "1.5.71", + "newRelease": "", + "arch": "", + "repository": "" + }, + "python3-debian": { + "name": "python3-debian", + "version": "0.1.35", + "release": "", + "newVersion": "0.1.35", + "newRelease": "", + "arch": "", + "repository": "" + }, + "python3-debianbts": { + "name": "python3-debianbts", + "version": "2.8.2", + "release": "", + "newVersion": "2.8.2", + "newRelease": "", + "arch": "", + "repository": "" + }, + "python3-distro-info": { + "name": "python3-distro-info", + "version": "0.21", + "release": "", + "newVersion": "0.21", + "newRelease": "", + "arch": "", + "repository": "" + }, + "python3-docutils": { + "name": "python3-docutils", + "version": "0.14+dfsg-4", + "release": "", + "newVersion": "0.14+dfsg-4", + "newRelease": "", + "arch": "", + "repository": "" + }, + "python3-httplib2": { + "name": "python3-httplib2", + "version": "0.11.3-2", + "release": "", + "newVersion": "0.11.3-2", + "newRelease": "", + "arch": "", + "repository": "" + }, + "python3-idna": { + "name": "python3-idna", + "version": "2.6-1", + "release": "", + "newVersion": "2.6-1", + "newRelease": "", + "arch": "", + "repository": "" + }, + "python3-jinja2": { + "name": "python3-jinja2", + "version": "2.10-2", + "release": "", + "newVersion": "2.10-2", + "newRelease": "", + "arch": "", + "repository": "" + }, + "python3-jmespath": { + "name": "python3-jmespath", + "version": "0.9.4-1", + "release": "", + "newVersion": "0.9.4-1", + "newRelease": "", + "arch": "", + "repository": "" + }, + "python3-json-pointer": { + "name": "python3-json-pointer", + "version": "1.10-1", + "release": "", + "newVersion": "1.10-1", + "newRelease": "", + "arch": "", + "repository": "" + }, + "python3-jsonpatch": { + "name": "python3-jsonpatch", + "version": "1.21-1", + "release": "", + "newVersion": "1.21-1", + "newRelease": "", + "arch": "", + "repository": "" + }, + "python3-jsonschema": { + "name": "python3-jsonschema", + "version": "2.6.0-4", + "release": "", + "newVersion": "2.6.0-4", + "newRelease": "", + "arch": "", + "repository": "" + }, + "python3-jwt": { + "name": "python3-jwt", + "version": "1.7.0-2", + "release": "", + "newVersion": "1.7.0-2", + "newRelease": "", + "arch": "", + "repository": "" + }, + "python3-markupsafe": { + "name": "python3-markupsafe", + "version": "1.1.0-1", + "release": "", + "newVersion": "1.1.0-1", + "newRelease": "", + "arch": "", + "repository": "" + }, + "python3-minimal": { + "name": "python3-minimal", + "version": "3.7.3-1", + "release": "", + "newVersion": "3.7.3-1", + "newRelease": "", + "arch": "", + "repository": "" + }, + "python3-oauthlib": { + "name": "python3-oauthlib", + "version": "2.1.0-1", + "release": "", + "newVersion": "2.1.0-1", + "newRelease": "", + "arch": "", + "repository": "" + }, + "python3-pkg-resources": { + "name": "python3-pkg-resources", + "version": "40.8.0-1", + "release": "", + "newVersion": "40.8.0-1", + "newRelease": "", + "arch": "", + "repository": "" + }, + "python3-pyasn1": { + "name": "python3-pyasn1", + "version": "0.4.2-3", + "release": "", + "newVersion": "0.4.2-3", + "newRelease": "", + "arch": "", + "repository": "" + }, + "python3-pycurl": { + "name": "python3-pycurl", + "version": "7.43.0.2-0.1", + "release": "", + "newVersion": "7.43.0.2-0.1", + "newRelease": "", + "arch": "", + "repository": "" + }, + "python3-pysimplesoap": { + "name": "python3-pysimplesoap", + "version": "1.16.2-1", + "release": "", + "newVersion": "1.16.2-1", + "newRelease": "", + "arch": "", + "repository": "" + }, + "python3-reportbug": { + "name": "python3-reportbug", + "version": "7.5.3~deb10u1", + "release": "", + "newVersion": "7.5.3~deb10u1", + "newRelease": "", + "arch": "", + "repository": "" + }, + "python3-requests": { + "name": "python3-requests", + "version": "2.21.0-1", + "release": "", + "newVersion": "2.21.0-1", + "newRelease": "", + "arch": "", + "repository": "" + }, + "python3-roman": { + "name": "python3-roman", + "version": "2.0.0-3", + "release": "", + "newVersion": "2.0.0-3", + "newRelease": "", + "arch": "", + "repository": "" + }, + "python3-rsa": { + "name": "python3-rsa", + "version": "4.0-2", + "release": "", + "newVersion": "4.0-2", + "newRelease": "", + "arch": "", + "repository": "" + }, + "python3-s3transfer": { + "name": "python3-s3transfer", + "version": "0.2.0-1", + "release": "", + "newVersion": "0.2.0-1", + "newRelease": "", + "arch": "", + "repository": "" + }, + "python3-six": { + "name": "python3-six", + "version": "1.12.0-1", + "release": "", + "newVersion": "1.12.0-1", + "newRelease": "", + "arch": "", + "repository": "" + }, + "python3-urllib3": { + "name": "python3-urllib3", + "version": "1.24.1-1", + "release": "", + "newVersion": "1.24.1-1", + "newRelease": "", + "arch": "", + "repository": "" + }, + "python3-yaml": { + "name": "python3-yaml", + "version": "3.13-2", + "release": "", + "newVersion": "3.13-2", + "newRelease": "", + "arch": "", + "repository": "" + }, + "python3.7": { + "name": "python3.7", + "version": "3.7.3-2+deb10u2", + "release": "", + "newVersion": "3.7.3-2+deb10u2", + "newRelease": "", + "arch": "", + "repository": "" + }, + "python3.7-minimal": { + "name": "python3.7-minimal", + "version": "3.7.3-2+deb10u2", + "release": "", + "newVersion": "3.7.3-2+deb10u2", + "newRelease": "", + "arch": "", + "repository": "", + "AffectedProcs": [ + { + "pid": "536", + "name": "unattended-upgr" + } + ] + }, + "qemu-utils": { + "name": "qemu-utils", + "version": "1:3.1+dfsg-8+deb10u8", + "release": "", + "newVersion": "1:3.1+dfsg-8+deb10u8", + "newRelease": "", + "arch": "", + "repository": "" + }, + "readline-common": { + "name": "readline-common", + "version": "7.0-5", + "release": "", + "newVersion": "7.0-5", + "newRelease": "", + "arch": "", + "repository": "" + }, + "reportbug": { + "name": "reportbug", + "version": "7.5.3~deb10u1", + "release": "", + "newVersion": "7.5.3~deb10u1", + "newRelease": "", + "arch": "", + "repository": "" + }, + "rsyslog": { + "name": "rsyslog", + "version": "8.1901.0-1", + "release": "", + "newVersion": "8.1901.0-1", + "newRelease": "", + "arch": "", + "repository": "", + "AffectedProcs": [ + { + "pid": "522", + "name": "rsyslogd" + } + ] + }, + "screen": { + "name": "screen", + "version": "4.6.2-3", + "release": "", + "newVersion": "4.6.2-3+deb10u1", + "newRelease": "", + "arch": "", + "repository": "buster/updates/main" + }, + "sed": { + "name": "sed", + "version": "4.7-1", + "release": "", + "newVersion": "4.7-1", + "newRelease": "", + "arch": "", + "repository": "" + }, + "sensible-utils": { + "name": "sensible-utils", + "version": "0.0.12", + "release": "", + "newVersion": "0.0.12", + "newRelease": "", + "arch": "", + "repository": "" + }, + "sgml-base": { + "name": "sgml-base", + "version": "1.29", + "release": "", + "newVersion": "1.29", + "newRelease": "", + "arch": "", + "repository": "" + }, + "socat": { + "name": "socat", + "version": "1.7.3.2-2", + "release": "", + "newVersion": "1.7.3.2-2", + "newRelease": "", + "arch": "", + "repository": "" + }, + "sudo": { + "name": "sudo", + "version": "1.8.27-1+deb10u3", + "release": "", + "newVersion": "1.8.27-1+deb10u3", + "newRelease": "", + "arch": "", + "repository": "", + "AffectedProcs": [ + { + "pid": "1361", + "name": "sudo" + } + ] + }, + "systemd": { + "name": "systemd", + "version": "241-7~deb10u6", + "release": "", + "newVersion": "241-7~deb10u6", + "newRelease": "", + "arch": "", + "repository": "" + }, + "systemd-sysv": { + "name": "systemd-sysv", + "version": "241-7~deb10u6", + "release": "", + "newVersion": "241-7~deb10u6", + "newRelease": "", + "arch": "", + "repository": "" + }, + "sysvinit-utils": { + "name": "sysvinit-utils", + "version": "2.93-8", + "release": "", + "newVersion": "2.93-8", + "newRelease": "", + "arch": "", + "repository": "" + }, + "tar": { + "name": "tar", + "version": "1.30+dfsg-6", + "release": "", + "newVersion": "1.30+dfsg-6", + "newRelease": "", + "arch": "", + "repository": "" + }, + "tcpdump": { + "name": "tcpdump", + "version": "4.9.3-1~deb10u2", + "release": "", + "newVersion": "4.9.3-1~deb10u2", + "newRelease": "", + "arch": "", + "repository": "" + }, + "traceroute": { + "name": "traceroute", + "version": "1:2.1.0-2", + "release": "", + "newVersion": "1:2.1.0-2", + "newRelease": "", + "arch": "", + "repository": "" + }, + "tzdata": { + "name": "tzdata", + "version": "2021a-0+deb10u1", + "release": "", + "newVersion": "2021a-0+deb10u1", + "newRelease": "", + "arch": "", + "repository": "" + }, + "ucf": { + "name": "ucf", + "version": "3.0038+nmu1", + "release": "", + "newVersion": "3.0038+nmu1", + "newRelease": "", + "arch": "", + "repository": "" + }, + "udev": { + "name": "udev", + "version": "241-7~deb10u6", + "release": "", + "newVersion": "241-7~deb10u6", + "newRelease": "", + "arch": "", + "repository": "" + }, + "unattended-upgrades": { + "name": "unattended-upgrades", + "version": "1.11.2", + "release": "", + "newVersion": "1.11.2", + "newRelease": "", + "arch": "", + "repository": "" + }, + "util-linux": { + "name": "util-linux", + "version": "2.33.1-0.1", + "release": "", + "newVersion": "2.33.1-0.1", + "newRelease": "", + "arch": "", + "repository": "" + }, + "uuid-runtime": { + "name": "uuid-runtime", + "version": "2.33.1-0.1", + "release": "", + "newVersion": "2.33.1-0.1", + "newRelease": "", + "arch": "", + "repository": "" + }, + "vim": { + "name": "vim", + "version": "2:8.1.0875-5", + "release": "", + "newVersion": "2:8.1.0875-5", + "newRelease": "", + "arch": "", + "repository": "" + }, + "vim-common": { + "name": "vim-common", + "version": "2:8.1.0875-5", + "release": "", + "newVersion": "2:8.1.0875-5", + "newRelease": "", + "arch": "", + "repository": "" + }, + "vim-runtime": { + "name": "vim-runtime", + "version": "2:8.1.0875-5", + "release": "", + "newVersion": "2:8.1.0875-5", + "newRelease": "", + "arch": "", + "repository": "" + }, + "vim-tiny": { + "name": "vim-tiny", + "version": "2:8.1.0875-5", + "release": "", + "newVersion": "2:8.1.0875-5", + "newRelease": "", + "arch": "", + "repository": "" + }, + "wget": { + "name": "wget", + "version": "1.20.1-1.1", + "release": "", + "newVersion": "1.20.1-1.1", + "newRelease": "", + "arch": "", + "repository": "" + }, + "whiptail": { + "name": "whiptail", + "version": "0.52.20-8", + "release": "", + "newVersion": "0.52.20-8", + "newRelease": "", + "arch": "", + "repository": "" + }, + "xml-core": { + "name": "xml-core", + "version": "0.18+nmu1", + "release": "", + "newVersion": "0.18+nmu1", + "newRelease": "", + "arch": "", + "repository": "" + }, + "xxd": { + "name": "xxd", + "version": "2:8.1.0875-5", + "release": "", + "newVersion": "2:8.1.0875-5", + "newRelease": "", + "arch": "", + "repository": "" + }, + "xz-utils": { + "name": "xz-utils", + "version": "5.2.4-1", + "release": "", + "newVersion": "5.2.4-1", + "newRelease": "", + "arch": "", + "repository": "" + }, + "zlib1g": { + "name": "zlib1g", + "version": "1:1.2.11.dfsg-1", + "release": "", + "newVersion": "1:1.2.11.dfsg-1", + "newRelease": "", + "arch": "", + "repository": "" + } + }, + "SrcPackages": { + "acl": { + "name": "acl", + "version": "2.2.53-4", + "arch": "", + "binaryNames": [ + "libacl1" + ] + }, + "argon2": { + "name": "argon2", + "version": "0~20171227-0.2", + "arch": "", + "binaryNames": [ + "libargon2-1" + ] + }, + "asn1crypto": { + "name": "asn1crypto", + "version": "0.24.0-1", + "arch": "", + "binaryNames": [ + "python3-asn1crypto" + ] + }, + "attr": { + "name": "attr", + "version": "1:2.4.48-4", + "arch": "", + "binaryNames": [ + "libattr1" + ] + }, + "audit": { + "name": "audit", + "version": "1:2.8.4-3", + "arch": "", + "binaryNames": [ + "libaudit-common", + "libaudit1" + ] + }, + "bind9": { + "name": "bind9", + "version": "1:9.11.5.P4+dfsg-5.1+deb10u2", + "arch": "", + "binaryNames": [ + "bind9-host", + "libbind9-161", + "libdns-export1104", + "libdns1104", + "libisc-export1100", + "libisc1100", + "libisccc161", + "libisccfg163", + "liblwres161" + ] + }, + "blinker": { + "name": "blinker", + "version": "1.4+dfsg1-0.2", + "arch": "", + "binaryNames": [ + "python3-blinker" + ] + }, + "cdebconf": { + "name": "cdebconf", + "version": "0.249", + "arch": "", + "binaryNames": [ + "libdebconfclient0" + ] + }, + "cdrkit": { + "name": "cdrkit", + "version": "9:1.1.11-3", + "arch": "", + "binaryNames": [ + "genisoimage" + ] + }, + "chardet": { + "name": "chardet", + "version": "3.0.4-3", + "arch": "", + "binaryNames": [ + "python-chardet", + "python3-chardet" + ] + }, + "cloud-initramfs-tools": { + "name": "cloud-initramfs-tools", + "version": "0.18.debian7", + "arch": "", + "binaryNames": [ + "cloud-initramfs-growroot" + ] + }, + "configobj": { + "name": "configobj", + "version": "5.0.6-3", + "arch": "", + "binaryNames": [ + "python3-configobj" + ] + }, + "cryptsetup": { + "name": "cryptsetup", + "version": "2:2.1.0-5+deb10u2", + "arch": "", + "binaryNames": [ + "libcryptsetup12" + ] + }, + "cyrus-sasl2": { + "name": "cyrus-sasl2", + "version": "2.1.27+dfsg-1+deb10u1", + "arch": "", + "binaryNames": [ + "libsasl2-2", + "libsasl2-modules", + "libsasl2-modules-db" + ] + }, + "db5.3": { + "name": "db5.3", + "version": "5.3.28+dfsg1-0.5", + "arch": "", + "binaryNames": [ + "libdb5.3" + ] + }, + "dbus-python": { + "name": "dbus-python", + "version": "1.2.8-3", + "arch": "", + "binaryNames": [ + "python3-dbus" + ] + }, + "distro-info": { + "name": "distro-info", + "version": "0.21", + "arch": "", + "binaryNames": [ + "python3-distro-info" + ] + }, + "efivar": { + "name": "efivar", + "version": "37-2+deb10u1", + "arch": "", + "binaryNames": [ + "libefiboot1", + "libefivar1" + ] + }, + "exim4": { + "name": "exim4", + "version": "4.92-8+deb10u4", + "arch": "", + "binaryNames": [ + "exim4-base", + "exim4-config", + "exim4-daemon-light" + ] + }, + "expat": { + "name": "expat", + "version": "2.2.6-2+deb10u1", + "arch": "", + "binaryNames": [ + "libexpat1" + ] + }, + "freetype": { + "name": "freetype", + "version": "2.9.1-3+deb10u2", + "arch": "", + "binaryNames": [ + "libfreetype6" + ] + }, + "fribidi": { + "name": "fribidi", + "version": "1.0.5-3.1+deb10u1", + "arch": "", + "binaryNames": [ + "libfribidi0" + ] + }, + "fstrm": { + "name": "fstrm", + "version": "0.4.0-1", + "arch": "", + "binaryNames": [ + "libfstrm0" + ] + }, + "fuse": { + "name": "fuse", + "version": "2.9.9-1+deb10u1", + "arch": "", + "binaryNames": [ + "libfuse2" + ] + }, + "gcc-8": { + "name": "gcc-8", + "version": "8.3.0-6", + "arch": "", + "binaryNames": [ + "gcc-8-base", + "libgcc1", + "libstdc++6" + ] + }, + "gdbm": { + "name": "gdbm", + "version": "1.18.1-4", + "arch": "", + "binaryNames": [ + "libgdbm-compat4", + "libgdbm6" + ] + }, + "geoip": { + "name": "geoip", + "version": "1.6.12-1", + "arch": "", + "binaryNames": [ + "libgeoip1" + ] + }, + "gettext": { + "name": "gettext", + "version": "0.19.8.1-9", + "arch": "", + "binaryNames": [ + "gettext-base" + ] + }, + "glib2.0": { + "name": "glib2.0", + "version": "2.58.3-2+deb10u2", + "arch": "", + "binaryNames": [ + "libglib2.0-0" + ] + }, + "glibc": { + "name": "glibc", + "version": "2.28-10", + "arch": "", + "binaryNames": [ + "libc-bin", + "libc-l10n", + "libc6", + "locales" + ] + }, + "gmp": { + "name": "gmp", + "version": "2:6.1.2+dfsg-4", + "arch": "", + "binaryNames": [ + "libgmp10" + ] + }, + "gnupg2": { + "name": "gnupg2", + "version": "2.2.12-1+deb10u1", + "arch": "", + "binaryNames": [ + "dirmngr", + "gnupg", + "gnupg-l10n", + "gnupg-utils", + "gpg", + "gpg-agent", + "gpg-wks-client", + "gpg-wks-server", + "gpgconf", + "gpgsm", + "gpgv" + ] + }, + "gnutls28": { + "name": "gnutls28", + "version": "3.6.7-4+deb10u6", + "arch": "", + "binaryNames": [ + "libgnutls-dane0", + "libgnutls30" + ] + }, + "gpm": { + "name": "gpm", + "version": "1.20.7-5", + "arch": "", + "binaryNames": [ + "libgpm2" + ] + }, + "groff": { + "name": "groff", + "version": "1.22.4-3", + "arch": "", + "binaryNames": [ + "groff-base" + ] + }, + "grub-cloud": { + "name": "grub-cloud", + "version": "0.0.4", + "arch": "", + "binaryNames": [ + "grub-cloud-amd64" + ] + }, + "grub2": { + "name": "grub2", + "version": "2.02+dfsg1-20+deb10u3", + "arch": "", + "binaryNames": [ + "grub-common", + "grub-efi-amd64-bin", + "grub-pc-bin", + "grub2-common" + ] + }, + "gsasl": { + "name": "gsasl", + "version": "1.8.0-8", + "arch": "", + "binaryNames": [ + "libgsasl7" + ] + }, + "guile-2.2": { + "name": "guile-2.2", + "version": "2.2.4+1-2+deb10u1", + "arch": "", + "binaryNames": [ + "guile-2.2-libs" + ] + }, + "icu": { + "name": "icu", + "version": "63.1-6+deb10u1", + "arch": "", + "binaryNames": [ + "libicu63" + ] + }, + "iputils": { + "name": "iputils", + "version": "3:20180629-2+deb10u1", + "arch": "", + "binaryNames": [ + "iputils-ping" + ] + }, + "isc-dhcp": { + "name": "isc-dhcp", + "version": "4.4.1-2", + "arch": "", + "binaryNames": [ + "isc-dhcp-client" + ] + }, + "jinja2": { + "name": "jinja2", + "version": "2.10-2", + "arch": "", + "binaryNames": [ + "python3-jinja2" + ] + }, + "json-c": { + "name": "json-c", + "version": "0.12.1+ds-2+deb10u1", + "arch": "", + "binaryNames": [ + "libjson-c3" + ] + }, + "keyutils": { + "name": "keyutils", + "version": "1.6-6", + "arch": "", + "binaryNames": [ + "libkeyutils1" + ] + }, + "klibc": { + "name": "klibc", + "version": "2.0.6-1", + "arch": "", + "binaryNames": [ + "klibc-utils", + "libklibc" + ] + }, + "krb5": { + "name": "krb5", + "version": "1.17-3+deb10u1", + "arch": "", + "binaryNames": [ + "krb5-locales", + "libgssapi-krb5-2", + "libk5crypto3", + "libkrb5-3", + "libkrb5support0" + ] + }, + "kyotocabinet": { + "name": "kyotocabinet", + "version": "1.2.76-4.2", + "arch": "", + "binaryNames": [ + "libkyotocabinet16v5" + ] + }, + "libaio": { + "name": "libaio", + "version": "0.3.112-3", + "arch": "", + "binaryNames": [ + "libaio1" + ] + }, + "libassuan": { + "name": "libassuan", + "version": "2.5.2-1", + "arch": "", + "binaryNames": [ + "libassuan0" + ] + }, + "libbsd": { + "name": "libbsd", + "version": "0.9.1-2", + "arch": "", + "binaryNames": [ + "libbsd0" + ] + }, + "libcap-ng": { + "name": "libcap-ng", + "version": "0.7.9-2", + "arch": "", + "binaryNames": [ + "libcap-ng0" + ] + }, + "libedit": { + "name": "libedit", + "version": "3.1-20181209-1", + "arch": "", + "binaryNames": [ + "libedit2" + ] + }, + "libestr": { + "name": "libestr", + "version": "0.1.10-2.1", + "arch": "", + "binaryNames": [ + "libestr0" + ] + }, + "libevent": { + "name": "libevent", + "version": "2.1.8-stable-4", + "arch": "", + "binaryNames": [ + "libevent-2.1-6" + ] + }, + "libfastjson": { + "name": "libfastjson", + "version": "0.99.8-2", + "arch": "", + "binaryNames": [ + "libfastjson4" + ] + }, + "libffi": { + "name": "libffi", + "version": "3.2.1-9", + "arch": "", + "binaryNames": [ + "libffi6" + ] + }, + "libgc": { + "name": "libgc", + "version": "1:7.6.4-0.4", + "arch": "", + "binaryNames": [ + "libgc1c2" + ] + }, + "libgpg-error": { + "name": "libgpg-error", + "version": "1.35-1", + "arch": "", + "binaryNames": [ + "libgpg-error0" + ] + }, + "libidn": { + "name": "libidn", + "version": "1.33-2.2", + "arch": "", + "binaryNames": [ + "libidn11" + ] + }, + "libidn2": { + "name": "libidn2", + "version": "2.0.5-1+deb10u1", + "arch": "", + "binaryNames": [ + "libidn2-0" + ] + }, + "libksba": { + "name": "libksba", + "version": "1.3.5-2", + "arch": "", + "binaryNames": [ + "libksba8" + ] + }, + "liblognorm": { + "name": "liblognorm", + "version": "2.0.5-1", + "arch": "", + "binaryNames": [ + "liblognorm5" + ] + }, + "libmnl": { + "name": "libmnl", + "version": "1.0.4-2", + "arch": "", + "binaryNames": [ + "libmnl0" + ] + }, + "libnetfilter-conntrack": { + "name": "libnetfilter-conntrack", + "version": "1.0.7-1", + "arch": "", + "binaryNames": [ + "libnetfilter-conntrack3" + ] + }, + "libnfnetlink": { + "name": "libnfnetlink", + "version": "1.0.1-3", + "arch": "", + "binaryNames": [ + "libnfnetlink0" + ] + }, + "libnftnl": { + "name": "libnftnl", + "version": "1.1.2-2", + "arch": "", + "binaryNames": [ + "libnftnl11" + ] + }, + "libntlm": { + "name": "libntlm", + "version": "1.5-1+deb10u1", + "arch": "", + "binaryNames": [ + "libntlm0" + ] + }, + "libpcap": { + "name": "libpcap", + "version": "1.8.1-6", + "arch": "", + "binaryNames": [ + "libpcap0.8" + ] + }, + "libpipeline": { + "name": "libpipeline", + "version": "1.5.1-2", + "arch": "", + "binaryNames": [ + "libpipeline1" + ] + }, + "libpng1.6": { + "name": "libpng1.6", + "version": "1.6.36-6", + "arch": "", + "binaryNames": [ + "libpng16-16" + ] + }, + "libpsl": { + "name": "libpsl", + "version": "0.20.2-2", + "arch": "", + "binaryNames": [ + "libpsl5" + ] + }, + "libseccomp": { + "name": "libseccomp", + "version": "2.3.3-4", + "arch": "", + "binaryNames": [ + "libseccomp2" + ] + }, + "libselinux": { + "name": "libselinux", + "version": "2.8-1", + "arch": "", + "binaryNames": [ + "libselinux1" + ] + }, + "libsemanage": { + "name": "libsemanage", + "version": "2.8-2", + "arch": "", + "binaryNames": [ + "libsemanage-common", + "libsemanage1" + ] + }, + "libsepol": { + "name": "libsepol", + "version": "2.8-1", + "arch": "", + "binaryNames": [ + "libsepol1" + ] + }, + "libssh2": { + "name": "libssh2", + "version": "1.8.0-2.1", + "arch": "", + "binaryNames": [ + "libssh2-1" + ] + }, + "libtool": { + "name": "libtool", + "version": "2.4.6-9", + "arch": "", + "binaryNames": [ + "libltdl7" + ] + }, + "libunistring": { + "name": "libunistring", + "version": "0.9.10-1", + "arch": "", + "binaryNames": [ + "libunistring2" + ] + }, + "libutempter": { + "name": "libutempter", + "version": "1.1.6-3", + "arch": "", + "binaryNames": [ + "libutempter0" + ] + }, + "libyaml": { + "name": "libyaml", + "version": "0.2.1-1", + "arch": "", + "binaryNames": [ + "libyaml-0-2" + ] + }, + "libzstd": { + "name": "libzstd", + "version": "1.3.8+dfsg-3", + "arch": "", + "binaryNames": [ + "libzstd1" + ] + }, + "linux-latest": { + "name": "linux-latest", + "version": "105+deb10u9", + "arch": "", + "binaryNames": [ + "linux-image-cloud-amd64" + ] + }, + "linux-signed-amd64": { + "name": "linux-signed-amd64", + "version": "4.19.171+2", + "arch": "", + "binaryNames": [ + "linux-image-4.19.0-14-cloud-amd64" + ] + }, + "lmdb": { + "name": "lmdb", + "version": "0.9.22-1", + "arch": "", + "binaryNames": [ + "liblmdb0" + ] + }, + "lsb": { + "name": "lsb", + "version": "10.2019051400", + "arch": "", + "binaryNames": [ + "lsb-base", + "lsb-release" + ] + }, + "lvm2": { + "name": "lvm2", + "version": "2.03.02-3", + "arch": "", + "binaryNames": [ + "dmsetup", + "libdevmapper1.02.1" + ] + }, + "lz4": { + "name": "lz4", + "version": "1.8.3-1", + "arch": "", + "binaryNames": [ + "liblz4-1" + ] + }, + "lzo2": { + "name": "lzo2", + "version": "2.10-0.1", + "arch": "", + "binaryNames": [ + "liblzo2-2" + ] + }, + "mariadb-10.3": { + "name": "mariadb-10.3", + "version": "1:10.3.27-0+deb10u1", + "arch": "", + "binaryNames": [ + "libmariadb3", + "mariadb-common" + ] + }, + "markupsafe": { + "name": "markupsafe", + "version": "1.1.0-1", + "arch": "", + "binaryNames": [ + "python3-markupsafe" + ] + }, + "mpdecimal": { + "name": "mpdecimal", + "version": "2.4.2-2", + "arch": "", + "binaryNames": [ + "libmpdec2" + ] + }, + "mysql-defaults": { + "name": "mysql-defaults", + "version": "1.0.5", + "arch": "", + "binaryNames": [ + "mysql-common" + ] + }, + "ncurses": { + "name": "ncurses", + "version": "6.1+20181013-2+deb10u2", + "arch": "", + "binaryNames": [ + "libncurses6", + "libncursesw6", + "libtinfo6", + "ncurses-base", + "ncurses-bin" + ] + }, + "nettle": { + "name": "nettle", + "version": "3.4.1-1", + "arch": "", + "binaryNames": [ + "libhogweed4", + "libnettle6" + ] + }, + "newt": { + "name": "newt", + "version": "0.52.20-8", + "arch": "", + "binaryNames": [ + "libnewt0.52", + "whiptail" + ] + }, + "nghttp2": { + "name": "nghttp2", + "version": "1.36.0-2+deb10u1", + "arch": "", + "binaryNames": [ + "libnghttp2-14" + ] + }, + "npth": { + "name": "npth", + "version": "1.6-1", + "arch": "", + "binaryNames": [ + "libnpth0" + ] + }, + "openldap": { + "name": "openldap", + "version": "2.4.47+dfsg-3+deb10u5", + "arch": "", + "binaryNames": [ + "libldap-2.4-2", + "libldap-common" + ] + }, + "openssh": { + "name": "openssh", + "version": "1:7.9p1-10+deb10u2", + "arch": "", + "binaryNames": [ + "openssh-client", + "openssh-server", + "openssh-sftp-server" + ] + }, + "p11-kit": { + "name": "p11-kit", + "version": "0.23.15-2+deb10u1", + "arch": "", + "binaryNames": [ + "libp11-kit0" + ] + }, + "pam": { + "name": "pam", + "version": "1.3.1-5", + "arch": "", + "binaryNames": [ + "libpam-modules", + "libpam-modules-bin", + "libpam-runtime", + "libpam0g" + ] + }, + "pcre2": { + "name": "pcre2", + "version": "10.32-5", + "arch": "", + "binaryNames": [ + "libpcre2-8-0" + ] + }, + "pcre3": { + "name": "pcre3", + "version": "2:8.39-12", + "arch": "", + "binaryNames": [ + "libpcre3" + ] + }, + "pinentry": { + "name": "pinentry", + "version": "1.1.0-2", + "arch": "", + "binaryNames": [ + "pinentry-curses" + ] + }, + "popt": { + "name": "popt", + "version": "1.16-12", + "arch": "", + "binaryNames": [ + "libpopt0" + ] + }, + "protobuf-c": { + "name": "protobuf-c", + "version": "1.3.1-1", + "arch": "", + "binaryNames": [ + "libprotobuf-c1" + ] + }, + "pyasn1": { + "name": "pyasn1", + "version": "0.4.2-3", + "arch": "", + "binaryNames": [ + "python3-pyasn1" + ] + }, + "pycurl": { + "name": "pycurl", + "version": "7.43.0.2-0.1", + "arch": "", + "binaryNames": [ + "python3-pycurl" + ] + }, + "pyjwt": { + "name": "pyjwt", + "version": "1.7.0-2", + "arch": "", + "binaryNames": [ + "python3-jwt" + ] + }, + "pysimplesoap": { + "name": "pysimplesoap", + "version": "1.16.2-1", + "arch": "", + "binaryNames": [ + "python3-pysimplesoap" + ] + }, + "python-apt": { + "name": "python-apt", + "version": "1.8.4.3", + "arch": "", + "binaryNames": [ + "python-apt-common", + "python3-apt" + ] + }, + "python-botocore": { + "name": "python-botocore", + "version": "1.12.103+repack-1", + "arch": "", + "binaryNames": [ + "python3-botocore" + ] + }, + "python-cffi": { + "name": "python-cffi", + "version": "1.12.2-1", + "arch": "", + "binaryNames": [ + "python3-cffi-backend" + ] + }, + "python-colorama": { + "name": "python-colorama", + "version": "0.3.7-1", + "arch": "", + "binaryNames": [ + "python3-colorama" + ] + }, + "python-cryptography": { + "name": "python-cryptography", + "version": "2.6.1-3+deb10u2", + "arch": "", + "binaryNames": [ + "python3-cryptography" + ] + }, + "python-dateutil": { + "name": "python-dateutil", + "version": "2.7.3-3", + "arch": "", + "binaryNames": [ + "python3-dateutil" + ] + }, + "python-debian": { + "name": "python-debian", + "version": "0.1.35", + "arch": "", + "binaryNames": [ + "python3-debian" + ] + }, + "python-debianbts": { + "name": "python-debianbts", + "version": "2.8.2", + "arch": "", + "binaryNames": [ + "python3-debianbts" + ] + }, + "python-defaults": { + "name": "python-defaults", + "version": "2.7.16-1", + "arch": "", + "binaryNames": [ + "libpython-stdlib", + "libpython2-stdlib", + "python", + "python-minimal", + "python2", + "python2-minimal" + ] + }, + "python-docutils": { + "name": "python-docutils", + "version": "0.14+dfsg-4", + "arch": "", + "binaryNames": [ + "docutils-common", + "python3-docutils" + ] + }, + "python-httplib2": { + "name": "python-httplib2", + "version": "0.11.3-2", + "arch": "", + "binaryNames": [ + "python3-httplib2" + ] + }, + "python-jmespath": { + "name": "python-jmespath", + "version": "0.9.4-1", + "arch": "", + "binaryNames": [ + "python3-jmespath" + ] + }, + "python-json-patch": { + "name": "python-json-patch", + "version": "1.21-1", + "arch": "", + "binaryNames": [ + "python3-jsonpatch" + ] + }, + "python-json-pointer": { + "name": "python-json-pointer", + "version": "1.10-1", + "arch": "", + "binaryNames": [ + "python3-json-pointer" + ] + }, + "python-jsonschema": { + "name": "python-jsonschema", + "version": "2.6.0-4", + "arch": "", + "binaryNames": [ + "python3-jsonschema" + ] + }, + "python-oauthlib": { + "name": "python-oauthlib", + "version": "2.1.0-1", + "arch": "", + "binaryNames": [ + "python3-oauthlib" + ] + }, + "python-roman": { + "name": "python-roman", + "version": "2.0.0-3", + "arch": "", + "binaryNames": [ + "python3-roman" + ] + }, + "python-rsa": { + "name": "python-rsa", + "version": "4.0-2", + "arch": "", + "binaryNames": [ + "python3-rsa" + ] + }, + "python-s3transfer": { + "name": "python-s3transfer", + "version": "0.2.0-1", + "arch": "", + "binaryNames": [ + "python3-s3transfer" + ] + }, + "python-setuptools": { + "name": "python-setuptools", + "version": "40.8.0-1", + "arch": "", + "binaryNames": [ + "python-pkg-resources", + "python3-pkg-resources" + ] + }, + "python3-defaults": { + "name": "python3-defaults", + "version": "3.7.3-1", + "arch": "", + "binaryNames": [ + "libpython3-stdlib", + "python3", + "python3-minimal" + ] + }, + "pyyaml": { + "name": "pyyaml", + "version": "3.13-2", + "arch": "", + "binaryNames": [ + "python3-yaml" + ] + }, + "qemu": { + "name": "qemu", + "version": "1:3.1+dfsg-8+deb10u8", + "arch": "", + "binaryNames": [ + "qemu-utils" + ] + }, + "readline": { + "name": "readline", + "version": "7.0-5", + "arch": "", + "binaryNames": [ + "libreadline7", + "readline-common" + ] + }, + "requests": { + "name": "requests", + "version": "2.21.0-1", + "arch": "", + "binaryNames": [ + "python-requests", + "python3-requests" + ] + }, + "rtmpdump": { + "name": "rtmpdump", + "version": "2.4+20151223.gitfa8646d.1-2", + "arch": "", + "binaryNames": [ + "librtmp1" + ] + }, + "shadow": { + "name": "shadow", + "version": "1:4.5-1.1", + "arch": "", + "binaryNames": [ + "login", + "passwd" + ] + }, + "six": { + "name": "six", + "version": "1.12.0-1", + "arch": "", + "binaryNames": [ + "python-six", + "python3-six" + ] + }, + "slang2": { + "name": "slang2", + "version": "2.3.2-2", + "arch": "", + "binaryNames": [ + "libslang2" + ] + }, + "sqlite3": { + "name": "sqlite3", + "version": "3.27.2-3+deb10u1", + "arch": "", + "binaryNames": [ + "libsqlite3-0" + ] + }, + "sysvinit": { + "name": "sysvinit", + "version": "2.93-8", + "arch": "", + "binaryNames": [ + "sysvinit-utils" + ] + }, + "tcp-wrappers": { + "name": "tcp-wrappers", + "version": "7.6.q-28", + "arch": "", + "binaryNames": [ + "libwrap0" + ] + }, + "uchardet": { + "name": "uchardet", + "version": "0.0.6-3", + "arch": "", + "binaryNames": [ + "libuchardet0" + ] + }, + "unbound": { + "name": "unbound", + "version": "1.9.0-2+deb10u2", + "arch": "", + "binaryNames": [ + "libunbound8" + ] + }, + "zlib": { + "name": "zlib", + "version": "1:1.2.11.dfsg-1", + "arch": "", + "binaryNames": [ + "zlib1g" + ] + } + }, + "constant": { + "scan": { + "logDir": "/var/log/vuls", + "resultsDir": "/home/ubuntu/go/src/github.com/future-architect/vuls/results", + "default": { + "port": "22", + "scanMode": [ + "fast" + ] + }, + "servers": { + "deb10": { + "serverName": "deb10", + "user": "admin", + "host": "52.199.253.40", + "port": "22", + "keyPath": "/home/ubuntu/.ssh/stg.pem", + "scanMode": [ + "fast-root" + ], + "wordpress": {} + } + }, + "cveDict": { + "Name": "cveDict", + "Type": "sqlite3", + "SQLite3Path": "/home/ubuntu/go/src/github.com/kotakanbe/go-cve-dictionary/cve.sqlite3", + "DebugSQL": false + }, + "ovalDict": { + "Name": "ovalDict", + "Type": "sqlite3", + "SQLite3Path": "/home/ubuntu/go/src/github.com/kotakanbe/goval-dictionary/oval.sqlite3", + "DebugSQL": false + }, + "gost": { + "Name": "gost", + "Type": "sqlite3", + "SQLite3Path": "/home/ubuntu/go/src/github.com/future-architect/vuls/gost.sqlite3", + "DebugSQL": false + }, + "exploit": { + "Name": "exploit", + "Type": "sqlite3", + "SQLite3Path": "/home/ubuntu/go/src/github.com/vulsio/go-exploitdb/go-exploitdb.sqlite3", + "DebugSQL": false + }, + "metasploit": { + "Name": "metasploit", + "Type": "sqlite3", + "SQLite3Path": "/home/ubuntu/go/src/github.com/takuzoo3868/go-msfdb/go-msfdb.sqlite3", + "DebugSQL": false + } + }, + "report": { + "default": {}, + "cveDict": { + "Name": "", + "Type": "", + "SQLite3Path": "", + "DebugSQL": false + }, + "ovalDict": { + "Name": "", + "Type": "", + "SQLite3Path": "", + "DebugSQL": false + }, + "gost": { + "Name": "", + "Type": "", + "SQLite3Path": "", + "DebugSQL": false + }, + "exploit": { + "Name": "", + "Type": "", + "SQLite3Path": "", + "DebugSQL": false + }, + "metasploit": { + "Name": "", + "Type": "", + "SQLite3Path": "", + "DebugSQL": false + } + } + } +} diff --git a/integration/data/rails.json b/integration/data/rails.json new file mode 100644 index 00000000..0288da00 --- /dev/null +++ b/integration/data/rails.json @@ -0,0 +1,131 @@ +{ + "jsonVersion": 4, + "lang": "", + "serverUUID": "", + "serverName": "rails", + "family": "pseudo", + "release": "", + "container": { + "containerID": "", + "name": "", + "image": "", + "type": "", + "uuid": "" + }, + "platform": { + "name": "other", + "instanceID": "" + }, + "scannedAt": "2021-03-31T12:22:26.428630183+09:00", + "scanMode": "fast mode", + "scannedVersion": "v0.15.9", + "scannedRevision": "build-20210331_121257_1a58c94", + "scannedBy": "dev", + "scannedVia": "pseudo", + "scannedIpv4Addrs": [ + "172.19.0.1", + "172.17.0.1", + "172.27.0.1" + ], + "reportedAt": "0001-01-01T00:00:00Z", + "reportedVersion": "", + "reportedRevision": "", + "reportedBy": "", + "errors": [], + "warnings": [], + "scannedCves": {}, + "runningKernel": { + "release": "", + "version": "", + "rebootRequired": false + }, + "packages": {}, + "config": { + "scan": { + "logDir": "/var/log/vuls", + "resultsDir": "/home/ubuntu/go/src/github.com/future-architect/vuls/results", + "default": { + "port": "22", + "scanMode": [ + "fast" + ] + }, + "servers": { + "rails": { + "serverName": "rails", + "cpeNames": [ + "cpe:/a:rubyonrails:ruby_on_rails:3.0.1" + ], + "scanMode": [ + "fast" + ], + "type": "pseudo", + "wordpress": {} + } + }, + "cveDict": { + "Name": "cveDict", + "Type": "sqlite3", + "SQLite3Path": "/home/ubuntu/go/src/github.com/kotakanbe/go-cve-dictionary/cve.sqlite3", + "DebugSQL": false + }, + "ovalDict": { + "Name": "ovalDict", + "Type": "sqlite3", + "SQLite3Path": "/home/ubuntu/go/src/github.com/kotakanbe/goval-dictionary/oval.sqlite3", + "DebugSQL": false + }, + "gost": { + "Name": "gost", + "Type": "sqlite3", + "SQLite3Path": "/home/ubuntu/go/src/github.com/future-architect/vuls/gost.sqlite3", + "DebugSQL": false + }, + "exploit": { + "Name": "exploit", + "Type": "sqlite3", + "SQLite3Path": "/home/ubuntu/go/src/github.com/vulsio/go-exploitdb/go-exploitdb.sqlite3", + "DebugSQL": false + }, + "metasploit": { + "Name": "metasploit", + "Type": "sqlite3", + "SQLite3Path": "/home/ubuntu/go/src/github.com/takuzoo3868/go-msfdb/go-msfdb.sqlite3", + "DebugSQL": false + } + }, + "report": { + "default": {}, + "cveDict": { + "Name": "", + "Type": "", + "SQLite3Path": "", + "DebugSQL": false + }, + "ovalDict": { + "Name": "", + "Type": "", + "SQLite3Path": "", + "DebugSQL": false + }, + "gost": { + "Name": "", + "Type": "", + "SQLite3Path": "", + "DebugSQL": false + }, + "exploit": { + "Name": "", + "Type": "", + "SQLite3Path": "", + "DebugSQL": false + }, + "metasploit": { + "Name": "", + "Type": "", + "SQLite3Path": "", + "DebugSQL": false + } + } + } +} \ No newline at end of file diff --git a/integration/data/rhel_71.json b/integration/data/rhel_71.json new file mode 100755 index 00000000..482ea447 --- /dev/null +++ b/integration/data/rhel_71.json @@ -0,0 +1,5158 @@ +{ + "jsonVersion": 4, + "lang": "", + "serverUUID": "", + "serverName": "rhel_71", + "family": "redhat", + "release": "7.1", + "container": { + "containerID": "", + "name": "", + "image": "", + "type": "", + "uuid": "" + }, + "platform": { + "name": "aws", + "instanceID": "i-0521f850531b377ec" + }, + "ipv4Addrs": [ + "192.168.0.194" + ], + "scannedAt": "2021-03-24T16:44:56.393272591+09:00", + "scanMode": "fast-root mode", + "scannedVersion": "v0.15.9", + "scannedRevision": "build-20210324_121008_fc3b438", + "scannedBy": "dev", + "scannedVia": "remote", + "scannedIpv4Addrs": [ + "172.21.0.1", + "172.19.0.1", + "172.18.0.1", + "172.17.0.1", + "172.20.0.1" + ], + "reportedAt": "0001-01-01T00:00:00Z", + "reportedVersion": "", + "reportedRevision": "", + "reportedBy": "", + "errors": [], + "warnings": [], + "scannedCves": {}, + "runningKernel": { + "release": "3.10.0-229.el7.x86_64", + "version": "", + "rebootRequired": false + }, + "packages": { + "NetworkManager": { + "name": "NetworkManager", + "version": "1:1.0.0", + "release": "14.git20150121.b4ea599c.el7", + "newVersion": "1:1.18.8", + "newRelease": "2.el7_9", + "arch": "x86_64", + "repository": "rhui-REGION-rhel-server-releases", + "AffectedProcs": [ + { + "pid": "458", + "name": "NetworkManager" + } + ] + }, + "NetworkManager-config-server": { + "name": "NetworkManager-config-server", + "version": "1:1.0.0", + "release": "14.git20150121.b4ea599c.el7", + "newVersion": "1:1.18.8", + "newRelease": "2.el7_9", + "arch": "x86_64", + "repository": "rhui-REGION-rhel-server-releases" + }, + "NetworkManager-libnm": { + "name": "NetworkManager-libnm", + "version": "1:1.0.0", + "release": "14.git20150121.b4ea599c.el7", + "newVersion": "1:1.18.8", + "newRelease": "2.el7_9", + "arch": "x86_64", + "repository": "rhui-REGION-rhel-server-releases" + }, + "NetworkManager-team": { + "name": "NetworkManager-team", + "version": "1:1.0.0", + "release": "14.git20150121.b4ea599c.el7", + "newVersion": "1:1.18.8", + "newRelease": "2.el7_9", + "arch": "x86_64", + "repository": "rhui-REGION-rhel-server-releases", + "AffectedProcs": [ + { + "pid": "458", + "name": "NetworkManager" + } + ] + }, + "NetworkManager-tui": { + "name": "NetworkManager-tui", + "version": "1:1.0.0", + "release": "14.git20150121.b4ea599c.el7", + "newVersion": "1:1.18.8", + "newRelease": "2.el7_9", + "arch": "x86_64", + "repository": "rhui-REGION-rhel-server-releases" + }, + "PyYAML": { + "name": "PyYAML", + "version": "3.10", + "release": "11.el7", + "newVersion": "3.10", + "newRelease": "11.el7", + "arch": "x86_64", + "repository": "" + }, + "Red_Hat_Enterprise_Linux-Release_Notes-7-en-US": { + "name": "Red_Hat_Enterprise_Linux-Release_Notes-7-en-US", + "version": "1.0", + "release": "9.el7", + "newVersion": "7", + "newRelease": "2.el7", + "arch": "noarch", + "repository": "rhui-REGION-rhel-server-releases" + }, + "acl": { + "name": "acl", + "version": "2.2.51", + "release": "12.el7", + "newVersion": "2.2.51", + "newRelease": "15.el7", + "arch": "x86_64", + "repository": "rhui-REGION-rhel-server-releases" + }, + "audit": { + "name": "audit", + "version": "2.4.1", + "release": "5.el7", + "newVersion": "2.8.5", + "newRelease": "4.el7", + "arch": "x86_64", + "repository": "rhui-REGION-rhel-server-releases", + "AffectedProcs": [ + { + "pid": "402", + "name": "auditd" + } + ] + }, + "audit-libs": { + "name": "audit-libs", + "version": "2.4.1", + "release": "5.el7", + "newVersion": "2.8.5", + "newRelease": "4.el7", + "arch": "x86_64", + "repository": "rhui-REGION-rhel-server-releases", + "AffectedProcs": [ + { + "pid": "10865", + "name": "su" + }, + { + "pid": "10864", + "name": "sudo" + }, + { + "pid": "474", + "name": "crond" + }, + { + "pid": "10842", + "name": "sshd" + }, + { + "pid": "1", + "name": "systemd" + }, + { + "pid": "10839", + "name": "sshd" + }, + { + "pid": "10698", + "name": "sshd" + }, + { + "pid": "3904", + "name": "sshd", + "listenPortStats": [ + { + "bindAddress": "*", + "port": "22", + "portReachableTo": [] + } + ] + }, + { + "pid": "469", + "name": "dbus-daemon" + }, + { + "pid": "10701", + "name": "sshd" + } + ] + }, + "audit-libs-python": { + "name": "audit-libs-python", + "version": "2.4.1", + "release": "5.el7", + "newVersion": "2.8.5", + "newRelease": "4.el7", + "arch": "x86_64", + "repository": "rhui-REGION-rhel-server-releases" + }, + "authconfig": { + "name": "authconfig", + "version": "6.2.8", + "release": "9.el7", + "newVersion": "6.2.8", + "newRelease": "30.el7", + "arch": "x86_64", + "repository": "rhui-REGION-rhel-server-releases" + }, + "avahi-autoipd": { + "name": "avahi-autoipd", + "version": "0.6.31", + "release": "14.el7", + "newVersion": "0.6.31", + "newRelease": "20.el7", + "arch": "x86_64", + "repository": "rhui-REGION-rhel-server-releases" + }, + "avahi-libs": { + "name": "avahi-libs", + "version": "0.6.31", + "release": "14.el7", + "newVersion": "0.6.31", + "newRelease": "20.el7", + "arch": "x86_64", + "repository": "rhui-REGION-rhel-server-releases" + }, + "basesystem": { + "name": "basesystem", + "version": "10.0", + "release": "7.el7", + "newVersion": "10.0", + "newRelease": "7.el7", + "arch": "noarch", + "repository": "" + }, + "bash": { + "name": "bash", + "version": "4.2.46", + "release": "12.el7", + "newVersion": "4.2.46", + "newRelease": "34.el7", + "arch": "x86_64", + "repository": "rhui-REGION-rhel-server-releases", + "AffectedProcs": [ + { + "pid": "10843", + "name": "bash" + }, + { + "pid": "10866", + "name": "bash" + } + ] + }, + "bind-libs-lite": { + "name": "bind-libs-lite", + "version": "32:9.9.4", + "release": "18.el7", + "newVersion": "32:9.11.4", + "newRelease": "26.P2.el7_9.4", + "arch": "x86_64", + "repository": "rhui-REGION-rhel-server-releases", + "AffectedProcs": [ + { + "pid": "489", + "name": "dhclient" + } + ] + }, + "bind-license": { + "name": "bind-license", + "version": "32:9.9.4", + "release": "18.el7", + "newVersion": "32:9.11.4", + "newRelease": "26.P2.el7_9.4", + "arch": "noarch", + "repository": "rhui-REGION-rhel-server-releases" + }, + "binutils": { + "name": "binutils", + "version": "2.23.52.0.1", + "release": "30.el7", + "newVersion": "2.27", + "newRelease": "44.base.el7", + "arch": "x86_64", + "repository": "rhui-REGION-rhel-server-releases" + }, + "btrfs-progs": { + "name": "btrfs-progs", + "version": "3.16.2", + "release": "1.el7", + "newVersion": "4.9.1", + "newRelease": "1.el7", + "arch": "x86_64", + "repository": "rhui-REGION-rhel-server-releases" + }, + "bzip2-libs": { + "name": "bzip2-libs", + "version": "1.0.6", + "release": "12.el7", + "newVersion": "1.0.6", + "newRelease": "13.el7", + "arch": "x86_64", + "repository": "rhui-REGION-rhel-server-releases" + }, + "ca-certificates": { + "name": "ca-certificates", + "version": "2014.1.98", + "release": "72.el7", + "newVersion": "2020.2.41", + "newRelease": "70.0.el7_8", + "arch": "noarch", + "repository": "rhui-REGION-rhel-server-releases" + }, + "checkpolicy": { + "name": "checkpolicy", + "version": "2.1.12", + "release": "6.el7", + "newVersion": "2.5", + "newRelease": "8.el7", + "arch": "x86_64", + "repository": "rhui-REGION-rhel-server-releases" + }, + "chkconfig": { + "name": "chkconfig", + "version": "1.3.61", + "release": "4.el7", + "newVersion": "1.7.6", + "newRelease": "1.el7", + "arch": "x86_64", + "repository": "rhui-REGION-rhel-server-releases" + }, + "chrony": { + "name": "chrony", + "version": "1.29.1", + "release": "1.el7", + "newVersion": "3.4", + "newRelease": "1.el7", + "arch": "x86_64", + "repository": "rhui-REGION-rhel-server-releases", + "AffectedProcs": [ + { + "pid": "473", + "name": "chronyd" + } + ] + }, + "cloud-init": { + "name": "cloud-init", + "version": "0.7.6", + "release": "2.el7", + "newVersion": "19.4", + "newRelease": "7.el7_9.4", + "arch": "x86_64", + "repository": "rhui-REGION-rhel-server-releases" + }, + "cloud-utils-growpart": { + "name": "cloud-utils-growpart", + "version": "0.27", + "release": "13.el7", + "newVersion": "0.29", + "newRelease": "5.el7", + "arch": "noarch", + "repository": "rhui-REGION-rhel-server-releases" + }, + "coreutils": { + "name": "coreutils", + "version": "8.22", + "release": "11.el7", + "newVersion": "8.22", + "newRelease": "24.el7_9.2", + "arch": "x86_64", + "repository": "rhui-REGION-rhel-server-releases" + }, + "cpio": { + "name": "cpio", + "version": "2.11", + "release": "22.el7", + "newVersion": "2.11", + "newRelease": "28.el7", + "arch": "x86_64", + "repository": "rhui-REGION-rhel-server-releases" + }, + "cracklib": { + "name": "cracklib", + "version": "2.9.0", + "release": "11.el7", + "newVersion": "2.9.0", + "newRelease": "11.el7", + "arch": "x86_64", + "repository": "", + "AffectedProcs": [ + { + "pid": "10865", + "name": "su" + }, + { + "pid": "10864", + "name": "sudo" + }, + { + "pid": "10842", + "name": "sshd" + }, + { + "pid": "10839", + "name": "sshd" + }, + { + "pid": "10698", + "name": "sshd" + }, + { + "pid": "10701", + "name": "sshd" + } + ] + }, + "cracklib-dicts": { + "name": "cracklib-dicts", + "version": "2.9.0", + "release": "11.el7", + "newVersion": "2.9.0", + "newRelease": "11.el7", + "arch": "x86_64", + "repository": "" + }, + "cronie": { + "name": "cronie", + "version": "1.4.11", + "release": "13.el7", + "newVersion": "1.4.11", + "newRelease": "23.el7", + "arch": "x86_64", + "repository": "rhui-REGION-rhel-server-releases", + "AffectedProcs": [ + { + "pid": "474", + "name": "crond" + } + ] + }, + "cronie-anacron": { + "name": "cronie-anacron", + "version": "1.4.11", + "release": "13.el7", + "newVersion": "1.4.11", + "newRelease": "23.el7", + "arch": "x86_64", + "repository": "rhui-REGION-rhel-server-releases" + }, + "crontabs": { + "name": "crontabs", + "version": "1.11", + "release": "6.20121102git.el7", + "newVersion": "1.11", + "newRelease": "6.20121102git.el7", + "arch": "noarch", + "repository": "" + }, + "cryptsetup-libs": { + "name": "cryptsetup-libs", + "version": "1.6.6", + "release": "3.el7", + "newVersion": "2.0.3", + "newRelease": "6.el7", + "arch": "x86_64", + "repository": "rhui-REGION-rhel-server-releases" + }, + "curl": { + "name": "curl", + "version": "7.29.0", + "release": "19.el7", + "newVersion": "7.29.0", + "newRelease": "59.el7_9.1", + "arch": "x86_64", + "repository": "rhui-REGION-rhel-server-releases" + }, + "cyrus-sasl-lib": { + "name": "cyrus-sasl-lib", + "version": "2.1.26", + "release": "17.el7", + "newVersion": "2.1.26", + "newRelease": "23.el7", + "arch": "x86_64", + "repository": "rhui-REGION-rhel-server-releases", + "AffectedProcs": [ + { + "pid": "10864", + "name": "sudo" + }, + { + "pid": "489", + "name": "dhclient" + }, + { + "pid": "10842", + "name": "sshd" + }, + { + "pid": "1776", + "name": "master", + "listenPortStats": [ + { + "bindAddress": "127.0.0.1", + "port": "25", + "portReachableTo": [] + }, + { + "bindAddress": "[::1]", + "port": "25", + "portReachableTo": [] + } + ] + }, + { + "pid": "1786", + "name": "qmgr" + }, + { + "pid": "1785", + "name": "pickup" + }, + { + "pid": "10839", + "name": "sshd" + }, + { + "pid": "10698", + "name": "sshd" + }, + { + "pid": "3904", + "name": "sshd", + "listenPortStats": [ + { + "bindAddress": "*", + "port": "22", + "portReachableTo": [] + } + ] + }, + { + "pid": "10701", + "name": "sshd" + } + ] + }, + "dbus": { + "name": "dbus", + "version": "1:1.6.12", + "release": "11.el7", + "newVersion": "1:1.10.24", + "newRelease": "15.el7", + "arch": "x86_64", + "repository": "rhui-REGION-rhel-server-releases", + "AffectedProcs": [ + { + "pid": "469", + "name": "dbus-daemon" + } + ] + }, + "dbus-glib": { + "name": "dbus-glib", + "version": "0.100", + "release": "7.el7", + "newVersion": "0.100", + "newRelease": "7.el7", + "arch": "x86_64", + "repository": "", + "AffectedProcs": [ + { + "pid": "466", + "name": "tuned" + }, + { + "pid": "458", + "name": "NetworkManager" + } + ] + }, + "dbus-libs": { + "name": "dbus-libs", + "version": "1:1.6.12", + "release": "11.el7", + "newVersion": "1:1.10.24", + "newRelease": "15.el7", + "arch": "x86_64", + "repository": "rhui-REGION-rhel-server-releases", + "AffectedProcs": [ + { + "pid": "10865", + "name": "su" + }, + { + "pid": "10842", + "name": "sshd" + }, + { + "pid": "466", + "name": "tuned" + }, + { + "pid": "1", + "name": "systemd" + }, + { + "pid": "458", + "name": "NetworkManager" + }, + { + "pid": "10839", + "name": "sshd" + }, + { + "pid": "10698", + "name": "sshd" + }, + { + "pid": "468", + "name": "systemd-logind" + }, + { + "pid": "10701", + "name": "sshd" + } + ] + }, + "dbus-python": { + "name": "dbus-python", + "version": "1.1.1", + "release": "9.el7", + "newVersion": "1.1.1", + "newRelease": "9.el7", + "arch": "x86_64", + "repository": "", + "AffectedProcs": [ + { + "pid": "466", + "name": "tuned" + } + ] + }, + "desktop-file-utils": { + "name": "desktop-file-utils", + "version": "0.21", + "release": "4.el7", + "newVersion": "0.23", + "newRelease": "2.el7", + "arch": "x86_64", + "repository": "rhui-REGION-rhel-server-releases" + }, + "device-mapper": { + "name": "device-mapper", + "version": "7:1.02.93", + "release": "3.el7", + "newVersion": "7:1.02.170", + "newRelease": "6.el7_9.4", + "arch": "x86_64", + "repository": "rhui-REGION-rhel-server-releases" + }, + "device-mapper-libs": { + "name": "device-mapper-libs", + "version": "7:1.02.93", + "release": "3.el7", + "newVersion": "7:1.02.170", + "newRelease": "6.el7_9.4", + "arch": "x86_64", + "repository": "rhui-REGION-rhel-server-releases" + }, + "dhclient": { + "name": "dhclient", + "version": "12:4.2.5", + "release": "36.el7", + "newVersion": "12:4.2.5", + "newRelease": "82.el7", + "arch": "x86_64", + "repository": "rhui-REGION-rhel-server-releases", + "AffectedProcs": [ + { + "pid": "489", + "name": "dhclient" + } + ] + }, + "dhcp-common": { + "name": "dhcp-common", + "version": "12:4.2.5", + "release": "36.el7", + "newVersion": "12:4.2.5", + "newRelease": "82.el7", + "arch": "x86_64", + "repository": "rhui-REGION-rhel-server-releases" + }, + "dhcp-libs": { + "name": "dhcp-libs", + "version": "12:4.2.5", + "release": "36.el7", + "newVersion": "12:4.2.5", + "newRelease": "82.el7", + "arch": "x86_64", + "repository": "rhui-REGION-rhel-server-releases", + "AffectedProcs": [ + { + "pid": "489", + "name": "dhclient" + } + ] + }, + "diffutils": { + "name": "diffutils", + "version": "3.3", + "release": "4.el7", + "newVersion": "3.3", + "newRelease": "5.el7", + "arch": "x86_64", + "repository": "rhui-REGION-rhel-server-releases" + }, + "dmidecode": { + "name": "dmidecode", + "version": "1:2.12", + "release": "5.el7", + "newVersion": "1:3.2", + "newRelease": "5.el7_9.1", + "arch": "x86_64", + "repository": "rhui-REGION-rhel-server-releases" + }, + "dnsmasq": { + "name": "dnsmasq", + "version": "2.66", + "release": "12.el7", + "newVersion": "2.76", + "newRelease": "16.el7_9.1", + "arch": "x86_64", + "repository": "rhui-REGION-rhel-server-releases" + }, + "dracut": { + "name": "dracut", + "version": "033", + "release": "240.el7", + "newVersion": "033", + "newRelease": "572.el7", + "arch": "x86_64", + "repository": "rhui-REGION-rhel-server-releases" + }, + "dracut-config-generic": { + "name": "dracut-config-generic", + "version": "033", + "release": "240.el7", + "newVersion": "033", + "newRelease": "572.el7", + "arch": "x86_64", + "repository": "rhui-REGION-rhel-server-releases" + }, + "dracut-config-rescue": { + "name": "dracut-config-rescue", + "version": "033", + "release": "240.el7", + "newVersion": "033", + "newRelease": "572.el7", + "arch": "x86_64", + "repository": "rhui-REGION-rhel-server-releases" + }, + "dracut-network": { + "name": "dracut-network", + "version": "033", + "release": "240.el7", + "newVersion": "033", + "newRelease": "572.el7", + "arch": "x86_64", + "repository": "rhui-REGION-rhel-server-releases" + }, + "e2fsprogs": { + "name": "e2fsprogs", + "version": "1.42.9", + "release": "7.el7", + "newVersion": "1.42.9", + "newRelease": "19.el7", + "arch": "x86_64", + "repository": "rhui-REGION-rhel-server-releases" + }, + "e2fsprogs-libs": { + "name": "e2fsprogs-libs", + "version": "1.42.9", + "release": "7.el7", + "newVersion": "1.42.9", + "newRelease": "19.el7", + "arch": "x86_64", + "repository": "rhui-REGION-rhel-server-releases" + }, + "elfutils-libelf": { + "name": "elfutils-libelf", + "version": "0.160", + "release": "1.el7", + "newVersion": "0.176", + "newRelease": "5.el7", + "arch": "x86_64", + "repository": "rhui-REGION-rhel-server-releases" + }, + "elfutils-libs": { + "name": "elfutils-libs", + "version": "0.160", + "release": "1.el7", + "newVersion": "0.176", + "newRelease": "5.el7", + "arch": "x86_64", + "repository": "rhui-REGION-rhel-server-releases" + }, + "emacs-filesystem": { + "name": "emacs-filesystem", + "version": "1:24.3", + "release": "11.el7", + "newVersion": "1:24.3", + "newRelease": "23.el7", + "arch": "noarch", + "repository": "rhui-REGION-rhel-server-releases" + }, + "ethtool": { + "name": "ethtool", + "version": "2:3.15", + "release": "2.el7", + "newVersion": "2:4.8", + "newRelease": "10.el7", + "arch": "x86_64", + "repository": "rhui-REGION-rhel-server-releases" + }, + "expat": { + "name": "expat", + "version": "2.1.0", + "release": "8.el7", + "newVersion": "2.1.0", + "newRelease": "12.el7", + "arch": "x86_64", + "repository": "rhui-REGION-rhel-server-releases", + "AffectedProcs": [ + { + "pid": "466", + "name": "tuned" + }, + { + "pid": "469", + "name": "dbus-daemon" + }, + { + "pid": "490", + "name": "polkitd" + } + ] + }, + "file": { + "name": "file", + "version": "5.11", + "release": "21.el7", + "newVersion": "5.11", + "newRelease": "37.el7", + "arch": "x86_64", + "repository": "rhui-REGION-rhel-server-releases" + }, + "file-libs": { + "name": "file-libs", + "version": "5.11", + "release": "21.el7", + "newVersion": "5.11", + "newRelease": "37.el7", + "arch": "x86_64", + "repository": "rhui-REGION-rhel-server-releases" + }, + "filesystem": { + "name": "filesystem", + "version": "3.2", + "release": "18.el7", + "newVersion": "3.2", + "newRelease": "25.el7", + "arch": "x86_64", + "repository": "rhui-REGION-rhel-server-releases" + }, + "findutils": { + "name": "findutils", + "version": "1:4.5.11", + "release": "3.el7", + "newVersion": "1:4.5.11", + "newRelease": "6.el7", + "arch": "x86_64", + "repository": "rhui-REGION-rhel-server-releases" + }, + "fipscheck": { + "name": "fipscheck", + "version": "1.4.1", + "release": "5.el7", + "newVersion": "1.4.1", + "newRelease": "6.el7", + "arch": "x86_64", + "repository": "rhui-REGION-rhel-server-releases" + }, + "fipscheck-lib": { + "name": "fipscheck-lib", + "version": "1.4.1", + "release": "5.el7", + "newVersion": "1.4.1", + "newRelease": "6.el7", + "arch": "x86_64", + "repository": "rhui-REGION-rhel-server-releases", + "AffectedProcs": [ + { + "pid": "10842", + "name": "sshd" + }, + { + "pid": "10839", + "name": "sshd" + }, + { + "pid": "10698", + "name": "sshd" + }, + { + "pid": "3904", + "name": "sshd", + "listenPortStats": [ + { + "bindAddress": "*", + "port": "22", + "portReachableTo": [] + } + ] + }, + { + "pid": "10701", + "name": "sshd" + } + ] + }, + "freetype": { + "name": "freetype", + "version": "2.4.11", + "release": "9.el7", + "newVersion": "2.8", + "newRelease": "14.el7_9.1", + "arch": "x86_64", + "repository": "rhui-REGION-rhel-server-releases" + }, + "gawk": { + "name": "gawk", + "version": "4.0.2", + "release": "4.el7", + "newVersion": "4.0.2", + "newRelease": "4.el7_3.1", + "arch": "x86_64", + "repository": "rhui-REGION-rhel-server-releases" + }, + "gdbm": { + "name": "gdbm", + "version": "1.10", + "release": "8.el7", + "newVersion": "1.10", + "newRelease": "8.el7", + "arch": "x86_64", + "repository": "" + }, + "gdisk": { + "name": "gdisk", + "version": "0.8.6", + "release": "5.el7", + "newVersion": "0.8.10", + "newRelease": "3.el7", + "arch": "x86_64", + "repository": "rhui-REGION-rhel-server-releases" + }, + "gettext": { + "name": "gettext", + "version": "0.18.2.1", + "release": "4.el7", + "newVersion": "0.19.8.1", + "newRelease": "3.el7", + "arch": "x86_64", + "repository": "rhui-REGION-rhel-server-releases" + }, + "gettext-libs": { + "name": "gettext-libs", + "version": "0.18.2.1", + "release": "4.el7", + "newVersion": "0.19.8.1", + "newRelease": "3.el7", + "arch": "x86_64", + "repository": "rhui-REGION-rhel-server-releases" + }, + "glib-networking": { + "name": "glib-networking", + "version": "2.40.0", + "release": "1.el7", + "newVersion": "2.56.1", + "newRelease": "1.el7", + "arch": "x86_64", + "repository": "rhui-REGION-rhel-server-releases" + }, + "glib2": { + "name": "glib2", + "version": "2.40.0", + "release": "4.el7", + "newVersion": "2.56.1", + "newRelease": "8.el7", + "arch": "x86_64", + "repository": "rhui-REGION-rhel-server-releases", + "AffectedProcs": [ + { + "pid": "466", + "name": "tuned" + }, + { + "pid": "458", + "name": "NetworkManager" + }, + { + "pid": "490", + "name": "polkitd" + } + ] + }, + "glibc": { + "name": "glibc", + "version": "2.17", + "release": "78.el7", + "newVersion": "2.17", + "newRelease": "323.el7_9", + "arch": "x86_64", + "repository": "rhui-REGION-rhel-server-releases", + "AffectedProcs": [ + { + "pid": "10865", + "name": "su" + }, + { + "pid": "473", + "name": "chronyd" + }, + { + "pid": "10864", + "name": "sudo" + }, + { + "pid": "474", + "name": "crond" + }, + { + "pid": "489", + "name": "dhclient" + }, + { + "pid": "10842", + "name": "sshd" + }, + { + "pid": "466", + "name": "tuned" + }, + { + "pid": "1776", + "name": "master", + "listenPortStats": [ + { + "bindAddress": "127.0.0.1", + "port": "25", + "portReachableTo": [] + }, + { + "bindAddress": "[::1]", + "port": "25", + "portReachableTo": [] + } + ] + }, + { + "pid": "10843", + "name": "bash" + }, + { + "pid": "476", + "name": "agetty" + }, + { + "pid": "10866", + "name": "bash" + }, + { + "pid": "365", + "name": "systemd-udevd" + }, + { + "pid": "1", + "name": "systemd" + }, + { + "pid": "1786", + "name": "qmgr" + }, + { + "pid": "1785", + "name": "pickup" + }, + { + "pid": "458", + "name": "NetworkManager" + }, + { + "pid": "475", + "name": "agetty" + }, + { + "pid": "10839", + "name": "sshd" + }, + { + "pid": "360", + "name": "systemd-journal" + }, + { + "pid": "10698", + "name": "sshd" + }, + { + "pid": "3904", + "name": "sshd", + "listenPortStats": [ + { + "bindAddress": "*", + "port": "22", + "portReachableTo": [] + } + ] + }, + { + "pid": "469", + "name": "dbus-daemon" + }, + { + "pid": "468", + "name": "systemd-logind" + }, + { + "pid": "462", + "name": "rsyslogd" + }, + { + "pid": "10701", + "name": "sshd" + }, + { + "pid": "490", + "name": "polkitd" + }, + { + "pid": "402", + "name": "auditd" + } + ] + }, + "glibc-common": { + "name": "glibc-common", + "version": "2.17", + "release": "78.el7", + "newVersion": "2.17", + "newRelease": "323.el7_9", + "arch": "x86_64", + "repository": "rhui-REGION-rhel-server-releases", + "AffectedProcs": [ + { + "pid": "10865", + "name": "su" + }, + { + "pid": "10864", + "name": "sudo" + }, + { + "pid": "474", + "name": "crond" + }, + { + "pid": "466", + "name": "tuned" + }, + { + "pid": "10843", + "name": "bash" + }, + { + "pid": "476", + "name": "agetty" + }, + { + "pid": "10866", + "name": "bash" + }, + { + "pid": "458", + "name": "NetworkManager" + }, + { + "pid": "475", + "name": "agetty" + } + ] + }, + "gmp": { + "name": "gmp", + "version": "1:6.0.0", + "release": "11.el7", + "newVersion": "1:6.0.0", + "newRelease": "15.el7", + "arch": "x86_64", + "repository": "rhui-REGION-rhel-server-releases" + }, + "gnupg2": { + "name": "gnupg2", + "version": "2.0.22", + "release": "3.el7", + "newVersion": "2.0.22", + "newRelease": "5.el7_5", + "arch": "x86_64", + "repository": "rhui-REGION-rhel-server-releases" + }, + "gnutls": { + "name": "gnutls", + "version": "3.3.8", + "release": "12.el7", + "newVersion": "3.3.29", + "newRelease": "9.el7_6", + "arch": "x86_64", + "repository": "rhui-REGION-rhel-server-releases" + }, + "gobject-introspection": { + "name": "gobject-introspection", + "version": "1.36.0", + "release": "4.el7", + "newVersion": "1.56.1", + "newRelease": "1.el7", + "arch": "x86_64", + "repository": "rhui-REGION-rhel-server-releases", + "AffectedProcs": [ + { + "pid": "466", + "name": "tuned" + } + ] + }, + "gpg-pubkey": { + "name": "gpg-pubkey", + "version": "2fa658e0", + "release": "45700c69", + "newVersion": "2fa658e0", + "newRelease": "45700c69", + "arch": "(none)", + "repository": "" + }, + "gpgme": { + "name": "gpgme", + "version": "1.3.2", + "release": "5.el7", + "newVersion": "1.3.2", + "newRelease": "5.el7", + "arch": "x86_64", + "repository": "" + }, + "grep": { + "name": "grep", + "version": "2.20", + "release": "1.el7", + "newVersion": "2.20", + "newRelease": "3.el7", + "arch": "x86_64", + "repository": "rhui-REGION-rhel-server-releases" + }, + "groff-base": { + "name": "groff-base", + "version": "1.22.2", + "release": "8.el7", + "newVersion": "1.22.2", + "newRelease": "8.el7", + "arch": "x86_64", + "repository": "" + }, + "grub2": { + "name": "grub2", + "version": "1:2.02", + "release": "0.16.el7", + "newVersion": "1:2.02", + "newRelease": "0.87.el7_9.6", + "arch": "x86_64", + "repository": "rhui-REGION-rhel-server-releases" + }, + "grub2-tools": { + "name": "grub2-tools", + "version": "1:2.02", + "release": "0.16.el7", + "newVersion": "1:2.02", + "newRelease": "0.87.el7_9.6", + "arch": "x86_64", + "repository": "rhui-REGION-rhel-server-releases" + }, + "grubby": { + "name": "grubby", + "version": "8.28", + "release": "11.el7", + "newVersion": "8.28", + "newRelease": "26.el7", + "arch": "x86_64", + "repository": "rhui-REGION-rhel-server-releases" + }, + "gsettings-desktop-schemas": { + "name": "gsettings-desktop-schemas", + "version": "3.8.2", + "release": "3.el7", + "newVersion": "3.28.0", + "newRelease": "3.el7", + "arch": "x86_64", + "repository": "rhui-REGION-rhel-server-releases" + }, + "gzip": { + "name": "gzip", + "version": "1.5", + "release": "7.el7", + "newVersion": "1.5", + "newRelease": "10.el7", + "arch": "x86_64", + "repository": "rhui-REGION-rhel-server-releases" + }, + "hardlink": { + "name": "hardlink", + "version": "1:1.0", + "release": "19.el7", + "newVersion": "1:1.0", + "newRelease": "19.el7", + "arch": "x86_64", + "repository": "" + }, + "hostname": { + "name": "hostname", + "version": "3.13", + "release": "3.el7", + "newVersion": "3.13", + "newRelease": "3.el7_7.1", + "arch": "x86_64", + "repository": "rhui-REGION-rhel-server-releases" + }, + "hwdata": { + "name": "hwdata", + "version": "0.252", + "release": "7.5.el7", + "newVersion": "0.252", + "newRelease": "9.7.el7", + "arch": "noarch", + "repository": "rhui-REGION-rhel-server-releases" + }, + "info": { + "name": "info", + "version": "5.1", + "release": "4.el7", + "newVersion": "5.1", + "newRelease": "5.el7", + "arch": "x86_64", + "repository": "rhui-REGION-rhel-server-releases" + }, + "initscripts": { + "name": "initscripts", + "version": "9.49.24", + "release": "1.el7", + "newVersion": "9.49.53", + "newRelease": "1.el7_9.1", + "arch": "x86_64", + "repository": "rhui-REGION-rhel-server-releases" + }, + "iproute": { + "name": "iproute", + "version": "3.10.0", + "release": "21.el7", + "newVersion": "4.11.0", + "newRelease": "30.el7", + "arch": "x86_64", + "repository": "rhui-REGION-rhel-server-releases" + }, + "iptables": { + "name": "iptables", + "version": "1.4.21", + "release": "13.el7", + "newVersion": "1.4.21", + "newRelease": "35.el7", + "arch": "x86_64", + "repository": "rhui-REGION-rhel-server-releases" + }, + "iputils": { + "name": "iputils", + "version": "20121221", + "release": "6.el7", + "newVersion": "20160308", + "newRelease": "10.el7", + "arch": "x86_64", + "repository": "rhui-REGION-rhel-server-releases" + }, + "irqbalance": { + "name": "irqbalance", + "version": "2:1.0.7", + "release": "1.el7", + "newVersion": "3:1.0.7", + "newRelease": "12.el7", + "arch": "x86_64", + "repository": "rhui-REGION-rhel-server-releases" + }, + "jansson": { + "name": "jansson", + "version": "2.4", + "release": "6.el7", + "newVersion": "2.10", + "newRelease": "1.el7", + "arch": "x86_64", + "repository": "rhui-REGION-rhel-server-releases" + }, + "json-c": { + "name": "json-c", + "version": "0.11", + "release": "4.el7_0", + "newVersion": "0.11", + "newRelease": "4.el7_0", + "arch": "x86_64", + "repository": "", + "AffectedProcs": [ + { + "pid": "462", + "name": "rsyslogd" + } + ] + }, + "kbd": { + "name": "kbd", + "version": "1.15.5", + "release": "11.el7", + "newVersion": "1.15.5", + "newRelease": "15.el7", + "arch": "x86_64", + "repository": "rhui-REGION-rhel-server-releases" + }, + "kbd-legacy": { + "name": "kbd-legacy", + "version": "1.15.5", + "release": "11.el7", + "newVersion": "1.15.5", + "newRelease": "15.el7", + "arch": "noarch", + "repository": "rhui-REGION-rhel-server-releases" + }, + "kbd-misc": { + "name": "kbd-misc", + "version": "1.15.5", + "release": "11.el7", + "newVersion": "1.15.5", + "newRelease": "15.el7", + "arch": "noarch", + "repository": "rhui-REGION-rhel-server-releases" + }, + "kernel": { + "name": "kernel", + "version": "3.10.0", + "release": "229.el7", + "newVersion": "3.10.0", + "newRelease": "1160.21.1.el7", + "arch": "x86_64", + "repository": "rhui-REGION-rhel-server-releases" + }, + "kernel-tools": { + "name": "kernel-tools", + "version": "3.10.0", + "release": "229.el7", + "newVersion": "3.10.0", + "newRelease": "1160.21.1.el7", + "arch": "x86_64", + "repository": "rhui-REGION-rhel-server-releases" + }, + "kernel-tools-libs": { + "name": "kernel-tools-libs", + "version": "3.10.0", + "release": "229.el7", + "newVersion": "3.10.0", + "newRelease": "1160.21.1.el7", + "arch": "x86_64", + "repository": "rhui-REGION-rhel-server-releases" + }, + "kexec-tools": { + "name": "kexec-tools", + "version": "2.0.7", + "release": "19.el7", + "newVersion": "2.0.15", + "newRelease": "51.el7_9.1", + "arch": "x86_64", + "repository": "rhui-REGION-rhel-server-releases" + }, + "keyutils-libs": { + "name": "keyutils-libs", + "version": "1.5.8", + "release": "3.el7", + "newVersion": "1.5.8", + "newRelease": "3.el7", + "arch": "x86_64", + "repository": "", + "AffectedProcs": [ + { + "pid": "489", + "name": "dhclient" + }, + { + "pid": "10842", + "name": "sshd" + }, + { + "pid": "466", + "name": "tuned" + }, + { + "pid": "1776", + "name": "master", + "listenPortStats": [ + { + "bindAddress": "127.0.0.1", + "port": "25", + "portReachableTo": [] + }, + { + "bindAddress": "[::1]", + "port": "25", + "portReachableTo": [] + } + ] + }, + { + "pid": "1786", + "name": "qmgr" + }, + { + "pid": "1785", + "name": "pickup" + }, + { + "pid": "10839", + "name": "sshd" + }, + { + "pid": "10698", + "name": "sshd" + }, + { + "pid": "3904", + "name": "sshd", + "listenPortStats": [ + { + "bindAddress": "*", + "port": "22", + "portReachableTo": [] + } + ] + }, + { + "pid": "10701", + "name": "sshd" + }, + { + "pid": "402", + "name": "auditd" + } + ] + }, + "kmod": { + "name": "kmod", + "version": "14", + "release": "10.el7", + "newVersion": "20", + "newRelease": "28.el7", + "arch": "x86_64", + "repository": "rhui-REGION-rhel-server-releases" + }, + "kmod-libs": { + "name": "kmod-libs", + "version": "14", + "release": "10.el7", + "newVersion": "20", + "newRelease": "28.el7", + "arch": "x86_64", + "repository": "rhui-REGION-rhel-server-releases", + "AffectedProcs": [ + { + "pid": "365", + "name": "systemd-udevd" + }, + { + "pid": "1", + "name": "systemd" + } + ] + }, + "kpartx": { + "name": "kpartx", + "version": "0.4.9", + "release": "77.el7", + "newVersion": "0.4.9", + "newRelease": "134.el7_9", + "arch": "x86_64", + "repository": "rhui-REGION-rhel-server-releases" + }, + "krb5-libs": { + "name": "krb5-libs", + "version": "1.12.2", + "release": "14.el7", + "newVersion": "1.15.1", + "newRelease": "50.el7", + "arch": "x86_64", + "repository": "rhui-REGION-rhel-server-releases", + "AffectedProcs": [ + { + "pid": "489", + "name": "dhclient" + }, + { + "pid": "10842", + "name": "sshd" + }, + { + "pid": "466", + "name": "tuned" + }, + { + "pid": "1776", + "name": "master", + "listenPortStats": [ + { + "bindAddress": "127.0.0.1", + "port": "25", + "portReachableTo": [] + }, + { + "bindAddress": "[::1]", + "port": "25", + "portReachableTo": [] + } + ] + }, + { + "pid": "1786", + "name": "qmgr" + }, + { + "pid": "1785", + "name": "pickup" + }, + { + "pid": "10839", + "name": "sshd" + }, + { + "pid": "10698", + "name": "sshd" + }, + { + "pid": "3904", + "name": "sshd", + "listenPortStats": [ + { + "bindAddress": "*", + "port": "22", + "portReachableTo": [] + } + ] + }, + { + "pid": "10701", + "name": "sshd" + }, + { + "pid": "402", + "name": "auditd" + } + ] + }, + "less": { + "name": "less", + "version": "458", + "release": "8.el7", + "newVersion": "458", + "newRelease": "9.el7", + "arch": "x86_64", + "repository": "rhui-REGION-rhel-server-releases" + }, + "libacl": { + "name": "libacl", + "version": "2.2.51", + "release": "12.el7", + "newVersion": "2.2.51", + "newRelease": "15.el7", + "arch": "x86_64", + "repository": "rhui-REGION-rhel-server-releases", + "AffectedProcs": [ + { + "pid": "365", + "name": "systemd-udevd" + }, + { + "pid": "360", + "name": "systemd-journal" + }, + { + "pid": "468", + "name": "systemd-logind" + } + ] + }, + "libassuan": { + "name": "libassuan", + "version": "2.1.0", + "release": "3.el7", + "newVersion": "2.1.0", + "newRelease": "3.el7", + "arch": "x86_64", + "repository": "" + }, + "libattr": { + "name": "libattr", + "version": "2.4.46", + "release": "12.el7", + "newVersion": "2.4.46", + "newRelease": "13.el7", + "arch": "x86_64", + "repository": "rhui-REGION-rhel-server-releases", + "AffectedProcs": [ + { + "pid": "10865", + "name": "su" + }, + { + "pid": "473", + "name": "chronyd" + }, + { + "pid": "489", + "name": "dhclient" + }, + { + "pid": "10842", + "name": "sshd" + }, + { + "pid": "365", + "name": "systemd-udevd" + }, + { + "pid": "1", + "name": "systemd" + }, + { + "pid": "10839", + "name": "sshd" + }, + { + "pid": "360", + "name": "systemd-journal" + }, + { + "pid": "10698", + "name": "sshd" + }, + { + "pid": "468", + "name": "systemd-logind" + }, + { + "pid": "10701", + "name": "sshd" + } + ] + }, + "libblkid": { + "name": "libblkid", + "version": "2.23.2", + "release": "21.el7", + "newVersion": "2.23.2", + "newRelease": "65.el7_9.1", + "arch": "x86_64", + "repository": "rhui-REGION-rhel-server-releases", + "AffectedProcs": [ + { + "pid": "365", + "name": "systemd-udevd" + }, + { + "pid": "1", + "name": "systemd" + } + ] + }, + "libcap": { + "name": "libcap", + "version": "2.22", + "release": "8.el7", + "newVersion": "2.22", + "newRelease": "11.el7", + "arch": "x86_64", + "repository": "rhui-REGION-rhel-server-releases", + "AffectedProcs": [ + { + "pid": "10865", + "name": "su" + }, + { + "pid": "473", + "name": "chronyd" + }, + { + "pid": "489", + "name": "dhclient" + }, + { + "pid": "10842", + "name": "sshd" + }, + { + "pid": "1", + "name": "systemd" + }, + { + "pid": "10839", + "name": "sshd" + }, + { + "pid": "360", + "name": "systemd-journal" + }, + { + "pid": "10698", + "name": "sshd" + }, + { + "pid": "468", + "name": "systemd-logind" + }, + { + "pid": "10701", + "name": "sshd" + } + ] + }, + "libcap-ng": { + "name": "libcap-ng", + "version": "0.7.3", + "release": "5.el7", + "newVersion": "0.7.5", + "newRelease": "4.el7", + "arch": "x86_64", + "repository": "rhui-REGION-rhel-server-releases", + "AffectedProcs": [ + { + "pid": "489", + "name": "dhclient" + }, + { + "pid": "469", + "name": "dbus-daemon" + } + ] + }, + "libcgroup": { + "name": "libcgroup", + "version": "0.41", + "release": "8.el7", + "newVersion": "0.41", + "newRelease": "21.el7", + "arch": "x86_64", + "repository": "rhui-REGION-rhel-server-releases" + }, + "libcom_err": { + "name": "libcom_err", + "version": "1.42.9", + "release": "7.el7", + "newVersion": "1.42.9", + "newRelease": "19.el7", + "arch": "x86_64", + "repository": "rhui-REGION-rhel-server-releases", + "AffectedProcs": [ + { + "pid": "489", + "name": "dhclient" + }, + { + "pid": "10842", + "name": "sshd" + }, + { + "pid": "466", + "name": "tuned" + }, + { + "pid": "1776", + "name": "master", + "listenPortStats": [ + { + "bindAddress": "127.0.0.1", + "port": "25", + "portReachableTo": [] + }, + { + "bindAddress": "[::1]", + "port": "25", + "portReachableTo": [] + } + ] + }, + { + "pid": "1786", + "name": "qmgr" + }, + { + "pid": "1785", + "name": "pickup" + }, + { + "pid": "10839", + "name": "sshd" + }, + { + "pid": "10698", + "name": "sshd" + }, + { + "pid": "3904", + "name": "sshd", + "listenPortStats": [ + { + "bindAddress": "*", + "port": "22", + "portReachableTo": [] + } + ] + }, + { + "pid": "10701", + "name": "sshd" + }, + { + "pid": "402", + "name": "auditd" + } + ] + }, + "libcroco": { + "name": "libcroco", + "version": "0.6.8", + "release": "5.el7", + "newVersion": "0.6.12", + "newRelease": "6.el7_9", + "arch": "x86_64", + "repository": "rhui-REGION-rhel-server-releases" + }, + "libcurl": { + "name": "libcurl", + "version": "7.29.0", + "release": "19.el7", + "newVersion": "7.29.0", + "newRelease": "59.el7_9.1", + "arch": "x86_64", + "repository": "rhui-REGION-rhel-server-releases" + }, + "libdaemon": { + "name": "libdaemon", + "version": "0.14", + "release": "7.el7", + "newVersion": "0.14", + "newRelease": "7.el7", + "arch": "x86_64", + "repository": "" + }, + "libdb": { + "name": "libdb", + "version": "5.3.21", + "release": "17.el7_0.1", + "newVersion": "5.3.21", + "newRelease": "25.el7", + "arch": "x86_64", + "repository": "rhui-REGION-rhel-server-releases", + "AffectedProcs": [ + { + "pid": "1776", + "name": "master", + "listenPortStats": [ + { + "bindAddress": "127.0.0.1", + "port": "25", + "portReachableTo": [] + }, + { + "bindAddress": "[::1]", + "port": "25", + "portReachableTo": [] + } + ] + }, + { + "pid": "1786", + "name": "qmgr" + }, + { + "pid": "1785", + "name": "pickup" + } + ] + }, + "libdb-utils": { + "name": "libdb-utils", + "version": "5.3.21", + "release": "17.el7_0.1", + "newVersion": "5.3.21", + "newRelease": "25.el7", + "arch": "x86_64", + "repository": "rhui-REGION-rhel-server-releases" + }, + "libedit": { + "name": "libedit", + "version": "3.0", + "release": "12.20121213cvs.el7", + "newVersion": "3.0", + "newRelease": "12.20121213cvs.el7", + "arch": "x86_64", + "repository": "" + }, + "libestr": { + "name": "libestr", + "version": "0.1.9", + "release": "2.el7", + "newVersion": "0.1.9", + "newRelease": "2.el7", + "arch": "x86_64", + "repository": "", + "AffectedProcs": [ + { + "pid": "462", + "name": "rsyslogd" + } + ] + }, + "libffi": { + "name": "libffi", + "version": "3.0.13", + "release": "11.el7", + "newVersion": "3.0.13", + "newRelease": "19.el7", + "arch": "x86_64", + "repository": "rhui-REGION-rhel-server-releases", + "AffectedProcs": [ + { + "pid": "466", + "name": "tuned" + }, + { + "pid": "458", + "name": "NetworkManager" + }, + { + "pid": "490", + "name": "polkitd" + } + ] + }, + "libgcc": { + "name": "libgcc", + "version": "4.8.3", + "release": "9.el7", + "newVersion": "4.8.5", + "newRelease": "44.el7", + "arch": "x86_64", + "repository": "rhui-REGION-rhel-server-releases", + "AffectedProcs": [ + { + "pid": "10865", + "name": "su" + }, + { + "pid": "10842", + "name": "sshd" + }, + { + "pid": "466", + "name": "tuned" + }, + { + "pid": "1776", + "name": "master", + "listenPortStats": [ + { + "bindAddress": "127.0.0.1", + "port": "25", + "portReachableTo": [] + }, + { + "bindAddress": "[::1]", + "port": "25", + "portReachableTo": [] + } + ] + }, + { + "pid": "365", + "name": "systemd-udevd" + }, + { + "pid": "1", + "name": "systemd" + }, + { + "pid": "1786", + "name": "qmgr" + }, + { + "pid": "1785", + "name": "pickup" + }, + { + "pid": "458", + "name": "NetworkManager" + }, + { + "pid": "10839", + "name": "sshd" + }, + { + "pid": "360", + "name": "systemd-journal" + }, + { + "pid": "10698", + "name": "sshd" + }, + { + "pid": "468", + "name": "systemd-logind" + }, + { + "pid": "462", + "name": "rsyslogd" + }, + { + "pid": "10701", + "name": "sshd" + }, + { + "pid": "490", + "name": "polkitd" + } + ] + }, + "libgcrypt": { + "name": "libgcrypt", + "version": "1.5.3", + "release": "12.el7", + "newVersion": "1.5.3", + "newRelease": "14.el7", + "arch": "x86_64", + "repository": "rhui-REGION-rhel-server-releases", + "AffectedProcs": [ + { + "pid": "360", + "name": "systemd-journal" + }, + { + "pid": "462", + "name": "rsyslogd" + } + ] + }, + "libgomp": { + "name": "libgomp", + "version": "4.8.3", + "release": "9.el7", + "newVersion": "4.8.5", + "newRelease": "44.el7", + "arch": "x86_64", + "repository": "rhui-REGION-rhel-server-releases" + }, + "libgpg-error": { + "name": "libgpg-error", + "version": "1.12", + "release": "3.el7", + "newVersion": "1.12", + "newRelease": "3.el7", + "arch": "x86_64", + "repository": "", + "AffectedProcs": [ + { + "pid": "360", + "name": "systemd-journal" + }, + { + "pid": "462", + "name": "rsyslogd" + } + ] + }, + "libgudev1": { + "name": "libgudev1", + "version": "208", + "release": "20.el7", + "newVersion": "219", + "newRelease": "78.el7_9.3", + "arch": "x86_64", + "repository": "rhui-REGION-rhel-server-releases", + "AffectedProcs": [ + { + "pid": "458", + "name": "NetworkManager" + } + ] + }, + "libicu": { + "name": "libicu", + "version": "50.1.2", + "release": "11.el7", + "newVersion": "50.2", + "newRelease": "4.el7_7", + "arch": "x86_64", + "repository": "rhui-REGION-rhel-server-releases" + }, + "libidn": { + "name": "libidn", + "version": "1.28", + "release": "3.el7", + "newVersion": "1.28", + "newRelease": "4.el7", + "arch": "x86_64", + "repository": "rhui-REGION-rhel-server-releases" + }, + "libmnl": { + "name": "libmnl", + "version": "1.0.3", + "release": "7.el7", + "newVersion": "1.0.3", + "newRelease": "7.el7", + "arch": "x86_64", + "repository": "" + }, + "libmodman": { + "name": "libmodman", + "version": "2.0.1", + "release": "8.el7", + "newVersion": "2.0.1", + "newRelease": "8.el7", + "arch": "x86_64", + "repository": "" + }, + "libmount": { + "name": "libmount", + "version": "2.23.2", + "release": "21.el7", + "newVersion": "2.23.2", + "newRelease": "65.el7_9.1", + "arch": "x86_64", + "repository": "rhui-REGION-rhel-server-releases", + "AffectedProcs": [ + { + "pid": "1", + "name": "systemd" + } + ] + }, + "libndp": { + "name": "libndp", + "version": "1.2", + "release": "4.el7", + "newVersion": "1.2", + "newRelease": "9.el7", + "arch": "x86_64", + "repository": "rhui-REGION-rhel-server-releases", + "AffectedProcs": [ + { + "pid": "458", + "name": "NetworkManager" + } + ] + }, + "libnetfilter_conntrack": { + "name": "libnetfilter_conntrack", + "version": "1.0.4", + "release": "2.el7", + "newVersion": "1.0.6", + "newRelease": "1.el7_3", + "arch": "x86_64", + "repository": "rhui-REGION-rhel-server-releases" + }, + "libnfnetlink": { + "name": "libnfnetlink", + "version": "1.0.1", + "release": "4.el7", + "newVersion": "1.0.1", + "newRelease": "4.el7", + "arch": "x86_64", + "repository": "" + }, + "libnl": { + "name": "libnl", + "version": "1.1.4", + "release": "3.el7", + "newVersion": "1.1.4", + "newRelease": "3.el7", + "arch": "x86_64", + "repository": "" + }, + "libnl3": { + "name": "libnl3", + "version": "3.2.21", + "release": "8.el7", + "newVersion": "3.2.28", + "newRelease": "4.el7", + "arch": "x86_64", + "repository": "rhui-REGION-rhel-server-releases", + "AffectedProcs": [ + { + "pid": "458", + "name": "NetworkManager" + } + ] + }, + "libnl3-cli": { + "name": "libnl3-cli", + "version": "3.2.21", + "release": "8.el7", + "newVersion": "3.2.28", + "newRelease": "4.el7", + "arch": "x86_64", + "repository": "rhui-REGION-rhel-server-releases" + }, + "libpcap": { + "name": "libpcap", + "version": "14:1.5.3", + "release": "3.el7_0.1", + "newVersion": "14:1.5.3", + "newRelease": "12.el7", + "arch": "x86_64", + "repository": "rhui-REGION-rhel-server-releases" + }, + "libpipeline": { + "name": "libpipeline", + "version": "1.2.3", + "release": "3.el7", + "newVersion": "1.2.3", + "newRelease": "3.el7", + "arch": "x86_64", + "repository": "" + }, + "libproxy": { + "name": "libproxy", + "version": "0.4.11", + "release": "6.el7", + "newVersion": "0.4.11", + "newRelease": "11.el7", + "arch": "x86_64", + "repository": "rhui-REGION-rhel-server-releases" + }, + "libpwquality": { + "name": "libpwquality", + "version": "1.2.3", + "release": "4.el7", + "newVersion": "1.2.3", + "newRelease": "5.el7", + "arch": "x86_64", + "repository": "rhui-REGION-rhel-server-releases", + "AffectedProcs": [ + { + "pid": "10865", + "name": "su" + }, + { + "pid": "10864", + "name": "sudo" + }, + { + "pid": "10842", + "name": "sshd" + }, + { + "pid": "10839", + "name": "sshd" + }, + { + "pid": "10698", + "name": "sshd" + }, + { + "pid": "10701", + "name": "sshd" + } + ] + }, + "libselinux": { + "name": "libselinux", + "version": "2.2.2", + "release": "6.el7", + "newVersion": "2.5", + "newRelease": "15.el7", + "arch": "x86_64", + "repository": "rhui-REGION-rhel-server-releases", + "AffectedProcs": [ + { + "pid": "10865", + "name": "su" + }, + { + "pid": "10864", + "name": "sudo" + }, + { + "pid": "474", + "name": "crond" + }, + { + "pid": "489", + "name": "dhclient" + }, + { + "pid": "10842", + "name": "sshd" + }, + { + "pid": "466", + "name": "tuned" + }, + { + "pid": "1776", + "name": "master", + "listenPortStats": [ + { + "bindAddress": "127.0.0.1", + "port": "25", + "portReachableTo": [] + }, + { + "bindAddress": "[::1]", + "port": "25", + "portReachableTo": [] + } + ] + }, + { + "pid": "365", + "name": "systemd-udevd" + }, + { + "pid": "1", + "name": "systemd" + }, + { + "pid": "1786", + "name": "qmgr" + }, + { + "pid": "1785", + "name": "pickup" + }, + { + "pid": "458", + "name": "NetworkManager" + }, + { + "pid": "10839", + "name": "sshd" + }, + { + "pid": "360", + "name": "systemd-journal" + }, + { + "pid": "10698", + "name": "sshd" + }, + { + "pid": "3904", + "name": "sshd", + "listenPortStats": [ + { + "bindAddress": "*", + "port": "22", + "portReachableTo": [] + } + ] + }, + { + "pid": "469", + "name": "dbus-daemon" + }, + { + "pid": "468", + "name": "systemd-logind" + }, + { + "pid": "462", + "name": "rsyslogd" + }, + { + "pid": "10701", + "name": "sshd" + }, + { + "pid": "490", + "name": "polkitd" + }, + { + "pid": "402", + "name": "auditd" + } + ] + }, + "libselinux-python": { + "name": "libselinux-python", + "version": "2.2.2", + "release": "6.el7", + "newVersion": "2.5", + "newRelease": "15.el7", + "arch": "x86_64", + "repository": "rhui-REGION-rhel-server-releases" + }, + "libselinux-utils": { + "name": "libselinux-utils", + "version": "2.2.2", + "release": "6.el7", + "newVersion": "2.5", + "newRelease": "15.el7", + "arch": "x86_64", + "repository": "rhui-REGION-rhel-server-releases" + }, + "libsemanage": { + "name": "libsemanage", + "version": "2.1.10", + "release": "16.el7", + "newVersion": "2.5", + "newRelease": "14.el7", + "arch": "x86_64", + "repository": "rhui-REGION-rhel-server-releases" + }, + "libsemanage-python": { + "name": "libsemanage-python", + "version": "2.1.10", + "release": "16.el7", + "newVersion": "2.5", + "newRelease": "14.el7", + "arch": "x86_64", + "repository": "rhui-REGION-rhel-server-releases" + }, + "libsepol": { + "name": "libsepol", + "version": "2.1.9", + "release": "3.el7", + "newVersion": "2.5", + "newRelease": "10.el7", + "arch": "x86_64", + "repository": "rhui-REGION-rhel-server-releases" + }, + "libsoup": { + "name": "libsoup", + "version": "2.46.0", + "release": "3.el7", + "newVersion": "2.62.2", + "newRelease": "2.el7", + "arch": "x86_64", + "repository": "rhui-REGION-rhel-server-releases", + "AffectedProcs": [ + { + "pid": "458", + "name": "NetworkManager" + } + ] + }, + "libss": { + "name": "libss", + "version": "1.42.9", + "release": "7.el7", + "newVersion": "1.42.9", + "newRelease": "19.el7", + "arch": "x86_64", + "repository": "rhui-REGION-rhel-server-releases" + }, + "libssh2": { + "name": "libssh2", + "version": "1.4.3", + "release": "8.el7", + "newVersion": "1.8.0", + "newRelease": "4.el7", + "arch": "x86_64", + "repository": "rhui-REGION-rhel-server-releases" + }, + "libstdc++": { + "name": "libstdc++", + "version": "4.8.3", + "release": "9.el7", + "newVersion": "4.8.5", + "newRelease": "44.el7", + "arch": "x86_64", + "repository": "rhui-REGION-rhel-server-releases", + "AffectedProcs": [ + { + "pid": "1776", + "name": "master", + "listenPortStats": [ + { + "bindAddress": "127.0.0.1", + "port": "25", + "portReachableTo": [] + }, + { + "bindAddress": "[::1]", + "port": "25", + "portReachableTo": [] + } + ] + }, + { + "pid": "1786", + "name": "qmgr" + }, + { + "pid": "1785", + "name": "pickup" + }, + { + "pid": "490", + "name": "polkitd" + } + ] + }, + "libsysfs": { + "name": "libsysfs", + "version": "2.1.0", + "release": "16.el7", + "newVersion": "2.1.0", + "newRelease": "16.el7", + "arch": "x86_64", + "repository": "" + }, + "libtasn1": { + "name": "libtasn1", + "version": "3.8", + "release": "2.el7", + "newVersion": "4.10", + "newRelease": "1.el7", + "arch": "x86_64", + "repository": "rhui-REGION-rhel-server-releases" + }, + "libteam": { + "name": "libteam", + "version": "1.15", + "release": "1.el7", + "newVersion": "1.29", + "newRelease": "3.el7", + "arch": "x86_64", + "repository": "rhui-REGION-rhel-server-releases" + }, + "libunistring": { + "name": "libunistring", + "version": "0.9.3", + "release": "9.el7", + "newVersion": "0.9.3", + "newRelease": "9.el7", + "arch": "x86_64", + "repository": "" + }, + "libuser": { + "name": "libuser", + "version": "0.60", + "release": "5.el7", + "newVersion": "0.60", + "newRelease": "9.el7", + "arch": "x86_64", + "repository": "rhui-REGION-rhel-server-releases" + }, + "libutempter": { + "name": "libutempter", + "version": "1.1.6", + "release": "4.el7", + "newVersion": "1.1.6", + "newRelease": "4.el7", + "arch": "x86_64", + "repository": "" + }, + "libuuid": { + "name": "libuuid", + "version": "2.23.2", + "release": "21.el7", + "newVersion": "2.23.2", + "newRelease": "65.el7_9.1", + "arch": "x86_64", + "repository": "rhui-REGION-rhel-server-releases", + "AffectedProcs": [ + { + "pid": "365", + "name": "systemd-udevd" + }, + { + "pid": "1", + "name": "systemd" + }, + { + "pid": "458", + "name": "NetworkManager" + }, + { + "pid": "462", + "name": "rsyslogd" + } + ] + }, + "libverto": { + "name": "libverto", + "version": "0.2.5", + "release": "4.el7", + "newVersion": "0.2.5", + "newRelease": "4.el7", + "arch": "x86_64", + "repository": "" + }, + "libxml2": { + "name": "libxml2", + "version": "2.9.1", + "release": "5.el7_0.1", + "newVersion": "2.9.1", + "newRelease": "6.el7.5", + "arch": "x86_64", + "repository": "rhui-REGION-rhel-server-releases", + "AffectedProcs": [ + { + "pid": "489", + "name": "dhclient" + }, + { + "pid": "458", + "name": "NetworkManager" + } + ] + }, + "libxml2-python": { + "name": "libxml2-python", + "version": "2.9.1", + "release": "5.el7_0.1", + "newVersion": "2.9.1", + "newRelease": "6.el7.5", + "arch": "x86_64", + "repository": "rhui-REGION-rhel-server-releases" + }, + "libxslt": { + "name": "libxslt", + "version": "1.1.28", + "release": "5.el7", + "newVersion": "1.1.28", + "newRelease": "6.el7", + "arch": "x86_64", + "repository": "rhui-REGION-rhel-server-releases" + }, + "libyaml": { + "name": "libyaml", + "version": "0.1.4", + "release": "11.el7_0", + "newVersion": "0.1.4", + "newRelease": "11.el7_0", + "arch": "x86_64", + "repository": "" + }, + "logrotate": { + "name": "logrotate", + "version": "3.8.6", + "release": "4.el7", + "newVersion": "3.8.6", + "newRelease": "19.el7", + "arch": "x86_64", + "repository": "rhui-REGION-rhel-server-releases" + }, + "lsof": { + "name": "lsof", + "version": "4.87", + "release": "6.el7", + "newVersion": "4.87", + "newRelease": "6.el7", + "arch": "x86_64", + "repository": "" + }, + "lua": { + "name": "lua", + "version": "5.1.4", + "release": "14.el7", + "newVersion": "5.1.4", + "newRelease": "15.el7", + "arch": "x86_64", + "repository": "rhui-REGION-rhel-server-releases" + }, + "lzo": { + "name": "lzo", + "version": "2.06", + "release": "6.el7_0.2", + "newVersion": "2.06", + "newRelease": "8.el7", + "arch": "x86_64", + "repository": "rhui-REGION-rhel-server-releases" + }, + "m2crypto": { + "name": "m2crypto", + "version": "0.21.1", + "release": "15.el7", + "newVersion": "0.21.1", + "newRelease": "17.el7", + "arch": "x86_64", + "repository": "rhui-REGION-rhel-server-releases" + }, + "make": { + "name": "make", + "version": "1:3.82", + "release": "21.el7", + "newVersion": "1:3.82", + "newRelease": "24.el7", + "arch": "x86_64", + "repository": "rhui-REGION-rhel-server-releases" + }, + "man-db": { + "name": "man-db", + "version": "2.6.3", + "release": "9.el7", + "newVersion": "2.6.3", + "newRelease": "11.el7", + "arch": "x86_64", + "repository": "rhui-REGION-rhel-server-releases" + }, + "mariadb-libs": { + "name": "mariadb-libs", + "version": "1:5.5.41", + "release": "2.el7_0", + "newVersion": "1:5.5.68", + "newRelease": "1.el7", + "arch": "x86_64", + "repository": "rhui-REGION-rhel-server-releases", + "AffectedProcs": [ + { + "pid": "1776", + "name": "master", + "listenPortStats": [ + { + "bindAddress": "127.0.0.1", + "port": "25", + "portReachableTo": [] + }, + { + "bindAddress": "[::1]", + "port": "25", + "portReachableTo": [] + } + ] + }, + { + "pid": "1786", + "name": "qmgr" + }, + { + "pid": "1785", + "name": "pickup" + } + ] + }, + "microcode_ctl": { + "name": "microcode_ctl", + "version": "2:2.1", + "release": "10.el7", + "newVersion": "2:2.1", + "newRelease": "73.8.el7_9", + "arch": "x86_64", + "repository": "rhui-REGION-rhel-server-releases" + }, + "mozjs17": { + "name": "mozjs17", + "version": "17.0.0", + "release": "10.el7", + "newVersion": "17.0.0", + "newRelease": "20.el7", + "arch": "x86_64", + "repository": "rhui-REGION-rhel-server-releases", + "AffectedProcs": [ + { + "pid": "490", + "name": "polkitd" + } + ] + }, + "ncurses": { + "name": "ncurses", + "version": "5.9", + "release": "13.20130511.el7", + "newVersion": "5.9", + "newRelease": "14.20130511.el7_4", + "arch": "x86_64", + "repository": "rhui-REGION-rhel-server-releases" + }, + "ncurses-base": { + "name": "ncurses-base", + "version": "5.9", + "release": "13.20130511.el7", + "newVersion": "5.9", + "newRelease": "14.20130511.el7_4", + "arch": "noarch", + "repository": "rhui-REGION-rhel-server-releases" + }, + "ncurses-libs": { + "name": "ncurses-libs", + "version": "5.9", + "release": "13.20130511.el7", + "newVersion": "5.9", + "newRelease": "14.20130511.el7_4", + "arch": "x86_64", + "repository": "rhui-REGION-rhel-server-releases", + "AffectedProcs": [ + { + "pid": "10843", + "name": "bash" + }, + { + "pid": "10866", + "name": "bash" + } + ] + }, + "net-tools": { + "name": "net-tools", + "version": "2.0", + "release": "0.17.20131004git.el7", + "newVersion": "2.0", + "newRelease": "0.25.20131004git.el7", + "arch": "x86_64", + "repository": "rhui-REGION-rhel-server-releases" + }, + "nettle": { + "name": "nettle", + "version": "2.7.1", + "release": "4.el7", + "newVersion": "2.7.1", + "newRelease": "8.el7", + "arch": "x86_64", + "repository": "rhui-REGION-rhel-server-releases" + }, + "newt": { + "name": "newt", + "version": "0.52.15", + "release": "4.el7", + "newVersion": "0.52.15", + "newRelease": "4.el7", + "arch": "x86_64", + "repository": "" + }, + "newt-python": { + "name": "newt-python", + "version": "0.52.15", + "release": "4.el7", + "newVersion": "0.52.15", + "newRelease": "4.el7", + "arch": "x86_64", + "repository": "" + }, + "nspr": { + "name": "nspr", + "version": "4.10.6", + "release": "3.el7", + "newVersion": "4.25.0", + "newRelease": "2.el7_9", + "arch": "x86_64", + "repository": "rhui-REGION-rhel-server-releases", + "AffectedProcs": [ + { + "pid": "10864", + "name": "sudo" + }, + { + "pid": "489", + "name": "dhclient" + }, + { + "pid": "10842", + "name": "sshd" + }, + { + "pid": "1776", + "name": "master", + "listenPortStats": [ + { + "bindAddress": "127.0.0.1", + "port": "25", + "portReachableTo": [] + }, + { + "bindAddress": "[::1]", + "port": "25", + "portReachableTo": [] + } + ] + }, + { + "pid": "1786", + "name": "qmgr" + }, + { + "pid": "1785", + "name": "pickup" + }, + { + "pid": "458", + "name": "NetworkManager" + }, + { + "pid": "10839", + "name": "sshd" + }, + { + "pid": "10698", + "name": "sshd" + }, + { + "pid": "3904", + "name": "sshd", + "listenPortStats": [ + { + "bindAddress": "*", + "port": "22", + "portReachableTo": [] + } + ] + }, + { + "pid": "10701", + "name": "sshd" + }, + { + "pid": "490", + "name": "polkitd" + } + ] + }, + "nss": { + "name": "nss", + "version": "3.16.2.3", + "release": "5.el7", + "newVersion": "3.53.1", + "newRelease": "3.el7_9", + "arch": "x86_64", + "repository": "rhui-REGION-rhel-server-releases", + "AffectedProcs": [ + { + "pid": "10864", + "name": "sudo" + }, + { + "pid": "489", + "name": "dhclient" + }, + { + "pid": "10842", + "name": "sshd" + }, + { + "pid": "1776", + "name": "master", + "listenPortStats": [ + { + "bindAddress": "127.0.0.1", + "port": "25", + "portReachableTo": [] + }, + { + "bindAddress": "[::1]", + "port": "25", + "portReachableTo": [] + } + ] + }, + { + "pid": "1786", + "name": "qmgr" + }, + { + "pid": "1785", + "name": "pickup" + }, + { + "pid": "458", + "name": "NetworkManager" + }, + { + "pid": "10839", + "name": "sshd" + }, + { + "pid": "10698", + "name": "sshd" + }, + { + "pid": "3904", + "name": "sshd", + "listenPortStats": [ + { + "bindAddress": "*", + "port": "22", + "portReachableTo": [] + } + ] + }, + { + "pid": "10701", + "name": "sshd" + } + ] + }, + "nss-softokn": { + "name": "nss-softokn", + "version": "3.16.2.3", + "release": "9.el7", + "newVersion": "3.53.1", + "newRelease": "6.el7_9", + "arch": "x86_64", + "repository": "rhui-REGION-rhel-server-releases" + }, + "nss-softokn-freebl": { + "name": "nss-softokn-freebl", + "version": "3.16.2.3", + "release": "9.el7", + "newVersion": "3.53.1", + "newRelease": "6.el7_9", + "arch": "x86_64", + "repository": "rhui-REGION-rhel-server-releases", + "AffectedProcs": [ + { + "pid": "10865", + "name": "su" + }, + { + "pid": "473", + "name": "chronyd" + }, + { + "pid": "10864", + "name": "sudo" + }, + { + "pid": "489", + "name": "dhclient" + }, + { + "pid": "10842", + "name": "sshd" + }, + { + "pid": "1776", + "name": "master", + "listenPortStats": [ + { + "bindAddress": "127.0.0.1", + "port": "25", + "portReachableTo": [] + }, + { + "bindAddress": "[::1]", + "port": "25", + "portReachableTo": [] + } + ] + }, + { + "pid": "1786", + "name": "qmgr" + }, + { + "pid": "1785", + "name": "pickup" + }, + { + "pid": "10839", + "name": "sshd" + }, + { + "pid": "10698", + "name": "sshd" + }, + { + "pid": "3904", + "name": "sshd", + "listenPortStats": [ + { + "bindAddress": "*", + "port": "22", + "portReachableTo": [] + } + ] + }, + { + "pid": "10701", + "name": "sshd" + } + ] + }, + "nss-sysinit": { + "name": "nss-sysinit", + "version": "3.16.2.3", + "release": "5.el7", + "newVersion": "3.53.1", + "newRelease": "3.el7_9", + "arch": "x86_64", + "repository": "rhui-REGION-rhel-server-releases" + }, + "nss-tools": { + "name": "nss-tools", + "version": "3.16.2.3", + "release": "5.el7", + "newVersion": "3.53.1", + "newRelease": "3.el7_9", + "arch": "x86_64", + "repository": "rhui-REGION-rhel-server-releases" + }, + "nss-util": { + "name": "nss-util", + "version": "3.16.2.3", + "release": "2.el7", + "newVersion": "3.53.1", + "newRelease": "1.el7_9", + "arch": "x86_64", + "repository": "rhui-REGION-rhel-server-releases", + "AffectedProcs": [ + { + "pid": "10864", + "name": "sudo" + }, + { + "pid": "489", + "name": "dhclient" + }, + { + "pid": "10842", + "name": "sshd" + }, + { + "pid": "1776", + "name": "master", + "listenPortStats": [ + { + "bindAddress": "127.0.0.1", + "port": "25", + "portReachableTo": [] + }, + { + "bindAddress": "[::1]", + "port": "25", + "portReachableTo": [] + } + ] + }, + { + "pid": "1786", + "name": "qmgr" + }, + { + "pid": "1785", + "name": "pickup" + }, + { + "pid": "458", + "name": "NetworkManager" + }, + { + "pid": "10839", + "name": "sshd" + }, + { + "pid": "10698", + "name": "sshd" + }, + { + "pid": "3904", + "name": "sshd", + "listenPortStats": [ + { + "bindAddress": "*", + "port": "22", + "portReachableTo": [] + } + ] + }, + { + "pid": "10701", + "name": "sshd" + } + ] + }, + "numactl-libs": { + "name": "numactl-libs", + "version": "2.0.9", + "release": "4.el7", + "newVersion": "2.0.12", + "newRelease": "5.el7", + "arch": "x86_64", + "repository": "rhui-REGION-rhel-server-releases" + }, + "openldap": { + "name": "openldap", + "version": "2.4.39", + "release": "6.el7", + "newVersion": "2.4.44", + "newRelease": "22.el7", + "arch": "x86_64", + "repository": "rhui-REGION-rhel-server-releases", + "AffectedProcs": [ + { + "pid": "10864", + "name": "sudo" + }, + { + "pid": "489", + "name": "dhclient" + }, + { + "pid": "10842", + "name": "sshd" + }, + { + "pid": "1776", + "name": "master", + "listenPortStats": [ + { + "bindAddress": "127.0.0.1", + "port": "25", + "portReachableTo": [] + }, + { + "bindAddress": "[::1]", + "port": "25", + "portReachableTo": [] + } + ] + }, + { + "pid": "1786", + "name": "qmgr" + }, + { + "pid": "1785", + "name": "pickup" + }, + { + "pid": "10839", + "name": "sshd" + }, + { + "pid": "10698", + "name": "sshd" + }, + { + "pid": "3904", + "name": "sshd", + "listenPortStats": [ + { + "bindAddress": "*", + "port": "22", + "portReachableTo": [] + } + ] + }, + { + "pid": "10701", + "name": "sshd" + } + ] + }, + "openssh": { + "name": "openssh", + "version": "6.6.1p1", + "release": "11.el7", + "newVersion": "7.4p1", + "newRelease": "21.el7", + "arch": "x86_64", + "repository": "rhui-REGION-rhel-server-releases" + }, + "openssh-clients": { + "name": "openssh-clients", + "version": "6.6.1p1", + "release": "11.el7", + "newVersion": "7.4p1", + "newRelease": "21.el7", + "arch": "x86_64", + "repository": "rhui-REGION-rhel-server-releases" + }, + "openssh-server": { + "name": "openssh-server", + "version": "6.6.1p1", + "release": "11.el7", + "newVersion": "7.4p1", + "newRelease": "21.el7", + "arch": "x86_64", + "repository": "rhui-REGION-rhel-server-releases", + "AffectedProcs": [ + { + "pid": "10842", + "name": "sshd" + }, + { + "pid": "10839", + "name": "sshd" + }, + { + "pid": "10698", + "name": "sshd" + }, + { + "pid": "3904", + "name": "sshd", + "listenPortStats": [ + { + "bindAddress": "*", + "port": "22", + "portReachableTo": [] + } + ] + }, + { + "pid": "10701", + "name": "sshd" + } + ] + }, + "openssl": { + "name": "openssl", + "version": "1:1.0.1e", + "release": "42.el7", + "newVersion": "1:1.0.2k", + "newRelease": "21.el7_9", + "arch": "x86_64", + "repository": "rhui-REGION-rhel-server-releases" + }, + "openssl-libs": { + "name": "openssl-libs", + "version": "1:1.0.1e", + "release": "42.el7", + "newVersion": "1:1.0.2k", + "newRelease": "21.el7_9", + "arch": "x86_64", + "repository": "rhui-REGION-rhel-server-releases", + "AffectedProcs": [ + { + "pid": "489", + "name": "dhclient" + }, + { + "pid": "10842", + "name": "sshd" + }, + { + "pid": "466", + "name": "tuned" + }, + { + "pid": "1776", + "name": "master", + "listenPortStats": [ + { + "bindAddress": "127.0.0.1", + "port": "25", + "portReachableTo": [] + }, + { + "bindAddress": "[::1]", + "port": "25", + "portReachableTo": [] + } + ] + }, + { + "pid": "1786", + "name": "qmgr" + }, + { + "pid": "1785", + "name": "pickup" + }, + { + "pid": "10839", + "name": "sshd" + }, + { + "pid": "10698", + "name": "sshd" + }, + { + "pid": "3904", + "name": "sshd", + "listenPortStats": [ + { + "bindAddress": "*", + "port": "22", + "portReachableTo": [] + } + ] + }, + { + "pid": "10701", + "name": "sshd" + } + ] + }, + "os-prober": { + "name": "os-prober", + "version": "1.58", + "release": "5.el7", + "newVersion": "1.58", + "newRelease": "9.el7", + "arch": "x86_64", + "repository": "rhui-REGION-rhel-server-releases" + }, + "p11-kit": { + "name": "p11-kit", + "version": "0.20.7", + "release": "3.el7", + "newVersion": "0.23.5", + "newRelease": "3.el7", + "arch": "x86_64", + "repository": "rhui-REGION-rhel-server-releases" + }, + "p11-kit-trust": { + "name": "p11-kit-trust", + "version": "0.20.7", + "release": "3.el7", + "newVersion": "0.23.5", + "newRelease": "3.el7", + "arch": "x86_64", + "repository": "rhui-REGION-rhel-server-releases" + }, + "pam": { + "name": "pam", + "version": "1.1.8", + "release": "12.el7", + "newVersion": "1.1.8", + "newRelease": "23.el7", + "arch": "x86_64", + "repository": "rhui-REGION-rhel-server-releases", + "AffectedProcs": [ + { + "pid": "10865", + "name": "su" + }, + { + "pid": "10864", + "name": "sudo" + }, + { + "pid": "474", + "name": "crond" + }, + { + "pid": "10842", + "name": "sshd" + }, + { + "pid": "1", + "name": "systemd" + }, + { + "pid": "10839", + "name": "sshd" + }, + { + "pid": "10698", + "name": "sshd" + }, + { + "pid": "3904", + "name": "sshd", + "listenPortStats": [ + { + "bindAddress": "*", + "port": "22", + "portReachableTo": [] + } + ] + }, + { + "pid": "10701", + "name": "sshd" + } + ] + }, + "parted": { + "name": "parted", + "version": "3.1", + "release": "20.el7", + "newVersion": "3.1", + "newRelease": "32.el7", + "arch": "x86_64", + "repository": "rhui-REGION-rhel-server-releases" + }, + "passwd": { + "name": "passwd", + "version": "0.79", + "release": "4.el7", + "newVersion": "0.79", + "newRelease": "6.el7", + "arch": "x86_64", + "repository": "rhui-REGION-rhel-server-releases" + }, + "pciutils-libs": { + "name": "pciutils-libs", + "version": "3.2.1", + "release": "4.el7", + "newVersion": "3.5.1", + "newRelease": "3.el7", + "arch": "x86_64", + "repository": "rhui-REGION-rhel-server-releases" + }, + "pcre": { + "name": "pcre", + "version": "8.32", + "release": "14.el7", + "newVersion": "8.32", + "newRelease": "17.el7", + "arch": "x86_64", + "repository": "rhui-REGION-rhel-server-releases", + "AffectedProcs": [ + { + "pid": "10865", + "name": "su" + }, + { + "pid": "10864", + "name": "sudo" + }, + { + "pid": "474", + "name": "crond" + }, + { + "pid": "489", + "name": "dhclient" + }, + { + "pid": "10842", + "name": "sshd" + }, + { + "pid": "466", + "name": "tuned" + }, + { + "pid": "1776", + "name": "master", + "listenPortStats": [ + { + "bindAddress": "127.0.0.1", + "port": "25", + "portReachableTo": [] + }, + { + "bindAddress": "[::1]", + "port": "25", + "portReachableTo": [] + } + ] + }, + { + "pid": "365", + "name": "systemd-udevd" + }, + { + "pid": "1", + "name": "systemd" + }, + { + "pid": "1786", + "name": "qmgr" + }, + { + "pid": "1785", + "name": "pickup" + }, + { + "pid": "458", + "name": "NetworkManager" + }, + { + "pid": "10839", + "name": "sshd" + }, + { + "pid": "360", + "name": "systemd-journal" + }, + { + "pid": "10698", + "name": "sshd" + }, + { + "pid": "3904", + "name": "sshd", + "listenPortStats": [ + { + "bindAddress": "*", + "port": "22", + "portReachableTo": [] + } + ] + }, + { + "pid": "469", + "name": "dbus-daemon" + }, + { + "pid": "468", + "name": "systemd-logind" + }, + { + "pid": "462", + "name": "rsyslogd" + }, + { + "pid": "10701", + "name": "sshd" + }, + { + "pid": "490", + "name": "polkitd" + }, + { + "pid": "402", + "name": "auditd" + } + ] + }, + "pinentry": { + "name": "pinentry", + "version": "0.8.1", + "release": "14.el7", + "newVersion": "0.8.1", + "newRelease": "17.el7", + "arch": "x86_64", + "repository": "rhui-REGION-rhel-server-releases" + }, + "pkgconfig": { + "name": "pkgconfig", + "version": "1:0.27.1", + "release": "4.el7", + "newVersion": "1:0.27.1", + "newRelease": "4.el7", + "arch": "x86_64", + "repository": "" + }, + "policycoreutils": { + "name": "policycoreutils", + "version": "2.2.5", + "release": "15.el7", + "newVersion": "2.5", + "newRelease": "34.el7", + "arch": "x86_64", + "repository": "rhui-REGION-rhel-server-releases" + }, + "policycoreutils-python": { + "name": "policycoreutils-python", + "version": "2.2.5", + "release": "15.el7", + "newVersion": "2.5", + "newRelease": "34.el7", + "arch": "x86_64", + "repository": "rhui-REGION-rhel-server-releases" + }, + "polkit": { + "name": "polkit", + "version": "0.112", + "release": "5.el7", + "newVersion": "0.112", + "newRelease": "26.el7", + "arch": "x86_64", + "repository": "rhui-REGION-rhel-server-releases", + "AffectedProcs": [ + { + "pid": "490", + "name": "polkitd" + } + ] + }, + "polkit-pkla-compat": { + "name": "polkit-pkla-compat", + "version": "0.1", + "release": "4.el7", + "newVersion": "0.1", + "newRelease": "4.el7", + "arch": "x86_64", + "repository": "" + }, + "popt": { + "name": "popt", + "version": "1.13", + "release": "16.el7", + "newVersion": "1.13", + "newRelease": "16.el7", + "arch": "x86_64", + "repository": "" + }, + "postfix": { + "name": "postfix", + "version": "2:2.10.1", + "release": "6.el7", + "newVersion": "2:2.10.1", + "newRelease": "9.el7", + "arch": "x86_64", + "repository": "rhui-REGION-rhel-server-releases", + "AffectedProcs": [ + { + "pid": "1776", + "name": "master", + "listenPortStats": [ + { + "bindAddress": "127.0.0.1", + "port": "25", + "portReachableTo": [] + }, + { + "bindAddress": "[::1]", + "port": "25", + "portReachableTo": [] + } + ] + }, + { + "pid": "1786", + "name": "qmgr" + }, + { + "pid": "1785", + "name": "pickup" + } + ] + }, + "ppp": { + "name": "ppp", + "version": "2.4.5", + "release": "33.el7", + "newVersion": "2.4.5", + "newRelease": "34.el7_7", + "arch": "x86_64", + "repository": "rhui-REGION-rhel-server-releases" + }, + "procps-ng": { + "name": "procps-ng", + "version": "3.3.10", + "release": "3.el7", + "newVersion": "3.3.10", + "newRelease": "28.el7", + "arch": "x86_64", + "repository": "rhui-REGION-rhel-server-releases" + }, + "pth": { + "name": "pth", + "version": "2.0.7", + "release": "22.el7", + "newVersion": "2.0.7", + "newRelease": "23.el7", + "arch": "x86_64", + "repository": "rhui-REGION-rhel-server-releases" + }, + "pyOpenSSL": { + "name": "pyOpenSSL", + "version": "0.13.1", + "release": "3.el7", + "newVersion": "0.13.1", + "newRelease": "4.el7", + "arch": "x86_64", + "repository": "rhui-REGION-rhel-server-releases" + }, + "pygobject2": { + "name": "pygobject2", + "version": "2.28.6", + "release": "11.el7", + "newVersion": "2.28.6", + "newRelease": "11.el7", + "arch": "x86_64", + "repository": "" + }, + "pygobject3-base": { + "name": "pygobject3-base", + "version": "3.8.2", + "release": "6.el7", + "newVersion": "3.14.0", + "newRelease": "3.el7", + "arch": "x86_64", + "repository": "rhui-REGION-rhel-server-releases", + "AffectedProcs": [ + { + "pid": "466", + "name": "tuned" + } + ] + }, + "pygpgme": { + "name": "pygpgme", + "version": "0.3", + "release": "9.el7", + "newVersion": "0.3", + "newRelease": "9.el7", + "arch": "x86_64", + "repository": "" + }, + "pyliblzma": { + "name": "pyliblzma", + "version": "0.5.3", + "release": "11.el7", + "newVersion": "0.5.3", + "newRelease": "11.el7", + "arch": "x86_64", + "repository": "" + }, + "python": { + "name": "python", + "version": "2.7.5", + "release": "16.el7", + "newVersion": "2.7.5", + "newRelease": "90.el7", + "arch": "x86_64", + "repository": "rhui-REGION-rhel-server-releases", + "AffectedProcs": [ + { + "pid": "466", + "name": "tuned" + } + ] + }, + "python-IPy": { + "name": "python-IPy", + "version": "0.75", + "release": "6.el7", + "newVersion": "0.75", + "newRelease": "6.el7", + "arch": "noarch", + "repository": "" + }, + "python-backports": { + "name": "python-backports", + "version": "1.0", + "release": "8.el7", + "newVersion": "1.0", + "newRelease": "8.el7", + "arch": "x86_64", + "repository": "" + }, + "python-backports-ssl_match_hostname": { + "name": "python-backports-ssl_match_hostname", + "version": "3.4.0.2", + "release": "4.el7", + "newVersion": "3.5.0.1", + "newRelease": "1.el7", + "arch": "noarch", + "repository": "rhui-REGION-rhel-server-releases" + }, + "python-chardet": { + "name": "python-chardet", + "version": "2.0.1", + "release": "7.el7", + "newVersion": "2.2.1", + "newRelease": "3.el7", + "arch": "noarch", + "repository": "rhui-REGION-rhel-server-releases" + }, + "python-configobj": { + "name": "python-configobj", + "version": "4.7.2", + "release": "7.el7", + "newVersion": "4.7.2", + "newRelease": "7.el7", + "arch": "noarch", + "repository": "" + }, + "python-dateutil": { + "name": "python-dateutil", + "version": "1.5", + "release": "7.el7", + "newVersion": "1.5", + "newRelease": "7.el7", + "arch": "noarch", + "repository": "" + }, + "python-decorator": { + "name": "python-decorator", + "version": "3.4.0", + "release": "3.el7", + "newVersion": "3.4.0", + "newRelease": "3.el7", + "arch": "noarch", + "repository": "" + }, + "python-dmidecode": { + "name": "python-dmidecode", + "version": "3.10.13", + "release": "11.el7", + "newVersion": "3.12.2", + "newRelease": "4.el7", + "arch": "x86_64", + "repository": "rhui-REGION-rhel-server-releases" + }, + "python-ethtool": { + "name": "python-ethtool", + "version": "0.8", + "release": "5.el7", + "newVersion": "0.8", + "newRelease": "8.el7", + "arch": "x86_64", + "repository": "rhui-REGION-rhel-server-releases" + }, + "python-gudev": { + "name": "python-gudev", + "version": "147.2", + "release": "7.el7", + "newVersion": "147.2", + "newRelease": "7.el7", + "arch": "x86_64", + "repository": "" + }, + "python-hwdata": { + "name": "python-hwdata", + "version": "1.7.3", + "release": "4.el7", + "newVersion": "1.7.3", + "newRelease": "4.el7", + "arch": "noarch", + "repository": "" + }, + "python-iniparse": { + "name": "python-iniparse", + "version": "0.4", + "release": "9.el7", + "newVersion": "0.4", + "newRelease": "9.el7", + "arch": "noarch", + "repository": "" + }, + "python-jsonpatch": { + "name": "python-jsonpatch", + "version": "1.2", + "release": "2.el7", + "newVersion": "1.2", + "newRelease": "4.el7", + "arch": "noarch", + "repository": "rhui-REGION-rhel-server-releases" + }, + "python-jsonpointer": { + "name": "python-jsonpointer", + "version": "1.0", + "release": "2.el7", + "newVersion": "1.9", + "newRelease": "2.el7", + "arch": "noarch", + "repository": "rhui-REGION-rhel-server-releases" + }, + "python-kitchen": { + "name": "python-kitchen", + "version": "1.1.1", + "release": "5.el7", + "newVersion": "1.1.1", + "newRelease": "5.el7", + "arch": "noarch", + "repository": "" + }, + "python-libs": { + "name": "python-libs", + "version": "2.7.5", + "release": "16.el7", + "newVersion": "2.7.5", + "newRelease": "90.el7", + "arch": "x86_64", + "repository": "rhui-REGION-rhel-server-releases", + "AffectedProcs": [ + { + "pid": "466", + "name": "tuned" + } + ] + }, + "python-lxml": { + "name": "python-lxml", + "version": "3.2.1", + "release": "4.el7", + "newVersion": "3.2.1", + "newRelease": "4.el7", + "arch": "x86_64", + "repository": "" + }, + "python-prettytable": { + "name": "python-prettytable", + "version": "0.7.2", + "release": "1.el7", + "newVersion": "0.7.2", + "newRelease": "3.el7", + "arch": "noarch", + "repository": "rhui-REGION-rhel-server-releases" + }, + "python-pycurl": { + "name": "python-pycurl", + "version": "7.19.0", + "release": "17.el7", + "newVersion": "7.19.0", + "newRelease": "19.el7", + "arch": "x86_64", + "repository": "rhui-REGION-rhel-server-releases" + }, + "python-pyudev": { + "name": "python-pyudev", + "version": "0.15", + "release": "6.el7", + "newVersion": "0.15", + "newRelease": "9.el7", + "arch": "noarch", + "repository": "rhui-REGION-rhel-server-releases" + }, + "python-requests": { + "name": "python-requests", + "version": "1.1.0", + "release": "8.el7", + "newVersion": "2.6.0", + "newRelease": "10.el7", + "arch": "noarch", + "repository": "rhui-REGION-rhel-server-releases" + }, + "python-rhsm": { + "name": "python-rhsm", + "version": "1.13.10", + "release": "1.el7", + "newVersion": "1.19.10", + "newRelease": "1.el7_4", + "arch": "x86_64", + "repository": "rhui-REGION-rhel-server-releases" + }, + "python-setuptools": { + "name": "python-setuptools", + "version": "0.9.8", + "release": "3.el7", + "newVersion": "0.9.8", + "newRelease": "7.el7", + "arch": "noarch", + "repository": "rhui-REGION-rhel-server-releases" + }, + "python-six": { + "name": "python-six", + "version": "1.7.3", + "release": "1.el7", + "newVersion": "1.9.0", + "newRelease": "2.el7", + "arch": "noarch", + "repository": "rhui-REGION-rhel-server-releases" + }, + "python-urlgrabber": { + "name": "python-urlgrabber", + "version": "3.10", + "release": "6.el7", + "newVersion": "3.10", + "newRelease": "10.el7", + "arch": "noarch", + "repository": "rhui-REGION-rhel-server-releases" + }, + "python-urllib3": { + "name": "python-urllib3", + "version": "1.5", + "release": "8.el7", + "newVersion": "1.10.2", + "newRelease": "7.el7", + "arch": "noarch", + "repository": "rhui-REGION-rhel-server-releases" + }, + "pyxattr": { + "name": "pyxattr", + "version": "0.5.1", + "release": "5.el7", + "newVersion": "0.5.1", + "newRelease": "5.el7", + "arch": "x86_64", + "repository": "" + }, + "qrencode-libs": { + "name": "qrencode-libs", + "version": "3.4.1", + "release": "3.el7", + "newVersion": "3.4.1", + "newRelease": "3.el7", + "arch": "x86_64", + "repository": "" + }, + "rdma": { + "name": "rdma", + "version": "7.1_3.17", + "release": "5.el7", + "newVersion": "7.3_4.7_rc2", + "newRelease": "6.el7_3", + "arch": "noarch", + "repository": "rhui-REGION-rhel-server-releases" + }, + "readline": { + "name": "readline", + "version": "6.2", + "release": "9.el7", + "newVersion": "6.2", + "newRelease": "11.el7", + "arch": "x86_64", + "repository": "rhui-REGION-rhel-server-releases" + }, + "redhat-logos": { + "name": "redhat-logos", + "version": "70.0.3", + "release": "4.el7", + "newVersion": "70.7.0", + "newRelease": "1.el7", + "arch": "noarch", + "repository": "rhui-REGION-rhel-server-releases" + }, + "redhat-release-server": { + "name": "redhat-release-server", + "version": "7.1", + "release": "1.el7", + "newVersion": "7.9", + "newRelease": "6.el7_9", + "arch": "x86_64", + "repository": "rhui-REGION-rhel-server-releases" + }, + "redhat-support-lib-python": { + "name": "redhat-support-lib-python", + "version": "0.9.7", + "release": "0.el7", + "newVersion": "0.12.1", + "newRelease": "1.el7", + "arch": "noarch", + "repository": "rhui-REGION-rhel-server-releases" + }, + "redhat-support-tool": { + "name": "redhat-support-tool", + "version": "0.9.7", + "release": "1.el7", + "newVersion": "0.12.2", + "newRelease": "1.el7", + "arch": "noarch", + "repository": "rhui-REGION-rhel-server-releases" + }, + "rh-amazon-rhui-client": { + "name": "rh-amazon-rhui-client", + "version": "2.2.118", + "release": "1.el7", + "newVersion": "3.0.40", + "newRelease": "1.el7", + "arch": "noarch", + "repository": "rhui-REGION-client-config-server-7" + }, + "rhn-check": { + "name": "rhn-check", + "version": "2.0.2", + "release": "6.el7", + "newVersion": "2.0.2", + "newRelease": "24.el7", + "arch": "noarch", + "repository": "rhui-REGION-rhel-server-releases" + }, + "rhn-client-tools": { + "name": "rhn-client-tools", + "version": "2.0.2", + "release": "6.el7", + "newVersion": "2.0.2", + "newRelease": "24.el7", + "arch": "noarch", + "repository": "rhui-REGION-rhel-server-releases" + }, + "rhn-setup": { + "name": "rhn-setup", + "version": "2.0.2", + "release": "6.el7", + "newVersion": "2.0.2", + "newRelease": "24.el7", + "arch": "noarch", + "repository": "rhui-REGION-rhel-server-releases" + }, + "rhnlib": { + "name": "rhnlib", + "version": "2.5.65", + "release": "2.el7", + "newVersion": "2.5.65", + "newRelease": "8.el7", + "arch": "noarch", + "repository": "rhui-REGION-rhel-server-releases" + }, + "rhnsd": { + "name": "rhnsd", + "version": "5.0.13", + "release": "3.el7", + "newVersion": "5.0.13", + "newRelease": "10.el7", + "arch": "x86_64", + "repository": "rhui-REGION-rhel-server-releases" + }, + "rootfiles": { + "name": "rootfiles", + "version": "8.1", + "release": "11.el7", + "newVersion": "8.1", + "newRelease": "11.el7", + "arch": "noarch", + "repository": "" + }, + "rpm": { + "name": "rpm", + "version": "4.11.1", + "release": "25.el7", + "newVersion": "4.11.3", + "newRelease": "45.el7", + "arch": "x86_64", + "repository": "rhui-REGION-rhel-server-releases" + }, + "rpm-build-libs": { + "name": "rpm-build-libs", + "version": "4.11.1", + "release": "25.el7", + "newVersion": "4.11.3", + "newRelease": "45.el7", + "arch": "x86_64", + "repository": "rhui-REGION-rhel-server-releases" + }, + "rpm-libs": { + "name": "rpm-libs", + "version": "4.11.1", + "release": "25.el7", + "newVersion": "4.11.3", + "newRelease": "45.el7", + "arch": "x86_64", + "repository": "rhui-REGION-rhel-server-releases" + }, + "rpm-python": { + "name": "rpm-python", + "version": "4.11.1", + "release": "25.el7", + "newVersion": "4.11.3", + "newRelease": "45.el7", + "arch": "x86_64", + "repository": "rhui-REGION-rhel-server-releases" + }, + "rsync": { + "name": "rsync", + "version": "3.0.9", + "release": "15.el7", + "newVersion": "3.1.2", + "newRelease": "10.el7", + "arch": "x86_64", + "repository": "rhui-REGION-rhel-server-releases" + }, + "rsyslog": { + "name": "rsyslog", + "version": "7.4.7", + "release": "7.el7_0", + "newVersion": "8.24.0", + "newRelease": "57.el7_9", + "arch": "x86_64", + "repository": "rhui-REGION-rhel-server-releases", + "AffectedProcs": [ + { + "pid": "462", + "name": "rsyslogd" + } + ] + }, + "sed": { + "name": "sed", + "version": "4.2.2", + "release": "5.el7", + "newVersion": "4.2.2", + "newRelease": "7.el7", + "arch": "x86_64", + "repository": "rhui-REGION-rhel-server-releases" + }, + "selinux-policy": { + "name": "selinux-policy", + "version": "3.13.1", + "release": "23.el7", + "newVersion": "3.13.1", + "newRelease": "268.el7_9.2", + "arch": "noarch", + "repository": "rhui-REGION-rhel-server-releases" + }, + "selinux-policy-targeted": { + "name": "selinux-policy-targeted", + "version": "3.13.1", + "release": "23.el7", + "newVersion": "3.13.1", + "newRelease": "268.el7_9.2", + "arch": "noarch", + "repository": "rhui-REGION-rhel-server-releases", + "AffectedProcs": [ + { + "pid": "365", + "name": "systemd-udevd" + }, + { + "pid": "1", + "name": "systemd" + } + ] + }, + "setools-libs": { + "name": "setools-libs", + "version": "3.3.7", + "release": "46.el7", + "newVersion": "3.3.8", + "newRelease": "4.el7", + "arch": "x86_64", + "repository": "rhui-REGION-rhel-server-releases" + }, + "setup": { + "name": "setup", + "version": "2.8.71", + "release": "5.el7", + "newVersion": "2.8.71", + "newRelease": "11.el7", + "arch": "noarch", + "repository": "rhui-REGION-rhel-server-releases" + }, + "shadow-utils": { + "name": "shadow-utils", + "version": "2:4.1.5.1", + "release": "18.el7", + "newVersion": "2:4.6", + "newRelease": "5.el7", + "arch": "x86_64", + "repository": "rhui-REGION-rhel-server-releases" + }, + "shared-mime-info": { + "name": "shared-mime-info", + "version": "1.1", + "release": "7.el7", + "newVersion": "1.8", + "newRelease": "5.el7", + "arch": "x86_64", + "repository": "rhui-REGION-rhel-server-releases" + }, + "slang": { + "name": "slang", + "version": "2.2.4", + "release": "11.el7", + "newVersion": "2.2.4", + "newRelease": "11.el7", + "arch": "x86_64", + "repository": "" + }, + "snappy": { + "name": "snappy", + "version": "1.1.0", + "release": "3.el7", + "newVersion": "1.1.0", + "newRelease": "3.el7", + "arch": "x86_64", + "repository": "" + }, + "sqlite": { + "name": "sqlite", + "version": "3.7.17", + "release": "4.el7", + "newVersion": "3.7.17", + "newRelease": "8.el7_7.1", + "arch": "x86_64", + "repository": "rhui-REGION-rhel-server-releases", + "AffectedProcs": [ + { + "pid": "458", + "name": "NetworkManager" + } + ] + }, + "subscription-manager": { + "name": "subscription-manager", + "version": "1.13.22", + "release": "1.el7", + "newVersion": "1.24.45", + "newRelease": "1.el7_9", + "arch": "x86_64", + "repository": "rhui-REGION-rhel-server-releases" + }, + "sudo": { + "name": "sudo", + "version": "1.8.6p7", + "release": "13.el7", + "newVersion": "1.8.23", + "newRelease": "10.el7_9.1", + "arch": "x86_64", + "repository": "rhui-REGION-rhel-server-releases", + "AffectedProcs": [ + { + "pid": "10864", + "name": "sudo" + } + ] + }, + "systemd": { + "name": "systemd", + "version": "208", + "release": "20.el7", + "newVersion": "219", + "newRelease": "78.el7_9.3", + "arch": "x86_64", + "repository": "rhui-REGION-rhel-server-releases", + "AffectedProcs": [ + { + "pid": "365", + "name": "systemd-udevd" + }, + { + "pid": "1", + "name": "systemd" + }, + { + "pid": "360", + "name": "systemd-journal" + }, + { + "pid": "468", + "name": "systemd-logind" + } + ] + }, + "systemd-libs": { + "name": "systemd-libs", + "version": "208", + "release": "20.el7", + "newVersion": "219", + "newRelease": "78.el7_9.3", + "arch": "x86_64", + "repository": "rhui-REGION-rhel-server-releases", + "AffectedProcs": [ + { + "pid": "10865", + "name": "su" + }, + { + "pid": "489", + "name": "dhclient" + }, + { + "pid": "10842", + "name": "sshd" + }, + { + "pid": "466", + "name": "tuned" + }, + { + "pid": "1", + "name": "systemd" + }, + { + "pid": "458", + "name": "NetworkManager" + }, + { + "pid": "10839", + "name": "sshd" + }, + { + "pid": "360", + "name": "systemd-journal" + }, + { + "pid": "10698", + "name": "sshd" + }, + { + "pid": "468", + "name": "systemd-logind" + }, + { + "pid": "462", + "name": "rsyslogd" + }, + { + "pid": "10701", + "name": "sshd" + }, + { + "pid": "490", + "name": "polkitd" + } + ] + }, + "systemd-sysv": { + "name": "systemd-sysv", + "version": "208", + "release": "20.el7", + "newVersion": "219", + "newRelease": "78.el7_9.3", + "arch": "x86_64", + "repository": "rhui-REGION-rhel-server-releases" + }, + "sysvinit-tools": { + "name": "sysvinit-tools", + "version": "2.88", + "release": "14.dsf.el7", + "newVersion": "2.88", + "newRelease": "14.dsf.el7", + "arch": "x86_64", + "repository": "" + }, + "tar": { + "name": "tar", + "version": "2:1.26", + "release": "29.el7", + "newVersion": "2:1.26", + "newRelease": "35.el7", + "arch": "x86_64", + "repository": "rhui-REGION-rhel-server-releases" + }, + "tcp_wrappers-libs": { + "name": "tcp_wrappers-libs", + "version": "7.6", + "release": "77.el7", + "newVersion": "7.6", + "newRelease": "77.el7", + "arch": "x86_64", + "repository": "", + "AffectedProcs": [ + { + "pid": "10842", + "name": "sshd" + }, + { + "pid": "1", + "name": "systemd" + }, + { + "pid": "10839", + "name": "sshd" + }, + { + "pid": "10698", + "name": "sshd" + }, + { + "pid": "3904", + "name": "sshd", + "listenPortStats": [ + { + "bindAddress": "*", + "port": "22", + "portReachableTo": [] + } + ] + }, + { + "pid": "10701", + "name": "sshd" + }, + { + "pid": "402", + "name": "auditd" + } + ] + }, + "teamd": { + "name": "teamd", + "version": "1.15", + "release": "1.el7", + "newVersion": "1.29", + "newRelease": "3.el7", + "arch": "x86_64", + "repository": "rhui-REGION-rhel-server-releases", + "AffectedProcs": [ + { + "pid": "458", + "name": "NetworkManager" + } + ] + }, + "trousers": { + "name": "trousers", + "version": "0.3.11.2", + "release": "3.el7", + "newVersion": "0.3.14", + "newRelease": "2.el7", + "arch": "x86_64", + "repository": "rhui-REGION-rhel-server-releases" + }, + "tuned": { + "name": "tuned", + "version": "2.4.1", + "release": "1.el7", + "newVersion": "2.11.0", + "newRelease": "11.el7_9", + "arch": "noarch", + "repository": "rhui-REGION-rhel-server-releases" + }, + "tzdata": { + "name": "tzdata", + "version": "2015a", + "release": "1.el7", + "newVersion": "2021a", + "newRelease": "1.el7", + "arch": "noarch", + "repository": "rhui-REGION-rhel-server-releases" + }, + "usermode": { + "name": "usermode", + "version": "1.111", + "release": "5.el7", + "newVersion": "1.111", + "newRelease": "6.el7", + "arch": "x86_64", + "repository": "rhui-REGION-rhel-server-releases" + }, + "ustr": { + "name": "ustr", + "version": "1.0.4", + "release": "16.el7", + "newVersion": "1.0.4", + "newRelease": "16.el7", + "arch": "x86_64", + "repository": "" + }, + "util-linux": { + "name": "util-linux", + "version": "2.23.2", + "release": "21.el7", + "newVersion": "2.23.2", + "newRelease": "65.el7_9.1", + "arch": "x86_64", + "repository": "rhui-REGION-rhel-server-releases", + "AffectedProcs": [ + { + "pid": "10865", + "name": "su" + }, + { + "pid": "476", + "name": "agetty" + }, + { + "pid": "475", + "name": "agetty" + } + ] + }, + "vim-minimal": { + "name": "vim-minimal", + "version": "2:7.4.160", + "release": "1.el7", + "newVersion": "2:7.4.629", + "newRelease": "8.el7_9", + "arch": "x86_64", + "repository": "rhui-REGION-rhel-server-releases" + }, + "virt-what": { + "name": "virt-what", + "version": "1.13", + "release": "5.el7", + "newVersion": "1.18", + "newRelease": "4.el7", + "arch": "x86_64", + "repository": "rhui-REGION-rhel-server-releases" + }, + "which": { + "name": "which", + "version": "2.20", + "release": "7.el7", + "newVersion": "2.20", + "newRelease": "7.el7", + "arch": "x86_64", + "repository": "" + }, + "wpa_supplicant": { + "name": "wpa_supplicant", + "version": "1:2.0", + "release": "13.el7_0", + "newVersion": "1:2.6", + "newRelease": "12.el7_9.2", + "arch": "x86_64", + "repository": "rhui-REGION-rhel-server-releases" + }, + "xdg-utils": { + "name": "xdg-utils", + "version": "1.1.0", + "release": "0.16.20120809git.el7", + "newVersion": "1.1.0", + "newRelease": "0.17.20120809git.el7", + "arch": "noarch", + "repository": "rhui-REGION-rhel-server-releases" + }, + "xfsprogs": { + "name": "xfsprogs", + "version": "3.2.1", + "release": "6.el7", + "newVersion": "4.5.0", + "newRelease": "22.el7", + "arch": "x86_64", + "repository": "rhui-REGION-rhel-server-releases" + }, + "xz": { + "name": "xz", + "version": "5.1.2", + "release": "9alpha.el7", + "newVersion": "5.2.2", + "newRelease": "1.el7", + "arch": "x86_64", + "repository": "rhui-REGION-rhel-server-releases" + }, + "xz-libs": { + "name": "xz-libs", + "version": "5.1.2", + "release": "9alpha.el7", + "newVersion": "5.2.2", + "newRelease": "1.el7", + "arch": "x86_64", + "repository": "rhui-REGION-rhel-server-releases", + "AffectedProcs": [ + { + "pid": "10865", + "name": "su" + }, + { + "pid": "10864", + "name": "sudo" + }, + { + "pid": "474", + "name": "crond" + }, + { + "pid": "489", + "name": "dhclient" + }, + { + "pid": "10842", + "name": "sshd" + }, + { + "pid": "466", + "name": "tuned" + }, + { + "pid": "1776", + "name": "master", + "listenPortStats": [ + { + "bindAddress": "127.0.0.1", + "port": "25", + "portReachableTo": [] + }, + { + "bindAddress": "[::1]", + "port": "25", + "portReachableTo": [] + } + ] + }, + { + "pid": "365", + "name": "systemd-udevd" + }, + { + "pid": "1", + "name": "systemd" + }, + { + "pid": "1786", + "name": "qmgr" + }, + { + "pid": "1785", + "name": "pickup" + }, + { + "pid": "458", + "name": "NetworkManager" + }, + { + "pid": "10839", + "name": "sshd" + }, + { + "pid": "360", + "name": "systemd-journal" + }, + { + "pid": "10698", + "name": "sshd" + }, + { + "pid": "3904", + "name": "sshd", + "listenPortStats": [ + { + "bindAddress": "*", + "port": "22", + "portReachableTo": [] + } + ] + }, + { + "pid": "469", + "name": "dbus-daemon" + }, + { + "pid": "468", + "name": "systemd-logind" + }, + { + "pid": "462", + "name": "rsyslogd" + }, + { + "pid": "10701", + "name": "sshd" + }, + { + "pid": "490", + "name": "polkitd" + }, + { + "pid": "402", + "name": "auditd" + } + ] + }, + "yum": { + "name": "yum", + "version": "3.4.3", + "release": "125.el7", + "newVersion": "3.4.3", + "newRelease": "168.el7", + "arch": "noarch", + "repository": "rhui-REGION-rhel-server-releases" + }, + "yum-metadata-parser": { + "name": "yum-metadata-parser", + "version": "1.1.4", + "release": "10.el7", + "newVersion": "1.1.4", + "newRelease": "10.el7", + "arch": "x86_64", + "repository": "" + }, + "yum-rhn-plugin": { + "name": "yum-rhn-plugin", + "version": "2.0.1", + "release": "5.el7", + "newVersion": "2.0.1", + "newRelease": "10.el7", + "arch": "noarch", + "repository": "rhui-REGION-rhel-server-releases" + }, + "yum-utils": { + "name": "yum-utils", + "version": "1.1.31", + "release": "29.el7", + "newVersion": "1.1.31", + "newRelease": "54.el7_8", + "arch": "noarch", + "repository": "rhui-REGION-rhel-server-releases" + }, + "zlib": { + "name": "zlib", + "version": "1.2.7", + "release": "13.el7", + "newVersion": "1.2.7", + "newRelease": "19.el7_9", + "arch": "x86_64", + "repository": "rhui-REGION-rhel-server-releases", + "AffectedProcs": [ + { + "pid": "10865", + "name": "su" + }, + { + "pid": "10864", + "name": "sudo" + }, + { + "pid": "489", + "name": "dhclient" + }, + { + "pid": "10842", + "name": "sshd" + }, + { + "pid": "466", + "name": "tuned" + }, + { + "pid": "1776", + "name": "master", + "listenPortStats": [ + { + "bindAddress": "127.0.0.1", + "port": "25", + "portReachableTo": [] + }, + { + "bindAddress": "[::1]", + "port": "25", + "portReachableTo": [] + } + ] + }, + { + "pid": "365", + "name": "systemd-udevd" + }, + { + "pid": "1", + "name": "systemd" + }, + { + "pid": "1786", + "name": "qmgr" + }, + { + "pid": "1785", + "name": "pickup" + }, + { + "pid": "458", + "name": "NetworkManager" + }, + { + "pid": "10839", + "name": "sshd" + }, + { + "pid": "10698", + "name": "sshd" + }, + { + "pid": "3904", + "name": "sshd", + "listenPortStats": [ + { + "bindAddress": "*", + "port": "22", + "portReachableTo": [] + } + ] + }, + { + "pid": "462", + "name": "rsyslogd" + }, + { + "pid": "10701", + "name": "sshd" + }, + { + "pid": "490", + "name": "polkitd" + } + ] + } + }, + "constant": { + "scan": { + "logDir": "/var/log/vuls", + "resultsDir": "/home/ubuntu/go/src/github.com/future-architect/vuls/results", + "default": { + "port": "22", + "scanMode": [ + "fast" + ] + }, + "servers": { + "rhel_71": { + "serverName": "rhel_71", + "user": "ec2-user", + "host": "18.179.9.114", + "port": "22", + "keyPath": "/home/ubuntu/.ssh/stg.pem", + "scanMode": [ + "fast-root" + ], + "wordpress": {} + } + }, + "cveDict": { + "Name": "cveDict", + "Type": "sqlite3", + "SQLite3Path": "/home/ubuntu/go/src/github.com/kotakanbe/go-cve-dictionary/cve.sqlite3", + "DebugSQL": false + }, + "ovalDict": { + "Name": "ovalDict", + "Type": "sqlite3", + "SQLite3Path": "/home/ubuntu/go/src/github.com/kotakanbe/goval-dictionary/oval.sqlite3", + "DebugSQL": false + }, + "gost": { + "Name": "gost", + "Type": "sqlite3", + "SQLite3Path": "/home/ubuntu/go/src/github.com/future-architect/vuls/gost.sqlite3", + "DebugSQL": false + }, + "exploit": { + "Name": "exploit", + "Type": "sqlite3", + "SQLite3Path": "/home/ubuntu/go/src/github.com/vulsio/go-exploitdb/go-exploitdb.sqlite3", + "DebugSQL": false + }, + "metasploit": { + "Name": "metasploit", + "Type": "sqlite3", + "SQLite3Path": "/home/ubuntu/go/src/github.com/takuzoo3868/go-msfdb/go-msfdb.sqlite3", + "DebugSQL": false + } + }, + "report": { + "default": {}, + "cveDict": { + "Name": "", + "Type": "", + "SQLite3Path": "", + "DebugSQL": false + }, + "ovalDict": { + "Name": "", + "Type": "", + "SQLite3Path": "", + "DebugSQL": false + }, + "gost": { + "Name": "", + "Type": "", + "SQLite3Path": "", + "DebugSQL": false + }, + "exploit": { + "Name": "", + "Type": "", + "SQLite3Path": "", + "DebugSQL": false + }, + "metasploit": { + "Name": "", + "Type": "", + "SQLite3Path": "", + "DebugSQL": false + } + } + } +} \ No newline at end of file diff --git a/integration/data/rhel_8.json b/integration/data/rhel_8.json new file mode 100755 index 00000000..19e43985 --- /dev/null +++ b/integration/data/rhel_8.json @@ -0,0 +1,6926 @@ +{ + "jsonVersion": 4, + "lang": "", + "serverUUID": "", + "serverName": "rhel_8", + "family": "redhat", + "release": "8.3", + "container": { + "containerID": "", + "name": "", + "image": "", + "type": "", + "uuid": "" + }, + "platform": { + "name": "aws", + "instanceID": "i-0a73d5d36c9a1c7c5" + }, + "ipv4Addrs": [ + "192.168.0.231" + ], + "scannedAt": "2021-03-24T15:31:23.265818493+09:00", + "scanMode": "fast-root mode", + "scannedVersion": "v0.15.9", + "scannedRevision": "build-20210324_123209_fc3b438", + "scannedBy": "dev", + "scannedVia": "remote", + "scannedIpv4Addrs": [ + "172.21.0.1", + "172.19.0.1", + "172.18.0.1", + "172.17.0.1", + "172.20.0.1" + ], + "reportedAt": "0001-01-01T00:00:00Z", + "reportedVersion": "", + "reportedRevision": "", + "reportedBy": "", + "errors": [], + "warnings": [], + "scannedCves": {}, + "runningKernel": { + "release": "4.18.0-240.1.1.el8_3.x86_64", + "version": "", + "rebootRequired": false + }, + "packages": { + "NetworkManager": { + "name": "NetworkManager", + "version": "1:1.26.0", + "release": "9.el8_3", + "newVersion": "1:1.26.0", + "newRelease": "13.el8_3", + "arch": "x86_64", + "repository": "rhel-8-baseos-rhui-rpms", + "AffectedProcs": [ + { + "pid": "849", + "name": "NetworkManager" + } + ] + }, + "NetworkManager-libnm": { + "name": "NetworkManager-libnm", + "version": "1:1.26.0", + "release": "9.el8_3", + "newVersion": "1:1.26.0", + "newRelease": "13.el8_3", + "arch": "x86_64", + "repository": "rhel-8-baseos-rhui-rpms" + }, + "NetworkManager-team": { + "name": "NetworkManager-team", + "version": "1:1.26.0", + "release": "9.el8_3", + "newVersion": "1:1.26.0", + "newRelease": "13.el8_3", + "arch": "x86_64", + "repository": "rhel-8-baseos-rhui-rpms", + "AffectedProcs": [ + { + "pid": "849", + "name": "NetworkManager" + } + ] + }, + "NetworkManager-tui": { + "name": "NetworkManager-tui", + "version": "1:1.26.0", + "release": "9.el8_3", + "newVersion": "1:1.26.0", + "newRelease": "13.el8_3", + "arch": "x86_64", + "repository": "rhel-8-baseos-rhui-rpms" + }, + "acl": { + "name": "acl", + "version": "2.2.53", + "release": "1.el8", + "newVersion": "2.2.53", + "newRelease": "1.el8", + "arch": "x86_64", + "repository": "" + }, + "audit": { + "name": "audit", + "version": "3.0", + "release": "0.17.20191104git1c2f876.el8", + "newVersion": "3.0", + "newRelease": "0.17.20191104git1c2f876.el8", + "arch": "x86_64", + "repository": "", + "AffectedProcs": [ + { + "pid": "646", + "name": "auditd" + } + ] + }, + "audit-libs": { + "name": "audit-libs", + "version": "3.0", + "release": "0.17.20191104git1c2f876.el8", + "newVersion": "3.0", + "newRelease": "0.17.20191104git1c2f876.el8", + "arch": "x86_64", + "repository": "", + "AffectedProcs": [ + { + "pid": "849", + "name": "NetworkManager" + }, + { + "pid": "4755", + "name": "(sd-pam)" + }, + { + "pid": "1", + "name": "systemd" + }, + { + "pid": "4761", + "name": "sshd" + }, + { + "pid": "1324", + "name": "sshd", + "listenPortStats": [ + { + "bindAddress": "*", + "port": "22", + "portReachableTo": [] + } + ] + }, + { + "pid": "4751", + "name": "systemd" + }, + { + "pid": "5017", + "name": "sshd" + }, + { + "pid": "4747", + "name": "sshd" + }, + { + "pid": "759", + "name": "sssd_be" + }, + { + "pid": "1101", + "name": "crond" + }, + { + "pid": "742", + "name": "dbus-daemon" + }, + { + "pid": "646", + "name": "auditd" + }, + { + "pid": "5014", + "name": "sshd" + } + ] + }, + "authselect": { + "name": "authselect", + "version": "1.2.1", + "release": "2.el8", + "newVersion": "1.2.1", + "newRelease": "2.el8", + "arch": "x86_64", + "repository": "" + }, + "authselect-compat": { + "name": "authselect-compat", + "version": "1.2.1", + "release": "2.el8", + "newVersion": "1.2.1", + "newRelease": "2.el8", + "arch": "x86_64", + "repository": "" + }, + "authselect-libs": { + "name": "authselect-libs", + "version": "1.2.1", + "release": "2.el8", + "newVersion": "1.2.1", + "newRelease": "2.el8", + "arch": "x86_64", + "repository": "" + }, + "basesystem": { + "name": "basesystem", + "version": "11", + "release": "5.el8", + "newVersion": "11", + "newRelease": "5.el8", + "arch": "noarch", + "repository": "" + }, + "bash": { + "name": "bash", + "version": "4.4.19", + "release": "12.el8", + "newVersion": "4.4.19", + "newRelease": "12.el8", + "arch": "x86_64", + "repository": "", + "AffectedProcs": [ + { + "pid": "5018", + "name": "bash" + }, + { + "pid": "7408", + "name": "sh" + } + ] + }, + "bind-export-libs": { + "name": "bind-export-libs", + "version": "32:9.11.20", + "release": "5.el8", + "newVersion": "32:9.11.20", + "newRelease": "5.el8_3.1", + "arch": "x86_64", + "repository": "rhel-8-baseos-rhui-rpms" + }, + "brotli": { + "name": "brotli", + "version": "1.0.6", + "release": "2.el8", + "newVersion": "1.0.6", + "newRelease": "2.el8", + "arch": "x86_64", + "repository": "", + "AffectedProcs": [ + { + "pid": "849", + "name": "NetworkManager" + }, + { + "pid": "762", + "name": "rngd" + } + ] + }, + "bzip2-libs": { + "name": "bzip2-libs", + "version": "1.0.6", + "release": "26.el8", + "newVersion": "1.0.6", + "newRelease": "26.el8", + "arch": "x86_64", + "repository": "", + "AffectedProcs": [ + { + "pid": "853", + "name": "tuned" + } + ] + }, + "c-ares": { + "name": "c-ares", + "version": "1.13.0", + "release": "5.el8", + "newVersion": "1.13.0", + "newRelease": "5.el8", + "arch": "x86_64", + "repository": "", + "AffectedProcs": [ + { + "pid": "759", + "name": "sssd_be" + } + ] + }, + "ca-certificates": { + "name": "ca-certificates", + "version": "2020.2.41", + "release": "80.0.el8_2", + "newVersion": "2020.2.41", + "newRelease": "80.0.el8_2", + "arch": "noarch", + "repository": "" + }, + "checkpolicy": { + "name": "checkpolicy", + "version": "2.9", + "release": "1.el8", + "newVersion": "2.9", + "newRelease": "1.el8", + "arch": "x86_64", + "repository": "" + }, + "chkconfig": { + "name": "chkconfig", + "version": "1.13", + "release": "2.el8", + "newVersion": "1.13", + "newRelease": "2.el8", + "arch": "x86_64", + "repository": "" + }, + "chrony": { + "name": "chrony", + "version": "3.5", + "release": "1.el8", + "newVersion": "3.5", + "newRelease": "1.el8", + "arch": "x86_64", + "repository": "", + "AffectedProcs": [ + { + "pid": "744", + "name": "chronyd" + } + ] + }, + "cloud-init": { + "name": "cloud-init", + "version": "19.4", + "release": "11.el8", + "newVersion": "19.4", + "newRelease": "11.el8_3.2", + "arch": "noarch", + "repository": "rhel-8-appstream-rhui-rpms" + }, + "cloud-utils-growpart": { + "name": "cloud-utils-growpart", + "version": "0.31", + "release": "1.el8", + "newVersion": "0.31", + "newRelease": "1.el8", + "arch": "noarch", + "repository": "" + }, + "coreutils": { + "name": "coreutils", + "version": "8.30", + "release": "8.el8", + "newVersion": "8.30", + "newRelease": "8.el8", + "arch": "x86_64", + "repository": "" + }, + "coreutils-common": { + "name": "coreutils-common", + "version": "8.30", + "release": "8.el8", + "newVersion": "8.30", + "newRelease": "8.el8", + "arch": "x86_64", + "repository": "" + }, + "cpio": { + "name": "cpio", + "version": "2.12", + "release": "8.el8", + "newVersion": "2.12", + "newRelease": "8.el8", + "arch": "x86_64", + "repository": "" + }, + "cracklib": { + "name": "cracklib", + "version": "2.9.6", + "release": "15.el8", + "newVersion": "2.9.6", + "newRelease": "15.el8", + "arch": "x86_64", + "repository": "", + "AffectedProcs": [ + { + "pid": "4761", + "name": "sshd" + }, + { + "pid": "5017", + "name": "sshd" + }, + { + "pid": "4747", + "name": "sshd" + }, + { + "pid": "5014", + "name": "sshd" + } + ] + }, + "cracklib-dicts": { + "name": "cracklib-dicts", + "version": "2.9.6", + "release": "15.el8", + "newVersion": "2.9.6", + "newRelease": "15.el8", + "arch": "x86_64", + "repository": "" + }, + "cronie": { + "name": "cronie", + "version": "1.5.2", + "release": "4.el8", + "newVersion": "1.5.2", + "newRelease": "4.el8", + "arch": "x86_64", + "repository": "", + "AffectedProcs": [ + { + "pid": "1101", + "name": "crond" + } + ] + }, + "cronie-anacron": { + "name": "cronie-anacron", + "version": "1.5.2", + "release": "4.el8", + "newVersion": "1.5.2", + "newRelease": "4.el8", + "arch": "x86_64", + "repository": "" + }, + "crontabs": { + "name": "crontabs", + "version": "1.11", + "release": "16.20150630git.el8", + "newVersion": "1.11", + "newRelease": "16.20150630git.el8", + "arch": "noarch", + "repository": "" + }, + "crypto-policies": { + "name": "crypto-policies", + "version": "20200713", + "release": "1.git51d1222.el8", + "newVersion": "20200713", + "newRelease": "1.git51d1222.el8", + "arch": "noarch", + "repository": "" + }, + "crypto-policies-scripts": { + "name": "crypto-policies-scripts", + "version": "20200713", + "release": "1.git51d1222.el8", + "newVersion": "20200713", + "newRelease": "1.git51d1222.el8", + "arch": "noarch", + "repository": "" + }, + "cryptsetup-libs": { + "name": "cryptsetup-libs", + "version": "2.3.3", + "release": "2.el8", + "newVersion": "2.3.3", + "newRelease": "2.el8", + "arch": "x86_64", + "repository": "", + "AffectedProcs": [ + { + "pid": "4755", + "name": "(sd-pam)" + }, + { + "pid": "1", + "name": "systemd" + }, + { + "pid": "4751", + "name": "systemd" + }, + { + "pid": "671", + "name": "systemd-udevd" + }, + { + "pid": "593", + "name": "systemd-journal" + }, + { + "pid": "802", + "name": "systemd-logind" + } + ] + }, + "curl": { + "name": "curl", + "version": "7.61.1", + "release": "14.el8", + "newVersion": "7.61.1", + "newRelease": "14.el8_3.1", + "arch": "x86_64", + "repository": "rhel-8-baseos-rhui-rpms" + }, + "cyrus-sasl-lib": { + "name": "cyrus-sasl-lib", + "version": "2.1.27", + "release": "5.el8", + "newVersion": "2.1.27", + "newRelease": "5.el8", + "arch": "x86_64", + "repository": "", + "AffectedProcs": [ + { + "pid": "849", + "name": "NetworkManager" + }, + { + "pid": "762", + "name": "rngd" + }, + { + "pid": "759", + "name": "sssd_be" + }, + { + "pid": "691", + "name": "sssd" + }, + { + "pid": "772", + "name": "sssd_nss" + } + ] + }, + "dbus": { + "name": "dbus", + "version": "1:1.12.8", + "release": "11.el8", + "newVersion": "1:1.12.8", + "newRelease": "12.el8_3", + "arch": "x86_64", + "repository": "rhel-8-baseos-rhui-rpms" + }, + "dbus-common": { + "name": "dbus-common", + "version": "1:1.12.8", + "release": "11.el8", + "newVersion": "1:1.12.8", + "newRelease": "12.el8_3", + "arch": "noarch", + "repository": "rhel-8-baseos-rhui-rpms" + }, + "dbus-daemon": { + "name": "dbus-daemon", + "version": "1:1.12.8", + "release": "11.el8", + "newVersion": "1:1.12.8", + "newRelease": "12.el8_3", + "arch": "x86_64", + "repository": "rhel-8-baseos-rhui-rpms", + "AffectedProcs": [ + { + "pid": "742", + "name": "dbus-daemon" + } + ] + }, + "dbus-glib": { + "name": "dbus-glib", + "version": "0.110", + "release": "2.el8", + "newVersion": "0.110", + "newRelease": "2.el8", + "arch": "x86_64", + "repository": "", + "AffectedProcs": [ + { + "pid": "853", + "name": "tuned" + } + ] + }, + "dbus-libs": { + "name": "dbus-libs", + "version": "1:1.12.8", + "release": "11.el8", + "newVersion": "1:1.12.8", + "newRelease": "12.el8_3", + "arch": "x86_64", + "repository": "rhel-8-baseos-rhui-rpms", + "AffectedProcs": [ + { + "pid": "849", + "name": "NetworkManager" + }, + { + "pid": "853", + "name": "tuned" + }, + { + "pid": "759", + "name": "sssd_be" + }, + { + "pid": "742", + "name": "dbus-daemon" + }, + { + "pid": "691", + "name": "sssd" + }, + { + "pid": "772", + "name": "sssd_nss" + } + ] + }, + "dbus-tools": { + "name": "dbus-tools", + "version": "1:1.12.8", + "release": "11.el8", + "newVersion": "1:1.12.8", + "newRelease": "12.el8_3", + "arch": "x86_64", + "repository": "rhel-8-baseos-rhui-rpms" + }, + "device-mapper": { + "name": "device-mapper", + "version": "8:1.02.171", + "release": "5.el8", + "newVersion": "8:1.02.171", + "newRelease": "5.el8_3.2", + "arch": "x86_64", + "repository": "rhel-8-baseos-rhui-rpms" + }, + "device-mapper-libs": { + "name": "device-mapper-libs", + "version": "8:1.02.171", + "release": "5.el8", + "newVersion": "8:1.02.171", + "newRelease": "5.el8_3.2", + "arch": "x86_64", + "repository": "rhel-8-baseos-rhui-rpms", + "AffectedProcs": [ + { + "pid": "4755", + "name": "(sd-pam)" + }, + { + "pid": "1", + "name": "systemd" + }, + { + "pid": "4751", + "name": "systemd" + }, + { + "pid": "671", + "name": "systemd-udevd" + }, + { + "pid": "593", + "name": "systemd-journal" + }, + { + "pid": "802", + "name": "systemd-logind" + } + ] + }, + "dhcp-client": { + "name": "dhcp-client", + "version": "12:4.3.6", + "release": "41.el8", + "newVersion": "12:4.3.6", + "newRelease": "41.el8", + "arch": "x86_64", + "repository": "" + }, + "dhcp-common": { + "name": "dhcp-common", + "version": "12:4.3.6", + "release": "41.el8", + "newVersion": "12:4.3.6", + "newRelease": "41.el8", + "arch": "noarch", + "repository": "" + }, + "dhcp-libs": { + "name": "dhcp-libs", + "version": "12:4.3.6", + "release": "41.el8", + "newVersion": "12:4.3.6", + "newRelease": "41.el8", + "arch": "x86_64", + "repository": "" + }, + "diffutils": { + "name": "diffutils", + "version": "3.6", + "release": "6.el8", + "newVersion": "3.6", + "newRelease": "6.el8", + "arch": "x86_64", + "repository": "" + }, + "dmidecode": { + "name": "dmidecode", + "version": "1:3.2", + "release": "6.el8", + "newVersion": "1:3.2", + "newRelease": "6.el8", + "arch": "x86_64", + "repository": "" + }, + "dnf": { + "name": "dnf", + "version": "4.2.23", + "release": "4.el8", + "newVersion": "4.2.23", + "newRelease": "4.el8", + "arch": "noarch", + "repository": "" + }, + "dnf-data": { + "name": "dnf-data", + "version": "4.2.23", + "release": "4.el8", + "newVersion": "4.2.23", + "newRelease": "4.el8", + "arch": "noarch", + "repository": "" + }, + "dnf-plugin-subscription-manager": { + "name": "dnf-plugin-subscription-manager", + "version": "1.27.16", + "release": "1.el8", + "newVersion": "1.27.18", + "newRelease": "1.el8_3", + "arch": "x86_64", + "repository": "rhel-8-baseos-rhui-rpms" + }, + "dnf-plugins-core": { + "name": "dnf-plugins-core", + "version": "4.0.17", + "release": "5.el8", + "newVersion": "4.0.17", + "newRelease": "5.el8", + "arch": "noarch", + "repository": "" + }, + "dracut": { + "name": "dracut", + "version": "049", + "release": "95.git20200804.el8", + "newVersion": "049", + "newRelease": "95.git20200804.el8_3.4", + "arch": "x86_64", + "repository": "rhel-8-baseos-rhui-rpms" + }, + "dracut-config-generic": { + "name": "dracut-config-generic", + "version": "049", + "release": "95.git20200804.el8", + "newVersion": "049", + "newRelease": "95.git20200804.el8_3.4", + "arch": "x86_64", + "repository": "rhel-8-baseos-rhui-rpms" + }, + "dracut-config-rescue": { + "name": "dracut-config-rescue", + "version": "049", + "release": "95.git20200804.el8", + "newVersion": "049", + "newRelease": "95.git20200804.el8_3.4", + "arch": "x86_64", + "repository": "rhel-8-baseos-rhui-rpms" + }, + "dracut-network": { + "name": "dracut-network", + "version": "049", + "release": "95.git20200804.el8", + "newVersion": "049", + "newRelease": "95.git20200804.el8_3.4", + "arch": "x86_64", + "repository": "rhel-8-baseos-rhui-rpms" + }, + "dracut-squash": { + "name": "dracut-squash", + "version": "049", + "release": "95.git20200804.el8", + "newVersion": "049", + "newRelease": "95.git20200804.el8_3.4", + "arch": "x86_64", + "repository": "rhel-8-baseos-rhui-rpms" + }, + "e2fsprogs": { + "name": "e2fsprogs", + "version": "1.45.6", + "release": "1.el8", + "newVersion": "1.45.6", + "newRelease": "1.el8", + "arch": "x86_64", + "repository": "" + }, + "e2fsprogs-libs": { + "name": "e2fsprogs-libs", + "version": "1.45.6", + "release": "1.el8", + "newVersion": "1.45.6", + "newRelease": "1.el8", + "arch": "x86_64", + "repository": "" + }, + "elfutils-debuginfod-client": { + "name": "elfutils-debuginfod-client", + "version": "0.180", + "release": "1.el8", + "newVersion": "0.180", + "newRelease": "1.el8", + "arch": "x86_64", + "repository": "" + }, + "elfutils-default-yama-scope": { + "name": "elfutils-default-yama-scope", + "version": "0.180", + "release": "1.el8", + "newVersion": "0.180", + "newRelease": "1.el8", + "arch": "noarch", + "repository": "" + }, + "elfutils-libelf": { + "name": "elfutils-libelf", + "version": "0.180", + "release": "1.el8", + "newVersion": "0.180", + "newRelease": "1.el8", + "arch": "x86_64", + "repository": "" + }, + "elfutils-libs": { + "name": "elfutils-libs", + "version": "0.180", + "release": "1.el8", + "newVersion": "0.180", + "newRelease": "1.el8", + "arch": "x86_64", + "repository": "" + }, + "ethtool": { + "name": "ethtool", + "version": "2:5.0", + "release": "2.el8", + "newVersion": "2:5.0", + "newRelease": "2.el8", + "arch": "x86_64", + "repository": "" + }, + "expat": { + "name": "expat", + "version": "2.2.5", + "release": "4.el8", + "newVersion": "2.2.5", + "newRelease": "4.el8", + "arch": "x86_64", + "repository": "", + "AffectedProcs": [ + { + "pid": "853", + "name": "tuned" + }, + { + "pid": "739", + "name": "polkitd" + }, + { + "pid": "742", + "name": "dbus-daemon" + } + ] + }, + "file": { + "name": "file", + "version": "5.33", + "release": "16.el8", + "newVersion": "5.33", + "newRelease": "16.el8", + "arch": "x86_64", + "repository": "" + }, + "file-libs": { + "name": "file-libs", + "version": "5.33", + "release": "16.el8", + "newVersion": "5.33", + "newRelease": "16.el8", + "arch": "x86_64", + "repository": "" + }, + "filesystem": { + "name": "filesystem", + "version": "3.8", + "release": "3.el8", + "newVersion": "3.8", + "newRelease": "3.el8", + "arch": "x86_64", + "repository": "" + }, + "findutils": { + "name": "findutils", + "version": "1:4.6.0", + "release": "20.el8", + "newVersion": "1:4.6.0", + "newRelease": "20.el8", + "arch": "x86_64", + "repository": "" + }, + "freetype": { + "name": "freetype", + "version": "2.9.1", + "release": "4.el8", + "newVersion": "2.9.1", + "newRelease": "4.el8_3.1", + "arch": "x86_64", + "repository": "rhel-8-baseos-rhui-rpms" + }, + "fuse-libs": { + "name": "fuse-libs", + "version": "2.9.7", + "release": "12.el8", + "newVersion": "2.9.7", + "newRelease": "12.el8", + "arch": "x86_64", + "repository": "" + }, + "gawk": { + "name": "gawk", + "version": "4.2.1", + "release": "1.el8", + "newVersion": "4.2.1", + "newRelease": "1.el8", + "arch": "x86_64", + "repository": "" + }, + "gdbm": { + "name": "gdbm", + "version": "1:1.18", + "release": "1.el8", + "newVersion": "1:1.18", + "newRelease": "1.el8", + "arch": "x86_64", + "repository": "" + }, + "gdbm-libs": { + "name": "gdbm-libs", + "version": "1:1.18", + "release": "1.el8", + "newVersion": "1:1.18", + "newRelease": "1.el8", + "arch": "x86_64", + "repository": "" + }, + "gdisk": { + "name": "gdisk", + "version": "1.0.3", + "release": "6.el8", + "newVersion": "1.0.3", + "newRelease": "6.el8", + "arch": "x86_64", + "repository": "" + }, + "geolite2-city": { + "name": "geolite2-city", + "version": "20180605", + "release": "1.el8", + "newVersion": "20180605", + "newRelease": "1.el8", + "arch": "noarch", + "repository": "" + }, + "geolite2-country": { + "name": "geolite2-country", + "version": "20180605", + "release": "1.el8", + "newVersion": "20180605", + "newRelease": "1.el8", + "arch": "noarch", + "repository": "" + }, + "gettext": { + "name": "gettext", + "version": "0.19.8.1", + "release": "17.el8", + "newVersion": "0.19.8.1", + "newRelease": "17.el8", + "arch": "x86_64", + "repository": "" + }, + "gettext-libs": { + "name": "gettext-libs", + "version": "0.19.8.1", + "release": "17.el8", + "newVersion": "0.19.8.1", + "newRelease": "17.el8", + "arch": "x86_64", + "repository": "" + }, + "glib2": { + "name": "glib2", + "version": "2.56.4", + "release": "8.el8", + "newVersion": "2.56.4", + "newRelease": "8.el8", + "arch": "x86_64", + "repository": "", + "AffectedProcs": [ + { + "pid": "849", + "name": "NetworkManager" + }, + { + "pid": "853", + "name": "tuned" + }, + { + "pid": "739", + "name": "polkitd" + }, + { + "pid": "759", + "name": "sssd_be" + }, + { + "pid": "691", + "name": "sssd" + }, + { + "pid": "772", + "name": "sssd_nss" + } + ] + }, + "glibc": { + "name": "glibc", + "version": "2.28", + "release": "127.el8", + "newVersion": "2.28", + "newRelease": "127.el8_3.2", + "arch": "x86_64", + "repository": "rhel-8-baseos-rhui-rpms", + "AffectedProcs": [ + { + "pid": "849", + "name": "NetworkManager" + }, + { + "pid": "744", + "name": "chronyd" + }, + { + "pid": "4755", + "name": "(sd-pam)" + }, + { + "pid": "1", + "name": "systemd" + }, + { + "pid": "4761", + "name": "sshd" + }, + { + "pid": "1100", + "name": "agetty" + }, + { + "pid": "5018", + "name": "bash" + }, + { + "pid": "1324", + "name": "sshd", + "listenPortStats": [ + { + "bindAddress": "*", + "port": "22", + "portReachableTo": [] + } + ] + }, + { + "pid": "853", + "name": "tuned" + }, + { + "pid": "1096", + "name": "rsyslogd" + }, + { + "pid": "4751", + "name": "systemd" + }, + { + "pid": "5017", + "name": "sshd" + }, + { + "pid": "739", + "name": "polkitd" + }, + { + "pid": "762", + "name": "rngd" + }, + { + "pid": "4747", + "name": "sshd" + }, + { + "pid": "671", + "name": "systemd-udevd" + }, + { + "pid": "759", + "name": "sssd_be" + }, + { + "pid": "1102", + "name": "agetty" + }, + { + "pid": "1101", + "name": "crond" + }, + { + "pid": "742", + "name": "dbus-daemon" + }, + { + "pid": "593", + "name": "systemd-journal" + }, + { + "pid": "802", + "name": "systemd-logind" + }, + { + "pid": "646", + "name": "auditd" + }, + { + "pid": "7408", + "name": "sh" + }, + { + "pid": "691", + "name": "sssd" + }, + { + "pid": "5014", + "name": "sshd" + }, + { + "pid": "772", + "name": "sssd_nss" + } + ] + }, + "glibc-common": { + "name": "glibc-common", + "version": "2.28", + "release": "127.el8", + "newVersion": "2.28", + "newRelease": "127.el8_3.2", + "arch": "x86_64", + "repository": "rhel-8-baseos-rhui-rpms", + "AffectedProcs": [ + { + "pid": "1102", + "name": "agetty" + } + ] + }, + "glibc-langpack-en": { + "name": "glibc-langpack-en", + "version": "2.28", + "release": "127.el8", + "newVersion": "2.28", + "newRelease": "127.el8_3.2", + "arch": "x86_64", + "repository": "rhel-8-baseos-rhui-rpms", + "AffectedProcs": [ + { + "pid": "849", + "name": "NetworkManager" + }, + { + "pid": "1100", + "name": "agetty" + }, + { + "pid": "5018", + "name": "bash" + }, + { + "pid": "853", + "name": "tuned" + }, + { + "pid": "759", + "name": "sssd_be" + }, + { + "pid": "1101", + "name": "crond" + }, + { + "pid": "7408", + "name": "sh" + }, + { + "pid": "691", + "name": "sssd" + }, + { + "pid": "772", + "name": "sssd_nss" + } + ] + }, + "gmp": { + "name": "gmp", + "version": "1:6.1.2", + "release": "10.el8", + "newVersion": "1:6.1.2", + "newRelease": "10.el8", + "arch": "x86_64", + "repository": "", + "AffectedProcs": [ + { + "pid": "849", + "name": "NetworkManager" + }, + { + "pid": "853", + "name": "tuned" + }, + { + "pid": "739", + "name": "polkitd" + }, + { + "pid": "759", + "name": "sssd_be" + }, + { + "pid": "691", + "name": "sssd" + }, + { + "pid": "772", + "name": "sssd_nss" + } + ] + }, + "gnupg2": { + "name": "gnupg2", + "version": "2.2.20", + "release": "2.el8", + "newVersion": "2.2.20", + "newRelease": "2.el8", + "arch": "x86_64", + "repository": "" + }, + "gnupg2-smime": { + "name": "gnupg2-smime", + "version": "2.2.20", + "release": "2.el8", + "newVersion": "2.2.20", + "newRelease": "2.el8", + "arch": "x86_64", + "repository": "" + }, + "gnutls": { + "name": "gnutls", + "version": "3.6.14", + "release": "6.el8", + "newVersion": "3.6.14", + "newRelease": "7.el8_3", + "arch": "x86_64", + "repository": "rhel-8-baseos-rhui-rpms", + "AffectedProcs": [ + { + "pid": "849", + "name": "NetworkManager" + }, + { + "pid": "853", + "name": "tuned" + }, + { + "pid": "739", + "name": "polkitd" + }, + { + "pid": "759", + "name": "sssd_be" + }, + { + "pid": "691", + "name": "sssd" + }, + { + "pid": "772", + "name": "sssd_nss" + } + ] + }, + "gobject-introspection": { + "name": "gobject-introspection", + "version": "1.56.1", + "release": "1.el8", + "newVersion": "1.56.1", + "newRelease": "1.el8", + "arch": "x86_64", + "repository": "", + "AffectedProcs": [ + { + "pid": "853", + "name": "tuned" + } + ] + }, + "gpg-pubkey": { + "name": "gpg-pubkey", + "version": "d4082792", + "release": "5b32db75", + "newVersion": "d4082792", + "newRelease": "5b32db75", + "arch": "(none)", + "repository": "" + }, + "gpgme": { + "name": "gpgme", + "version": "1.13.1", + "release": "3.el8", + "newVersion": "1.13.1", + "newRelease": "3.el8", + "arch": "x86_64", + "repository": "" + }, + "grep": { + "name": "grep", + "version": "3.1", + "release": "6.el8", + "newVersion": "3.1", + "newRelease": "6.el8", + "arch": "x86_64", + "repository": "" + }, + "groff-base": { + "name": "groff-base", + "version": "1.22.3", + "release": "18.el8", + "newVersion": "1.22.3", + "newRelease": "18.el8", + "arch": "x86_64", + "repository": "" + }, + "grub2-common": { + "name": "grub2-common", + "version": "1:2.02", + "release": "90.el8", + "newVersion": "1:2.02", + "newRelease": "90.el8_3.1", + "arch": "noarch", + "repository": "rhel-8-baseos-rhui-rpms" + }, + "grub2-pc": { + "name": "grub2-pc", + "version": "1:2.02", + "release": "90.el8", + "newVersion": "1:2.02", + "newRelease": "90.el8_3.1", + "arch": "x86_64", + "repository": "rhel-8-baseos-rhui-rpms" + }, + "grub2-pc-modules": { + "name": "grub2-pc-modules", + "version": "1:2.02", + "release": "90.el8", + "newVersion": "1:2.02", + "newRelease": "90.el8_3.1", + "arch": "noarch", + "repository": "rhel-8-baseos-rhui-rpms" + }, + "grub2-tools": { + "name": "grub2-tools", + "version": "1:2.02", + "release": "90.el8", + "newVersion": "1:2.02", + "newRelease": "90.el8_3.1", + "arch": "x86_64", + "repository": "rhel-8-baseos-rhui-rpms" + }, + "grub2-tools-extra": { + "name": "grub2-tools-extra", + "version": "1:2.02", + "release": "90.el8", + "newVersion": "1:2.02", + "newRelease": "90.el8_3.1", + "arch": "x86_64", + "repository": "rhel-8-baseos-rhui-rpms" + }, + "grub2-tools-minimal": { + "name": "grub2-tools-minimal", + "version": "1:2.02", + "release": "90.el8", + "newVersion": "1:2.02", + "newRelease": "90.el8_3.1", + "arch": "x86_64", + "repository": "rhel-8-baseos-rhui-rpms" + }, + "grubby": { + "name": "grubby", + "version": "8.40", + "release": "41.el8", + "newVersion": "8.40", + "newRelease": "41.el8", + "arch": "x86_64", + "repository": "" + }, + "gzip": { + "name": "gzip", + "version": "1.9", + "release": "9.el8", + "newVersion": "1.9", + "newRelease": "9.el8", + "arch": "x86_64", + "repository": "" + }, + "hardlink": { + "name": "hardlink", + "version": "1:1.3", + "release": "6.el8", + "newVersion": "1:1.3", + "newRelease": "6.el8", + "arch": "x86_64", + "repository": "" + }, + "hdparm": { + "name": "hdparm", + "version": "9.54", + "release": "2.el8", + "newVersion": "9.54", + "newRelease": "2.el8", + "arch": "x86_64", + "repository": "" + }, + "hostname": { + "name": "hostname", + "version": "3.20", + "release": "6.el8", + "newVersion": "3.20", + "newRelease": "6.el8", + "arch": "x86_64", + "repository": "" + }, + "hwdata": { + "name": "hwdata", + "version": "0.314", + "release": "8.6.el8", + "newVersion": "0.314", + "newRelease": "8.6.el8", + "arch": "noarch", + "repository": "" + }, + "ima-evm-utils": { + "name": "ima-evm-utils", + "version": "1.1", + "release": "5.el8", + "newVersion": "1.1", + "newRelease": "5.el8", + "arch": "x86_64", + "repository": "" + }, + "info": { + "name": "info", + "version": "6.5", + "release": "6.el8", + "newVersion": "6.5", + "newRelease": "6.el8", + "arch": "x86_64", + "repository": "" + }, + "initscripts": { + "name": "initscripts", + "version": "10.00.9", + "release": "1.el8", + "newVersion": "10.00.9", + "newRelease": "1.el8", + "arch": "x86_64", + "repository": "" + }, + "insights-client": { + "name": "insights-client", + "version": "3.1.0", + "release": "3.el8", + "newVersion": "3.1.1", + "newRelease": "1.el8_3", + "arch": "noarch", + "repository": "rhel-8-appstream-rhui-rpms" + }, + "ipcalc": { + "name": "ipcalc", + "version": "0.2.4", + "release": "4.el8", + "newVersion": "0.2.4", + "newRelease": "4.el8", + "arch": "x86_64", + "repository": "" + }, + "iproute": { + "name": "iproute", + "version": "5.3.0", + "release": "5.el8", + "newVersion": "5.3.0", + "newRelease": "5.el8", + "arch": "x86_64", + "repository": "" + }, + "iptables-libs": { + "name": "iptables-libs", + "version": "1.8.4", + "release": "15.el8", + "newVersion": "1.8.4", + "newRelease": "15.el8_3.3", + "arch": "x86_64", + "repository": "rhel-8-baseos-rhui-rpms", + "AffectedProcs": [ + { + "pid": "4755", + "name": "(sd-pam)" + }, + { + "pid": "1", + "name": "systemd" + }, + { + "pid": "4751", + "name": "systemd" + }, + { + "pid": "671", + "name": "systemd-udevd" + }, + { + "pid": "593", + "name": "systemd-journal" + }, + { + "pid": "802", + "name": "systemd-logind" + } + ] + }, + "iputils": { + "name": "iputils", + "version": "20180629", + "release": "2.el8", + "newVersion": "20180629", + "newRelease": "2.el8", + "arch": "x86_64", + "repository": "" + }, + "irqbalance": { + "name": "irqbalance", + "version": "2:1.4.0", + "release": "4.el8", + "newVersion": "2:1.4.0", + "newRelease": "4.el8", + "arch": "x86_64", + "repository": "" + }, + "jansson": { + "name": "jansson", + "version": "2.11", + "release": "3.el8", + "newVersion": "2.11", + "newRelease": "3.el8", + "arch": "x86_64", + "repository": "", + "AffectedProcs": [ + { + "pid": "849", + "name": "NetworkManager" + } + ] + }, + "json-c": { + "name": "json-c", + "version": "0.13.1", + "release": "0.2.el8", + "newVersion": "0.13.1", + "newRelease": "0.2.el8", + "arch": "x86_64", + "repository": "", + "AffectedProcs": [ + { + "pid": "4755", + "name": "(sd-pam)" + }, + { + "pid": "1", + "name": "systemd" + }, + { + "pid": "4751", + "name": "systemd" + }, + { + "pid": "671", + "name": "systemd-udevd" + }, + { + "pid": "593", + "name": "systemd-journal" + }, + { + "pid": "802", + "name": "systemd-logind" + } + ] + }, + "json-glib": { + "name": "json-glib", + "version": "1.4.4", + "release": "1.el8", + "newVersion": "1.4.4", + "newRelease": "1.el8", + "arch": "x86_64", + "repository": "" + }, + "kbd": { + "name": "kbd", + "version": "2.0.4", + "release": "10.el8", + "newVersion": "2.0.4", + "newRelease": "10.el8", + "arch": "x86_64", + "repository": "" + }, + "kbd-legacy": { + "name": "kbd-legacy", + "version": "2.0.4", + "release": "10.el8", + "newVersion": "2.0.4", + "newRelease": "10.el8", + "arch": "noarch", + "repository": "" + }, + "kbd-misc": { + "name": "kbd-misc", + "version": "2.0.4", + "release": "10.el8", + "newVersion": "2.0.4", + "newRelease": "10.el8", + "arch": "noarch", + "repository": "" + }, + "kernel": { + "name": "kernel", + "version": "4.18.0", + "release": "240.1.1.el8_3", + "newVersion": "4.18.0", + "newRelease": "240.8.1.el8_3", + "arch": "x86_64", + "repository": "rhel-8-baseos-rhui-rpms" + }, + "kernel-core": { + "name": "kernel-core", + "version": "4.18.0", + "release": "240.1.1.el8_3", + "newVersion": "4.18.0", + "newRelease": "240.8.1.el8_3", + "arch": "x86_64", + "repository": "rhel-8-baseos-rhui-rpms" + }, + "kernel-modules": { + "name": "kernel-modules", + "version": "4.18.0", + "release": "240.1.1.el8_3", + "newVersion": "4.18.0", + "newRelease": "240.8.1.el8_3", + "arch": "x86_64", + "repository": "rhel-8-baseos-rhui-rpms" + }, + "kernel-tools": { + "name": "kernel-tools", + "version": "4.18.0", + "release": "240.1.1.el8_3", + "newVersion": "4.18.0", + "newRelease": "240.8.1.el8_3", + "arch": "x86_64", + "repository": "rhel-8-baseos-rhui-rpms" + }, + "kernel-tools-libs": { + "name": "kernel-tools-libs", + "version": "4.18.0", + "release": "240.1.1.el8_3", + "newVersion": "4.18.0", + "newRelease": "240.8.1.el8_3", + "arch": "x86_64", + "repository": "rhel-8-baseos-rhui-rpms" + }, + "kexec-tools": { + "name": "kexec-tools", + "version": "2.0.20", + "release": "34.el8", + "newVersion": "2.0.20", + "newRelease": "34.el8_3.2", + "arch": "x86_64", + "repository": "rhel-8-baseos-rhui-rpms" + }, + "keyutils-libs": { + "name": "keyutils-libs", + "version": "1.5.10", + "release": "6.el8", + "newVersion": "1.5.10", + "newRelease": "6.el8", + "arch": "x86_64", + "repository": "", + "AffectedProcs": [ + { + "pid": "849", + "name": "NetworkManager" + }, + { + "pid": "4755", + "name": "(sd-pam)" + }, + { + "pid": "4761", + "name": "sshd" + }, + { + "pid": "1324", + "name": "sshd", + "listenPortStats": [ + { + "bindAddress": "*", + "port": "22", + "portReachableTo": [] + } + ] + }, + { + "pid": "5017", + "name": "sshd" + }, + { + "pid": "762", + "name": "rngd" + }, + { + "pid": "4747", + "name": "sshd" + }, + { + "pid": "759", + "name": "sssd_be" + }, + { + "pid": "646", + "name": "auditd" + }, + { + "pid": "691", + "name": "sssd" + }, + { + "pid": "5014", + "name": "sshd" + }, + { + "pid": "772", + "name": "sssd_nss" + } + ] + }, + "kmod": { + "name": "kmod", + "version": "25", + "release": "16.el8", + "newVersion": "25", + "newRelease": "16.el8_3.1", + "arch": "x86_64", + "repository": "rhel-8-baseos-rhui-rpms" + }, + "kmod-libs": { + "name": "kmod-libs", + "version": "25", + "release": "16.el8", + "newVersion": "25", + "newRelease": "16.el8_3.1", + "arch": "x86_64", + "repository": "rhel-8-baseos-rhui-rpms", + "AffectedProcs": [ + { + "pid": "4755", + "name": "(sd-pam)" + }, + { + "pid": "1", + "name": "systemd" + }, + { + "pid": "4751", + "name": "systemd" + }, + { + "pid": "671", + "name": "systemd-udevd" + } + ] + }, + "kpartx": { + "name": "kpartx", + "version": "0.8.4", + "release": "5.el8", + "newVersion": "0.8.4", + "newRelease": "5.el8", + "arch": "x86_64", + "repository": "" + }, + "krb5-libs": { + "name": "krb5-libs", + "version": "1.18.2", + "release": "5.el8", + "newVersion": "1.18.2", + "newRelease": "5.el8", + "arch": "x86_64", + "repository": "", + "AffectedProcs": [ + { + "pid": "849", + "name": "NetworkManager" + }, + { + "pid": "4755", + "name": "(sd-pam)" + }, + { + "pid": "4761", + "name": "sshd" + }, + { + "pid": "1324", + "name": "sshd", + "listenPortStats": [ + { + "bindAddress": "*", + "port": "22", + "portReachableTo": [] + } + ] + }, + { + "pid": "5017", + "name": "sshd" + }, + { + "pid": "762", + "name": "rngd" + }, + { + "pid": "4747", + "name": "sshd" + }, + { + "pid": "759", + "name": "sssd_be" + }, + { + "pid": "646", + "name": "auditd" + }, + { + "pid": "691", + "name": "sssd" + }, + { + "pid": "5014", + "name": "sshd" + }, + { + "pid": "772", + "name": "sssd_nss" + } + ] + }, + "langpacks-en": { + "name": "langpacks-en", + "version": "1.0", + "release": "12.el8", + "newVersion": "1.0", + "newRelease": "12.el8", + "arch": "noarch", + "repository": "" + }, + "less": { + "name": "less", + "version": "530", + "release": "1.el8", + "newVersion": "530", + "newRelease": "1.el8", + "arch": "x86_64", + "repository": "" + }, + "libacl": { + "name": "libacl", + "version": "2.2.53", + "release": "1.el8", + "newVersion": "2.2.53", + "newRelease": "1.el8", + "arch": "x86_64", + "repository": "", + "AffectedProcs": [ + { + "pid": "4755", + "name": "(sd-pam)" + }, + { + "pid": "1", + "name": "systemd" + }, + { + "pid": "4751", + "name": "systemd" + }, + { + "pid": "671", + "name": "systemd-udevd" + }, + { + "pid": "593", + "name": "systemd-journal" + }, + { + "pid": "802", + "name": "systemd-logind" + } + ] + }, + "libarchive": { + "name": "libarchive", + "version": "3.3.2", + "release": "9.el8", + "newVersion": "3.3.2", + "newRelease": "9.el8", + "arch": "x86_64", + "repository": "" + }, + "libassuan": { + "name": "libassuan", + "version": "2.5.1", + "release": "3.el8", + "newVersion": "2.5.1", + "newRelease": "3.el8", + "arch": "x86_64", + "repository": "" + }, + "libattr": { + "name": "libattr", + "version": "2.4.48", + "release": "3.el8", + "newVersion": "2.4.48", + "newRelease": "3.el8", + "arch": "x86_64", + "repository": "", + "AffectedProcs": [ + { + "pid": "4755", + "name": "(sd-pam)" + }, + { + "pid": "1", + "name": "systemd" + }, + { + "pid": "4751", + "name": "systemd" + }, + { + "pid": "671", + "name": "systemd-udevd" + }, + { + "pid": "593", + "name": "systemd-journal" + }, + { + "pid": "802", + "name": "systemd-logind" + } + ] + }, + "libbasicobjects": { + "name": "libbasicobjects", + "version": "0.1.1", + "release": "39.el8", + "newVersion": "0.1.1", + "newRelease": "39.el8", + "arch": "x86_64", + "repository": "", + "AffectedProcs": [ + { + "pid": "759", + "name": "sssd_be" + }, + { + "pid": "691", + "name": "sssd" + }, + { + "pid": "772", + "name": "sssd_nss" + } + ] + }, + "libblkid": { + "name": "libblkid", + "version": "2.32.1", + "release": "24.el8", + "newVersion": "2.32.1", + "newRelease": "24.el8", + "arch": "x86_64", + "repository": "", + "AffectedProcs": [ + { + "pid": "849", + "name": "NetworkManager" + }, + { + "pid": "744", + "name": "chronyd" + }, + { + "pid": "4755", + "name": "(sd-pam)" + }, + { + "pid": "1", + "name": "systemd" + }, + { + "pid": "4761", + "name": "sshd" + }, + { + "pid": "1324", + "name": "sshd", + "listenPortStats": [ + { + "bindAddress": "*", + "port": "22", + "portReachableTo": [] + } + ] + }, + { + "pid": "853", + "name": "tuned" + }, + { + "pid": "1096", + "name": "rsyslogd" + }, + { + "pid": "4751", + "name": "systemd" + }, + { + "pid": "5017", + "name": "sshd" + }, + { + "pid": "739", + "name": "polkitd" + }, + { + "pid": "4747", + "name": "sshd" + }, + { + "pid": "671", + "name": "systemd-udevd" + }, + { + "pid": "759", + "name": "sssd_be" + }, + { + "pid": "742", + "name": "dbus-daemon" + }, + { + "pid": "593", + "name": "systemd-journal" + }, + { + "pid": "802", + "name": "systemd-logind" + }, + { + "pid": "691", + "name": "sssd" + }, + { + "pid": "5014", + "name": "sshd" + }, + { + "pid": "772", + "name": "sssd_nss" + } + ] + }, + "libcap": { + "name": "libcap", + "version": "2.26", + "release": "4.el8", + "newVersion": "2.26", + "newRelease": "4.el8", + "arch": "x86_64", + "repository": "", + "AffectedProcs": [ + { + "pid": "849", + "name": "NetworkManager" + }, + { + "pid": "744", + "name": "chronyd" + }, + { + "pid": "4755", + "name": "(sd-pam)" + }, + { + "pid": "1", + "name": "systemd" + }, + { + "pid": "4761", + "name": "sshd" + }, + { + "pid": "1324", + "name": "sshd", + "listenPortStats": [ + { + "bindAddress": "*", + "port": "22", + "portReachableTo": [] + } + ] + }, + { + "pid": "853", + "name": "tuned" + }, + { + "pid": "1096", + "name": "rsyslogd" + }, + { + "pid": "4751", + "name": "systemd" + }, + { + "pid": "5017", + "name": "sshd" + }, + { + "pid": "739", + "name": "polkitd" + }, + { + "pid": "4747", + "name": "sshd" + }, + { + "pid": "671", + "name": "systemd-udevd" + }, + { + "pid": "759", + "name": "sssd_be" + }, + { + "pid": "742", + "name": "dbus-daemon" + }, + { + "pid": "593", + "name": "systemd-journal" + }, + { + "pid": "802", + "name": "systemd-logind" + }, + { + "pid": "691", + "name": "sssd" + }, + { + "pid": "5014", + "name": "sshd" + }, + { + "pid": "772", + "name": "sssd_nss" + } + ] + }, + "libcap-ng": { + "name": "libcap-ng", + "version": "0.7.9", + "release": "5.el8", + "newVersion": "0.7.9", + "newRelease": "5.el8", + "arch": "x86_64", + "repository": "", + "AffectedProcs": [ + { + "pid": "849", + "name": "NetworkManager" + }, + { + "pid": "4755", + "name": "(sd-pam)" + }, + { + "pid": "1", + "name": "systemd" + }, + { + "pid": "4761", + "name": "sshd" + }, + { + "pid": "1324", + "name": "sshd", + "listenPortStats": [ + { + "bindAddress": "*", + "port": "22", + "portReachableTo": [] + } + ] + }, + { + "pid": "4751", + "name": "systemd" + }, + { + "pid": "5017", + "name": "sshd" + }, + { + "pid": "4747", + "name": "sshd" + }, + { + "pid": "759", + "name": "sssd_be" + }, + { + "pid": "1101", + "name": "crond" + }, + { + "pid": "742", + "name": "dbus-daemon" + }, + { + "pid": "646", + "name": "auditd" + }, + { + "pid": "5014", + "name": "sshd" + } + ] + }, + "libcollection": { + "name": "libcollection", + "version": "0.7.0", + "release": "39.el8", + "newVersion": "0.7.0", + "newRelease": "39.el8", + "arch": "x86_64", + "repository": "", + "AffectedProcs": [ + { + "pid": "759", + "name": "sssd_be" + }, + { + "pid": "691", + "name": "sssd" + }, + { + "pid": "772", + "name": "sssd_nss" + } + ] + }, + "libcom_err": { + "name": "libcom_err", + "version": "1.45.6", + "release": "1.el8", + "newVersion": "1.45.6", + "newRelease": "1.el8", + "arch": "x86_64", + "repository": "", + "AffectedProcs": [ + { + "pid": "849", + "name": "NetworkManager" + }, + { + "pid": "4755", + "name": "(sd-pam)" + }, + { + "pid": "4761", + "name": "sshd" + }, + { + "pid": "1324", + "name": "sshd", + "listenPortStats": [ + { + "bindAddress": "*", + "port": "22", + "portReachableTo": [] + } + ] + }, + { + "pid": "5017", + "name": "sshd" + }, + { + "pid": "762", + "name": "rngd" + }, + { + "pid": "4747", + "name": "sshd" + }, + { + "pid": "759", + "name": "sssd_be" + }, + { + "pid": "646", + "name": "auditd" + }, + { + "pid": "691", + "name": "sssd" + }, + { + "pid": "5014", + "name": "sshd" + }, + { + "pid": "772", + "name": "sssd_nss" + } + ] + }, + "libcomps": { + "name": "libcomps", + "version": "0.1.11", + "release": "4.el8", + "newVersion": "0.1.11", + "newRelease": "4.el8", + "arch": "x86_64", + "repository": "" + }, + "libcroco": { + "name": "libcroco", + "version": "0.6.12", + "release": "4.el8_2.1", + "newVersion": "0.6.12", + "newRelease": "4.el8_2.1", + "arch": "x86_64", + "repository": "" + }, + "libcurl": { + "name": "libcurl", + "version": "7.61.1", + "release": "14.el8", + "newVersion": "7.61.1", + "newRelease": "14.el8_3.1", + "arch": "x86_64", + "repository": "rhel-8-baseos-rhui-rpms", + "AffectedProcs": [ + { + "pid": "849", + "name": "NetworkManager" + }, + { + "pid": "762", + "name": "rngd" + } + ] + }, + "libdaemon": { + "name": "libdaemon", + "version": "0.14", + "release": "15.el8", + "newVersion": "0.14", + "newRelease": "15.el8", + "arch": "x86_64", + "repository": "" + }, + "libdb": { + "name": "libdb", + "version": "5.3.28", + "release": "39.el8", + "newVersion": "5.3.28", + "newRelease": "39.el8", + "arch": "x86_64", + "repository": "" + }, + "libdb-utils": { + "name": "libdb-utils", + "version": "5.3.28", + "release": "39.el8", + "newVersion": "5.3.28", + "newRelease": "39.el8", + "arch": "x86_64", + "repository": "" + }, + "libdhash": { + "name": "libdhash", + "version": "0.5.0", + "release": "39.el8", + "newVersion": "0.5.0", + "newRelease": "39.el8", + "arch": "x86_64", + "repository": "", + "AffectedProcs": [ + { + "pid": "759", + "name": "sssd_be" + }, + { + "pid": "691", + "name": "sssd" + }, + { + "pid": "772", + "name": "sssd_nss" + } + ] + }, + "libdnf": { + "name": "libdnf", + "version": "0.48.0", + "release": "5.el8", + "newVersion": "0.48.0", + "newRelease": "5.el8", + "arch": "x86_64", + "repository": "" + }, + "libedit": { + "name": "libedit", + "version": "3.1", + "release": "23.20170329cvs.el8", + "newVersion": "3.1", + "newRelease": "23.20170329cvs.el8", + "arch": "x86_64", + "repository": "" + }, + "libestr": { + "name": "libestr", + "version": "0.1.10", + "release": "1.el8", + "newVersion": "0.1.10", + "newRelease": "1.el8", + "arch": "x86_64", + "repository": "", + "AffectedProcs": [ + { + "pid": "1096", + "name": "rsyslogd" + } + ] + }, + "libevent": { + "name": "libevent", + "version": "2.1.8", + "release": "5.el8", + "newVersion": "2.1.8", + "newRelease": "5.el8", + "arch": "x86_64", + "repository": "" + }, + "libfastjson": { + "name": "libfastjson", + "version": "0.99.8", + "release": "2.el8", + "newVersion": "0.99.8", + "newRelease": "2.el8", + "arch": "x86_64", + "repository": "", + "AffectedProcs": [ + { + "pid": "1096", + "name": "rsyslogd" + } + ] + }, + "libfdisk": { + "name": "libfdisk", + "version": "2.32.1", + "release": "24.el8", + "newVersion": "2.32.1", + "newRelease": "24.el8", + "arch": "x86_64", + "repository": "" + }, + "libffi": { + "name": "libffi", + "version": "3.1", + "release": "22.el8", + "newVersion": "3.1", + "newRelease": "22.el8", + "arch": "x86_64", + "repository": "", + "AffectedProcs": [ + { + "pid": "849", + "name": "NetworkManager" + }, + { + "pid": "853", + "name": "tuned" + }, + { + "pid": "739", + "name": "polkitd" + }, + { + "pid": "759", + "name": "sssd_be" + }, + { + "pid": "691", + "name": "sssd" + }, + { + "pid": "772", + "name": "sssd_nss" + } + ] + }, + "libgcc": { + "name": "libgcc", + "version": "8.3.1", + "release": "5.1.el8", + "newVersion": "8.3.1", + "newRelease": "5.1.el8", + "arch": "x86_64", + "repository": "", + "AffectedProcs": [ + { + "pid": "849", + "name": "NetworkManager" + }, + { + "pid": "744", + "name": "chronyd" + }, + { + "pid": "4755", + "name": "(sd-pam)" + }, + { + "pid": "1", + "name": "systemd" + }, + { + "pid": "4761", + "name": "sshd" + }, + { + "pid": "1324", + "name": "sshd", + "listenPortStats": [ + { + "bindAddress": "*", + "port": "22", + "portReachableTo": [] + } + ] + }, + { + "pid": "853", + "name": "tuned" + }, + { + "pid": "1096", + "name": "rsyslogd" + }, + { + "pid": "4751", + "name": "systemd" + }, + { + "pid": "5017", + "name": "sshd" + }, + { + "pid": "739", + "name": "polkitd" + }, + { + "pid": "4747", + "name": "sshd" + }, + { + "pid": "671", + "name": "systemd-udevd" + }, + { + "pid": "759", + "name": "sssd_be" + }, + { + "pid": "742", + "name": "dbus-daemon" + }, + { + "pid": "593", + "name": "systemd-journal" + }, + { + "pid": "802", + "name": "systemd-logind" + }, + { + "pid": "691", + "name": "sssd" + }, + { + "pid": "5014", + "name": "sshd" + }, + { + "pid": "772", + "name": "sssd_nss" + } + ] + }, + "libgcrypt": { + "name": "libgcrypt", + "version": "1.8.5", + "release": "4.el8", + "newVersion": "1.8.5", + "newRelease": "4.el8", + "arch": "x86_64", + "repository": "", + "AffectedProcs": [ + { + "pid": "849", + "name": "NetworkManager" + }, + { + "pid": "4755", + "name": "(sd-pam)" + }, + { + "pid": "1", + "name": "systemd" + }, + { + "pid": "4761", + "name": "sshd" + }, + { + "pid": "1324", + "name": "sshd", + "listenPortStats": [ + { + "bindAddress": "*", + "port": "22", + "portReachableTo": [] + } + ] + }, + { + "pid": "853", + "name": "tuned" + }, + { + "pid": "1096", + "name": "rsyslogd" + }, + { + "pid": "4751", + "name": "systemd" + }, + { + "pid": "5017", + "name": "sshd" + }, + { + "pid": "739", + "name": "polkitd" + }, + { + "pid": "762", + "name": "rngd" + }, + { + "pid": "4747", + "name": "sshd" + }, + { + "pid": "671", + "name": "systemd-udevd" + }, + { + "pid": "759", + "name": "sssd_be" + }, + { + "pid": "742", + "name": "dbus-daemon" + }, + { + "pid": "593", + "name": "systemd-journal" + }, + { + "pid": "802", + "name": "systemd-logind" + }, + { + "pid": "691", + "name": "sssd" + }, + { + "pid": "5014", + "name": "sshd" + }, + { + "pid": "772", + "name": "sssd_nss" + } + ] + }, + "libgomp": { + "name": "libgomp", + "version": "8.3.1", + "release": "5.1.el8", + "newVersion": "8.3.1", + "newRelease": "5.1.el8", + "arch": "x86_64", + "repository": "" + }, + "libgpg-error": { + "name": "libgpg-error", + "version": "1.31", + "release": "1.el8", + "newVersion": "1.31", + "newRelease": "1.el8", + "arch": "x86_64", + "repository": "", + "AffectedProcs": [ + { + "pid": "849", + "name": "NetworkManager" + }, + { + "pid": "4755", + "name": "(sd-pam)" + }, + { + "pid": "1", + "name": "systemd" + }, + { + "pid": "4761", + "name": "sshd" + }, + { + "pid": "1324", + "name": "sshd", + "listenPortStats": [ + { + "bindAddress": "*", + "port": "22", + "portReachableTo": [] + } + ] + }, + { + "pid": "853", + "name": "tuned" + }, + { + "pid": "1096", + "name": "rsyslogd" + }, + { + "pid": "4751", + "name": "systemd" + }, + { + "pid": "5017", + "name": "sshd" + }, + { + "pid": "739", + "name": "polkitd" + }, + { + "pid": "762", + "name": "rngd" + }, + { + "pid": "4747", + "name": "sshd" + }, + { + "pid": "671", + "name": "systemd-udevd" + }, + { + "pid": "759", + "name": "sssd_be" + }, + { + "pid": "742", + "name": "dbus-daemon" + }, + { + "pid": "593", + "name": "systemd-journal" + }, + { + "pid": "802", + "name": "systemd-logind" + }, + { + "pid": "691", + "name": "sssd" + }, + { + "pid": "5014", + "name": "sshd" + }, + { + "pid": "772", + "name": "sssd_nss" + } + ] + }, + "libidn2": { + "name": "libidn2", + "version": "2.2.0", + "release": "1.el8", + "newVersion": "2.2.0", + "newRelease": "1.el8", + "arch": "x86_64", + "repository": "", + "AffectedProcs": [ + { + "pid": "849", + "name": "NetworkManager" + }, + { + "pid": "4755", + "name": "(sd-pam)" + }, + { + "pid": "1", + "name": "systemd" + }, + { + "pid": "853", + "name": "tuned" + }, + { + "pid": "4751", + "name": "systemd" + }, + { + "pid": "739", + "name": "polkitd" + }, + { + "pid": "762", + "name": "rngd" + }, + { + "pid": "671", + "name": "systemd-udevd" + }, + { + "pid": "759", + "name": "sssd_be" + }, + { + "pid": "593", + "name": "systemd-journal" + }, + { + "pid": "802", + "name": "systemd-logind" + }, + { + "pid": "691", + "name": "sssd" + }, + { + "pid": "772", + "name": "sssd_nss" + } + ] + }, + "libini_config": { + "name": "libini_config", + "version": "1.3.1", + "release": "39.el8", + "newVersion": "1.3.1", + "newRelease": "39.el8", + "arch": "x86_64", + "repository": "", + "AffectedProcs": [ + { + "pid": "759", + "name": "sssd_be" + }, + { + "pid": "691", + "name": "sssd" + }, + { + "pid": "772", + "name": "sssd_nss" + } + ] + }, + "libkcapi": { + "name": "libkcapi", + "version": "1.2.0", + "release": "2.el8", + "newVersion": "1.2.0", + "newRelease": "2.el8", + "arch": "x86_64", + "repository": "" + }, + "libkcapi-hmaccalc": { + "name": "libkcapi-hmaccalc", + "version": "1.2.0", + "release": "2.el8", + "newVersion": "1.2.0", + "newRelease": "2.el8", + "arch": "x86_64", + "repository": "" + }, + "libksba": { + "name": "libksba", + "version": "1.3.5", + "release": "7.el8", + "newVersion": "1.3.5", + "newRelease": "7.el8", + "arch": "x86_64", + "repository": "" + }, + "libldb": { + "name": "libldb", + "version": "2.1.3", + "release": "2.el8", + "newVersion": "2.1.3", + "newRelease": "2.el8", + "arch": "x86_64", + "repository": "", + "AffectedProcs": [ + { + "pid": "759", + "name": "sssd_be" + }, + { + "pid": "691", + "name": "sssd" + }, + { + "pid": "772", + "name": "sssd_nss" + } + ] + }, + "libmaxminddb": { + "name": "libmaxminddb", + "version": "1.2.0", + "release": "10.el8", + "newVersion": "1.2.0", + "newRelease": "10.el8", + "arch": "x86_64", + "repository": "" + }, + "libmetalink": { + "name": "libmetalink", + "version": "0.1.3", + "release": "7.el8", + "newVersion": "0.1.3", + "newRelease": "7.el8", + "arch": "x86_64", + "repository": "" + }, + "libmnl": { + "name": "libmnl", + "version": "1.0.4", + "release": "6.el8", + "newVersion": "1.0.4", + "newRelease": "6.el8", + "arch": "x86_64", + "repository": "" + }, + "libmodulemd": { + "name": "libmodulemd", + "version": "2.9.4", + "release": "2.el8", + "newVersion": "2.9.4", + "newRelease": "2.el8", + "arch": "x86_64", + "repository": "" + }, + "libmount": { + "name": "libmount", + "version": "2.32.1", + "release": "24.el8", + "newVersion": "2.32.1", + "newRelease": "24.el8", + "arch": "x86_64", + "repository": "", + "AffectedProcs": [ + { + "pid": "849", + "name": "NetworkManager" + }, + { + "pid": "744", + "name": "chronyd" + }, + { + "pid": "4755", + "name": "(sd-pam)" + }, + { + "pid": "1", + "name": "systemd" + }, + { + "pid": "4761", + "name": "sshd" + }, + { + "pid": "1324", + "name": "sshd", + "listenPortStats": [ + { + "bindAddress": "*", + "port": "22", + "portReachableTo": [] + } + ] + }, + { + "pid": "853", + "name": "tuned" + }, + { + "pid": "1096", + "name": "rsyslogd" + }, + { + "pid": "4751", + "name": "systemd" + }, + { + "pid": "5017", + "name": "sshd" + }, + { + "pid": "739", + "name": "polkitd" + }, + { + "pid": "4747", + "name": "sshd" + }, + { + "pid": "671", + "name": "systemd-udevd" + }, + { + "pid": "759", + "name": "sssd_be" + }, + { + "pid": "742", + "name": "dbus-daemon" + }, + { + "pid": "593", + "name": "systemd-journal" + }, + { + "pid": "802", + "name": "systemd-logind" + }, + { + "pid": "691", + "name": "sssd" + }, + { + "pid": "5014", + "name": "sshd" + }, + { + "pid": "772", + "name": "sssd_nss" + } + ] + }, + "libndp": { + "name": "libndp", + "version": "1.7", + "release": "3.el8", + "newVersion": "1.7", + "newRelease": "3.el8", + "arch": "x86_64", + "repository": "", + "AffectedProcs": [ + { + "pid": "849", + "name": "NetworkManager" + } + ] + }, + "libnfsidmap": { + "name": "libnfsidmap", + "version": "1:2.3.3", + "release": "35.el8", + "newVersion": "1:2.3.3", + "newRelease": "35.el8", + "arch": "x86_64", + "repository": "" + }, + "libnghttp2": { + "name": "libnghttp2", + "version": "1.33.0", + "release": "3.el8_2.1", + "newVersion": "1.33.0", + "newRelease": "3.el8_2.1", + "arch": "x86_64", + "repository": "", + "AffectedProcs": [ + { + "pid": "849", + "name": "NetworkManager" + }, + { + "pid": "762", + "name": "rngd" + } + ] + }, + "libnl3": { + "name": "libnl3", + "version": "3.5.0", + "release": "1.el8", + "newVersion": "3.5.0", + "newRelease": "1.el8", + "arch": "x86_64", + "repository": "", + "AffectedProcs": [ + { + "pid": "691", + "name": "sssd" + } + ] + }, + "libnl3-cli": { + "name": "libnl3-cli", + "version": "3.5.0", + "release": "1.el8", + "newVersion": "3.5.0", + "newRelease": "1.el8", + "arch": "x86_64", + "repository": "" + }, + "libnsl2": { + "name": "libnsl2", + "version": "1.2.0", + "release": "2.20180605git4a062cf.el8", + "newVersion": "1.2.0", + "newRelease": "2.20180605git4a062cf.el8", + "arch": "x86_64", + "repository": "", + "AffectedProcs": [ + { + "pid": "4755", + "name": "(sd-pam)" + }, + { + "pid": "4761", + "name": "sshd" + }, + { + "pid": "5017", + "name": "sshd" + }, + { + "pid": "4747", + "name": "sshd" + }, + { + "pid": "5014", + "name": "sshd" + } + ] + }, + "libpath_utils": { + "name": "libpath_utils", + "version": "0.2.1", + "release": "39.el8", + "newVersion": "0.2.1", + "newRelease": "39.el8", + "arch": "x86_64", + "repository": "", + "AffectedProcs": [ + { + "pid": "759", + "name": "sssd_be" + }, + { + "pid": "691", + "name": "sssd" + }, + { + "pid": "772", + "name": "sssd_nss" + } + ] + }, + "libpcap": { + "name": "libpcap", + "version": "14:1.9.1", + "release": "4.el8", + "newVersion": "14:1.9.1", + "newRelease": "4.el8", + "arch": "x86_64", + "repository": "", + "AffectedProcs": [ + { + "pid": "4755", + "name": "(sd-pam)" + }, + { + "pid": "1", + "name": "systemd" + }, + { + "pid": "4751", + "name": "systemd" + }, + { + "pid": "671", + "name": "systemd-udevd" + }, + { + "pid": "593", + "name": "systemd-journal" + }, + { + "pid": "802", + "name": "systemd-logind" + } + ] + }, + "libpipeline": { + "name": "libpipeline", + "version": "1.5.0", + "release": "2.el8", + "newVersion": "1.5.0", + "newRelease": "2.el8", + "arch": "x86_64", + "repository": "" + }, + "libpng": { + "name": "libpng", + "version": "2:1.6.34", + "release": "5.el8", + "newVersion": "2:1.6.34", + "newRelease": "5.el8", + "arch": "x86_64", + "repository": "" + }, + "libpsl": { + "name": "libpsl", + "version": "0.20.2", + "release": "6.el8", + "newVersion": "0.20.2", + "newRelease": "6.el8", + "arch": "x86_64", + "repository": "", + "AffectedProcs": [ + { + "pid": "849", + "name": "NetworkManager" + }, + { + "pid": "762", + "name": "rngd" + } + ] + }, + "libpwquality": { + "name": "libpwquality", + "version": "1.4.0", + "release": "9.el8", + "newVersion": "1.4.0", + "newRelease": "9.el8", + "arch": "x86_64", + "repository": "", + "AffectedProcs": [ + { + "pid": "4761", + "name": "sshd" + }, + { + "pid": "5017", + "name": "sshd" + }, + { + "pid": "4747", + "name": "sshd" + }, + { + "pid": "5014", + "name": "sshd" + } + ] + }, + "libref_array": { + "name": "libref_array", + "version": "0.1.5", + "release": "39.el8", + "newVersion": "0.1.5", + "newRelease": "39.el8", + "arch": "x86_64", + "repository": "", + "AffectedProcs": [ + { + "pid": "759", + "name": "sssd_be" + }, + { + "pid": "691", + "name": "sssd" + }, + { + "pid": "772", + "name": "sssd_nss" + } + ] + }, + "librepo": { + "name": "librepo", + "version": "1.12.0", + "release": "2.el8", + "newVersion": "1.12.0", + "newRelease": "2.el8", + "arch": "x86_64", + "repository": "" + }, + "libreport-filesystem": { + "name": "libreport-filesystem", + "version": "2.9.5", + "release": "15.el8", + "newVersion": "2.9.5", + "newRelease": "15.el8", + "arch": "x86_64", + "repository": "" + }, + "librhsm": { + "name": "librhsm", + "version": "0.0.3", + "release": "3.el8", + "newVersion": "0.0.3", + "newRelease": "3.el8", + "arch": "x86_64", + "repository": "" + }, + "libseccomp": { + "name": "libseccomp", + "version": "2.4.3", + "release": "1.el8", + "newVersion": "2.4.3", + "newRelease": "1.el8", + "arch": "x86_64", + "repository": "", + "AffectedProcs": [ + { + "pid": "744", + "name": "chronyd" + }, + { + "pid": "4755", + "name": "(sd-pam)" + }, + { + "pid": "1", + "name": "systemd" + }, + { + "pid": "4751", + "name": "systemd" + }, + { + "pid": "671", + "name": "systemd-udevd" + }, + { + "pid": "593", + "name": "systemd-journal" + }, + { + "pid": "802", + "name": "systemd-logind" + } + ] + }, + "libsecret": { + "name": "libsecret", + "version": "0.18.6", + "release": "1.el8", + "newVersion": "0.18.6", + "newRelease": "1.el8", + "arch": "x86_64", + "repository": "" + }, + "libselinux": { + "name": "libselinux", + "version": "2.9", + "release": "4.el8_3", + "newVersion": "2.9", + "newRelease": "4.el8_3", + "arch": "x86_64", + "repository": "", + "AffectedProcs": [ + { + "pid": "849", + "name": "NetworkManager" + }, + { + "pid": "744", + "name": "chronyd" + }, + { + "pid": "4755", + "name": "(sd-pam)" + }, + { + "pid": "1", + "name": "systemd" + }, + { + "pid": "4761", + "name": "sshd" + }, + { + "pid": "1324", + "name": "sshd", + "listenPortStats": [ + { + "bindAddress": "*", + "port": "22", + "portReachableTo": [] + } + ] + }, + { + "pid": "853", + "name": "tuned" + }, + { + "pid": "1096", + "name": "rsyslogd" + }, + { + "pid": "4751", + "name": "systemd" + }, + { + "pid": "5017", + "name": "sshd" + }, + { + "pid": "739", + "name": "polkitd" + }, + { + "pid": "762", + "name": "rngd" + }, + { + "pid": "4747", + "name": "sshd" + }, + { + "pid": "671", + "name": "systemd-udevd" + }, + { + "pid": "759", + "name": "sssd_be" + }, + { + "pid": "1101", + "name": "crond" + }, + { + "pid": "742", + "name": "dbus-daemon" + }, + { + "pid": "593", + "name": "systemd-journal" + }, + { + "pid": "802", + "name": "systemd-logind" + }, + { + "pid": "646", + "name": "auditd" + }, + { + "pid": "691", + "name": "sssd" + }, + { + "pid": "5014", + "name": "sshd" + }, + { + "pid": "772", + "name": "sssd_nss" + } + ] + }, + "libselinux-utils": { + "name": "libselinux-utils", + "version": "2.9", + "release": "4.el8_3", + "newVersion": "2.9", + "newRelease": "4.el8_3", + "arch": "x86_64", + "repository": "" + }, + "libsemanage": { + "name": "libsemanage", + "version": "2.9", + "release": "3.el8", + "newVersion": "2.9", + "newRelease": "3.el8", + "arch": "x86_64", + "repository": "" + }, + "libsepol": { + "name": "libsepol", + "version": "2.9", + "release": "1.el8", + "newVersion": "2.9", + "newRelease": "1.el8", + "arch": "x86_64", + "repository": "", + "AffectedProcs": [ + { + "pid": "4755", + "name": "(sd-pam)" + }, + { + "pid": "1", + "name": "systemd" + }, + { + "pid": "4751", + "name": "systemd" + }, + { + "pid": "671", + "name": "systemd-udevd" + }, + { + "pid": "593", + "name": "systemd-journal" + }, + { + "pid": "802", + "name": "systemd-logind" + } + ] + }, + "libsigsegv": { + "name": "libsigsegv", + "version": "2.11", + "release": "5.el8", + "newVersion": "2.11", + "newRelease": "5.el8", + "arch": "x86_64", + "repository": "" + }, + "libsmartcols": { + "name": "libsmartcols", + "version": "2.32.1", + "release": "24.el8", + "newVersion": "2.32.1", + "newRelease": "24.el8", + "arch": "x86_64", + "repository": "" + }, + "libsolv": { + "name": "libsolv", + "version": "0.7.11", + "release": "1.el8", + "newVersion": "0.7.11", + "newRelease": "1.el8", + "arch": "x86_64", + "repository": "" + }, + "libss": { + "name": "libss", + "version": "1.45.6", + "release": "1.el8", + "newVersion": "1.45.6", + "newRelease": "1.el8", + "arch": "x86_64", + "repository": "" + }, + "libssh": { + "name": "libssh", + "version": "0.9.4", + "release": "2.el8", + "newVersion": "0.9.4", + "newRelease": "2.el8", + "arch": "x86_64", + "repository": "", + "AffectedProcs": [ + { + "pid": "849", + "name": "NetworkManager" + }, + { + "pid": "762", + "name": "rngd" + } + ] + }, + "libssh-config": { + "name": "libssh-config", + "version": "0.9.4", + "release": "2.el8", + "newVersion": "0.9.4", + "newRelease": "2.el8", + "arch": "noarch", + "repository": "" + }, + "libsss_autofs": { + "name": "libsss_autofs", + "version": "2.3.0", + "release": "9.el8", + "newVersion": "2.3.0", + "newRelease": "9.el8", + "arch": "x86_64", + "repository": "" + }, + "libsss_certmap": { + "name": "libsss_certmap", + "version": "2.3.0", + "release": "9.el8", + "newVersion": "2.3.0", + "newRelease": "9.el8", + "arch": "x86_64", + "repository": "", + "AffectedProcs": [ + { + "pid": "759", + "name": "sssd_be" + }, + { + "pid": "691", + "name": "sssd" + }, + { + "pid": "772", + "name": "sssd_nss" + } + ] + }, + "libsss_idmap": { + "name": "libsss_idmap", + "version": "2.3.0", + "release": "9.el8", + "newVersion": "2.3.0", + "newRelease": "9.el8", + "arch": "x86_64", + "repository": "", + "AffectedProcs": [ + { + "pid": "772", + "name": "sssd_nss" + } + ] + }, + "libsss_nss_idmap": { + "name": "libsss_nss_idmap", + "version": "2.3.0", + "release": "9.el8", + "newVersion": "2.3.0", + "newRelease": "9.el8", + "arch": "x86_64", + "repository": "" + }, + "libsss_sudo": { + "name": "libsss_sudo", + "version": "2.3.0", + "release": "9.el8", + "newVersion": "2.3.0", + "newRelease": "9.el8", + "arch": "x86_64", + "repository": "" + }, + "libstdc++": { + "name": "libstdc++", + "version": "8.3.1", + "release": "5.1.el8", + "newVersion": "8.3.1", + "newRelease": "5.1.el8", + "arch": "x86_64", + "repository": "", + "AffectedProcs": [ + { + "pid": "739", + "name": "polkitd" + } + ] + }, + "libsysfs": { + "name": "libsysfs", + "version": "2.1.0", + "release": "24.el8", + "newVersion": "2.1.0", + "newRelease": "24.el8", + "arch": "x86_64", + "repository": "", + "AffectedProcs": [ + { + "pid": "762", + "name": "rngd" + } + ] + }, + "libtalloc": { + "name": "libtalloc", + "version": "2.3.1", + "release": "2.el8", + "newVersion": "2.3.1", + "newRelease": "2.el8", + "arch": "x86_64", + "repository": "", + "AffectedProcs": [ + { + "pid": "759", + "name": "sssd_be" + }, + { + "pid": "691", + "name": "sssd" + }, + { + "pid": "772", + "name": "sssd_nss" + } + ] + }, + "libtasn1": { + "name": "libtasn1", + "version": "4.13", + "release": "3.el8", + "newVersion": "4.13", + "newRelease": "3.el8", + "arch": "x86_64", + "repository": "", + "AffectedProcs": [ + { + "pid": "849", + "name": "NetworkManager" + }, + { + "pid": "853", + "name": "tuned" + }, + { + "pid": "739", + "name": "polkitd" + }, + { + "pid": "759", + "name": "sssd_be" + }, + { + "pid": "691", + "name": "sssd" + }, + { + "pid": "772", + "name": "sssd_nss" + } + ] + }, + "libtdb": { + "name": "libtdb", + "version": "1.4.3", + "release": "1.el8", + "newVersion": "1.4.3", + "newRelease": "1.el8", + "arch": "x86_64", + "repository": "", + "AffectedProcs": [ + { + "pid": "759", + "name": "sssd_be" + }, + { + "pid": "691", + "name": "sssd" + }, + { + "pid": "772", + "name": "sssd_nss" + } + ] + }, + "libteam": { + "name": "libteam", + "version": "1.31", + "release": "2.el8", + "newVersion": "1.31", + "newRelease": "2.el8", + "arch": "x86_64", + "repository": "" + }, + "libtevent": { + "name": "libtevent", + "version": "0.10.2", + "release": "2.el8", + "newVersion": "0.10.2", + "newRelease": "2.el8", + "arch": "x86_64", + "repository": "", + "AffectedProcs": [ + { + "pid": "759", + "name": "sssd_be" + }, + { + "pid": "691", + "name": "sssd" + }, + { + "pid": "772", + "name": "sssd_nss" + } + ] + }, + "libtirpc": { + "name": "libtirpc", + "version": "1.1.4", + "release": "4.el8", + "newVersion": "1.1.4", + "newRelease": "4.el8", + "arch": "x86_64", + "repository": "", + "AffectedProcs": [ + { + "pid": "4755", + "name": "(sd-pam)" + }, + { + "pid": "4761", + "name": "sshd" + }, + { + "pid": "5017", + "name": "sshd" + }, + { + "pid": "4747", + "name": "sshd" + }, + { + "pid": "5014", + "name": "sshd" + } + ] + }, + "libunistring": { + "name": "libunistring", + "version": "0.9.9", + "release": "3.el8", + "newVersion": "0.9.9", + "newRelease": "3.el8", + "arch": "x86_64", + "repository": "", + "AffectedProcs": [ + { + "pid": "849", + "name": "NetworkManager" + }, + { + "pid": "4755", + "name": "(sd-pam)" + }, + { + "pid": "1", + "name": "systemd" + }, + { + "pid": "853", + "name": "tuned" + }, + { + "pid": "4751", + "name": "systemd" + }, + { + "pid": "739", + "name": "polkitd" + }, + { + "pid": "762", + "name": "rngd" + }, + { + "pid": "671", + "name": "systemd-udevd" + }, + { + "pid": "759", + "name": "sssd_be" + }, + { + "pid": "593", + "name": "systemd-journal" + }, + { + "pid": "802", + "name": "systemd-logind" + }, + { + "pid": "691", + "name": "sssd" + }, + { + "pid": "772", + "name": "sssd_nss" + } + ] + }, + "libusbx": { + "name": "libusbx", + "version": "1.0.23", + "release": "4.el8", + "newVersion": "1.0.23", + "newRelease": "4.el8", + "arch": "x86_64", + "repository": "" + }, + "libuser": { + "name": "libuser", + "version": "0.62", + "release": "23.el8", + "newVersion": "0.62", + "newRelease": "23.el8", + "arch": "x86_64", + "repository": "" + }, + "libutempter": { + "name": "libutempter", + "version": "1.1.6", + "release": "14.el8", + "newVersion": "1.1.6", + "newRelease": "14.el8", + "arch": "x86_64", + "repository": "" + }, + "libuuid": { + "name": "libuuid", + "version": "2.32.1", + "release": "24.el8", + "newVersion": "2.32.1", + "newRelease": "24.el8", + "arch": "x86_64", + "repository": "", + "AffectedProcs": [ + { + "pid": "849", + "name": "NetworkManager" + }, + { + "pid": "744", + "name": "chronyd" + }, + { + "pid": "4755", + "name": "(sd-pam)" + }, + { + "pid": "1", + "name": "systemd" + }, + { + "pid": "4761", + "name": "sshd" + }, + { + "pid": "1324", + "name": "sshd", + "listenPortStats": [ + { + "bindAddress": "*", + "port": "22", + "portReachableTo": [] + } + ] + }, + { + "pid": "853", + "name": "tuned" + }, + { + "pid": "1096", + "name": "rsyslogd" + }, + { + "pid": "4751", + "name": "systemd" + }, + { + "pid": "5017", + "name": "sshd" + }, + { + "pid": "739", + "name": "polkitd" + }, + { + "pid": "4747", + "name": "sshd" + }, + { + "pid": "671", + "name": "systemd-udevd" + }, + { + "pid": "759", + "name": "sssd_be" + }, + { + "pid": "742", + "name": "dbus-daemon" + }, + { + "pid": "593", + "name": "systemd-journal" + }, + { + "pid": "802", + "name": "systemd-logind" + }, + { + "pid": "691", + "name": "sssd" + }, + { + "pid": "5014", + "name": "sshd" + }, + { + "pid": "772", + "name": "sssd_nss" + } + ] + }, + "libverto": { + "name": "libverto", + "version": "0.3.0", + "release": "5.el8", + "newVersion": "0.3.0", + "newRelease": "5.el8", + "arch": "x86_64", + "repository": "" + }, + "libxcrypt": { + "name": "libxcrypt", + "version": "4.1.1", + "release": "4.el8", + "newVersion": "4.1.1", + "newRelease": "4.el8", + "arch": "x86_64", + "repository": "", + "AffectedProcs": [ + { + "pid": "849", + "name": "NetworkManager" + }, + { + "pid": "4755", + "name": "(sd-pam)" + }, + { + "pid": "4761", + "name": "sshd" + }, + { + "pid": "1324", + "name": "sshd", + "listenPortStats": [ + { + "bindAddress": "*", + "port": "22", + "portReachableTo": [] + } + ] + }, + { + "pid": "5017", + "name": "sshd" + }, + { + "pid": "762", + "name": "rngd" + }, + { + "pid": "4747", + "name": "sshd" + }, + { + "pid": "759", + "name": "sssd_be" + }, + { + "pid": "691", + "name": "sssd" + }, + { + "pid": "5014", + "name": "sshd" + }, + { + "pid": "772", + "name": "sssd_nss" + } + ] + }, + "libxkbcommon": { + "name": "libxkbcommon", + "version": "0.9.1", + "release": "1.el8", + "newVersion": "0.9.1", + "newRelease": "1.el8", + "arch": "x86_64", + "repository": "" + }, + "libxml2": { + "name": "libxml2", + "version": "2.9.7", + "release": "8.el8", + "newVersion": "2.9.7", + "newRelease": "8.el8", + "arch": "x86_64", + "repository": "", + "AffectedProcs": [ + { + "pid": "853", + "name": "tuned" + }, + { + "pid": "762", + "name": "rngd" + } + ] + }, + "libyaml": { + "name": "libyaml", + "version": "0.1.7", + "release": "5.el8", + "newVersion": "0.1.7", + "newRelease": "5.el8", + "arch": "x86_64", + "repository": "" + }, + "libzstd": { + "name": "libzstd", + "version": "1.4.4", + "release": "1.el8", + "newVersion": "1.4.4", + "newRelease": "1.el8", + "arch": "x86_64", + "repository": "" + }, + "logrotate": { + "name": "logrotate", + "version": "3.14.0", + "release": "4.el8", + "newVersion": "3.14.0", + "newRelease": "4.el8", + "arch": "x86_64", + "repository": "" + }, + "lshw": { + "name": "lshw", + "version": "B.02.19.2", + "release": "2.el8", + "newVersion": "B.02.19.2", + "newRelease": "2.el8", + "arch": "x86_64", + "repository": "" + }, + "lsof": { + "name": "lsof", + "version": "4.93.2", + "release": "1.el8", + "newVersion": "4.93.2", + "newRelease": "1.el8", + "arch": "x86_64", + "repository": "" + }, + "lsscsi": { + "name": "lsscsi", + "version": "0.30", + "release": "1.el8", + "newVersion": "0.30", + "newRelease": "1.el8", + "arch": "x86_64", + "repository": "" + }, + "lua-libs": { + "name": "lua-libs", + "version": "5.3.4", + "release": "11.el8", + "newVersion": "5.3.4", + "newRelease": "11.el8", + "arch": "x86_64", + "repository": "" + }, + "lz4-libs": { + "name": "lz4-libs", + "version": "1.8.3", + "release": "2.el8", + "newVersion": "1.8.3", + "newRelease": "2.el8", + "arch": "x86_64", + "repository": "", + "AffectedProcs": [ + { + "pid": "849", + "name": "NetworkManager" + }, + { + "pid": "4755", + "name": "(sd-pam)" + }, + { + "pid": "1", + "name": "systemd" + }, + { + "pid": "4761", + "name": "sshd" + }, + { + "pid": "1324", + "name": "sshd", + "listenPortStats": [ + { + "bindAddress": "*", + "port": "22", + "portReachableTo": [] + } + ] + }, + { + "pid": "853", + "name": "tuned" + }, + { + "pid": "1096", + "name": "rsyslogd" + }, + { + "pid": "4751", + "name": "systemd" + }, + { + "pid": "5017", + "name": "sshd" + }, + { + "pid": "739", + "name": "polkitd" + }, + { + "pid": "4747", + "name": "sshd" + }, + { + "pid": "671", + "name": "systemd-udevd" + }, + { + "pid": "759", + "name": "sssd_be" + }, + { + "pid": "742", + "name": "dbus-daemon" + }, + { + "pid": "593", + "name": "systemd-journal" + }, + { + "pid": "802", + "name": "systemd-logind" + }, + { + "pid": "691", + "name": "sssd" + }, + { + "pid": "5014", + "name": "sshd" + }, + { + "pid": "772", + "name": "sssd_nss" + } + ] + }, + "lzo": { + "name": "lzo", + "version": "2.08", + "release": "14.el8", + "newVersion": "2.08", + "newRelease": "14.el8", + "arch": "x86_64", + "repository": "" + }, + "man-db": { + "name": "man-db", + "version": "2.7.6.1", + "release": "17.el8", + "newVersion": "2.7.6.1", + "newRelease": "17.el8", + "arch": "x86_64", + "repository": "" + }, + "memstrack": { + "name": "memstrack", + "version": "0.1.11", + "release": "1.el8", + "newVersion": "0.1.11", + "newRelease": "1.el8", + "arch": "x86_64", + "repository": "" + }, + "microcode_ctl": { + "name": "microcode_ctl", + "version": "4:20200609", + "release": "2.el8", + "newVersion": "4:20200609", + "newRelease": "2.20210216.1.el8_3", + "arch": "x86_64", + "repository": "rhel-8-baseos-rhui-rpms" + }, + "mozjs60": { + "name": "mozjs60", + "version": "60.9.0", + "release": "4.el8", + "newVersion": "60.9.0", + "newRelease": "4.el8", + "arch": "x86_64", + "repository": "", + "AffectedProcs": [ + { + "pid": "739", + "name": "polkitd" + } + ] + }, + "mpfr": { + "name": "mpfr", + "version": "3.1.6", + "release": "1.el8", + "newVersion": "3.1.6", + "newRelease": "1.el8", + "arch": "x86_64", + "repository": "" + }, + "ncurses": { + "name": "ncurses", + "version": "6.1", + "release": "7.20180224.el8", + "newVersion": "6.1", + "newRelease": "7.20180224.el8", + "arch": "x86_64", + "repository": "" + }, + "ncurses-base": { + "name": "ncurses-base", + "version": "6.1", + "release": "7.20180224.el8", + "newVersion": "6.1", + "newRelease": "7.20180224.el8", + "arch": "noarch", + "repository": "" + }, + "ncurses-libs": { + "name": "ncurses-libs", + "version": "6.1", + "release": "7.20180224.el8", + "newVersion": "6.1", + "newRelease": "7.20180224.el8", + "arch": "x86_64", + "repository": "", + "AffectedProcs": [ + { + "pid": "5018", + "name": "bash" + }, + { + "pid": "7408", + "name": "sh" + } + ] + }, + "net-tools": { + "name": "net-tools", + "version": "2.0", + "release": "0.52.20160912git.el8", + "newVersion": "2.0", + "newRelease": "0.52.20160912git.el8", + "arch": "x86_64", + "repository": "" + }, + "nettle": { + "name": "nettle", + "version": "3.4.1", + "release": "2.el8", + "newVersion": "3.4.1", + "newRelease": "2.el8", + "arch": "x86_64", + "repository": "", + "AffectedProcs": [ + { + "pid": "849", + "name": "NetworkManager" + }, + { + "pid": "744", + "name": "chronyd" + }, + { + "pid": "853", + "name": "tuned" + }, + { + "pid": "739", + "name": "polkitd" + }, + { + "pid": "759", + "name": "sssd_be" + }, + { + "pid": "691", + "name": "sssd" + }, + { + "pid": "772", + "name": "sssd_nss" + } + ] + }, + "newt": { + "name": "newt", + "version": "0.52.20", + "release": "11.el8", + "newVersion": "0.52.20", + "newRelease": "11.el8", + "arch": "x86_64", + "repository": "" + }, + "npth": { + "name": "npth", + "version": "1.5", + "release": "4.el8", + "newVersion": "1.5", + "newRelease": "4.el8", + "arch": "x86_64", + "repository": "" + }, + "numactl-libs": { + "name": "numactl-libs", + "version": "2.0.12", + "release": "11.el8", + "newVersion": "2.0.12", + "newRelease": "11.el8", + "arch": "x86_64", + "repository": "" + }, + "oddjob": { + "name": "oddjob", + "version": "0.34.5", + "release": "3.el8", + "newVersion": "0.34.5", + "newRelease": "3.el8", + "arch": "x86_64", + "repository": "" + }, + "oddjob-mkhomedir": { + "name": "oddjob-mkhomedir", + "version": "0.34.5", + "release": "3.el8", + "newVersion": "0.34.5", + "newRelease": "3.el8", + "arch": "x86_64", + "repository": "" + }, + "openldap": { + "name": "openldap", + "version": "2.4.46", + "release": "15.el8", + "newVersion": "2.4.46", + "newRelease": "15.el8", + "arch": "x86_64", + "repository": "", + "AffectedProcs": [ + { + "pid": "849", + "name": "NetworkManager" + }, + { + "pid": "762", + "name": "rngd" + }, + { + "pid": "759", + "name": "sssd_be" + }, + { + "pid": "691", + "name": "sssd" + }, + { + "pid": "772", + "name": "sssd_nss" + } + ] + }, + "openssh": { + "name": "openssh", + "version": "8.0p1", + "release": "5.el8", + "newVersion": "8.0p1", + "newRelease": "5.el8", + "arch": "x86_64", + "repository": "" + }, + "openssh-clients": { + "name": "openssh-clients", + "version": "8.0p1", + "release": "5.el8", + "newVersion": "8.0p1", + "newRelease": "5.el8", + "arch": "x86_64", + "repository": "" + }, + "openssh-server": { + "name": "openssh-server", + "version": "8.0p1", + "release": "5.el8", + "newVersion": "8.0p1", + "newRelease": "5.el8", + "arch": "x86_64", + "repository": "", + "AffectedProcs": [ + { + "pid": "4761", + "name": "sshd" + }, + { + "pid": "1324", + "name": "sshd", + "listenPortStats": [ + { + "bindAddress": "*", + "port": "22", + "portReachableTo": [] + } + ] + }, + { + "pid": "5017", + "name": "sshd" + }, + { + "pid": "4747", + "name": "sshd" + }, + { + "pid": "5014", + "name": "sshd" + } + ] + }, + "openssl": { + "name": "openssl", + "version": "1:1.1.1g", + "release": "11.el8", + "newVersion": "1:1.1.1g", + "newRelease": "12.el8_3", + "arch": "x86_64", + "repository": "rhel-8-baseos-rhui-rpms" + }, + "openssl-libs": { + "name": "openssl-libs", + "version": "1:1.1.1g", + "release": "11.el8", + "newVersion": "1:1.1.1g", + "newRelease": "12.el8_3", + "arch": "x86_64", + "repository": "rhel-8-baseos-rhui-rpms", + "AffectedProcs": [ + { + "pid": "849", + "name": "NetworkManager" + }, + { + "pid": "4755", + "name": "(sd-pam)" + }, + { + "pid": "1", + "name": "systemd" + }, + { + "pid": "4761", + "name": "sshd" + }, + { + "pid": "1324", + "name": "sshd", + "listenPortStats": [ + { + "bindAddress": "*", + "port": "22", + "portReachableTo": [] + } + ] + }, + { + "pid": "853", + "name": "tuned" + }, + { + "pid": "4751", + "name": "systemd" + }, + { + "pid": "5017", + "name": "sshd" + }, + { + "pid": "762", + "name": "rngd" + }, + { + "pid": "4747", + "name": "sshd" + }, + { + "pid": "671", + "name": "systemd-udevd" + }, + { + "pid": "759", + "name": "sssd_be" + }, + { + "pid": "593", + "name": "systemd-journal" + }, + { + "pid": "802", + "name": "systemd-logind" + }, + { + "pid": "646", + "name": "auditd" + }, + { + "pid": "691", + "name": "sssd" + }, + { + "pid": "5014", + "name": "sshd" + }, + { + "pid": "772", + "name": "sssd_nss" + } + ] + }, + "openssl-pkcs11": { + "name": "openssl-pkcs11", + "version": "0.4.10", + "release": "2.el8", + "newVersion": "0.4.10", + "newRelease": "2.el8", + "arch": "x86_64", + "repository": "" + }, + "os-prober": { + "name": "os-prober", + "version": "1.74", + "release": "6.el8", + "newVersion": "1.74", + "newRelease": "6.el8", + "arch": "x86_64", + "repository": "" + }, + "p11-kit": { + "name": "p11-kit", + "version": "0.23.14", + "release": "5.el8_0", + "newVersion": "0.23.14", + "newRelease": "5.el8_0", + "arch": "x86_64", + "repository": "", + "AffectedProcs": [ + { + "pid": "849", + "name": "NetworkManager" + }, + { + "pid": "853", + "name": "tuned" + }, + { + "pid": "739", + "name": "polkitd" + }, + { + "pid": "759", + "name": "sssd_be" + }, + { + "pid": "691", + "name": "sssd" + }, + { + "pid": "772", + "name": "sssd_nss" + } + ] + }, + "p11-kit-trust": { + "name": "p11-kit-trust", + "version": "0.23.14", + "release": "5.el8_0", + "newVersion": "0.23.14", + "newRelease": "5.el8_0", + "arch": "x86_64", + "repository": "" + }, + "pam": { + "name": "pam", + "version": "1.3.1", + "release": "11.el8", + "newVersion": "1.3.1", + "newRelease": "11.el8", + "arch": "x86_64", + "repository": "", + "AffectedProcs": [ + { + "pid": "4755", + "name": "(sd-pam)" + }, + { + "pid": "1", + "name": "systemd" + }, + { + "pid": "4761", + "name": "sshd" + }, + { + "pid": "1324", + "name": "sshd", + "listenPortStats": [ + { + "bindAddress": "*", + "port": "22", + "portReachableTo": [] + } + ] + }, + { + "pid": "4751", + "name": "systemd" + }, + { + "pid": "5017", + "name": "sshd" + }, + { + "pid": "4747", + "name": "sshd" + }, + { + "pid": "759", + "name": "sssd_be" + }, + { + "pid": "1101", + "name": "crond" + }, + { + "pid": "5014", + "name": "sshd" + } + ] + }, + "parted": { + "name": "parted", + "version": "3.2", + "release": "38.el8", + "newVersion": "3.2", + "newRelease": "38.el8", + "arch": "x86_64", + "repository": "" + }, + "passwd": { + "name": "passwd", + "version": "0.80", + "release": "3.el8", + "newVersion": "0.80", + "newRelease": "3.el8", + "arch": "x86_64", + "repository": "" + }, + "pciutils": { + "name": "pciutils", + "version": "3.6.4", + "release": "2.el8", + "newVersion": "3.6.4", + "newRelease": "2.el8", + "arch": "x86_64", + "repository": "" + }, + "pciutils-libs": { + "name": "pciutils-libs", + "version": "3.6.4", + "release": "2.el8", + "newVersion": "3.6.4", + "newRelease": "2.el8", + "arch": "x86_64", + "repository": "" + }, + "pcre": { + "name": "pcre", + "version": "8.42", + "release": "4.el8", + "newVersion": "8.42", + "newRelease": "4.el8", + "arch": "x86_64", + "repository": "", + "AffectedProcs": [ + { + "pid": "849", + "name": "NetworkManager" + }, + { + "pid": "853", + "name": "tuned" + }, + { + "pid": "739", + "name": "polkitd" + }, + { + "pid": "759", + "name": "sssd_be" + }, + { + "pid": "691", + "name": "sssd" + }, + { + "pid": "772", + "name": "sssd_nss" + } + ] + }, + "pcre2": { + "name": "pcre2", + "version": "10.32", + "release": "2.el8", + "newVersion": "10.32", + "newRelease": "2.el8", + "arch": "x86_64", + "repository": "", + "AffectedProcs": [ + { + "pid": "849", + "name": "NetworkManager" + }, + { + "pid": "744", + "name": "chronyd" + }, + { + "pid": "4755", + "name": "(sd-pam)" + }, + { + "pid": "1", + "name": "systemd" + }, + { + "pid": "4761", + "name": "sshd" + }, + { + "pid": "1324", + "name": "sshd", + "listenPortStats": [ + { + "bindAddress": "*", + "port": "22", + "portReachableTo": [] + } + ] + }, + { + "pid": "853", + "name": "tuned" + }, + { + "pid": "1096", + "name": "rsyslogd" + }, + { + "pid": "4751", + "name": "systemd" + }, + { + "pid": "5017", + "name": "sshd" + }, + { + "pid": "739", + "name": "polkitd" + }, + { + "pid": "762", + "name": "rngd" + }, + { + "pid": "4747", + "name": "sshd" + }, + { + "pid": "671", + "name": "systemd-udevd" + }, + { + "pid": "759", + "name": "sssd_be" + }, + { + "pid": "1101", + "name": "crond" + }, + { + "pid": "742", + "name": "dbus-daemon" + }, + { + "pid": "593", + "name": "systemd-journal" + }, + { + "pid": "802", + "name": "systemd-logind" + }, + { + "pid": "646", + "name": "auditd" + }, + { + "pid": "691", + "name": "sssd" + }, + { + "pid": "5014", + "name": "sshd" + }, + { + "pid": "772", + "name": "sssd_nss" + } + ] + }, + "pigz": { + "name": "pigz", + "version": "2.4", + "release": "4.el8", + "newVersion": "2.4", + "newRelease": "4.el8", + "arch": "x86_64", + "repository": "" + }, + "pinentry": { + "name": "pinentry", + "version": "1.1.0", + "release": "2.el8", + "newVersion": "1.1.0", + "newRelease": "2.el8", + "arch": "x86_64", + "repository": "" + }, + "platform-python": { + "name": "platform-python", + "version": "3.6.8", + "release": "31.el8", + "newVersion": "3.6.8", + "newRelease": "31.el8", + "arch": "x86_64", + "repository": "", + "AffectedProcs": [ + { + "pid": "853", + "name": "tuned" + } + ] + }, + "platform-python-pip": { + "name": "platform-python-pip", + "version": "9.0.3", + "release": "18.el8", + "newVersion": "9.0.3", + "newRelease": "18.el8", + "arch": "noarch", + "repository": "" + }, + "platform-python-setuptools": { + "name": "platform-python-setuptools", + "version": "39.2.0", + "release": "6.el8", + "newVersion": "39.2.0", + "newRelease": "6.el8", + "arch": "noarch", + "repository": "" + }, + "policycoreutils": { + "name": "policycoreutils", + "version": "2.9", + "release": "9.el8", + "newVersion": "2.9", + "newRelease": "9.el8", + "arch": "x86_64", + "repository": "" + }, + "polkit": { + "name": "polkit", + "version": "0.115", + "release": "11.el8", + "newVersion": "0.115", + "newRelease": "11.el8", + "arch": "x86_64", + "repository": "", + "AffectedProcs": [ + { + "pid": "739", + "name": "polkitd" + } + ] + }, + "polkit-libs": { + "name": "polkit-libs", + "version": "0.115", + "release": "11.el8", + "newVersion": "0.115", + "newRelease": "11.el8", + "arch": "x86_64", + "repository": "", + "AffectedProcs": [ + { + "pid": "739", + "name": "polkitd" + } + ] + }, + "polkit-pkla-compat": { + "name": "polkit-pkla-compat", + "version": "0.1", + "release": "12.el8", + "newVersion": "0.1", + "newRelease": "12.el8", + "arch": "x86_64", + "repository": "" + }, + "popt": { + "name": "popt", + "version": "1.16", + "release": "14.el8", + "newVersion": "1.16", + "newRelease": "14.el8", + "arch": "x86_64", + "repository": "", + "AffectedProcs": [ + { + "pid": "759", + "name": "sssd_be" + }, + { + "pid": "691", + "name": "sssd" + }, + { + "pid": "772", + "name": "sssd_nss" + } + ] + }, + "prefixdevname": { + "name": "prefixdevname", + "version": "0.1.0", + "release": "6.el8", + "newVersion": "0.1.0", + "newRelease": "6.el8", + "arch": "x86_64", + "repository": "" + }, + "procps-ng": { + "name": "procps-ng", + "version": "3.3.15", + "release": "3.el8", + "newVersion": "3.3.15", + "newRelease": "3.el8", + "arch": "x86_64", + "repository": "" + }, + "psmisc": { + "name": "psmisc", + "version": "23.1", + "release": "5.el8", + "newVersion": "23.1", + "newRelease": "5.el8", + "arch": "x86_64", + "repository": "" + }, + "publicsuffix-list-dafsa": { + "name": "publicsuffix-list-dafsa", + "version": "20180723", + "release": "1.el8", + "newVersion": "20180723", + "newRelease": "1.el8", + "arch": "noarch", + "repository": "" + }, + "python3-asn1crypto": { + "name": "python3-asn1crypto", + "version": "0.24.0", + "release": "3.el8", + "newVersion": "0.24.0", + "newRelease": "3.el8", + "arch": "noarch", + "repository": "" + }, + "python3-audit": { + "name": "python3-audit", + "version": "3.0", + "release": "0.17.20191104git1c2f876.el8", + "newVersion": "3.0", + "newRelease": "0.17.20191104git1c2f876.el8", + "arch": "x86_64", + "repository": "" + }, + "python3-babel": { + "name": "python3-babel", + "version": "2.5.1", + "release": "5.el8", + "newVersion": "2.5.1", + "newRelease": "5.el8", + "arch": "noarch", + "repository": "" + }, + "python3-cffi": { + "name": "python3-cffi", + "version": "1.11.5", + "release": "5.el8", + "newVersion": "1.11.5", + "newRelease": "5.el8", + "arch": "x86_64", + "repository": "" + }, + "python3-chardet": { + "name": "python3-chardet", + "version": "3.0.4", + "release": "7.el8", + "newVersion": "3.0.4", + "newRelease": "7.el8", + "arch": "noarch", + "repository": "" + }, + "python3-configobj": { + "name": "python3-configobj", + "version": "5.0.6", + "release": "11.el8", + "newVersion": "5.0.6", + "newRelease": "11.el8", + "arch": "noarch", + "repository": "" + }, + "python3-cryptography": { + "name": "python3-cryptography", + "version": "2.3", + "release": "3.el8", + "newVersion": "2.3", + "newRelease": "3.el8", + "arch": "x86_64", + "repository": "" + }, + "python3-dateutil": { + "name": "python3-dateutil", + "version": "1:2.6.1", + "release": "6.el8", + "newVersion": "1:2.6.1", + "newRelease": "6.el8", + "arch": "noarch", + "repository": "" + }, + "python3-dbus": { + "name": "python3-dbus", + "version": "1.2.4", + "release": "15.el8", + "newVersion": "1.2.4", + "newRelease": "15.el8", + "arch": "x86_64", + "repository": "", + "AffectedProcs": [ + { + "pid": "853", + "name": "tuned" + } + ] + }, + "python3-decorator": { + "name": "python3-decorator", + "version": "4.2.1", + "release": "2.el8", + "newVersion": "4.2.1", + "newRelease": "2.el8", + "arch": "noarch", + "repository": "" + }, + "python3-dmidecode": { + "name": "python3-dmidecode", + "version": "3.12.2", + "release": "15.el8", + "newVersion": "3.12.2", + "newRelease": "15.el8", + "arch": "x86_64", + "repository": "", + "AffectedProcs": [ + { + "pid": "853", + "name": "tuned" + } + ] + }, + "python3-dnf": { + "name": "python3-dnf", + "version": "4.2.23", + "release": "4.el8", + "newVersion": "4.2.23", + "newRelease": "4.el8", + "arch": "noarch", + "repository": "" + }, + "python3-dnf-plugins-core": { + "name": "python3-dnf-plugins-core", + "version": "4.0.17", + "release": "5.el8", + "newVersion": "4.0.17", + "newRelease": "5.el8", + "arch": "noarch", + "repository": "" + }, + "python3-ethtool": { + "name": "python3-ethtool", + "version": "0.14", + "release": "3.el8", + "newVersion": "0.14", + "newRelease": "3.el8", + "arch": "x86_64", + "repository": "" + }, + "python3-gobject-base": { + "name": "python3-gobject-base", + "version": "3.28.3", + "release": "2.el8", + "newVersion": "3.28.3", + "newRelease": "2.el8", + "arch": "x86_64", + "repository": "", + "AffectedProcs": [ + { + "pid": "853", + "name": "tuned" + } + ] + }, + "python3-gpg": { + "name": "python3-gpg", + "version": "1.13.1", + "release": "3.el8", + "newVersion": "1.13.1", + "newRelease": "3.el8", + "arch": "x86_64", + "repository": "" + }, + "python3-hawkey": { + "name": "python3-hawkey", + "version": "0.48.0", + "release": "5.el8", + "newVersion": "0.48.0", + "newRelease": "5.el8", + "arch": "x86_64", + "repository": "" + }, + "python3-idna": { + "name": "python3-idna", + "version": "2.5", + "release": "5.el8", + "newVersion": "2.5", + "newRelease": "5.el8", + "arch": "noarch", + "repository": "" + }, + "python3-iniparse": { + "name": "python3-iniparse", + "version": "0.4", + "release": "31.el8", + "newVersion": "0.4", + "newRelease": "31.el8", + "arch": "noarch", + "repository": "" + }, + "python3-inotify": { + "name": "python3-inotify", + "version": "0.9.6", + "release": "13.el8", + "newVersion": "0.9.6", + "newRelease": "13.el8", + "arch": "noarch", + "repository": "" + }, + "python3-jinja2": { + "name": "python3-jinja2", + "version": "2.10.1", + "release": "2.el8_0", + "newVersion": "2.10.1", + "newRelease": "2.el8_0", + "arch": "noarch", + "repository": "" + }, + "python3-jsonpatch": { + "name": "python3-jsonpatch", + "version": "1.21", + "release": "2.el8", + "newVersion": "1.21", + "newRelease": "2.el8", + "arch": "noarch", + "repository": "" + }, + "python3-jsonpointer": { + "name": "python3-jsonpointer", + "version": "1.10", + "release": "11.el8", + "newVersion": "1.10", + "newRelease": "11.el8", + "arch": "noarch", + "repository": "" + }, + "python3-jsonschema": { + "name": "python3-jsonschema", + "version": "2.6.0", + "release": "4.el8", + "newVersion": "2.6.0", + "newRelease": "4.el8", + "arch": "noarch", + "repository": "" + }, + "python3-jwt": { + "name": "python3-jwt", + "version": "1.6.1", + "release": "2.el8", + "newVersion": "1.6.1", + "newRelease": "2.el8", + "arch": "noarch", + "repository": "" + }, + "python3-libcomps": { + "name": "python3-libcomps", + "version": "0.1.11", + "release": "4.el8", + "newVersion": "0.1.11", + "newRelease": "4.el8", + "arch": "x86_64", + "repository": "" + }, + "python3-libdnf": { + "name": "python3-libdnf", + "version": "0.48.0", + "release": "5.el8", + "newVersion": "0.48.0", + "newRelease": "5.el8", + "arch": "x86_64", + "repository": "" + }, + "python3-librepo": { + "name": "python3-librepo", + "version": "1.12.0", + "release": "2.el8", + "newVersion": "1.12.0", + "newRelease": "2.el8", + "arch": "x86_64", + "repository": "" + }, + "python3-libs": { + "name": "python3-libs", + "version": "3.6.8", + "release": "31.el8", + "newVersion": "3.6.8", + "newRelease": "31.el8", + "arch": "x86_64", + "repository": "", + "AffectedProcs": [ + { + "pid": "853", + "name": "tuned" + } + ] + }, + "python3-libselinux": { + "name": "python3-libselinux", + "version": "2.9", + "release": "4.el8_3", + "newVersion": "2.9", + "newRelease": "4.el8_3", + "arch": "x86_64", + "repository": "" + }, + "python3-libsemanage": { + "name": "python3-libsemanage", + "version": "2.9", + "release": "3.el8", + "newVersion": "2.9", + "newRelease": "3.el8", + "arch": "x86_64", + "repository": "" + }, + "python3-libxml2": { + "name": "python3-libxml2", + "version": "2.9.7", + "release": "8.el8", + "newVersion": "2.9.7", + "newRelease": "8.el8", + "arch": "x86_64", + "repository": "", + "AffectedProcs": [ + { + "pid": "853", + "name": "tuned" + } + ] + }, + "python3-linux-procfs": { + "name": "python3-linux-procfs", + "version": "0.6.2", + "release": "2.el8", + "newVersion": "0.6.2", + "newRelease": "2.el8", + "arch": "noarch", + "repository": "" + }, + "python3-magic": { + "name": "python3-magic", + "version": "5.33", + "release": "16.el8", + "newVersion": "5.33", + "newRelease": "16.el8", + "arch": "noarch", + "repository": "" + }, + "python3-markupsafe": { + "name": "python3-markupsafe", + "version": "0.23", + "release": "19.el8", + "newVersion": "0.23", + "newRelease": "19.el8", + "arch": "x86_64", + "repository": "" + }, + "python3-oauthlib": { + "name": "python3-oauthlib", + "version": "2.1.0", + "release": "1.el8", + "newVersion": "2.1.0", + "newRelease": "1.el8", + "arch": "noarch", + "repository": "" + }, + "python3-perf": { + "name": "python3-perf", + "version": "4.18.0", + "release": "240.1.1.el8_3", + "newVersion": "4.18.0", + "newRelease": "240.8.1.el8_3", + "arch": "x86_64", + "repository": "rhel-8-baseos-rhui-rpms" + }, + "python3-pip-wheel": { + "name": "python3-pip-wheel", + "version": "9.0.3", + "release": "18.el8", + "newVersion": "9.0.3", + "newRelease": "18.el8", + "arch": "noarch", + "repository": "" + }, + "python3-ply": { + "name": "python3-ply", + "version": "3.9", + "release": "8.el8", + "newVersion": "3.9", + "newRelease": "8.el8", + "arch": "noarch", + "repository": "" + }, + "python3-policycoreutils": { + "name": "python3-policycoreutils", + "version": "2.9", + "release": "9.el8", + "newVersion": "2.9", + "newRelease": "9.el8", + "arch": "noarch", + "repository": "" + }, + "python3-prettytable": { + "name": "python3-prettytable", + "version": "0.7.2", + "release": "14.el8", + "newVersion": "0.7.2", + "newRelease": "14.el8", + "arch": "noarch", + "repository": "" + }, + "python3-pycparser": { + "name": "python3-pycparser", + "version": "2.14", + "release": "14.el8", + "newVersion": "2.14", + "newRelease": "14.el8", + "arch": "noarch", + "repository": "" + }, + "python3-pyserial": { + "name": "python3-pyserial", + "version": "3.1.1", + "release": "8.el8", + "newVersion": "3.1.1", + "newRelease": "8.el8", + "arch": "noarch", + "repository": "" + }, + "python3-pysocks": { + "name": "python3-pysocks", + "version": "1.6.8", + "release": "3.el8", + "newVersion": "1.6.8", + "newRelease": "3.el8", + "arch": "noarch", + "repository": "" + }, + "python3-pytz": { + "name": "python3-pytz", + "version": "2017.2", + "release": "9.el8", + "newVersion": "2017.2", + "newRelease": "9.el8", + "arch": "noarch", + "repository": "" + }, + "python3-pyudev": { + "name": "python3-pyudev", + "version": "0.21.0", + "release": "7.el8", + "newVersion": "0.21.0", + "newRelease": "7.el8", + "arch": "noarch", + "repository": "" + }, + "python3-pyyaml": { + "name": "python3-pyyaml", + "version": "3.12", + "release": "12.el8", + "newVersion": "3.12", + "newRelease": "12.el8", + "arch": "x86_64", + "repository": "" + }, + "python3-requests": { + "name": "python3-requests", + "version": "2.20.0", + "release": "2.1.el8_1", + "newVersion": "2.20.0", + "newRelease": "2.1.el8_1", + "arch": "noarch", + "repository": "" + }, + "python3-rpm": { + "name": "python3-rpm", + "version": "4.14.3", + "release": "4.el8", + "newVersion": "4.14.3", + "newRelease": "4.el8", + "arch": "x86_64", + "repository": "" + }, + "python3-schedutils": { + "name": "python3-schedutils", + "version": "0.6", + "release": "6.el8", + "newVersion": "0.6", + "newRelease": "6.el8", + "arch": "x86_64", + "repository": "" + }, + "python3-setools": { + "name": "python3-setools", + "version": "4.3.0", + "release": "2.el8", + "newVersion": "4.3.0", + "newRelease": "2.el8", + "arch": "x86_64", + "repository": "" + }, + "python3-setuptools-wheel": { + "name": "python3-setuptools-wheel", + "version": "39.2.0", + "release": "6.el8", + "newVersion": "39.2.0", + "newRelease": "6.el8", + "arch": "noarch", + "repository": "" + }, + "python3-six": { + "name": "python3-six", + "version": "1.11.0", + "release": "8.el8", + "newVersion": "1.11.0", + "newRelease": "8.el8", + "arch": "noarch", + "repository": "" + }, + "python3-subscription-manager-rhsm": { + "name": "python3-subscription-manager-rhsm", + "version": "1.27.16", + "release": "1.el8", + "newVersion": "1.27.18", + "newRelease": "1.el8_3", + "arch": "x86_64", + "repository": "rhel-8-baseos-rhui-rpms" + }, + "python3-syspurpose": { + "name": "python3-syspurpose", + "version": "1.27.16", + "release": "1.el8", + "newVersion": "1.27.18", + "newRelease": "1.el8_3", + "arch": "x86_64", + "repository": "rhel-8-baseos-rhui-rpms" + }, + "python3-unbound": { + "name": "python3-unbound", + "version": "1.7.3", + "release": "14.el8", + "newVersion": "1.7.3", + "newRelease": "14.el8", + "arch": "x86_64", + "repository": "" + }, + "python3-urllib3": { + "name": "python3-urllib3", + "version": "1.24.2", + "release": "4.el8", + "newVersion": "1.24.2", + "newRelease": "4.el8", + "arch": "noarch", + "repository": "" + }, + "qemu-guest-agent": { + "name": "qemu-guest-agent", + "version": "15:4.2.0", + "release": "34.module+el8.3.0+7976+077be4ec", + "newVersion": "15:4.2.0", + "newRelease": "34.module+el8.3.0+9903+ca3e42fb.4", + "arch": "x86_64", + "repository": "rhel-8-appstream-rhui-rpms" + }, + "readline": { + "name": "readline", + "version": "7.0", + "release": "10.el8", + "newVersion": "7.0", + "newRelease": "10.el8", + "arch": "x86_64", + "repository": "" + }, + "redhat-release": { + "name": "redhat-release", + "version": "8.3", + "release": "1.0.el8", + "newVersion": "8.3", + "newRelease": "1.0.el8", + "arch": "x86_64", + "repository": "" + }, + "redhat-release-eula": { + "name": "redhat-release-eula", + "version": "8.3", + "release": "1.0.el8", + "newVersion": "8.3", + "newRelease": "1.0.el8", + "arch": "x86_64", + "repository": "" + }, + "rh-amazon-rhui-client": { + "name": "rh-amazon-rhui-client", + "version": "3.0.32", + "release": "1.el8", + "newVersion": "3.0.40", + "newRelease": "1.el8", + "arch": "noarch", + "repository": "rhui-client-config-server-8" + }, + "rng-tools": { + "name": "rng-tools", + "version": "6.8", + "release": "3.el8", + "newVersion": "6.8", + "newRelease": "3.el8", + "arch": "x86_64", + "repository": "", + "AffectedProcs": [ + { + "pid": "762", + "name": "rngd" + } + ] + }, + "rootfiles": { + "name": "rootfiles", + "version": "8.1", + "release": "22.el8", + "newVersion": "8.1", + "newRelease": "22.el8", + "arch": "noarch", + "repository": "" + }, + "rpm": { + "name": "rpm", + "version": "4.14.3", + "release": "4.el8", + "newVersion": "4.14.3", + "newRelease": "4.el8", + "arch": "x86_64", + "repository": "" + }, + "rpm-build-libs": { + "name": "rpm-build-libs", + "version": "4.14.3", + "release": "4.el8", + "newVersion": "4.14.3", + "newRelease": "4.el8", + "arch": "x86_64", + "repository": "" + }, + "rpm-libs": { + "name": "rpm-libs", + "version": "4.14.3", + "release": "4.el8", + "newVersion": "4.14.3", + "newRelease": "4.el8", + "arch": "x86_64", + "repository": "" + }, + "rpm-plugin-selinux": { + "name": "rpm-plugin-selinux", + "version": "4.14.3", + "release": "4.el8", + "newVersion": "4.14.3", + "newRelease": "4.el8", + "arch": "x86_64", + "repository": "" + }, + "rpm-plugin-systemd-inhibit": { + "name": "rpm-plugin-systemd-inhibit", + "version": "4.14.3", + "release": "4.el8", + "newVersion": "4.14.3", + "newRelease": "4.el8", + "arch": "x86_64", + "repository": "" + }, + "rsync": { + "name": "rsync", + "version": "3.1.3", + "release": "9.el8", + "newVersion": "3.1.3", + "newRelease": "9.el8", + "arch": "x86_64", + "repository": "" + }, + "rsyslog": { + "name": "rsyslog", + "version": "8.1911.0", + "release": "6.el8", + "newVersion": "8.1911.0", + "newRelease": "6.el8", + "arch": "x86_64", + "repository": "", + "AffectedProcs": [ + { + "pid": "1096", + "name": "rsyslogd" + } + ] + }, + "sed": { + "name": "sed", + "version": "4.5", + "release": "2.el8", + "newVersion": "4.5", + "newRelease": "2.el8", + "arch": "x86_64", + "repository": "" + }, + "selinux-policy": { + "name": "selinux-policy", + "version": "3.14.3", + "release": "54.el8", + "newVersion": "3.14.3", + "newRelease": "54.el8_3.2", + "arch": "noarch", + "repository": "rhel-8-baseos-rhui-rpms" + }, + "selinux-policy-targeted": { + "name": "selinux-policy-targeted", + "version": "3.14.3", + "release": "54.el8", + "newVersion": "3.14.3", + "newRelease": "54.el8_3.2", + "arch": "noarch", + "repository": "rhel-8-baseos-rhui-rpms", + "AffectedProcs": [ + { + "pid": "4755", + "name": "(sd-pam)" + }, + { + "pid": "1", + "name": "systemd" + }, + { + "pid": "671", + "name": "systemd-udevd" + }, + { + "pid": "802", + "name": "systemd-logind" + } + ] + }, + "setup": { + "name": "setup", + "version": "2.12.2", + "release": "6.el8", + "newVersion": "2.12.2", + "newRelease": "6.el8", + "arch": "noarch", + "repository": "" + }, + "sg3_utils": { + "name": "sg3_utils", + "version": "1.44", + "release": "5.el8", + "newVersion": "1.44", + "newRelease": "5.el8", + "arch": "x86_64", + "repository": "" + }, + "sg3_utils-libs": { + "name": "sg3_utils-libs", + "version": "1.44", + "release": "5.el8", + "newVersion": "1.44", + "newRelease": "5.el8", + "arch": "x86_64", + "repository": "" + }, + "shadow-utils": { + "name": "shadow-utils", + "version": "2:4.6", + "release": "11.el8", + "newVersion": "2:4.6", + "newRelease": "11.el8", + "arch": "x86_64", + "repository": "" + }, + "shared-mime-info": { + "name": "shared-mime-info", + "version": "1.9", + "release": "3.el8", + "newVersion": "1.9", + "newRelease": "3.el8", + "arch": "x86_64", + "repository": "" + }, + "slang": { + "name": "slang", + "version": "2.3.2", + "release": "3.el8", + "newVersion": "2.3.2", + "newRelease": "3.el8", + "arch": "x86_64", + "repository": "" + }, + "snappy": { + "name": "snappy", + "version": "1.1.8", + "release": "3.el8", + "newVersion": "1.1.8", + "newRelease": "3.el8", + "arch": "x86_64", + "repository": "" + }, + "sqlite-libs": { + "name": "sqlite-libs", + "version": "3.26.0", + "release": "11.el8", + "newVersion": "3.26.0", + "newRelease": "11.el8", + "arch": "x86_64", + "repository": "" + }, + "squashfs-tools": { + "name": "squashfs-tools", + "version": "4.3", + "release": "19.el8", + "newVersion": "4.3", + "newRelease": "19.el8", + "arch": "x86_64", + "repository": "" + }, + "sssd-client": { + "name": "sssd-client", + "version": "2.3.0", + "release": "9.el8", + "newVersion": "2.3.0", + "newRelease": "9.el8", + "arch": "x86_64", + "repository": "", + "AffectedProcs": [ + { + "pid": "849", + "name": "NetworkManager" + }, + { + "pid": "744", + "name": "chronyd" + }, + { + "pid": "4755", + "name": "(sd-pam)" + }, + { + "pid": "4761", + "name": "sshd" + }, + { + "pid": "1100", + "name": "agetty" + }, + { + "pid": "5018", + "name": "bash" + }, + { + "pid": "1324", + "name": "sshd", + "listenPortStats": [ + { + "bindAddress": "*", + "port": "22", + "portReachableTo": [] + } + ] + }, + { + "pid": "853", + "name": "tuned" + }, + { + "pid": "5017", + "name": "sshd" + }, + { + "pid": "739", + "name": "polkitd" + }, + { + "pid": "4747", + "name": "sshd" + }, + { + "pid": "671", + "name": "systemd-udevd" + }, + { + "pid": "759", + "name": "sssd_be" + }, + { + "pid": "1102", + "name": "agetty" + }, + { + "pid": "1101", + "name": "crond" + }, + { + "pid": "742", + "name": "dbus-daemon" + }, + { + "pid": "802", + "name": "systemd-logind" + }, + { + "pid": "646", + "name": "auditd" + }, + { + "pid": "7408", + "name": "sh" + }, + { + "pid": "691", + "name": "sssd" + }, + { + "pid": "5014", + "name": "sshd" + }, + { + "pid": "772", + "name": "sssd_nss" + } + ] + }, + "sssd-common": { + "name": "sssd-common", + "version": "2.3.0", + "release": "9.el8", + "newVersion": "2.3.0", + "newRelease": "9.el8", + "arch": "x86_64", + "repository": "", + "AffectedProcs": [ + { + "pid": "849", + "name": "NetworkManager" + }, + { + "pid": "4755", + "name": "(sd-pam)" + }, + { + "pid": "4761", + "name": "sshd" + }, + { + "pid": "1100", + "name": "agetty" + }, + { + "pid": "5018", + "name": "bash" + }, + { + "pid": "1324", + "name": "sshd", + "listenPortStats": [ + { + "bindAddress": "*", + "port": "22", + "portReachableTo": [] + } + ] + }, + { + "pid": "853", + "name": "tuned" + }, + { + "pid": "5017", + "name": "sshd" + }, + { + "pid": "4747", + "name": "sshd" + }, + { + "pid": "671", + "name": "systemd-udevd" + }, + { + "pid": "759", + "name": "sssd_be" + }, + { + "pid": "1102", + "name": "agetty" + }, + { + "pid": "1101", + "name": "crond" + }, + { + "pid": "742", + "name": "dbus-daemon" + }, + { + "pid": "802", + "name": "systemd-logind" + }, + { + "pid": "646", + "name": "auditd" + }, + { + "pid": "7408", + "name": "sh" + }, + { + "pid": "691", + "name": "sssd" + }, + { + "pid": "5014", + "name": "sshd" + }, + { + "pid": "772", + "name": "sssd_nss" + } + ] + }, + "sssd-kcm": { + "name": "sssd-kcm", + "version": "2.3.0", + "release": "9.el8", + "newVersion": "2.3.0", + "newRelease": "9.el8", + "arch": "x86_64", + "repository": "" + }, + "sssd-nfs-idmap": { + "name": "sssd-nfs-idmap", + "version": "2.3.0", + "release": "9.el8", + "newVersion": "2.3.0", + "newRelease": "9.el8", + "arch": "x86_64", + "repository": "" + }, + "subscription-manager": { + "name": "subscription-manager", + "version": "1.27.16", + "release": "1.el8", + "newVersion": "1.27.18", + "newRelease": "1.el8_3", + "arch": "x86_64", + "repository": "rhel-8-baseos-rhui-rpms" + }, + "subscription-manager-rhsm-certificates": { + "name": "subscription-manager-rhsm-certificates", + "version": "1.27.16", + "release": "1.el8", + "newVersion": "1.27.18", + "newRelease": "1.el8_3", + "arch": "x86_64", + "repository": "rhel-8-baseos-rhui-rpms" + }, + "sudo": { + "name": "sudo", + "version": "1.8.29", + "release": "6.el8", + "newVersion": "1.8.29", + "newRelease": "6.el8_3.1", + "arch": "x86_64", + "repository": "rhel-8-baseos-rhui-rpms" + }, + "systemd": { + "name": "systemd", + "version": "239", + "release": "41.el8_3", + "newVersion": "239", + "newRelease": "41.el8_3.1", + "arch": "x86_64", + "repository": "rhel-8-baseos-rhui-rpms", + "AffectedProcs": [ + { + "pid": "4755", + "name": "(sd-pam)" + }, + { + "pid": "1", + "name": "systemd" + }, + { + "pid": "4751", + "name": "systemd" + }, + { + "pid": "671", + "name": "systemd-udevd" + }, + { + "pid": "593", + "name": "systemd-journal" + }, + { + "pid": "802", + "name": "systemd-logind" + } + ] + }, + "systemd-libs": { + "name": "systemd-libs", + "version": "239", + "release": "41.el8_3", + "newVersion": "239", + "newRelease": "41.el8_3.1", + "arch": "x86_64", + "repository": "rhel-8-baseos-rhui-rpms", + "AffectedProcs": [ + { + "pid": "849", + "name": "NetworkManager" + }, + { + "pid": "744", + "name": "chronyd" + }, + { + "pid": "4755", + "name": "(sd-pam)" + }, + { + "pid": "1", + "name": "systemd" + }, + { + "pid": "4761", + "name": "sshd" + }, + { + "pid": "1324", + "name": "sshd", + "listenPortStats": [ + { + "bindAddress": "*", + "port": "22", + "portReachableTo": [] + } + ] + }, + { + "pid": "853", + "name": "tuned" + }, + { + "pid": "1096", + "name": "rsyslogd" + }, + { + "pid": "4751", + "name": "systemd" + }, + { + "pid": "5017", + "name": "sshd" + }, + { + "pid": "739", + "name": "polkitd" + }, + { + "pid": "4747", + "name": "sshd" + }, + { + "pid": "671", + "name": "systemd-udevd" + }, + { + "pid": "759", + "name": "sssd_be" + }, + { + "pid": "742", + "name": "dbus-daemon" + }, + { + "pid": "593", + "name": "systemd-journal" + }, + { + "pid": "802", + "name": "systemd-logind" + }, + { + "pid": "691", + "name": "sssd" + }, + { + "pid": "5014", + "name": "sshd" + }, + { + "pid": "772", + "name": "sssd_nss" + } + ] + }, + "systemd-pam": { + "name": "systemd-pam", + "version": "239", + "release": "41.el8_3", + "newVersion": "239", + "newRelease": "41.el8_3.1", + "arch": "x86_64", + "repository": "rhel-8-baseos-rhui-rpms", + "AffectedProcs": [ + { + "pid": "4755", + "name": "(sd-pam)" + }, + { + "pid": "4761", + "name": "sshd" + }, + { + "pid": "5017", + "name": "sshd" + }, + { + "pid": "4747", + "name": "sshd" + }, + { + "pid": "5014", + "name": "sshd" + } + ] + }, + "systemd-udev": { + "name": "systemd-udev", + "version": "239", + "release": "41.el8_3", + "newVersion": "239", + "newRelease": "41.el8_3.1", + "arch": "x86_64", + "repository": "rhel-8-baseos-rhui-rpms", + "AffectedProcs": [ + { + "pid": "671", + "name": "systemd-udevd" + } + ] + }, + "tar": { + "name": "tar", + "version": "2:1.30", + "release": "5.el8", + "newVersion": "2:1.30", + "newRelease": "5.el8", + "arch": "x86_64", + "repository": "" + }, + "teamd": { + "name": "teamd", + "version": "1.31", + "release": "2.el8", + "newVersion": "1.31", + "newRelease": "2.el8", + "arch": "x86_64", + "repository": "", + "AffectedProcs": [ + { + "pid": "849", + "name": "NetworkManager" + } + ] + }, + "timedatex": { + "name": "timedatex", + "version": "0.5", + "release": "3.el8", + "newVersion": "0.5", + "newRelease": "3.el8", + "arch": "x86_64", + "repository": "" + }, + "trousers": { + "name": "trousers", + "version": "0.3.14", + "release": "4.el8", + "newVersion": "0.3.14", + "newRelease": "4.el8", + "arch": "x86_64", + "repository": "" + }, + "trousers-lib": { + "name": "trousers-lib", + "version": "0.3.14", + "release": "4.el8", + "newVersion": "0.3.14", + "newRelease": "4.el8", + "arch": "x86_64", + "repository": "" + }, + "tuned": { + "name": "tuned", + "version": "2.14.0", + "release": "3.el8", + "newVersion": "2.14.0", + "newRelease": "3.el8_3.2", + "arch": "noarch", + "repository": "rhel-8-baseos-rhui-rpms" + }, + "tzdata": { + "name": "tzdata", + "version": "2020d", + "release": "1.el8", + "newVersion": "2021a", + "newRelease": "1.el8", + "arch": "noarch", + "repository": "rhel-8-baseos-rhui-rpms" + }, + "unbound-libs": { + "name": "unbound-libs", + "version": "1.7.3", + "release": "14.el8", + "newVersion": "1.7.3", + "newRelease": "14.el8", + "arch": "x86_64", + "repository": "" + }, + "usermode": { + "name": "usermode", + "version": "1.113", + "release": "1.el8", + "newVersion": "1.113", + "newRelease": "1.el8", + "arch": "x86_64", + "repository": "" + }, + "util-linux": { + "name": "util-linux", + "version": "2.32.1", + "release": "24.el8", + "newVersion": "2.32.1", + "newRelease": "24.el8", + "arch": "x86_64", + "repository": "", + "AffectedProcs": [ + { + "pid": "1100", + "name": "agetty" + }, + { + "pid": "1102", + "name": "agetty" + } + ] + }, + "vim-minimal": { + "name": "vim-minimal", + "version": "2:8.0.1763", + "release": "15.el8", + "newVersion": "2:8.0.1763", + "newRelease": "15.el8", + "arch": "x86_64", + "repository": "" + }, + "virt-what": { + "name": "virt-what", + "version": "1.18", + "release": "6.el8", + "newVersion": "1.18", + "newRelease": "6.el8", + "arch": "x86_64", + "repository": "" + }, + "which": { + "name": "which", + "version": "2.21", + "release": "12.el8", + "newVersion": "2.21", + "newRelease": "12.el8", + "arch": "x86_64", + "repository": "" + }, + "xfsprogs": { + "name": "xfsprogs", + "version": "5.0.0", + "release": "4.el8", + "newVersion": "5.0.0", + "newRelease": "4.el8", + "arch": "x86_64", + "repository": "" + }, + "xkeyboard-config": { + "name": "xkeyboard-config", + "version": "2.28", + "release": "1.el8", + "newVersion": "2.28", + "newRelease": "1.el8", + "arch": "noarch", + "repository": "" + }, + "xz": { + "name": "xz", + "version": "5.2.4", + "release": "3.el8", + "newVersion": "5.2.4", + "newRelease": "3.el8", + "arch": "x86_64", + "repository": "" + }, + "xz-libs": { + "name": "xz-libs", + "version": "5.2.4", + "release": "3.el8", + "newVersion": "5.2.4", + "newRelease": "3.el8", + "arch": "x86_64", + "repository": "", + "AffectedProcs": [ + { + "pid": "849", + "name": "NetworkManager" + }, + { + "pid": "4755", + "name": "(sd-pam)" + }, + { + "pid": "1", + "name": "systemd" + }, + { + "pid": "4761", + "name": "sshd" + }, + { + "pid": "1324", + "name": "sshd", + "listenPortStats": [ + { + "bindAddress": "*", + "port": "22", + "portReachableTo": [] + } + ] + }, + { + "pid": "853", + "name": "tuned" + }, + { + "pid": "1096", + "name": "rsyslogd" + }, + { + "pid": "4751", + "name": "systemd" + }, + { + "pid": "5017", + "name": "sshd" + }, + { + "pid": "739", + "name": "polkitd" + }, + { + "pid": "762", + "name": "rngd" + }, + { + "pid": "4747", + "name": "sshd" + }, + { + "pid": "671", + "name": "systemd-udevd" + }, + { + "pid": "759", + "name": "sssd_be" + }, + { + "pid": "742", + "name": "dbus-daemon" + }, + { + "pid": "593", + "name": "systemd-journal" + }, + { + "pid": "802", + "name": "systemd-logind" + }, + { + "pid": "691", + "name": "sssd" + }, + { + "pid": "5014", + "name": "sshd" + }, + { + "pid": "772", + "name": "sssd_nss" + } + ] + }, + "yum": { + "name": "yum", + "version": "4.2.23", + "release": "4.el8", + "newVersion": "4.2.23", + "newRelease": "4.el8", + "arch": "noarch", + "repository": "" + }, + "yum-utils": { + "name": "yum-utils", + "version": "4.0.17", + "release": "5.el8", + "newVersion": "4.0.17", + "newRelease": "5.el8", + "arch": "noarch", + "repository": "" + }, + "zlib": { + "name": "zlib", + "version": "1.2.11", + "release": "16.el8_2", + "newVersion": "1.2.11", + "newRelease": "16.el8_2", + "arch": "x86_64", + "repository": "", + "AffectedProcs": [ + { + "pid": "849", + "name": "NetworkManager" + }, + { + "pid": "4755", + "name": "(sd-pam)" + }, + { + "pid": "1", + "name": "systemd" + }, + { + "pid": "4761", + "name": "sshd" + }, + { + "pid": "1324", + "name": "sshd", + "listenPortStats": [ + { + "bindAddress": "*", + "port": "22", + "portReachableTo": [] + } + ] + }, + { + "pid": "853", + "name": "tuned" + }, + { + "pid": "1096", + "name": "rsyslogd" + }, + { + "pid": "4751", + "name": "systemd" + }, + { + "pid": "5017", + "name": "sshd" + }, + { + "pid": "739", + "name": "polkitd" + }, + { + "pid": "762", + "name": "rngd" + }, + { + "pid": "4747", + "name": "sshd" + }, + { + "pid": "671", + "name": "systemd-udevd" + }, + { + "pid": "759", + "name": "sssd_be" + }, + { + "pid": "593", + "name": "systemd-journal" + }, + { + "pid": "802", + "name": "systemd-logind" + }, + { + "pid": "646", + "name": "auditd" + }, + { + "pid": "691", + "name": "sssd" + }, + { + "pid": "5014", + "name": "sshd" + }, + { + "pid": "772", + "name": "sssd_nss" + } + ] + } + }, + "constant": { + "scan": { + "logDir": "/var/log/vuls", + "resultsDir": "/home/ubuntu/go/src/github.com/future-architect/vuls/results", + "default": { + "port": "22", + "scanMode": [ + "fast" + ] + }, + "servers": { + "rhel8": { + "serverName": "rhel8", + "user": "ec2-user", + "host": "18.183.170.192", + "port": "22", + "keyPath": "/home/ubuntu/.ssh/stg.pem", + "scanMode": [ + "fast-root" + ], + "wordpress": {} + } + }, + "cveDict": { + "Name": "cveDict", + "Type": "sqlite3", + "SQLite3Path": "/home/ubuntu/go/src/github.com/kotakanbe/go-cve-dictionary/cve.sqlite3", + "DebugSQL": false + }, + "ovalDict": { + "Name": "ovalDict", + "Type": "sqlite3", + "SQLite3Path": "/home/ubuntu/go/src/github.com/kotakanbe/goval-dictionary/oval.sqlite3", + "DebugSQL": false + }, + "gost": { + "Name": "gost", + "Type": "sqlite3", + "SQLite3Path": "/home/ubuntu/go/src/github.com/future-architect/vuls/gost.sqlite3", + "DebugSQL": false + }, + "exploit": { + "Name": "exploit", + "Type": "sqlite3", + "SQLite3Path": "/home/ubuntu/go/src/github.com/vulsio/go-exploitdb/go-exploitdb.sqlite3", + "DebugSQL": false + }, + "metasploit": { + "Name": "metasploit", + "Type": "sqlite3", + "SQLite3Path": "/home/ubuntu/go/src/github.com/takuzoo3868/go-msfdb/go-msfdb.sqlite3", + "DebugSQL": false + } + }, + "report": { + "default": {}, + "cveDict": { + "Name": "", + "Type": "", + "SQLite3Path": "", + "DebugSQL": false + }, + "ovalDict": { + "Name": "", + "Type": "", + "SQLite3Path": "", + "DebugSQL": false + }, + "gost": { + "Name": "", + "Type": "", + "SQLite3Path": "", + "DebugSQL": false + }, + "exploit": { + "Name": "", + "Type": "", + "SQLite3Path": "", + "DebugSQL": false + }, + "metasploit": { + "Name": "", + "Type": "", + "SQLite3Path": "", + "DebugSQL": false + } + } + } +} diff --git a/integration/data/ubuntu_1804.json b/integration/data/ubuntu_1804.json new file mode 100755 index 00000000..ec0a2ef0 --- /dev/null +++ b/integration/data/ubuntu_1804.json @@ -0,0 +1,8609 @@ +{ + "jsonVersion": 4, + "lang": "", + "serverUUID": "", + "serverName": "ubuntu_1804", + "family": "ubuntu", + "release": "18.04", + "container": { + "containerID": "", + "name": "", + "image": "", + "type": "", + "uuid": "" + }, + "platform": { + "name": "aws", + "instanceID": "i-0c9b08532fe475f96" + }, + "ipv4Addrs": [ + "192.168.0.113" + ], + "scannedAt": "2021-03-24T17:07:29.483673036+09:00", + "scanMode": "fast-root mode", + "scannedVersion": "v0.15.9", + "scannedRevision": "build-20210324_121008_fc3b438", + "scannedBy": "dev", + "scannedVia": "remote", + "scannedIpv4Addrs": [ + "172.21.0.1", + "172.19.0.1", + "172.18.0.1", + "172.17.0.1", + "172.20.0.1" + ], + "reportedAt": "0001-01-01T00:00:00Z", + "reportedVersion": "", + "reportedRevision": "", + "reportedBy": "", + "errors": [], + "warnings": [], + "scannedCves": {}, + "runningKernel": { + "release": "5.4.0-1038-aws", + "version": "", + "rebootRequired": false + }, + "packages": { + "accountsservice": { + "name": "accountsservice", + "version": "0.6.45-1ubuntu1.3", + "release": "", + "newVersion": "0.6.45-1ubuntu1.3", + "newRelease": "", + "arch": "", + "repository": "", + "AffectedProcs": [ + { + "pid": "995", + "name": "accounts-daemon" + } + ] + }, + "acl": { + "name": "acl", + "version": "2.2.52-3build1", + "release": "", + "newVersion": "2.2.52-3build1", + "newRelease": "", + "arch": "", + "repository": "" + }, + "acpid": { + "name": "acpid", + "version": "1:2.0.28-1ubuntu1", + "release": "", + "newVersion": "1:2.0.28-1ubuntu1", + "newRelease": "", + "arch": "", + "repository": "", + "AffectedProcs": [ + { + "pid": "1005", + "name": "acpid" + } + ] + }, + "adduser": { + "name": "adduser", + "version": "3.116ubuntu1", + "release": "", + "newVersion": "3.116ubuntu1", + "newRelease": "", + "arch": "", + "repository": "" + }, + "apparmor": { + "name": "apparmor", + "version": "2.12-4ubuntu5.1", + "release": "", + "newVersion": "2.12-4ubuntu5.1", + "newRelease": "", + "arch": "", + "repository": "" + }, + "apport": { + "name": "apport", + "version": "2.20.9-0ubuntu7.23", + "release": "", + "newVersion": "2.20.9-0ubuntu7.23", + "newRelease": "", + "arch": "", + "repository": "" + }, + "apport-symptoms": { + "name": "apport-symptoms", + "version": "0.20", + "release": "", + "newVersion": "0.20", + "newRelease": "", + "arch": "", + "repository": "" + }, + "apt": { + "name": "apt", + "version": "1.6.12ubuntu0.2", + "release": "", + "newVersion": "1.6.12ubuntu0.2", + "newRelease": "", + "arch": "", + "repository": "" + }, + "apt-utils": { + "name": "apt-utils", + "version": "1.6.12ubuntu0.2", + "release": "", + "newVersion": "1.6.12ubuntu0.2", + "newRelease": "", + "arch": "", + "repository": "" + }, + "at": { + "name": "at", + "version": "3.1.20-3.1ubuntu2", + "release": "", + "newVersion": "3.1.20-3.1ubuntu2", + "newRelease": "", + "arch": "", + "repository": "", + "AffectedProcs": [ + { + "pid": "1002", + "name": "atd" + } + ] + }, + "base-files": { + "name": "base-files", + "version": "10.1ubuntu2.10", + "release": "", + "newVersion": "10.1ubuntu2.10", + "newRelease": "", + "arch": "", + "repository": "" + }, + "base-passwd": { + "name": "base-passwd", + "version": "3.5.44", + "release": "", + "newVersion": "3.5.44", + "newRelease": "", + "arch": "", + "repository": "" + }, + "bash": { + "name": "bash", + "version": "4.4.18-2ubuntu1.2", + "release": "", + "newVersion": "4.4.18-2ubuntu1.2", + "newRelease": "", + "arch": "", + "repository": "", + "AffectedProcs": [ + { + "pid": "2067", + "name": "bash" + }, + { + "pid": "2965", + "name": "bash" + } + ] + }, + "bash-completion": { + "name": "bash-completion", + "version": "1:2.8-1ubuntu1", + "release": "", + "newVersion": "1:2.8-1ubuntu1", + "newRelease": "", + "arch": "", + "repository": "" + }, + "bc": { + "name": "bc", + "version": "1.07.1-2", + "release": "", + "newVersion": "1.07.1-2", + "newRelease": "", + "arch": "", + "repository": "" + }, + "bcache-tools": { + "name": "bcache-tools", + "version": "1.0.8-2ubuntu0.18.04.1", + "release": "", + "newVersion": "1.0.8-2ubuntu0.18.04.1", + "newRelease": "", + "arch": "", + "repository": "" + }, + "bind9-host": { + "name": "bind9-host", + "version": "1:9.11.3+dfsg-1ubuntu1.14", + "release": "", + "newVersion": "1:9.11.3+dfsg-1ubuntu1.14", + "newRelease": "", + "arch": "", + "repository": "" + }, + "bsdmainutils": { + "name": "bsdmainutils", + "version": "11.1.2ubuntu1", + "release": "", + "newVersion": "11.1.2ubuntu1", + "newRelease": "", + "arch": "", + "repository": "" + }, + "bsdutils": { + "name": "bsdutils", + "version": "1:2.31.1-0.4ubuntu3.7", + "release": "", + "newVersion": "1:2.31.1-0.4ubuntu3.7", + "newRelease": "", + "arch": "", + "repository": "" + }, + "btrfs-progs": { + "name": "btrfs-progs", + "version": "4.15.1-1build1", + "release": "", + "newVersion": "4.15.1-1build1", + "newRelease": "", + "arch": "", + "repository": "" + }, + "btrfs-tools": { + "name": "btrfs-tools", + "version": "4.15.1-1build1", + "release": "", + "newVersion": "4.15.1-1build1", + "newRelease": "", + "arch": "", + "repository": "" + }, + "busybox-initramfs": { + "name": "busybox-initramfs", + "version": "1:1.27.2-2ubuntu3.3", + "release": "", + "newVersion": "1:1.27.2-2ubuntu3.3", + "newRelease": "", + "arch": "", + "repository": "" + }, + "busybox-static": { + "name": "busybox-static", + "version": "1:1.27.2-2ubuntu3.3", + "release": "", + "newVersion": "1:1.27.2-2ubuntu3.3", + "newRelease": "", + "arch": "", + "repository": "" + }, + "byobu": { + "name": "byobu", + "version": "5.125-0ubuntu1", + "release": "", + "newVersion": "5.125-0ubuntu1", + "newRelease": "", + "arch": "", + "repository": "" + }, + "bzip2": { + "name": "bzip2", + "version": "1.0.6-8.1ubuntu0.2", + "release": "", + "newVersion": "1.0.6-8.1ubuntu0.2", + "newRelease": "", + "arch": "", + "repository": "" + }, + "ca-certificates": { + "name": "ca-certificates", + "version": "20210119~18.04.1", + "release": "", + "newVersion": "20210119~18.04.1", + "newRelease": "", + "arch": "", + "repository": "" + }, + "cloud-guest-utils": { + "name": "cloud-guest-utils", + "version": "0.30-0ubuntu5", + "release": "", + "newVersion": "0.30-0ubuntu5", + "newRelease": "", + "arch": "", + "repository": "" + }, + "cloud-init": { + "name": "cloud-init", + "version": "20.4.1-0ubuntu1~18.04.1", + "release": "", + "newVersion": "20.4.1-0ubuntu1~18.04.1", + "newRelease": "", + "arch": "", + "repository": "" + }, + "cloud-initramfs-copymods": { + "name": "cloud-initramfs-copymods", + "version": "0.40ubuntu1.1", + "release": "", + "newVersion": "0.40ubuntu1.1", + "newRelease": "", + "arch": "", + "repository": "" + }, + "cloud-initramfs-dyn-netconf": { + "name": "cloud-initramfs-dyn-netconf", + "version": "0.40ubuntu1.1", + "release": "", + "newVersion": "0.40ubuntu1.1", + "newRelease": "", + "arch": "", + "repository": "" + }, + "command-not-found": { + "name": "command-not-found", + "version": "18.04.5", + "release": "", + "newVersion": "18.04.5", + "newRelease": "", + "arch": "", + "repository": "" + }, + "command-not-found-data": { + "name": "command-not-found-data", + "version": "18.04.5", + "release": "", + "newVersion": "18.04.5", + "newRelease": "", + "arch": "", + "repository": "" + }, + "console-setup": { + "name": "console-setup", + "version": "1.178ubuntu2.9", + "release": "", + "newVersion": "1.178ubuntu2.9", + "newRelease": "", + "arch": "", + "repository": "" + }, + "console-setup-linux": { + "name": "console-setup-linux", + "version": "1.178ubuntu2.9", + "release": "", + "newVersion": "1.178ubuntu2.9", + "newRelease": "", + "arch": "", + "repository": "" + }, + "coreutils": { + "name": "coreutils", + "version": "8.28-1ubuntu1", + "release": "", + "newVersion": "8.28-1ubuntu1", + "newRelease": "", + "arch": "", + "repository": "" + }, + "cpio": { + "name": "cpio", + "version": "2.12+dfsg-6ubuntu0.18.04.1", + "release": "", + "newVersion": "2.12+dfsg-6ubuntu0.18.04.1", + "newRelease": "", + "arch": "", + "repository": "" + }, + "cron": { + "name": "cron", + "version": "3.0pl1-128.1ubuntu1", + "release": "", + "newVersion": "3.0pl1-128.1ubuntu1", + "newRelease": "", + "arch": "", + "repository": "", + "AffectedProcs": [ + { + "pid": "970", + "name": "cron" + } + ] + }, + "cryptsetup": { + "name": "cryptsetup", + "version": "2:2.0.2-1ubuntu1.2", + "release": "", + "newVersion": "2:2.0.2-1ubuntu1.2", + "newRelease": "", + "arch": "", + "repository": "" + }, + "cryptsetup-bin": { + "name": "cryptsetup-bin", + "version": "2:2.0.2-1ubuntu1.2", + "release": "", + "newVersion": "2:2.0.2-1ubuntu1.2", + "newRelease": "", + "arch": "", + "repository": "" + }, + "curl": { + "name": "curl", + "version": "7.58.0-2ubuntu3.12", + "release": "", + "newVersion": "7.58.0-2ubuntu3.12", + "newRelease": "", + "arch": "", + "repository": "" + }, + "dash": { + "name": "dash", + "version": "0.5.8-2.10", + "release": "", + "newVersion": "0.5.8-2.10", + "newRelease": "", + "arch": "", + "repository": "" + }, + "dbus": { + "name": "dbus", + "version": "1.12.2-1ubuntu1.2", + "release": "", + "newVersion": "1.12.2-1ubuntu1.2", + "newRelease": "", + "arch": "", + "repository": "", + "AffectedProcs": [ + { + "pid": "980", + "name": "dbus-daemon" + } + ] + }, + "dctrl-tools": { + "name": "dctrl-tools", + "version": "2.24-2build1", + "release": "", + "newVersion": "2.24-2build1", + "newRelease": "", + "arch": "", + "repository": "" + }, + "debconf": { + "name": "debconf", + "version": "1.5.66ubuntu1", + "release": "", + "newVersion": "1.5.66ubuntu1", + "newRelease": "", + "arch": "", + "repository": "" + }, + "debconf-i18n": { + "name": "debconf-i18n", + "version": "1.5.66ubuntu1", + "release": "", + "newVersion": "1.5.66ubuntu1", + "newRelease": "", + "arch": "", + "repository": "" + }, + "debian-goodies": { + "name": "debian-goodies", + "version": "0.79", + "release": "", + "newVersion": "0.79", + "newRelease": "", + "arch": "", + "repository": "" + }, + "debianutils": { + "name": "debianutils", + "version": "4.8.4", + "release": "", + "newVersion": "4.8.4", + "newRelease": "", + "arch": "", + "repository": "" + }, + "diffutils": { + "name": "diffutils", + "version": "1:3.6-1", + "release": "", + "newVersion": "1:3.6-1", + "newRelease": "", + "arch": "", + "repository": "" + }, + "dirmngr": { + "name": "dirmngr", + "version": "2.2.4-1ubuntu1.4", + "release": "", + "newVersion": "2.2.4-1ubuntu1.4", + "newRelease": "", + "arch": "", + "repository": "" + }, + "distro-info-data": { + "name": "distro-info-data", + "version": "0.37ubuntu0.9", + "release": "", + "newVersion": "0.37ubuntu0.9", + "newRelease": "", + "arch": "", + "repository": "" + }, + "dmeventd": { + "name": "dmeventd", + "version": "2:1.02.145-4.1ubuntu3.18.04.3", + "release": "", + "newVersion": "2:1.02.145-4.1ubuntu3.18.04.3", + "newRelease": "", + "arch": "", + "repository": "" + }, + "dmidecode": { + "name": "dmidecode", + "version": "3.1-1ubuntu0.1", + "release": "", + "newVersion": "3.1-1ubuntu0.1", + "newRelease": "", + "arch": "", + "repository": "" + }, + "dmsetup": { + "name": "dmsetup", + "version": "2:1.02.145-4.1ubuntu3.18.04.3", + "release": "", + "newVersion": "2:1.02.145-4.1ubuntu3.18.04.3", + "newRelease": "", + "arch": "", + "repository": "" + }, + "dns-root-data": { + "name": "dns-root-data", + "version": "2018013001", + "release": "", + "newVersion": "2018013001", + "newRelease": "", + "arch": "", + "repository": "" + }, + "dnsmasq-base": { + "name": "dnsmasq-base", + "version": "2.79-1ubuntu0.3", + "release": "", + "newVersion": "2.79-1ubuntu0.3", + "newRelease": "", + "arch": "", + "repository": "" + }, + "dnsutils": { + "name": "dnsutils", + "version": "1:9.11.3+dfsg-1ubuntu1.14", + "release": "", + "newVersion": "1:9.11.3+dfsg-1ubuntu1.14", + "newRelease": "", + "arch": "", + "repository": "" + }, + "dosfstools": { + "name": "dosfstools", + "version": "4.1-1", + "release": "", + "newVersion": "4.1-1", + "newRelease": "", + "arch": "", + "repository": "" + }, + "dpkg": { + "name": "dpkg", + "version": "1.19.0.5ubuntu2.3", + "release": "", + "newVersion": "1.19.0.5ubuntu2.3", + "newRelease": "", + "arch": "", + "repository": "" + }, + "e2fsprogs": { + "name": "e2fsprogs", + "version": "1.44.1-1ubuntu1.3", + "release": "", + "newVersion": "1.44.1-1ubuntu1.3", + "newRelease": "", + "arch": "", + "repository": "" + }, + "eatmydata": { + "name": "eatmydata", + "version": "105-6", + "release": "", + "newVersion": "105-6", + "newRelease": "", + "arch": "", + "repository": "" + }, + "ebtables": { + "name": "ebtables", + "version": "2.0.10.4-3.5ubuntu2.18.04.3", + "release": "", + "newVersion": "2.0.10.4-3.5ubuntu2.18.04.3", + "newRelease": "", + "arch": "", + "repository": "" + }, + "ec2-hibinit-agent": { + "name": "ec2-hibinit-agent", + "version": "1.0.0-0ubuntu4~18.04.5", + "release": "", + "newVersion": "1.0.0-0ubuntu4~18.04.5", + "newRelease": "", + "arch": "", + "repository": "" + }, + "ed": { + "name": "ed", + "version": "1.10-2.1", + "release": "", + "newVersion": "1.10-2.1", + "newRelease": "", + "arch": "", + "repository": "" + }, + "eject": { + "name": "eject", + "version": "2.1.5+deb1+cvs20081104-13.2", + "release": "", + "newVersion": "2.1.5+deb1+cvs20081104-13.2", + "newRelease": "", + "arch": "", + "repository": "" + }, + "elfutils": { + "name": "elfutils", + "version": "0.170-0.4ubuntu0.1", + "release": "", + "newVersion": "0.170-0.4ubuntu0.1", + "newRelease": "", + "arch": "", + "repository": "" + }, + "ethtool": { + "name": "ethtool", + "version": "1:4.15-0ubuntu1", + "release": "", + "newVersion": "1:4.15-0ubuntu1", + "newRelease": "", + "arch": "", + "repository": "" + }, + "fdisk": { + "name": "fdisk", + "version": "2.31.1-0.4ubuntu3.7", + "release": "", + "newVersion": "2.31.1-0.4ubuntu3.7", + "newRelease": "", + "arch": "", + "repository": "" + }, + "file": { + "name": "file", + "version": "1:5.32-2ubuntu0.4", + "release": "", + "newVersion": "1:5.32-2ubuntu0.4", + "newRelease": "", + "arch": "", + "repository": "" + }, + "findutils": { + "name": "findutils", + "version": "4.6.0+git+20170828-2", + "release": "", + "newVersion": "4.6.0+git+20170828-2", + "newRelease": "", + "arch": "", + "repository": "" + }, + "fonts-ubuntu-console": { + "name": "fonts-ubuntu-console", + "version": "0.83-2", + "release": "", + "newVersion": "0.83-2", + "newRelease": "", + "arch": "", + "repository": "" + }, + "friendly-recovery": { + "name": "friendly-recovery", + "version": "0.2.38ubuntu1.2", + "release": "", + "newVersion": "0.2.38ubuntu1.2", + "newRelease": "", + "arch": "", + "repository": "" + }, + "ftp": { + "name": "ftp", + "version": "0.17-34", + "release": "", + "newVersion": "0.17-34", + "newRelease": "", + "arch": "", + "repository": "" + }, + "fuse": { + "name": "fuse", + "version": "2.9.7-1ubuntu1", + "release": "", + "newVersion": "2.9.7-1ubuntu1", + "newRelease": "", + "arch": "", + "repository": "" + }, + "gawk": { + "name": "gawk", + "version": "1:4.1.4+dfsg-1build1", + "release": "", + "newVersion": "1:4.1.4+dfsg-1build1", + "newRelease": "", + "arch": "", + "repository": "" + }, + "gcc-8-base": { + "name": "gcc-8-base", + "version": "8.4.0-1ubuntu1~18.04", + "release": "", + "newVersion": "8.4.0-1ubuntu1~18.04", + "newRelease": "", + "arch": "", + "repository": "" + }, + "gdisk": { + "name": "gdisk", + "version": "1.0.3-1", + "release": "", + "newVersion": "1.0.3-1", + "newRelease": "", + "arch": "", + "repository": "" + }, + "geoip-database": { + "name": "geoip-database", + "version": "20180315-1", + "release": "", + "newVersion": "20180315-1", + "newRelease": "", + "arch": "", + "repository": "" + }, + "gettext-base": { + "name": "gettext-base", + "version": "0.19.8.1-6ubuntu0.3", + "release": "", + "newVersion": "0.19.8.1-6ubuntu0.3", + "newRelease": "", + "arch": "", + "repository": "" + }, + "gir1.2-glib-2.0": { + "name": "gir1.2-glib-2.0", + "version": "1.56.1-1", + "release": "", + "newVersion": "1.56.1-1", + "newRelease": "", + "arch": "", + "repository": "", + "AffectedProcs": [ + { + "pid": "1000", + "name": "networkd-dispat" + }, + { + "pid": "1040", + "name": "unattended-upgr" + } + ] + }, + "git": { + "name": "git", + "version": "1:2.17.1-1ubuntu0.7", + "release": "", + "newVersion": "1:2.17.1-1ubuntu0.8", + "newRelease": "", + "arch": "", + "repository": "bionic-updates/main" + }, + "git-man": { + "name": "git-man", + "version": "1:2.17.1-1ubuntu0.7", + "release": "", + "newVersion": "1:2.17.1-1ubuntu0.8", + "newRelease": "", + "arch": "", + "repository": "bionic-updates/main" + }, + "gnupg": { + "name": "gnupg", + "version": "2.2.4-1ubuntu1.4", + "release": "", + "newVersion": "2.2.4-1ubuntu1.4", + "newRelease": "", + "arch": "", + "repository": "" + }, + "gnupg-l10n": { + "name": "gnupg-l10n", + "version": "2.2.4-1ubuntu1.4", + "release": "", + "newVersion": "2.2.4-1ubuntu1.4", + "newRelease": "", + "arch": "", + "repository": "" + }, + "gnupg-utils": { + "name": "gnupg-utils", + "version": "2.2.4-1ubuntu1.4", + "release": "", + "newVersion": "2.2.4-1ubuntu1.4", + "newRelease": "", + "arch": "", + "repository": "" + }, + "gpg": { + "name": "gpg", + "version": "2.2.4-1ubuntu1.4", + "release": "", + "newVersion": "2.2.4-1ubuntu1.4", + "newRelease": "", + "arch": "", + "repository": "" + }, + "gpg-agent": { + "name": "gpg-agent", + "version": "2.2.4-1ubuntu1.4", + "release": "", + "newVersion": "2.2.4-1ubuntu1.4", + "newRelease": "", + "arch": "", + "repository": "" + }, + "gpg-wks-client": { + "name": "gpg-wks-client", + "version": "2.2.4-1ubuntu1.4", + "release": "", + "newVersion": "2.2.4-1ubuntu1.4", + "newRelease": "", + "arch": "", + "repository": "" + }, + "gpg-wks-server": { + "name": "gpg-wks-server", + "version": "2.2.4-1ubuntu1.4", + "release": "", + "newVersion": "2.2.4-1ubuntu1.4", + "newRelease": "", + "arch": "", + "repository": "" + }, + "gpgconf": { + "name": "gpgconf", + "version": "2.2.4-1ubuntu1.4", + "release": "", + "newVersion": "2.2.4-1ubuntu1.4", + "newRelease": "", + "arch": "", + "repository": "" + }, + "gpgsm": { + "name": "gpgsm", + "version": "2.2.4-1ubuntu1.4", + "release": "", + "newVersion": "2.2.4-1ubuntu1.4", + "newRelease": "", + "arch": "", + "repository": "" + }, + "gpgv": { + "name": "gpgv", + "version": "2.2.4-1ubuntu1.4", + "release": "", + "newVersion": "2.2.4-1ubuntu1.4", + "newRelease": "", + "arch": "", + "repository": "" + }, + "grep": { + "name": "grep", + "version": "3.1-2build1", + "release": "", + "newVersion": "3.1-2build1", + "newRelease": "", + "arch": "", + "repository": "" + }, + "groff-base": { + "name": "groff-base", + "version": "1.22.3-10", + "release": "", + "newVersion": "1.22.3-10", + "newRelease": "", + "arch": "", + "repository": "" + }, + "grub-common": { + "name": "grub-common", + "version": "2.02-2ubuntu8.21", + "release": "", + "newVersion": "2.02-2ubuntu8.21", + "newRelease": "", + "arch": "", + "repository": "" + }, + "grub-gfxpayload-lists": { + "name": "grub-gfxpayload-lists", + "version": "0.7", + "release": "", + "newVersion": "0.7", + "newRelease": "", + "arch": "", + "repository": "" + }, + "grub-pc": { + "name": "grub-pc", + "version": "2.02-2ubuntu8.21", + "release": "", + "newVersion": "2.02-2ubuntu8.21", + "newRelease": "", + "arch": "", + "repository": "" + }, + "grub-pc-bin": { + "name": "grub-pc-bin", + "version": "2.02-2ubuntu8.21", + "release": "", + "newVersion": "2.02-2ubuntu8.21", + "newRelease": "", + "arch": "", + "repository": "" + }, + "grub2-common": { + "name": "grub2-common", + "version": "2.02-2ubuntu8.21", + "release": "", + "newVersion": "2.02-2ubuntu8.21", + "newRelease": "", + "arch": "", + "repository": "" + }, + "gzip": { + "name": "gzip", + "version": "1.6-5ubuntu1", + "release": "", + "newVersion": "1.6-5ubuntu1", + "newRelease": "", + "arch": "", + "repository": "" + }, + "hdparm": { + "name": "hdparm", + "version": "9.54+ds-1", + "release": "", + "newVersion": "9.54+ds-1", + "newRelease": "", + "arch": "", + "repository": "" + }, + "hibagent": { + "name": "hibagent", + "version": "1.0.1-0ubuntu1", + "release": "", + "newVersion": "1.0.1-0ubuntu1", + "newRelease": "", + "arch": "", + "repository": "" + }, + "hostname": { + "name": "hostname", + "version": "3.20", + "release": "", + "newVersion": "3.20", + "newRelease": "", + "arch": "", + "repository": "" + }, + "htop": { + "name": "htop", + "version": "2.1.0-3", + "release": "", + "newVersion": "2.1.0-3", + "newRelease": "", + "arch": "", + "repository": "" + }, + "info": { + "name": "info", + "version": "6.5.0.dfsg.1-2", + "release": "", + "newVersion": "6.5.0.dfsg.1-2", + "newRelease": "", + "arch": "", + "repository": "" + }, + "init": { + "name": "init", + "version": "1.51", + "release": "", + "newVersion": "1.51", + "newRelease": "", + "arch": "", + "repository": "" + }, + "init-system-helpers": { + "name": "init-system-helpers", + "version": "1.51", + "release": "", + "newVersion": "1.51", + "newRelease": "", + "arch": "", + "repository": "" + }, + "initramfs-tools": { + "name": "initramfs-tools", + "version": "0.130ubuntu3.11", + "release": "", + "newVersion": "0.130ubuntu3.11", + "newRelease": "", + "arch": "", + "repository": "" + }, + "initramfs-tools-bin": { + "name": "initramfs-tools-bin", + "version": "0.130ubuntu3.11", + "release": "", + "newVersion": "0.130ubuntu3.11", + "newRelease": "", + "arch": "", + "repository": "" + }, + "initramfs-tools-core": { + "name": "initramfs-tools-core", + "version": "0.130ubuntu3.11", + "release": "", + "newVersion": "0.130ubuntu3.11", + "newRelease": "", + "arch": "", + "repository": "" + }, + "install-info": { + "name": "install-info", + "version": "6.5.0.dfsg.1-2", + "release": "", + "newVersion": "6.5.0.dfsg.1-2", + "newRelease": "", + "arch": "", + "repository": "" + }, + "iproute2": { + "name": "iproute2", + "version": "4.15.0-2ubuntu1.2", + "release": "", + "newVersion": "4.15.0-2ubuntu1.3", + "newRelease": "", + "arch": "", + "repository": "bionic-updates/main" + }, + "iptables": { + "name": "iptables", + "version": "1.6.1-2ubuntu2", + "release": "", + "newVersion": "1.6.1-2ubuntu2", + "newRelease": "", + "arch": "", + "repository": "" + }, + "iputils-ping": { + "name": "iputils-ping", + "version": "3:20161105-1ubuntu3", + "release": "", + "newVersion": "3:20161105-1ubuntu3", + "newRelease": "", + "arch": "", + "repository": "" + }, + "iputils-tracepath": { + "name": "iputils-tracepath", + "version": "3:20161105-1ubuntu3", + "release": "", + "newVersion": "3:20161105-1ubuntu3", + "newRelease": "", + "arch": "", + "repository": "" + }, + "irqbalance": { + "name": "irqbalance", + "version": "1.3.0-0.1ubuntu0.18.04.1", + "release": "", + "newVersion": "1.3.0-0.1ubuntu0.18.04.1", + "newRelease": "", + "arch": "", + "repository": "" + }, + "isc-dhcp-client": { + "name": "isc-dhcp-client", + "version": "4.3.5-3ubuntu7.1", + "release": "", + "newVersion": "4.3.5-3ubuntu7.2", + "newRelease": "", + "arch": "", + "repository": "bionic-updates/main" + }, + "isc-dhcp-common": { + "name": "isc-dhcp-common", + "version": "4.3.5-3ubuntu7.1", + "release": "", + "newVersion": "4.3.5-3ubuntu7.2", + "newRelease": "", + "arch": "", + "repository": "bionic-updates/main" + }, + "iso-codes": { + "name": "iso-codes", + "version": "3.79-1", + "release": "", + "newVersion": "3.79-1", + "newRelease": "", + "arch": "", + "repository": "" + }, + "kbd": { + "name": "kbd", + "version": "2.0.4-2ubuntu1", + "release": "", + "newVersion": "2.0.4-2ubuntu1", + "newRelease": "", + "arch": "", + "repository": "" + }, + "keyboard-configuration": { + "name": "keyboard-configuration", + "version": "1.178ubuntu2.9", + "release": "", + "newVersion": "1.178ubuntu2.9", + "newRelease": "", + "arch": "", + "repository": "" + }, + "klibc-utils": { + "name": "klibc-utils", + "version": "2.0.4-9ubuntu2", + "release": "", + "newVersion": "2.0.4-9ubuntu2", + "newRelease": "", + "arch": "", + "repository": "" + }, + "kmod": { + "name": "kmod", + "version": "24-1ubuntu3.5", + "release": "", + "newVersion": "24-1ubuntu3.5", + "newRelease": "", + "arch": "", + "repository": "" + }, + "krb5-locales": { + "name": "krb5-locales", + "version": "1.16-2ubuntu0.2", + "release": "", + "newVersion": "1.16-2ubuntu0.2", + "newRelease": "", + "arch": "", + "repository": "" + }, + "landscape-common": { + "name": "landscape-common", + "version": "18.01-0ubuntu3.5", + "release": "", + "newVersion": "18.01-0ubuntu3.5", + "newRelease": "", + "arch": "", + "repository": "" + }, + "language-selector-common": { + "name": "language-selector-common", + "version": "0.188.3", + "release": "", + "newVersion": "0.188.3", + "newRelease": "", + "arch": "", + "repository": "" + }, + "less": { + "name": "less", + "version": "487-0.1", + "release": "", + "newVersion": "487-0.1", + "newRelease": "", + "arch": "", + "repository": "" + }, + "libaccountsservice0": { + "name": "libaccountsservice0", + "version": "0.6.45-1ubuntu1.3", + "release": "", + "newVersion": "0.6.45-1ubuntu1.3", + "newRelease": "", + "arch": "", + "repository": "" + }, + "libacl1": { + "name": "libacl1", + "version": "2.2.52-3build1", + "release": "", + "newVersion": "2.2.52-3build1", + "newRelease": "", + "arch": "", + "repository": "", + "AffectedProcs": [ + { + "pid": "1", + "name": "systemd" + }, + { + "pid": "994", + "name": "systemd-logind" + }, + { + "pid": "1945", + "name": "(sd-pam)" + }, + { + "pid": "839", + "name": "systemd-resolve", + "listenPortStats": [ + { + "bindAddress": "127.0.0.53", + "port": "53", + "portReachableTo": [] + } + ] + }, + { + "pid": "541", + "name": "systemd-timesyn" + }, + { + "pid": "457", + "name": "systemd-udevd" + }, + { + "pid": "1942", + "name": "systemd" + }, + { + "pid": "419", + "name": "systemd-journal" + }, + { + "pid": "828", + "name": "systemd-network" + } + ] + }, + "libapparmor1": { + "name": "libapparmor1", + "version": "2.12-4ubuntu5.1", + "release": "", + "newVersion": "2.12-4ubuntu5.1", + "newRelease": "", + "arch": "", + "repository": "", + "AffectedProcs": [ + { + "pid": "1", + "name": "systemd" + }, + { + "pid": "1945", + "name": "(sd-pam)" + }, + { + "pid": "980", + "name": "dbus-daemon" + }, + { + "pid": "1942", + "name": "systemd" + } + ] + }, + "libapt-inst2.0": { + "name": "libapt-inst2.0", + "version": "1.6.12ubuntu0.2", + "release": "", + "newVersion": "1.6.12ubuntu0.2", + "newRelease": "", + "arch": "", + "repository": "" + }, + "libapt-pkg5.0": { + "name": "libapt-pkg5.0", + "version": "1.6.12ubuntu0.2", + "release": "", + "newVersion": "1.6.12ubuntu0.2", + "newRelease": "", + "arch": "", + "repository": "", + "AffectedProcs": [ + { + "pid": "1040", + "name": "unattended-upgr" + } + ] + }, + "libargon2-0": { + "name": "libargon2-0", + "version": "0~20161029-1.1", + "release": "", + "newVersion": "0~20161029-1.1", + "newRelease": "", + "arch": "", + "repository": "", + "AffectedProcs": [ + { + "pid": "1", + "name": "systemd" + }, + { + "pid": "994", + "name": "systemd-logind" + }, + { + "pid": "1945", + "name": "(sd-pam)" + }, + { + "pid": "839", + "name": "systemd-resolve", + "listenPortStats": [ + { + "bindAddress": "127.0.0.53", + "port": "53", + "portReachableTo": [] + } + ] + }, + { + "pid": "541", + "name": "systemd-timesyn" + }, + { + "pid": "1942", + "name": "systemd" + }, + { + "pid": "419", + "name": "systemd-journal" + }, + { + "pid": "828", + "name": "systemd-network" + } + ] + }, + "libasm1": { + "name": "libasm1", + "version": "0.170-0.4ubuntu0.1", + "release": "", + "newVersion": "0.170-0.4ubuntu0.1", + "newRelease": "", + "arch": "", + "repository": "" + }, + "libasn1-8-heimdal": { + "name": "libasn1-8-heimdal", + "version": "7.5.0+dfsg-1", + "release": "", + "newVersion": "7.5.0+dfsg-1", + "newRelease": "", + "arch": "", + "repository": "" + }, + "libassuan0": { + "name": "libassuan0", + "version": "2.5.1-2", + "release": "", + "newVersion": "2.5.1-2", + "newRelease": "", + "arch": "", + "repository": "" + }, + "libatm1": { + "name": "libatm1", + "version": "1:2.5.1-2build1", + "release": "", + "newVersion": "1:2.5.1-2build1", + "newRelease": "", + "arch": "", + "repository": "" + }, + "libattr1": { + "name": "libattr1", + "version": "1:2.4.47-2build1", + "release": "", + "newVersion": "1:2.4.47-2build1", + "newRelease": "", + "arch": "", + "repository": "", + "AffectedProcs": [ + { + "pid": "1", + "name": "systemd" + }, + { + "pid": "994", + "name": "systemd-logind" + }, + { + "pid": "1945", + "name": "(sd-pam)" + }, + { + "pid": "839", + "name": "systemd-resolve", + "listenPortStats": [ + { + "bindAddress": "127.0.0.53", + "port": "53", + "portReachableTo": [] + } + ] + }, + { + "pid": "541", + "name": "systemd-timesyn" + }, + { + "pid": "457", + "name": "systemd-udevd" + }, + { + "pid": "1942", + "name": "systemd" + }, + { + "pid": "419", + "name": "systemd-journal" + }, + { + "pid": "828", + "name": "systemd-network" + } + ] + }, + "libaudit-common": { + "name": "libaudit-common", + "version": "1:2.8.2-1ubuntu1.1", + "release": "", + "newVersion": "1:2.8.2-1ubuntu1.1", + "newRelease": "", + "arch": "", + "repository": "" + }, + "libaudit1": { + "name": "libaudit1", + "version": "1:2.8.2-1ubuntu1.1", + "release": "", + "newVersion": "1:2.8.2-1ubuntu1.1", + "newRelease": "", + "arch": "", + "repository": "", + "AffectedProcs": [ + { + "pid": "1", + "name": "systemd" + }, + { + "pid": "1002", + "name": "atd" + }, + { + "pid": "1945", + "name": "(sd-pam)" + }, + { + "pid": "2097", + "name": "sshd" + }, + { + "pid": "2963", + "name": "sudo" + }, + { + "pid": "970", + "name": "cron" + }, + { + "pid": "980", + "name": "dbus-daemon" + }, + { + "pid": "2066", + "name": "sshd" + }, + { + "pid": "1942", + "name": "systemd" + }, + { + "pid": "1154", + "name": "sshd", + "listenPortStats": [ + { + "bindAddress": "*", + "port": "22", + "portReachableTo": [] + } + ] + }, + { + "pid": "1931", + "name": "sshd" + }, + { + "pid": "2167", + "name": "sshd" + }, + { + "pid": "2964", + "name": "su" + } + ] + }, + "libbind9-160": { + "name": "libbind9-160", + "version": "1:9.11.3+dfsg-1ubuntu1.14", + "release": "", + "newVersion": "1:9.11.3+dfsg-1ubuntu1.14", + "newRelease": "", + "arch": "", + "repository": "" + }, + "libblkid1": { + "name": "libblkid1", + "version": "2.31.1-0.4ubuntu3.7", + "release": "", + "newVersion": "2.31.1-0.4ubuntu3.7", + "newRelease": "", + "arch": "", + "repository": "", + "AffectedProcs": [ + { + "pid": "1000", + "name": "networkd-dispat" + }, + { + "pid": "1", + "name": "systemd" + }, + { + "pid": "994", + "name": "systemd-logind" + }, + { + "pid": "1945", + "name": "(sd-pam)" + }, + { + "pid": "839", + "name": "systemd-resolve", + "listenPortStats": [ + { + "bindAddress": "127.0.0.53", + "port": "53", + "portReachableTo": [] + } + ] + }, + { + "pid": "541", + "name": "systemd-timesyn" + }, + { + "pid": "1013", + "name": "polkitd" + }, + { + "pid": "457", + "name": "systemd-udevd" + }, + { + "pid": "1040", + "name": "unattended-upgr" + }, + { + "pid": "1942", + "name": "systemd" + }, + { + "pid": "995", + "name": "accounts-daemon" + }, + { + "pid": "419", + "name": "systemd-journal" + }, + { + "pid": "828", + "name": "systemd-network" + } + ] + }, + "libbsd0": { + "name": "libbsd0", + "version": "0.8.7-1ubuntu0.1", + "release": "", + "newVersion": "0.8.7-1ubuntu0.1", + "newRelease": "", + "arch": "", + "repository": "" + }, + "libbz2-1.0": { + "name": "libbz2-1.0", + "version": "1.0.6-8.1ubuntu0.2", + "release": "", + "newVersion": "1.0.6-8.1ubuntu0.2", + "newRelease": "", + "arch": "", + "repository": "", + "AffectedProcs": [ + { + "pid": "1040", + "name": "unattended-upgr" + } + ] + }, + "libc-bin": { + "name": "libc-bin", + "version": "2.27-3ubuntu1.4", + "release": "", + "newVersion": "2.27-3ubuntu1.4", + "newRelease": "", + "arch": "", + "repository": "", + "AffectedProcs": [ + { + "pid": "1000", + "name": "networkd-dispat" + }, + { + "pid": "1027", + "name": "agetty" + }, + { + "pid": "1038", + "name": "agetty" + }, + { + "pid": "970", + "name": "cron" + }, + { + "pid": "1040", + "name": "unattended-upgr" + }, + { + "pid": "995", + "name": "accounts-daemon" + }, + { + "pid": "2965", + "name": "bash" + } + ] + }, + "libc6": { + "name": "libc6", + "version": "2.27-3ubuntu1.4", + "release": "", + "newVersion": "2.27-3ubuntu1.4", + "newRelease": "", + "arch": "", + "repository": "", + "AffectedProcs": [ + { + "pid": "1000", + "name": "networkd-dispat" + }, + { + "pid": "1", + "name": "systemd" + }, + { + "pid": "1002", + "name": "atd" + }, + { + "pid": "1027", + "name": "agetty" + }, + { + "pid": "994", + "name": "systemd-logind" + }, + { + "pid": "997", + "name": "lxcfs" + }, + { + "pid": "2067", + "name": "bash" + }, + { + "pid": "1728", + "name": "ssm-agent-worke" + }, + { + "pid": "1945", + "name": "(sd-pam)" + }, + { + "pid": "2097", + "name": "sshd" + }, + { + "pid": "839", + "name": "systemd-resolve", + "listenPortStats": [ + { + "bindAddress": "127.0.0.53", + "port": "53", + "portReachableTo": [] + } + ] + }, + { + "pid": "1038", + "name": "agetty" + }, + { + "pid": "2963", + "name": "sudo" + }, + { + "pid": "441", + "name": "lvmetad" + }, + { + "pid": "541", + "name": "systemd-timesyn" + }, + { + "pid": "970", + "name": "cron" + }, + { + "pid": "1005", + "name": "acpid" + }, + { + "pid": "1013", + "name": "polkitd" + }, + { + "pid": "1382", + "name": "snapd" + }, + { + "pid": "457", + "name": "systemd-udevd" + }, + { + "pid": "980", + "name": "dbus-daemon" + }, + { + "pid": "1040", + "name": "unattended-upgr" + }, + { + "pid": "2066", + "name": "sshd" + }, + { + "pid": "1942", + "name": "systemd" + }, + { + "pid": "995", + "name": "accounts-daemon" + }, + { + "pid": "1154", + "name": "sshd", + "listenPortStats": [ + { + "bindAddress": "*", + "port": "22", + "portReachableTo": [] + } + ] + }, + { + "pid": "419", + "name": "systemd-journal" + }, + { + "pid": "828", + "name": "systemd-network" + }, + { + "pid": "1931", + "name": "sshd" + }, + { + "pid": "2167", + "name": "sshd" + }, + { + "pid": "2964", + "name": "su" + }, + { + "pid": "1693", + "name": "amazon-ssm-agen" + }, + { + "pid": "2965", + "name": "bash" + }, + { + "pid": "957", + "name": "rsyslogd" + } + ] + }, + "libcap-ng0": { + "name": "libcap-ng0", + "version": "0.7.7-3.1", + "release": "", + "newVersion": "0.7.7-3.1", + "newRelease": "", + "arch": "", + "repository": "", + "AffectedProcs": [ + { + "pid": "1", + "name": "systemd" + }, + { + "pid": "1002", + "name": "atd" + }, + { + "pid": "1945", + "name": "(sd-pam)" + }, + { + "pid": "2097", + "name": "sshd" + }, + { + "pid": "2963", + "name": "sudo" + }, + { + "pid": "970", + "name": "cron" + }, + { + "pid": "980", + "name": "dbus-daemon" + }, + { + "pid": "2066", + "name": "sshd" + }, + { + "pid": "1942", + "name": "systemd" + }, + { + "pid": "1154", + "name": "sshd", + "listenPortStats": [ + { + "bindAddress": "*", + "port": "22", + "portReachableTo": [] + } + ] + }, + { + "pid": "1931", + "name": "sshd" + }, + { + "pid": "2167", + "name": "sshd" + }, + { + "pid": "2964", + "name": "su" + } + ] + }, + "libcap2": { + "name": "libcap2", + "version": "1:2.25-1.2", + "release": "", + "newVersion": "1:2.25-1.2", + "newRelease": "", + "arch": "", + "repository": "", + "AffectedProcs": [ + { + "pid": "1", + "name": "systemd" + }, + { + "pid": "994", + "name": "systemd-logind" + }, + { + "pid": "1945", + "name": "(sd-pam)" + }, + { + "pid": "2097", + "name": "sshd" + }, + { + "pid": "839", + "name": "systemd-resolve", + "listenPortStats": [ + { + "bindAddress": "127.0.0.53", + "port": "53", + "portReachableTo": [] + } + ] + }, + { + "pid": "2963", + "name": "sudo" + }, + { + "pid": "541", + "name": "systemd-timesyn" + }, + { + "pid": "2066", + "name": "sshd" + }, + { + "pid": "1942", + "name": "systemd" + }, + { + "pid": "419", + "name": "systemd-journal" + }, + { + "pid": "828", + "name": "systemd-network" + }, + { + "pid": "1931", + "name": "sshd" + }, + { + "pid": "2167", + "name": "sshd" + }, + { + "pid": "2964", + "name": "su" + } + ] + }, + "libcap2-bin": { + "name": "libcap2-bin", + "version": "1:2.25-1.2", + "release": "", + "newVersion": "1:2.25-1.2", + "newRelease": "", + "arch": "", + "repository": "" + }, + "libcom-err2": { + "name": "libcom-err2", + "version": "1.44.1-1ubuntu1.3", + "release": "", + "newVersion": "1.44.1-1ubuntu1.3", + "newRelease": "", + "arch": "", + "repository": "", + "AffectedProcs": [ + { + "pid": "2097", + "name": "sshd" + }, + { + "pid": "2066", + "name": "sshd" + }, + { + "pid": "1154", + "name": "sshd", + "listenPortStats": [ + { + "bindAddress": "*", + "port": "22", + "portReachableTo": [] + } + ] + }, + { + "pid": "1931", + "name": "sshd" + }, + { + "pid": "2167", + "name": "sshd" + } + ] + }, + "libcryptsetup12": { + "name": "libcryptsetup12", + "version": "2:2.0.2-1ubuntu1.2", + "release": "", + "newVersion": "2:2.0.2-1ubuntu1.2", + "newRelease": "", + "arch": "", + "repository": "", + "AffectedProcs": [ + { + "pid": "1", + "name": "systemd" + }, + { + "pid": "994", + "name": "systemd-logind" + }, + { + "pid": "1945", + "name": "(sd-pam)" + }, + { + "pid": "839", + "name": "systemd-resolve", + "listenPortStats": [ + { + "bindAddress": "127.0.0.53", + "port": "53", + "portReachableTo": [] + } + ] + }, + { + "pid": "541", + "name": "systemd-timesyn" + }, + { + "pid": "1942", + "name": "systemd" + }, + { + "pid": "419", + "name": "systemd-journal" + }, + { + "pid": "828", + "name": "systemd-network" + } + ] + }, + "libcurl3-gnutls": { + "name": "libcurl3-gnutls", + "version": "7.58.0-2ubuntu3.12", + "release": "", + "newVersion": "7.58.0-2ubuntu3.12", + "newRelease": "", + "arch": "", + "repository": "" + }, + "libcurl4": { + "name": "libcurl4", + "version": "7.58.0-2ubuntu3.12", + "release": "", + "newVersion": "7.58.0-2ubuntu3.12", + "newRelease": "", + "arch": "", + "repository": "" + }, + "libdb5.3": { + "name": "libdb5.3", + "version": "5.3.28-13.1ubuntu1.1", + "release": "", + "newVersion": "5.3.28-13.1ubuntu1.1", + "newRelease": "", + "arch": "", + "repository": "" + }, + "libdbus-1-3": { + "name": "libdbus-1-3", + "version": "1.12.2-1ubuntu1.2", + "release": "", + "newVersion": "1.12.2-1ubuntu1.2", + "newRelease": "", + "arch": "", + "repository": "", + "AffectedProcs": [ + { + "pid": "1000", + "name": "networkd-dispat" + }, + { + "pid": "980", + "name": "dbus-daemon" + }, + { + "pid": "1040", + "name": "unattended-upgr" + } + ] + }, + "libdebconfclient0": { + "name": "libdebconfclient0", + "version": "0.213ubuntu1", + "release": "", + "newVersion": "0.213ubuntu1", + "newRelease": "", + "arch": "", + "repository": "" + }, + "libdevmapper-event1.02.1": { + "name": "libdevmapper-event1.02.1", + "version": "2:1.02.145-4.1ubuntu3.18.04.3", + "release": "", + "newVersion": "2:1.02.145-4.1ubuntu3.18.04.3", + "newRelease": "", + "arch": "", + "repository": "" + }, + "libdevmapper1.02.1": { + "name": "libdevmapper1.02.1", + "version": "2:1.02.145-4.1ubuntu3.18.04.3", + "release": "", + "newVersion": "2:1.02.145-4.1ubuntu3.18.04.3", + "newRelease": "", + "arch": "", + "repository": "", + "AffectedProcs": [ + { + "pid": "1", + "name": "systemd" + }, + { + "pid": "994", + "name": "systemd-logind" + }, + { + "pid": "1945", + "name": "(sd-pam)" + }, + { + "pid": "839", + "name": "systemd-resolve", + "listenPortStats": [ + { + "bindAddress": "127.0.0.53", + "port": "53", + "portReachableTo": [] + } + ] + }, + { + "pid": "441", + "name": "lvmetad" + }, + { + "pid": "541", + "name": "systemd-timesyn" + }, + { + "pid": "1942", + "name": "systemd" + }, + { + "pid": "419", + "name": "systemd-journal" + }, + { + "pid": "828", + "name": "systemd-network" + } + ] + }, + "libdns-export1100": { + "name": "libdns-export1100", + "version": "1:9.11.3+dfsg-1ubuntu1.14", + "release": "", + "newVersion": "1:9.11.3+dfsg-1ubuntu1.14", + "newRelease": "", + "arch": "", + "repository": "" + }, + "libdns1100": { + "name": "libdns1100", + "version": "1:9.11.3+dfsg-1ubuntu1.14", + "release": "", + "newVersion": "1:9.11.3+dfsg-1ubuntu1.14", + "newRelease": "", + "arch": "", + "repository": "" + }, + "libdrm-common": { + "name": "libdrm-common", + "version": "2.4.101-2~18.04.1", + "release": "", + "newVersion": "2.4.101-2~18.04.1", + "newRelease": "", + "arch": "", + "repository": "" + }, + "libdrm2": { + "name": "libdrm2", + "version": "2.4.101-2~18.04.1", + "release": "", + "newVersion": "2.4.101-2~18.04.1", + "newRelease": "", + "arch": "", + "repository": "" + }, + "libdumbnet1": { + "name": "libdumbnet1", + "version": "1.12-7build1", + "release": "", + "newVersion": "1.12-7build1", + "newRelease": "", + "arch": "", + "repository": "" + }, + "libdw1": { + "name": "libdw1", + "version": "0.170-0.4ubuntu0.1", + "release": "", + "newVersion": "0.170-0.4ubuntu0.1", + "newRelease": "", + "arch": "", + "repository": "" + }, + "libeatmydata1": { + "name": "libeatmydata1", + "version": "105-6", + "release": "", + "newVersion": "105-6", + "newRelease": "", + "arch": "", + "repository": "" + }, + "libedit2": { + "name": "libedit2", + "version": "3.1-20170329-1", + "release": "", + "newVersion": "3.1-20170329-1", + "newRelease": "", + "arch": "", + "repository": "" + }, + "libelf1": { + "name": "libelf1", + "version": "0.170-0.4ubuntu0.1", + "release": "", + "newVersion": "0.170-0.4ubuntu0.1", + "newRelease": "", + "arch": "", + "repository": "" + }, + "liberror-perl": { + "name": "liberror-perl", + "version": "0.17025-1", + "release": "", + "newVersion": "0.17025-1", + "newRelease": "", + "arch": "", + "repository": "" + }, + "libestr0": { + "name": "libestr0", + "version": "0.1.10-2.1", + "release": "", + "newVersion": "0.1.10-2.1", + "newRelease": "", + "arch": "", + "repository": "", + "AffectedProcs": [ + { + "pid": "957", + "name": "rsyslogd" + } + ] + }, + "libevent-2.1-6": { + "name": "libevent-2.1-6", + "version": "2.1.8-stable-4build1", + "release": "", + "newVersion": "2.1.8-stable-4build1", + "newRelease": "", + "arch": "", + "repository": "" + }, + "libexpat1": { + "name": "libexpat1", + "version": "2.2.5-3ubuntu0.2", + "release": "", + "newVersion": "2.2.5-3ubuntu0.2", + "newRelease": "", + "arch": "", + "repository": "", + "AffectedProcs": [ + { + "pid": "1000", + "name": "networkd-dispat" + }, + { + "pid": "1013", + "name": "polkitd" + }, + { + "pid": "980", + "name": "dbus-daemon" + }, + { + "pid": "1040", + "name": "unattended-upgr" + } + ] + }, + "libext2fs2": { + "name": "libext2fs2", + "version": "1.44.1-1ubuntu1.3", + "release": "", + "newVersion": "1.44.1-1ubuntu1.3", + "newRelease": "", + "arch": "", + "repository": "" + }, + "libfastjson4": { + "name": "libfastjson4", + "version": "0.99.8-2", + "release": "", + "newVersion": "0.99.8-2", + "newRelease": "", + "arch": "", + "repository": "", + "AffectedProcs": [ + { + "pid": "957", + "name": "rsyslogd" + } + ] + }, + "libfdisk1": { + "name": "libfdisk1", + "version": "2.31.1-0.4ubuntu3.7", + "release": "", + "newVersion": "2.31.1-0.4ubuntu3.7", + "newRelease": "", + "arch": "", + "repository": "" + }, + "libffi6": { + "name": "libffi6", + "version": "3.2.1-8", + "release": "", + "newVersion": "3.2.1-8", + "newRelease": "", + "arch": "", + "repository": "", + "AffectedProcs": [ + { + "pid": "1000", + "name": "networkd-dispat" + }, + { + "pid": "1013", + "name": "polkitd" + }, + { + "pid": "1040", + "name": "unattended-upgr" + }, + { + "pid": "995", + "name": "accounts-daemon" + } + ] + }, + "libfreetype6": { + "name": "libfreetype6", + "version": "2.8.1-2ubuntu2.1", + "release": "", + "newVersion": "2.8.1-2ubuntu2.1", + "newRelease": "", + "arch": "", + "repository": "" + }, + "libfribidi0": { + "name": "libfribidi0", + "version": "0.19.7-2", + "release": "", + "newVersion": "0.19.7-2", + "newRelease": "", + "arch": "", + "repository": "" + }, + "libfuse2": { + "name": "libfuse2", + "version": "2.9.7-1ubuntu1", + "release": "", + "newVersion": "2.9.7-1ubuntu1", + "newRelease": "", + "arch": "", + "repository": "", + "AffectedProcs": [ + { + "pid": "997", + "name": "lxcfs" + } + ] + }, + "libgcc1": { + "name": "libgcc1", + "version": "1:8.4.0-1ubuntu1~18.04", + "release": "", + "newVersion": "1:8.4.0-1ubuntu1~18.04", + "newRelease": "", + "arch": "", + "repository": "", + "AffectedProcs": [ + { + "pid": "1040", + "name": "unattended-upgr" + } + ] + }, + "libgcrypt20": { + "name": "libgcrypt20", + "version": "1.8.1-4ubuntu1.2", + "release": "", + "newVersion": "1.8.1-4ubuntu1.2", + "newRelease": "", + "arch": "", + "repository": "", + "AffectedProcs": [ + { + "pid": "1000", + "name": "networkd-dispat" + }, + { + "pid": "1", + "name": "systemd" + }, + { + "pid": "994", + "name": "systemd-logind" + }, + { + "pid": "1945", + "name": "(sd-pam)" + }, + { + "pid": "2097", + "name": "sshd" + }, + { + "pid": "839", + "name": "systemd-resolve", + "listenPortStats": [ + { + "bindAddress": "127.0.0.53", + "port": "53", + "portReachableTo": [] + } + ] + }, + { + "pid": "541", + "name": "systemd-timesyn" + }, + { + "pid": "1013", + "name": "polkitd" + }, + { + "pid": "980", + "name": "dbus-daemon" + }, + { + "pid": "1040", + "name": "unattended-upgr" + }, + { + "pid": "2066", + "name": "sshd" + }, + { + "pid": "1942", + "name": "systemd" + }, + { + "pid": "995", + "name": "accounts-daemon" + }, + { + "pid": "1154", + "name": "sshd", + "listenPortStats": [ + { + "bindAddress": "*", + "port": "22", + "portReachableTo": [] + } + ] + }, + { + "pid": "419", + "name": "systemd-journal" + }, + { + "pid": "828", + "name": "systemd-network" + }, + { + "pid": "1931", + "name": "sshd" + }, + { + "pid": "2167", + "name": "sshd" + }, + { + "pid": "957", + "name": "rsyslogd" + } + ] + }, + "libgdbm-compat4": { + "name": "libgdbm-compat4", + "version": "1.14.1-6", + "release": "", + "newVersion": "1.14.1-6", + "newRelease": "", + "arch": "", + "repository": "" + }, + "libgdbm5": { + "name": "libgdbm5", + "version": "1.14.1-6", + "release": "", + "newVersion": "1.14.1-6", + "newRelease": "", + "arch": "", + "repository": "" + }, + "libgeoip1": { + "name": "libgeoip1", + "version": "1.6.12-1", + "release": "", + "newVersion": "1.6.12-1", + "newRelease": "", + "arch": "", + "repository": "" + }, + "libgirepository-1.0-1": { + "name": "libgirepository-1.0-1", + "version": "1.56.1-1", + "release": "", + "newVersion": "1.56.1-1", + "newRelease": "", + "arch": "", + "repository": "", + "AffectedProcs": [ + { + "pid": "1000", + "name": "networkd-dispat" + }, + { + "pid": "1040", + "name": "unattended-upgr" + } + ] + }, + "libglib2.0-0": { + "name": "libglib2.0-0", + "version": "2.56.4-0ubuntu0.18.04.6", + "release": "", + "newVersion": "2.56.4-0ubuntu0.18.04.8", + "newRelease": "", + "arch": "", + "repository": "bionic-updates/main", + "AffectedProcs": [ + { + "pid": "1000", + "name": "networkd-dispat" + }, + { + "pid": "1013", + "name": "polkitd" + }, + { + "pid": "1040", + "name": "unattended-upgr" + }, + { + "pid": "995", + "name": "accounts-daemon" + } + ] + }, + "libglib2.0-data": { + "name": "libglib2.0-data", + "version": "2.56.4-0ubuntu0.18.04.6", + "release": "", + "newVersion": "2.56.4-0ubuntu0.18.04.8", + "newRelease": "", + "arch": "", + "repository": "bionic-updates/main" + }, + "libgmp10": { + "name": "libgmp10", + "version": "2:6.1.2+dfsg-2", + "release": "", + "newVersion": "2:6.1.2+dfsg-2", + "newRelease": "", + "arch": "", + "repository": "" + }, + "libgnutls30": { + "name": "libgnutls30", + "version": "3.5.18-1ubuntu1.4", + "release": "", + "newVersion": "3.5.18-1ubuntu1.4", + "newRelease": "", + "arch": "", + "repository": "" + }, + "libgpg-error0": { + "name": "libgpg-error0", + "version": "1.27-6", + "release": "", + "newVersion": "1.27-6", + "newRelease": "", + "arch": "", + "repository": "", + "AffectedProcs": [ + { + "pid": "1000", + "name": "networkd-dispat" + }, + { + "pid": "1", + "name": "systemd" + }, + { + "pid": "994", + "name": "systemd-logind" + }, + { + "pid": "1945", + "name": "(sd-pam)" + }, + { + "pid": "2097", + "name": "sshd" + }, + { + "pid": "839", + "name": "systemd-resolve", + "listenPortStats": [ + { + "bindAddress": "127.0.0.53", + "port": "53", + "portReachableTo": [] + } + ] + }, + { + "pid": "541", + "name": "systemd-timesyn" + }, + { + "pid": "1013", + "name": "polkitd" + }, + { + "pid": "980", + "name": "dbus-daemon" + }, + { + "pid": "1040", + "name": "unattended-upgr" + }, + { + "pid": "2066", + "name": "sshd" + }, + { + "pid": "1942", + "name": "systemd" + }, + { + "pid": "995", + "name": "accounts-daemon" + }, + { + "pid": "1154", + "name": "sshd", + "listenPortStats": [ + { + "bindAddress": "*", + "port": "22", + "portReachableTo": [] + } + ] + }, + { + "pid": "419", + "name": "systemd-journal" + }, + { + "pid": "828", + "name": "systemd-network" + }, + { + "pid": "1931", + "name": "sshd" + }, + { + "pid": "2167", + "name": "sshd" + }, + { + "pid": "957", + "name": "rsyslogd" + } + ] + }, + "libgpm2": { + "name": "libgpm2", + "version": "1.20.7-5", + "release": "", + "newVersion": "1.20.7-5", + "newRelease": "", + "arch": "", + "repository": "" + }, + "libgssapi-krb5-2": { + "name": "libgssapi-krb5-2", + "version": "1.16-2ubuntu0.2", + "release": "", + "newVersion": "1.16-2ubuntu0.2", + "newRelease": "", + "arch": "", + "repository": "", + "AffectedProcs": [ + { + "pid": "2097", + "name": "sshd" + }, + { + "pid": "2066", + "name": "sshd" + }, + { + "pid": "1154", + "name": "sshd", + "listenPortStats": [ + { + "bindAddress": "*", + "port": "22", + "portReachableTo": [] + } + ] + }, + { + "pid": "1931", + "name": "sshd" + }, + { + "pid": "2167", + "name": "sshd" + } + ] + }, + "libgssapi3-heimdal": { + "name": "libgssapi3-heimdal", + "version": "7.5.0+dfsg-1", + "release": "", + "newVersion": "7.5.0+dfsg-1", + "newRelease": "", + "arch": "", + "repository": "" + }, + "libhcrypto4-heimdal": { + "name": "libhcrypto4-heimdal", + "version": "7.5.0+dfsg-1", + "release": "", + "newVersion": "7.5.0+dfsg-1", + "newRelease": "", + "arch": "", + "repository": "" + }, + "libheimbase1-heimdal": { + "name": "libheimbase1-heimdal", + "version": "7.5.0+dfsg-1", + "release": "", + "newVersion": "7.5.0+dfsg-1", + "newRelease": "", + "arch": "", + "repository": "" + }, + "libheimntlm0-heimdal": { + "name": "libheimntlm0-heimdal", + "version": "7.5.0+dfsg-1", + "release": "", + "newVersion": "7.5.0+dfsg-1", + "newRelease": "", + "arch": "", + "repository": "" + }, + "libhogweed4": { + "name": "libhogweed4", + "version": "3.4-1", + "release": "", + "newVersion": "3.4-1", + "newRelease": "", + "arch": "", + "repository": "" + }, + "libhx509-5-heimdal": { + "name": "libhx509-5-heimdal", + "version": "7.5.0+dfsg-1", + "release": "", + "newVersion": "7.5.0+dfsg-1", + "newRelease": "", + "arch": "", + "repository": "" + }, + "libicu60": { + "name": "libicu60", + "version": "60.2-3ubuntu3.1", + "release": "", + "newVersion": "60.2-3ubuntu3.1", + "newRelease": "", + "arch": "", + "repository": "" + }, + "libidn11": { + "name": "libidn11", + "version": "1.33-2.1ubuntu1.2", + "release": "", + "newVersion": "1.33-2.1ubuntu1.2", + "newRelease": "", + "arch": "", + "repository": "", + "AffectedProcs": [ + { + "pid": "1", + "name": "systemd" + }, + { + "pid": "994", + "name": "systemd-logind" + }, + { + "pid": "1945", + "name": "(sd-pam)" + }, + { + "pid": "839", + "name": "systemd-resolve", + "listenPortStats": [ + { + "bindAddress": "127.0.0.53", + "port": "53", + "portReachableTo": [] + } + ] + }, + { + "pid": "541", + "name": "systemd-timesyn" + }, + { + "pid": "1942", + "name": "systemd" + }, + { + "pid": "419", + "name": "systemd-journal" + }, + { + "pid": "828", + "name": "systemd-network" + } + ] + }, + "libidn2-0": { + "name": "libidn2-0", + "version": "2.0.4-1.1ubuntu0.2", + "release": "", + "newVersion": "2.0.4-1.1ubuntu0.2", + "newRelease": "", + "arch": "", + "repository": "" + }, + "libip4tc0": { + "name": "libip4tc0", + "version": "1.6.1-2ubuntu2", + "release": "", + "newVersion": "1.6.1-2ubuntu2", + "newRelease": "", + "arch": "", + "repository": "", + "AffectedProcs": [ + { + "pid": "1", + "name": "systemd" + }, + { + "pid": "994", + "name": "systemd-logind" + }, + { + "pid": "1945", + "name": "(sd-pam)" + }, + { + "pid": "839", + "name": "systemd-resolve", + "listenPortStats": [ + { + "bindAddress": "127.0.0.53", + "port": "53", + "portReachableTo": [] + } + ] + }, + { + "pid": "541", + "name": "systemd-timesyn" + }, + { + "pid": "1942", + "name": "systemd" + }, + { + "pid": "419", + "name": "systemd-journal" + }, + { + "pid": "828", + "name": "systemd-network" + } + ] + }, + "libip6tc0": { + "name": "libip6tc0", + "version": "1.6.1-2ubuntu2", + "release": "", + "newVersion": "1.6.1-2ubuntu2", + "newRelease": "", + "arch": "", + "repository": "" + }, + "libipc-system-simple-perl": { + "name": "libipc-system-simple-perl", + "version": "1.25-4", + "release": "", + "newVersion": "1.25-4", + "newRelease": "", + "arch": "", + "repository": "" + }, + "libiptc0": { + "name": "libiptc0", + "version": "1.6.1-2ubuntu2", + "release": "", + "newVersion": "1.6.1-2ubuntu2", + "newRelease": "", + "arch": "", + "repository": "" + }, + "libirs160": { + "name": "libirs160", + "version": "1:9.11.3+dfsg-1ubuntu1.14", + "release": "", + "newVersion": "1:9.11.3+dfsg-1ubuntu1.14", + "newRelease": "", + "arch": "", + "repository": "" + }, + "libisc-export169": { + "name": "libisc-export169", + "version": "1:9.11.3+dfsg-1ubuntu1.14", + "release": "", + "newVersion": "1:9.11.3+dfsg-1ubuntu1.14", + "newRelease": "", + "arch": "", + "repository": "" + }, + "libisc169": { + "name": "libisc169", + "version": "1:9.11.3+dfsg-1ubuntu1.14", + "release": "", + "newVersion": "1:9.11.3+dfsg-1ubuntu1.14", + "newRelease": "", + "arch": "", + "repository": "" + }, + "libisccc160": { + "name": "libisccc160", + "version": "1:9.11.3+dfsg-1ubuntu1.14", + "release": "", + "newVersion": "1:9.11.3+dfsg-1ubuntu1.14", + "newRelease": "", + "arch": "", + "repository": "" + }, + "libisccfg160": { + "name": "libisccfg160", + "version": "1:9.11.3+dfsg-1ubuntu1.14", + "release": "", + "newVersion": "1:9.11.3+dfsg-1ubuntu1.14", + "newRelease": "", + "arch": "", + "repository": "" + }, + "libisns0": { + "name": "libisns0", + "version": "0.97-2build1", + "release": "", + "newVersion": "0.97-2build1", + "newRelease": "", + "arch": "", + "repository": "" + }, + "libjson-c3": { + "name": "libjson-c3", + "version": "0.12.1-1.3ubuntu0.3", + "release": "", + "newVersion": "0.12.1-1.3ubuntu0.3", + "newRelease": "", + "arch": "", + "repository": "", + "AffectedProcs": [ + { + "pid": "1", + "name": "systemd" + }, + { + "pid": "994", + "name": "systemd-logind" + }, + { + "pid": "1945", + "name": "(sd-pam)" + }, + { + "pid": "839", + "name": "systemd-resolve", + "listenPortStats": [ + { + "bindAddress": "127.0.0.53", + "port": "53", + "portReachableTo": [] + } + ] + }, + { + "pid": "541", + "name": "systemd-timesyn" + }, + { + "pid": "1942", + "name": "systemd" + }, + { + "pid": "419", + "name": "systemd-journal" + }, + { + "pid": "828", + "name": "systemd-network" + } + ] + }, + "libk5crypto3": { + "name": "libk5crypto3", + "version": "1.16-2ubuntu0.2", + "release": "", + "newVersion": "1.16-2ubuntu0.2", + "newRelease": "", + "arch": "", + "repository": "", + "AffectedProcs": [ + { + "pid": "2097", + "name": "sshd" + }, + { + "pid": "2066", + "name": "sshd" + }, + { + "pid": "1154", + "name": "sshd", + "listenPortStats": [ + { + "bindAddress": "*", + "port": "22", + "portReachableTo": [] + } + ] + }, + { + "pid": "1931", + "name": "sshd" + }, + { + "pid": "2167", + "name": "sshd" + } + ] + }, + "libkeyutils1": { + "name": "libkeyutils1", + "version": "1.5.9-9.2ubuntu2", + "release": "", + "newVersion": "1.5.9-9.2ubuntu2", + "newRelease": "", + "arch": "", + "repository": "", + "AffectedProcs": [ + { + "pid": "2097", + "name": "sshd" + }, + { + "pid": "2066", + "name": "sshd" + }, + { + "pid": "1154", + "name": "sshd", + "listenPortStats": [ + { + "bindAddress": "*", + "port": "22", + "portReachableTo": [] + } + ] + }, + { + "pid": "1931", + "name": "sshd" + }, + { + "pid": "2167", + "name": "sshd" + } + ] + }, + "libklibc": { + "name": "libklibc", + "version": "2.0.4-9ubuntu2", + "release": "", + "newVersion": "2.0.4-9ubuntu2", + "newRelease": "", + "arch": "", + "repository": "" + }, + "libkmod2": { + "name": "libkmod2", + "version": "24-1ubuntu3.5", + "release": "", + "newVersion": "24-1ubuntu3.5", + "newRelease": "", + "arch": "", + "repository": "", + "AffectedProcs": [ + { + "pid": "1", + "name": "systemd" + }, + { + "pid": "1945", + "name": "(sd-pam)" + }, + { + "pid": "457", + "name": "systemd-udevd" + }, + { + "pid": "1942", + "name": "systemd" + } + ] + }, + "libkrb5-26-heimdal": { + "name": "libkrb5-26-heimdal", + "version": "7.5.0+dfsg-1", + "release": "", + "newVersion": "7.5.0+dfsg-1", + "newRelease": "", + "arch": "", + "repository": "" + }, + "libkrb5-3": { + "name": "libkrb5-3", + "version": "1.16-2ubuntu0.2", + "release": "", + "newVersion": "1.16-2ubuntu0.2", + "newRelease": "", + "arch": "", + "repository": "", + "AffectedProcs": [ + { + "pid": "2097", + "name": "sshd" + }, + { + "pid": "2066", + "name": "sshd" + }, + { + "pid": "1154", + "name": "sshd", + "listenPortStats": [ + { + "bindAddress": "*", + "port": "22", + "portReachableTo": [] + } + ] + }, + { + "pid": "1931", + "name": "sshd" + }, + { + "pid": "2167", + "name": "sshd" + } + ] + }, + "libkrb5support0": { + "name": "libkrb5support0", + "version": "1.16-2ubuntu0.2", + "release": "", + "newVersion": "1.16-2ubuntu0.2", + "newRelease": "", + "arch": "", + "repository": "", + "AffectedProcs": [ + { + "pid": "2097", + "name": "sshd" + }, + { + "pid": "2066", + "name": "sshd" + }, + { + "pid": "1154", + "name": "sshd", + "listenPortStats": [ + { + "bindAddress": "*", + "port": "22", + "portReachableTo": [] + } + ] + }, + { + "pid": "1931", + "name": "sshd" + }, + { + "pid": "2167", + "name": "sshd" + } + ] + }, + "libksba8": { + "name": "libksba8", + "version": "1.3.5-2", + "release": "", + "newVersion": "1.3.5-2", + "newRelease": "", + "arch": "", + "repository": "" + }, + "libldap-2.4-2": { + "name": "libldap-2.4-2", + "version": "2.4.45+dfsg-1ubuntu1.10", + "release": "", + "newVersion": "2.4.45+dfsg-1ubuntu1.10", + "newRelease": "", + "arch": "", + "repository": "" + }, + "libldap-common": { + "name": "libldap-common", + "version": "2.4.45+dfsg-1ubuntu1.10", + "release": "", + "newVersion": "2.4.45+dfsg-1ubuntu1.10", + "newRelease": "", + "arch": "", + "repository": "" + }, + "liblocale-gettext-perl": { + "name": "liblocale-gettext-perl", + "version": "1.07-3build2", + "release": "", + "newVersion": "1.07-3build2", + "newRelease": "", + "arch": "", + "repository": "" + }, + "liblvm2app2.2": { + "name": "liblvm2app2.2", + "version": "2.02.176-4.1ubuntu3.18.04.3", + "release": "", + "newVersion": "2.02.176-4.1ubuntu3.18.04.3", + "newRelease": "", + "arch": "", + "repository": "" + }, + "liblvm2cmd2.02": { + "name": "liblvm2cmd2.02", + "version": "2.02.176-4.1ubuntu3.18.04.3", + "release": "", + "newVersion": "2.02.176-4.1ubuntu3.18.04.3", + "newRelease": "", + "arch": "", + "repository": "" + }, + "liblwres160": { + "name": "liblwres160", + "version": "1:9.11.3+dfsg-1ubuntu1.14", + "release": "", + "newVersion": "1:9.11.3+dfsg-1ubuntu1.14", + "newRelease": "", + "arch": "", + "repository": "" + }, + "liblxc-common": { + "name": "liblxc-common", + "version": "3.0.3-0ubuntu1~18.04.1", + "release": "", + "newVersion": "3.0.3-0ubuntu1~18.04.1", + "newRelease": "", + "arch": "", + "repository": "" + }, + "liblxc1": { + "name": "liblxc1", + "version": "3.0.3-0ubuntu1~18.04.1", + "release": "", + "newVersion": "3.0.3-0ubuntu1~18.04.1", + "newRelease": "", + "arch": "", + "repository": "" + }, + "liblz4-1": { + "name": "liblz4-1", + "version": "0.0~r131-2ubuntu3", + "release": "", + "newVersion": "0.0~r131-2ubuntu3", + "newRelease": "", + "arch": "", + "repository": "", + "AffectedProcs": [ + { + "pid": "1000", + "name": "networkd-dispat" + }, + { + "pid": "1", + "name": "systemd" + }, + { + "pid": "994", + "name": "systemd-logind" + }, + { + "pid": "1945", + "name": "(sd-pam)" + }, + { + "pid": "2097", + "name": "sshd" + }, + { + "pid": "839", + "name": "systemd-resolve", + "listenPortStats": [ + { + "bindAddress": "127.0.0.53", + "port": "53", + "portReachableTo": [] + } + ] + }, + { + "pid": "541", + "name": "systemd-timesyn" + }, + { + "pid": "1013", + "name": "polkitd" + }, + { + "pid": "980", + "name": "dbus-daemon" + }, + { + "pid": "1040", + "name": "unattended-upgr" + }, + { + "pid": "2066", + "name": "sshd" + }, + { + "pid": "1942", + "name": "systemd" + }, + { + "pid": "995", + "name": "accounts-daemon" + }, + { + "pid": "1154", + "name": "sshd", + "listenPortStats": [ + { + "bindAddress": "*", + "port": "22", + "portReachableTo": [] + } + ] + }, + { + "pid": "419", + "name": "systemd-journal" + }, + { + "pid": "828", + "name": "systemd-network" + }, + { + "pid": "1931", + "name": "sshd" + }, + { + "pid": "2167", + "name": "sshd" + }, + { + "pid": "957", + "name": "rsyslogd" + } + ] + }, + "liblzma5": { + "name": "liblzma5", + "version": "5.2.2-1.3", + "release": "", + "newVersion": "5.2.2-1.3", + "newRelease": "", + "arch": "", + "repository": "", + "AffectedProcs": [ + { + "pid": "1000", + "name": "networkd-dispat" + }, + { + "pid": "1", + "name": "systemd" + }, + { + "pid": "994", + "name": "systemd-logind" + }, + { + "pid": "1945", + "name": "(sd-pam)" + }, + { + "pid": "2097", + "name": "sshd" + }, + { + "pid": "839", + "name": "systemd-resolve", + "listenPortStats": [ + { + "bindAddress": "127.0.0.53", + "port": "53", + "portReachableTo": [] + } + ] + }, + { + "pid": "541", + "name": "systemd-timesyn" + }, + { + "pid": "1013", + "name": "polkitd" + }, + { + "pid": "980", + "name": "dbus-daemon" + }, + { + "pid": "1040", + "name": "unattended-upgr" + }, + { + "pid": "2066", + "name": "sshd" + }, + { + "pid": "1942", + "name": "systemd" + }, + { + "pid": "995", + "name": "accounts-daemon" + }, + { + "pid": "1154", + "name": "sshd", + "listenPortStats": [ + { + "bindAddress": "*", + "port": "22", + "portReachableTo": [] + } + ] + }, + { + "pid": "419", + "name": "systemd-journal" + }, + { + "pid": "828", + "name": "systemd-network" + }, + { + "pid": "1931", + "name": "sshd" + }, + { + "pid": "2167", + "name": "sshd" + }, + { + "pid": "957", + "name": "rsyslogd" + } + ] + }, + "liblzo2-2": { + "name": "liblzo2-2", + "version": "2.08-1.2", + "release": "", + "newVersion": "2.08-1.2", + "newRelease": "", + "arch": "", + "repository": "" + }, + "libmagic-mgc": { + "name": "libmagic-mgc", + "version": "1:5.32-2ubuntu0.4", + "release": "", + "newVersion": "1:5.32-2ubuntu0.4", + "newRelease": "", + "arch": "", + "repository": "" + }, + "libmagic1": { + "name": "libmagic1", + "version": "1:5.32-2ubuntu0.4", + "release": "", + "newVersion": "1:5.32-2ubuntu0.4", + "newRelease": "", + "arch": "", + "repository": "" + }, + "libmnl0": { + "name": "libmnl0", + "version": "1.0.4-2", + "release": "", + "newVersion": "1.0.4-2", + "newRelease": "", + "arch": "", + "repository": "" + }, + "libmount1": { + "name": "libmount1", + "version": "2.31.1-0.4ubuntu3.7", + "release": "", + "newVersion": "2.31.1-0.4ubuntu3.7", + "newRelease": "", + "arch": "", + "repository": "", + "AffectedProcs": [ + { + "pid": "1000", + "name": "networkd-dispat" + }, + { + "pid": "1", + "name": "systemd" + }, + { + "pid": "1945", + "name": "(sd-pam)" + }, + { + "pid": "1013", + "name": "polkitd" + }, + { + "pid": "1040", + "name": "unattended-upgr" + }, + { + "pid": "1942", + "name": "systemd" + }, + { + "pid": "995", + "name": "accounts-daemon" + } + ] + }, + "libmpdec2": { + "name": "libmpdec2", + "version": "2.4.2-1ubuntu1", + "release": "", + "newVersion": "2.4.2-1ubuntu1", + "newRelease": "", + "arch": "", + "repository": "" + }, + "libmpfr6": { + "name": "libmpfr6", + "version": "4.0.1-1", + "release": "", + "newVersion": "4.0.1-1", + "newRelease": "", + "arch": "", + "repository": "" + }, + "libmspack0": { + "name": "libmspack0", + "version": "0.6-3ubuntu0.3", + "release": "", + "newVersion": "0.6-3ubuntu0.3", + "newRelease": "", + "arch": "", + "repository": "" + }, + "libncurses5": { + "name": "libncurses5", + "version": "6.1-1ubuntu1.18.04", + "release": "", + "newVersion": "6.1-1ubuntu1.18.04", + "newRelease": "", + "arch": "", + "repository": "" + }, + "libncursesw5": { + "name": "libncursesw5", + "version": "6.1-1ubuntu1.18.04", + "release": "", + "newVersion": "6.1-1ubuntu1.18.04", + "newRelease": "", + "arch": "", + "repository": "" + }, + "libnetfilter-conntrack3": { + "name": "libnetfilter-conntrack3", + "version": "1.0.6-2", + "release": "", + "newVersion": "1.0.6-2", + "newRelease": "", + "arch": "", + "repository": "" + }, + "libnetplan0": { + "name": "libnetplan0", + "version": "0.99-0ubuntu3~18.04.4", + "release": "", + "newVersion": "0.99-0ubuntu3~18.04.4", + "newRelease": "", + "arch": "", + "repository": "" + }, + "libnettle6": { + "name": "libnettle6", + "version": "3.4-1", + "release": "", + "newVersion": "3.4-1", + "newRelease": "", + "arch": "", + "repository": "" + }, + "libnewt0.52": { + "name": "libnewt0.52", + "version": "0.52.20-1ubuntu1", + "release": "", + "newVersion": "0.52.20-1ubuntu1", + "newRelease": "", + "arch": "", + "repository": "" + }, + "libnfnetlink0": { + "name": "libnfnetlink0", + "version": "1.0.1-3", + "release": "", + "newVersion": "1.0.1-3", + "newRelease": "", + "arch": "", + "repository": "" + }, + "libnghttp2-14": { + "name": "libnghttp2-14", + "version": "1.30.0-1ubuntu1", + "release": "", + "newVersion": "1.30.0-1ubuntu1", + "newRelease": "", + "arch": "", + "repository": "" + }, + "libnih1": { + "name": "libnih1", + "version": "1.0.3-6ubuntu2", + "release": "", + "newVersion": "1.0.3-6ubuntu2", + "newRelease": "", + "arch": "", + "repository": "" + }, + "libnpth0": { + "name": "libnpth0", + "version": "1.5-3", + "release": "", + "newVersion": "1.5-3", + "newRelease": "", + "arch": "", + "repository": "" + }, + "libnss-systemd": { + "name": "libnss-systemd", + "version": "237-3ubuntu10.44", + "release": "", + "newVersion": "237-3ubuntu10.45", + "newRelease": "", + "arch": "", + "repository": "bionic-updates/main", + "AffectedProcs": [ + { + "pid": "1945", + "name": "(sd-pam)" + }, + { + "pid": "2097", + "name": "sshd" + }, + { + "pid": "2963", + "name": "sudo" + }, + { + "pid": "980", + "name": "dbus-daemon" + }, + { + "pid": "2066", + "name": "sshd" + }, + { + "pid": "1931", + "name": "sshd" + }, + { + "pid": "2167", + "name": "sshd" + }, + { + "pid": "2964", + "name": "su" + }, + { + "pid": "957", + "name": "rsyslogd" + } + ] + }, + "libntfs-3g88": { + "name": "libntfs-3g88", + "version": "1:2017.3.23-2ubuntu0.18.04.2", + "release": "", + "newVersion": "1:2017.3.23-2ubuntu0.18.04.2", + "newRelease": "", + "arch": "", + "repository": "" + }, + "libnuma1": { + "name": "libnuma1", + "version": "2.0.11-2.1ubuntu0.1", + "release": "", + "newVersion": "2.0.11-2.1ubuntu0.1", + "newRelease": "", + "arch": "", + "repository": "" + }, + "libp11-kit0": { + "name": "libp11-kit0", + "version": "0.23.9-2ubuntu0.1", + "release": "", + "newVersion": "0.23.9-2ubuntu0.1", + "newRelease": "", + "arch": "", + "repository": "" + }, + "libpam-cap": { + "name": "libpam-cap", + "version": "1:2.25-1.2", + "release": "", + "newVersion": "1:2.25-1.2", + "newRelease": "", + "arch": "", + "repository": "", + "AffectedProcs": [ + { + "pid": "1945", + "name": "(sd-pam)" + }, + { + "pid": "2097", + "name": "sshd" + }, + { + "pid": "2963", + "name": "sudo" + }, + { + "pid": "2066", + "name": "sshd" + }, + { + "pid": "1931", + "name": "sshd" + }, + { + "pid": "2167", + "name": "sshd" + }, + { + "pid": "2964", + "name": "su" + } + ] + }, + "libpam-modules": { + "name": "libpam-modules", + "version": "1.1.8-3.6ubuntu2.18.04.2", + "release": "", + "newVersion": "1.1.8-3.6ubuntu2.18.04.2", + "newRelease": "", + "arch": "", + "repository": "", + "AffectedProcs": [ + { + "pid": "1945", + "name": "(sd-pam)" + }, + { + "pid": "2097", + "name": "sshd" + }, + { + "pid": "2963", + "name": "sudo" + }, + { + "pid": "2066", + "name": "sshd" + }, + { + "pid": "1931", + "name": "sshd" + }, + { + "pid": "2167", + "name": "sshd" + }, + { + "pid": "2964", + "name": "su" + } + ] + }, + "libpam-modules-bin": { + "name": "libpam-modules-bin", + "version": "1.1.8-3.6ubuntu2.18.04.2", + "release": "", + "newVersion": "1.1.8-3.6ubuntu2.18.04.2", + "newRelease": "", + "arch": "", + "repository": "" + }, + "libpam-runtime": { + "name": "libpam-runtime", + "version": "1.1.8-3.6ubuntu2.18.04.2", + "release": "", + "newVersion": "1.1.8-3.6ubuntu2.18.04.2", + "newRelease": "", + "arch": "", + "repository": "" + }, + "libpam-systemd": { + "name": "libpam-systemd", + "version": "237-3ubuntu10.44", + "release": "", + "newVersion": "237-3ubuntu10.45", + "newRelease": "", + "arch": "", + "repository": "bionic-updates/main", + "AffectedProcs": [ + { + "pid": "1945", + "name": "(sd-pam)" + }, + { + "pid": "2097", + "name": "sshd" + }, + { + "pid": "2963", + "name": "sudo" + }, + { + "pid": "2066", + "name": "sshd" + }, + { + "pid": "1931", + "name": "sshd" + }, + { + "pid": "2167", + "name": "sshd" + }, + { + "pid": "2964", + "name": "su" + } + ] + }, + "libpam0g": { + "name": "libpam0g", + "version": "1.1.8-3.6ubuntu2.18.04.2", + "release": "", + "newVersion": "1.1.8-3.6ubuntu2.18.04.2", + "newRelease": "", + "arch": "", + "repository": "", + "AffectedProcs": [ + { + "pid": "1", + "name": "systemd" + }, + { + "pid": "1002", + "name": "atd" + }, + { + "pid": "1945", + "name": "(sd-pam)" + }, + { + "pid": "2097", + "name": "sshd" + }, + { + "pid": "2963", + "name": "sudo" + }, + { + "pid": "970", + "name": "cron" + }, + { + "pid": "2066", + "name": "sshd" + }, + { + "pid": "1942", + "name": "systemd" + }, + { + "pid": "1154", + "name": "sshd", + "listenPortStats": [ + { + "bindAddress": "*", + "port": "22", + "portReachableTo": [] + } + ] + }, + { + "pid": "1931", + "name": "sshd" + }, + { + "pid": "2167", + "name": "sshd" + }, + { + "pid": "2964", + "name": "su" + } + ] + }, + "libparted2": { + "name": "libparted2", + "version": "3.2-20ubuntu0.2", + "release": "", + "newVersion": "3.2-20ubuntu0.2", + "newRelease": "", + "arch": "", + "repository": "" + }, + "libpcap0.8": { + "name": "libpcap0.8", + "version": "1.8.1-6ubuntu1.18.04.2", + "release": "", + "newVersion": "1.8.1-6ubuntu1.18.04.2", + "newRelease": "", + "arch": "", + "repository": "" + }, + "libpci3": { + "name": "libpci3", + "version": "1:3.5.2-1ubuntu1.1", + "release": "", + "newVersion": "1:3.5.2-1ubuntu1.1", + "newRelease": "", + "arch": "", + "repository": "" + }, + "libpcre3": { + "name": "libpcre3", + "version": "2:8.39-9", + "release": "", + "newVersion": "2:8.39-9", + "newRelease": "", + "arch": "", + "repository": "", + "AffectedProcs": [ + { + "pid": "1000", + "name": "networkd-dispat" + }, + { + "pid": "1", + "name": "systemd" + }, + { + "pid": "1002", + "name": "atd" + }, + { + "pid": "994", + "name": "systemd-logind" + }, + { + "pid": "1945", + "name": "(sd-pam)" + }, + { + "pid": "2097", + "name": "sshd" + }, + { + "pid": "839", + "name": "systemd-resolve", + "listenPortStats": [ + { + "bindAddress": "127.0.0.53", + "port": "53", + "portReachableTo": [] + } + ] + }, + { + "pid": "2963", + "name": "sudo" + }, + { + "pid": "441", + "name": "lvmetad" + }, + { + "pid": "541", + "name": "systemd-timesyn" + }, + { + "pid": "970", + "name": "cron" + }, + { + "pid": "1013", + "name": "polkitd" + }, + { + "pid": "457", + "name": "systemd-udevd" + }, + { + "pid": "980", + "name": "dbus-daemon" + }, + { + "pid": "1040", + "name": "unattended-upgr" + }, + { + "pid": "2066", + "name": "sshd" + }, + { + "pid": "1942", + "name": "systemd" + }, + { + "pid": "995", + "name": "accounts-daemon" + }, + { + "pid": "1154", + "name": "sshd", + "listenPortStats": [ + { + "bindAddress": "*", + "port": "22", + "portReachableTo": [] + } + ] + }, + { + "pid": "419", + "name": "systemd-journal" + }, + { + "pid": "828", + "name": "systemd-network" + }, + { + "pid": "1931", + "name": "sshd" + }, + { + "pid": "2167", + "name": "sshd" + }, + { + "pid": "2964", + "name": "su" + } + ] + }, + "libperl5.26": { + "name": "libperl5.26", + "version": "5.26.1-6ubuntu0.5", + "release": "", + "newVersion": "5.26.1-6ubuntu0.5", + "newRelease": "", + "arch": "", + "repository": "" + }, + "libpipeline1": { + "name": "libpipeline1", + "version": "1.5.0-1", + "release": "", + "newVersion": "1.5.0-1", + "newRelease": "", + "arch": "", + "repository": "" + }, + "libplymouth4": { + "name": "libplymouth4", + "version": "0.9.3-1ubuntu7.18.04.2", + "release": "", + "newVersion": "0.9.3-1ubuntu7.18.04.2", + "newRelease": "", + "arch": "", + "repository": "" + }, + "libpng16-16": { + "name": "libpng16-16", + "version": "1.6.34-1ubuntu0.18.04.2", + "release": "", + "newVersion": "1.6.34-1ubuntu0.18.04.2", + "newRelease": "", + "arch": "", + "repository": "" + }, + "libpolkit-agent-1-0": { + "name": "libpolkit-agent-1-0", + "version": "0.105-20ubuntu0.18.04.5", + "release": "", + "newVersion": "0.105-20ubuntu0.18.04.5", + "newRelease": "", + "arch": "", + "repository": "" + }, + "libpolkit-backend-1-0": { + "name": "libpolkit-backend-1-0", + "version": "0.105-20ubuntu0.18.04.5", + "release": "", + "newVersion": "0.105-20ubuntu0.18.04.5", + "newRelease": "", + "arch": "", + "repository": "", + "AffectedProcs": [ + { + "pid": "1013", + "name": "polkitd" + } + ] + }, + "libpolkit-gobject-1-0": { + "name": "libpolkit-gobject-1-0", + "version": "0.105-20ubuntu0.18.04.5", + "release": "", + "newVersion": "0.105-20ubuntu0.18.04.5", + "newRelease": "", + "arch": "", + "repository": "", + "AffectedProcs": [ + { + "pid": "1013", + "name": "polkitd" + }, + { + "pid": "995", + "name": "accounts-daemon" + } + ] + }, + "libpopt0": { + "name": "libpopt0", + "version": "1.16-11", + "release": "", + "newVersion": "1.16-11", + "newRelease": "", + "arch": "", + "repository": "" + }, + "libprocps6": { + "name": "libprocps6", + "version": "2:3.3.12-3ubuntu1.2", + "release": "", + "newVersion": "2:3.3.12-3ubuntu1.2", + "newRelease": "", + "arch": "", + "repository": "" + }, + "libpsl5": { + "name": "libpsl5", + "version": "0.19.1-5build1", + "release": "", + "newVersion": "0.19.1-5build1", + "newRelease": "", + "arch": "", + "repository": "" + }, + "libpython3-stdlib": { + "name": "libpython3-stdlib", + "version": "3.6.7-1~18.04", + "release": "", + "newVersion": "3.6.7-1~18.04", + "newRelease": "", + "arch": "", + "repository": "" + }, + "libpython3.6": { + "name": "libpython3.6", + "version": "3.6.9-1~18.04ubuntu1.3", + "release": "", + "newVersion": "3.6.9-1~18.04ubuntu1.4", + "newRelease": "", + "arch": "", + "repository": "bionic-updates/main" + }, + "libpython3.6-minimal": { + "name": "libpython3.6-minimal", + "version": "3.6.9-1~18.04ubuntu1.3", + "release": "", + "newVersion": "3.6.9-1~18.04ubuntu1.4", + "newRelease": "", + "arch": "", + "repository": "bionic-updates/main" + }, + "libpython3.6-stdlib": { + "name": "libpython3.6-stdlib", + "version": "3.6.9-1~18.04ubuntu1.3", + "release": "", + "newVersion": "3.6.9-1~18.04ubuntu1.4", + "newRelease": "", + "arch": "", + "repository": "bionic-updates/main", + "AffectedProcs": [ + { + "pid": "1000", + "name": "networkd-dispat" + } + ] + }, + "libreadline5": { + "name": "libreadline5", + "version": "5.2+dfsg-3build1", + "release": "", + "newVersion": "5.2+dfsg-3build1", + "newRelease": "", + "arch": "", + "repository": "" + }, + "libreadline7": { + "name": "libreadline7", + "version": "7.0-3", + "release": "", + "newVersion": "7.0-3", + "newRelease": "", + "arch": "", + "repository": "" + }, + "libroken18-heimdal": { + "name": "libroken18-heimdal", + "version": "7.5.0+dfsg-1", + "release": "", + "newVersion": "7.5.0+dfsg-1", + "newRelease": "", + "arch": "", + "repository": "" + }, + "librtmp1": { + "name": "librtmp1", + "version": "2.4+20151223.gitfa8646d.1-1", + "release": "", + "newVersion": "2.4+20151223.gitfa8646d.1-1", + "newRelease": "", + "arch": "", + "repository": "" + }, + "libsasl2-2": { + "name": "libsasl2-2", + "version": "2.1.27~101-g0780600+dfsg-3ubuntu2.3", + "release": "", + "newVersion": "2.1.27~101-g0780600+dfsg-3ubuntu2.3", + "newRelease": "", + "arch": "", + "repository": "" + }, + "libsasl2-modules": { + "name": "libsasl2-modules", + "version": "2.1.27~101-g0780600+dfsg-3ubuntu2.3", + "release": "", + "newVersion": "2.1.27~101-g0780600+dfsg-3ubuntu2.3", + "newRelease": "", + "arch": "", + "repository": "" + }, + "libsasl2-modules-db": { + "name": "libsasl2-modules-db", + "version": "2.1.27~101-g0780600+dfsg-3ubuntu2.3", + "release": "", + "newVersion": "2.1.27~101-g0780600+dfsg-3ubuntu2.3", + "newRelease": "", + "arch": "", + "repository": "" + }, + "libseccomp2": { + "name": "libseccomp2", + "version": "2.4.3-1ubuntu3.18.04.3", + "release": "", + "newVersion": "2.4.3-1ubuntu3.18.04.3", + "newRelease": "", + "arch": "", + "repository": "", + "AffectedProcs": [ + { + "pid": "1", + "name": "systemd" + }, + { + "pid": "994", + "name": "systemd-logind" + }, + { + "pid": "1945", + "name": "(sd-pam)" + }, + { + "pid": "839", + "name": "systemd-resolve", + "listenPortStats": [ + { + "bindAddress": "127.0.0.53", + "port": "53", + "portReachableTo": [] + } + ] + }, + { + "pid": "541", + "name": "systemd-timesyn" + }, + { + "pid": "1942", + "name": "systemd" + }, + { + "pid": "419", + "name": "systemd-journal" + }, + { + "pid": "828", + "name": "systemd-network" + } + ] + }, + "libselinux1": { + "name": "libselinux1", + "version": "2.7-2build2", + "release": "", + "newVersion": "2.7-2build2", + "newRelease": "", + "arch": "", + "repository": "", + "AffectedProcs": [ + { + "pid": "1000", + "name": "networkd-dispat" + }, + { + "pid": "1", + "name": "systemd" + }, + { + "pid": "1002", + "name": "atd" + }, + { + "pid": "994", + "name": "systemd-logind" + }, + { + "pid": "1945", + "name": "(sd-pam)" + }, + { + "pid": "2097", + "name": "sshd" + }, + { + "pid": "839", + "name": "systemd-resolve", + "listenPortStats": [ + { + "bindAddress": "127.0.0.53", + "port": "53", + "portReachableTo": [] + } + ] + }, + { + "pid": "2963", + "name": "sudo" + }, + { + "pid": "441", + "name": "lvmetad" + }, + { + "pid": "541", + "name": "systemd-timesyn" + }, + { + "pid": "970", + "name": "cron" + }, + { + "pid": "1013", + "name": "polkitd" + }, + { + "pid": "457", + "name": "systemd-udevd" + }, + { + "pid": "980", + "name": "dbus-daemon" + }, + { + "pid": "1040", + "name": "unattended-upgr" + }, + { + "pid": "2066", + "name": "sshd" + }, + { + "pid": "1942", + "name": "systemd" + }, + { + "pid": "995", + "name": "accounts-daemon" + }, + { + "pid": "1154", + "name": "sshd", + "listenPortStats": [ + { + "bindAddress": "*", + "port": "22", + "portReachableTo": [] + } + ] + }, + { + "pid": "419", + "name": "systemd-journal" + }, + { + "pid": "828", + "name": "systemd-network" + }, + { + "pid": "1931", + "name": "sshd" + }, + { + "pid": "2167", + "name": "sshd" + }, + { + "pid": "2964", + "name": "su" + } + ] + }, + "libsemanage-common": { + "name": "libsemanage-common", + "version": "2.7-2build2", + "release": "", + "newVersion": "2.7-2build2", + "newRelease": "", + "arch": "", + "repository": "" + }, + "libsemanage1": { + "name": "libsemanage1", + "version": "2.7-2build2", + "release": "", + "newVersion": "2.7-2build2", + "newRelease": "", + "arch": "", + "repository": "" + }, + "libsepol1": { + "name": "libsepol1", + "version": "2.7-1", + "release": "", + "newVersion": "2.7-1", + "newRelease": "", + "arch": "", + "repository": "" + }, + "libsigsegv2": { + "name": "libsigsegv2", + "version": "2.12-1", + "release": "", + "newVersion": "2.12-1", + "newRelease": "", + "arch": "", + "repository": "" + }, + "libslang2": { + "name": "libslang2", + "version": "2.3.1a-3ubuntu1", + "release": "", + "newVersion": "2.3.1a-3ubuntu1", + "newRelease": "", + "arch": "", + "repository": "" + }, + "libsmartcols1": { + "name": "libsmartcols1", + "version": "2.31.1-0.4ubuntu3.7", + "release": "", + "newVersion": "2.31.1-0.4ubuntu3.7", + "newRelease": "", + "arch": "", + "repository": "" + }, + "libsqlite3-0": { + "name": "libsqlite3-0", + "version": "3.22.0-1ubuntu0.4", + "release": "", + "newVersion": "3.22.0-1ubuntu0.4", + "newRelease": "", + "arch": "", + "repository": "" + }, + "libss2": { + "name": "libss2", + "version": "1.44.1-1ubuntu1.3", + "release": "", + "newVersion": "1.44.1-1ubuntu1.3", + "newRelease": "", + "arch": "", + "repository": "" + }, + "libssl1.0.0": { + "name": "libssl1.0.0", + "version": "1.0.2n-1ubuntu5.6", + "release": "", + "newVersion": "1.0.2n-1ubuntu5.6", + "newRelease": "", + "arch": "", + "repository": "", + "AffectedProcs": [ + { + "pid": "2097", + "name": "sshd" + }, + { + "pid": "2066", + "name": "sshd" + }, + { + "pid": "1154", + "name": "sshd", + "listenPortStats": [ + { + "bindAddress": "*", + "port": "22", + "portReachableTo": [] + } + ] + }, + { + "pid": "1931", + "name": "sshd" + }, + { + "pid": "2167", + "name": "sshd" + } + ] + }, + "libssl1.1": { + "name": "libssl1.1", + "version": "1.1.1-1ubuntu2.1~18.04.8", + "release": "", + "newVersion": "1.1.1-1ubuntu2.1~18.04.8", + "newRelease": "", + "arch": "", + "repository": "" + }, + "libstdc++6": { + "name": "libstdc++6", + "version": "8.4.0-1ubuntu1~18.04", + "release": "", + "newVersion": "8.4.0-1ubuntu1~18.04", + "newRelease": "", + "arch": "", + "repository": "", + "AffectedProcs": [ + { + "pid": "1040", + "name": "unattended-upgr" + } + ] + }, + "libsystemd0": { + "name": "libsystemd0", + "version": "237-3ubuntu10.44", + "release": "", + "newVersion": "237-3ubuntu10.45", + "newRelease": "", + "arch": "", + "repository": "bionic-updates/main", + "AffectedProcs": [ + { + "pid": "1000", + "name": "networkd-dispat" + }, + { + "pid": "2097", + "name": "sshd" + }, + { + "pid": "1013", + "name": "polkitd" + }, + { + "pid": "980", + "name": "dbus-daemon" + }, + { + "pid": "1040", + "name": "unattended-upgr" + }, + { + "pid": "2066", + "name": "sshd" + }, + { + "pid": "995", + "name": "accounts-daemon" + }, + { + "pid": "1154", + "name": "sshd", + "listenPortStats": [ + { + "bindAddress": "*", + "port": "22", + "portReachableTo": [] + } + ] + }, + { + "pid": "1931", + "name": "sshd" + }, + { + "pid": "2167", + "name": "sshd" + }, + { + "pid": "957", + "name": "rsyslogd" + } + ] + }, + "libtasn1-6": { + "name": "libtasn1-6", + "version": "4.13-2", + "release": "", + "newVersion": "4.13-2", + "newRelease": "", + "arch": "", + "repository": "" + }, + "libtext-charwidth-perl": { + "name": "libtext-charwidth-perl", + "version": "0.04-7.1", + "release": "", + "newVersion": "0.04-7.1", + "newRelease": "", + "arch": "", + "repository": "" + }, + "libtext-iconv-perl": { + "name": "libtext-iconv-perl", + "version": "1.7-5build6", + "release": "", + "newVersion": "1.7-5build6", + "newRelease": "", + "arch": "", + "repository": "" + }, + "libtext-wrapi18n-perl": { + "name": "libtext-wrapi18n-perl", + "version": "0.06-7.1", + "release": "", + "newVersion": "0.06-7.1", + "newRelease": "", + "arch": "", + "repository": "" + }, + "libtinfo5": { + "name": "libtinfo5", + "version": "6.1-1ubuntu1.18.04", + "release": "", + "newVersion": "6.1-1ubuntu1.18.04", + "newRelease": "", + "arch": "", + "repository": "", + "AffectedProcs": [ + { + "pid": "2067", + "name": "bash" + }, + { + "pid": "2965", + "name": "bash" + } + ] + }, + "libudev1": { + "name": "libudev1", + "version": "237-3ubuntu10.44", + "release": "", + "newVersion": "237-3ubuntu10.45", + "newRelease": "", + "arch": "", + "repository": "bionic-updates/main", + "AffectedProcs": [ + { + "pid": "1", + "name": "systemd" + }, + { + "pid": "994", + "name": "systemd-logind" + }, + { + "pid": "1945", + "name": "(sd-pam)" + }, + { + "pid": "839", + "name": "systemd-resolve", + "listenPortStats": [ + { + "bindAddress": "127.0.0.53", + "port": "53", + "portReachableTo": [] + } + ] + }, + { + "pid": "441", + "name": "lvmetad" + }, + { + "pid": "541", + "name": "systemd-timesyn" + }, + { + "pid": "1040", + "name": "unattended-upgr" + }, + { + "pid": "1942", + "name": "systemd" + }, + { + "pid": "419", + "name": "systemd-journal" + }, + { + "pid": "828", + "name": "systemd-network" + } + ] + }, + "libunistring2": { + "name": "libunistring2", + "version": "0.9.9-0ubuntu2", + "release": "", + "newVersion": "0.9.9-0ubuntu2", + "newRelease": "", + "arch": "", + "repository": "" + }, + "libunwind8": { + "name": "libunwind8", + "version": "1.2.1-8", + "release": "", + "newVersion": "1.2.1-8", + "newRelease": "", + "arch": "", + "repository": "" + }, + "libusb-1.0-0": { + "name": "libusb-1.0-0", + "version": "2:1.0.21-2", + "release": "", + "newVersion": "2:1.0.21-2", + "newRelease": "", + "arch": "", + "repository": "" + }, + "libutempter0": { + "name": "libutempter0", + "version": "1.1.6-3", + "release": "", + "newVersion": "1.1.6-3", + "newRelease": "", + "arch": "", + "repository": "" + }, + "libuuid1": { + "name": "libuuid1", + "version": "2.31.1-0.4ubuntu3.7", + "release": "", + "newVersion": "2.31.1-0.4ubuntu3.7", + "newRelease": "", + "arch": "", + "repository": "", + "AffectedProcs": [ + { + "pid": "1000", + "name": "networkd-dispat" + }, + { + "pid": "1", + "name": "systemd" + }, + { + "pid": "994", + "name": "systemd-logind" + }, + { + "pid": "1945", + "name": "(sd-pam)" + }, + { + "pid": "839", + "name": "systemd-resolve", + "listenPortStats": [ + { + "bindAddress": "127.0.0.53", + "port": "53", + "portReachableTo": [] + } + ] + }, + { + "pid": "541", + "name": "systemd-timesyn" + }, + { + "pid": "1013", + "name": "polkitd" + }, + { + "pid": "457", + "name": "systemd-udevd" + }, + { + "pid": "1040", + "name": "unattended-upgr" + }, + { + "pid": "1942", + "name": "systemd" + }, + { + "pid": "995", + "name": "accounts-daemon" + }, + { + "pid": "419", + "name": "systemd-journal" + }, + { + "pid": "828", + "name": "systemd-network" + }, + { + "pid": "957", + "name": "rsyslogd" + } + ] + }, + "libuv1": { + "name": "libuv1", + "version": "1.18.0-3", + "release": "", + "newVersion": "1.18.0-3", + "newRelease": "", + "arch": "", + "repository": "" + }, + "libwind0-heimdal": { + "name": "libwind0-heimdal", + "version": "7.5.0+dfsg-1", + "release": "", + "newVersion": "7.5.0+dfsg-1", + "newRelease": "", + "arch": "", + "repository": "" + }, + "libwrap0": { + "name": "libwrap0", + "version": "7.6.q-27", + "release": "", + "newVersion": "7.6.q-27", + "newRelease": "", + "arch": "", + "repository": "", + "AffectedProcs": [ + { + "pid": "2097", + "name": "sshd" + }, + { + "pid": "2066", + "name": "sshd" + }, + { + "pid": "1154", + "name": "sshd", + "listenPortStats": [ + { + "bindAddress": "*", + "port": "22", + "portReachableTo": [] + } + ] + }, + { + "pid": "1931", + "name": "sshd" + }, + { + "pid": "2167", + "name": "sshd" + } + ] + }, + "libx11-6": { + "name": "libx11-6", + "version": "2:1.6.4-3ubuntu0.3", + "release": "", + "newVersion": "2:1.6.4-3ubuntu0.3", + "newRelease": "", + "arch": "", + "repository": "" + }, + "libx11-data": { + "name": "libx11-data", + "version": "2:1.6.4-3ubuntu0.3", + "release": "", + "newVersion": "2:1.6.4-3ubuntu0.3", + "newRelease": "", + "arch": "", + "repository": "" + }, + "libxau6": { + "name": "libxau6", + "version": "1:1.0.8-1ubuntu1", + "release": "", + "newVersion": "1:1.0.8-1ubuntu1", + "newRelease": "", + "arch": "", + "repository": "" + }, + "libxcb1": { + "name": "libxcb1", + "version": "1.13-2~ubuntu18.04", + "release": "", + "newVersion": "1.13-2~ubuntu18.04", + "newRelease": "", + "arch": "", + "repository": "" + }, + "libxdmcp6": { + "name": "libxdmcp6", + "version": "1:1.1.2-3", + "release": "", + "newVersion": "1:1.1.2-3", + "newRelease": "", + "arch": "", + "repository": "" + }, + "libxext6": { + "name": "libxext6", + "version": "2:1.3.3-1", + "release": "", + "newVersion": "2:1.3.3-1", + "newRelease": "", + "arch": "", + "repository": "" + }, + "libxml2": { + "name": "libxml2", + "version": "2.9.4+dfsg1-6.1ubuntu1.3", + "release": "", + "newVersion": "2.9.4+dfsg1-6.1ubuntu1.3", + "newRelease": "", + "arch": "", + "repository": "" + }, + "libxmlsec1": { + "name": "libxmlsec1", + "version": "1.2.25-1build1", + "release": "", + "newVersion": "1.2.25-1build1", + "newRelease": "", + "arch": "", + "repository": "" + }, + "libxmlsec1-openssl": { + "name": "libxmlsec1-openssl", + "version": "1.2.25-1build1", + "release": "", + "newVersion": "1.2.25-1build1", + "newRelease": "", + "arch": "", + "repository": "" + }, + "libxmuu1": { + "name": "libxmuu1", + "version": "2:1.1.2-2", + "release": "", + "newVersion": "2:1.1.2-2", + "newRelease": "", + "arch": "", + "repository": "" + }, + "libxslt1.1": { + "name": "libxslt1.1", + "version": "1.1.29-5ubuntu0.2", + "release": "", + "newVersion": "1.1.29-5ubuntu0.2", + "newRelease": "", + "arch": "", + "repository": "" + }, + "libxtables12": { + "name": "libxtables12", + "version": "1.6.1-2ubuntu2", + "release": "", + "newVersion": "1.6.1-2ubuntu2", + "newRelease": "", + "arch": "", + "repository": "" + }, + "libyaml-0-2": { + "name": "libyaml-0-2", + "version": "0.1.7-2ubuntu3", + "release": "", + "newVersion": "0.1.7-2ubuntu3", + "newRelease": "", + "arch": "", + "repository": "" + }, + "libzstd1": { + "name": "libzstd1", + "version": "1.3.3+dfsg-2ubuntu1.1", + "release": "", + "newVersion": "1.3.3+dfsg-2ubuntu1.2", + "newRelease": "", + "arch": "", + "repository": "bionic-updates/main", + "AffectedProcs": [ + { + "pid": "1040", + "name": "unattended-upgr" + } + ] + }, + "linux-aws": { + "name": "linux-aws", + "version": "5.4.0.1038.22", + "release": "", + "newVersion": "5.4.0.1041.24", + "newRelease": "", + "arch": "", + "repository": "bionic-updates/main" + }, + "linux-aws-5.4-headers-5.4.0-1038": { + "name": "linux-aws-5.4-headers-5.4.0-1038", + "version": "5.4.0-1038.40~18.04.1", + "release": "", + "newVersion": "5.4.0-1038.40~18.04.1", + "newRelease": "", + "arch": "", + "repository": "" + }, + "linux-base": { + "name": "linux-base", + "version": "4.5ubuntu1.2", + "release": "", + "newVersion": "4.5ubuntu1.2", + "newRelease": "", + "arch": "", + "repository": "" + }, + "linux-headers-5.4.0-1038-aws": { + "name": "linux-headers-5.4.0-1038-aws", + "version": "5.4.0-1038.40~18.04.1", + "release": "", + "newVersion": "5.4.0-1038.40~18.04.1", + "newRelease": "", + "arch": "", + "repository": "" + }, + "linux-headers-aws": { + "name": "linux-headers-aws", + "version": "5.4.0.1038.22", + "release": "", + "newVersion": "5.4.0.1041.24", + "newRelease": "", + "arch": "", + "repository": "bionic-updates/main" + }, + "linux-image-5.4.0-1038-aws": { + "name": "linux-image-5.4.0-1038-aws", + "version": "5.4.0-1038.40~18.04.1", + "release": "", + "newVersion": "5.4.0-1038.40~18.04.1", + "newRelease": "", + "arch": "", + "repository": "" + }, + "linux-image-aws": { + "name": "linux-image-aws", + "version": "5.4.0.1038.22", + "release": "", + "newVersion": "5.4.0.1041.24", + "newRelease": "", + "arch": "", + "repository": "bionic-updates/main" + }, + "linux-modules-5.4.0-1038-aws": { + "name": "linux-modules-5.4.0-1038-aws", + "version": "5.4.0-1038.40~18.04.1", + "release": "", + "newVersion": "5.4.0-1038.40~18.04.1", + "newRelease": "", + "arch": "", + "repository": "" + }, + "locales": { + "name": "locales", + "version": "2.27-3ubuntu1.4", + "release": "", + "newVersion": "2.27-3ubuntu1.4", + "newRelease": "", + "arch": "", + "repository": "" + }, + "login": { + "name": "login", + "version": "1:4.5-1ubuntu2", + "release": "", + "newVersion": "1:4.5-1ubuntu2", + "newRelease": "", + "arch": "", + "repository": "", + "AffectedProcs": [ + { + "pid": "2964", + "name": "su" + } + ] + }, + "logrotate": { + "name": "logrotate", + "version": "3.11.0-0.1ubuntu1", + "release": "", + "newVersion": "3.11.0-0.1ubuntu1", + "newRelease": "", + "arch": "", + "repository": "" + }, + "lsb-base": { + "name": "lsb-base", + "version": "9.20170808ubuntu1", + "release": "", + "newVersion": "9.20170808ubuntu1", + "newRelease": "", + "arch": "", + "repository": "" + }, + "lsb-release": { + "name": "lsb-release", + "version": "9.20170808ubuntu1", + "release": "", + "newVersion": "9.20170808ubuntu1", + "newRelease": "", + "arch": "", + "repository": "" + }, + "lshw": { + "name": "lshw", + "version": "02.18-0.1ubuntu6.18.04.2", + "release": "", + "newVersion": "02.18-0.1ubuntu6.18.04.2", + "newRelease": "", + "arch": "", + "repository": "" + }, + "lsof": { + "name": "lsof", + "version": "4.89+dfsg-0.1", + "release": "", + "newVersion": "4.89+dfsg-0.1", + "newRelease": "", + "arch": "", + "repository": "" + }, + "ltrace": { + "name": "ltrace", + "version": "0.7.3-6ubuntu1", + "release": "", + "newVersion": "0.7.3-6ubuntu1", + "newRelease": "", + "arch": "", + "repository": "" + }, + "lvm2": { + "name": "lvm2", + "version": "2.02.176-4.1ubuntu3.18.04.3", + "release": "", + "newVersion": "2.02.176-4.1ubuntu3.18.04.3", + "newRelease": "", + "arch": "", + "repository": "", + "AffectedProcs": [ + { + "pid": "441", + "name": "lvmetad" + } + ] + }, + "lxcfs": { + "name": "lxcfs", + "version": "3.0.3-0ubuntu1~18.04.2", + "release": "", + "newVersion": "3.0.3-0ubuntu1~18.04.2", + "newRelease": "", + "arch": "", + "repository": "", + "AffectedProcs": [ + { + "pid": "997", + "name": "lxcfs" + } + ] + }, + "lxd": { + "name": "lxd", + "version": "3.0.3-0ubuntu1~18.04.1", + "release": "", + "newVersion": "3.0.3-0ubuntu1~18.04.1", + "newRelease": "", + "arch": "", + "repository": "" + }, + "lxd-client": { + "name": "lxd-client", + "version": "3.0.3-0ubuntu1~18.04.1", + "release": "", + "newVersion": "3.0.3-0ubuntu1~18.04.1", + "newRelease": "", + "arch": "", + "repository": "" + }, + "man-db": { + "name": "man-db", + "version": "2.8.3-2ubuntu0.1", + "release": "", + "newVersion": "2.8.3-2ubuntu0.1", + "newRelease": "", + "arch": "", + "repository": "" + }, + "manpages": { + "name": "manpages", + "version": "4.15-1", + "release": "", + "newVersion": "4.15-1", + "newRelease": "", + "arch": "", + "repository": "" + }, + "mawk": { + "name": "mawk", + "version": "1.3.3-17ubuntu3", + "release": "", + "newVersion": "1.3.3-17ubuntu3", + "newRelease": "", + "arch": "", + "repository": "" + }, + "mdadm": { + "name": "mdadm", + "version": "4.1~rc1-3~ubuntu18.04.4", + "release": "", + "newVersion": "4.1~rc1-3~ubuntu18.04.4", + "newRelease": "", + "arch": "", + "repository": "" + }, + "mime-support": { + "name": "mime-support", + "version": "3.60ubuntu1", + "release": "", + "newVersion": "3.60ubuntu1", + "newRelease": "", + "arch": "", + "repository": "" + }, + "mlocate": { + "name": "mlocate", + "version": "0.26-2ubuntu3.1", + "release": "", + "newVersion": "0.26-2ubuntu3.1", + "newRelease": "", + "arch": "", + "repository": "" + }, + "motd-news-config": { + "name": "motd-news-config", + "version": "10.1ubuntu2.10", + "release": "", + "newVersion": "10.1ubuntu2.10", + "newRelease": "", + "arch": "", + "repository": "" + }, + "mount": { + "name": "mount", + "version": "2.31.1-0.4ubuntu3.7", + "release": "", + "newVersion": "2.31.1-0.4ubuntu3.7", + "newRelease": "", + "arch": "", + "repository": "" + }, + "mtr-tiny": { + "name": "mtr-tiny", + "version": "0.92-1", + "release": "", + "newVersion": "0.92-1", + "newRelease": "", + "arch": "", + "repository": "" + }, + "multiarch-support": { + "name": "multiarch-support", + "version": "2.27-3ubuntu1.4", + "release": "", + "newVersion": "2.27-3ubuntu1.4", + "newRelease": "", + "arch": "", + "repository": "" + }, + "nano": { + "name": "nano", + "version": "2.9.3-2", + "release": "", + "newVersion": "2.9.3-2", + "newRelease": "", + "arch": "", + "repository": "" + }, + "ncurses-base": { + "name": "ncurses-base", + "version": "6.1-1ubuntu1.18.04", + "release": "", + "newVersion": "6.1-1ubuntu1.18.04", + "newRelease": "", + "arch": "", + "repository": "" + }, + "ncurses-bin": { + "name": "ncurses-bin", + "version": "6.1-1ubuntu1.18.04", + "release": "", + "newVersion": "6.1-1ubuntu1.18.04", + "newRelease": "", + "arch": "", + "repository": "" + }, + "ncurses-term": { + "name": "ncurses-term", + "version": "6.1-1ubuntu1.18.04", + "release": "", + "newVersion": "6.1-1ubuntu1.18.04", + "newRelease": "", + "arch": "", + "repository": "" + }, + "net-tools": { + "name": "net-tools", + "version": "1.60+git20161116.90da8a0-1ubuntu1", + "release": "", + "newVersion": "1.60+git20161116.90da8a0-1ubuntu1", + "newRelease": "", + "arch": "", + "repository": "" + }, + "netbase": { + "name": "netbase", + "version": "5.4", + "release": "", + "newVersion": "5.4", + "newRelease": "", + "arch": "", + "repository": "" + }, + "netcat-openbsd": { + "name": "netcat-openbsd", + "version": "1.187-1ubuntu0.1", + "release": "", + "newVersion": "1.187-1ubuntu0.1", + "newRelease": "", + "arch": "", + "repository": "" + }, + "netplan.io": { + "name": "netplan.io", + "version": "0.99-0ubuntu3~18.04.4", + "release": "", + "newVersion": "0.99-0ubuntu3~18.04.4", + "newRelease": "", + "arch": "", + "repository": "" + }, + "networkd-dispatcher": { + "name": "networkd-dispatcher", + "version": "1.7-0ubuntu3.3", + "release": "", + "newVersion": "1.7-0ubuntu3.3", + "newRelease": "", + "arch": "", + "repository": "" + }, + "nplan": { + "name": "nplan", + "version": "0.99-0ubuntu3~18.04.4", + "release": "", + "newVersion": "0.99-0ubuntu3~18.04.4", + "newRelease": "", + "arch": "", + "repository": "" + }, + "ntfs-3g": { + "name": "ntfs-3g", + "version": "1:2017.3.23-2ubuntu0.18.04.2", + "release": "", + "newVersion": "1:2017.3.23-2ubuntu0.18.04.2", + "newRelease": "", + "arch": "", + "repository": "" + }, + "open-iscsi": { + "name": "open-iscsi", + "version": "2.0.874-5ubuntu2.10", + "release": "", + "newVersion": "2.0.874-5ubuntu2.10", + "newRelease": "", + "arch": "", + "repository": "" + }, + "open-vm-tools": { + "name": "open-vm-tools", + "version": "2:11.0.5-4ubuntu0.18.04.1", + "release": "", + "newVersion": "2:11.0.5-4ubuntu0.18.04.1", + "newRelease": "", + "arch": "", + "repository": "" + }, + "openssh-client": { + "name": "openssh-client", + "version": "1:7.6p1-4ubuntu0.3", + "release": "", + "newVersion": "1:7.6p1-4ubuntu0.3", + "newRelease": "", + "arch": "", + "repository": "" + }, + "openssh-server": { + "name": "openssh-server", + "version": "1:7.6p1-4ubuntu0.3", + "release": "", + "newVersion": "1:7.6p1-4ubuntu0.3", + "newRelease": "", + "arch": "", + "repository": "", + "AffectedProcs": [ + { + "pid": "2097", + "name": "sshd" + }, + { + "pid": "2066", + "name": "sshd" + }, + { + "pid": "1154", + "name": "sshd", + "listenPortStats": [ + { + "bindAddress": "*", + "port": "22", + "portReachableTo": [] + } + ] + }, + { + "pid": "1931", + "name": "sshd" + }, + { + "pid": "2167", + "name": "sshd" + } + ] + }, + "openssh-sftp-server": { + "name": "openssh-sftp-server", + "version": "1:7.6p1-4ubuntu0.3", + "release": "", + "newVersion": "1:7.6p1-4ubuntu0.3", + "newRelease": "", + "arch": "", + "repository": "" + }, + "openssl": { + "name": "openssl", + "version": "1.1.1-1ubuntu2.1~18.04.8", + "release": "", + "newVersion": "1.1.1-1ubuntu2.1~18.04.8", + "newRelease": "", + "arch": "", + "repository": "" + }, + "os-prober": { + "name": "os-prober", + "version": "1.74ubuntu1", + "release": "", + "newVersion": "1.74ubuntu1", + "newRelease": "", + "arch": "", + "repository": "" + }, + "overlayroot": { + "name": "overlayroot", + "version": "0.40ubuntu1.1", + "release": "", + "newVersion": "0.40ubuntu1.1", + "newRelease": "", + "arch": "", + "repository": "" + }, + "parted": { + "name": "parted", + "version": "3.2-20ubuntu0.2", + "release": "", + "newVersion": "3.2-20ubuntu0.2", + "newRelease": "", + "arch": "", + "repository": "" + }, + "passwd": { + "name": "passwd", + "version": "1:4.5-1ubuntu2", + "release": "", + "newVersion": "1:4.5-1ubuntu2", + "newRelease": "", + "arch": "", + "repository": "" + }, + "pastebinit": { + "name": "pastebinit", + "version": "1.5-2", + "release": "", + "newVersion": "1.5-2", + "newRelease": "", + "arch": "", + "repository": "" + }, + "patch": { + "name": "patch", + "version": "2.7.6-2ubuntu1.1", + "release": "", + "newVersion": "2.7.6-2ubuntu1.1", + "newRelease": "", + "arch": "", + "repository": "" + }, + "pciutils": { + "name": "pciutils", + "version": "1:3.5.2-1ubuntu1.1", + "release": "", + "newVersion": "1:3.5.2-1ubuntu1.1", + "newRelease": "", + "arch": "", + "repository": "" + }, + "perl": { + "name": "perl", + "version": "5.26.1-6ubuntu0.5", + "release": "", + "newVersion": "5.26.1-6ubuntu0.5", + "newRelease": "", + "arch": "", + "repository": "" + }, + "perl-base": { + "name": "perl-base", + "version": "5.26.1-6ubuntu0.5", + "release": "", + "newVersion": "5.26.1-6ubuntu0.5", + "newRelease": "", + "arch": "", + "repository": "" + }, + "perl-modules-5.26": { + "name": "perl-modules-5.26", + "version": "5.26.1-6ubuntu0.5", + "release": "", + "newVersion": "5.26.1-6ubuntu0.5", + "newRelease": "", + "arch": "", + "repository": "" + }, + "pinentry-curses": { + "name": "pinentry-curses", + "version": "1.1.0-1", + "release": "", + "newVersion": "1.1.0-1", + "newRelease": "", + "arch": "", + "repository": "" + }, + "plymouth": { + "name": "plymouth", + "version": "0.9.3-1ubuntu7.18.04.2", + "release": "", + "newVersion": "0.9.3-1ubuntu7.18.04.2", + "newRelease": "", + "arch": "", + "repository": "" + }, + "plymouth-theme-ubuntu-text": { + "name": "plymouth-theme-ubuntu-text", + "version": "0.9.3-1ubuntu7.18.04.2", + "release": "", + "newVersion": "0.9.3-1ubuntu7.18.04.2", + "newRelease": "", + "arch": "", + "repository": "" + }, + "policykit-1": { + "name": "policykit-1", + "version": "0.105-20ubuntu0.18.04.5", + "release": "", + "newVersion": "0.105-20ubuntu0.18.04.5", + "newRelease": "", + "arch": "", + "repository": "", + "AffectedProcs": [ + { + "pid": "1013", + "name": "polkitd" + } + ] + }, + "pollinate": { + "name": "pollinate", + "version": "4.33-0ubuntu1~18.04.2", + "release": "", + "newVersion": "4.33-0ubuntu1~18.04.2", + "newRelease": "", + "arch": "", + "repository": "" + }, + "popularity-contest": { + "name": "popularity-contest", + "version": "1.66ubuntu1", + "release": "", + "newVersion": "1.66ubuntu1", + "newRelease": "", + "arch": "", + "repository": "" + }, + "powermgmt-base": { + "name": "powermgmt-base", + "version": "1.33", + "release": "", + "newVersion": "1.33", + "newRelease": "", + "arch": "", + "repository": "" + }, + "procps": { + "name": "procps", + "version": "2:3.3.12-3ubuntu1.2", + "release": "", + "newVersion": "2:3.3.12-3ubuntu1.2", + "newRelease": "", + "arch": "", + "repository": "" + }, + "psmisc": { + "name": "psmisc", + "version": "23.1-1ubuntu0.1", + "release": "", + "newVersion": "23.1-1ubuntu0.1", + "newRelease": "", + "arch": "", + "repository": "" + }, + "publicsuffix": { + "name": "publicsuffix", + "version": "20180223.1310-1", + "release": "", + "newVersion": "20180223.1310-1", + "newRelease": "", + "arch": "", + "repository": "" + }, + "python-apt-common": { + "name": "python-apt-common", + "version": "1.6.5ubuntu0.5", + "release": "", + "newVersion": "1.6.5ubuntu0.5", + "newRelease": "", + "arch": "", + "repository": "" + }, + "python3": { + "name": "python3", + "version": "3.6.7-1~18.04", + "release": "", + "newVersion": "3.6.7-1~18.04", + "newRelease": "", + "arch": "", + "repository": "" + }, + "python3-apport": { + "name": "python3-apport", + "version": "2.20.9-0ubuntu7.23", + "release": "", + "newVersion": "2.20.9-0ubuntu7.23", + "newRelease": "", + "arch": "", + "repository": "" + }, + "python3-apt": { + "name": "python3-apt", + "version": "1.6.5ubuntu0.5", + "release": "", + "newVersion": "1.6.5ubuntu0.5", + "newRelease": "", + "arch": "", + "repository": "", + "AffectedProcs": [ + { + "pid": "1040", + "name": "unattended-upgr" + } + ] + }, + "python3-asn1crypto": { + "name": "python3-asn1crypto", + "version": "0.24.0-1", + "release": "", + "newVersion": "0.24.0-1", + "newRelease": "", + "arch": "", + "repository": "" + }, + "python3-attr": { + "name": "python3-attr", + "version": "17.4.0-2", + "release": "", + "newVersion": "17.4.0-2", + "newRelease": "", + "arch": "", + "repository": "" + }, + "python3-automat": { + "name": "python3-automat", + "version": "0.6.0-1", + "release": "", + "newVersion": "0.6.0-1", + "newRelease": "", + "arch": "", + "repository": "" + }, + "python3-blinker": { + "name": "python3-blinker", + "version": "1.4+dfsg1-0.1", + "release": "", + "newVersion": "1.4+dfsg1-0.1", + "newRelease": "", + "arch": "", + "repository": "" + }, + "python3-certifi": { + "name": "python3-certifi", + "version": "2018.1.18-2", + "release": "", + "newVersion": "2018.1.18-2", + "newRelease": "", + "arch": "", + "repository": "" + }, + "python3-cffi-backend": { + "name": "python3-cffi-backend", + "version": "1.11.5-1", + "release": "", + "newVersion": "1.11.5-1", + "newRelease": "", + "arch": "", + "repository": "" + }, + "python3-chardet": { + "name": "python3-chardet", + "version": "3.0.4-1", + "release": "", + "newVersion": "3.0.4-1", + "newRelease": "", + "arch": "", + "repository": "" + }, + "python3-click": { + "name": "python3-click", + "version": "6.7-3", + "release": "", + "newVersion": "6.7-3", + "newRelease": "", + "arch": "", + "repository": "" + }, + "python3-colorama": { + "name": "python3-colorama", + "version": "0.3.7-1", + "release": "", + "newVersion": "0.3.7-1", + "newRelease": "", + "arch": "", + "repository": "" + }, + "python3-commandnotfound": { + "name": "python3-commandnotfound", + "version": "18.04.5", + "release": "", + "newVersion": "18.04.5", + "newRelease": "", + "arch": "", + "repository": "" + }, + "python3-configobj": { + "name": "python3-configobj", + "version": "5.0.6-2", + "release": "", + "newVersion": "5.0.6-2", + "newRelease": "", + "arch": "", + "repository": "" + }, + "python3-constantly": { + "name": "python3-constantly", + "version": "15.1.0-1", + "release": "", + "newVersion": "15.1.0-1", + "newRelease": "", + "arch": "", + "repository": "" + }, + "python3-cryptography": { + "name": "python3-cryptography", + "version": "2.1.4-1ubuntu1.4", + "release": "", + "newVersion": "2.1.4-1ubuntu1.4", + "newRelease": "", + "arch": "", + "repository": "" + }, + "python3-dbus": { + "name": "python3-dbus", + "version": "1.2.6-1", + "release": "", + "newVersion": "1.2.6-1", + "newRelease": "", + "arch": "", + "repository": "", + "AffectedProcs": [ + { + "pid": "1000", + "name": "networkd-dispat" + }, + { + "pid": "1040", + "name": "unattended-upgr" + } + ] + }, + "python3-debconf": { + "name": "python3-debconf", + "version": "1.5.66ubuntu1", + "release": "", + "newVersion": "1.5.66ubuntu1", + "newRelease": "", + "arch": "", + "repository": "" + }, + "python3-debian": { + "name": "python3-debian", + "version": "0.1.32", + "release": "", + "newVersion": "0.1.32", + "newRelease": "", + "arch": "", + "repository": "" + }, + "python3-distro-info": { + "name": "python3-distro-info", + "version": "0.18ubuntu0.18.04.1", + "release": "", + "newVersion": "0.18ubuntu0.18.04.1", + "newRelease": "", + "arch": "", + "repository": "" + }, + "python3-distupgrade": { + "name": "python3-distupgrade", + "version": "1:18.04.42", + "release": "", + "newVersion": "1:18.04.42", + "newRelease": "", + "arch": "", + "repository": "" + }, + "python3-gdbm": { + "name": "python3-gdbm", + "version": "3.6.9-1~18.04", + "release": "", + "newVersion": "3.6.9-1~18.04", + "newRelease": "", + "arch": "", + "repository": "" + }, + "python3-gi": { + "name": "python3-gi", + "version": "3.26.1-2ubuntu1", + "release": "", + "newVersion": "3.26.1-2ubuntu1", + "newRelease": "", + "arch": "", + "repository": "", + "AffectedProcs": [ + { + "pid": "1000", + "name": "networkd-dispat" + }, + { + "pid": "1040", + "name": "unattended-upgr" + } + ] + }, + "python3-httplib2": { + "name": "python3-httplib2", + "version": "0.9.2+dfsg-1ubuntu0.3", + "release": "", + "newVersion": "0.9.2+dfsg-1ubuntu0.3", + "newRelease": "", + "arch": "", + "repository": "" + }, + "python3-hyperlink": { + "name": "python3-hyperlink", + "version": "17.3.1-2", + "release": "", + "newVersion": "17.3.1-2", + "newRelease": "", + "arch": "", + "repository": "" + }, + "python3-idna": { + "name": "python3-idna", + "version": "2.6-1", + "release": "", + "newVersion": "2.6-1", + "newRelease": "", + "arch": "", + "repository": "" + }, + "python3-incremental": { + "name": "python3-incremental", + "version": "16.10.1-3", + "release": "", + "newVersion": "16.10.1-3", + "newRelease": "", + "arch": "", + "repository": "" + }, + "python3-jinja2": { + "name": "python3-jinja2", + "version": "2.10-1ubuntu0.18.04.1", + "release": "", + "newVersion": "2.10-1ubuntu0.18.04.1", + "newRelease": "", + "arch": "", + "repository": "" + }, + "python3-json-pointer": { + "name": "python3-json-pointer", + "version": "1.10-1", + "release": "", + "newVersion": "1.10-1", + "newRelease": "", + "arch": "", + "repository": "" + }, + "python3-jsonpatch": { + "name": "python3-jsonpatch", + "version": "1.19+really1.16-1fakesync1", + "release": "", + "newVersion": "1.19+really1.16-1fakesync1", + "newRelease": "", + "arch": "", + "repository": "" + }, + "python3-jsonschema": { + "name": "python3-jsonschema", + "version": "2.6.0-2", + "release": "", + "newVersion": "2.6.0-2", + "newRelease": "", + "arch": "", + "repository": "" + }, + "python3-jwt": { + "name": "python3-jwt", + "version": "1.5.3+ds1-1", + "release": "", + "newVersion": "1.5.3+ds1-1", + "newRelease": "", + "arch": "", + "repository": "" + }, + "python3-markupsafe": { + "name": "python3-markupsafe", + "version": "1.0-1build1", + "release": "", + "newVersion": "1.0-1build1", + "newRelease": "", + "arch": "", + "repository": "" + }, + "python3-minimal": { + "name": "python3-minimal", + "version": "3.6.7-1~18.04", + "release": "", + "newVersion": "3.6.7-1~18.04", + "newRelease": "", + "arch": "", + "repository": "" + }, + "python3-netifaces": { + "name": "python3-netifaces", + "version": "0.10.4-0.1build4", + "release": "", + "newVersion": "0.10.4-0.1build4", + "newRelease": "", + "arch": "", + "repository": "" + }, + "python3-newt": { + "name": "python3-newt", + "version": "0.52.20-1ubuntu1", + "release": "", + "newVersion": "0.52.20-1ubuntu1", + "newRelease": "", + "arch": "", + "repository": "" + }, + "python3-oauthlib": { + "name": "python3-oauthlib", + "version": "2.0.6-1", + "release": "", + "newVersion": "2.0.6-1", + "newRelease": "", + "arch": "", + "repository": "" + }, + "python3-openssl": { + "name": "python3-openssl", + "version": "17.5.0-1ubuntu1", + "release": "", + "newVersion": "17.5.0-1ubuntu1", + "newRelease": "", + "arch": "", + "repository": "" + }, + "python3-pam": { + "name": "python3-pam", + "version": "0.4.2-13.2ubuntu4", + "release": "", + "newVersion": "0.4.2-13.2ubuntu4", + "newRelease": "", + "arch": "", + "repository": "" + }, + "python3-pkg-resources": { + "name": "python3-pkg-resources", + "version": "39.0.1-2", + "release": "", + "newVersion": "39.0.1-2", + "newRelease": "", + "arch": "", + "repository": "" + }, + "python3-problem-report": { + "name": "python3-problem-report", + "version": "2.20.9-0ubuntu7.23", + "release": "", + "newVersion": "2.20.9-0ubuntu7.23", + "newRelease": "", + "arch": "", + "repository": "" + }, + "python3-pyasn1": { + "name": "python3-pyasn1", + "version": "0.4.2-3", + "release": "", + "newVersion": "0.4.2-3", + "newRelease": "", + "arch": "", + "repository": "" + }, + "python3-pyasn1-modules": { + "name": "python3-pyasn1-modules", + "version": "0.2.1-0.2", + "release": "", + "newVersion": "0.2.1-0.2", + "newRelease": "", + "arch": "", + "repository": "" + }, + "python3-requests": { + "name": "python3-requests", + "version": "2.18.4-2ubuntu0.1", + "release": "", + "newVersion": "2.18.4-2ubuntu0.1", + "newRelease": "", + "arch": "", + "repository": "" + }, + "python3-requests-unixsocket": { + "name": "python3-requests-unixsocket", + "version": "0.1.5-3", + "release": "", + "newVersion": "0.1.5-3", + "newRelease": "", + "arch": "", + "repository": "" + }, + "python3-serial": { + "name": "python3-serial", + "version": "3.4-2", + "release": "", + "newVersion": "3.4-2", + "newRelease": "", + "arch": "", + "repository": "" + }, + "python3-service-identity": { + "name": "python3-service-identity", + "version": "16.0.0-2", + "release": "", + "newVersion": "16.0.0-2", + "newRelease": "", + "arch": "", + "repository": "" + }, + "python3-six": { + "name": "python3-six", + "version": "1.11.0-2", + "release": "", + "newVersion": "1.11.0-2", + "newRelease": "", + "arch": "", + "repository": "" + }, + "python3-software-properties": { + "name": "python3-software-properties", + "version": "0.96.24.32.14", + "release": "", + "newVersion": "0.96.24.32.14", + "newRelease": "", + "arch": "", + "repository": "" + }, + "python3-systemd": { + "name": "python3-systemd", + "version": "234-1build1", + "release": "", + "newVersion": "234-1build1", + "newRelease": "", + "arch": "", + "repository": "" + }, + "python3-twisted": { + "name": "python3-twisted", + "version": "17.9.0-2ubuntu0.1", + "release": "", + "newVersion": "17.9.0-2ubuntu0.1", + "newRelease": "", + "arch": "", + "repository": "" + }, + "python3-twisted-bin": { + "name": "python3-twisted-bin", + "version": "17.9.0-2ubuntu0.1", + "release": "", + "newVersion": "17.9.0-2ubuntu0.1", + "newRelease": "", + "arch": "", + "repository": "" + }, + "python3-update-manager": { + "name": "python3-update-manager", + "version": "1:18.04.11.13", + "release": "", + "newVersion": "1:18.04.11.13", + "newRelease": "", + "arch": "", + "repository": "" + }, + "python3-urllib3": { + "name": "python3-urllib3", + "version": "1.22-1ubuntu0.18.04.2", + "release": "", + "newVersion": "1.22-1ubuntu0.18.04.2", + "newRelease": "", + "arch": "", + "repository": "" + }, + "python3-yaml": { + "name": "python3-yaml", + "version": "3.12-1build2", + "release": "", + "newVersion": "3.12-1build2", + "newRelease": "", + "arch": "", + "repository": "" + }, + "python3-zope.interface": { + "name": "python3-zope.interface", + "version": "4.3.2-1build2", + "release": "", + "newVersion": "4.3.2-1build2", + "newRelease": "", + "arch": "", + "repository": "" + }, + "python3.6": { + "name": "python3.6", + "version": "3.6.9-1~18.04ubuntu1.3", + "release": "", + "newVersion": "3.6.9-1~18.04ubuntu1.4", + "newRelease": "", + "arch": "", + "repository": "bionic-updates/main" + }, + "python3.6-minimal": { + "name": "python3.6-minimal", + "version": "3.6.9-1~18.04ubuntu1.3", + "release": "", + "newVersion": "3.6.9-1~18.04ubuntu1.4", + "newRelease": "", + "arch": "", + "repository": "bionic-updates/main", + "AffectedProcs": [ + { + "pid": "1000", + "name": "networkd-dispat" + }, + { + "pid": "1040", + "name": "unattended-upgr" + } + ] + }, + "readline-common": { + "name": "readline-common", + "version": "7.0-3", + "release": "", + "newVersion": "7.0-3", + "newRelease": "", + "arch": "", + "repository": "" + }, + "rsync": { + "name": "rsync", + "version": "3.1.2-2.1ubuntu1.1", + "release": "", + "newVersion": "3.1.2-2.1ubuntu1.1", + "newRelease": "", + "arch": "", + "repository": "" + }, + "rsyslog": { + "name": "rsyslog", + "version": "8.32.0-1ubuntu4", + "release": "", + "newVersion": "8.32.0-1ubuntu4", + "newRelease": "", + "arch": "", + "repository": "", + "AffectedProcs": [ + { + "pid": "957", + "name": "rsyslogd" + } + ] + }, + "run-one": { + "name": "run-one", + "version": "1.17-0ubuntu1", + "release": "", + "newVersion": "1.17-0ubuntu1", + "newRelease": "", + "arch": "", + "repository": "" + }, + "screen": { + "name": "screen", + "version": "4.6.2-1ubuntu1.1", + "release": "", + "newVersion": "4.6.2-1ubuntu1.1", + "newRelease": "", + "arch": "", + "repository": "" + }, + "sed": { + "name": "sed", + "version": "4.4-2", + "release": "", + "newVersion": "4.4-2", + "newRelease": "", + "arch": "", + "repository": "" + }, + "sensible-utils": { + "name": "sensible-utils", + "version": "0.0.12", + "release": "", + "newVersion": "0.0.12", + "newRelease": "", + "arch": "", + "repository": "" + }, + "shared-mime-info": { + "name": "shared-mime-info", + "version": "1.9-2", + "release": "", + "newVersion": "1.9-2", + "newRelease": "", + "arch": "", + "repository": "" + }, + "snapd": { + "name": "snapd", + "version": "2.48.3+18.04", + "release": "", + "newVersion": "2.48.3+18.04", + "newRelease": "", + "arch": "", + "repository": "", + "AffectedProcs": [ + { + "pid": "1382", + "name": "snapd" + } + ] + }, + "software-properties-common": { + "name": "software-properties-common", + "version": "0.96.24.32.14", + "release": "", + "newVersion": "0.96.24.32.14", + "newRelease": "", + "arch": "", + "repository": "" + }, + "sosreport": { + "name": "sosreport", + "version": "3.9.1-1ubuntu0.18.04.3", + "release": "", + "newVersion": "3.9.1-1ubuntu0.18.04.3", + "newRelease": "", + "arch": "", + "repository": "" + }, + "squashfs-tools": { + "name": "squashfs-tools", + "version": "1:4.3-6ubuntu0.18.04.1", + "release": "", + "newVersion": "1:4.3-6ubuntu0.18.04.1", + "newRelease": "", + "arch": "", + "repository": "" + }, + "ssh-import-id": { + "name": "ssh-import-id", + "version": "5.7-0ubuntu1.1", + "release": "", + "newVersion": "5.7-0ubuntu1.1", + "newRelease": "", + "arch": "", + "repository": "" + }, + "strace": { + "name": "strace", + "version": "4.21-1ubuntu1", + "release": "", + "newVersion": "4.21-1ubuntu1", + "newRelease": "", + "arch": "", + "repository": "" + }, + "sudo": { + "name": "sudo", + "version": "1.8.21p2-3ubuntu1.4", + "release": "", + "newVersion": "1.8.21p2-3ubuntu1.4", + "newRelease": "", + "arch": "", + "repository": "", + "AffectedProcs": [ + { + "pid": "2963", + "name": "sudo" + } + ] + }, + "systemd": { + "name": "systemd", + "version": "237-3ubuntu10.44", + "release": "", + "newVersion": "237-3ubuntu10.45", + "newRelease": "", + "arch": "", + "repository": "bionic-updates/main", + "AffectedProcs": [ + { + "pid": "1", + "name": "systemd" + }, + { + "pid": "994", + "name": "systemd-logind" + }, + { + "pid": "1945", + "name": "(sd-pam)" + }, + { + "pid": "839", + "name": "systemd-resolve", + "listenPortStats": [ + { + "bindAddress": "127.0.0.53", + "port": "53", + "portReachableTo": [] + } + ] + }, + { + "pid": "541", + "name": "systemd-timesyn" + }, + { + "pid": "1942", + "name": "systemd" + }, + { + "pid": "419", + "name": "systemd-journal" + }, + { + "pid": "828", + "name": "systemd-network" + } + ] + }, + "systemd-sysv": { + "name": "systemd-sysv", + "version": "237-3ubuntu10.44", + "release": "", + "newVersion": "237-3ubuntu10.45", + "newRelease": "", + "arch": "", + "repository": "bionic-updates/main" + }, + "sysvinit-utils": { + "name": "sysvinit-utils", + "version": "2.88dsf-59.10ubuntu1", + "release": "", + "newVersion": "2.88dsf-59.10ubuntu1", + "newRelease": "", + "arch": "", + "repository": "" + }, + "tar": { + "name": "tar", + "version": "1.29b-2ubuntu0.2", + "release": "", + "newVersion": "1.29b-2ubuntu0.2", + "newRelease": "", + "arch": "", + "repository": "" + }, + "tcpdump": { + "name": "tcpdump", + "version": "4.9.3-0ubuntu0.18.04.1", + "release": "", + "newVersion": "4.9.3-0ubuntu0.18.04.1", + "newRelease": "", + "arch": "", + "repository": "" + }, + "telnet": { + "name": "telnet", + "version": "0.17-41", + "release": "", + "newVersion": "0.17-41", + "newRelease": "", + "arch": "", + "repository": "" + }, + "time": { + "name": "time", + "version": "1.7-25.1build1", + "release": "", + "newVersion": "1.7-25.1build1", + "newRelease": "", + "arch": "", + "repository": "" + }, + "tmux": { + "name": "tmux", + "version": "2.6-3ubuntu0.2", + "release": "", + "newVersion": "2.6-3ubuntu0.2", + "newRelease": "", + "arch": "", + "repository": "" + }, + "tzdata": { + "name": "tzdata", + "version": "2021a-0ubuntu0.18.04", + "release": "", + "newVersion": "2021a-0ubuntu0.18.04", + "newRelease": "", + "arch": "", + "repository": "" + }, + "ubuntu-advantage-tools": { + "name": "ubuntu-advantage-tools", + "version": "17", + "release": "", + "newVersion": "17", + "newRelease": "", + "arch": "", + "repository": "" + }, + "ubuntu-keyring": { + "name": "ubuntu-keyring", + "version": "2018.09.18.1~18.04.0", + "release": "", + "newVersion": "2018.09.18.1~18.04.0", + "newRelease": "", + "arch": "", + "repository": "" + }, + "ubuntu-minimal": { + "name": "ubuntu-minimal", + "version": "1.417.5", + "release": "", + "newVersion": "1.417.5", + "newRelease": "", + "arch": "", + "repository": "" + }, + "ubuntu-release-upgrader-core": { + "name": "ubuntu-release-upgrader-core", + "version": "1:18.04.42", + "release": "", + "newVersion": "1:18.04.42", + "newRelease": "", + "arch": "", + "repository": "" + }, + "ubuntu-server": { + "name": "ubuntu-server", + "version": "1.417.5", + "release": "", + "newVersion": "1.417.5", + "newRelease": "", + "arch": "", + "repository": "" + }, + "ubuntu-standard": { + "name": "ubuntu-standard", + "version": "1.417.5", + "release": "", + "newVersion": "1.417.5", + "newRelease": "", + "arch": "", + "repository": "" + }, + "ucf": { + "name": "ucf", + "version": "3.0038", + "release": "", + "newVersion": "3.0038", + "newRelease": "", + "arch": "", + "repository": "" + }, + "udev": { + "name": "udev", + "version": "237-3ubuntu10.44", + "release": "", + "newVersion": "237-3ubuntu10.45", + "newRelease": "", + "arch": "", + "repository": "bionic-updates/main", + "AffectedProcs": [ + { + "pid": "457", + "name": "systemd-udevd" + } + ] + }, + "ufw": { + "name": "ufw", + "version": "0.36-0ubuntu0.18.04.1", + "release": "", + "newVersion": "0.36-0ubuntu0.18.04.1", + "newRelease": "", + "arch": "", + "repository": "" + }, + "uidmap": { + "name": "uidmap", + "version": "1:4.5-1ubuntu2", + "release": "", + "newVersion": "1:4.5-1ubuntu2", + "newRelease": "", + "arch": "", + "repository": "" + }, + "unattended-upgrades": { + "name": "unattended-upgrades", + "version": "1.1ubuntu1.18.04.14", + "release": "", + "newVersion": "1.1ubuntu1.18.04.14", + "newRelease": "", + "arch": "", + "repository": "" + }, + "update-manager-core": { + "name": "update-manager-core", + "version": "1:18.04.11.13", + "release": "", + "newVersion": "1:18.04.11.13", + "newRelease": "", + "arch": "", + "repository": "" + }, + "update-notifier-common": { + "name": "update-notifier-common", + "version": "3.192.1.9", + "release": "", + "newVersion": "3.192.1.9", + "newRelease": "", + "arch": "", + "repository": "" + }, + "ureadahead": { + "name": "ureadahead", + "version": "0.100.0-21", + "release": "", + "newVersion": "0.100.0-21", + "newRelease": "", + "arch": "", + "repository": "" + }, + "usbutils": { + "name": "usbutils", + "version": "1:007-4build1", + "release": "", + "newVersion": "1:007-4build1", + "newRelease": "", + "arch": "", + "repository": "" + }, + "util-linux": { + "name": "util-linux", + "version": "2.31.1-0.4ubuntu3.7", + "release": "", + "newVersion": "2.31.1-0.4ubuntu3.7", + "newRelease": "", + "arch": "", + "repository": "", + "AffectedProcs": [ + { + "pid": "1027", + "name": "agetty" + }, + { + "pid": "1038", + "name": "agetty" + } + ] + }, + "uuid-runtime": { + "name": "uuid-runtime", + "version": "2.31.1-0.4ubuntu3.7", + "release": "", + "newVersion": "2.31.1-0.4ubuntu3.7", + "newRelease": "", + "arch": "", + "repository": "" + }, + "vim": { + "name": "vim", + "version": "2:8.0.1453-1ubuntu1.4", + "release": "", + "newVersion": "2:8.0.1453-1ubuntu1.4", + "newRelease": "", + "arch": "", + "repository": "" + }, + "vim-common": { + "name": "vim-common", + "version": "2:8.0.1453-1ubuntu1.4", + "release": "", + "newVersion": "2:8.0.1453-1ubuntu1.4", + "newRelease": "", + "arch": "", + "repository": "" + }, + "vim-runtime": { + "name": "vim-runtime", + "version": "2:8.0.1453-1ubuntu1.4", + "release": "", + "newVersion": "2:8.0.1453-1ubuntu1.4", + "newRelease": "", + "arch": "", + "repository": "" + }, + "vim-tiny": { + "name": "vim-tiny", + "version": "2:8.0.1453-1ubuntu1.4", + "release": "", + "newVersion": "2:8.0.1453-1ubuntu1.4", + "newRelease": "", + "arch": "", + "repository": "" + }, + "wget": { + "name": "wget", + "version": "1.19.4-1ubuntu2.2", + "release": "", + "newVersion": "1.19.4-1ubuntu2.2", + "newRelease": "", + "arch": "", + "repository": "" + }, + "whiptail": { + "name": "whiptail", + "version": "0.52.20-1ubuntu1", + "release": "", + "newVersion": "0.52.20-1ubuntu1", + "newRelease": "", + "arch": "", + "repository": "" + }, + "xauth": { + "name": "xauth", + "version": "1:1.0.10-1", + "release": "", + "newVersion": "1:1.0.10-1", + "newRelease": "", + "arch": "", + "repository": "" + }, + "xdelta3": { + "name": "xdelta3", + "version": "3.0.11-dfsg-1ubuntu1", + "release": "", + "newVersion": "3.0.11-dfsg-1ubuntu1", + "newRelease": "", + "arch": "", + "repository": "" + }, + "xdg-user-dirs": { + "name": "xdg-user-dirs", + "version": "0.17-1ubuntu1", + "release": "", + "newVersion": "0.17-1ubuntu1", + "newRelease": "", + "arch": "", + "repository": "" + }, + "xfsprogs": { + "name": "xfsprogs", + "version": "4.9.0+nmu1ubuntu2", + "release": "", + "newVersion": "4.9.0+nmu1ubuntu2", + "newRelease": "", + "arch": "", + "repository": "" + }, + "xkb-data": { + "name": "xkb-data", + "version": "2.23.1-1ubuntu1.18.04.1", + "release": "", + "newVersion": "2.23.1-1ubuntu1.18.04.1", + "newRelease": "", + "arch": "", + "repository": "" + }, + "xxd": { + "name": "xxd", + "version": "2:8.0.1453-1ubuntu1.4", + "release": "", + "newVersion": "2:8.0.1453-1ubuntu1.4", + "newRelease": "", + "arch": "", + "repository": "" + }, + "xz-utils": { + "name": "xz-utils", + "version": "5.2.2-1.3", + "release": "", + "newVersion": "5.2.2-1.3", + "newRelease": "", + "arch": "", + "repository": "" + }, + "zerofree": { + "name": "zerofree", + "version": "1.0.4-1", + "release": "", + "newVersion": "1.0.4-1", + "newRelease": "", + "arch": "", + "repository": "" + }, + "zlib1g": { + "name": "zlib1g", + "version": "1:1.2.11.dfsg-0ubuntu2", + "release": "", + "newVersion": "1:1.2.11.dfsg-0ubuntu2", + "newRelease": "", + "arch": "", + "repository": "", + "AffectedProcs": [ + { + "pid": "1000", + "name": "networkd-dispat" + }, + { + "pid": "2097", + "name": "sshd" + }, + { + "pid": "1013", + "name": "polkitd" + }, + { + "pid": "1040", + "name": "unattended-upgr" + }, + { + "pid": "2066", + "name": "sshd" + }, + { + "pid": "995", + "name": "accounts-daemon" + }, + { + "pid": "1154", + "name": "sshd", + "listenPortStats": [ + { + "bindAddress": "*", + "port": "22", + "portReachableTo": [] + } + ] + }, + { + "pid": "1931", + "name": "sshd" + }, + { + "pid": "2167", + "name": "sshd" + }, + { + "pid": "957", + "name": "rsyslogd" + } + ] + } + }, + "SrcPackages": { + "argon2": { + "name": "argon2", + "version": "0~20161029-1.1", + "arch": "", + "binaryNames": [ + "libargon2-0" + ] + }, + "asn1crypto": { + "name": "asn1crypto", + "version": "0.24.0-1", + "arch": "", + "binaryNames": [ + "python3-asn1crypto" + ] + }, + "attr": { + "name": "attr", + "version": "1:2.4.47-2build1", + "arch": "", + "binaryNames": [ + "libattr1" + ] + }, + "audit": { + "name": "audit", + "version": "1:2.8.2-1ubuntu1.1", + "arch": "", + "binaryNames": [ + "libaudit-common", + "libaudit1" + ] + }, + "automat": { + "name": "automat", + "version": "0.6.0-1", + "arch": "", + "binaryNames": [ + "python3-automat" + ] + }, + "bind9": { + "name": "bind9", + "version": "1:9.11.3+dfsg-1ubuntu1.14", + "arch": "", + "binaryNames": [ + "bind9-host", + "dnsutils", + "libbind9-160", + "libdns-export1100", + "libdns1100", + "libirs160", + "libisc-export169", + "libisc169", + "libisccc160", + "libisccfg160", + "liblwres160" + ] + }, + "blinker": { + "name": "blinker", + "version": "1.4+dfsg1-0.1", + "arch": "", + "binaryNames": [ + "python3-blinker" + ] + }, + "busybox": { + "name": "busybox", + "version": "1:1.27.2-2ubuntu3.3", + "arch": "", + "binaryNames": [ + "busybox-initramfs", + "busybox-static" + ] + }, + "cdebconf": { + "name": "cdebconf", + "version": "0.213ubuntu1", + "arch": "", + "binaryNames": [ + "libdebconfclient0" + ] + }, + "chardet": { + "name": "chardet", + "version": "3.0.4-1", + "arch": "", + "binaryNames": [ + "python3-chardet" + ] + }, + "cloud-initramfs-tools": { + "name": "cloud-initramfs-tools", + "version": "0.40ubuntu1.1", + "arch": "", + "binaryNames": [ + "cloud-initramfs-copymods", + "cloud-initramfs-dyn-netconf", + "overlayroot" + ] + }, + "cloud-utils": { + "name": "cloud-utils", + "version": "0.30-0ubuntu5", + "arch": "", + "binaryNames": [ + "cloud-guest-utils" + ] + }, + "configobj": { + "name": "configobj", + "version": "5.0.6-2", + "arch": "", + "binaryNames": [ + "python3-configobj" + ] + }, + "constantly": { + "name": "constantly", + "version": "15.1.0-1", + "arch": "", + "binaryNames": [ + "python3-constantly" + ] + }, + "cyrus-sasl2": { + "name": "cyrus-sasl2", + "version": "2.1.27~101-g0780600+dfsg-3ubuntu2.3", + "arch": "", + "binaryNames": [ + "libsasl2-2", + "libsasl2-modules", + "libsasl2-modules-db" + ] + }, + "db5.3": { + "name": "db5.3", + "version": "5.3.28-13.1ubuntu1.1", + "arch": "", + "binaryNames": [ + "libdb5.3" + ] + }, + "dbus-python": { + "name": "dbus-python", + "version": "1.2.6-1", + "arch": "", + "binaryNames": [ + "python3-dbus" + ] + }, + "distro-info": { + "name": "distro-info", + "version": "0.18ubuntu0.18.04.1", + "arch": "", + "binaryNames": [ + "python3-distro-info" + ] + }, + "dnsmasq": { + "name": "dnsmasq", + "version": "2.79-1ubuntu0.3", + "arch": "", + "binaryNames": [ + "dnsmasq-base" + ] + }, + "expat": { + "name": "expat", + "version": "2.2.5-3ubuntu0.2", + "arch": "", + "binaryNames": [ + "libexpat1" + ] + }, + "fonts-ubuntu": { + "name": "fonts-ubuntu", + "version": "0.83-2", + "arch": "", + "binaryNames": [ + "fonts-ubuntu-console" + ] + }, + "freetype": { + "name": "freetype", + "version": "2.8.1-2ubuntu2.1", + "arch": "", + "binaryNames": [ + "libfreetype6" + ] + }, + "fribidi": { + "name": "fribidi", + "version": "0.19.7-2", + "arch": "", + "binaryNames": [ + "libfribidi0" + ] + }, + "gcc-8": { + "name": "gcc-8", + "version": "8.4.0-1ubuntu1~18.04", + "arch": "", + "binaryNames": [ + "gcc-8-base", + "libgcc1", + "libstdc++6" + ] + }, + "gdbm": { + "name": "gdbm", + "version": "1.14.1-6", + "arch": "", + "binaryNames": [ + "libgdbm-compat4", + "libgdbm5" + ] + }, + "geoip": { + "name": "geoip", + "version": "1.6.12-1", + "arch": "", + "binaryNames": [ + "libgeoip1" + ] + }, + "gettext": { + "name": "gettext", + "version": "0.19.8.1-6ubuntu0.3", + "arch": "", + "binaryNames": [ + "gettext-base" + ] + }, + "glib2.0": { + "name": "glib2.0", + "version": "2.56.4-0ubuntu0.18.04.6", + "arch": "", + "binaryNames": [ + "libglib2.0-0", + "libglib2.0-data" + ] + }, + "glibc": { + "name": "glibc", + "version": "2.27-3ubuntu1.4", + "arch": "", + "binaryNames": [ + "libc-bin", + "libc6", + "locales", + "multiarch-support" + ] + }, + "gmp": { + "name": "gmp", + "version": "2:6.1.2+dfsg-2", + "arch": "", + "binaryNames": [ + "libgmp10" + ] + }, + "gnupg2": { + "name": "gnupg2", + "version": "2.2.4-1ubuntu1.4", + "arch": "", + "binaryNames": [ + "dirmngr", + "gnupg", + "gnupg-l10n", + "gnupg-utils", + "gpg", + "gpg-agent", + "gpg-wks-client", + "gpg-wks-server", + "gpgconf", + "gpgsm", + "gpgv" + ] + }, + "gnutls28": { + "name": "gnutls28", + "version": "3.5.18-1ubuntu1.4", + "arch": "", + "binaryNames": [ + "libgnutls30" + ] + }, + "gobject-introspection": { + "name": "gobject-introspection", + "version": "1.56.1-1", + "arch": "", + "binaryNames": [ + "gir1.2-glib-2.0", + "libgirepository-1.0-1" + ] + }, + "gpm": { + "name": "gpm", + "version": "1.20.7-5", + "arch": "", + "binaryNames": [ + "libgpm2" + ] + }, + "groff": { + "name": "groff", + "version": "1.22.3-10", + "arch": "", + "binaryNames": [ + "groff-base" + ] + }, + "grub2": { + "name": "grub2", + "version": "2.02-2ubuntu8.21", + "arch": "", + "binaryNames": [ + "grub-common", + "grub-pc", + "grub-pc-bin", + "grub2-common" + ] + }, + "heimdal": { + "name": "heimdal", + "version": "7.5.0+dfsg-1", + "arch": "", + "binaryNames": [ + "libasn1-8-heimdal", + "libgssapi3-heimdal", + "libhcrypto4-heimdal", + "libheimbase1-heimdal", + "libheimntlm0-heimdal", + "libhx509-5-heimdal", + "libkrb5-26-heimdal", + "libroken18-heimdal", + "libwind0-heimdal" + ] + }, + "hyperlink": { + "name": "hyperlink", + "version": "17.3.1-2", + "arch": "", + "binaryNames": [ + "python3-hyperlink" + ] + }, + "icu": { + "name": "icu", + "version": "60.2-3ubuntu3.1", + "arch": "", + "binaryNames": [ + "libicu60" + ] + }, + "incremental": { + "name": "incremental", + "version": "16.10.1-3", + "arch": "", + "binaryNames": [ + "python3-incremental" + ] + }, + "iputils": { + "name": "iputils", + "version": "3:20161105-1ubuntu3", + "arch": "", + "binaryNames": [ + "iputils-ping", + "iputils-tracepath" + ] + }, + "isc-dhcp": { + "name": "isc-dhcp", + "version": "4.3.5-3ubuntu7.1", + "arch": "", + "binaryNames": [ + "isc-dhcp-client", + "isc-dhcp-common" + ] + }, + "jinja2": { + "name": "jinja2", + "version": "2.10-1ubuntu0.18.04.1", + "arch": "", + "binaryNames": [ + "python3-jinja2" + ] + }, + "json-c": { + "name": "json-c", + "version": "0.12.1-1.3ubuntu0.3", + "arch": "", + "binaryNames": [ + "libjson-c3" + ] + }, + "keyutils": { + "name": "keyutils", + "version": "1.5.9-9.2ubuntu2", + "arch": "", + "binaryNames": [ + "libkeyutils1" + ] + }, + "klibc": { + "name": "klibc", + "version": "2.0.4-9ubuntu2", + "arch": "", + "binaryNames": [ + "klibc-utils", + "libklibc" + ] + }, + "krb5": { + "name": "krb5", + "version": "1.16-2ubuntu0.2", + "arch": "", + "binaryNames": [ + "krb5-locales", + "libgssapi-krb5-2", + "libk5crypto3", + "libkrb5-3", + "libkrb5support0" + ] + }, + "landscape-client": { + "name": "landscape-client", + "version": "18.01-0ubuntu3.5", + "arch": "", + "binaryNames": [ + "landscape-common" + ] + }, + "language-selector": { + "name": "language-selector", + "version": "0.188.3", + "arch": "", + "binaryNames": [ + "language-selector-common" + ] + }, + "libassuan": { + "name": "libassuan", + "version": "2.5.1-2", + "arch": "", + "binaryNames": [ + "libassuan0" + ] + }, + "libbsd": { + "name": "libbsd", + "version": "0.8.7-1ubuntu0.1", + "arch": "", + "binaryNames": [ + "libbsd0" + ] + }, + "libcap-ng": { + "name": "libcap-ng", + "version": "0.7.7-3.1", + "arch": "", + "binaryNames": [ + "libcap-ng0" + ] + }, + "libdrm": { + "name": "libdrm", + "version": "2.4.101-2~18.04.1", + "arch": "", + "binaryNames": [ + "libdrm-common", + "libdrm2" + ] + }, + "libdumbnet": { + "name": "libdumbnet", + "version": "1.12-7build1", + "arch": "", + "binaryNames": [ + "libdumbnet1" + ] + }, + "libeatmydata": { + "name": "libeatmydata", + "version": "105-6", + "arch": "", + "binaryNames": [ + "eatmydata", + "libeatmydata1" + ] + }, + "libedit": { + "name": "libedit", + "version": "3.1-20170329-1", + "arch": "", + "binaryNames": [ + "libedit2" + ] + }, + "libestr": { + "name": "libestr", + "version": "0.1.10-2.1", + "arch": "", + "binaryNames": [ + "libestr0" + ] + }, + "libevent": { + "name": "libevent", + "version": "2.1.8-stable-4build1", + "arch": "", + "binaryNames": [ + "libevent-2.1-6" + ] + }, + "libfastjson": { + "name": "libfastjson", + "version": "0.99.8-2", + "arch": "", + "binaryNames": [ + "libfastjson4" + ] + }, + "libffi": { + "name": "libffi", + "version": "3.2.1-8", + "arch": "", + "binaryNames": [ + "libffi6" + ] + }, + "libgpg-error": { + "name": "libgpg-error", + "version": "1.27-6", + "arch": "", + "binaryNames": [ + "libgpg-error0" + ] + }, + "libidn": { + "name": "libidn", + "version": "1.33-2.1ubuntu1.2", + "arch": "", + "binaryNames": [ + "libidn11" + ] + }, + "libidn2": { + "name": "libidn2", + "version": "2.0.4-1.1ubuntu0.2", + "arch": "", + "binaryNames": [ + "libidn2-0" + ] + }, + "libksba": { + "name": "libksba", + "version": "1.3.5-2", + "arch": "", + "binaryNames": [ + "libksba8" + ] + }, + "libmnl": { + "name": "libmnl", + "version": "1.0.4-2", + "arch": "", + "binaryNames": [ + "libmnl0" + ] + }, + "libmspack": { + "name": "libmspack", + "version": "0.6-3ubuntu0.3", + "arch": "", + "binaryNames": [ + "libmspack0" + ] + }, + "libnetfilter-conntrack": { + "name": "libnetfilter-conntrack", + "version": "1.0.6-2", + "arch": "", + "binaryNames": [ + "libnetfilter-conntrack3" + ] + }, + "libnfnetlink": { + "name": "libnfnetlink", + "version": "1.0.1-3", + "arch": "", + "binaryNames": [ + "libnfnetlink0" + ] + }, + "libnih": { + "name": "libnih", + "version": "1.0.3-6ubuntu2", + "arch": "", + "binaryNames": [ + "libnih1" + ] + }, + "libpcap": { + "name": "libpcap", + "version": "1.8.1-6ubuntu1.18.04.2", + "arch": "", + "binaryNames": [ + "libpcap0.8" + ] + }, + "libpipeline": { + "name": "libpipeline", + "version": "1.5.0-1", + "arch": "", + "binaryNames": [ + "libpipeline1" + ] + }, + "libpng1.6": { + "name": "libpng1.6", + "version": "1.6.34-1ubuntu0.18.04.2", + "arch": "", + "binaryNames": [ + "libpng16-16" + ] + }, + "libpsl": { + "name": "libpsl", + "version": "0.19.1-5build1", + "arch": "", + "binaryNames": [ + "libpsl5" + ] + }, + "libseccomp": { + "name": "libseccomp", + "version": "2.4.3-1ubuntu3.18.04.3", + "arch": "", + "binaryNames": [ + "libseccomp2" + ] + }, + "libselinux": { + "name": "libselinux", + "version": "2.7-2build2", + "arch": "", + "binaryNames": [ + "libselinux1" + ] + }, + "libsemanage": { + "name": "libsemanage", + "version": "2.7-2build2", + "arch": "", + "binaryNames": [ + "libsemanage-common", + "libsemanage1" + ] + }, + "libsepol": { + "name": "libsepol", + "version": "2.7-1", + "arch": "", + "binaryNames": [ + "libsepol1" + ] + }, + "libsigsegv": { + "name": "libsigsegv", + "version": "2.12-1", + "arch": "", + "binaryNames": [ + "libsigsegv2" + ] + }, + "libunistring": { + "name": "libunistring", + "version": "0.9.9-0ubuntu2", + "arch": "", + "binaryNames": [ + "libunistring2" + ] + }, + "libunwind": { + "name": "libunwind", + "version": "1.2.1-8", + "arch": "", + "binaryNames": [ + "libunwind8" + ] + }, + "libusb-1.0": { + "name": "libusb-1.0", + "version": "2:1.0.21-2", + "arch": "", + "binaryNames": [ + "libusb-1.0-0" + ] + }, + "libutempter": { + "name": "libutempter", + "version": "1.1.6-3", + "arch": "", + "binaryNames": [ + "libutempter0" + ] + }, + "libx11": { + "name": "libx11", + "version": "2:1.6.4-3ubuntu0.3", + "arch": "", + "binaryNames": [ + "libx11-6", + "libx11-data" + ] + }, + "libxau": { + "name": "libxau", + "version": "1:1.0.8-1ubuntu1", + "arch": "", + "binaryNames": [ + "libxau6" + ] + }, + "libxcb": { + "name": "libxcb", + "version": "1.13-2~ubuntu18.04", + "arch": "", + "binaryNames": [ + "libxcb1" + ] + }, + "libxdmcp": { + "name": "libxdmcp", + "version": "1:1.1.2-3", + "arch": "", + "binaryNames": [ + "libxdmcp6" + ] + }, + "libxext": { + "name": "libxext", + "version": "2:1.3.3-1", + "arch": "", + "binaryNames": [ + "libxext6" + ] + }, + "libxmu": { + "name": "libxmu", + "version": "2:1.1.2-2", + "arch": "", + "binaryNames": [ + "libxmuu1" + ] + }, + "libxslt": { + "name": "libxslt", + "version": "1.1.29-5ubuntu0.2", + "arch": "", + "binaryNames": [ + "libxslt1.1" + ] + }, + "libyaml": { + "name": "libyaml", + "version": "0.1.7-2ubuntu3", + "arch": "", + "binaryNames": [ + "libyaml-0-2" + ] + }, + "libzstd": { + "name": "libzstd", + "version": "1.3.3+dfsg-2ubuntu1.1", + "arch": "", + "binaryNames": [ + "libzstd1" + ] + }, + "linux-atm": { + "name": "linux-atm", + "version": "1:2.5.1-2build1", + "arch": "", + "binaryNames": [ + "libatm1" + ] + }, + "linux-aws-5.4": { + "name": "linux-aws-5.4", + "version": "5.4.0-1038.40~18.04.1", + "arch": "", + "binaryNames": [ + "linux-aws-5.4-headers-5.4.0-1038", + "linux-headers-5.4.0-1038-aws", + "linux-image-5.4.0-1038-aws", + "linux-modules-5.4.0-1038-aws" + ] + }, + "linux-meta-aws-5.4": { + "name": "linux-meta-aws-5.4", + "version": "5.4.0.1038.22", + "arch": "", + "binaryNames": [ + "linux-aws", + "linux-headers-aws", + "linux-image-aws" + ] + }, + "lsb": { + "name": "lsb", + "version": "9.20170808ubuntu1", + "arch": "", + "binaryNames": [ + "lsb-base", + "lsb-release" + ] + }, + "lxc": { + "name": "lxc", + "version": "3.0.3-0ubuntu1~18.04.1", + "arch": "", + "binaryNames": [ + "liblxc-common", + "liblxc1" + ] + }, + "lz4": { + "name": "lz4", + "version": "0.0~r131-2ubuntu3", + "arch": "", + "binaryNames": [ + "liblz4-1" + ] + }, + "lzo2": { + "name": "lzo2", + "version": "2.08-1.2", + "arch": "", + "binaryNames": [ + "liblzo2-2" + ] + }, + "markupsafe": { + "name": "markupsafe", + "version": "1.0-1build1", + "arch": "", + "binaryNames": [ + "python3-markupsafe" + ] + }, + "mpdecimal": { + "name": "mpdecimal", + "version": "2.4.2-1ubuntu1", + "arch": "", + "binaryNames": [ + "libmpdec2" + ] + }, + "mpfr4": { + "name": "mpfr4", + "version": "4.0.1-1", + "arch": "", + "binaryNames": [ + "libmpfr6" + ] + }, + "mtr": { + "name": "mtr", + "version": "0.92-1", + "arch": "", + "binaryNames": [ + "mtr-tiny" + ] + }, + "ncurses": { + "name": "ncurses", + "version": "6.1-1ubuntu1.18.04", + "arch": "", + "binaryNames": [ + "libncurses5", + "libncursesw5", + "libtinfo5", + "ncurses-base", + "ncurses-bin", + "ncurses-term" + ] + }, + "netifaces": { + "name": "netifaces", + "version": "0.10.4-0.1build4", + "arch": "", + "binaryNames": [ + "python3-netifaces" + ] + }, + "netkit-ftp": { + "name": "netkit-ftp", + "version": "0.17-34", + "arch": "", + "binaryNames": [ + "ftp" + ] + }, + "netkit-telnet": { + "name": "netkit-telnet", + "version": "0.17-41", + "arch": "", + "binaryNames": [ + "telnet" + ] + }, + "nettle": { + "name": "nettle", + "version": "3.4-1", + "arch": "", + "binaryNames": [ + "libhogweed4", + "libnettle6" + ] + }, + "newt": { + "name": "newt", + "version": "0.52.20-1ubuntu1", + "arch": "", + "binaryNames": [ + "libnewt0.52", + "python3-newt", + "whiptail" + ] + }, + "nghttp2": { + "name": "nghttp2", + "version": "1.30.0-1ubuntu1", + "arch": "", + "binaryNames": [ + "libnghttp2-14" + ] + }, + "npth": { + "name": "npth", + "version": "1.5-3", + "arch": "", + "binaryNames": [ + "libnpth0" + ] + }, + "numactl": { + "name": "numactl", + "version": "2.0.11-2.1ubuntu0.1", + "arch": "", + "binaryNames": [ + "libnuma1" + ] + }, + "open-isns": { + "name": "open-isns", + "version": "0.97-2build1", + "arch": "", + "binaryNames": [ + "libisns0" + ] + }, + "openldap": { + "name": "openldap", + "version": "2.4.45+dfsg-1ubuntu1.10", + "arch": "", + "binaryNames": [ + "libldap-2.4-2", + "libldap-common" + ] + }, + "openssh": { + "name": "openssh", + "version": "1:7.6p1-4ubuntu0.3", + "arch": "", + "binaryNames": [ + "openssh-client", + "openssh-server", + "openssh-sftp-server" + ] + }, + "openssl1.0": { + "name": "openssl1.0", + "version": "1.0.2n-1ubuntu5.6", + "arch": "", + "binaryNames": [ + "libssl1.0.0" + ] + }, + "p11-kit": { + "name": "p11-kit", + "version": "0.23.9-2ubuntu0.1", + "arch": "", + "binaryNames": [ + "libp11-kit0" + ] + }, + "pam": { + "name": "pam", + "version": "1.1.8-3.6ubuntu2.18.04.2", + "arch": "", + "binaryNames": [ + "libpam-modules", + "libpam-modules-bin", + "libpam-runtime", + "libpam0g" + ] + }, + "pcre3": { + "name": "pcre3", + "version": "2:8.39-9", + "arch": "", + "binaryNames": [ + "libpcre3" + ] + }, + "pinentry": { + "name": "pinentry", + "version": "1.1.0-1", + "arch": "", + "binaryNames": [ + "pinentry-curses" + ] + }, + "popt": { + "name": "popt", + "version": "1.16-11", + "arch": "", + "binaryNames": [ + "libpopt0" + ] + }, + "pyasn1": { + "name": "pyasn1", + "version": "0.4.2-3", + "arch": "", + "binaryNames": [ + "python3-pyasn1" + ] + }, + "pygobject": { + "name": "pygobject", + "version": "3.26.1-2ubuntu1", + "arch": "", + "binaryNames": [ + "python3-gi" + ] + }, + "pyjwt": { + "name": "pyjwt", + "version": "1.5.3+ds1-1", + "arch": "", + "binaryNames": [ + "python3-jwt" + ] + }, + "pyopenssl": { + "name": "pyopenssl", + "version": "17.5.0-1ubuntu1", + "arch": "", + "binaryNames": [ + "python3-openssl" + ] + }, + "pyserial": { + "name": "pyserial", + "version": "3.4-2", + "arch": "", + "binaryNames": [ + "python3-serial" + ] + }, + "python-apt": { + "name": "python-apt", + "version": "1.6.5ubuntu0.5", + "arch": "", + "binaryNames": [ + "python-apt-common", + "python3-apt" + ] + }, + "python-attrs": { + "name": "python-attrs", + "version": "17.4.0-2", + "arch": "", + "binaryNames": [ + "python3-attr" + ] + }, + "python-certifi": { + "name": "python-certifi", + "version": "2018.1.18-2", + "arch": "", + "binaryNames": [ + "python3-certifi" + ] + }, + "python-cffi": { + "name": "python-cffi", + "version": "1.11.5-1", + "arch": "", + "binaryNames": [ + "python3-cffi-backend" + ] + }, + "python-click": { + "name": "python-click", + "version": "6.7-3", + "arch": "", + "binaryNames": [ + "python3-click" + ] + }, + "python-colorama": { + "name": "python-colorama", + "version": "0.3.7-1", + "arch": "", + "binaryNames": [ + "python3-colorama" + ] + }, + "python-cryptography": { + "name": "python-cryptography", + "version": "2.1.4-1ubuntu1.4", + "arch": "", + "binaryNames": [ + "python3-cryptography" + ] + }, + "python-debian": { + "name": "python-debian", + "version": "0.1.32", + "arch": "", + "binaryNames": [ + "python3-debian" + ] + }, + "python-httplib2": { + "name": "python-httplib2", + "version": "0.9.2+dfsg-1ubuntu0.3", + "arch": "", + "binaryNames": [ + "python3-httplib2" + ] + }, + "python-idna": { + "name": "python-idna", + "version": "2.6-1", + "arch": "", + "binaryNames": [ + "python3-idna" + ] + }, + "python-json-patch": { + "name": "python-json-patch", + "version": "1.19+really1.16-1fakesync1", + "arch": "", + "binaryNames": [ + "python3-jsonpatch" + ] + }, + "python-json-pointer": { + "name": "python-json-pointer", + "version": "1.10-1", + "arch": "", + "binaryNames": [ + "python3-json-pointer" + ] + }, + "python-jsonschema": { + "name": "python-jsonschema", + "version": "2.6.0-2", + "arch": "", + "binaryNames": [ + "python3-jsonschema" + ] + }, + "python-oauthlib": { + "name": "python-oauthlib", + "version": "2.0.6-1", + "arch": "", + "binaryNames": [ + "python3-oauthlib" + ] + }, + "python-pam": { + "name": "python-pam", + "version": "0.4.2-13.2ubuntu4", + "arch": "", + "binaryNames": [ + "python3-pam" + ] + }, + "python-pyasn1-modules": { + "name": "python-pyasn1-modules", + "version": "0.2.1-0.2", + "arch": "", + "binaryNames": [ + "python3-pyasn1-modules" + ] + }, + "python-requests-unixsocket": { + "name": "python-requests-unixsocket", + "version": "0.1.5-3", + "arch": "", + "binaryNames": [ + "python3-requests-unixsocket" + ] + }, + "python-service-identity": { + "name": "python-service-identity", + "version": "16.0.0-2", + "arch": "", + "binaryNames": [ + "python3-service-identity" + ] + }, + "python-setuptools": { + "name": "python-setuptools", + "version": "39.0.1-2", + "arch": "", + "binaryNames": [ + "python3-pkg-resources" + ] + }, + "python-systemd": { + "name": "python-systemd", + "version": "234-1build1", + "arch": "", + "binaryNames": [ + "python3-systemd" + ] + }, + "python-urllib3": { + "name": "python-urllib3", + "version": "1.22-1ubuntu0.18.04.2", + "arch": "", + "binaryNames": [ + "python3-urllib3" + ] + }, + "python3-defaults": { + "name": "python3-defaults", + "version": "3.6.7-1~18.04", + "arch": "", + "binaryNames": [ + "libpython3-stdlib", + "python3", + "python3-minimal" + ] + }, + "python3-stdlib-extensions": { + "name": "python3-stdlib-extensions", + "version": "3.6.9-1~18.04", + "arch": "", + "binaryNames": [ + "python3-gdbm" + ] + }, + "pyyaml": { + "name": "pyyaml", + "version": "3.12-1build2", + "arch": "", + "binaryNames": [ + "python3-yaml" + ] + }, + "readline": { + "name": "readline", + "version": "7.0-3", + "arch": "", + "binaryNames": [ + "libreadline7", + "readline-common" + ] + }, + "readline5": { + "name": "readline5", + "version": "5.2+dfsg-3build1", + "arch": "", + "binaryNames": [ + "libreadline5" + ] + }, + "requests": { + "name": "requests", + "version": "2.18.4-2ubuntu0.1", + "arch": "", + "binaryNames": [ + "python3-requests" + ] + }, + "rtmpdump": { + "name": "rtmpdump", + "version": "2.4+20151223.gitfa8646d.1-1", + "arch": "", + "binaryNames": [ + "librtmp1" + ] + }, + "shadow": { + "name": "shadow", + "version": "1:4.5-1ubuntu2", + "arch": "", + "binaryNames": [ + "login", + "passwd", + "uidmap" + ] + }, + "six": { + "name": "six", + "version": "1.11.0-2", + "arch": "", + "binaryNames": [ + "python3-six" + ] + }, + "slang2": { + "name": "slang2", + "version": "2.3.1a-3ubuntu1", + "arch": "", + "binaryNames": [ + "libslang2" + ] + }, + "software-properties": { + "name": "software-properties", + "version": "0.96.24.32.14", + "arch": "", + "binaryNames": [ + "python3-software-properties", + "software-properties-common" + ] + }, + "sqlite3": { + "name": "sqlite3", + "version": "3.22.0-1ubuntu0.4", + "arch": "", + "binaryNames": [ + "libsqlite3-0" + ] + }, + "sysvinit": { + "name": "sysvinit", + "version": "2.88dsf-59.10ubuntu1", + "arch": "", + "binaryNames": [ + "sysvinit-utils" + ] + }, + "tcp-wrappers": { + "name": "tcp-wrappers", + "version": "7.6.q-27", + "arch": "", + "binaryNames": [ + "libwrap0" + ] + }, + "texinfo": { + "name": "texinfo", + "version": "6.5.0.dfsg.1-2", + "arch": "", + "binaryNames": [ + "info", + "install-info" + ] + }, + "twisted": { + "name": "twisted", + "version": "17.9.0-2ubuntu0.1", + "arch": "", + "binaryNames": [ + "python3-twisted", + "python3-twisted-bin" + ] + }, + "ubuntu-meta": { + "name": "ubuntu-meta", + "version": "1.417.5", + "arch": "", + "binaryNames": [ + "ubuntu-minimal", + "ubuntu-server", + "ubuntu-standard" + ] + }, + "ubuntu-release-upgrader": { + "name": "ubuntu-release-upgrader", + "version": "1:18.04.42", + "arch": "", + "binaryNames": [ + "python3-distupgrade", + "ubuntu-release-upgrader-core" + ] + }, + "update-manager": { + "name": "update-manager", + "version": "1:18.04.11.13", + "arch": "", + "binaryNames": [ + "python3-update-manager", + "update-manager-core" + ] + }, + "update-notifier": { + "name": "update-notifier", + "version": "3.192.1.9", + "arch": "", + "binaryNames": [ + "update-notifier-common" + ] + }, + "xkeyboard-config": { + "name": "xkeyboard-config", + "version": "2.23.1-1ubuntu1.18.04.1", + "arch": "", + "binaryNames": [ + "xkb-data" + ] + }, + "xmlsec1": { + "name": "xmlsec1", + "version": "1.2.25-1build1", + "arch": "", + "binaryNames": [ + "libxmlsec1", + "libxmlsec1-openssl" + ] + }, + "zlib": { + "name": "zlib", + "version": "1:1.2.11.dfsg-0ubuntu2", + "arch": "", + "binaryNames": [ + "zlib1g" + ] + }, + "zope.interface": { + "name": "zope.interface", + "version": "4.3.2-1build2", + "arch": "", + "binaryNames": [ + "python3-zope.interface" + ] + } + }, + "constant": { + "scan": { + "logDir": "/var/log/vuls", + "resultsDir": "/home/ubuntu/go/src/github.com/future-architect/vuls/results", + "default": { + "port": "22", + "scanMode": [ + "fast" + ] + }, + "servers": { + "ubuntu_1804": { + "serverName": "ubuntu_1804", + "user": "ubuntu", + "host": "13.231.130.70", + "port": "22", + "keyPath": "/home/ubuntu/.ssh/stg.pem", + "scanMode": [ + "fast-root" + ], + "wordpress": {} + } + }, + "cveDict": { + "Name": "cveDict", + "Type": "sqlite3", + "SQLite3Path": "/home/ubuntu/go/src/github.com/kotakanbe/go-cve-dictionary/cve.sqlite3", + "DebugSQL": false + }, + "ovalDict": { + "Name": "ovalDict", + "Type": "sqlite3", + "SQLite3Path": "/home/ubuntu/go/src/github.com/kotakanbe/goval-dictionary/oval.sqlite3", + "DebugSQL": false + }, + "gost": { + "Name": "gost", + "Type": "sqlite3", + "SQLite3Path": "/home/ubuntu/go/src/github.com/future-architect/vuls/gost.sqlite3", + "DebugSQL": false + }, + "exploit": { + "Name": "exploit", + "Type": "sqlite3", + "SQLite3Path": "/home/ubuntu/go/src/github.com/vulsio/go-exploitdb/go-exploitdb.sqlite3", + "DebugSQL": false + }, + "metasploit": { + "Name": "metasploit", + "Type": "sqlite3", + "SQLite3Path": "/home/ubuntu/go/src/github.com/takuzoo3868/go-msfdb/go-msfdb.sqlite3", + "DebugSQL": false + } + }, + "report": { + "default": {}, + "cveDict": { + "Name": "", + "Type": "", + "SQLite3Path": "", + "DebugSQL": false + }, + "ovalDict": { + "Name": "", + "Type": "", + "SQLite3Path": "", + "DebugSQL": false + }, + "gost": { + "Name": "", + "Type": "", + "SQLite3Path": "", + "DebugSQL": false + }, + "exploit": { + "Name": "", + "Type": "", + "SQLite3Path": "", + "DebugSQL": false + }, + "metasploit": { + "Name": "", + "Type": "", + "SQLite3Path": "", + "DebugSQL": false + } + } + } +} \ No newline at end of file diff --git a/integration/data/ubuntu_2004.json b/integration/data/ubuntu_2004.json new file mode 100755 index 00000000..66e6b402 --- /dev/null +++ b/integration/data/ubuntu_2004.json @@ -0,0 +1,8559 @@ +{ + "jsonVersion": 4, + "lang": "", + "serverUUID": "", + "serverName": "ubuntu_2004", + "family": "ubuntu", + "release": "20.04", + "container": { + "containerID": "", + "name": "", + "image": "", + "type": "", + "uuid": "" + }, + "platform": { + "name": "aws", + "instanceID": "i-0fdb2d5d49b36f54d" + }, + "ipv4Addrs": [ + "192.168.0.25" + ], + "scannedAt": "2021-03-24T16:58:43.554959877+09:00", + "scanMode": "fast-root mode", + "scannedVersion": "v0.15.9", + "scannedRevision": "build-20210324_121008_fc3b438", + "scannedBy": "dev", + "scannedVia": "remote", + "scannedIpv4Addrs": [ + "172.21.0.1", + "172.19.0.1", + "172.18.0.1", + "172.17.0.1", + "172.20.0.1" + ], + "reportedAt": "0001-01-01T00:00:00Z", + "reportedVersion": "", + "reportedRevision": "", + "reportedBy": "", + "errors": [], + "warnings": [], + "scannedCves": {}, + "runningKernel": { + "release": "5.4.0-1038-aws", + "version": "", + "rebootRequired": false + }, + "packages": { + "accountsservice": { + "name": "accountsservice", + "version": "0.6.55-0ubuntu12~20.04.4", + "release": "", + "newVersion": "0.6.55-0ubuntu12~20.04.4", + "newRelease": "", + "arch": "", + "repository": "", + "AffectedProcs": [ + { + "pid": "442", + "name": "accounts-daemon" + } + ] + }, + "acpid": { + "name": "acpid", + "version": "1:2.0.32-1ubuntu1", + "release": "", + "newVersion": "1:2.0.32-1ubuntu1", + "newRelease": "", + "arch": "", + "repository": "", + "AffectedProcs": [ + { + "pid": "443", + "name": "acpid" + } + ] + }, + "adduser": { + "name": "adduser", + "version": "3.118ubuntu2", + "release": "", + "newVersion": "3.118ubuntu2", + "newRelease": "", + "arch": "", + "repository": "" + }, + "alsa-topology-conf": { + "name": "alsa-topology-conf", + "version": "1.2.2-1", + "release": "", + "newVersion": "1.2.2-1", + "newRelease": "", + "arch": "", + "repository": "" + }, + "alsa-ucm-conf": { + "name": "alsa-ucm-conf", + "version": "1.2.2-1ubuntu0.5", + "release": "", + "newVersion": "1.2.2-1ubuntu0.5", + "newRelease": "", + "arch": "", + "repository": "" + }, + "amd64-microcode": { + "name": "amd64-microcode", + "version": "3.20191218.1ubuntu1", + "release": "", + "newVersion": "3.20191218.1ubuntu1", + "newRelease": "", + "arch": "", + "repository": "" + }, + "apparmor": { + "name": "apparmor", + "version": "2.13.3-7ubuntu5.1", + "release": "", + "newVersion": "2.13.3-7ubuntu5.1", + "newRelease": "", + "arch": "", + "repository": "" + }, + "apport": { + "name": "apport", + "version": "2.20.11-0ubuntu27.16", + "release": "", + "newVersion": "2.20.11-0ubuntu27.16", + "newRelease": "", + "arch": "", + "repository": "" + }, + "apport-symptoms": { + "name": "apport-symptoms", + "version": "0.23", + "release": "", + "newVersion": "0.23", + "newRelease": "", + "arch": "", + "repository": "" + }, + "apt": { + "name": "apt", + "version": "2.0.4", + "release": "", + "newVersion": "2.0.4", + "newRelease": "", + "arch": "", + "repository": "" + }, + "apt-utils": { + "name": "apt-utils", + "version": "2.0.4", + "release": "", + "newVersion": "2.0.4", + "newRelease": "", + "arch": "", + "repository": "" + }, + "at": { + "name": "at", + "version": "3.1.23-1ubuntu1", + "release": "", + "newVersion": "3.1.23-1ubuntu1", + "newRelease": "", + "arch": "", + "repository": "", + "AffectedProcs": [ + { + "pid": "474", + "name": "atd" + } + ] + }, + "base-files": { + "name": "base-files", + "version": "11ubuntu5.3", + "release": "", + "newVersion": "11ubuntu5.3", + "newRelease": "", + "arch": "", + "repository": "" + }, + "base-passwd": { + "name": "base-passwd", + "version": "3.5.47", + "release": "", + "newVersion": "3.5.47", + "newRelease": "", + "arch": "", + "repository": "" + }, + "bash": { + "name": "bash", + "version": "5.0-6ubuntu1.1", + "release": "", + "newVersion": "5.0-6ubuntu1.1", + "newRelease": "", + "arch": "", + "repository": "" + }, + "bash-completion": { + "name": "bash-completion", + "version": "1:2.10-1ubuntu1", + "release": "", + "newVersion": "1:2.10-1ubuntu1", + "newRelease": "", + "arch": "", + "repository": "" + }, + "bc": { + "name": "bc", + "version": "1.07.1-2build1", + "release": "", + "newVersion": "1.07.1-2build1", + "newRelease": "", + "arch": "", + "repository": "" + }, + "bcache-tools": { + "name": "bcache-tools", + "version": "1.0.8-3ubuntu0.1", + "release": "", + "newVersion": "1.0.8-3ubuntu0.1", + "newRelease": "", + "arch": "", + "repository": "" + }, + "bind9-dnsutils": { + "name": "bind9-dnsutils", + "version": "1:9.16.1-0ubuntu2.6", + "release": "", + "newVersion": "1:9.16.1-0ubuntu2.7", + "newRelease": "", + "arch": "", + "repository": "focal-updates/main" + }, + "bind9-host": { + "name": "bind9-host", + "version": "1:9.16.1-0ubuntu2.6", + "release": "", + "newVersion": "1:9.16.1-0ubuntu2.7", + "newRelease": "", + "arch": "", + "repository": "focal-updates/main" + }, + "bind9-libs": { + "name": "bind9-libs", + "version": "1:9.16.1-0ubuntu2.6", + "release": "", + "newVersion": "1:9.16.1-0ubuntu2.7", + "newRelease": "", + "arch": "", + "repository": "focal-updates/main" + }, + "bolt": { + "name": "bolt", + "version": "0.8-4ubuntu1", + "release": "", + "newVersion": "0.8-4ubuntu1", + "newRelease": "", + "arch": "", + "repository": "" + }, + "bsdmainutils": { + "name": "bsdmainutils", + "version": "11.1.2ubuntu3", + "release": "", + "newVersion": "11.1.2ubuntu3", + "newRelease": "", + "arch": "", + "repository": "" + }, + "bsdutils": { + "name": "bsdutils", + "version": "1:2.34-0.1ubuntu9.1", + "release": "", + "newVersion": "1:2.34-0.1ubuntu9.1", + "newRelease": "", + "arch": "", + "repository": "" + }, + "btrfs-progs": { + "name": "btrfs-progs", + "version": "5.4.1-2", + "release": "", + "newVersion": "5.4.1-2", + "newRelease": "", + "arch": "", + "repository": "" + }, + "busybox-initramfs": { + "name": "busybox-initramfs", + "version": "1:1.30.1-4ubuntu6.3", + "release": "", + "newVersion": "1:1.30.1-4ubuntu6.3", + "newRelease": "", + "arch": "", + "repository": "" + }, + "busybox-static": { + "name": "busybox-static", + "version": "1:1.30.1-4ubuntu6.3", + "release": "", + "newVersion": "1:1.30.1-4ubuntu6.3", + "newRelease": "", + "arch": "", + "repository": "" + }, + "byobu": { + "name": "byobu", + "version": "5.133-0ubuntu1", + "release": "", + "newVersion": "5.133-0ubuntu1", + "newRelease": "", + "arch": "", + "repository": "" + }, + "bzip2": { + "name": "bzip2", + "version": "1.0.8-2", + "release": "", + "newVersion": "1.0.8-2", + "newRelease": "", + "arch": "", + "repository": "" + }, + "ca-certificates": { + "name": "ca-certificates", + "version": "20210119~20.04.1", + "release": "", + "newVersion": "20210119~20.04.1", + "newRelease": "", + "arch": "", + "repository": "" + }, + "cloud-guest-utils": { + "name": "cloud-guest-utils", + "version": "0.31-7-gd99b2d76-0ubuntu1", + "release": "", + "newVersion": "0.31-7-gd99b2d76-0ubuntu1", + "newRelease": "", + "arch": "", + "repository": "" + }, + "cloud-init": { + "name": "cloud-init", + "version": "20.4.1-0ubuntu1~20.04.1", + "release": "", + "newVersion": "20.4.1-0ubuntu1~20.04.1", + "newRelease": "", + "arch": "", + "repository": "" + }, + "cloud-initramfs-copymods": { + "name": "cloud-initramfs-copymods", + "version": "0.45ubuntu1", + "release": "", + "newVersion": "0.45ubuntu1", + "newRelease": "", + "arch": "", + "repository": "" + }, + "cloud-initramfs-dyn-netconf": { + "name": "cloud-initramfs-dyn-netconf", + "version": "0.45ubuntu1", + "release": "", + "newVersion": "0.45ubuntu1", + "newRelease": "", + "arch": "", + "repository": "" + }, + "command-not-found": { + "name": "command-not-found", + "version": "20.04.4", + "release": "", + "newVersion": "20.04.4", + "newRelease": "", + "arch": "", + "repository": "" + }, + "console-setup": { + "name": "console-setup", + "version": "1.194ubuntu3", + "release": "", + "newVersion": "1.194ubuntu3", + "newRelease": "", + "arch": "", + "repository": "" + }, + "console-setup-linux": { + "name": "console-setup-linux", + "version": "1.194ubuntu3", + "release": "", + "newVersion": "1.194ubuntu3", + "newRelease": "", + "arch": "", + "repository": "" + }, + "coreutils": { + "name": "coreutils", + "version": "8.30-3ubuntu2", + "release": "", + "newVersion": "8.30-3ubuntu2", + "newRelease": "", + "arch": "", + "repository": "" + }, + "cpio": { + "name": "cpio", + "version": "2.13+dfsg-2", + "release": "", + "newVersion": "2.13+dfsg-2", + "newRelease": "", + "arch": "", + "repository": "" + }, + "cron": { + "name": "cron", + "version": "3.0pl1-136ubuntu1", + "release": "", + "newVersion": "3.0pl1-136ubuntu1", + "newRelease": "", + "arch": "", + "repository": "", + "AffectedProcs": [ + { + "pid": "450", + "name": "cron" + } + ] + }, + "cryptsetup": { + "name": "cryptsetup", + "version": "2:2.2.2-3ubuntu2.3", + "release": "", + "newVersion": "2:2.2.2-3ubuntu2.3", + "newRelease": "", + "arch": "", + "repository": "" + }, + "cryptsetup-bin": { + "name": "cryptsetup-bin", + "version": "2:2.2.2-3ubuntu2.3", + "release": "", + "newVersion": "2:2.2.2-3ubuntu2.3", + "newRelease": "", + "arch": "", + "repository": "" + }, + "cryptsetup-initramfs": { + "name": "cryptsetup-initramfs", + "version": "2:2.2.2-3ubuntu2.3", + "release": "", + "newVersion": "2:2.2.2-3ubuntu2.3", + "newRelease": "", + "arch": "", + "repository": "" + }, + "cryptsetup-run": { + "name": "cryptsetup-run", + "version": "2:2.2.2-3ubuntu2.3", + "release": "", + "newVersion": "2:2.2.2-3ubuntu2.3", + "newRelease": "", + "arch": "", + "repository": "" + }, + "curl": { + "name": "curl", + "version": "7.68.0-1ubuntu2.4", + "release": "", + "newVersion": "7.68.0-1ubuntu2.4", + "newRelease": "", + "arch": "", + "repository": "" + }, + "dash": { + "name": "dash", + "version": "0.5.10.2-6", + "release": "", + "newVersion": "0.5.10.2-6", + "newRelease": "", + "arch": "", + "repository": "" + }, + "dbus": { + "name": "dbus", + "version": "1.12.16-2ubuntu2.1", + "release": "", + "newVersion": "1.12.16-2ubuntu2.1", + "newRelease": "", + "arch": "", + "repository": "", + "AffectedProcs": [ + { + "pid": "451", + "name": "dbus-daemon" + } + ] + }, + "dbus-user-session": { + "name": "dbus-user-session", + "version": "1.12.16-2ubuntu2.1", + "release": "", + "newVersion": "1.12.16-2ubuntu2.1", + "newRelease": "", + "arch": "", + "repository": "" + }, + "dconf-gsettings-backend": { + "name": "dconf-gsettings-backend", + "version": "0.36.0-1", + "release": "", + "newVersion": "0.36.0-1", + "newRelease": "", + "arch": "", + "repository": "", + "AffectedProcs": [ + { + "pid": "1677", + "name": "packagekitd" + }, + { + "pid": "442", + "name": "accounts-daemon" + }, + { + "pid": "617", + "name": "polkitd" + } + ] + }, + "dconf-service": { + "name": "dconf-service", + "version": "0.36.0-1", + "release": "", + "newVersion": "0.36.0-1", + "newRelease": "", + "arch": "", + "repository": "" + }, + "dctrl-tools": { + "name": "dctrl-tools", + "version": "2.24-3", + "release": "", + "newVersion": "2.24-3", + "newRelease": "", + "arch": "", + "repository": "" + }, + "debconf": { + "name": "debconf", + "version": "1.5.73", + "release": "", + "newVersion": "1.5.73", + "newRelease": "", + "arch": "", + "repository": "" + }, + "debconf-i18n": { + "name": "debconf-i18n", + "version": "1.5.73", + "release": "", + "newVersion": "1.5.73", + "newRelease": "", + "arch": "", + "repository": "" + }, + "debian-goodies": { + "name": "debian-goodies", + "version": "0.84", + "release": "", + "newVersion": "0.84", + "newRelease": "", + "arch": "", + "repository": "" + }, + "debianutils": { + "name": "debianutils", + "version": "4.9.1", + "release": "", + "newVersion": "4.9.1", + "newRelease": "", + "arch": "", + "repository": "" + }, + "diffutils": { + "name": "diffutils", + "version": "1:3.7-3", + "release": "", + "newVersion": "1:3.7-3", + "newRelease": "", + "arch": "", + "repository": "" + }, + "dirmngr": { + "name": "dirmngr", + "version": "2.2.19-3ubuntu2.1", + "release": "", + "newVersion": "2.2.19-3ubuntu2.1", + "newRelease": "", + "arch": "", + "repository": "" + }, + "distro-info-data": { + "name": "distro-info-data", + "version": "0.43ubuntu1.4", + "release": "", + "newVersion": "0.43ubuntu1.4", + "newRelease": "", + "arch": "", + "repository": "" + }, + "dmeventd": { + "name": "dmeventd", + "version": "2:1.02.167-1ubuntu1", + "release": "", + "newVersion": "2:1.02.167-1ubuntu1", + "newRelease": "", + "arch": "", + "repository": "" + }, + "dmidecode": { + "name": "dmidecode", + "version": "3.2-3", + "release": "", + "newVersion": "3.2-3", + "newRelease": "", + "arch": "", + "repository": "" + }, + "dmsetup": { + "name": "dmsetup", + "version": "2:1.02.167-1ubuntu1", + "release": "", + "newVersion": "2:1.02.167-1ubuntu1", + "newRelease": "", + "arch": "", + "repository": "" + }, + "dosfstools": { + "name": "dosfstools", + "version": "4.1-2", + "release": "", + "newVersion": "4.1-2", + "newRelease": "", + "arch": "", + "repository": "" + }, + "dpkg": { + "name": "dpkg", + "version": "1.19.7ubuntu3", + "release": "", + "newVersion": "1.19.7ubuntu3", + "newRelease": "", + "arch": "", + "repository": "" + }, + "e2fsprogs": { + "name": "e2fsprogs", + "version": "1.45.5-2ubuntu1", + "release": "", + "newVersion": "1.45.5-2ubuntu1", + "newRelease": "", + "arch": "", + "repository": "" + }, + "eatmydata": { + "name": "eatmydata", + "version": "105-7", + "release": "", + "newVersion": "105-7", + "newRelease": "", + "arch": "", + "repository": "" + }, + "ec2-hibinit-agent": { + "name": "ec2-hibinit-agent", + "version": "1.0.0-0ubuntu9.1", + "release": "", + "newVersion": "1.0.0-0ubuntu9.1", + "newRelease": "", + "arch": "", + "repository": "" + }, + "ec2-instance-connect": { + "name": "ec2-instance-connect", + "version": "1.1.12+dfsg1-0ubuntu3.20.04.0", + "release": "", + "newVersion": "1.1.12+dfsg1-0ubuntu3.20.04.0", + "newRelease": "", + "arch": "", + "repository": "" + }, + "ed": { + "name": "ed", + "version": "1.16-1", + "release": "", + "newVersion": "1.16-1", + "newRelease": "", + "arch": "", + "repository": "" + }, + "eject": { + "name": "eject", + "version": "2.1.5+deb1+cvs20081104-14", + "release": "", + "newVersion": "2.1.5+deb1+cvs20081104-14", + "newRelease": "", + "arch": "", + "repository": "" + }, + "elfutils": { + "name": "elfutils", + "version": "0.176-1.1build1", + "release": "", + "newVersion": "0.176-1.1build1", + "newRelease": "", + "arch": "", + "repository": "" + }, + "ethtool": { + "name": "ethtool", + "version": "1:5.4-1", + "release": "", + "newVersion": "1:5.4-1", + "newRelease": "", + "arch": "", + "repository": "" + }, + "fdisk": { + "name": "fdisk", + "version": "2.34-0.1ubuntu9.1", + "release": "", + "newVersion": "2.34-0.1ubuntu9.1", + "newRelease": "", + "arch": "", + "repository": "" + }, + "file": { + "name": "file", + "version": "1:5.38-4", + "release": "", + "newVersion": "1:5.38-4", + "newRelease": "", + "arch": "", + "repository": "" + }, + "finalrd": { + "name": "finalrd", + "version": "6~ubuntu20.04.1", + "release": "", + "newVersion": "6~ubuntu20.04.1", + "newRelease": "", + "arch": "", + "repository": "" + }, + "findutils": { + "name": "findutils", + "version": "4.7.0-1ubuntu1", + "release": "", + "newVersion": "4.7.0-1ubuntu1", + "newRelease": "", + "arch": "", + "repository": "" + }, + "fonts-ubuntu-console": { + "name": "fonts-ubuntu-console", + "version": "0.83-4ubuntu1", + "release": "", + "newVersion": "0.83-4ubuntu1", + "newRelease": "", + "arch": "", + "repository": "" + }, + "friendly-recovery": { + "name": "friendly-recovery", + "version": "0.2.41ubuntu0.20.04.1", + "release": "", + "newVersion": "0.2.41ubuntu0.20.04.1", + "newRelease": "", + "arch": "", + "repository": "" + }, + "ftp": { + "name": "ftp", + "version": "0.17-34.1", + "release": "", + "newVersion": "0.17-34.1", + "newRelease": "", + "arch": "", + "repository": "" + }, + "fuse": { + "name": "fuse", + "version": "2.9.9-3", + "release": "", + "newVersion": "2.9.9-3", + "newRelease": "", + "arch": "", + "repository": "" + }, + "fwupd": { + "name": "fwupd", + "version": "1.3.11-1~focal1", + "release": "", + "newVersion": "1.3.11-1~focal1", + "newRelease": "", + "arch": "", + "repository": "" + }, + "fwupd-signed": { + "name": "fwupd-signed", + "version": "1.27.1ubuntu2+1.3.11-1~focal1", + "release": "", + "newVersion": "1.27.1ubuntu2+1.3.11-1~focal1", + "newRelease": "", + "arch": "", + "repository": "" + }, + "gawk": { + "name": "gawk", + "version": "1:5.0.1+dfsg-1", + "release": "", + "newVersion": "1:5.0.1+dfsg-1", + "newRelease": "", + "arch": "", + "repository": "" + }, + "gcc-10-base": { + "name": "gcc-10-base", + "version": "10.2.0-5ubuntu1~20.04", + "release": "", + "newVersion": "10.2.0-5ubuntu1~20.04", + "newRelease": "", + "arch": "", + "repository": "" + }, + "gdisk": { + "name": "gdisk", + "version": "1.0.5-1", + "release": "", + "newVersion": "1.0.5-1", + "newRelease": "", + "arch": "", + "repository": "" + }, + "gettext-base": { + "name": "gettext-base", + "version": "0.19.8.1-10build1", + "release": "", + "newVersion": "0.19.8.1-10build1", + "newRelease": "", + "arch": "", + "repository": "" + }, + "gir1.2-glib-2.0": { + "name": "gir1.2-glib-2.0", + "version": "1.64.1-1~ubuntu20.04.1", + "release": "", + "newVersion": "1.64.1-1~ubuntu20.04.1", + "newRelease": "", + "arch": "", + "repository": "", + "AffectedProcs": [ + { + "pid": "462", + "name": "networkd-dispat" + }, + { + "pid": "626", + "name": "unattended-upgr" + } + ] + }, + "gir1.2-packagekitglib-1.0": { + "name": "gir1.2-packagekitglib-1.0", + "version": "1.1.13-2ubuntu1.1", + "release": "", + "newVersion": "1.1.13-2ubuntu1.1", + "newRelease": "", + "arch": "", + "repository": "" + }, + "git": { + "name": "git", + "version": "1:2.25.1-1ubuntu3", + "release": "", + "newVersion": "1:2.25.1-1ubuntu3.1", + "newRelease": "", + "arch": "", + "repository": "focal-updates/main" + }, + "git-man": { + "name": "git-man", + "version": "1:2.25.1-1ubuntu3", + "release": "", + "newVersion": "1:2.25.1-1ubuntu3.1", + "newRelease": "", + "arch": "", + "repository": "focal-updates/main" + }, + "glib-networking": { + "name": "glib-networking", + "version": "2.64.2-1ubuntu0.1", + "release": "", + "newVersion": "2.64.2-1ubuntu0.1", + "newRelease": "", + "arch": "", + "repository": "" + }, + "glib-networking-common": { + "name": "glib-networking-common", + "version": "2.64.2-1ubuntu0.1", + "release": "", + "newVersion": "2.64.2-1ubuntu0.1", + "newRelease": "", + "arch": "", + "repository": "" + }, + "glib-networking-services": { + "name": "glib-networking-services", + "version": "2.64.2-1ubuntu0.1", + "release": "", + "newVersion": "2.64.2-1ubuntu0.1", + "newRelease": "", + "arch": "", + "repository": "" + }, + "gnupg": { + "name": "gnupg", + "version": "2.2.19-3ubuntu2.1", + "release": "", + "newVersion": "2.2.19-3ubuntu2.1", + "newRelease": "", + "arch": "", + "repository": "" + }, + "gnupg-l10n": { + "name": "gnupg-l10n", + "version": "2.2.19-3ubuntu2.1", + "release": "", + "newVersion": "2.2.19-3ubuntu2.1", + "newRelease": "", + "arch": "", + "repository": "" + }, + "gnupg-utils": { + "name": "gnupg-utils", + "version": "2.2.19-3ubuntu2.1", + "release": "", + "newVersion": "2.2.19-3ubuntu2.1", + "newRelease": "", + "arch": "", + "repository": "" + }, + "gpg": { + "name": "gpg", + "version": "2.2.19-3ubuntu2.1", + "release": "", + "newVersion": "2.2.19-3ubuntu2.1", + "newRelease": "", + "arch": "", + "repository": "" + }, + "gpg-agent": { + "name": "gpg-agent", + "version": "2.2.19-3ubuntu2.1", + "release": "", + "newVersion": "2.2.19-3ubuntu2.1", + "newRelease": "", + "arch": "", + "repository": "" + }, + "gpg-wks-client": { + "name": "gpg-wks-client", + "version": "2.2.19-3ubuntu2.1", + "release": "", + "newVersion": "2.2.19-3ubuntu2.1", + "newRelease": "", + "arch": "", + "repository": "" + }, + "gpg-wks-server": { + "name": "gpg-wks-server", + "version": "2.2.19-3ubuntu2.1", + "release": "", + "newVersion": "2.2.19-3ubuntu2.1", + "newRelease": "", + "arch": "", + "repository": "" + }, + "gpgconf": { + "name": "gpgconf", + "version": "2.2.19-3ubuntu2.1", + "release": "", + "newVersion": "2.2.19-3ubuntu2.1", + "newRelease": "", + "arch": "", + "repository": "" + }, + "gpgsm": { + "name": "gpgsm", + "version": "2.2.19-3ubuntu2.1", + "release": "", + "newVersion": "2.2.19-3ubuntu2.1", + "newRelease": "", + "arch": "", + "repository": "" + }, + "gpgv": { + "name": "gpgv", + "version": "2.2.19-3ubuntu2.1", + "release": "", + "newVersion": "2.2.19-3ubuntu2.1", + "newRelease": "", + "arch": "", + "repository": "" + }, + "grep": { + "name": "grep", + "version": "3.4-1", + "release": "", + "newVersion": "3.4-1", + "newRelease": "", + "arch": "", + "repository": "" + }, + "groff-base": { + "name": "groff-base", + "version": "1.22.4-4build1", + "release": "", + "newVersion": "1.22.4-4build1", + "newRelease": "", + "arch": "", + "repository": "" + }, + "grub-common": { + "name": "grub-common", + "version": "2.04-1ubuntu26.9", + "release": "", + "newVersion": "2.04-1ubuntu26.9", + "newRelease": "", + "arch": "", + "repository": "" + }, + "grub-gfxpayload-lists": { + "name": "grub-gfxpayload-lists", + "version": "0.7", + "release": "", + "newVersion": "0.7", + "newRelease": "", + "arch": "", + "repository": "" + }, + "grub-pc": { + "name": "grub-pc", + "version": "2.04-1ubuntu26.9", + "release": "", + "newVersion": "2.04-1ubuntu26.9", + "newRelease": "", + "arch": "", + "repository": "" + }, + "grub-pc-bin": { + "name": "grub-pc-bin", + "version": "2.04-1ubuntu26.9", + "release": "", + "newVersion": "2.04-1ubuntu26.9", + "newRelease": "", + "arch": "", + "repository": "" + }, + "grub2-common": { + "name": "grub2-common", + "version": "2.04-1ubuntu26.9", + "release": "", + "newVersion": "2.04-1ubuntu26.9", + "newRelease": "", + "arch": "", + "repository": "" + }, + "gsettings-desktop-schemas": { + "name": "gsettings-desktop-schemas", + "version": "3.36.0-1ubuntu1", + "release": "", + "newVersion": "3.36.0-1ubuntu1", + "newRelease": "", + "arch": "", + "repository": "" + }, + "gzip": { + "name": "gzip", + "version": "1.10-0ubuntu4", + "release": "", + "newVersion": "1.10-0ubuntu4", + "newRelease": "", + "arch": "", + "repository": "" + }, + "hdparm": { + "name": "hdparm", + "version": "9.58+ds-4", + "release": "", + "newVersion": "9.58+ds-4", + "newRelease": "", + "arch": "", + "repository": "" + }, + "hibagent": { + "name": "hibagent", + "version": "1.0.1-0ubuntu1", + "release": "", + "newVersion": "1.0.1-0ubuntu1", + "newRelease": "", + "arch": "", + "repository": "" + }, + "hostname": { + "name": "hostname", + "version": "3.23", + "release": "", + "newVersion": "3.23", + "newRelease": "", + "arch": "", + "repository": "" + }, + "htop": { + "name": "htop", + "version": "2.2.0-2build1", + "release": "", + "newVersion": "2.2.0-2build1", + "newRelease": "", + "arch": "", + "repository": "" + }, + "info": { + "name": "info", + "version": "6.7.0.dfsg.2-5", + "release": "", + "newVersion": "6.7.0.dfsg.2-5", + "newRelease": "", + "arch": "", + "repository": "" + }, + "init": { + "name": "init", + "version": "1.57", + "release": "", + "newVersion": "1.57", + "newRelease": "", + "arch": "", + "repository": "" + }, + "init-system-helpers": { + "name": "init-system-helpers", + "version": "1.57", + "release": "", + "newVersion": "1.57", + "newRelease": "", + "arch": "", + "repository": "" + }, + "initramfs-tools": { + "name": "initramfs-tools", + "version": "0.136ubuntu6.3", + "release": "", + "newVersion": "0.136ubuntu6.4", + "newRelease": "", + "arch": "", + "repository": "focal-updates/main" + }, + "initramfs-tools-bin": { + "name": "initramfs-tools-bin", + "version": "0.136ubuntu6.3", + "release": "", + "newVersion": "0.136ubuntu6.4", + "newRelease": "", + "arch": "", + "repository": "focal-updates/main" + }, + "initramfs-tools-core": { + "name": "initramfs-tools-core", + "version": "0.136ubuntu6.3", + "release": "", + "newVersion": "0.136ubuntu6.4", + "newRelease": "", + "arch": "", + "repository": "focal-updates/main" + }, + "install-info": { + "name": "install-info", + "version": "6.7.0.dfsg.2-5", + "release": "", + "newVersion": "6.7.0.dfsg.2-5", + "newRelease": "", + "arch": "", + "repository": "" + }, + "intel-microcode": { + "name": "intel-microcode", + "version": "3.20201110.0ubuntu0.20.04.2", + "release": "", + "newVersion": "3.20201110.0ubuntu0.20.04.2", + "newRelease": "", + "arch": "", + "repository": "" + }, + "iproute2": { + "name": "iproute2", + "version": "5.5.0-1ubuntu1", + "release": "", + "newVersion": "5.5.0-1ubuntu1", + "newRelease": "", + "arch": "", + "repository": "" + }, + "iptables": { + "name": "iptables", + "version": "1.8.4-3ubuntu2", + "release": "", + "newVersion": "1.8.4-3ubuntu2", + "newRelease": "", + "arch": "", + "repository": "" + }, + "iputils-ping": { + "name": "iputils-ping", + "version": "3:20190709-3", + "release": "", + "newVersion": "3:20190709-3", + "newRelease": "", + "arch": "", + "repository": "" + }, + "iputils-tracepath": { + "name": "iputils-tracepath", + "version": "3:20190709-3", + "release": "", + "newVersion": "3:20190709-3", + "newRelease": "", + "arch": "", + "repository": "" + }, + "irqbalance": { + "name": "irqbalance", + "version": "1.6.0-3ubuntu1", + "release": "", + "newVersion": "1.6.0-3ubuntu1", + "newRelease": "", + "arch": "", + "repository": "" + }, + "isc-dhcp-client": { + "name": "isc-dhcp-client", + "version": "4.4.1-2.1ubuntu5", + "release": "", + "newVersion": "4.4.1-2.1ubuntu5.20.04.1", + "newRelease": "", + "arch": "", + "repository": "focal-updates/main" + }, + "isc-dhcp-common": { + "name": "isc-dhcp-common", + "version": "4.4.1-2.1ubuntu5", + "release": "", + "newVersion": "4.4.1-2.1ubuntu5.20.04.1", + "newRelease": "", + "arch": "", + "repository": "focal-updates/main" + }, + "iso-codes": { + "name": "iso-codes", + "version": "4.4-1", + "release": "", + "newVersion": "4.4-1", + "newRelease": "", + "arch": "", + "repository": "" + }, + "iucode-tool": { + "name": "iucode-tool", + "version": "2.3.1-1", + "release": "", + "newVersion": "2.3.1-1", + "newRelease": "", + "arch": "", + "repository": "" + }, + "kbd": { + "name": "kbd", + "version": "2.0.4-4ubuntu2", + "release": "", + "newVersion": "2.0.4-4ubuntu2", + "newRelease": "", + "arch": "", + "repository": "" + }, + "keyboard-configuration": { + "name": "keyboard-configuration", + "version": "1.194ubuntu3", + "release": "", + "newVersion": "1.194ubuntu3", + "newRelease": "", + "arch": "", + "repository": "" + }, + "klibc-utils": { + "name": "klibc-utils", + "version": "2.0.7-1ubuntu5", + "release": "", + "newVersion": "2.0.7-1ubuntu5", + "newRelease": "", + "arch": "", + "repository": "" + }, + "kmod": { + "name": "kmod", + "version": "27-1ubuntu2", + "release": "", + "newVersion": "27-1ubuntu2", + "newRelease": "", + "arch": "", + "repository": "" + }, + "kpartx": { + "name": "kpartx", + "version": "0.8.3-1ubuntu2", + "release": "", + "newVersion": "0.8.3-1ubuntu2", + "newRelease": "", + "arch": "", + "repository": "" + }, + "krb5-locales": { + "name": "krb5-locales", + "version": "1.17-6ubuntu4.1", + "release": "", + "newVersion": "1.17-6ubuntu4.1", + "newRelease": "", + "arch": "", + "repository": "" + }, + "landscape-common": { + "name": "landscape-common", + "version": "19.12-0ubuntu4.1", + "release": "", + "newVersion": "19.12-0ubuntu4.1", + "newRelease": "", + "arch": "", + "repository": "" + }, + "language-selector-common": { + "name": "language-selector-common", + "version": "0.204.2", + "release": "", + "newVersion": "0.204.2", + "newRelease": "", + "arch": "", + "repository": "" + }, + "less": { + "name": "less", + "version": "551-1ubuntu0.1", + "release": "", + "newVersion": "551-1ubuntu0.1", + "newRelease": "", + "arch": "", + "repository": "" + }, + "libaccountsservice0": { + "name": "libaccountsservice0", + "version": "0.6.55-0ubuntu12~20.04.4", + "release": "", + "newVersion": "0.6.55-0ubuntu12~20.04.4", + "newRelease": "", + "arch": "", + "repository": "" + }, + "libacl1": { + "name": "libacl1", + "version": "2.2.53-6", + "release": "", + "newVersion": "2.2.53-6", + "newRelease": "", + "arch": "", + "repository": "", + "AffectedProcs": [ + { + "pid": "191", + "name": "systemd-udevd" + }, + { + "pid": "376", + "name": "systemd-network" + }, + { + "pid": "1", + "name": "systemd" + }, + { + "pid": "1334", + "name": "systemd" + }, + { + "pid": "158", + "name": "systemd-journal" + }, + { + "pid": "467", + "name": "systemd-logind" + }, + { + "pid": "302", + "name": "systemd-timesyn" + }, + { + "pid": "379", + "name": "systemd-resolve", + "listenPortStats": [ + { + "bindAddress": "127.0.0.53", + "port": "53", + "portReachableTo": [] + } + ] + }, + { + "pid": "1335", + "name": "(sd-pam)" + } + ] + }, + "libaio1": { + "name": "libaio1", + "version": "0.3.112-5", + "release": "", + "newVersion": "0.3.112-5", + "newRelease": "", + "arch": "", + "repository": "", + "AffectedProcs": [ + { + "pid": "270", + "name": "multipathd" + } + ] + }, + "libapparmor1": { + "name": "libapparmor1", + "version": "2.13.3-7ubuntu5.1", + "release": "", + "newVersion": "2.13.3-7ubuntu5.1", + "newRelease": "", + "arch": "", + "repository": "", + "AffectedProcs": [ + { + "pid": "1", + "name": "systemd" + }, + { + "pid": "1334", + "name": "systemd" + }, + { + "pid": "451", + "name": "dbus-daemon" + }, + { + "pid": "1335", + "name": "(sd-pam)" + } + ] + }, + "libappstream4": { + "name": "libappstream4", + "version": "0.12.10-2", + "release": "", + "newVersion": "0.12.10-2", + "newRelease": "", + "arch": "", + "repository": "", + "AffectedProcs": [ + { + "pid": "1677", + "name": "packagekitd" + } + ] + }, + "libapt-pkg6.0": { + "name": "libapt-pkg6.0", + "version": "2.0.4", + "release": "", + "newVersion": "2.0.4", + "newRelease": "", + "arch": "", + "repository": "", + "AffectedProcs": [ + { + "pid": "1677", + "name": "packagekitd" + }, + { + "pid": "626", + "name": "unattended-upgr" + } + ] + }, + "libarchive13": { + "name": "libarchive13", + "version": "3.4.0-2ubuntu1", + "release": "", + "newVersion": "3.4.0-2ubuntu1", + "newRelease": "", + "arch": "", + "repository": "" + }, + "libargon2-1": { + "name": "libargon2-1", + "version": "0~20171227-0.2", + "release": "", + "newVersion": "0~20171227-0.2", + "newRelease": "", + "arch": "", + "repository": "", + "AffectedProcs": [ + { + "pid": "376", + "name": "systemd-network" + }, + { + "pid": "1", + "name": "systemd" + }, + { + "pid": "1334", + "name": "systemd" + }, + { + "pid": "158", + "name": "systemd-journal" + }, + { + "pid": "467", + "name": "systemd-logind" + }, + { + "pid": "302", + "name": "systemd-timesyn" + }, + { + "pid": "379", + "name": "systemd-resolve", + "listenPortStats": [ + { + "bindAddress": "127.0.0.53", + "port": "53", + "portReachableTo": [] + } + ] + }, + { + "pid": "1335", + "name": "(sd-pam)" + } + ] + }, + "libasm1": { + "name": "libasm1", + "version": "0.176-1.1build1", + "release": "", + "newVersion": "0.176-1.1build1", + "newRelease": "", + "arch": "", + "repository": "" + }, + "libasn1-8-heimdal": { + "name": "libasn1-8-heimdal", + "version": "7.7.0+dfsg-1ubuntu1", + "release": "", + "newVersion": "7.7.0+dfsg-1ubuntu1", + "newRelease": "", + "arch": "", + "repository": "" + }, + "libasound2": { + "name": "libasound2", + "version": "1.2.2-2.1ubuntu2.3", + "release": "", + "newVersion": "1.2.2-2.1ubuntu2.3", + "newRelease": "", + "arch": "", + "repository": "" + }, + "libasound2-data": { + "name": "libasound2-data", + "version": "1.2.2-2.1ubuntu2.3", + "release": "", + "newVersion": "1.2.2-2.1ubuntu2.3", + "newRelease": "", + "arch": "", + "repository": "" + }, + "libassuan0": { + "name": "libassuan0", + "version": "2.5.3-7ubuntu2", + "release": "", + "newVersion": "2.5.3-7ubuntu2", + "newRelease": "", + "arch": "", + "repository": "" + }, + "libatm1": { + "name": "libatm1", + "version": "1:2.5.1-4", + "release": "", + "newVersion": "1:2.5.1-4", + "newRelease": "", + "arch": "", + "repository": "" + }, + "libattr1": { + "name": "libattr1", + "version": "1:2.4.48-5", + "release": "", + "newVersion": "1:2.4.48-5", + "newRelease": "", + "arch": "", + "repository": "" + }, + "libaudit-common": { + "name": "libaudit-common", + "version": "1:2.8.5-2ubuntu6", + "release": "", + "newVersion": "1:2.8.5-2ubuntu6", + "newRelease": "", + "arch": "", + "repository": "" + }, + "libaudit1": { + "name": "libaudit1", + "version": "1:2.8.5-2ubuntu6", + "release": "", + "newVersion": "1:2.8.5-2ubuntu6", + "newRelease": "", + "arch": "", + "repository": "" + }, + "libblkid1": { + "name": "libblkid1", + "version": "2.34-0.1ubuntu9.1", + "release": "", + "newVersion": "2.34-0.1ubuntu9.1", + "newRelease": "", + "arch": "", + "repository": "" + }, + "libbrotli1": { + "name": "libbrotli1", + "version": "1.0.7-6ubuntu0.1", + "release": "", + "newVersion": "1.0.7-6ubuntu0.1", + "newRelease": "", + "arch": "", + "repository": "", + "AffectedProcs": [ + { + "pid": "1677", + "name": "packagekitd" + } + ] + }, + "libbsd0": { + "name": "libbsd0", + "version": "0.10.0-1", + "release": "", + "newVersion": "0.10.0-1", + "newRelease": "", + "arch": "", + "repository": "" + }, + "libbz2-1.0": { + "name": "libbz2-1.0", + "version": "1.0.8-2", + "release": "", + "newVersion": "1.0.8-2", + "newRelease": "", + "arch": "", + "repository": "" + }, + "libc-bin": { + "name": "libc-bin", + "version": "2.31-0ubuntu9.2", + "release": "", + "newVersion": "2.31-0ubuntu9.2", + "newRelease": "", + "arch": "", + "repository": "", + "AffectedProcs": [ + { + "pid": "462", + "name": "networkd-dispat" + }, + { + "pid": "1677", + "name": "packagekitd" + }, + { + "pid": "2287", + "name": "bash" + }, + { + "pid": "626", + "name": "unattended-upgr" + }, + { + "pid": "596", + "name": "agetty" + }, + { + "pid": "584", + "name": "agetty" + }, + { + "pid": "442", + "name": "accounts-daemon" + }, + { + "pid": "450", + "name": "cron" + } + ] + }, + "libc6": { + "name": "libc6", + "version": "2.31-0ubuntu9.2", + "release": "", + "newVersion": "2.31-0ubuntu9.2", + "newRelease": "", + "arch": "", + "repository": "", + "AffectedProcs": [ + { + "pid": "462", + "name": "networkd-dispat" + }, + { + "pid": "1677", + "name": "packagekitd" + }, + { + "pid": "2287", + "name": "bash" + }, + { + "pid": "2276", + "name": "bash" + }, + { + "pid": "626", + "name": "unattended-upgr" + }, + { + "pid": "596", + "name": "agetty" + }, + { + "pid": "584", + "name": "agetty" + }, + { + "pid": "442", + "name": "accounts-daemon" + }, + { + "pid": "617", + "name": "polkitd" + }, + { + "pid": "450", + "name": "cron" + }, + { + "pid": "2286", + "name": "su" + } + ] + }, + "libcanberra0": { + "name": "libcanberra0", + "version": "0.30-7ubuntu1", + "release": "", + "newVersion": "0.30-7ubuntu1", + "newRelease": "", + "arch": "", + "repository": "" + }, + "libcap-ng0": { + "name": "libcap-ng0", + "version": "0.7.9-2.1build1", + "release": "", + "newVersion": "0.7.9-2.1build1", + "newRelease": "", + "arch": "", + "repository": "" + }, + "libcap2": { + "name": "libcap2", + "version": "1:2.32-1", + "release": "", + "newVersion": "1:2.32-1", + "newRelease": "", + "arch": "", + "repository": "" + }, + "libcap2-bin": { + "name": "libcap2-bin", + "version": "1:2.32-1", + "release": "", + "newVersion": "1:2.32-1", + "newRelease": "", + "arch": "", + "repository": "" + }, + "libcbor0.6": { + "name": "libcbor0.6", + "version": "0.6.0-0ubuntu1", + "release": "", + "newVersion": "0.6.0-0ubuntu1", + "newRelease": "", + "arch": "", + "repository": "" + }, + "libcom-err2": { + "name": "libcom-err2", + "version": "1.45.5-2ubuntu1", + "release": "", + "newVersion": "1.45.5-2ubuntu1", + "newRelease": "", + "arch": "", + "repository": "" + }, + "libcrypt1": { + "name": "libcrypt1", + "version": "1:4.4.10-10ubuntu4", + "release": "", + "newVersion": "1:4.4.10-10ubuntu4", + "newRelease": "", + "arch": "", + "repository": "" + }, + "libcryptsetup12": { + "name": "libcryptsetup12", + "version": "2:2.2.2-3ubuntu2.3", + "release": "", + "newVersion": "2:2.2.2-3ubuntu2.3", + "newRelease": "", + "arch": "", + "repository": "" + }, + "libcurl3-gnutls": { + "name": "libcurl3-gnutls", + "version": "7.68.0-1ubuntu2.4", + "release": "", + "newVersion": "7.68.0-1ubuntu2.4", + "newRelease": "", + "arch": "", + "repository": "" + }, + "libcurl4": { + "name": "libcurl4", + "version": "7.68.0-1ubuntu2.4", + "release": "", + "newVersion": "7.68.0-1ubuntu2.4", + "newRelease": "", + "arch": "", + "repository": "" + }, + "libdb5.3": { + "name": "libdb5.3", + "version": "5.3.28+dfsg1-0.6ubuntu2", + "release": "", + "newVersion": "5.3.28+dfsg1-0.6ubuntu2", + "newRelease": "", + "arch": "", + "repository": "" + }, + "libdbus-1-3": { + "name": "libdbus-1-3", + "version": "1.12.16-2ubuntu2.1", + "release": "", + "newVersion": "1.12.16-2ubuntu2.1", + "newRelease": "", + "arch": "", + "repository": "" + }, + "libdconf1": { + "name": "libdconf1", + "version": "0.36.0-1", + "release": "", + "newVersion": "0.36.0-1", + "newRelease": "", + "arch": "", + "repository": "" + }, + "libdebconfclient0": { + "name": "libdebconfclient0", + "version": "0.251ubuntu1", + "release": "", + "newVersion": "0.251ubuntu1", + "newRelease": "", + "arch": "", + "repository": "" + }, + "libdevmapper-event1.02.1": { + "name": "libdevmapper-event1.02.1", + "version": "2:1.02.167-1ubuntu1", + "release": "", + "newVersion": "2:1.02.167-1ubuntu1", + "newRelease": "", + "arch": "", + "repository": "" + }, + "libdevmapper1.02.1": { + "name": "libdevmapper1.02.1", + "version": "2:1.02.167-1ubuntu1", + "release": "", + "newVersion": "2:1.02.167-1ubuntu1", + "newRelease": "", + "arch": "", + "repository": "" + }, + "libdns-export1109": { + "name": "libdns-export1109", + "version": "1:9.11.16+dfsg-3~ubuntu1", + "release": "", + "newVersion": "1:9.11.16+dfsg-3~ubuntu1", + "newRelease": "", + "arch": "", + "repository": "" + }, + "libdrm-common": { + "name": "libdrm-common", + "version": "2.4.102-1ubuntu1~20.04.1", + "release": "", + "newVersion": "2.4.102-1ubuntu1~20.04.1", + "newRelease": "", + "arch": "", + "repository": "" + }, + "libdrm2": { + "name": "libdrm2", + "version": "2.4.102-1ubuntu1~20.04.1", + "release": "", + "newVersion": "2.4.102-1ubuntu1~20.04.1", + "newRelease": "", + "arch": "", + "repository": "" + }, + "libdw1": { + "name": "libdw1", + "version": "0.176-1.1build1", + "release": "", + "newVersion": "0.176-1.1build1", + "newRelease": "", + "arch": "", + "repository": "" + }, + "libeatmydata1": { + "name": "libeatmydata1", + "version": "105-7", + "release": "", + "newVersion": "105-7", + "newRelease": "", + "arch": "", + "repository": "" + }, + "libedit2": { + "name": "libedit2", + "version": "3.1-20191231-1", + "release": "", + "newVersion": "3.1-20191231-1", + "newRelease": "", + "arch": "", + "repository": "" + }, + "libefiboot1": { + "name": "libefiboot1", + "version": "37-2ubuntu2.2", + "release": "", + "newVersion": "37-2ubuntu2.2", + "newRelease": "", + "arch": "", + "repository": "" + }, + "libefivar1": { + "name": "libefivar1", + "version": "37-2ubuntu2.2", + "release": "", + "newVersion": "37-2ubuntu2.2", + "newRelease": "", + "arch": "", + "repository": "" + }, + "libelf1": { + "name": "libelf1", + "version": "0.176-1.1build1", + "release": "", + "newVersion": "0.176-1.1build1", + "newRelease": "", + "arch": "", + "repository": "" + }, + "liberror-perl": { + "name": "liberror-perl", + "version": "0.17029-1", + "release": "", + "newVersion": "0.17029-1", + "newRelease": "", + "arch": "", + "repository": "" + }, + "libestr0": { + "name": "libestr0", + "version": "0.1.10-2.1", + "release": "", + "newVersion": "0.1.10-2.1", + "newRelease": "", + "arch": "", + "repository": "", + "AffectedProcs": [ + { + "pid": "464", + "name": "rsyslogd" + } + ] + }, + "libevent-2.1-7": { + "name": "libevent-2.1-7", + "version": "2.1.11-stable-1", + "release": "", + "newVersion": "2.1.11-stable-1", + "newRelease": "", + "arch": "", + "repository": "" + }, + "libexpat1": { + "name": "libexpat1", + "version": "2.2.9-1build1", + "release": "", + "newVersion": "2.2.9-1build1", + "newRelease": "", + "arch": "", + "repository": "" + }, + "libext2fs2": { + "name": "libext2fs2", + "version": "1.45.5-2ubuntu1", + "release": "", + "newVersion": "1.45.5-2ubuntu1", + "newRelease": "", + "arch": "", + "repository": "" + }, + "libfastjson4": { + "name": "libfastjson4", + "version": "0.99.8-2", + "release": "", + "newVersion": "0.99.8-2", + "newRelease": "", + "arch": "", + "repository": "", + "AffectedProcs": [ + { + "pid": "464", + "name": "rsyslogd" + } + ] + }, + "libfdisk1": { + "name": "libfdisk1", + "version": "2.34-0.1ubuntu9.1", + "release": "", + "newVersion": "2.34-0.1ubuntu9.1", + "newRelease": "", + "arch": "", + "repository": "" + }, + "libffi7": { + "name": "libffi7", + "version": "3.3-4", + "release": "", + "newVersion": "3.3-4", + "newRelease": "", + "arch": "", + "repository": "", + "AffectedProcs": [ + { + "pid": "462", + "name": "networkd-dispat" + }, + { + "pid": "1677", + "name": "packagekitd" + }, + { + "pid": "626", + "name": "unattended-upgr" + }, + { + "pid": "442", + "name": "accounts-daemon" + }, + { + "pid": "617", + "name": "polkitd" + }, + { + "pid": "379", + "name": "systemd-resolve", + "listenPortStats": [ + { + "bindAddress": "127.0.0.53", + "port": "53", + "portReachableTo": [] + } + ] + } + ] + }, + "libfido2-1": { + "name": "libfido2-1", + "version": "1.3.1-1ubuntu2", + "release": "", + "newVersion": "1.3.1-1ubuntu2", + "newRelease": "", + "arch": "", + "repository": "" + }, + "libfile-which-perl": { + "name": "libfile-which-perl", + "version": "1.23-1", + "release": "", + "newVersion": "1.23-1", + "newRelease": "", + "arch": "", + "repository": "" + }, + "libfl2": { + "name": "libfl2", + "version": "2.6.4-6.2", + "release": "", + "newVersion": "2.6.4-6.2", + "newRelease": "", + "arch": "", + "repository": "" + }, + "libfreetype6": { + "name": "libfreetype6", + "version": "2.10.1-2ubuntu0.1", + "release": "", + "newVersion": "2.10.1-2ubuntu0.1", + "newRelease": "", + "arch": "", + "repository": "" + }, + "libfribidi0": { + "name": "libfribidi0", + "version": "1.0.8-2", + "release": "", + "newVersion": "1.0.8-2", + "newRelease": "", + "arch": "", + "repository": "" + }, + "libfuse2": { + "name": "libfuse2", + "version": "2.9.9-3", + "release": "", + "newVersion": "2.9.9-3", + "newRelease": "", + "arch": "", + "repository": "" + }, + "libfwupd2": { + "name": "libfwupd2", + "version": "1.3.11-1~focal1", + "release": "", + "newVersion": "1.3.11-1~focal1", + "newRelease": "", + "arch": "", + "repository": "" + }, + "libfwupdplugin1": { + "name": "libfwupdplugin1", + "version": "1.3.11-1~focal1", + "release": "", + "newVersion": "1.3.11-1~focal1", + "newRelease": "", + "arch": "", + "repository": "" + }, + "libgcab-1.0-0": { + "name": "libgcab-1.0-0", + "version": "1.4-1", + "release": "", + "newVersion": "1.4-1", + "newRelease": "", + "arch": "", + "repository": "" + }, + "libgcc-s1": { + "name": "libgcc-s1", + "version": "10.2.0-5ubuntu1~20.04", + "release": "", + "newVersion": "10.2.0-5ubuntu1~20.04", + "newRelease": "", + "arch": "", + "repository": "" + }, + "libgcrypt20": { + "name": "libgcrypt20", + "version": "1.8.5-5ubuntu1", + "release": "", + "newVersion": "1.8.5-5ubuntu1", + "newRelease": "", + "arch": "", + "repository": "", + "AffectedProcs": [ + { + "pid": "462", + "name": "networkd-dispat" + }, + { + "pid": "270", + "name": "multipathd" + }, + { + "pid": "464", + "name": "rsyslogd" + }, + { + "pid": "1677", + "name": "packagekitd" + }, + { + "pid": "376", + "name": "systemd-network" + }, + { + "pid": "1", + "name": "systemd" + }, + { + "pid": "626", + "name": "unattended-upgr" + }, + { + "pid": "1334", + "name": "systemd" + }, + { + "pid": "725", + "name": "sshd", + "listenPortStats": [ + { + "bindAddress": "*", + "port": "22", + "portReachableTo": [] + } + ] + }, + { + "pid": "158", + "name": "systemd-journal" + }, + { + "pid": "1410", + "name": "sshd" + }, + { + "pid": "2196", + "name": "sshd" + }, + { + "pid": "1321", + "name": "sshd" + }, + { + "pid": "2275", + "name": "sshd" + }, + { + "pid": "451", + "name": "dbus-daemon" + }, + { + "pid": "442", + "name": "accounts-daemon" + }, + { + "pid": "617", + "name": "polkitd" + }, + { + "pid": "467", + "name": "systemd-logind" + }, + { + "pid": "302", + "name": "systemd-timesyn" + }, + { + "pid": "379", + "name": "systemd-resolve", + "listenPortStats": [ + { + "bindAddress": "127.0.0.53", + "port": "53", + "portReachableTo": [] + } + ] + }, + { + "pid": "1335", + "name": "(sd-pam)" + } + ] + }, + "libgdbm-compat4": { + "name": "libgdbm-compat4", + "version": "1.18.1-5", + "release": "", + "newVersion": "1.18.1-5", + "newRelease": "", + "arch": "", + "repository": "" + }, + "libgdbm6": { + "name": "libgdbm6", + "version": "1.18.1-5", + "release": "", + "newVersion": "1.18.1-5", + "newRelease": "", + "arch": "", + "repository": "" + }, + "libgirepository-1.0-1": { + "name": "libgirepository-1.0-1", + "version": "1.64.1-1~ubuntu20.04.1", + "release": "", + "newVersion": "1.64.1-1~ubuntu20.04.1", + "newRelease": "", + "arch": "", + "repository": "", + "AffectedProcs": [ + { + "pid": "462", + "name": "networkd-dispat" + }, + { + "pid": "626", + "name": "unattended-upgr" + } + ] + }, + "libglib2.0-0": { + "name": "libglib2.0-0", + "version": "2.64.6-1~ubuntu20.04.1", + "release": "", + "newVersion": "2.64.6-1~ubuntu20.04.3", + "newRelease": "", + "arch": "", + "repository": "focal-updates/main", + "AffectedProcs": [ + { + "pid": "462", + "name": "networkd-dispat" + }, + { + "pid": "1677", + "name": "packagekitd" + }, + { + "pid": "626", + "name": "unattended-upgr" + }, + { + "pid": "442", + "name": "accounts-daemon" + }, + { + "pid": "617", + "name": "polkitd" + } + ] + }, + "libglib2.0-bin": { + "name": "libglib2.0-bin", + "version": "2.64.6-1~ubuntu20.04.1", + "release": "", + "newVersion": "2.64.6-1~ubuntu20.04.3", + "newRelease": "", + "arch": "", + "repository": "focal-updates/main" + }, + "libglib2.0-data": { + "name": "libglib2.0-data", + "version": "2.64.6-1~ubuntu20.04.1", + "release": "", + "newVersion": "2.64.6-1~ubuntu20.04.3", + "newRelease": "", + "arch": "", + "repository": "focal-updates/main" + }, + "libgmp10": { + "name": "libgmp10", + "version": "2:6.2.0+dfsg-4", + "release": "", + "newVersion": "2:6.2.0+dfsg-4", + "newRelease": "", + "arch": "", + "repository": "", + "AffectedProcs": [ + { + "pid": "379", + "name": "systemd-resolve", + "listenPortStats": [ + { + "bindAddress": "127.0.0.53", + "port": "53", + "portReachableTo": [] + } + ] + } + ] + }, + "libgnutls30": { + "name": "libgnutls30", + "version": "3.6.13-2ubuntu1.3", + "release": "", + "newVersion": "3.6.13-2ubuntu1.3", + "newRelease": "", + "arch": "", + "repository": "", + "AffectedProcs": [ + { + "pid": "379", + "name": "systemd-resolve", + "listenPortStats": [ + { + "bindAddress": "127.0.0.53", + "port": "53", + "portReachableTo": [] + } + ] + } + ] + }, + "libgpg-error0": { + "name": "libgpg-error0", + "version": "1.37-1", + "release": "", + "newVersion": "1.37-1", + "newRelease": "", + "arch": "", + "repository": "" + }, + "libgpgme11": { + "name": "libgpgme11", + "version": "1.13.1-7ubuntu2", + "release": "", + "newVersion": "1.13.1-7ubuntu2", + "newRelease": "", + "arch": "", + "repository": "" + }, + "libgpm2": { + "name": "libgpm2", + "version": "1.20.7-5", + "release": "", + "newVersion": "1.20.7-5", + "newRelease": "", + "arch": "", + "repository": "" + }, + "libgssapi-krb5-2": { + "name": "libgssapi-krb5-2", + "version": "1.17-6ubuntu4.1", + "release": "", + "newVersion": "1.17-6ubuntu4.1", + "newRelease": "", + "arch": "", + "repository": "", + "AffectedProcs": [ + { + "pid": "1677", + "name": "packagekitd" + }, + { + "pid": "725", + "name": "sshd", + "listenPortStats": [ + { + "bindAddress": "*", + "port": "22", + "portReachableTo": [] + } + ] + }, + { + "pid": "1410", + "name": "sshd" + }, + { + "pid": "2196", + "name": "sshd" + }, + { + "pid": "1321", + "name": "sshd" + }, + { + "pid": "2275", + "name": "sshd" + } + ] + }, + "libgssapi3-heimdal": { + "name": "libgssapi3-heimdal", + "version": "7.7.0+dfsg-1ubuntu1", + "release": "", + "newVersion": "7.7.0+dfsg-1ubuntu1", + "newRelease": "", + "arch": "", + "repository": "" + }, + "libgstreamer1.0-0": { + "name": "libgstreamer1.0-0", + "version": "1.16.2-2", + "release": "", + "newVersion": "1.16.2-2", + "newRelease": "", + "arch": "", + "repository": "", + "AffectedProcs": [ + { + "pid": "1677", + "name": "packagekitd" + } + ] + }, + "libgudev-1.0-0": { + "name": "libgudev-1.0-0", + "version": "1:233-1", + "release": "", + "newVersion": "1:233-1", + "newRelease": "", + "arch": "", + "repository": "" + }, + "libgusb2": { + "name": "libgusb2", + "version": "0.3.4-0.1", + "release": "", + "newVersion": "0.3.4-0.1", + "newRelease": "", + "arch": "", + "repository": "" + }, + "libhcrypto4-heimdal": { + "name": "libhcrypto4-heimdal", + "version": "7.7.0+dfsg-1ubuntu1", + "release": "", + "newVersion": "7.7.0+dfsg-1ubuntu1", + "newRelease": "", + "arch": "", + "repository": "" + }, + "libheimbase1-heimdal": { + "name": "libheimbase1-heimdal", + "version": "7.7.0+dfsg-1ubuntu1", + "release": "", + "newVersion": "7.7.0+dfsg-1ubuntu1", + "newRelease": "", + "arch": "", + "repository": "" + }, + "libheimntlm0-heimdal": { + "name": "libheimntlm0-heimdal", + "version": "7.7.0+dfsg-1ubuntu1", + "release": "", + "newVersion": "7.7.0+dfsg-1ubuntu1", + "newRelease": "", + "arch": "", + "repository": "" + }, + "libhogweed5": { + "name": "libhogweed5", + "version": "3.5.1+really3.5.1-2", + "release": "", + "newVersion": "3.5.1+really3.5.1-2", + "newRelease": "", + "arch": "", + "repository": "", + "AffectedProcs": [ + { + "pid": "379", + "name": "systemd-resolve", + "listenPortStats": [ + { + "bindAddress": "127.0.0.53", + "port": "53", + "portReachableTo": [] + } + ] + } + ] + }, + "libhx509-5-heimdal": { + "name": "libhx509-5-heimdal", + "version": "7.7.0+dfsg-1ubuntu1", + "release": "", + "newVersion": "7.7.0+dfsg-1ubuntu1", + "newRelease": "", + "arch": "", + "repository": "" + }, + "libicu66": { + "name": "libicu66", + "version": "66.1-2ubuntu2", + "release": "", + "newVersion": "66.1-2ubuntu2", + "newRelease": "", + "arch": "", + "repository": "", + "AffectedProcs": [ + { + "pid": "1677", + "name": "packagekitd" + } + ] + }, + "libidn2-0": { + "name": "libidn2-0", + "version": "2.2.0-2", + "release": "", + "newVersion": "2.2.0-2", + "newRelease": "", + "arch": "", + "repository": "", + "AffectedProcs": [ + { + "pid": "1677", + "name": "packagekitd" + }, + { + "pid": "376", + "name": "systemd-network" + }, + { + "pid": "1", + "name": "systemd" + }, + { + "pid": "1334", + "name": "systemd" + }, + { + "pid": "158", + "name": "systemd-journal" + }, + { + "pid": "467", + "name": "systemd-logind" + }, + { + "pid": "302", + "name": "systemd-timesyn" + }, + { + "pid": "379", + "name": "systemd-resolve", + "listenPortStats": [ + { + "bindAddress": "127.0.0.53", + "port": "53", + "portReachableTo": [] + } + ] + }, + { + "pid": "1335", + "name": "(sd-pam)" + } + ] + }, + "libip4tc2": { + "name": "libip4tc2", + "version": "1.8.4-3ubuntu2", + "release": "", + "newVersion": "1.8.4-3ubuntu2", + "newRelease": "", + "arch": "", + "repository": "", + "AffectedProcs": [ + { + "pid": "376", + "name": "systemd-network" + }, + { + "pid": "1", + "name": "systemd" + }, + { + "pid": "1334", + "name": "systemd" + }, + { + "pid": "158", + "name": "systemd-journal" + }, + { + "pid": "467", + "name": "systemd-logind" + }, + { + "pid": "302", + "name": "systemd-timesyn" + }, + { + "pid": "379", + "name": "systemd-resolve", + "listenPortStats": [ + { + "bindAddress": "127.0.0.53", + "port": "53", + "portReachableTo": [] + } + ] + }, + { + "pid": "1335", + "name": "(sd-pam)" + } + ] + }, + "libip6tc2": { + "name": "libip6tc2", + "version": "1.8.4-3ubuntu2", + "release": "", + "newVersion": "1.8.4-3ubuntu2", + "newRelease": "", + "arch": "", + "repository": "" + }, + "libipc-system-simple-perl": { + "name": "libipc-system-simple-perl", + "version": "1.26-1", + "release": "", + "newVersion": "1.26-1", + "newRelease": "", + "arch": "", + "repository": "" + }, + "libisc-export1105": { + "name": "libisc-export1105", + "version": "1:9.11.16+dfsg-3~ubuntu1", + "release": "", + "newVersion": "1:9.11.16+dfsg-3~ubuntu1", + "newRelease": "", + "arch": "", + "repository": "" + }, + "libisns0": { + "name": "libisns0", + "version": "0.97-3", + "release": "", + "newVersion": "0.97-3", + "newRelease": "", + "arch": "", + "repository": "" + }, + "libjson-c4": { + "name": "libjson-c4", + "version": "0.13.1+dfsg-7ubuntu0.3", + "release": "", + "newVersion": "0.13.1+dfsg-7ubuntu0.3", + "newRelease": "", + "arch": "", + "repository": "", + "AffectedProcs": [ + { + "pid": "376", + "name": "systemd-network" + }, + { + "pid": "1", + "name": "systemd" + }, + { + "pid": "1334", + "name": "systemd" + }, + { + "pid": "158", + "name": "systemd-journal" + }, + { + "pid": "467", + "name": "systemd-logind" + }, + { + "pid": "302", + "name": "systemd-timesyn" + }, + { + "pid": "379", + "name": "systemd-resolve", + "listenPortStats": [ + { + "bindAddress": "127.0.0.53", + "port": "53", + "portReachableTo": [] + } + ] + }, + { + "pid": "1335", + "name": "(sd-pam)" + } + ] + }, + "libjson-glib-1.0-0": { + "name": "libjson-glib-1.0-0", + "version": "1.4.4-2ubuntu2", + "release": "", + "newVersion": "1.4.4-2ubuntu2", + "newRelease": "", + "arch": "", + "repository": "" + }, + "libjson-glib-1.0-common": { + "name": "libjson-glib-1.0-common", + "version": "1.4.4-2ubuntu2", + "release": "", + "newVersion": "1.4.4-2ubuntu2", + "newRelease": "", + "arch": "", + "repository": "" + }, + "libk5crypto3": { + "name": "libk5crypto3", + "version": "1.17-6ubuntu4.1", + "release": "", + "newVersion": "1.17-6ubuntu4.1", + "newRelease": "", + "arch": "", + "repository": "", + "AffectedProcs": [ + { + "pid": "1677", + "name": "packagekitd" + }, + { + "pid": "725", + "name": "sshd", + "listenPortStats": [ + { + "bindAddress": "*", + "port": "22", + "portReachableTo": [] + } + ] + }, + { + "pid": "1410", + "name": "sshd" + }, + { + "pid": "2196", + "name": "sshd" + }, + { + "pid": "1321", + "name": "sshd" + }, + { + "pid": "2275", + "name": "sshd" + } + ] + }, + "libkeyutils1": { + "name": "libkeyutils1", + "version": "1.6-6ubuntu1", + "release": "", + "newVersion": "1.6-6ubuntu1", + "newRelease": "", + "arch": "", + "repository": "" + }, + "libklibc": { + "name": "libklibc", + "version": "2.0.7-1ubuntu5", + "release": "", + "newVersion": "2.0.7-1ubuntu5", + "newRelease": "", + "arch": "", + "repository": "" + }, + "libkmod2": { + "name": "libkmod2", + "version": "27-1ubuntu2", + "release": "", + "newVersion": "27-1ubuntu2", + "newRelease": "", + "arch": "", + "repository": "", + "AffectedProcs": [ + { + "pid": "191", + "name": "systemd-udevd" + }, + { + "pid": "376", + "name": "systemd-network" + }, + { + "pid": "1", + "name": "systemd" + }, + { + "pid": "1334", + "name": "systemd" + }, + { + "pid": "158", + "name": "systemd-journal" + }, + { + "pid": "467", + "name": "systemd-logind" + }, + { + "pid": "302", + "name": "systemd-timesyn" + }, + { + "pid": "379", + "name": "systemd-resolve", + "listenPortStats": [ + { + "bindAddress": "127.0.0.53", + "port": "53", + "portReachableTo": [] + } + ] + }, + { + "pid": "1335", + "name": "(sd-pam)" + } + ] + }, + "libkrb5-26-heimdal": { + "name": "libkrb5-26-heimdal", + "version": "7.7.0+dfsg-1ubuntu1", + "release": "", + "newVersion": "7.7.0+dfsg-1ubuntu1", + "newRelease": "", + "arch": "", + "repository": "" + }, + "libkrb5-3": { + "name": "libkrb5-3", + "version": "1.17-6ubuntu4.1", + "release": "", + "newVersion": "1.17-6ubuntu4.1", + "newRelease": "", + "arch": "", + "repository": "", + "AffectedProcs": [ + { + "pid": "1677", + "name": "packagekitd" + }, + { + "pid": "725", + "name": "sshd", + "listenPortStats": [ + { + "bindAddress": "*", + "port": "22", + "portReachableTo": [] + } + ] + }, + { + "pid": "1410", + "name": "sshd" + }, + { + "pid": "2196", + "name": "sshd" + }, + { + "pid": "1321", + "name": "sshd" + }, + { + "pid": "2275", + "name": "sshd" + } + ] + }, + "libkrb5support0": { + "name": "libkrb5support0", + "version": "1.17-6ubuntu4.1", + "release": "", + "newVersion": "1.17-6ubuntu4.1", + "newRelease": "", + "arch": "", + "repository": "", + "AffectedProcs": [ + { + "pid": "1677", + "name": "packagekitd" + }, + { + "pid": "725", + "name": "sshd", + "listenPortStats": [ + { + "bindAddress": "*", + "port": "22", + "portReachableTo": [] + } + ] + }, + { + "pid": "1410", + "name": "sshd" + }, + { + "pid": "2196", + "name": "sshd" + }, + { + "pid": "1321", + "name": "sshd" + }, + { + "pid": "2275", + "name": "sshd" + } + ] + }, + "libksba8": { + "name": "libksba8", + "version": "1.3.5-2", + "release": "", + "newVersion": "1.3.5-2", + "newRelease": "", + "arch": "", + "repository": "" + }, + "libldap-2.4-2": { + "name": "libldap-2.4-2", + "version": "2.4.49+dfsg-2ubuntu1.7", + "release": "", + "newVersion": "2.4.49+dfsg-2ubuntu1.7", + "newRelease": "", + "arch": "", + "repository": "" + }, + "libldap-common": { + "name": "libldap-common", + "version": "2.4.49+dfsg-2ubuntu1.7", + "release": "", + "newVersion": "2.4.49+dfsg-2ubuntu1.7", + "newRelease": "", + "arch": "", + "repository": "" + }, + "liblmdb0": { + "name": "liblmdb0", + "version": "0.9.24-1", + "release": "", + "newVersion": "0.9.24-1", + "newRelease": "", + "arch": "", + "repository": "", + "AffectedProcs": [ + { + "pid": "1677", + "name": "packagekitd" + } + ] + }, + "liblocale-gettext-perl": { + "name": "liblocale-gettext-perl", + "version": "1.07-4", + "release": "", + "newVersion": "1.07-4", + "newRelease": "", + "arch": "", + "repository": "" + }, + "libltdl7": { + "name": "libltdl7", + "version": "2.4.6-14", + "release": "", + "newVersion": "2.4.6-14", + "newRelease": "", + "arch": "", + "repository": "" + }, + "liblvm2cmd2.03": { + "name": "liblvm2cmd2.03", + "version": "2.03.07-1ubuntu1", + "release": "", + "newVersion": "2.03.07-1ubuntu1", + "newRelease": "", + "arch": "", + "repository": "" + }, + "liblz4-1": { + "name": "liblz4-1", + "version": "1.9.2-2", + "release": "", + "newVersion": "1.9.2-2", + "newRelease": "", + "arch": "", + "repository": "", + "AffectedProcs": [ + { + "pid": "462", + "name": "networkd-dispat" + }, + { + "pid": "270", + "name": "multipathd" + }, + { + "pid": "464", + "name": "rsyslogd" + }, + { + "pid": "1677", + "name": "packagekitd" + }, + { + "pid": "376", + "name": "systemd-network" + }, + { + "pid": "1", + "name": "systemd" + }, + { + "pid": "626", + "name": "unattended-upgr" + }, + { + "pid": "1334", + "name": "systemd" + }, + { + "pid": "725", + "name": "sshd", + "listenPortStats": [ + { + "bindAddress": "*", + "port": "22", + "portReachableTo": [] + } + ] + }, + { + "pid": "158", + "name": "systemd-journal" + }, + { + "pid": "1410", + "name": "sshd" + }, + { + "pid": "2196", + "name": "sshd" + }, + { + "pid": "1321", + "name": "sshd" + }, + { + "pid": "2275", + "name": "sshd" + }, + { + "pid": "451", + "name": "dbus-daemon" + }, + { + "pid": "442", + "name": "accounts-daemon" + }, + { + "pid": "617", + "name": "polkitd" + }, + { + "pid": "467", + "name": "systemd-logind" + }, + { + "pid": "302", + "name": "systemd-timesyn" + }, + { + "pid": "379", + "name": "systemd-resolve", + "listenPortStats": [ + { + "bindAddress": "127.0.0.53", + "port": "53", + "portReachableTo": [] + } + ] + }, + { + "pid": "1335", + "name": "(sd-pam)" + } + ] + }, + "liblzma5": { + "name": "liblzma5", + "version": "5.2.4-1ubuntu1", + "release": "", + "newVersion": "5.2.4-1ubuntu1", + "newRelease": "", + "arch": "", + "repository": "" + }, + "liblzo2-2": { + "name": "liblzo2-2", + "version": "2.10-2", + "release": "", + "newVersion": "2.10-2", + "newRelease": "", + "arch": "", + "repository": "" + }, + "libmagic-mgc": { + "name": "libmagic-mgc", + "version": "1:5.38-4", + "release": "", + "newVersion": "1:5.38-4", + "newRelease": "", + "arch": "", + "repository": "" + }, + "libmagic1": { + "name": "libmagic1", + "version": "1:5.38-4", + "release": "", + "newVersion": "1:5.38-4", + "newRelease": "", + "arch": "", + "repository": "" + }, + "libmaxminddb0": { + "name": "libmaxminddb0", + "version": "1.4.2-0ubuntu1.20.04.1", + "release": "", + "newVersion": "1.4.2-0ubuntu1.20.04.1", + "newRelease": "", + "arch": "", + "repository": "" + }, + "libmnl0": { + "name": "libmnl0", + "version": "1.0.4-2", + "release": "", + "newVersion": "1.0.4-2", + "newRelease": "", + "arch": "", + "repository": "" + }, + "libmount1": { + "name": "libmount1", + "version": "2.34-0.1ubuntu9.1", + "release": "", + "newVersion": "2.34-0.1ubuntu9.1", + "newRelease": "", + "arch": "", + "repository": "" + }, + "libmpdec2": { + "name": "libmpdec2", + "version": "2.4.2-3", + "release": "", + "newVersion": "2.4.2-3", + "newRelease": "", + "arch": "", + "repository": "" + }, + "libmpfr6": { + "name": "libmpfr6", + "version": "4.0.2-1", + "release": "", + "newVersion": "4.0.2-1", + "newRelease": "", + "arch": "", + "repository": "" + }, + "libmspack0": { + "name": "libmspack0", + "version": "0.10.1-2", + "release": "", + "newVersion": "0.10.1-2", + "newRelease": "", + "arch": "", + "repository": "" + }, + "libncurses6": { + "name": "libncurses6", + "version": "6.2-0ubuntu2", + "release": "", + "newVersion": "6.2-0ubuntu2", + "newRelease": "", + "arch": "", + "repository": "" + }, + "libncursesw6": { + "name": "libncursesw6", + "version": "6.2-0ubuntu2", + "release": "", + "newVersion": "6.2-0ubuntu2", + "newRelease": "", + "arch": "", + "repository": "" + }, + "libnetfilter-conntrack3": { + "name": "libnetfilter-conntrack3", + "version": "1.0.7-2", + "release": "", + "newVersion": "1.0.7-2", + "newRelease": "", + "arch": "", + "repository": "" + }, + "libnetplan0": { + "name": "libnetplan0", + "version": "0.101-0ubuntu3~20.04.2", + "release": "", + "newVersion": "0.101-0ubuntu3~20.04.2", + "newRelease": "", + "arch": "", + "repository": "" + }, + "libnettle7": { + "name": "libnettle7", + "version": "3.5.1+really3.5.1-2", + "release": "", + "newVersion": "3.5.1+really3.5.1-2", + "newRelease": "", + "arch": "", + "repository": "", + "AffectedProcs": [ + { + "pid": "379", + "name": "systemd-resolve", + "listenPortStats": [ + { + "bindAddress": "127.0.0.53", + "port": "53", + "portReachableTo": [] + } + ] + } + ] + }, + "libnewt0.52": { + "name": "libnewt0.52", + "version": "0.52.21-4ubuntu2", + "release": "", + "newVersion": "0.52.21-4ubuntu2", + "newRelease": "", + "arch": "", + "repository": "" + }, + "libnfnetlink0": { + "name": "libnfnetlink0", + "version": "1.0.1-3build1", + "release": "", + "newVersion": "1.0.1-3build1", + "newRelease": "", + "arch": "", + "repository": "" + }, + "libnftnl11": { + "name": "libnftnl11", + "version": "1.1.5-1", + "release": "", + "newVersion": "1.1.5-1", + "newRelease": "", + "arch": "", + "repository": "" + }, + "libnghttp2-14": { + "name": "libnghttp2-14", + "version": "1.40.0-1build1", + "release": "", + "newVersion": "1.40.0-1build1", + "newRelease": "", + "arch": "", + "repository": "" + }, + "libnpth0": { + "name": "libnpth0", + "version": "1.6-1", + "release": "", + "newVersion": "1.6-1", + "newRelease": "", + "arch": "", + "repository": "" + }, + "libnss-systemd": { + "name": "libnss-systemd", + "version": "245.4-4ubuntu3.4", + "release": "", + "newVersion": "245.4-4ubuntu3.5", + "newRelease": "", + "arch": "", + "repository": "focal-updates/main" + }, + "libntfs-3g883": { + "name": "libntfs-3g883", + "version": "1:2017.3.23AR.3-3ubuntu1", + "release": "", + "newVersion": "1:2017.3.23AR.3-3ubuntu1", + "newRelease": "", + "arch": "", + "repository": "" + }, + "libnuma1": { + "name": "libnuma1", + "version": "2.0.12-1", + "release": "", + "newVersion": "2.0.12-1", + "newRelease": "", + "arch": "", + "repository": "" + }, + "libogg0": { + "name": "libogg0", + "version": "1.3.4-0ubuntu1", + "release": "", + "newVersion": "1.3.4-0ubuntu1", + "newRelease": "", + "arch": "", + "repository": "" + }, + "libp11-kit0": { + "name": "libp11-kit0", + "version": "0.23.20-1ubuntu0.1", + "release": "", + "newVersion": "0.23.20-1ubuntu0.1", + "newRelease": "", + "arch": "", + "repository": "", + "AffectedProcs": [ + { + "pid": "379", + "name": "systemd-resolve", + "listenPortStats": [ + { + "bindAddress": "127.0.0.53", + "port": "53", + "portReachableTo": [] + } + ] + } + ] + }, + "libpackagekit-glib2-18": { + "name": "libpackagekit-glib2-18", + "version": "1.1.13-2ubuntu1.1", + "release": "", + "newVersion": "1.1.13-2ubuntu1.1", + "newRelease": "", + "arch": "", + "repository": "", + "AffectedProcs": [ + { + "pid": "1677", + "name": "packagekitd" + } + ] + }, + "libpam-cap": { + "name": "libpam-cap", + "version": "1:2.32-1", + "release": "", + "newVersion": "1:2.32-1", + "newRelease": "", + "arch": "", + "repository": "" + }, + "libpam-modules": { + "name": "libpam-modules", + "version": "1.3.1-5ubuntu4.1", + "release": "", + "newVersion": "1.3.1-5ubuntu4.1", + "newRelease": "", + "arch": "", + "repository": "" + }, + "libpam-modules-bin": { + "name": "libpam-modules-bin", + "version": "1.3.1-5ubuntu4.1", + "release": "", + "newVersion": "1.3.1-5ubuntu4.1", + "newRelease": "", + "arch": "", + "repository": "" + }, + "libpam-runtime": { + "name": "libpam-runtime", + "version": "1.3.1-5ubuntu4.1", + "release": "", + "newVersion": "1.3.1-5ubuntu4.1", + "newRelease": "", + "arch": "", + "repository": "" + }, + "libpam-systemd": { + "name": "libpam-systemd", + "version": "245.4-4ubuntu3.4", + "release": "", + "newVersion": "245.4-4ubuntu3.5", + "newRelease": "", + "arch": "", + "repository": "focal-updates/main" + }, + "libpam0g": { + "name": "libpam0g", + "version": "1.3.1-5ubuntu4.1", + "release": "", + "newVersion": "1.3.1-5ubuntu4.1", + "newRelease": "", + "arch": "", + "repository": "" + }, + "libparted2": { + "name": "libparted2", + "version": "3.3-4ubuntu0.20.04.1", + "release": "", + "newVersion": "3.3-4ubuntu0.20.04.1", + "newRelease": "", + "arch": "", + "repository": "" + }, + "libpcap0.8": { + "name": "libpcap0.8", + "version": "1.9.1-3", + "release": "", + "newVersion": "1.9.1-3", + "newRelease": "", + "arch": "", + "repository": "" + }, + "libpci3": { + "name": "libpci3", + "version": "1:3.6.4-1", + "release": "", + "newVersion": "1:3.6.4-1", + "newRelease": "", + "arch": "", + "repository": "" + }, + "libpcre2-8-0": { + "name": "libpcre2-8-0", + "version": "10.34-7", + "release": "", + "newVersion": "10.34-7", + "newRelease": "", + "arch": "", + "repository": "", + "AffectedProcs": [ + { + "pid": "191", + "name": "systemd-udevd" + }, + { + "pid": "462", + "name": "networkd-dispat" + }, + { + "pid": "270", + "name": "multipathd" + }, + { + "pid": "1677", + "name": "packagekitd" + }, + { + "pid": "2285", + "name": "sudo" + }, + { + "pid": "376", + "name": "systemd-network" + }, + { + "pid": "1", + "name": "systemd" + }, + { + "pid": "474", + "name": "atd" + }, + { + "pid": "626", + "name": "unattended-upgr" + }, + { + "pid": "1334", + "name": "systemd" + }, + { + "pid": "725", + "name": "sshd", + "listenPortStats": [ + { + "bindAddress": "*", + "port": "22", + "portReachableTo": [] + } + ] + }, + { + "pid": "158", + "name": "systemd-journal" + }, + { + "pid": "1410", + "name": "sshd" + }, + { + "pid": "2196", + "name": "sshd" + }, + { + "pid": "1321", + "name": "sshd" + }, + { + "pid": "2275", + "name": "sshd" + }, + { + "pid": "451", + "name": "dbus-daemon" + }, + { + "pid": "442", + "name": "accounts-daemon" + }, + { + "pid": "617", + "name": "polkitd" + }, + { + "pid": "467", + "name": "systemd-logind" + }, + { + "pid": "302", + "name": "systemd-timesyn" + }, + { + "pid": "450", + "name": "cron" + }, + { + "pid": "379", + "name": "systemd-resolve", + "listenPortStats": [ + { + "bindAddress": "127.0.0.53", + "port": "53", + "portReachableTo": [] + } + ] + }, + { + "pid": "1335", + "name": "(sd-pam)" + }, + { + "pid": "2286", + "name": "su" + } + ] + }, + "libpcre3": { + "name": "libpcre3", + "version": "2:8.39-12build1", + "release": "", + "newVersion": "2:8.39-12build1", + "newRelease": "", + "arch": "", + "repository": "" + }, + "libperl5.30": { + "name": "libperl5.30", + "version": "5.30.0-9ubuntu0.2", + "release": "", + "newVersion": "5.30.0-9ubuntu0.2", + "newRelease": "", + "arch": "", + "repository": "" + }, + "libpipeline1": { + "name": "libpipeline1", + "version": "1.5.2-2build1", + "release": "", + "newVersion": "1.5.2-2build1", + "newRelease": "", + "arch": "", + "repository": "" + }, + "libplymouth5": { + "name": "libplymouth5", + "version": "0.9.4git20200323-0ubuntu6.2", + "release": "", + "newVersion": "0.9.4git20200323-0ubuntu6.2", + "newRelease": "", + "arch": "", + "repository": "" + }, + "libpng16-16": { + "name": "libpng16-16", + "version": "1.6.37-2", + "release": "", + "newVersion": "1.6.37-2", + "newRelease": "", + "arch": "", + "repository": "" + }, + "libpolkit-agent-1-0": { + "name": "libpolkit-agent-1-0", + "version": "0.105-26ubuntu1", + "release": "", + "newVersion": "0.105-26ubuntu1", + "newRelease": "", + "arch": "", + "repository": "" + }, + "libpolkit-gobject-1-0": { + "name": "libpolkit-gobject-1-0", + "version": "0.105-26ubuntu1", + "release": "", + "newVersion": "0.105-26ubuntu1", + "newRelease": "", + "arch": "", + "repository": "", + "AffectedProcs": [ + { + "pid": "1677", + "name": "packagekitd" + }, + { + "pid": "442", + "name": "accounts-daemon" + }, + { + "pid": "617", + "name": "polkitd" + } + ] + }, + "libpopt0": { + "name": "libpopt0", + "version": "1.16-14", + "release": "", + "newVersion": "1.16-14", + "newRelease": "", + "arch": "", + "repository": "" + }, + "libprocps8": { + "name": "libprocps8", + "version": "2:3.3.16-1ubuntu2", + "release": "", + "newVersion": "2:3.3.16-1ubuntu2", + "newRelease": "", + "arch": "", + "repository": "" + }, + "libproxy1v5": { + "name": "libproxy1v5", + "version": "0.4.15-10ubuntu1.2", + "release": "", + "newVersion": "0.4.15-10ubuntu1.2", + "newRelease": "", + "arch": "", + "repository": "", + "AffectedProcs": [ + { + "pid": "1677", + "name": "packagekitd" + }, + { + "pid": "442", + "name": "accounts-daemon" + }, + { + "pid": "617", + "name": "polkitd" + } + ] + }, + "libpsl5": { + "name": "libpsl5", + "version": "0.21.0-1ubuntu1", + "release": "", + "newVersion": "0.21.0-1ubuntu1", + "newRelease": "", + "arch": "", + "repository": "", + "AffectedProcs": [ + { + "pid": "1677", + "name": "packagekitd" + } + ] + }, + "libpython3-stdlib": { + "name": "libpython3-stdlib", + "version": "3.8.2-0ubuntu2", + "release": "", + "newVersion": "3.8.2-0ubuntu2", + "newRelease": "", + "arch": "", + "repository": "" + }, + "libpython3.8": { + "name": "libpython3.8", + "version": "3.8.5-1~20.04", + "release": "", + "newVersion": "3.8.5-1~20.04.2", + "newRelease": "", + "arch": "", + "repository": "focal-updates/main" + }, + "libpython3.8-minimal": { + "name": "libpython3.8-minimal", + "version": "3.8.5-1~20.04", + "release": "", + "newVersion": "3.8.5-1~20.04.2", + "newRelease": "", + "arch": "", + "repository": "focal-updates/main" + }, + "libpython3.8-stdlib": { + "name": "libpython3.8-stdlib", + "version": "3.8.5-1~20.04", + "release": "", + "newVersion": "3.8.5-1~20.04.2", + "newRelease": "", + "arch": "", + "repository": "focal-updates/main", + "AffectedProcs": [ + { + "pid": "462", + "name": "networkd-dispat" + }, + { + "pid": "626", + "name": "unattended-upgr" + } + ] + }, + "libreadline5": { + "name": "libreadline5", + "version": "5.2+dfsg-3build3", + "release": "", + "newVersion": "5.2+dfsg-3build3", + "newRelease": "", + "arch": "", + "repository": "" + }, + "libreadline8": { + "name": "libreadline8", + "version": "8.0-4", + "release": "", + "newVersion": "8.0-4", + "newRelease": "", + "arch": "", + "repository": "" + }, + "libroken18-heimdal": { + "name": "libroken18-heimdal", + "version": "7.7.0+dfsg-1ubuntu1", + "release": "", + "newVersion": "7.7.0+dfsg-1ubuntu1", + "newRelease": "", + "arch": "", + "repository": "" + }, + "librtmp1": { + "name": "librtmp1", + "version": "2.4+20151223.gitfa8646d.1-2build1", + "release": "", + "newVersion": "2.4+20151223.gitfa8646d.1-2build1", + "newRelease": "", + "arch": "", + "repository": "" + }, + "libsasl2-2": { + "name": "libsasl2-2", + "version": "2.1.27+dfsg-2", + "release": "", + "newVersion": "2.1.27+dfsg-2", + "newRelease": "", + "arch": "", + "repository": "" + }, + "libsasl2-modules": { + "name": "libsasl2-modules", + "version": "2.1.27+dfsg-2", + "release": "", + "newVersion": "2.1.27+dfsg-2", + "newRelease": "", + "arch": "", + "repository": "" + }, + "libsasl2-modules-db": { + "name": "libsasl2-modules-db", + "version": "2.1.27+dfsg-2", + "release": "", + "newVersion": "2.1.27+dfsg-2", + "newRelease": "", + "arch": "", + "repository": "" + }, + "libseccomp2": { + "name": "libseccomp2", + "version": "2.4.3-1ubuntu3.20.04.3", + "release": "", + "newVersion": "2.4.3-1ubuntu3.20.04.3", + "newRelease": "", + "arch": "", + "repository": "", + "AffectedProcs": [ + { + "pid": "376", + "name": "systemd-network" + }, + { + "pid": "1", + "name": "systemd" + }, + { + "pid": "1334", + "name": "systemd" + }, + { + "pid": "158", + "name": "systemd-journal" + }, + { + "pid": "467", + "name": "systemd-logind" + }, + { + "pid": "302", + "name": "systemd-timesyn" + }, + { + "pid": "379", + "name": "systemd-resolve", + "listenPortStats": [ + { + "bindAddress": "127.0.0.53", + "port": "53", + "portReachableTo": [] + } + ] + }, + { + "pid": "1335", + "name": "(sd-pam)" + } + ] + }, + "libselinux1": { + "name": "libselinux1", + "version": "3.0-1build2", + "release": "", + "newVersion": "3.0-1build2", + "newRelease": "", + "arch": "", + "repository": "" + }, + "libsemanage-common": { + "name": "libsemanage-common", + "version": "3.0-1build2", + "release": "", + "newVersion": "3.0-1build2", + "newRelease": "", + "arch": "", + "repository": "" + }, + "libsemanage1": { + "name": "libsemanage1", + "version": "3.0-1build2", + "release": "", + "newVersion": "3.0-1build2", + "newRelease": "", + "arch": "", + "repository": "" + }, + "libsepol1": { + "name": "libsepol1", + "version": "3.0-1", + "release": "", + "newVersion": "3.0-1", + "newRelease": "", + "arch": "", + "repository": "" + }, + "libsgutils2-2": { + "name": "libsgutils2-2", + "version": "1.44-1ubuntu2", + "release": "", + "newVersion": "1.44-1ubuntu2", + "newRelease": "", + "arch": "", + "repository": "" + }, + "libsigsegv2": { + "name": "libsigsegv2", + "version": "2.12-2", + "release": "", + "newVersion": "2.12-2", + "newRelease": "", + "arch": "", + "repository": "" + }, + "libslang2": { + "name": "libslang2", + "version": "2.3.2-4", + "release": "", + "newVersion": "2.3.2-4", + "newRelease": "", + "arch": "", + "repository": "" + }, + "libsmartcols1": { + "name": "libsmartcols1", + "version": "2.34-0.1ubuntu9.1", + "release": "", + "newVersion": "2.34-0.1ubuntu9.1", + "newRelease": "", + "arch": "", + "repository": "" + }, + "libsmbios-c2": { + "name": "libsmbios-c2", + "version": "2.4.3-1", + "release": "", + "newVersion": "2.4.3-1", + "newRelease": "", + "arch": "", + "repository": "" + }, + "libsodium23": { + "name": "libsodium23", + "version": "1.0.18-1", + "release": "", + "newVersion": "1.0.18-1", + "newRelease": "", + "arch": "", + "repository": "" + }, + "libsoup2.4-1": { + "name": "libsoup2.4-1", + "version": "2.70.0-1", + "release": "", + "newVersion": "2.70.0-1", + "newRelease": "", + "arch": "", + "repository": "", + "AffectedProcs": [ + { + "pid": "1677", + "name": "packagekitd" + } + ] + }, + "libsqlite3-0": { + "name": "libsqlite3-0", + "version": "3.31.1-4ubuntu0.2", + "release": "", + "newVersion": "3.31.1-4ubuntu0.2", + "newRelease": "", + "arch": "", + "repository": "", + "AffectedProcs": [ + { + "pid": "1677", + "name": "packagekitd" + } + ] + }, + "libss2": { + "name": "libss2", + "version": "1.45.5-2ubuntu1", + "release": "", + "newVersion": "1.45.5-2ubuntu1", + "newRelease": "", + "arch": "", + "repository": "" + }, + "libssh-4": { + "name": "libssh-4", + "version": "0.9.3-2ubuntu2.1", + "release": "", + "newVersion": "0.9.3-2ubuntu2.1", + "newRelease": "", + "arch": "", + "repository": "" + }, + "libssl1.1": { + "name": "libssl1.1", + "version": "1.1.1f-1ubuntu2.2", + "release": "", + "newVersion": "1.1.1f-1ubuntu2.2", + "newRelease": "", + "arch": "", + "repository": "", + "AffectedProcs": [ + { + "pid": "191", + "name": "systemd-udevd" + }, + { + "pid": "376", + "name": "systemd-network" + }, + { + "pid": "1", + "name": "systemd" + }, + { + "pid": "1334", + "name": "systemd" + }, + { + "pid": "725", + "name": "sshd", + "listenPortStats": [ + { + "bindAddress": "*", + "port": "22", + "portReachableTo": [] + } + ] + }, + { + "pid": "158", + "name": "systemd-journal" + }, + { + "pid": "1410", + "name": "sshd" + }, + { + "pid": "2196", + "name": "sshd" + }, + { + "pid": "1321", + "name": "sshd" + }, + { + "pid": "2275", + "name": "sshd" + }, + { + "pid": "467", + "name": "systemd-logind" + }, + { + "pid": "302", + "name": "systemd-timesyn" + }, + { + "pid": "379", + "name": "systemd-resolve", + "listenPortStats": [ + { + "bindAddress": "127.0.0.53", + "port": "53", + "portReachableTo": [] + } + ] + }, + { + "pid": "1335", + "name": "(sd-pam)" + } + ] + }, + "libstdc++6": { + "name": "libstdc++6", + "version": "10.2.0-5ubuntu1~20.04", + "release": "", + "newVersion": "10.2.0-5ubuntu1~20.04", + "newRelease": "", + "arch": "", + "repository": "", + "AffectedProcs": [ + { + "pid": "1677", + "name": "packagekitd" + }, + { + "pid": "626", + "name": "unattended-upgr" + }, + { + "pid": "442", + "name": "accounts-daemon" + }, + { + "pid": "617", + "name": "polkitd" + } + ] + }, + "libstemmer0d": { + "name": "libstemmer0d", + "version": "0+svn585-2", + "release": "", + "newVersion": "0+svn585-2", + "newRelease": "", + "arch": "", + "repository": "", + "AffectedProcs": [ + { + "pid": "1677", + "name": "packagekitd" + } + ] + }, + "libsystemd0": { + "name": "libsystemd0", + "version": "245.4-4ubuntu3.4", + "release": "", + "newVersion": "245.4-4ubuntu3.5", + "newRelease": "", + "arch": "", + "repository": "focal-updates/main" + }, + "libtasn1-6": { + "name": "libtasn1-6", + "version": "4.16.0-2", + "release": "", + "newVersion": "4.16.0-2", + "newRelease": "", + "arch": "", + "repository": "", + "AffectedProcs": [ + { + "pid": "379", + "name": "systemd-resolve", + "listenPortStats": [ + { + "bindAddress": "127.0.0.53", + "port": "53", + "portReachableTo": [] + } + ] + } + ] + }, + "libtdb1": { + "name": "libtdb1", + "version": "1.4.2-3build1", + "release": "", + "newVersion": "1.4.2-3build1", + "newRelease": "", + "arch": "", + "repository": "" + }, + "libtext-charwidth-perl": { + "name": "libtext-charwidth-perl", + "version": "0.04-10", + "release": "", + "newVersion": "0.04-10", + "newRelease": "", + "arch": "", + "repository": "" + }, + "libtext-iconv-perl": { + "name": "libtext-iconv-perl", + "version": "1.7-7", + "release": "", + "newVersion": "1.7-7", + "newRelease": "", + "arch": "", + "repository": "" + }, + "libtext-wrapi18n-perl": { + "name": "libtext-wrapi18n-perl", + "version": "0.06-9", + "release": "", + "newVersion": "0.06-9", + "newRelease": "", + "arch": "", + "repository": "" + }, + "libtinfo6": { + "name": "libtinfo6", + "version": "6.2-0ubuntu2", + "release": "", + "newVersion": "6.2-0ubuntu2", + "newRelease": "", + "arch": "", + "repository": "" + }, + "libtss2-esys0": { + "name": "libtss2-esys0", + "version": "2.3.2-1", + "release": "", + "newVersion": "2.3.2-1", + "newRelease": "", + "arch": "", + "repository": "" + }, + "libuchardet0": { + "name": "libuchardet0", + "version": "0.0.6-3build1", + "release": "", + "newVersion": "0.0.6-3build1", + "newRelease": "", + "arch": "", + "repository": "" + }, + "libudev1": { + "name": "libudev1", + "version": "245.4-4ubuntu3.4", + "release": "", + "newVersion": "245.4-4ubuntu3.5", + "newRelease": "", + "arch": "", + "repository": "focal-updates/main" + }, + "libunistring2": { + "name": "libunistring2", + "version": "0.9.10-2", + "release": "", + "newVersion": "0.9.10-2", + "newRelease": "", + "arch": "", + "repository": "", + "AffectedProcs": [ + { + "pid": "1677", + "name": "packagekitd" + }, + { + "pid": "376", + "name": "systemd-network" + }, + { + "pid": "1", + "name": "systemd" + }, + { + "pid": "1334", + "name": "systemd" + }, + { + "pid": "158", + "name": "systemd-journal" + }, + { + "pid": "467", + "name": "systemd-logind" + }, + { + "pid": "302", + "name": "systemd-timesyn" + }, + { + "pid": "379", + "name": "systemd-resolve", + "listenPortStats": [ + { + "bindAddress": "127.0.0.53", + "port": "53", + "portReachableTo": [] + } + ] + }, + { + "pid": "1335", + "name": "(sd-pam)" + } + ] + }, + "libunwind8": { + "name": "libunwind8", + "version": "1.2.1-9build1", + "release": "", + "newVersion": "1.2.1-9build1", + "newRelease": "", + "arch": "", + "repository": "" + }, + "liburcu6": { + "name": "liburcu6", + "version": "0.11.1-2", + "release": "", + "newVersion": "0.11.1-2", + "newRelease": "", + "arch": "", + "repository": "", + "AffectedProcs": [ + { + "pid": "270", + "name": "multipathd" + } + ] + }, + "libusb-1.0-0": { + "name": "libusb-1.0-0", + "version": "2:1.0.23-2build1", + "release": "", + "newVersion": "2:1.0.23-2build1", + "newRelease": "", + "arch": "", + "repository": "" + }, + "libutempter0": { + "name": "libutempter0", + "version": "1.1.6-4", + "release": "", + "newVersion": "1.1.6-4", + "newRelease": "", + "arch": "", + "repository": "" + }, + "libuuid1": { + "name": "libuuid1", + "version": "2.34-0.1ubuntu9.1", + "release": "", + "newVersion": "2.34-0.1ubuntu9.1", + "newRelease": "", + "arch": "", + "repository": "" + }, + "libuv1": { + "name": "libuv1", + "version": "1.34.2-1ubuntu1.1", + "release": "", + "newVersion": "1.34.2-1ubuntu1.1", + "newRelease": "", + "arch": "", + "repository": "" + }, + "libvorbis0a": { + "name": "libvorbis0a", + "version": "1.3.6-2ubuntu1", + "release": "", + "newVersion": "1.3.6-2ubuntu1", + "newRelease": "", + "arch": "", + "repository": "" + }, + "libvorbisfile3": { + "name": "libvorbisfile3", + "version": "1.3.6-2ubuntu1", + "release": "", + "newVersion": "1.3.6-2ubuntu1", + "newRelease": "", + "arch": "", + "repository": "" + }, + "libwind0-heimdal": { + "name": "libwind0-heimdal", + "version": "7.7.0+dfsg-1ubuntu1", + "release": "", + "newVersion": "7.7.0+dfsg-1ubuntu1", + "newRelease": "", + "arch": "", + "repository": "" + }, + "libwrap0": { + "name": "libwrap0", + "version": "7.6.q-30", + "release": "", + "newVersion": "7.6.q-30", + "newRelease": "", + "arch": "", + "repository": "", + "AffectedProcs": [ + { + "pid": "725", + "name": "sshd", + "listenPortStats": [ + { + "bindAddress": "*", + "port": "22", + "portReachableTo": [] + } + ] + }, + { + "pid": "1410", + "name": "sshd" + }, + { + "pid": "2196", + "name": "sshd" + }, + { + "pid": "1321", + "name": "sshd" + }, + { + "pid": "2275", + "name": "sshd" + } + ] + }, + "libx11-6": { + "name": "libx11-6", + "version": "2:1.6.9-2ubuntu1.1", + "release": "", + "newVersion": "2:1.6.9-2ubuntu1.1", + "newRelease": "", + "arch": "", + "repository": "" + }, + "libx11-data": { + "name": "libx11-data", + "version": "2:1.6.9-2ubuntu1.1", + "release": "", + "newVersion": "2:1.6.9-2ubuntu1.1", + "newRelease": "", + "arch": "", + "repository": "" + }, + "libxau6": { + "name": "libxau6", + "version": "1:1.0.9-0ubuntu1", + "release": "", + "newVersion": "1:1.0.9-0ubuntu1", + "newRelease": "", + "arch": "", + "repository": "" + }, + "libxcb1": { + "name": "libxcb1", + "version": "1.14-2", + "release": "", + "newVersion": "1.14-2", + "newRelease": "", + "arch": "", + "repository": "" + }, + "libxdmcp6": { + "name": "libxdmcp6", + "version": "1:1.1.3-0ubuntu1", + "release": "", + "newVersion": "1:1.1.3-0ubuntu1", + "newRelease": "", + "arch": "", + "repository": "" + }, + "libxext6": { + "name": "libxext6", + "version": "2:1.3.4-0ubuntu1", + "release": "", + "newVersion": "2:1.3.4-0ubuntu1", + "newRelease": "", + "arch": "", + "repository": "" + }, + "libxml2": { + "name": "libxml2", + "version": "2.9.10+dfsg-5", + "release": "", + "newVersion": "2.9.10+dfsg-5", + "newRelease": "", + "arch": "", + "repository": "", + "AffectedProcs": [ + { + "pid": "1677", + "name": "packagekitd" + } + ] + }, + "libxmlb1": { + "name": "libxmlb1", + "version": "0.1.15-2", + "release": "", + "newVersion": "0.1.15-2", + "newRelease": "", + "arch": "", + "repository": "" + }, + "libxmlsec1": { + "name": "libxmlsec1", + "version": "1.2.28-2", + "release": "", + "newVersion": "1.2.28-2", + "newRelease": "", + "arch": "", + "repository": "" + }, + "libxmlsec1-openssl": { + "name": "libxmlsec1-openssl", + "version": "1.2.28-2", + "release": "", + "newVersion": "1.2.28-2", + "newRelease": "", + "arch": "", + "repository": "" + }, + "libxmuu1": { + "name": "libxmuu1", + "version": "2:1.1.3-0ubuntu1", + "release": "", + "newVersion": "2:1.1.3-0ubuntu1", + "newRelease": "", + "arch": "", + "repository": "" + }, + "libxslt1.1": { + "name": "libxslt1.1", + "version": "1.1.34-4", + "release": "", + "newVersion": "1.1.34-4", + "newRelease": "", + "arch": "", + "repository": "" + }, + "libxtables12": { + "name": "libxtables12", + "version": "1.8.4-3ubuntu2", + "release": "", + "newVersion": "1.8.4-3ubuntu2", + "newRelease": "", + "arch": "", + "repository": "" + }, + "libyaml-0-2": { + "name": "libyaml-0-2", + "version": "0.2.2-1", + "release": "", + "newVersion": "0.2.2-1", + "newRelease": "", + "arch": "", + "repository": "", + "AffectedProcs": [ + { + "pid": "1677", + "name": "packagekitd" + } + ] + }, + "libzstd1": { + "name": "libzstd1", + "version": "1.4.4+dfsg-3", + "release": "", + "newVersion": "1.4.4+dfsg-3ubuntu0.1", + "newRelease": "", + "arch": "", + "repository": "focal-updates/main", + "AffectedProcs": [ + { + "pid": "1677", + "name": "packagekitd" + }, + { + "pid": "626", + "name": "unattended-upgr" + } + ] + }, + "linux-aws": { + "name": "linux-aws", + "version": "5.4.0.1038.39", + "release": "", + "newVersion": "5.4.0.1041.42", + "newRelease": "", + "arch": "", + "repository": "focal-updates/main" + }, + "linux-aws-headers-5.4.0-1038": { + "name": "linux-aws-headers-5.4.0-1038", + "version": "5.4.0-1038.40", + "release": "", + "newVersion": "5.4.0-1038.40", + "newRelease": "", + "arch": "", + "repository": "" + }, + "linux-base": { + "name": "linux-base", + "version": "4.5ubuntu3.1", + "release": "", + "newVersion": "4.5ubuntu3.1", + "newRelease": "", + "arch": "", + "repository": "" + }, + "linux-headers-5.4.0-1038-aws": { + "name": "linux-headers-5.4.0-1038-aws", + "version": "5.4.0-1038.40", + "release": "", + "newVersion": "5.4.0-1038.40", + "newRelease": "", + "arch": "", + "repository": "" + }, + "linux-headers-aws": { + "name": "linux-headers-aws", + "version": "5.4.0.1038.39", + "release": "", + "newVersion": "5.4.0.1041.42", + "newRelease": "", + "arch": "", + "repository": "focal-updates/main" + }, + "linux-image-5.4.0-1038-aws": { + "name": "linux-image-5.4.0-1038-aws", + "version": "5.4.0-1038.40", + "release": "", + "newVersion": "5.4.0-1038.40", + "newRelease": "", + "arch": "", + "repository": "" + }, + "linux-image-aws": { + "name": "linux-image-aws", + "version": "5.4.0.1038.39", + "release": "", + "newVersion": "5.4.0.1041.42", + "newRelease": "", + "arch": "", + "repository": "focal-updates/main" + }, + "linux-modules-5.4.0-1038-aws": { + "name": "linux-modules-5.4.0-1038-aws", + "version": "5.4.0-1038.40", + "release": "", + "newVersion": "5.4.0-1038.40", + "newRelease": "", + "arch": "", + "repository": "" + }, + "locales": { + "name": "locales", + "version": "2.31-0ubuntu9.2", + "release": "", + "newVersion": "2.31-0ubuntu9.2", + "newRelease": "", + "arch": "", + "repository": "" + }, + "login": { + "name": "login", + "version": "1:4.8.1-1ubuntu5.20.04", + "release": "", + "newVersion": "1:4.8.1-1ubuntu5.20.04", + "newRelease": "", + "arch": "", + "repository": "" + }, + "logrotate": { + "name": "logrotate", + "version": "3.14.0-4ubuntu3", + "release": "", + "newVersion": "3.14.0-4ubuntu3", + "newRelease": "", + "arch": "", + "repository": "" + }, + "logsave": { + "name": "logsave", + "version": "1.45.5-2ubuntu1", + "release": "", + "newVersion": "1.45.5-2ubuntu1", + "newRelease": "", + "arch": "", + "repository": "" + }, + "lsb-base": { + "name": "lsb-base", + "version": "11.1.0ubuntu2", + "release": "", + "newVersion": "11.1.0ubuntu2", + "newRelease": "", + "arch": "", + "repository": "" + }, + "lsb-release": { + "name": "lsb-release", + "version": "11.1.0ubuntu2", + "release": "", + "newVersion": "11.1.0ubuntu2", + "newRelease": "", + "arch": "", + "repository": "" + }, + "lshw": { + "name": "lshw", + "version": "02.18.85-0.3ubuntu2.20.04.1", + "release": "", + "newVersion": "02.18.85-0.3ubuntu2.20.04.1", + "newRelease": "", + "arch": "", + "repository": "" + }, + "lsof": { + "name": "lsof", + "version": "4.93.2+dfsg-1ubuntu0.20.04.1", + "release": "", + "newVersion": "4.93.2+dfsg-1ubuntu0.20.04.1", + "newRelease": "", + "arch": "", + "repository": "" + }, + "ltrace": { + "name": "ltrace", + "version": "0.7.3-6.1ubuntu1", + "release": "", + "newVersion": "0.7.3-6.1ubuntu1", + "newRelease": "", + "arch": "", + "repository": "" + }, + "lvm2": { + "name": "lvm2", + "version": "2.03.07-1ubuntu1", + "release": "", + "newVersion": "2.03.07-1ubuntu1", + "newRelease": "", + "arch": "", + "repository": "" + }, + "lxd-agent-loader": { + "name": "lxd-agent-loader", + "version": "0.4", + "release": "", + "newVersion": "0.4", + "newRelease": "", + "arch": "", + "repository": "" + }, + "lz4": { + "name": "lz4", + "version": "1.9.2-2", + "release": "", + "newVersion": "1.9.2-2", + "newRelease": "", + "arch": "", + "repository": "" + }, + "man-db": { + "name": "man-db", + "version": "2.9.1-1", + "release": "", + "newVersion": "2.9.1-1", + "newRelease": "", + "arch": "", + "repository": "" + }, + "manpages": { + "name": "manpages", + "version": "5.05-1", + "release": "", + "newVersion": "5.05-1", + "newRelease": "", + "arch": "", + "repository": "" + }, + "mawk": { + "name": "mawk", + "version": "1.3.4.20200120-2", + "release": "", + "newVersion": "1.3.4.20200120-2", + "newRelease": "", + "arch": "", + "repository": "" + }, + "mdadm": { + "name": "mdadm", + "version": "4.1-5ubuntu1.2", + "release": "", + "newVersion": "4.1-5ubuntu1.2", + "newRelease": "", + "arch": "", + "repository": "" + }, + "microcode-initrd": { + "name": "microcode-initrd", + "version": "2~20.04.0", + "release": "", + "newVersion": "2~20.04.0", + "newRelease": "", + "arch": "", + "repository": "" + }, + "mime-support": { + "name": "mime-support", + "version": "3.64ubuntu1", + "release": "", + "newVersion": "3.64ubuntu1", + "newRelease": "", + "arch": "", + "repository": "" + }, + "motd-news-config": { + "name": "motd-news-config", + "version": "11ubuntu5.3", + "release": "", + "newVersion": "11ubuntu5.3", + "newRelease": "", + "arch": "", + "repository": "" + }, + "mount": { + "name": "mount", + "version": "2.34-0.1ubuntu9.1", + "release": "", + "newVersion": "2.34-0.1ubuntu9.1", + "newRelease": "", + "arch": "", + "repository": "" + }, + "mtr-tiny": { + "name": "mtr-tiny", + "version": "0.93-1", + "release": "", + "newVersion": "0.93-1", + "newRelease": "", + "arch": "", + "repository": "" + }, + "multipath-tools": { + "name": "multipath-tools", + "version": "0.8.3-1ubuntu2", + "release": "", + "newVersion": "0.8.3-1ubuntu2", + "newRelease": "", + "arch": "", + "repository": "" + }, + "nano": { + "name": "nano", + "version": "4.8-1ubuntu1", + "release": "", + "newVersion": "4.8-1ubuntu1", + "newRelease": "", + "arch": "", + "repository": "" + }, + "ncurses-base": { + "name": "ncurses-base", + "version": "6.2-0ubuntu2", + "release": "", + "newVersion": "6.2-0ubuntu2", + "newRelease": "", + "arch": "", + "repository": "" + }, + "ncurses-bin": { + "name": "ncurses-bin", + "version": "6.2-0ubuntu2", + "release": "", + "newVersion": "6.2-0ubuntu2", + "newRelease": "", + "arch": "", + "repository": "" + }, + "ncurses-term": { + "name": "ncurses-term", + "version": "6.2-0ubuntu2", + "release": "", + "newVersion": "6.2-0ubuntu2", + "newRelease": "", + "arch": "", + "repository": "" + }, + "netbase": { + "name": "netbase", + "version": "6.1", + "release": "", + "newVersion": "6.1", + "newRelease": "", + "arch": "", + "repository": "" + }, + "netcat-openbsd": { + "name": "netcat-openbsd", + "version": "1.206-1ubuntu1", + "release": "", + "newVersion": "1.206-1ubuntu1", + "newRelease": "", + "arch": "", + "repository": "" + }, + "netplan.io": { + "name": "netplan.io", + "version": "0.101-0ubuntu3~20.04.2", + "release": "", + "newVersion": "0.101-0ubuntu3~20.04.2", + "newRelease": "", + "arch": "", + "repository": "" + }, + "networkd-dispatcher": { + "name": "networkd-dispatcher", + "version": "2.0.1-1", + "release": "", + "newVersion": "2.0.1-1", + "newRelease": "", + "arch": "", + "repository": "" + }, + "ntfs-3g": { + "name": "ntfs-3g", + "version": "1:2017.3.23AR.3-3ubuntu1", + "release": "", + "newVersion": "1:2017.3.23AR.3-3ubuntu1", + "newRelease": "", + "arch": "", + "repository": "" + }, + "open-iscsi": { + "name": "open-iscsi", + "version": "2.0.874-7.1ubuntu6.1", + "release": "", + "newVersion": "2.0.874-7.1ubuntu6.1", + "newRelease": "", + "arch": "", + "repository": "" + }, + "open-vm-tools": { + "name": "open-vm-tools", + "version": "2:11.0.5-4", + "release": "", + "newVersion": "2:11.1.5-1~ubuntu20.04.2", + "newRelease": "", + "arch": "", + "repository": "focal-updates/universe" + }, + "openssh-client": { + "name": "openssh-client", + "version": "1:8.2p1-4ubuntu0.1", + "release": "", + "newVersion": "1:8.2p1-4ubuntu0.2", + "newRelease": "", + "arch": "", + "repository": "focal-updates/main" + }, + "openssh-server": { + "name": "openssh-server", + "version": "1:8.2p1-4ubuntu0.1", + "release": "", + "newVersion": "1:8.2p1-4ubuntu0.2", + "newRelease": "", + "arch": "", + "repository": "focal-updates/main", + "AffectedProcs": [ + { + "pid": "725", + "name": "sshd", + "listenPortStats": [ + { + "bindAddress": "*", + "port": "22", + "portReachableTo": [] + } + ] + }, + { + "pid": "1410", + "name": "sshd" + }, + { + "pid": "2196", + "name": "sshd" + }, + { + "pid": "1321", + "name": "sshd" + }, + { + "pid": "2275", + "name": "sshd" + } + ] + }, + "openssh-sftp-server": { + "name": "openssh-sftp-server", + "version": "1:8.2p1-4ubuntu0.1", + "release": "", + "newVersion": "1:8.2p1-4ubuntu0.2", + "newRelease": "", + "arch": "", + "repository": "focal-updates/main" + }, + "openssl": { + "name": "openssl", + "version": "1.1.1f-1ubuntu2.2", + "release": "", + "newVersion": "1.1.1f-1ubuntu2.2", + "newRelease": "", + "arch": "", + "repository": "" + }, + "os-prober": { + "name": "os-prober", + "version": "1.74ubuntu2", + "release": "", + "newVersion": "1.74ubuntu2", + "newRelease": "", + "arch": "", + "repository": "" + }, + "overlayroot": { + "name": "overlayroot", + "version": "0.45ubuntu1", + "release": "", + "newVersion": "0.45ubuntu1", + "newRelease": "", + "arch": "", + "repository": "" + }, + "packagekit": { + "name": "packagekit", + "version": "1.1.13-2ubuntu1.1", + "release": "", + "newVersion": "1.1.13-2ubuntu1.1", + "newRelease": "", + "arch": "", + "repository": "", + "AffectedProcs": [ + { + "pid": "1677", + "name": "packagekitd" + } + ] + }, + "packagekit-tools": { + "name": "packagekit-tools", + "version": "1.1.13-2ubuntu1.1", + "release": "", + "newVersion": "1.1.13-2ubuntu1.1", + "newRelease": "", + "arch": "", + "repository": "" + }, + "parted": { + "name": "parted", + "version": "3.3-4ubuntu0.20.04.1", + "release": "", + "newVersion": "3.3-4ubuntu0.20.04.1", + "newRelease": "", + "arch": "", + "repository": "" + }, + "passwd": { + "name": "passwd", + "version": "1:4.8.1-1ubuntu5.20.04", + "release": "", + "newVersion": "1:4.8.1-1ubuntu5.20.04", + "newRelease": "", + "arch": "", + "repository": "" + }, + "pastebinit": { + "name": "pastebinit", + "version": "1.5.1-1", + "release": "", + "newVersion": "1.5.1-1", + "newRelease": "", + "arch": "", + "repository": "" + }, + "patch": { + "name": "patch", + "version": "2.7.6-6", + "release": "", + "newVersion": "2.7.6-6", + "newRelease": "", + "arch": "", + "repository": "" + }, + "pci.ids": { + "name": "pci.ids", + "version": "0.0~2020.03.20-1", + "release": "", + "newVersion": "0.0~2020.03.20-1", + "newRelease": "", + "arch": "", + "repository": "" + }, + "pciutils": { + "name": "pciutils", + "version": "1:3.6.4-1", + "release": "", + "newVersion": "1:3.6.4-1", + "newRelease": "", + "arch": "", + "repository": "" + }, + "perl": { + "name": "perl", + "version": "5.30.0-9ubuntu0.2", + "release": "", + "newVersion": "5.30.0-9ubuntu0.2", + "newRelease": "", + "arch": "", + "repository": "" + }, + "perl-base": { + "name": "perl-base", + "version": "5.30.0-9ubuntu0.2", + "release": "", + "newVersion": "5.30.0-9ubuntu0.2", + "newRelease": "", + "arch": "", + "repository": "" + }, + "perl-modules-5.30": { + "name": "perl-modules-5.30", + "version": "5.30.0-9ubuntu0.2", + "release": "", + "newVersion": "5.30.0-9ubuntu0.2", + "newRelease": "", + "arch": "", + "repository": "" + }, + "pinentry-curses": { + "name": "pinentry-curses", + "version": "1.1.0-3build1", + "release": "", + "newVersion": "1.1.0-3build1", + "newRelease": "", + "arch": "", + "repository": "" + }, + "plymouth": { + "name": "plymouth", + "version": "0.9.4git20200323-0ubuntu6.2", + "release": "", + "newVersion": "0.9.4git20200323-0ubuntu6.2", + "newRelease": "", + "arch": "", + "repository": "" + }, + "plymouth-theme-ubuntu-text": { + "name": "plymouth-theme-ubuntu-text", + "version": "0.9.4git20200323-0ubuntu6.2", + "release": "", + "newVersion": "0.9.4git20200323-0ubuntu6.2", + "newRelease": "", + "arch": "", + "repository": "" + }, + "policykit-1": { + "name": "policykit-1", + "version": "0.105-26ubuntu1", + "release": "", + "newVersion": "0.105-26ubuntu1", + "newRelease": "", + "arch": "", + "repository": "", + "AffectedProcs": [ + { + "pid": "617", + "name": "polkitd" + } + ] + }, + "pollinate": { + "name": "pollinate", + "version": "4.33-3ubuntu1.20.04.1", + "release": "", + "newVersion": "4.33-3ubuntu1.20.04.1", + "newRelease": "", + "arch": "", + "repository": "" + }, + "popularity-contest": { + "name": "popularity-contest", + "version": "1.69ubuntu1", + "release": "", + "newVersion": "1.69ubuntu1", + "newRelease": "", + "arch": "", + "repository": "" + }, + "powermgmt-base": { + "name": "powermgmt-base", + "version": "1.36", + "release": "", + "newVersion": "1.36", + "newRelease": "", + "arch": "", + "repository": "" + }, + "procps": { + "name": "procps", + "version": "2:3.3.16-1ubuntu2", + "release": "", + "newVersion": "2:3.3.16-1ubuntu2", + "newRelease": "", + "arch": "", + "repository": "" + }, + "psmisc": { + "name": "psmisc", + "version": "23.3-1", + "release": "", + "newVersion": "23.3-1", + "newRelease": "", + "arch": "", + "repository": "" + }, + "publicsuffix": { + "name": "publicsuffix", + "version": "20200303.0012-1", + "release": "", + "newVersion": "20200303.0012-1", + "newRelease": "", + "arch": "", + "repository": "" + }, + "python-apt-common": { + "name": "python-apt-common", + "version": "2.0.0ubuntu0.20.04.4", + "release": "", + "newVersion": "2.0.0ubuntu0.20.04.4", + "newRelease": "", + "arch": "", + "repository": "" + }, + "python3": { + "name": "python3", + "version": "3.8.2-0ubuntu2", + "release": "", + "newVersion": "3.8.2-0ubuntu2", + "newRelease": "", + "arch": "", + "repository": "" + }, + "python3-apport": { + "name": "python3-apport", + "version": "2.20.11-0ubuntu27.16", + "release": "", + "newVersion": "2.20.11-0ubuntu27.16", + "newRelease": "", + "arch": "", + "repository": "" + }, + "python3-apt": { + "name": "python3-apt", + "version": "2.0.0ubuntu0.20.04.4", + "release": "", + "newVersion": "2.0.0ubuntu0.20.04.4", + "newRelease": "", + "arch": "", + "repository": "", + "AffectedProcs": [ + { + "pid": "626", + "name": "unattended-upgr" + } + ] + }, + "python3-attr": { + "name": "python3-attr", + "version": "19.3.0-2", + "release": "", + "newVersion": "19.3.0-2", + "newRelease": "", + "arch": "", + "repository": "" + }, + "python3-automat": { + "name": "python3-automat", + "version": "0.8.0-1ubuntu1", + "release": "", + "newVersion": "0.8.0-1ubuntu1", + "newRelease": "", + "arch": "", + "repository": "" + }, + "python3-blinker": { + "name": "python3-blinker", + "version": "1.4+dfsg1-0.3ubuntu1", + "release": "", + "newVersion": "1.4+dfsg1-0.3ubuntu1", + "newRelease": "", + "arch": "", + "repository": "" + }, + "python3-certifi": { + "name": "python3-certifi", + "version": "2019.11.28-1", + "release": "", + "newVersion": "2019.11.28-1", + "newRelease": "", + "arch": "", + "repository": "" + }, + "python3-cffi-backend": { + "name": "python3-cffi-backend", + "version": "1.14.0-1build1", + "release": "", + "newVersion": "1.14.0-1build1", + "newRelease": "", + "arch": "", + "repository": "" + }, + "python3-chardet": { + "name": "python3-chardet", + "version": "3.0.4-4build1", + "release": "", + "newVersion": "3.0.4-4build1", + "newRelease": "", + "arch": "", + "repository": "" + }, + "python3-click": { + "name": "python3-click", + "version": "7.0-3", + "release": "", + "newVersion": "7.0-3", + "newRelease": "", + "arch": "", + "repository": "" + }, + "python3-colorama": { + "name": "python3-colorama", + "version": "0.4.3-1build1", + "release": "", + "newVersion": "0.4.3-1build1", + "newRelease": "", + "arch": "", + "repository": "" + }, + "python3-commandnotfound": { + "name": "python3-commandnotfound", + "version": "20.04.4", + "release": "", + "newVersion": "20.04.4", + "newRelease": "", + "arch": "", + "repository": "" + }, + "python3-configobj": { + "name": "python3-configobj", + "version": "5.0.6-4", + "release": "", + "newVersion": "5.0.6-4", + "newRelease": "", + "arch": "", + "repository": "" + }, + "python3-constantly": { + "name": "python3-constantly", + "version": "15.1.0-1build1", + "release": "", + "newVersion": "15.1.0-1build1", + "newRelease": "", + "arch": "", + "repository": "" + }, + "python3-cryptography": { + "name": "python3-cryptography", + "version": "2.8-3ubuntu0.1", + "release": "", + "newVersion": "2.8-3ubuntu0.1", + "newRelease": "", + "arch": "", + "repository": "" + }, + "python3-dbus": { + "name": "python3-dbus", + "version": "1.2.16-1build1", + "release": "", + "newVersion": "1.2.16-1build1", + "newRelease": "", + "arch": "", + "repository": "", + "AffectedProcs": [ + { + "pid": "462", + "name": "networkd-dispat" + }, + { + "pid": "626", + "name": "unattended-upgr" + } + ] + }, + "python3-debconf": { + "name": "python3-debconf", + "version": "1.5.73", + "release": "", + "newVersion": "1.5.73", + "newRelease": "", + "arch": "", + "repository": "" + }, + "python3-debian": { + "name": "python3-debian", + "version": "0.1.36ubuntu1", + "release": "", + "newVersion": "0.1.36ubuntu1", + "newRelease": "", + "arch": "", + "repository": "" + }, + "python3-distro": { + "name": "python3-distro", + "version": "1.4.0-1", + "release": "", + "newVersion": "1.4.0-1", + "newRelease": "", + "arch": "", + "repository": "" + }, + "python3-distro-info": { + "name": "python3-distro-info", + "version": "0.23ubuntu1", + "release": "", + "newVersion": "0.23ubuntu1", + "newRelease": "", + "arch": "", + "repository": "" + }, + "python3-distupgrade": { + "name": "python3-distupgrade", + "version": "1:20.04.30", + "release": "", + "newVersion": "1:20.04.30", + "newRelease": "", + "arch": "", + "repository": "" + }, + "python3-distutils": { + "name": "python3-distutils", + "version": "3.8.5-1~20.04.1", + "release": "", + "newVersion": "3.8.5-1~20.04.1", + "newRelease": "", + "arch": "", + "repository": "" + }, + "python3-entrypoints": { + "name": "python3-entrypoints", + "version": "0.3-2ubuntu1", + "release": "", + "newVersion": "0.3-2ubuntu1", + "newRelease": "", + "arch": "", + "repository": "" + }, + "python3-gdbm": { + "name": "python3-gdbm", + "version": "3.8.5-1~20.04.1", + "release": "", + "newVersion": "3.8.5-1~20.04.1", + "newRelease": "", + "arch": "", + "repository": "" + }, + "python3-gi": { + "name": "python3-gi", + "version": "3.36.0-1", + "release": "", + "newVersion": "3.36.0-1", + "newRelease": "", + "arch": "", + "repository": "", + "AffectedProcs": [ + { + "pid": "462", + "name": "networkd-dispat" + }, + { + "pid": "626", + "name": "unattended-upgr" + } + ] + }, + "python3-hamcrest": { + "name": "python3-hamcrest", + "version": "1.9.0-3", + "release": "", + "newVersion": "1.9.0-3", + "newRelease": "", + "arch": "", + "repository": "" + }, + "python3-httplib2": { + "name": "python3-httplib2", + "version": "0.14.0-1ubuntu1", + "release": "", + "newVersion": "0.14.0-1ubuntu1", + "newRelease": "", + "arch": "", + "repository": "" + }, + "python3-hyperlink": { + "name": "python3-hyperlink", + "version": "19.0.0-1", + "release": "", + "newVersion": "19.0.0-1", + "newRelease": "", + "arch": "", + "repository": "" + }, + "python3-idna": { + "name": "python3-idna", + "version": "2.8-1", + "release": "", + "newVersion": "2.8-1", + "newRelease": "", + "arch": "", + "repository": "" + }, + "python3-importlib-metadata": { + "name": "python3-importlib-metadata", + "version": "1.5.0-1", + "release": "", + "newVersion": "1.5.0-1", + "newRelease": "", + "arch": "", + "repository": "" + }, + "python3-incremental": { + "name": "python3-incremental", + "version": "16.10.1-3.2", + "release": "", + "newVersion": "16.10.1-3.2", + "newRelease": "", + "arch": "", + "repository": "" + }, + "python3-jinja2": { + "name": "python3-jinja2", + "version": "2.10.1-2", + "release": "", + "newVersion": "2.10.1-2", + "newRelease": "", + "arch": "", + "repository": "" + }, + "python3-json-pointer": { + "name": "python3-json-pointer", + "version": "2.0-0ubuntu1", + "release": "", + "newVersion": "2.0-0ubuntu1", + "newRelease": "", + "arch": "", + "repository": "" + }, + "python3-jsonpatch": { + "name": "python3-jsonpatch", + "version": "1.23-3", + "release": "", + "newVersion": "1.23-3", + "newRelease": "", + "arch": "", + "repository": "" + }, + "python3-jsonschema": { + "name": "python3-jsonschema", + "version": "3.2.0-0ubuntu2", + "release": "", + "newVersion": "3.2.0-0ubuntu2", + "newRelease": "", + "arch": "", + "repository": "" + }, + "python3-jwt": { + "name": "python3-jwt", + "version": "1.7.1-2ubuntu2", + "release": "", + "newVersion": "1.7.1-2ubuntu2", + "newRelease": "", + "arch": "", + "repository": "" + }, + "python3-keyring": { + "name": "python3-keyring", + "version": "18.0.1-2ubuntu1", + "release": "", + "newVersion": "18.0.1-2ubuntu1", + "newRelease": "", + "arch": "", + "repository": "" + }, + "python3-launchpadlib": { + "name": "python3-launchpadlib", + "version": "1.10.13-1", + "release": "", + "newVersion": "1.10.13-1", + "newRelease": "", + "arch": "", + "repository": "" + }, + "python3-lazr.restfulclient": { + "name": "python3-lazr.restfulclient", + "version": "0.14.2-2build1", + "release": "", + "newVersion": "0.14.2-2build1", + "newRelease": "", + "arch": "", + "repository": "" + }, + "python3-lazr.uri": { + "name": "python3-lazr.uri", + "version": "1.0.3-4build1", + "release": "", + "newVersion": "1.0.3-4build1", + "newRelease": "", + "arch": "", + "repository": "" + }, + "python3-lib2to3": { + "name": "python3-lib2to3", + "version": "3.8.5-1~20.04.1", + "release": "", + "newVersion": "3.8.5-1~20.04.1", + "newRelease": "", + "arch": "", + "repository": "" + }, + "python3-markupsafe": { + "name": "python3-markupsafe", + "version": "1.1.0-1build2", + "release": "", + "newVersion": "1.1.0-1build2", + "newRelease": "", + "arch": "", + "repository": "" + }, + "python3-minimal": { + "name": "python3-minimal", + "version": "3.8.2-0ubuntu2", + "release": "", + "newVersion": "3.8.2-0ubuntu2", + "newRelease": "", + "arch": "", + "repository": "" + }, + "python3-more-itertools": { + "name": "python3-more-itertools", + "version": "4.2.0-1build1", + "release": "", + "newVersion": "4.2.0-1build1", + "newRelease": "", + "arch": "", + "repository": "" + }, + "python3-nacl": { + "name": "python3-nacl", + "version": "1.3.0-5", + "release": "", + "newVersion": "1.3.0-5", + "newRelease": "", + "arch": "", + "repository": "" + }, + "python3-netifaces": { + "name": "python3-netifaces", + "version": "0.10.4-1ubuntu4", + "release": "", + "newVersion": "0.10.4-1ubuntu4", + "newRelease": "", + "arch": "", + "repository": "" + }, + "python3-newt": { + "name": "python3-newt", + "version": "0.52.21-4ubuntu2", + "release": "", + "newVersion": "0.52.21-4ubuntu2", + "newRelease": "", + "arch": "", + "repository": "" + }, + "python3-oauthlib": { + "name": "python3-oauthlib", + "version": "3.1.0-1ubuntu2", + "release": "", + "newVersion": "3.1.0-1ubuntu2", + "newRelease": "", + "arch": "", + "repository": "" + }, + "python3-openssl": { + "name": "python3-openssl", + "version": "19.0.0-1build1", + "release": "", + "newVersion": "19.0.0-1build1", + "newRelease": "", + "arch": "", + "repository": "" + }, + "python3-pexpect": { + "name": "python3-pexpect", + "version": "4.6.0-1build1", + "release": "", + "newVersion": "4.6.0-1build1", + "newRelease": "", + "arch": "", + "repository": "" + }, + "python3-pkg-resources": { + "name": "python3-pkg-resources", + "version": "45.2.0-1", + "release": "", + "newVersion": "45.2.0-1", + "newRelease": "", + "arch": "", + "repository": "" + }, + "python3-problem-report": { + "name": "python3-problem-report", + "version": "2.20.11-0ubuntu27.16", + "release": "", + "newVersion": "2.20.11-0ubuntu27.16", + "newRelease": "", + "arch": "", + "repository": "" + }, + "python3-ptyprocess": { + "name": "python3-ptyprocess", + "version": "0.6.0-1ubuntu1", + "release": "", + "newVersion": "0.6.0-1ubuntu1", + "newRelease": "", + "arch": "", + "repository": "" + }, + "python3-pyasn1": { + "name": "python3-pyasn1", + "version": "0.4.2-3build1", + "release": "", + "newVersion": "0.4.2-3build1", + "newRelease": "", + "arch": "", + "repository": "" + }, + "python3-pyasn1-modules": { + "name": "python3-pyasn1-modules", + "version": "0.2.1-0.2build1", + "release": "", + "newVersion": "0.2.1-0.2build1", + "newRelease": "", + "arch": "", + "repository": "" + }, + "python3-pymacaroons": { + "name": "python3-pymacaroons", + "version": "0.13.0-3", + "release": "", + "newVersion": "0.13.0-3", + "newRelease": "", + "arch": "", + "repository": "" + }, + "python3-pyrsistent": { + "name": "python3-pyrsistent", + "version": "0.15.5-1build1", + "release": "", + "newVersion": "0.15.5-1build1", + "newRelease": "", + "arch": "", + "repository": "" + }, + "python3-requests": { + "name": "python3-requests", + "version": "2.22.0-2ubuntu1", + "release": "", + "newVersion": "2.22.0-2ubuntu1", + "newRelease": "", + "arch": "", + "repository": "" + }, + "python3-requests-unixsocket": { + "name": "python3-requests-unixsocket", + "version": "0.2.0-2", + "release": "", + "newVersion": "0.2.0-2", + "newRelease": "", + "arch": "", + "repository": "" + }, + "python3-secretstorage": { + "name": "python3-secretstorage", + "version": "2.3.1-2ubuntu1", + "release": "", + "newVersion": "2.3.1-2ubuntu1", + "newRelease": "", + "arch": "", + "repository": "" + }, + "python3-serial": { + "name": "python3-serial", + "version": "3.4-5.1", + "release": "", + "newVersion": "3.4-5.1", + "newRelease": "", + "arch": "", + "repository": "" + }, + "python3-service-identity": { + "name": "python3-service-identity", + "version": "18.1.0-5build1", + "release": "", + "newVersion": "18.1.0-5build1", + "newRelease": "", + "arch": "", + "repository": "" + }, + "python3-setuptools": { + "name": "python3-setuptools", + "version": "45.2.0-1", + "release": "", + "newVersion": "45.2.0-1", + "newRelease": "", + "arch": "", + "repository": "" + }, + "python3-simplejson": { + "name": "python3-simplejson", + "version": "3.16.0-2ubuntu2", + "release": "", + "newVersion": "3.16.0-2ubuntu2", + "newRelease": "", + "arch": "", + "repository": "" + }, + "python3-six": { + "name": "python3-six", + "version": "1.14.0-2", + "release": "", + "newVersion": "1.14.0-2", + "newRelease": "", + "arch": "", + "repository": "" + }, + "python3-software-properties": { + "name": "python3-software-properties", + "version": "0.98.9.4", + "release": "", + "newVersion": "0.98.9.4", + "newRelease": "", + "arch": "", + "repository": "" + }, + "python3-systemd": { + "name": "python3-systemd", + "version": "234-3build2", + "release": "", + "newVersion": "234-3build2", + "newRelease": "", + "arch": "", + "repository": "" + }, + "python3-twisted": { + "name": "python3-twisted", + "version": "18.9.0-11", + "release": "", + "newVersion": "18.9.0-11ubuntu0.20.04.1", + "newRelease": "", + "arch": "", + "repository": "focal-updates/main" + }, + "python3-twisted-bin": { + "name": "python3-twisted-bin", + "version": "18.9.0-11", + "release": "", + "newVersion": "18.9.0-11ubuntu0.20.04.1", + "newRelease": "", + "arch": "", + "repository": "focal-updates/main" + }, + "python3-update-manager": { + "name": "python3-update-manager", + "version": "1:20.04.10.5", + "release": "", + "newVersion": "1:20.04.10.6", + "newRelease": "", + "arch": "", + "repository": "focal-updates/main" + }, + "python3-urllib3": { + "name": "python3-urllib3", + "version": "1.25.8-2ubuntu0.1", + "release": "", + "newVersion": "1.25.8-2ubuntu0.1", + "newRelease": "", + "arch": "", + "repository": "" + }, + "python3-wadllib": { + "name": "python3-wadllib", + "version": "1.3.3-3build1", + "release": "", + "newVersion": "1.3.3-3build1", + "newRelease": "", + "arch": "", + "repository": "" + }, + "python3-yaml": { + "name": "python3-yaml", + "version": "5.3.1-1", + "release": "", + "newVersion": "5.3.1-1", + "newRelease": "", + "arch": "", + "repository": "" + }, + "python3-zipp": { + "name": "python3-zipp", + "version": "1.0.0-1", + "release": "", + "newVersion": "1.0.0-1", + "newRelease": "", + "arch": "", + "repository": "" + }, + "python3-zope.interface": { + "name": "python3-zope.interface", + "version": "4.7.1-1", + "release": "", + "newVersion": "4.7.1-1", + "newRelease": "", + "arch": "", + "repository": "" + }, + "python3.8": { + "name": "python3.8", + "version": "3.8.5-1~20.04", + "release": "", + "newVersion": "3.8.5-1~20.04.2", + "newRelease": "", + "arch": "", + "repository": "focal-updates/main" + }, + "python3.8-minimal": { + "name": "python3.8-minimal", + "version": "3.8.5-1~20.04", + "release": "", + "newVersion": "3.8.5-1~20.04.2", + "newRelease": "", + "arch": "", + "repository": "focal-updates/main", + "AffectedProcs": [ + { + "pid": "462", + "name": "networkd-dispat" + }, + { + "pid": "626", + "name": "unattended-upgr" + } + ] + }, + "readline-common": { + "name": "readline-common", + "version": "8.0-4", + "release": "", + "newVersion": "8.0-4", + "newRelease": "", + "arch": "", + "repository": "" + }, + "rsync": { + "name": "rsync", + "version": "3.1.3-8", + "release": "", + "newVersion": "3.1.3-8", + "newRelease": "", + "arch": "", + "repository": "" + }, + "rsyslog": { + "name": "rsyslog", + "version": "8.2001.0-1ubuntu1.1", + "release": "", + "newVersion": "8.2001.0-1ubuntu1.1", + "newRelease": "", + "arch": "", + "repository": "", + "AffectedProcs": [ + { + "pid": "464", + "name": "rsyslogd" + } + ] + }, + "run-one": { + "name": "run-one", + "version": "1.17-0ubuntu1", + "release": "", + "newVersion": "1.17-0ubuntu1", + "newRelease": "", + "arch": "", + "repository": "" + }, + "sbsigntool": { + "name": "sbsigntool", + "version": "0.9.2-2ubuntu1", + "release": "", + "newVersion": "0.9.2-2ubuntu1", + "newRelease": "", + "arch": "", + "repository": "" + }, + "screen": { + "name": "screen", + "version": "4.8.0-1", + "release": "", + "newVersion": "4.8.0-1ubuntu0.1", + "newRelease": "", + "arch": "", + "repository": "focal-updates/main" + }, + "secureboot-db": { + "name": "secureboot-db", + "version": "1.5", + "release": "", + "newVersion": "1.5", + "newRelease": "", + "arch": "", + "repository": "" + }, + "sed": { + "name": "sed", + "version": "4.7-1", + "release": "", + "newVersion": "4.7-1", + "newRelease": "", + "arch": "", + "repository": "" + }, + "sensible-utils": { + "name": "sensible-utils", + "version": "0.0.12+nmu1", + "release": "", + "newVersion": "0.0.12+nmu1", + "newRelease": "", + "arch": "", + "repository": "" + }, + "sg3-utils": { + "name": "sg3-utils", + "version": "1.44-1ubuntu2", + "release": "", + "newVersion": "1.44-1ubuntu2", + "newRelease": "", + "arch": "", + "repository": "" + }, + "sg3-utils-udev": { + "name": "sg3-utils-udev", + "version": "1.44-1ubuntu2", + "release": "", + "newVersion": "1.44-1ubuntu2", + "newRelease": "", + "arch": "", + "repository": "" + }, + "shared-mime-info": { + "name": "shared-mime-info", + "version": "1.15-1", + "release": "", + "newVersion": "1.15-1", + "newRelease": "", + "arch": "", + "repository": "" + }, + "snapd": { + "name": "snapd", + "version": "2.48.3+20.04", + "release": "", + "newVersion": "2.48.3+20.04", + "newRelease": "", + "arch": "", + "repository": "", + "AffectedProcs": [ + { + "pid": "466", + "name": "snapd" + } + ] + }, + "software-properties-common": { + "name": "software-properties-common", + "version": "0.98.9.4", + "release": "", + "newVersion": "0.98.9.4", + "newRelease": "", + "arch": "", + "repository": "" + }, + "sosreport": { + "name": "sosreport", + "version": "4.0-1~ubuntu0.20.04.3", + "release": "", + "newVersion": "4.0-1~ubuntu0.20.04.3", + "newRelease": "", + "arch": "", + "repository": "" + }, + "sound-theme-freedesktop": { + "name": "sound-theme-freedesktop", + "version": "0.8-2ubuntu1", + "release": "", + "newVersion": "0.8-2ubuntu1", + "newRelease": "", + "arch": "", + "repository": "" + }, + "squashfs-tools": { + "name": "squashfs-tools", + "version": "1:4.4-1", + "release": "", + "newVersion": "1:4.4-1", + "newRelease": "", + "arch": "", + "repository": "" + }, + "ssh-import-id": { + "name": "ssh-import-id", + "version": "5.10-0ubuntu1", + "release": "", + "newVersion": "5.10-0ubuntu1", + "newRelease": "", + "arch": "", + "repository": "" + }, + "strace": { + "name": "strace", + "version": "5.5-3ubuntu1", + "release": "", + "newVersion": "5.5-3ubuntu1", + "newRelease": "", + "arch": "", + "repository": "" + }, + "sudo": { + "name": "sudo", + "version": "1.8.31-1ubuntu1.2", + "release": "", + "newVersion": "1.8.31-1ubuntu1.2", + "newRelease": "", + "arch": "", + "repository": "", + "AffectedProcs": [ + { + "pid": "2285", + "name": "sudo" + } + ] + }, + "systemd": { + "name": "systemd", + "version": "245.4-4ubuntu3.4", + "release": "", + "newVersion": "245.4-4ubuntu3.5", + "newRelease": "", + "arch": "", + "repository": "focal-updates/main" + }, + "systemd-sysv": { + "name": "systemd-sysv", + "version": "245.4-4ubuntu3.4", + "release": "", + "newVersion": "245.4-4ubuntu3.5", + "newRelease": "", + "arch": "", + "repository": "focal-updates/main" + }, + "systemd-timesyncd": { + "name": "systemd-timesyncd", + "version": "245.4-4ubuntu3.4", + "release": "", + "newVersion": "245.4-4ubuntu3.5", + "newRelease": "", + "arch": "", + "repository": "focal-updates/main" + }, + "sysvinit-utils": { + "name": "sysvinit-utils", + "version": "2.96-2.1ubuntu1", + "release": "", + "newVersion": "2.96-2.1ubuntu1", + "newRelease": "", + "arch": "", + "repository": "" + }, + "tar": { + "name": "tar", + "version": "1.30+dfsg-7ubuntu0.20.04.1", + "release": "", + "newVersion": "1.30+dfsg-7ubuntu0.20.04.1", + "newRelease": "", + "arch": "", + "repository": "" + }, + "tcpdump": { + "name": "tcpdump", + "version": "4.9.3-4", + "release": "", + "newVersion": "4.9.3-4", + "newRelease": "", + "arch": "", + "repository": "" + }, + "telnet": { + "name": "telnet", + "version": "0.17-41.2build1", + "release": "", + "newVersion": "0.17-41.2build1", + "newRelease": "", + "arch": "", + "repository": "" + }, + "thin-provisioning-tools": { + "name": "thin-provisioning-tools", + "version": "0.8.5-4build1", + "release": "", + "newVersion": "0.8.5-4build1", + "newRelease": "", + "arch": "", + "repository": "" + }, + "time": { + "name": "time", + "version": "1.7-25.1build1", + "release": "", + "newVersion": "1.7-25.1build1", + "newRelease": "", + "arch": "", + "repository": "" + }, + "tmux": { + "name": "tmux", + "version": "3.0a-2ubuntu0.2", + "release": "", + "newVersion": "3.0a-2ubuntu0.2", + "newRelease": "", + "arch": "", + "repository": "" + }, + "tpm-udev": { + "name": "tpm-udev", + "version": "0.4", + "release": "", + "newVersion": "0.4", + "newRelease": "", + "arch": "", + "repository": "" + }, + "tzdata": { + "name": "tzdata", + "version": "2021a-0ubuntu0.20.04", + "release": "", + "newVersion": "2021a-0ubuntu0.20.04", + "newRelease": "", + "arch": "", + "repository": "" + }, + "ubuntu-advantage-tools": { + "name": "ubuntu-advantage-tools", + "version": "20.3", + "release": "", + "newVersion": "20.3", + "newRelease": "", + "arch": "", + "repository": "" + }, + "ubuntu-keyring": { + "name": "ubuntu-keyring", + "version": "2020.02.11.2", + "release": "", + "newVersion": "2020.02.11.2", + "newRelease": "", + "arch": "", + "repository": "" + }, + "ubuntu-minimal": { + "name": "ubuntu-minimal", + "version": "1.450.2", + "release": "", + "newVersion": "1.450.2", + "newRelease": "", + "arch": "", + "repository": "" + }, + "ubuntu-release-upgrader-core": { + "name": "ubuntu-release-upgrader-core", + "version": "1:20.04.30", + "release": "", + "newVersion": "1:20.04.30", + "newRelease": "", + "arch": "", + "repository": "" + }, + "ubuntu-server": { + "name": "ubuntu-server", + "version": "1.450.2", + "release": "", + "newVersion": "1.450.2", + "newRelease": "", + "arch": "", + "repository": "" + }, + "ubuntu-standard": { + "name": "ubuntu-standard", + "version": "1.450.2", + "release": "", + "newVersion": "1.450.2", + "newRelease": "", + "arch": "", + "repository": "" + }, + "ucf": { + "name": "ucf", + "version": "3.0038+nmu1", + "release": "", + "newVersion": "3.0038+nmu1", + "newRelease": "", + "arch": "", + "repository": "" + }, + "udev": { + "name": "udev", + "version": "245.4-4ubuntu3.4", + "release": "", + "newVersion": "245.4-4ubuntu3.5", + "newRelease": "", + "arch": "", + "repository": "focal-updates/main" + }, + "ufw": { + "name": "ufw", + "version": "0.36-6", + "release": "", + "newVersion": "0.36-6", + "newRelease": "", + "arch": "", + "repository": "" + }, + "unattended-upgrades": { + "name": "unattended-upgrades", + "version": "2.3ubuntu0.1", + "release": "", + "newVersion": "2.3ubuntu0.1", + "newRelease": "", + "arch": "", + "repository": "" + }, + "update-manager-core": { + "name": "update-manager-core", + "version": "1:20.04.10.5", + "release": "", + "newVersion": "1:20.04.10.6", + "newRelease": "", + "arch": "", + "repository": "focal-updates/main" + }, + "update-notifier-common": { + "name": "update-notifier-common", + "version": "3.192.30.5", + "release": "", + "newVersion": "3.192.30.5", + "newRelease": "", + "arch": "", + "repository": "" + }, + "usb.ids": { + "name": "usb.ids", + "version": "2020.03.19-1", + "release": "", + "newVersion": "2020.03.19-1", + "newRelease": "", + "arch": "", + "repository": "" + }, + "usbutils": { + "name": "usbutils", + "version": "1:012-2", + "release": "", + "newVersion": "1:012-2", + "newRelease": "", + "arch": "", + "repository": "" + }, + "util-linux": { + "name": "util-linux", + "version": "2.34-0.1ubuntu9.1", + "release": "", + "newVersion": "2.34-0.1ubuntu9.1", + "newRelease": "", + "arch": "", + "repository": "" + }, + "uuid-runtime": { + "name": "uuid-runtime", + "version": "2.34-0.1ubuntu9.1", + "release": "", + "newVersion": "2.34-0.1ubuntu9.1", + "newRelease": "", + "arch": "", + "repository": "" + }, + "vim": { + "name": "vim", + "version": "2:8.1.2269-1ubuntu5", + "release": "", + "newVersion": "2:8.1.2269-1ubuntu5", + "newRelease": "", + "arch": "", + "repository": "" + }, + "vim-common": { + "name": "vim-common", + "version": "2:8.1.2269-1ubuntu5", + "release": "", + "newVersion": "2:8.1.2269-1ubuntu5", + "newRelease": "", + "arch": "", + "repository": "" + }, + "vim-runtime": { + "name": "vim-runtime", + "version": "2:8.1.2269-1ubuntu5", + "release": "", + "newVersion": "2:8.1.2269-1ubuntu5", + "newRelease": "", + "arch": "", + "repository": "" + }, + "vim-tiny": { + "name": "vim-tiny", + "version": "2:8.1.2269-1ubuntu5", + "release": "", + "newVersion": "2:8.1.2269-1ubuntu5", + "newRelease": "", + "arch": "", + "repository": "" + }, + "wget": { + "name": "wget", + "version": "1.20.3-1ubuntu1", + "release": "", + "newVersion": "1.20.3-1ubuntu1", + "newRelease": "", + "arch": "", + "repository": "" + }, + "whiptail": { + "name": "whiptail", + "version": "0.52.21-4ubuntu2", + "release": "", + "newVersion": "0.52.21-4ubuntu2", + "newRelease": "", + "arch": "", + "repository": "" + }, + "xauth": { + "name": "xauth", + "version": "1:1.1-0ubuntu1", + "release": "", + "newVersion": "1:1.1-0ubuntu1", + "newRelease": "", + "arch": "", + "repository": "" + }, + "xdg-user-dirs": { + "name": "xdg-user-dirs", + "version": "0.17-2ubuntu1", + "release": "", + "newVersion": "0.17-2ubuntu1", + "newRelease": "", + "arch": "", + "repository": "" + }, + "xfsprogs": { + "name": "xfsprogs", + "version": "5.3.0-1ubuntu2", + "release": "", + "newVersion": "5.3.0-1ubuntu2", + "newRelease": "", + "arch": "", + "repository": "" + }, + "xkb-data": { + "name": "xkb-data", + "version": "2.29-2", + "release": "", + "newVersion": "2.29-2", + "newRelease": "", + "arch": "", + "repository": "" + }, + "xxd": { + "name": "xxd", + "version": "2:8.1.2269-1ubuntu5", + "release": "", + "newVersion": "2:8.1.2269-1ubuntu5", + "newRelease": "", + "arch": "", + "repository": "" + }, + "xz-utils": { + "name": "xz-utils", + "version": "5.2.4-1ubuntu1", + "release": "", + "newVersion": "5.2.4-1ubuntu1", + "newRelease": "", + "arch": "", + "repository": "" + }, + "zerofree": { + "name": "zerofree", + "version": "1.1.1-1", + "release": "", + "newVersion": "1.1.1-1", + "newRelease": "", + "arch": "", + "repository": "" + }, + "zlib1g": { + "name": "zlib1g", + "version": "1:1.2.11.dfsg-2ubuntu1.2", + "release": "", + "newVersion": "1:1.2.11.dfsg-2ubuntu1.2", + "newRelease": "", + "arch": "", + "repository": "" + } + }, + "SrcPackages": { + "acl": { + "name": "acl", + "version": "2.2.53-6", + "arch": "", + "binaryNames": [ + "libacl1" + ] + }, + "alsa-lib": { + "name": "alsa-lib", + "version": "1.2.2-2.1ubuntu2.3", + "arch": "", + "binaryNames": [ + "libasound2", + "libasound2-data" + ] + }, + "appstream": { + "name": "appstream", + "version": "0.12.10-2", + "arch": "", + "binaryNames": [ + "libappstream4" + ] + }, + "argon2": { + "name": "argon2", + "version": "0~20171227-0.2", + "arch": "", + "binaryNames": [ + "libargon2-1" + ] + }, + "attr": { + "name": "attr", + "version": "1:2.4.48-5", + "arch": "", + "binaryNames": [ + "libattr1" + ] + }, + "audit": { + "name": "audit", + "version": "1:2.8.5-2ubuntu6", + "arch": "", + "binaryNames": [ + "libaudit-common", + "libaudit1" + ] + }, + "automat": { + "name": "automat", + "version": "0.8.0-1ubuntu1", + "arch": "", + "binaryNames": [ + "python3-automat" + ] + }, + "bind9": { + "name": "bind9", + "version": "1:9.16.1-0ubuntu2.6", + "arch": "", + "binaryNames": [ + "bind9-dnsutils", + "bind9-host", + "bind9-libs" + ] + }, + "blinker": { + "name": "blinker", + "version": "1.4+dfsg1-0.3ubuntu1", + "arch": "", + "binaryNames": [ + "python3-blinker" + ] + }, + "brotli": { + "name": "brotli", + "version": "1.0.7-6ubuntu0.1", + "arch": "", + "binaryNames": [ + "libbrotli1" + ] + }, + "busybox": { + "name": "busybox", + "version": "1:1.30.1-4ubuntu6.3", + "arch": "", + "binaryNames": [ + "busybox-initramfs", + "busybox-static" + ] + }, + "cdebconf": { + "name": "cdebconf", + "version": "0.251ubuntu1", + "arch": "", + "binaryNames": [ + "libdebconfclient0" + ] + }, + "chardet": { + "name": "chardet", + "version": "3.0.4-4build1", + "arch": "", + "binaryNames": [ + "python3-chardet" + ] + }, + "cloud-initramfs-tools": { + "name": "cloud-initramfs-tools", + "version": "0.45ubuntu1", + "arch": "", + "binaryNames": [ + "cloud-initramfs-copymods", + "cloud-initramfs-dyn-netconf", + "overlayroot" + ] + }, + "cloud-utils": { + "name": "cloud-utils", + "version": "0.31-7-gd99b2d76-0ubuntu1", + "arch": "", + "binaryNames": [ + "cloud-guest-utils" + ] + }, + "configobj": { + "name": "configobj", + "version": "5.0.6-4", + "arch": "", + "binaryNames": [ + "python3-configobj" + ] + }, + "constantly": { + "name": "constantly", + "version": "15.1.0-1build1", + "arch": "", + "binaryNames": [ + "python3-constantly" + ] + }, + "cyrus-sasl2": { + "name": "cyrus-sasl2", + "version": "2.1.27+dfsg-2", + "arch": "", + "binaryNames": [ + "libsasl2-2", + "libsasl2-modules", + "libsasl2-modules-db" + ] + }, + "db5.3": { + "name": "db5.3", + "version": "5.3.28+dfsg1-0.6ubuntu2", + "arch": "", + "binaryNames": [ + "libdb5.3" + ] + }, + "dbus-python": { + "name": "dbus-python", + "version": "1.2.16-1build1", + "arch": "", + "binaryNames": [ + "python3-dbus" + ] + }, + "dconf": { + "name": "dconf", + "version": "0.36.0-1", + "arch": "", + "binaryNames": [ + "dconf-gsettings-backend", + "dconf-service", + "libdconf1" + ] + }, + "distro-info": { + "name": "distro-info", + "version": "0.23ubuntu1", + "arch": "", + "binaryNames": [ + "python3-distro-info" + ] + }, + "efivar": { + "name": "efivar", + "version": "37-2ubuntu2.2", + "arch": "", + "binaryNames": [ + "libefiboot1", + "libefivar1" + ] + }, + "entrypoints": { + "name": "entrypoints", + "version": "0.3-2ubuntu1", + "arch": "", + "binaryNames": [ + "python3-entrypoints" + ] + }, + "expat": { + "name": "expat", + "version": "2.2.9-1build1", + "arch": "", + "binaryNames": [ + "libexpat1" + ] + }, + "flex": { + "name": "flex", + "version": "2.6.4-6.2", + "arch": "", + "binaryNames": [ + "libfl2" + ] + }, + "fonts-ubuntu": { + "name": "fonts-ubuntu", + "version": "0.83-4ubuntu1", + "arch": "", + "binaryNames": [ + "fonts-ubuntu-console" + ] + }, + "freetype": { + "name": "freetype", + "version": "2.10.1-2ubuntu0.1", + "arch": "", + "binaryNames": [ + "libfreetype6" + ] + }, + "fribidi": { + "name": "fribidi", + "version": "1.0.8-2", + "arch": "", + "binaryNames": [ + "libfribidi0" + ] + }, + "gcab": { + "name": "gcab", + "version": "1.4-1", + "arch": "", + "binaryNames": [ + "libgcab-1.0-0" + ] + }, + "gcc-10": { + "name": "gcc-10", + "version": "10.2.0-5ubuntu1~20.04", + "arch": "", + "binaryNames": [ + "gcc-10-base", + "libgcc-s1", + "libstdc++6" + ] + }, + "gdbm": { + "name": "gdbm", + "version": "1.18.1-5", + "arch": "", + "binaryNames": [ + "libgdbm-compat4", + "libgdbm6" + ] + }, + "gettext": { + "name": "gettext", + "version": "0.19.8.1-10build1", + "arch": "", + "binaryNames": [ + "gettext-base" + ] + }, + "glib2.0": { + "name": "glib2.0", + "version": "2.64.6-1~ubuntu20.04.1", + "arch": "", + "binaryNames": [ + "libglib2.0-0", + "libglib2.0-bin", + "libglib2.0-data" + ] + }, + "glibc": { + "name": "glibc", + "version": "2.31-0ubuntu9.2", + "arch": "", + "binaryNames": [ + "libc-bin", + "libc6", + "locales" + ] + }, + "gmp": { + "name": "gmp", + "version": "2:6.2.0+dfsg-4", + "arch": "", + "binaryNames": [ + "libgmp10" + ] + }, + "gnupg2": { + "name": "gnupg2", + "version": "2.2.19-3ubuntu2.1", + "arch": "", + "binaryNames": [ + "dirmngr", + "gnupg", + "gnupg-l10n", + "gnupg-utils", + "gpg", + "gpg-agent", + "gpg-wks-client", + "gpg-wks-server", + "gpgconf", + "gpgsm", + "gpgv" + ] + }, + "gnutls28": { + "name": "gnutls28", + "version": "3.6.13-2ubuntu1.3", + "arch": "", + "binaryNames": [ + "libgnutls30" + ] + }, + "gobject-introspection": { + "name": "gobject-introspection", + "version": "1.64.1-1~ubuntu20.04.1", + "arch": "", + "binaryNames": [ + "gir1.2-glib-2.0", + "libgirepository-1.0-1" + ] + }, + "gpgme1.0": { + "name": "gpgme1.0", + "version": "1.13.1-7ubuntu2", + "arch": "", + "binaryNames": [ + "libgpgme11" + ] + }, + "gpm": { + "name": "gpm", + "version": "1.20.7-5", + "arch": "", + "binaryNames": [ + "libgpm2" + ] + }, + "groff": { + "name": "groff", + "version": "1.22.4-4build1", + "arch": "", + "binaryNames": [ + "groff-base" + ] + }, + "grub2": { + "name": "grub2", + "version": "2.04-1ubuntu26.9", + "arch": "", + "binaryNames": [ + "grub-common", + "grub-pc", + "grub-pc-bin", + "grub2-common" + ] + }, + "gstreamer1.0": { + "name": "gstreamer1.0", + "version": "1.16.2-2", + "arch": "", + "binaryNames": [ + "libgstreamer1.0-0" + ] + }, + "heimdal": { + "name": "heimdal", + "version": "7.7.0+dfsg-1ubuntu1", + "arch": "", + "binaryNames": [ + "libasn1-8-heimdal", + "libgssapi3-heimdal", + "libhcrypto4-heimdal", + "libheimbase1-heimdal", + "libheimntlm0-heimdal", + "libhx509-5-heimdal", + "libkrb5-26-heimdal", + "libroken18-heimdal", + "libwind0-heimdal" + ] + }, + "hyperlink": { + "name": "hyperlink", + "version": "19.0.0-1", + "arch": "", + "binaryNames": [ + "python3-hyperlink" + ] + }, + "icu": { + "name": "icu", + "version": "66.1-2ubuntu2", + "arch": "", + "binaryNames": [ + "libicu66" + ] + }, + "incremental": { + "name": "incremental", + "version": "16.10.1-3.2", + "arch": "", + "binaryNames": [ + "python3-incremental" + ] + }, + "iputils": { + "name": "iputils", + "version": "3:20190709-3", + "arch": "", + "binaryNames": [ + "iputils-ping", + "iputils-tracepath" + ] + }, + "isc-dhcp": { + "name": "isc-dhcp", + "version": "4.4.1-2.1ubuntu5", + "arch": "", + "binaryNames": [ + "isc-dhcp-client", + "isc-dhcp-common" + ] + }, + "jinja2": { + "name": "jinja2", + "version": "2.10.1-2", + "arch": "", + "binaryNames": [ + "python3-jinja2" + ] + }, + "json-c": { + "name": "json-c", + "version": "0.13.1+dfsg-7ubuntu0.3", + "arch": "", + "binaryNames": [ + "libjson-c4" + ] + }, + "json-glib": { + "name": "json-glib", + "version": "1.4.4-2ubuntu2", + "arch": "", + "binaryNames": [ + "libjson-glib-1.0-0", + "libjson-glib-1.0-common" + ] + }, + "keyutils": { + "name": "keyutils", + "version": "1.6-6ubuntu1", + "arch": "", + "binaryNames": [ + "libkeyutils1" + ] + }, + "klibc": { + "name": "klibc", + "version": "2.0.7-1ubuntu5", + "arch": "", + "binaryNames": [ + "klibc-utils", + "libklibc" + ] + }, + "krb5": { + "name": "krb5", + "version": "1.17-6ubuntu4.1", + "arch": "", + "binaryNames": [ + "krb5-locales", + "libgssapi-krb5-2", + "libk5crypto3", + "libkrb5-3", + "libkrb5support0" + ] + }, + "landscape-client": { + "name": "landscape-client", + "version": "19.12-0ubuntu4.1", + "arch": "", + "binaryNames": [ + "landscape-common" + ] + }, + "language-selector": { + "name": "language-selector", + "version": "0.204.2", + "arch": "", + "binaryNames": [ + "language-selector-common" + ] + }, + "lazr.restfulclient": { + "name": "lazr.restfulclient", + "version": "0.14.2-2build1", + "arch": "", + "binaryNames": [ + "python3-lazr.restfulclient" + ] + }, + "lazr.uri": { + "name": "lazr.uri", + "version": "1.0.3-4build1", + "arch": "", + "binaryNames": [ + "python3-lazr.uri" + ] + }, + "libaio": { + "name": "libaio", + "version": "0.3.112-5", + "arch": "", + "binaryNames": [ + "libaio1" + ] + }, + "libarchive": { + "name": "libarchive", + "version": "3.4.0-2ubuntu1", + "arch": "", + "binaryNames": [ + "libarchive13" + ] + }, + "libassuan": { + "name": "libassuan", + "version": "2.5.3-7ubuntu2", + "arch": "", + "binaryNames": [ + "libassuan0" + ] + }, + "libbsd": { + "name": "libbsd", + "version": "0.10.0-1", + "arch": "", + "binaryNames": [ + "libbsd0" + ] + }, + "libcanberra": { + "name": "libcanberra", + "version": "0.30-7ubuntu1", + "arch": "", + "binaryNames": [ + "libcanberra0" + ] + }, + "libcap-ng": { + "name": "libcap-ng", + "version": "0.7.9-2.1build1", + "arch": "", + "binaryNames": [ + "libcap-ng0" + ] + }, + "libcbor": { + "name": "libcbor", + "version": "0.6.0-0ubuntu1", + "arch": "", + "binaryNames": [ + "libcbor0.6" + ] + }, + "libdrm": { + "name": "libdrm", + "version": "2.4.102-1ubuntu1~20.04.1", + "arch": "", + "binaryNames": [ + "libdrm-common", + "libdrm2" + ] + }, + "libeatmydata": { + "name": "libeatmydata", + "version": "105-7", + "arch": "", + "binaryNames": [ + "eatmydata", + "libeatmydata1" + ] + }, + "libedit": { + "name": "libedit", + "version": "3.1-20191231-1", + "arch": "", + "binaryNames": [ + "libedit2" + ] + }, + "libestr": { + "name": "libestr", + "version": "0.1.10-2.1", + "arch": "", + "binaryNames": [ + "libestr0" + ] + }, + "libevent": { + "name": "libevent", + "version": "2.1.11-stable-1", + "arch": "", + "binaryNames": [ + "libevent-2.1-7" + ] + }, + "libfastjson": { + "name": "libfastjson", + "version": "0.99.8-2", + "arch": "", + "binaryNames": [ + "libfastjson4" + ] + }, + "libffi": { + "name": "libffi", + "version": "3.3-4", + "arch": "", + "binaryNames": [ + "libffi7" + ] + }, + "libfido2": { + "name": "libfido2", + "version": "1.3.1-1ubuntu2", + "arch": "", + "binaryNames": [ + "libfido2-1" + ] + }, + "libgpg-error": { + "name": "libgpg-error", + "version": "1.37-1", + "arch": "", + "binaryNames": [ + "libgpg-error0" + ] + }, + "libgudev": { + "name": "libgudev", + "version": "233-1", + "arch": "", + "binaryNames": [ + "libgudev-1.0-0" + ] + }, + "libgusb": { + "name": "libgusb", + "version": "0.3.4-0.1", + "arch": "", + "binaryNames": [ + "libgusb2" + ] + }, + "libidn2": { + "name": "libidn2", + "version": "2.2.0-2", + "arch": "", + "binaryNames": [ + "libidn2-0" + ] + }, + "libksba": { + "name": "libksba", + "version": "1.3.5-2", + "arch": "", + "binaryNames": [ + "libksba8" + ] + }, + "libmaxminddb": { + "name": "libmaxminddb", + "version": "1.4.2-0ubuntu1.20.04.1", + "arch": "", + "binaryNames": [ + "libmaxminddb0" + ] + }, + "libmnl": { + "name": "libmnl", + "version": "1.0.4-2", + "arch": "", + "binaryNames": [ + "libmnl0" + ] + }, + "libmspack": { + "name": "libmspack", + "version": "0.10.1-2", + "arch": "", + "binaryNames": [ + "libmspack0" + ] + }, + "libnetfilter-conntrack": { + "name": "libnetfilter-conntrack", + "version": "1.0.7-2", + "arch": "", + "binaryNames": [ + "libnetfilter-conntrack3" + ] + }, + "libnfnetlink": { + "name": "libnfnetlink", + "version": "1.0.1-3build1", + "arch": "", + "binaryNames": [ + "libnfnetlink0" + ] + }, + "libnftnl": { + "name": "libnftnl", + "version": "1.1.5-1", + "arch": "", + "binaryNames": [ + "libnftnl11" + ] + }, + "libogg": { + "name": "libogg", + "version": "1.3.4-0ubuntu1", + "arch": "", + "binaryNames": [ + "libogg0" + ] + }, + "libpcap": { + "name": "libpcap", + "version": "1.9.1-3", + "arch": "", + "binaryNames": [ + "libpcap0.8" + ] + }, + "libpipeline": { + "name": "libpipeline", + "version": "1.5.2-2build1", + "arch": "", + "binaryNames": [ + "libpipeline1" + ] + }, + "libpng1.6": { + "name": "libpng1.6", + "version": "1.6.37-2", + "arch": "", + "binaryNames": [ + "libpng16-16" + ] + }, + "libproxy": { + "name": "libproxy", + "version": "0.4.15-10ubuntu1.2", + "arch": "", + "binaryNames": [ + "libproxy1v5" + ] + }, + "libpsl": { + "name": "libpsl", + "version": "0.21.0-1ubuntu1", + "arch": "", + "binaryNames": [ + "libpsl5" + ] + }, + "libseccomp": { + "name": "libseccomp", + "version": "2.4.3-1ubuntu3.20.04.3", + "arch": "", + "binaryNames": [ + "libseccomp2" + ] + }, + "libselinux": { + "name": "libselinux", + "version": "3.0-1build2", + "arch": "", + "binaryNames": [ + "libselinux1" + ] + }, + "libsemanage": { + "name": "libsemanage", + "version": "3.0-1build2", + "arch": "", + "binaryNames": [ + "libsemanage-common", + "libsemanage1" + ] + }, + "libsepol": { + "name": "libsepol", + "version": "3.0-1", + "arch": "", + "binaryNames": [ + "libsepol1" + ] + }, + "libsigsegv": { + "name": "libsigsegv", + "version": "2.12-2", + "arch": "", + "binaryNames": [ + "libsigsegv2" + ] + }, + "libsmbios": { + "name": "libsmbios", + "version": "2.4.3-1", + "arch": "", + "binaryNames": [ + "libsmbios-c2" + ] + }, + "libsodium": { + "name": "libsodium", + "version": "1.0.18-1", + "arch": "", + "binaryNames": [ + "libsodium23" + ] + }, + "libsoup2.4": { + "name": "libsoup2.4", + "version": "2.70.0-1", + "arch": "", + "binaryNames": [ + "libsoup2.4-1" + ] + }, + "libssh": { + "name": "libssh", + "version": "0.9.3-2ubuntu2.1", + "arch": "", + "binaryNames": [ + "libssh-4" + ] + }, + "libtool": { + "name": "libtool", + "version": "2.4.6-14", + "arch": "", + "binaryNames": [ + "libltdl7" + ] + }, + "libunistring": { + "name": "libunistring", + "version": "0.9.10-2", + "arch": "", + "binaryNames": [ + "libunistring2" + ] + }, + "libunwind": { + "name": "libunwind", + "version": "1.2.1-9build1", + "arch": "", + "binaryNames": [ + "libunwind8" + ] + }, + "liburcu": { + "name": "liburcu", + "version": "0.11.1-2", + "arch": "", + "binaryNames": [ + "liburcu6" + ] + }, + "libusb-1.0": { + "name": "libusb-1.0", + "version": "2:1.0.23-2build1", + "arch": "", + "binaryNames": [ + "libusb-1.0-0" + ] + }, + "libutempter": { + "name": "libutempter", + "version": "1.1.6-4", + "arch": "", + "binaryNames": [ + "libutempter0" + ] + }, + "libvorbis": { + "name": "libvorbis", + "version": "1.3.6-2ubuntu1", + "arch": "", + "binaryNames": [ + "libvorbis0a", + "libvorbisfile3" + ] + }, + "libx11": { + "name": "libx11", + "version": "2:1.6.9-2ubuntu1.1", + "arch": "", + "binaryNames": [ + "libx11-6", + "libx11-data" + ] + }, + "libxau": { + "name": "libxau", + "version": "1:1.0.9-0ubuntu1", + "arch": "", + "binaryNames": [ + "libxau6" + ] + }, + "libxcb": { + "name": "libxcb", + "version": "1.14-2", + "arch": "", + "binaryNames": [ + "libxcb1" + ] + }, + "libxcrypt": { + "name": "libxcrypt", + "version": "1:4.4.10-10ubuntu4", + "arch": "", + "binaryNames": [ + "libcrypt1" + ] + }, + "libxdmcp": { + "name": "libxdmcp", + "version": "1:1.1.3-0ubuntu1", + "arch": "", + "binaryNames": [ + "libxdmcp6" + ] + }, + "libxext": { + "name": "libxext", + "version": "2:1.3.4-0ubuntu1", + "arch": "", + "binaryNames": [ + "libxext6" + ] + }, + "libxmlb": { + "name": "libxmlb", + "version": "0.1.15-2", + "arch": "", + "binaryNames": [ + "libxmlb1" + ] + }, + "libxmu": { + "name": "libxmu", + "version": "2:1.1.3-0ubuntu1", + "arch": "", + "binaryNames": [ + "libxmuu1" + ] + }, + "libxslt": { + "name": "libxslt", + "version": "1.1.34-4", + "arch": "", + "binaryNames": [ + "libxslt1.1" + ] + }, + "libyaml": { + "name": "libyaml", + "version": "0.2.2-1", + "arch": "", + "binaryNames": [ + "libyaml-0-2" + ] + }, + "libzstd": { + "name": "libzstd", + "version": "1.4.4+dfsg-3", + "arch": "", + "binaryNames": [ + "libzstd1" + ] + }, + "linux-atm": { + "name": "linux-atm", + "version": "1:2.5.1-4", + "arch": "", + "binaryNames": [ + "libatm1" + ] + }, + "linux-meta-aws": { + "name": "linux-meta-aws", + "version": "5.4.0.1038.39", + "arch": "", + "binaryNames": [ + "linux-aws", + "linux-headers-aws", + "linux-image-aws" + ] + }, + "lmdb": { + "name": "lmdb", + "version": "0.9.24-1", + "arch": "", + "binaryNames": [ + "liblmdb0" + ] + }, + "lsb": { + "name": "lsb", + "version": "11.1.0ubuntu2", + "arch": "", + "binaryNames": [ + "lsb-base", + "lsb-release" + ] + }, + "lzo2": { + "name": "lzo2", + "version": "2.10-2", + "arch": "", + "binaryNames": [ + "liblzo2-2" + ] + }, + "markupsafe": { + "name": "markupsafe", + "version": "1.1.0-1build2", + "arch": "", + "binaryNames": [ + "python3-markupsafe" + ] + }, + "more-itertools": { + "name": "more-itertools", + "version": "4.2.0-1build1", + "arch": "", + "binaryNames": [ + "python3-more-itertools" + ] + }, + "mpdecimal": { + "name": "mpdecimal", + "version": "2.4.2-3", + "arch": "", + "binaryNames": [ + "libmpdec2" + ] + }, + "mpfr4": { + "name": "mpfr4", + "version": "4.0.2-1", + "arch": "", + "binaryNames": [ + "libmpfr6" + ] + }, + "mtr": { + "name": "mtr", + "version": "0.93-1", + "arch": "", + "binaryNames": [ + "mtr-tiny" + ] + }, + "ncurses": { + "name": "ncurses", + "version": "6.2-0ubuntu2", + "arch": "", + "binaryNames": [ + "libncurses6", + "libncursesw6", + "libtinfo6", + "ncurses-base", + "ncurses-bin", + "ncurses-term" + ] + }, + "netifaces": { + "name": "netifaces", + "version": "0.10.4-1ubuntu4", + "arch": "", + "binaryNames": [ + "python3-netifaces" + ] + }, + "netkit-ftp": { + "name": "netkit-ftp", + "version": "0.17-34.1", + "arch": "", + "binaryNames": [ + "ftp" + ] + }, + "netkit-telnet": { + "name": "netkit-telnet", + "version": "0.17-41.2build1", + "arch": "", + "binaryNames": [ + "telnet" + ] + }, + "nettle": { + "name": "nettle", + "version": "3.5.1+really3.5.1-2", + "arch": "", + "binaryNames": [ + "libhogweed5", + "libnettle7" + ] + }, + "newt": { + "name": "newt", + "version": "0.52.21-4ubuntu2", + "arch": "", + "binaryNames": [ + "libnewt0.52", + "python3-newt", + "whiptail" + ] + }, + "nghttp2": { + "name": "nghttp2", + "version": "1.40.0-1build1", + "arch": "", + "binaryNames": [ + "libnghttp2-14" + ] + }, + "npth": { + "name": "npth", + "version": "1.6-1", + "arch": "", + "binaryNames": [ + "libnpth0" + ] + }, + "numactl": { + "name": "numactl", + "version": "2.0.12-1", + "arch": "", + "binaryNames": [ + "libnuma1" + ] + }, + "open-isns": { + "name": "open-isns", + "version": "0.97-3", + "arch": "", + "binaryNames": [ + "libisns0" + ] + }, + "openldap": { + "name": "openldap", + "version": "2.4.49+dfsg-2ubuntu1.7", + "arch": "", + "binaryNames": [ + "libldap-2.4-2", + "libldap-common" + ] + }, + "openssh": { + "name": "openssh", + "version": "1:8.2p1-4ubuntu0.1", + "arch": "", + "binaryNames": [ + "openssh-client", + "openssh-server", + "openssh-sftp-server" + ] + }, + "p11-kit": { + "name": "p11-kit", + "version": "0.23.20-1ubuntu0.1", + "arch": "", + "binaryNames": [ + "libp11-kit0" + ] + }, + "pam": { + "name": "pam", + "version": "1.3.1-5ubuntu4.1", + "arch": "", + "binaryNames": [ + "libpam-modules", + "libpam-modules-bin", + "libpam-runtime", + "libpam0g" + ] + }, + "pcre2": { + "name": "pcre2", + "version": "10.34-7", + "arch": "", + "binaryNames": [ + "libpcre2-8-0" + ] + }, + "pcre3": { + "name": "pcre3", + "version": "2:8.39-12build1", + "arch": "", + "binaryNames": [ + "libpcre3" + ] + }, + "pexpect": { + "name": "pexpect", + "version": "4.6.0-1build1", + "arch": "", + "binaryNames": [ + "python3-pexpect" + ] + }, + "pinentry": { + "name": "pinentry", + "version": "1.1.0-3build1", + "arch": "", + "binaryNames": [ + "pinentry-curses" + ] + }, + "popt": { + "name": "popt", + "version": "1.16-14", + "arch": "", + "binaryNames": [ + "libpopt0" + ] + }, + "ptyprocess": { + "name": "ptyprocess", + "version": "0.6.0-1ubuntu1", + "arch": "", + "binaryNames": [ + "python3-ptyprocess" + ] + }, + "pyasn1": { + "name": "pyasn1", + "version": "0.4.2-3build1", + "arch": "", + "binaryNames": [ + "python3-pyasn1" + ] + }, + "pygobject": { + "name": "pygobject", + "version": "3.36.0-1", + "arch": "", + "binaryNames": [ + "python3-gi" + ] + }, + "pyhamcrest": { + "name": "pyhamcrest", + "version": "1.9.0-3", + "arch": "", + "binaryNames": [ + "python3-hamcrest" + ] + }, + "pyjwt": { + "name": "pyjwt", + "version": "1.7.1-2ubuntu2", + "arch": "", + "binaryNames": [ + "python3-jwt" + ] + }, + "pymacaroons": { + "name": "pymacaroons", + "version": "0.13.0-3", + "arch": "", + "binaryNames": [ + "python3-pymacaroons" + ] + }, + "pyopenssl": { + "name": "pyopenssl", + "version": "19.0.0-1build1", + "arch": "", + "binaryNames": [ + "python3-openssl" + ] + }, + "pyrsistent": { + "name": "pyrsistent", + "version": "0.15.5-1build1", + "arch": "", + "binaryNames": [ + "python3-pyrsistent" + ] + }, + "pyserial": { + "name": "pyserial", + "version": "3.4-5.1", + "arch": "", + "binaryNames": [ + "python3-serial" + ] + }, + "python-apt": { + "name": "python-apt", + "version": "2.0.0ubuntu0.20.04.4", + "arch": "", + "binaryNames": [ + "python-apt-common", + "python3-apt" + ] + }, + "python-attrs": { + "name": "python-attrs", + "version": "19.3.0-2", + "arch": "", + "binaryNames": [ + "python3-attr" + ] + }, + "python-certifi": { + "name": "python-certifi", + "version": "2019.11.28-1", + "arch": "", + "binaryNames": [ + "python3-certifi" + ] + }, + "python-cffi": { + "name": "python-cffi", + "version": "1.14.0-1build1", + "arch": "", + "binaryNames": [ + "python3-cffi-backend" + ] + }, + "python-click": { + "name": "python-click", + "version": "7.0-3", + "arch": "", + "binaryNames": [ + "python3-click" + ] + }, + "python-colorama": { + "name": "python-colorama", + "version": "0.4.3-1build1", + "arch": "", + "binaryNames": [ + "python3-colorama" + ] + }, + "python-cryptography": { + "name": "python-cryptography", + "version": "2.8-3ubuntu0.1", + "arch": "", + "binaryNames": [ + "python3-cryptography" + ] + }, + "python-debian": { + "name": "python-debian", + "version": "0.1.36ubuntu1", + "arch": "", + "binaryNames": [ + "python3-debian" + ] + }, + "python-distro": { + "name": "python-distro", + "version": "1.4.0-1", + "arch": "", + "binaryNames": [ + "python3-distro" + ] + }, + "python-httplib2": { + "name": "python-httplib2", + "version": "0.14.0-1ubuntu1", + "arch": "", + "binaryNames": [ + "python3-httplib2" + ] + }, + "python-idna": { + "name": "python-idna", + "version": "2.8-1", + "arch": "", + "binaryNames": [ + "python3-idna" + ] + }, + "python-importlib-metadata": { + "name": "python-importlib-metadata", + "version": "1.5.0-1", + "arch": "", + "binaryNames": [ + "python3-importlib-metadata" + ] + }, + "python-json-patch": { + "name": "python-json-patch", + "version": "1.23-3", + "arch": "", + "binaryNames": [ + "python3-jsonpatch" + ] + }, + "python-json-pointer": { + "name": "python-json-pointer", + "version": "2.0-0ubuntu1", + "arch": "", + "binaryNames": [ + "python3-json-pointer" + ] + }, + "python-jsonschema": { + "name": "python-jsonschema", + "version": "3.2.0-0ubuntu2", + "arch": "", + "binaryNames": [ + "python3-jsonschema" + ] + }, + "python-keyring": { + "name": "python-keyring", + "version": "18.0.1-2ubuntu1", + "arch": "", + "binaryNames": [ + "python3-keyring" + ] + }, + "python-launchpadlib": { + "name": "python-launchpadlib", + "version": "1.10.13-1", + "arch": "", + "binaryNames": [ + "python3-launchpadlib" + ] + }, + "python-nacl": { + "name": "python-nacl", + "version": "1.3.0-5", + "arch": "", + "binaryNames": [ + "python3-nacl" + ] + }, + "python-oauthlib": { + "name": "python-oauthlib", + "version": "3.1.0-1ubuntu2", + "arch": "", + "binaryNames": [ + "python3-oauthlib" + ] + }, + "python-pyasn1-modules": { + "name": "python-pyasn1-modules", + "version": "0.2.1-0.2build1", + "arch": "", + "binaryNames": [ + "python3-pyasn1-modules" + ] + }, + "python-requests-unixsocket": { + "name": "python-requests-unixsocket", + "version": "0.2.0-2", + "arch": "", + "binaryNames": [ + "python3-requests-unixsocket" + ] + }, + "python-secretstorage": { + "name": "python-secretstorage", + "version": "2.3.1-2ubuntu1", + "arch": "", + "binaryNames": [ + "python3-secretstorage" + ] + }, + "python-service-identity": { + "name": "python-service-identity", + "version": "18.1.0-5build1", + "arch": "", + "binaryNames": [ + "python3-service-identity" + ] + }, + "python-systemd": { + "name": "python-systemd", + "version": "234-3build2", + "arch": "", + "binaryNames": [ + "python3-systemd" + ] + }, + "python-urllib3": { + "name": "python-urllib3", + "version": "1.25.8-2ubuntu0.1", + "arch": "", + "binaryNames": [ + "python3-urllib3" + ] + }, + "python-wadllib": { + "name": "python-wadllib", + "version": "1.3.3-3build1", + "arch": "", + "binaryNames": [ + "python3-wadllib" + ] + }, + "python-zipp": { + "name": "python-zipp", + "version": "1.0.0-1", + "arch": "", + "binaryNames": [ + "python3-zipp" + ] + }, + "python3-defaults": { + "name": "python3-defaults", + "version": "3.8.2-0ubuntu2", + "arch": "", + "binaryNames": [ + "libpython3-stdlib", + "python3", + "python3-minimal" + ] + }, + "python3-stdlib-extensions": { + "name": "python3-stdlib-extensions", + "version": "3.8.5-1~20.04.1", + "arch": "", + "binaryNames": [ + "python3-distutils", + "python3-gdbm", + "python3-lib2to3" + ] + }, + "pyyaml": { + "name": "pyyaml", + "version": "5.3.1-1", + "arch": "", + "binaryNames": [ + "python3-yaml" + ] + }, + "readline": { + "name": "readline", + "version": "8.0-4", + "arch": "", + "binaryNames": [ + "libreadline8", + "readline-common" + ] + }, + "readline5": { + "name": "readline5", + "version": "5.2+dfsg-3build3", + "arch": "", + "binaryNames": [ + "libreadline5" + ] + }, + "requests": { + "name": "requests", + "version": "2.22.0-2ubuntu1", + "arch": "", + "binaryNames": [ + "python3-requests" + ] + }, + "rtmpdump": { + "name": "rtmpdump", + "version": "2.4+20151223.gitfa8646d.1-2build1", + "arch": "", + "binaryNames": [ + "librtmp1" + ] + }, + "setuptools": { + "name": "setuptools", + "version": "45.2.0-1", + "arch": "", + "binaryNames": [ + "python3-pkg-resources", + "python3-setuptools" + ] + }, + "shadow": { + "name": "shadow", + "version": "1:4.8.1-1ubuntu5.20.04", + "arch": "", + "binaryNames": [ + "login", + "passwd" + ] + }, + "simplejson": { + "name": "simplejson", + "version": "3.16.0-2ubuntu2", + "arch": "", + "binaryNames": [ + "python3-simplejson" + ] + }, + "six": { + "name": "six", + "version": "1.14.0-2", + "arch": "", + "binaryNames": [ + "python3-six" + ] + }, + "slang2": { + "name": "slang2", + "version": "2.3.2-4", + "arch": "", + "binaryNames": [ + "libslang2" + ] + }, + "snowball": { + "name": "snowball", + "version": "0+svn585-2", + "arch": "", + "binaryNames": [ + "libstemmer0d" + ] + }, + "software-properties": { + "name": "software-properties", + "version": "0.98.9.4", + "arch": "", + "binaryNames": [ + "python3-software-properties", + "software-properties-common" + ] + }, + "sqlite3": { + "name": "sqlite3", + "version": "3.31.1-4ubuntu0.2", + "arch": "", + "binaryNames": [ + "libsqlite3-0" + ] + }, + "sysvinit": { + "name": "sysvinit", + "version": "2.96-2.1ubuntu1", + "arch": "", + "binaryNames": [ + "sysvinit-utils" + ] + }, + "tcp-wrappers": { + "name": "tcp-wrappers", + "version": "7.6.q-30", + "arch": "", + "binaryNames": [ + "libwrap0" + ] + }, + "tdb": { + "name": "tdb", + "version": "1.4.2-3build1", + "arch": "", + "binaryNames": [ + "libtdb1" + ] + }, + "texinfo": { + "name": "texinfo", + "version": "6.7.0.dfsg.2-5", + "arch": "", + "binaryNames": [ + "info", + "install-info" + ] + }, + "tpm2-tss": { + "name": "tpm2-tss", + "version": "2.3.2-1", + "arch": "", + "binaryNames": [ + "libtss2-esys0" + ] + }, + "twisted": { + "name": "twisted", + "version": "18.9.0-11", + "arch": "", + "binaryNames": [ + "python3-twisted", + "python3-twisted-bin" + ] + }, + "ubuntu-meta": { + "name": "ubuntu-meta", + "version": "1.450.2", + "arch": "", + "binaryNames": [ + "ubuntu-minimal", + "ubuntu-server", + "ubuntu-standard" + ] + }, + "ubuntu-release-upgrader": { + "name": "ubuntu-release-upgrader", + "version": "1:20.04.30", + "arch": "", + "binaryNames": [ + "python3-distupgrade", + "ubuntu-release-upgrader-core" + ] + }, + "uchardet": { + "name": "uchardet", + "version": "0.0.6-3build1", + "arch": "", + "binaryNames": [ + "libuchardet0" + ] + }, + "update-manager": { + "name": "update-manager", + "version": "1:20.04.10.5", + "arch": "", + "binaryNames": [ + "python3-update-manager", + "update-manager-core" + ] + }, + "update-notifier": { + "name": "update-notifier", + "version": "3.192.30.5", + "arch": "", + "binaryNames": [ + "update-notifier-common" + ] + }, + "xkeyboard-config": { + "name": "xkeyboard-config", + "version": "2.29-2", + "arch": "", + "binaryNames": [ + "xkb-data" + ] + }, + "xmlsec1": { + "name": "xmlsec1", + "version": "1.2.28-2", + "arch": "", + "binaryNames": [ + "libxmlsec1", + "libxmlsec1-openssl" + ] + }, + "zlib": { + "name": "zlib", + "version": "1:1.2.11.dfsg-2ubuntu1.2", + "arch": "", + "binaryNames": [ + "zlib1g" + ] + }, + "zope.interface": { + "name": "zope.interface", + "version": "4.7.1-1", + "arch": "", + "binaryNames": [ + "python3-zope.interface" + ] + } + }, + "constant": { + "scan": { + "logDir": "/var/log/vuls", + "resultsDir": "/home/ubuntu/go/src/github.com/future-architect/vuls/results", + "default": { + "port": "22", + "scanMode": [ + "fast" + ] + }, + "servers": { + "ubuntu_20": { + "serverName": "ubuntu_20", + "user": "ubuntu", + "host": "18.179.206.143", + "port": "22", + "keyPath": "/home/ubuntu/.ssh/stg.pem", + "scanMode": [ + "fast-root" + ], + "wordpress": {} + } + }, + "cveDict": { + "Name": "cveDict", + "Type": "sqlite3", + "SQLite3Path": "/home/ubuntu/go/src/github.com/kotakanbe/go-cve-dictionary/cve.sqlite3", + "DebugSQL": false + }, + "ovalDict": { + "Name": "ovalDict", + "Type": "sqlite3", + "SQLite3Path": "/home/ubuntu/go/src/github.com/kotakanbe/goval-dictionary/oval.sqlite3", + "DebugSQL": false + }, + "gost": { + "Name": "gost", + "Type": "sqlite3", + "SQLite3Path": "/home/ubuntu/go/src/github.com/future-architect/vuls/gost.sqlite3", + "DebugSQL": false + }, + "exploit": { + "Name": "exploit", + "Type": "sqlite3", + "SQLite3Path": "/home/ubuntu/go/src/github.com/vulsio/go-exploitdb/go-exploitdb.sqlite3", + "DebugSQL": false + }, + "metasploit": { + "Name": "metasploit", + "Type": "sqlite3", + "SQLite3Path": "/home/ubuntu/go/src/github.com/takuzoo3868/go-msfdb/go-msfdb.sqlite3", + "DebugSQL": false + } + }, + "report": { + "default": {}, + "cveDict": { + "Name": "", + "Type": "", + "SQLite3Path": "", + "DebugSQL": false + }, + "ovalDict": { + "Name": "", + "Type": "", + "SQLite3Path": "", + "DebugSQL": false + }, + "gost": { + "Name": "", + "Type": "", + "SQLite3Path": "", + "DebugSQL": false + }, + "exploit": { + "Name": "", + "Type": "", + "SQLite3Path": "", + "DebugSQL": false + }, + "metasploit": { + "Name": "", + "Type": "", + "SQLite3Path": "", + "DebugSQL": false + } + } + } +} diff --git a/integration/int-config.toml b/integration/int-config.toml new file mode 100755 index 00000000..71c7c6c3 --- /dev/null +++ b/integration/int-config.toml @@ -0,0 +1,27 @@ +[cveDict] + Type = "sqlite3" + SQLite3Path = "/home/ubuntu/vulsctl/docker/cve.sqlite3" + +[ovalDict] + Type = "sqlite3" + SQLite3Path = "/home/ubuntu/vulsctl/docker/oval.sqlite3" + +[gost] + Type = "sqlite3" + SQLite3Path = "/home/ubuntu/vulsctl/docker/gost.sqlite3" + +[exploit] + Type = "sqlite3" + SQLite3Path = "/home/ubuntu/vulsctl/docker/go-exploitdb.sqlite3" + +[metasploit] + type = "sqlite3" + SQLite3Path = "/home/ubuntu/vulsctl/docker/go-msfdb.sqlite3" + +[default] + +[servers] + +[servers.rails] +type = "pseudo" +cpeNames = [ "cpe:/a:rubyonrails:ruby_on_rails:3.0.1" ] diff --git a/integration/int-redis-config.toml b/integration/int-redis-config.toml new file mode 100755 index 00000000..ae64d10a --- /dev/null +++ b/integration/int-redis-config.toml @@ -0,0 +1,27 @@ +[cveDict] +Type = "redis" +Url = "redis://127.0.0.1/3" + +[ovalDict] + Type = "redis" + Url = "redis://127.0.0.1/1" + +[gost] + Type = "redis" + Url = "redis://127.0.0.1/2" + +[exploit] + Type = "redis" + Url = "redis://127.0.0.1/4" + +[metasploit] + Type = "redis" + Url = "redis://127.0.0.1/5" + +[default] + +[servers] + +[servers.rails] +type = "pseudo" +cpeNames = [ "cpe:/a:rubyonrails:ruby_on_rails:3.0.1" ] diff --git a/logging/logutil.go b/logging/logutil.go index d9af74b2..60e41fda 100644 --- a/logging/logutil.go +++ b/logging/logutil.go @@ -15,6 +15,14 @@ import ( formatter "github.com/kotakanbe/logrus-prefixed-formatter" ) +//LogOpts has options for logging +type LogOpts struct { + Debug bool `json:"debug,omitempty"` + DebugSQL bool `json:"debugSQL,omitempty"` + LogDir string `json:"logDir,omitempty"` + Quiet bool `json:"quiet,omitempty"` +} + // Log for localhost var Log Logger diff --git a/models/scanresults.go b/models/scanresults.go index ada91b1d..932a088b 100644 --- a/models/scanresults.go +++ b/models/scanresults.go @@ -4,6 +4,7 @@ import ( "bytes" "fmt" "reflect" + "sort" "strings" "time" @@ -56,7 +57,7 @@ type ScanResult struct { Config struct { Scan config.Config `json:"scan"` Report config.Config `json:"report"` - } `json:"constant"` + } `json:"config"` } // Container has Container information @@ -374,6 +375,48 @@ func (r *ScanResult) CheckEOL() { } } +func (r *ScanResult) SortForJSONOutput() { + for k, v := range r.Packages { + sort.SliceStable(v.AffectedProcs, func(i, j int) bool { + return v.AffectedProcs[i].PID < v.AffectedProcs[j].PID + }) + sort.SliceStable(v.NeedRestartProcs, func(i, j int) bool { + return v.NeedRestartProcs[i].PID < v.NeedRestartProcs[j].PID + }) + r.Packages[k] = v + } + + for k, v := range r.ScannedCves { + sort.SliceStable(v.AffectedPackages, func(i, j int) bool { + return v.AffectedPackages[i].Name < v.AffectedPackages[j].Name + }) + sort.SliceStable(v.DistroAdvisories, func(i, j int) bool { + return v.DistroAdvisories[i].AdvisoryID < v.DistroAdvisories[j].AdvisoryID + }) + sort.SliceStable(v.Exploits, func(i, j int) bool { + return v.Exploits[i].ID < v.Exploits[j].ID + }) + sort.SliceStable(v.Metasploits, func(i, j int) bool { + return v.Metasploits[i].Name < v.Metasploits[j].Name + }) + for kk, vv := range v.CveContents { + sort.SliceStable(vv.References, func(i, j int) bool { + return vv.References[i].Link < vv.References[j].Link + }) + v.CveContents[kk] = vv + } + + sort.SliceStable(v.AlertDict.En, func(i, j int) bool { + return v.AlertDict.En[i].Title < v.AlertDict.En[j].Title + }) + sort.SliceStable(v.AlertDict.Ja, func(i, j int) bool { + return v.AlertDict.Ja[i].Title < v.AlertDict.Ja[j].Title + }) + + r.ScannedCves[k] = v + } +} + // CweDict is a dictionary for CWE type CweDict map[string]CweDictEntry diff --git a/models/scanresults_test.go b/models/scanresults_test.go index 616bbff7..54149a5c 100644 --- a/models/scanresults_test.go +++ b/models/scanresults_test.go @@ -1,6 +1,7 @@ package models import ( + "reflect" "testing" "github.com/future-architect/vuls/config" @@ -92,3 +93,274 @@ func TestIsDisplayUpdatableNum(t *testing.T) { } } } + +func TestScanResult_Sort(t *testing.T) { + type fields struct { + Packages Packages + ScannedCves VulnInfos + } + tests := []struct { + name string + fields fields + expected fields + }{ + { + name: "already asc", + fields: fields{ + Packages: map[string]Package{ + "pkgA": { + Name: "pkgA", + AffectedProcs: []AffectedProcess{ + {PID: "1", Name: "procB"}, + {PID: "2", Name: "procA"}, + }, + NeedRestartProcs: []NeedRestartProcess{ + {PID: "1"}, + {PID: "2"}, + }, + }, + }, + ScannedCves: VulnInfos{ + "CVE-2014-3591": VulnInfo{ + AffectedPackages: PackageFixStatuses{ + PackageFixStatus{Name: "pkgA"}, + PackageFixStatus{Name: "pkgB"}, + }, + DistroAdvisories: []DistroAdvisory{ + {AdvisoryID: "adv-1"}, + {AdvisoryID: "adv-2"}, + }, + Exploits: []Exploit{ + {ID: "a"}, + {ID: "b"}, + }, + Metasploits: []Metasploit{ + {Name: "a"}, + {Name: "b"}, + }, + CveContents: CveContents{ + "nvd": CveContent{ + References: References{ + Reference{Link: "a"}, + Reference{Link: "b"}, + }, + }, + "jvn": CveContent{ + References: References{ + Reference{Link: "a"}, + Reference{Link: "b"}, + }, + }, + }, + AlertDict: AlertDict{ + En: []Alert{ + {Title: "a"}, + {Title: "b"}, + }, + Ja: []Alert{ + {Title: "a"}, + {Title: "b"}, + }, + }, + }, + }, + }, + expected: fields{ + Packages: map[string]Package{ + "pkgA": { + Name: "pkgA", + AffectedProcs: []AffectedProcess{ + {PID: "1", Name: "procB"}, + {PID: "2", Name: "procA"}, + }, + NeedRestartProcs: []NeedRestartProcess{ + {PID: "1"}, + {PID: "2"}, + }, + }, + }, + ScannedCves: VulnInfos{ + "CVE-2014-3591": VulnInfo{ + AffectedPackages: PackageFixStatuses{ + PackageFixStatus{Name: "pkgA"}, + PackageFixStatus{Name: "pkgB"}, + }, + DistroAdvisories: []DistroAdvisory{ + {AdvisoryID: "adv-1"}, + {AdvisoryID: "adv-2"}, + }, + Exploits: []Exploit{ + {ID: "a"}, + {ID: "b"}, + }, + Metasploits: []Metasploit{ + {Name: "a"}, + {Name: "b"}, + }, + CveContents: CveContents{ + "nvd": CveContent{ + References: References{ + Reference{Link: "a"}, + Reference{Link: "b"}, + }, + }, + "jvn": CveContent{ + References: References{ + Reference{Link: "a"}, + Reference{Link: "b"}, + }, + }, + }, + AlertDict: AlertDict{ + En: []Alert{ + {Title: "a"}, + {Title: "b"}, + }, + Ja: []Alert{ + {Title: "a"}, + {Title: "b"}, + }, + }, + }, + }, + }, + }, + { + name: "sort", + fields: fields{ + Packages: map[string]Package{ + "pkgA": { + Name: "pkgA", + AffectedProcs: []AffectedProcess{ + {PID: "2", Name: "procA"}, + {PID: "1", Name: "procB"}, + }, + NeedRestartProcs: []NeedRestartProcess{ + {PID: "91"}, + {PID: "90"}, + }, + }, + }, + ScannedCves: VulnInfos{ + "CVE-2014-3591": VulnInfo{ + AffectedPackages: PackageFixStatuses{ + PackageFixStatus{Name: "pkgB"}, + PackageFixStatus{Name: "pkgA"}, + }, + DistroAdvisories: []DistroAdvisory{ + {AdvisoryID: "adv-2"}, + {AdvisoryID: "adv-1"}, + }, + Exploits: []Exploit{ + {ID: "b"}, + {ID: "a"}, + }, + Metasploits: []Metasploit{ + {Name: "b"}, + {Name: "a"}, + }, + CveContents: CveContents{ + "nvd": CveContent{ + References: References{ + Reference{Link: "b"}, + Reference{Link: "a"}, + }, + }, + "jvn": CveContent{ + References: References{ + Reference{Link: "b"}, + Reference{Link: "a"}, + }, + }, + }, + AlertDict: AlertDict{ + En: []Alert{ + {Title: "b"}, + {Title: "a"}, + }, + Ja: []Alert{ + {Title: "b"}, + {Title: "a"}, + }, + }, + }, + }, + }, + expected: fields{ + Packages: map[string]Package{ + "pkgA": { + Name: "pkgA", + AffectedProcs: []AffectedProcess{ + {PID: "1", Name: "procB"}, + {PID: "2", Name: "procA"}, + }, + NeedRestartProcs: []NeedRestartProcess{ + {PID: "90"}, + {PID: "91"}, + }, + }, + }, + ScannedCves: VulnInfos{ + "CVE-2014-3591": VulnInfo{ + AffectedPackages: PackageFixStatuses{ + PackageFixStatus{Name: "pkgA"}, + PackageFixStatus{Name: "pkgB"}, + }, + DistroAdvisories: []DistroAdvisory{ + {AdvisoryID: "adv-1"}, + {AdvisoryID: "adv-2"}, + }, + Exploits: []Exploit{ + {ID: "a"}, + {ID: "b"}, + }, + Metasploits: []Metasploit{ + {Name: "a"}, + {Name: "b"}, + }, + CveContents: CveContents{ + "nvd": CveContent{ + References: References{ + Reference{Link: "a"}, + Reference{Link: "b"}, + }, + }, + "jvn": CveContent{ + References: References{ + Reference{Link: "a"}, + Reference{Link: "b"}, + }, + }, + }, + AlertDict: AlertDict{ + En: []Alert{ + {Title: "a"}, + {Title: "b"}, + }, + Ja: []Alert{ + {Title: "a"}, + {Title: "b"}, + }, + }, + }, + }, + }, + }, + } + for _, tt := range tests { + t.Run(tt.name, func(t *testing.T) { + r := &ScanResult{ + Packages: tt.fields.Packages, + ScannedCves: tt.fields.ScannedCves, + } + r.SortForJSONOutput() + if !reflect.DeepEqual(r.Packages, tt.expected.Packages) { + t.Errorf("act %+v, want %+v", r.Packages, tt.expected.Packages) + } + + if !reflect.DeepEqual(r.ScannedCves, tt.expected.ScannedCves) { + t.Errorf("act %+v, want %+v", r.ScannedCves, tt.expected.ScannedCves) + } + }) + } +} diff --git a/models/vulninfos.go b/models/vulninfos.go index 17f8f166..56ebd72b 100644 --- a/models/vulninfos.go +++ b/models/vulninfos.go @@ -763,14 +763,10 @@ type AlertDict struct { // FormatSource returns which source has this alert func (a AlertDict) FormatSource() string { - s := []string{} - if len(a.En) != 0 { - s = append(s, "USCERT") + if len(a.En) != 0 || len(a.Ja) != 0 { + return "CERT" } - if len(a.Ja) != 0 { - s = append(s, "JPCERT") - } - return strings.Join(s, "/") + return "" } // Confidences is a list of Confidence diff --git a/msf/empty.go b/msf/empty.go deleted file mode 100644 index 565ac70f..00000000 --- a/msf/empty.go +++ /dev/null @@ -1 +0,0 @@ -package msf diff --git a/msf/msf.go b/msf/msf.go deleted file mode 100644 index b5feccc9..00000000 --- a/msf/msf.go +++ /dev/null @@ -1,51 +0,0 @@ -// +build !scanner - -package msf - -import ( - "github.com/future-architect/vuls/models" - "github.com/takuzoo3868/go-msfdb/db" - metasploitmodels "github.com/takuzoo3868/go-msfdb/models" -) - -// FillWithMetasploit fills metasploit module information that has in module -func FillWithMetasploit(driver db.DB, r *models.ScanResult) (nMetasploitCve int, err error) { - if driver == nil { - return 0, nil - } - for cveID, vuln := range r.ScannedCves { - if cveID == "" { - continue - } - ms := driver.GetModuleByCveID(cveID) - if len(ms) == 0 { - continue - } - modules := ConvertToModels(ms) - vuln.Metasploits = modules - r.ScannedCves[cveID] = vuln - nMetasploitCve++ - } - - return nMetasploitCve, nil -} - -// ConvertToModels converts gost model to vuls model -func ConvertToModels(ms []*metasploitmodels.Metasploit) (modules []models.Metasploit) { - for _, m := range ms { - var links []string - if 0 < len(m.References) { - for _, u := range m.References { - links = append(links, u.Link) - } - } - module := models.Metasploit{ - Name: m.Name, - Title: m.Title, - Description: m.Description, - URLs: links, - } - modules = append(modules, module) - } - return modules -} diff --git a/oval/alpine.go b/oval/alpine.go index d5053c3e..78af1b98 100644 --- a/oval/alpine.go +++ b/oval/alpine.go @@ -7,7 +7,6 @@ import ( "github.com/future-architect/vuls/constant" "github.com/future-architect/vuls/logging" "github.com/future-architect/vuls/models" - "github.com/kotakanbe/goval-dictionary/db" ) // Alpine is the struct of Alpine Linux @@ -16,22 +15,33 @@ type Alpine struct { } // NewAlpine creates OVAL client for SUSE -func NewAlpine() Alpine { +func NewAlpine(cnf config.VulnDictInterface) Alpine { return Alpine{ Base{ family: constant.Alpine, + Cnf: cnf, }, } } // FillWithOval returns scan result after updating CVE info by OVAL -func (o Alpine) FillWithOval(driver db.DB, r *models.ScanResult) (nCVEs int, err error) { +func (o Alpine) FillWithOval(r *models.ScanResult) (nCVEs int, err error) { var relatedDefs ovalResult - if config.Conf.OvalDict.IsFetchViaHTTP() { - if relatedDefs, err = getDefsByPackNameViaHTTP(r); err != nil { + if o.Cnf.IsFetchViaHTTP() { + if relatedDefs, err = getDefsByPackNameViaHTTP(r, o.Cnf.GetURL()); err != nil { return 0, err } } else { + driver, err := newOvalDB(o.Cnf, r.Family) + if err != nil { + return 0, err + } + defer func() { + if err := driver.CloseDB(); err != nil { + logging.Log.Errorf("Failed to close DB. err: %+v") + } + }() + if relatedDefs, err = getDefsByPackNameFromOvalDB(driver, r); err != nil { return 0, err } diff --git a/oval/debian.go b/oval/debian.go index abc9851f..bf920135 100644 --- a/oval/debian.go +++ b/oval/debian.go @@ -11,7 +11,6 @@ import ( "github.com/future-architect/vuls/logging" "github.com/future-architect/vuls/models" "github.com/future-architect/vuls/util" - "github.com/kotakanbe/goval-dictionary/db" ovalmodels "github.com/kotakanbe/goval-dictionary/models" ) @@ -111,18 +110,19 @@ type Debian struct { } // NewDebian creates OVAL client for Debian -func NewDebian() Debian { +func NewDebian(cnf config.VulnDictInterface) Debian { return Debian{ DebianBase{ Base{ family: constant.Debian, + Cnf: cnf, }, }, } } // FillWithOval returns scan result after updating CVE info by OVAL -func (o Debian) FillWithOval(driver db.DB, r *models.ScanResult) (nCVEs int, err error) { +func (o Debian) FillWithOval(r *models.ScanResult) (nCVEs int, err error) { //Debian's uname gives both of kernel release(uname -r), version(kernel-image version) linuxImage := "linux-image-" + r.RunningKernel.Release @@ -141,19 +141,29 @@ func (o Debian) FillWithOval(driver db.DB, r *models.ScanResult) (nCVEs int, err } var relatedDefs ovalResult - if config.Conf.OvalDict.IsFetchViaHTTP() { + if o.Cnf.IsFetchViaHTTP() { if r.Family != constant.Raspbian { - if relatedDefs, err = getDefsByPackNameViaHTTP(r); err != nil { + if relatedDefs, err = getDefsByPackNameViaHTTP(r, o.Cnf.GetURL()); err != nil { return 0, err } } else { // OVAL does not support Package for Raspbian, so skip it. result := r.RemoveRaspbianPackFromResult() - if relatedDefs, err = getDefsByPackNameViaHTTP(&result); err != nil { + if relatedDefs, err = getDefsByPackNameViaHTTP(&result, o.Cnf.GetURL()); err != nil { return 0, err } } } else { + driver, err := newOvalDB(o.Cnf, r.Family) + if err != nil { + return 0, err + } + defer func() { + if err := driver.CloseDB(); err != nil { + logging.Log.Errorf("Failed to close DB. err: %+v") + } + }() + if r.Family != constant.Raspbian { if relatedDefs, err = getDefsByPackNameFromOvalDB(driver, r); err != nil { return 0, err @@ -201,18 +211,19 @@ type Ubuntu struct { } // NewUbuntu creates OVAL client for Debian -func NewUbuntu() Ubuntu { +func NewUbuntu(cnf config.VulnDictInterface) Ubuntu { return Ubuntu{ DebianBase{ Base{ family: constant.Ubuntu, + Cnf: cnf, }, }, } } // FillWithOval returns scan result after updating CVE info by OVAL -func (o Ubuntu) FillWithOval(driver db.DB, r *models.ScanResult) (nCVEs int, err error) { +func (o Ubuntu) FillWithOval(r *models.ScanResult) (nCVEs int, err error) { switch util.Major(r.Release) { case "14": kernelNamesInOval := []string{ @@ -228,7 +239,7 @@ func (o Ubuntu) FillWithOval(driver db.DB, r *models.ScanResult) (nCVEs int, err "linux-signed-lts-xenial", "linux", } - return o.fillWithOval(driver, r, kernelNamesInOval) + return o.fillWithOval(r, kernelNamesInOval) case "16": kernelNamesInOval := []string{ "linux-aws", @@ -263,7 +274,7 @@ func (o Ubuntu) FillWithOval(driver db.DB, r *models.ScanResult) (nCVEs int, err "linux-snapdragon", "linux", } - return o.fillWithOval(driver, r, kernelNamesInOval) + return o.fillWithOval(r, kernelNamesInOval) case "18": kernelNamesInOval := []string{ "linux-aws", @@ -318,7 +329,7 @@ func (o Ubuntu) FillWithOval(driver db.DB, r *models.ScanResult) (nCVEs int, err "linux-snapdragon", "linux", } - return o.fillWithOval(driver, r, kernelNamesInOval) + return o.fillWithOval(r, kernelNamesInOval) case "20": kernelNamesInOval := []string{ "linux-aws", @@ -346,12 +357,12 @@ func (o Ubuntu) FillWithOval(driver db.DB, r *models.ScanResult) (nCVEs int, err "linux-signed-oracle", "linux", } - return o.fillWithOval(driver, r, kernelNamesInOval) + return o.fillWithOval(r, kernelNamesInOval) } return 0, fmt.Errorf("Ubuntu %s is not support for now", r.Release) } -func (o Ubuntu) fillWithOval(driver db.DB, r *models.ScanResult, kernelNamesInOval []string) (nCVEs int, err error) { +func (o Ubuntu) fillWithOval(r *models.ScanResult, kernelNamesInOval []string) (nCVEs int, err error) { linuxImage := "linux-image-" + r.RunningKernel.Release runningKernelVersion := "" kernelPkgInOVAL := "" @@ -417,11 +428,21 @@ func (o Ubuntu) fillWithOval(driver db.DB, r *models.ScanResult, kernelNamesInOv } var relatedDefs ovalResult - if config.Conf.OvalDict.IsFetchViaHTTP() { - if relatedDefs, err = getDefsByPackNameViaHTTP(r); err != nil { + if o.Cnf.IsFetchViaHTTP() { + if relatedDefs, err = getDefsByPackNameViaHTTP(r, o.Cnf.GetURL()); err != nil { return 0, err } } else { + driver, err := newOvalDB(o.Cnf, r.Family) + if err != nil { + return 0, err + } + defer func() { + if err := driver.CloseDB(); err != nil { + logging.Log.Errorf("Failed to close DB. err: %+v") + } + }() + if relatedDefs, err = getDefsByPackNameFromOvalDB(driver, r); err != nil { return 0, err } diff --git a/oval/oval.go b/oval/oval.go index f3ed4fb7..ae64ec4f 100644 --- a/oval/oval.go +++ b/oval/oval.go @@ -6,7 +6,7 @@ import ( "encoding/json" "time" - cnf "github.com/future-architect/vuls/config" + "github.com/future-architect/vuls/config" "github.com/future-architect/vuls/logging" "github.com/future-architect/vuls/models" "github.com/future-architect/vuls/util" @@ -17,29 +17,43 @@ import ( // Client is the interface of OVAL client. type Client interface { - FillWithOval(db.DB, *models.ScanResult) (int, error) - - // CheckIfOvalFetched checks if oval entries are in DB by family, release. - CheckIfOvalFetched(db.DB, string, string) (bool, error) - CheckIfOvalFresh(db.DB, string, string) (bool, error) + FillWithOval(*models.ScanResult) (int, error) + CheckIfOvalFetched(string, string) (bool, error) + CheckIfOvalFresh(string, string) (bool, error) } // Base is a base struct type Base struct { family string + Cnf config.VulnDictInterface } // CheckIfOvalFetched checks if oval entries are in DB by family, release. -func (b Base) CheckIfOvalFetched(driver db.DB, osFamily, release string) (fetched bool, err error) { - if !cnf.Conf.OvalDict.IsFetchViaHTTP() { - count, err := driver.CountDefs(osFamily, release) +func (b Base) CheckIfOvalFetched(osFamily, release string) (fetched bool, err error) { + ovalFamily, err := GetFamilyInOval(osFamily) + if err != nil { + return false, err + } + if !b.Cnf.IsFetchViaHTTP() { + driver, err := newOvalDB(b.Cnf, ovalFamily) if err != nil { - return false, xerrors.Errorf("Failed to count OVAL defs: %s, %s, %w", osFamily, release, err) + return false, err } + defer func() { + if err := driver.CloseDB(); err != nil { + logging.Log.Errorf("Failed to close DB. err: %+v") + } + }() + + count, err := driver.CountDefs(ovalFamily, release) + if err != nil { + return false, xerrors.Errorf("Failed to count OVAL defs: %s, %s, %w", ovalFamily, release, err) + } + logging.Log.Infof("OVAL %s %s found. defs: %d", osFamily, release, count) return 0 < count, nil } - url, _ := util.URLPathJoin(cnf.Conf.OvalDict.URL, "count", osFamily, release) + url, _ := util.URLPathJoin(config.Conf.OvalDict.URL, "count", ovalFamily, release) resp, body, errs := gorequest.New().Timeout(10 * time.Second).Get(url).End() if 0 < len(errs) || resp == nil || resp.StatusCode != 200 { return false, xerrors.Errorf("HTTP GET error, url: %s, resp: %v, err: %+v", url, resp, errs) @@ -48,16 +62,30 @@ func (b Base) CheckIfOvalFetched(driver db.DB, osFamily, release string) (fetche if err := json.Unmarshal([]byte(body), &count); err != nil { return false, xerrors.Errorf("Failed to Unmarshal. body: %s, err: %w", body, err) } + logging.Log.Infof("OVAL %s %s is fresh. defs: %d", osFamily, release, count) return 0 < count, nil } // CheckIfOvalFresh checks if oval entries are fresh enough -func (b Base) CheckIfOvalFresh(driver db.DB, osFamily, release string) (ok bool, err error) { +func (b Base) CheckIfOvalFresh(osFamily, release string) (ok bool, err error) { + ovalFamily, err := GetFamilyInOval(osFamily) + if err != nil { + return false, err + } var lastModified time.Time - if !cnf.Conf.OvalDict.IsFetchViaHTTP() { - lastModified = driver.GetLastModified(osFamily, release) + if !b.Cnf.IsFetchViaHTTP() { + driver, err := newOvalDB(b.Cnf, ovalFamily) + if err != nil { + return false, err + } + defer func() { + if err := driver.CloseDB(); err != nil { + logging.Log.Errorf("Failed to close DB. err: %+v") + } + }() + lastModified = driver.GetLastModified(ovalFamily, release) } else { - url, _ := util.URLPathJoin(cnf.Conf.OvalDict.URL, "lastmodified", osFamily, release) + url, _ := util.URLPathJoin(config.Conf.OvalDict.URL, "lastmodified", ovalFamily, release) resp, body, errs := gorequest.New().Timeout(10 * time.Second).Get(url).End() if 0 < len(errs) || resp == nil || resp.StatusCode != 200 { return false, xerrors.Errorf("HTTP GET error, url: %s, resp: %v, err: %+v", url, resp, errs) @@ -75,6 +103,33 @@ func (b Base) CheckIfOvalFresh(driver db.DB, osFamily, release string) (ok bool, osFamily, release, lastModified) return false, nil } - logging.Log.Infof("OVAL is fresh: %s %s ", osFamily, release) + logging.Log.Infof("OVAL %s %s is fresh. lastModified: %s", osFamily, release, lastModified.Format(time.RFC3339)) return true, nil } + +// NewOvalDB returns oval db client +func newOvalDB(cnf config.VulnDictInterface, familyInScanResult string) (driver db.DB, err error) { + if cnf.IsFetchViaHTTP() { + return nil, nil + } + + path := cnf.GetURL() + if cnf.GetType() == "sqlite3" { + path = cnf.GetSQLite3Path() + } + + ovalFamily, err := GetFamilyInOval(familyInScanResult) + if err != nil { + return nil, err + } + + driver, locked, err := db.NewDB(ovalFamily, cnf.GetType(), path, cnf.GetDebugSQL()) + if err != nil { + if locked { + err = xerrors.Errorf("SQLite3: %s is locked. err: %w", cnf.GetSQLite3Path(), err) + } + err = xerrors.Errorf("Failed to new OVAL DB. err: %w", err) + return nil, err + } + return driver, nil +} diff --git a/oval/redhat.go b/oval/redhat.go index 688d2f8c..effcbc72 100644 --- a/oval/redhat.go +++ b/oval/redhat.go @@ -11,7 +11,6 @@ import ( "github.com/future-architect/vuls/constant" "github.com/future-architect/vuls/logging" "github.com/future-architect/vuls/models" - "github.com/kotakanbe/goval-dictionary/db" ovalmodels "github.com/kotakanbe/goval-dictionary/models" ) @@ -21,18 +20,29 @@ type RedHatBase struct { } // FillWithOval returns scan result after updating CVE info by OVAL -func (o RedHatBase) FillWithOval(driver db.DB, r *models.ScanResult) (nCVEs int, err error) { +func (o RedHatBase) FillWithOval(r *models.ScanResult) (nCVEs int, err error) { var relatedDefs ovalResult - if config.Conf.OvalDict.IsFetchViaHTTP() { - if relatedDefs, err = getDefsByPackNameViaHTTP(r); err != nil { + if o.Cnf.IsFetchViaHTTP() { + if relatedDefs, err = getDefsByPackNameViaHTTP(r, o.Cnf.GetURL()); err != nil { return 0, err } } else { + driver, err := newOvalDB(o.Cnf, r.Family) + if err != nil { + return 0, err + } + defer func() { + if err := driver.CloseDB(); err != nil { + logging.Log.Errorf("Failed to close DB. err: %+v") + } + }() + if relatedDefs, err = getDefsByPackNameFromOvalDB(driver, r); err != nil { return 0, err } } + relatedDefs.Sort() for _, defPacks := range relatedDefs.entries { nCVEs += o.update(r, defPacks) } @@ -92,7 +102,7 @@ func (o RedHatBase) update(r *models.ScanResult, defPacks defPacks) (nCVEs int) ovalContent := *o.convertToModel(cve.CveID, &defPacks.def) vinfo, ok := r.ScannedCves[cve.CveID] if !ok { - logging.Log.Debugf("%s is newly detected by OVAL", cve.CveID) + logging.Log.Debugf("%s is newly detected by OVAL: DefID: %s", cve.CveID, defPacks.def.DefinitionID) vinfo = models.VulnInfo{ CveID: cve.CveID, Confidences: models.Confidences{models.OvalMatch}, @@ -103,13 +113,12 @@ func (o RedHatBase) update(r *models.ScanResult, defPacks defPacks) (nCVEs int) cveContents := vinfo.CveContents if v, ok := vinfo.CveContents[ctype]; ok { if v.LastModified.After(ovalContent.LastModified) { - logging.Log.Debugf("%s, OvalID: %d ignored: ", - cve.CveID, defPacks.def.ID) + logging.Log.Debugf("%s ignored. DefID: %s ", cve.CveID, defPacks.def.DefinitionID) } else { - logging.Log.Debugf("%s OVAL will be overwritten", cve.CveID) + logging.Log.Debugf("%s OVAL will be overwritten. DefID: %s", cve.CveID, defPacks.def.DefinitionID) } } else { - logging.Log.Debugf("%s also detected by OVAL", cve.CveID) + logging.Log.Debugf("%s also detected by OVAL. DefID: %s", cve.CveID, defPacks.def.DefinitionID) cveContents = models.CveContents{} } @@ -247,11 +256,12 @@ type RedHat struct { } // NewRedhat creates OVAL client for Redhat -func NewRedhat() RedHat { +func NewRedhat(cnf config.VulnDictInterface) RedHat { return RedHat{ RedHatBase{ Base{ family: constant.RedHat, + Cnf: cnf, }, }, } @@ -263,11 +273,12 @@ type CentOS struct { } // NewCentOS creates OVAL client for CentOS -func NewCentOS() CentOS { +func NewCentOS(cnf config.VulnDictInterface) CentOS { return CentOS{ RedHatBase{ Base{ family: constant.CentOS, + Cnf: cnf, }, }, } @@ -279,11 +290,12 @@ type Oracle struct { } // NewOracle creates OVAL client for Oracle -func NewOracle() Oracle { +func NewOracle(cnf config.VulnDictInterface) Oracle { return Oracle{ RedHatBase{ Base{ family: constant.Oracle, + Cnf: cnf, }, }, } @@ -296,11 +308,12 @@ type Amazon struct { } // NewAmazon creates OVAL client for Amazon Linux -func NewAmazon() Amazon { +func NewAmazon(cnf config.VulnDictInterface) Amazon { return Amazon{ RedHatBase{ Base{ family: constant.Amazon, + Cnf: cnf, }, }, } diff --git a/oval/suse.go b/oval/suse.go index d2c8c428..d1e6b956 100644 --- a/oval/suse.go +++ b/oval/suse.go @@ -7,7 +7,6 @@ import ( "github.com/future-architect/vuls/constant" "github.com/future-architect/vuls/logging" "github.com/future-architect/vuls/models" - "github.com/kotakanbe/goval-dictionary/db" ovalmodels "github.com/kotakanbe/goval-dictionary/models" ) @@ -17,23 +16,34 @@ type SUSE struct { } // NewSUSE creates OVAL client for SUSE -func NewSUSE() SUSE { +func NewSUSE(cnf config.VulnDictInterface) SUSE { // TODO implement other family return SUSE{ Base{ family: constant.SUSEEnterpriseServer, + Cnf: cnf, }, } } // FillWithOval returns scan result after updating CVE info by OVAL -func (o SUSE) FillWithOval(driver db.DB, r *models.ScanResult) (nCVEs int, err error) { +func (o SUSE) FillWithOval(r *models.ScanResult) (nCVEs int, err error) { var relatedDefs ovalResult - if config.Conf.OvalDict.IsFetchViaHTTP() { - if relatedDefs, err = getDefsByPackNameViaHTTP(r); err != nil { + if o.Cnf.IsFetchViaHTTP() { + if relatedDefs, err = getDefsByPackNameViaHTTP(r, o.Cnf.GetURL()); err != nil { return 0, err } } else { + driver, err := newOvalDB(o.Cnf, r.Family) + if err != nil { + return 0, err + } + defer func() { + if err := driver.CloseDB(); err != nil { + logging.Log.Errorf("Failed to close DB. err: %+v") + } + }() + if relatedDefs, err = getDefsByPackNameFromOvalDB(driver, r); err != nil { return 0, err } diff --git a/oval/util.go b/oval/util.go index 1c152cd0..a59b1cc1 100644 --- a/oval/util.go +++ b/oval/util.go @@ -6,6 +6,7 @@ import ( "encoding/json" "net/http" "regexp" + "sort" "time" "github.com/cenkalti/backoff" @@ -72,6 +73,12 @@ func (e *ovalResult) upsert(def ovalmodels.Definition, packName string, fstat fi return false } +func (e *ovalResult) Sort() { + sort.SliceStable(e.entries, func(i, j int) bool { + return e.entries[i].def.DefinitionID < e.entries[j].def.DefinitionID + }) +} + type request struct { packName string versionRelease string @@ -88,8 +95,7 @@ type response struct { } // getDefsByPackNameViaHTTP fetches OVAL information via HTTP -func getDefsByPackNameViaHTTP(r *models.ScanResult) ( - relatedDefs ovalResult, err error) { +func getDefsByPackNameViaHTTP(r *models.ScanResult, url string) (relatedDefs ovalResult, err error) { nReq := len(r.Packages) + len(r.SrcPackages) reqChan := make(chan request, nReq) @@ -127,7 +133,7 @@ func getDefsByPackNameViaHTTP(r *models.ScanResult) ( select { case req := <-reqChan: url, err := util.URLPathJoin( - config.Conf.OvalDict.URL, + url, "packs", r.Family, r.Release, @@ -190,7 +196,6 @@ func httpGet(url string, req request, resChan chan<- response, errChan chan<- er var resp *http.Response count, retryMax := 0, 3 f := func() (err error) { - // resp, body, errs = gorequest.New().SetDebug(config.Conf.Debug).Get(url).End() resp, body, errs = gorequest.New().Timeout(10 * time.Second).Get(url).End() if 0 < len(errs) || resp == nil || resp.StatusCode != 200 { count++ @@ -246,13 +251,18 @@ func getDefsByPackNameFromOvalDB(driver db.DB, r *models.ScanResult) (relatedDef }) } + ovalFamily, err := GetFamilyInOval(r.Family) + if err != nil { + return relatedDefs, err + } + for _, req := range requests { - definitions, err := driver.GetByPackName(r.Family, r.Release, req.packName, req.arch) + definitions, err := driver.GetByPackName(ovalFamily, r.Release, req.packName, req.arch) if err != nil { return relatedDefs, xerrors.Errorf("Failed to get %s OVAL info by package: %#v, err: %w", r.Family, req, err) } for _, def := range definitions { - affected, notFixedYet, fixedIn := isOvalDefAffected(def, req, r.Family, r.RunningKernel, r.EnabledDnfModules) + affected, notFixedYet, fixedIn := isOvalDefAffected(def, req, ovalFamily, r.RunningKernel, r.EnabledDnfModules) if !affected { continue } @@ -414,3 +424,71 @@ var centosVerPattern = regexp.MustCompile(`\.[es]l(\d+)(?:_\d+)?(?:\.centos)?`) func centOSVersionToRHEL(ver string) string { return centosVerPattern.ReplaceAllString(ver, ".el$1") } + +// NewOVALClient returns a client for OVAL database +func NewOVALClient(family string, cnf config.GovalDictConf) (Client, error) { + switch family { + case constant.Debian, constant.Raspbian: + return NewDebian(&cnf), nil + case constant.Ubuntu: + return NewUbuntu(&cnf), nil + case constant.RedHat: + return NewRedhat(&cnf), nil + case constant.CentOS: + //use RedHat's OVAL + return NewCentOS(&cnf), nil + case constant.Oracle: + return NewOracle(&cnf), nil + case constant.SUSEEnterpriseServer: + // TODO other suse family + return NewSUSE(&cnf), nil + case constant.Alpine: + return NewAlpine(&cnf), nil + case constant.Amazon: + return NewAmazon(&cnf), nil + case constant.FreeBSD, constant.Windows: + return nil, nil + case constant.ServerTypePseudo: + return nil, nil + default: + if family == "" { + return nil, xerrors.New("Probably an error occurred during scanning. Check the error message") + } + return nil, xerrors.Errorf("OVAL for %s is not implemented yet", family) + } +} + +// GetFamilyInOval returns the OS family name in OVAL +// For example, CentOS uses Red Hat's OVAL, so return 'redhat' +func GetFamilyInOval(familyInScanResult string) (string, error) { + switch familyInScanResult { + case constant.Debian, constant.Raspbian: + return constant.Debian, nil + case constant.Ubuntu: + return constant.Ubuntu, nil + case constant.RedHat: + return constant.RedHat, nil + case constant.CentOS: + //use RedHat's OVAL + return constant.RedHat, nil + case constant.Oracle: + return constant.Oracle, nil + case constant.SUSEEnterpriseServer: + // TODO other suse family + return constant.SUSEEnterpriseServer, nil + case constant.Alpine: + return constant.Alpine, nil + case constant.Amazon: + return constant.Amazon, nil + case constant.FreeBSD, constant.Windows: + return "", nil + case constant.ServerTypePseudo: + return "", nil + default: + if familyInScanResult == "" { + return "", xerrors.New("Probably an error occurred during scanning. Check the error message") + } + return "", xerrors.Errorf("OVAL for %s is not implemented yet", familyInScanResult) + } + +} diff --git a/oval/util_test.go b/oval/util_test.go index c5f1c5d0..96e05f63 100644 --- a/oval/util_test.go +++ b/oval/util_test.go @@ -1281,3 +1281,57 @@ func Test_lessThan(t *testing.T) { }) } } + +func Test_ovalResult_Sort(t *testing.T) { + type fields struct { + entries []defPacks + } + tests := []struct { + name string + fields fields + want fields + }{ + { + name: "already sorted", + fields: fields{ + entries: []defPacks{ + {def: ovalmodels.Definition{DefinitionID: "0"}}, + {def: ovalmodels.Definition{DefinitionID: "1"}}, + }, + }, + want: fields{ + entries: []defPacks{ + {def: ovalmodels.Definition{DefinitionID: "0"}}, + {def: ovalmodels.Definition{DefinitionID: "1"}}, + }, + }, + }, + { + name: "sort", + fields: fields{ + entries: []defPacks{ + {def: ovalmodels.Definition{DefinitionID: "1"}}, + {def: ovalmodels.Definition{DefinitionID: "0"}}, + }, + }, + want: fields{ + entries: []defPacks{ + {def: ovalmodels.Definition{DefinitionID: "0"}}, + {def: ovalmodels.Definition{DefinitionID: "1"}}, + }, + }, + }, + } + for _, tt := range tests { + t.Run(tt.name, func(t *testing.T) { + o := &ovalResult{ + entries: tt.fields.entries, + } + o.Sort() + + if !reflect.DeepEqual(o.entries, tt.want.entries) { + t.Errorf("act %#v, want %#v", o.entries, tt.want.entries) + } + }) + } +} diff --git a/reporter/azureblob.go b/reporter/azureblob.go index a4362883..a3fb85be 100644 --- a/reporter/azureblob.go +++ b/reporter/azureblob.go @@ -9,7 +9,7 @@ import ( storage "github.com/Azure/azure-sdk-for-go/storage" "golang.org/x/xerrors" - c "github.com/future-architect/vuls/config" + "github.com/future-architect/vuls/config" "github.com/future-architect/vuls/models" ) @@ -21,7 +21,7 @@ type AzureBlobWriter struct { FormatList bool Gzip bool - c.AzureConf + config.AzureConf } // Write results to Azure Blob storage diff --git a/reporter/chatwork.go b/reporter/chatwork.go index 4b06c46b..4a8af0a8 100644 --- a/reporter/chatwork.go +++ b/reporter/chatwork.go @@ -15,14 +15,16 @@ import ( ) // ChatWorkWriter send report to ChatWork -type ChatWorkWriter struct{} +type ChatWorkWriter struct { + Cnf config.ChatWorkConf + Proxy string +} func (w ChatWorkWriter) Write(rs ...models.ScanResult) (err error) { - conf := config.Conf.ChatWork for _, r := range rs { serverInfo := fmt.Sprintf("%s", r.ServerInfo()) - if err = chatWorkpostMessage(conf.Room, conf.APIToken, serverInfo); err != nil { + if err = w.chatWorkpostMessage(serverInfo); err != nil { return err } @@ -40,7 +42,7 @@ func (w ChatWorkWriter) Write(rs ...models.ScanResult) (err error) { severity, vinfo.Summaries(r.Lang, r.Family)[0].Value) - if err = chatWorkpostMessage(conf.Room, conf.APIToken, message); err != nil { + if err = w.chatWorkpostMessage(message); err != nil { return err } } @@ -49,8 +51,8 @@ func (w ChatWorkWriter) Write(rs ...models.ScanResult) (err error) { return nil } -func chatWorkpostMessage(room, token, message string) error { - uri := fmt.Sprintf("https://api.chatwork.com/v2/rooms/%s/messages=%s", room, token) +func (w ChatWorkWriter) chatWorkpostMessage(message string) error { + uri := fmt.Sprintf("https://api.chatwork.com/v2/rooms/%s/messages=%s", w.Cnf.Room, w.Cnf.APIToken) payload := url.Values{"body": {message}} ctx, cancel := context.WithTimeout(context.Background(), 10*time.Second) @@ -59,10 +61,9 @@ func chatWorkpostMessage(room, token, message string) error { if err != nil { return err } - req.Header.Add("X-ChatWorkToken", token) + req.Header.Add("X-ChatWorkToken", w.Cnf.APIToken) req.Header.Add("Content-Type", "application/x-www-form-urlencoded") - - client, err := util.GetHTTPClient(config.Conf.HTTPProxy) + client, err := util.GetHTTPClient(w.Proxy) if err != nil { return err } diff --git a/reporter/email.go b/reporter/email.go index cd626488..9271dde2 100644 --- a/reporter/email.go +++ b/reporter/email.go @@ -20,12 +20,12 @@ type EMailWriter struct { FormatOneEMail bool FormatOneLineText bool FormatList bool + Cnf config.SMTPConf } func (w EMailWriter) Write(rs ...models.ScanResult) (err error) { - conf := config.Conf var message string - sender := NewEMailSender() + sender := NewEMailSender(w.Cnf) m := map[string]int{} for _, r := range rs { if w.FormatOneEMail { @@ -39,10 +39,10 @@ func (w EMailWriter) Write(rs ...models.ScanResult) (err error) { var subject string if len(r.Errors) != 0 { subject = fmt.Sprintf("%s%s An error occurred while scanning", - conf.EMail.SubjectPrefix, r.ServerInfo()) + w.Cnf.SubjectPrefix, r.ServerInfo()) } else { subject = fmt.Sprintf("%s%s %s", - conf.EMail.SubjectPrefix, + w.Cnf.SubjectPrefix, r.ServerInfo(), r.ScannedCves.FormatCveSummary()) } @@ -72,7 +72,7 @@ func (w EMailWriter) Write(rs ...models.ScanResult) (err error) { } subject := fmt.Sprintf("%s %s", - conf.EMail.SubjectPrefix, summary) + w.Cnf.SubjectPrefix, summary) return sender.Send(subject, message) } return nil @@ -196,8 +196,8 @@ func (e *emailSender) Send(subject, body string) (err error) { } // NewEMailSender creates emailSender -func NewEMailSender() EMailSender { - return &emailSender{config.Conf.EMail} +func NewEMailSender(cnf config.SMTPConf) EMailSender { + return &emailSender{cnf} } func (e *emailSender) newSaslClient(authList []string) sasl.Client { diff --git a/reporter/http.go b/reporter/http.go index 0ba221bf..7f78e030 100644 --- a/reporter/http.go +++ b/reporter/http.go @@ -5,13 +5,14 @@ import ( "encoding/json" "net/http" - "github.com/future-architect/vuls/config" "github.com/future-architect/vuls/models" "golang.org/x/xerrors" ) // HTTPRequestWriter writes results to HTTP request -type HTTPRequestWriter struct{} +type HTTPRequestWriter struct { + Proxy string +} // Write sends results as HTTP response func (w HTTPRequestWriter) Write(rs ...models.ScanResult) (err error) { @@ -20,7 +21,7 @@ func (w HTTPRequestWriter) Write(rs ...models.ScanResult) (err error) { if err := json.NewEncoder(b).Encode(r); err != nil { return err } - _, err = http.Post(config.Conf.HTTP.URL, "application/json; charset=utf-8", b) + _, err = http.Post(w.Proxy, "application/json; charset=utf-8", b) if err != nil { return err } diff --git a/reporter/localfile.go b/reporter/localfile.go index f4bfd624..4a3356f5 100644 --- a/reporter/localfile.go +++ b/reporter/localfile.go @@ -35,8 +35,9 @@ func (w LocalFileWriter) Write(rs ...models.ScanResult) (err error) { } for _, r := range rs { - path := filepath.Join(w.CurrentDir, r.ReportFileName()) + r.SortForJSONOutput() + path := filepath.Join(w.CurrentDir, r.ReportFileName()) if w.FormatJSON { p := path + ".json" if w.DiffPlus || w.DiffMinus { diff --git a/reporter/s3.go b/reporter/s3.go index ad6c7c41..e0d3b514 100644 --- a/reporter/s3.go +++ b/reporter/s3.go @@ -15,7 +15,7 @@ import ( "github.com/aws/aws-sdk-go/service/s3" "golang.org/x/xerrors" - c "github.com/future-architect/vuls/config" + "github.com/future-architect/vuls/config" "github.com/future-architect/vuls/models" ) @@ -27,7 +27,7 @@ type S3Writer struct { FormatList bool Gzip bool - c.AWSConf + config.AWSConf } func (w S3Writer) getS3() (*s3.S3, error) { diff --git a/reporter/slack.go b/reporter/slack.go index 0c6a7541..98a3c7f9 100644 --- a/reporter/slack.go +++ b/reporter/slack.go @@ -21,6 +21,8 @@ type SlackWriter struct { FormatOneLineText bool lang string osFamily string + Cnf config.SlackConf + Proxy string } type message struct { @@ -32,10 +34,8 @@ type message struct { } func (w SlackWriter) Write(rs ...models.ScanResult) (err error) { - conf := config.Conf.Slack - channel := conf.Channel - token := conf.LegacyToken + channel := w.Cnf.Channel for _, r := range rs { w.lang, w.osFamily = r.Lang, r.Family if channel == "${servername}" { @@ -57,15 +57,15 @@ func (w SlackWriter) Write(rs ...models.ScanResult) (err error) { sort.Ints(chunkKeys) summary := fmt.Sprintf("%s\n%s", - w.getNotifyUsers(config.Conf.Slack.NotifyUsers), + w.getNotifyUsers(w.Cnf.NotifyUsers), formatOneLineSummary(r)) // Send slack by API - if 0 < len(token) { - api := slack.New(token) + if 0 < len(w.Cnf.LegacyToken) { + api := slack.New(w.Cnf.LegacyToken) msgPrms := slack.PostMessageParameters{ - Username: conf.AuthUser, - IconEmoji: conf.IconEmoji, + Username: w.Cnf.AuthUser, + IconEmoji: w.Cnf.IconEmoji, } var ts string @@ -83,8 +83,8 @@ func (w SlackWriter) Write(rs ...models.ScanResult) (err error) { for _, k := range chunkKeys { params := slack.PostMessageParameters{ - Username: conf.AuthUser, - IconEmoji: conf.IconEmoji, + Username: w.Cnf.AuthUser, + IconEmoji: w.Cnf.IconEmoji, ThreadTimestamp: ts, } if _, _, err = api.PostMessage( @@ -99,8 +99,8 @@ func (w SlackWriter) Write(rs ...models.ScanResult) (err error) { } else { msg := message{ Text: summary, - Username: conf.AuthUser, - IconEmoji: conf.IconEmoji, + Username: w.Cnf.AuthUser, + IconEmoji: w.Cnf.IconEmoji, Channel: channel, } if err := w.send(msg); err != nil { @@ -119,8 +119,8 @@ func (w SlackWriter) Write(rs ...models.ScanResult) (err error) { msg := message{ Text: txt, - Username: conf.AuthUser, - IconEmoji: conf.IconEmoji, + Username: w.Cnf.AuthUser, + IconEmoji: w.Cnf.IconEmoji, Channel: channel, Attachments: m[k], } @@ -134,14 +134,13 @@ func (w SlackWriter) Write(rs ...models.ScanResult) (err error) { } func (w SlackWriter) send(msg message) error { - conf := config.Conf.Slack - count, retryMax := 0, 10 + count, retryMax := 0, 10 bytes, _ := json.Marshal(msg) jsonBody := string(bytes) f := func() (err error) { - resp, body, errs := gorequest.New().Timeout(10 * time.Second).Proxy(config.Conf.HTTPProxy).Post(conf.HookURL).Send(string(jsonBody)).End() + resp, body, errs := gorequest.New().Timeout(10 * time.Second).Proxy(w.Proxy).Post(w.Cnf.HookURL).Send(string(jsonBody)).End() if 0 < len(errs) || resp == nil || resp.StatusCode != 200 { count++ if count == retryMax { @@ -149,7 +148,7 @@ func (w SlackWriter) send(msg message) error { } return xerrors.Errorf( "HTTP POST error. url: %s, resp: %v, body: %s, err: %+v", - conf.HookURL, resp, body, errs) + w.Cnf.HookURL, resp, body, errs) } return nil } diff --git a/reporter/syslog.go b/reporter/syslog.go index d02271d7..6bc30ba2 100644 --- a/reporter/syslog.go +++ b/reporter/syslog.go @@ -12,15 +12,16 @@ import ( ) // SyslogWriter send report to syslog -type SyslogWriter struct{} +type SyslogWriter struct { + Cnf config.SyslogConf +} func (w SyslogWriter) Write(rs ...models.ScanResult) (err error) { - conf := config.Conf.Syslog - facility, _ := conf.GetFacility() - severity, _ := conf.GetSeverity() - raddr := fmt.Sprintf("%s:%s", conf.Host, conf.Port) + facility, _ := w.Cnf.GetFacility() + severity, _ := w.Cnf.GetSeverity() + raddr := fmt.Sprintf("%s:%s", w.Cnf.Host, w.Cnf.Port) - sysLog, err := syslog.Dial(conf.Protocol, raddr, severity|facility, conf.Tag) + sysLog, err := syslog.Dial(w.Cnf.Protocol, raddr, severity|facility, w.Cnf.Tag) if err != nil { return xerrors.Errorf("Failed to initialize syslog client: %w", err) } @@ -72,7 +73,7 @@ func (w SyslogWriter) encodeSyslog(result models.ScanResult) (messages []string) if content, ok := vinfo.CveContents[models.Nvd]; ok { cwes := strings.Join(content.CweIDs, ",") kvPairs = append(kvPairs, fmt.Sprintf(`cwe_ids="%s"`, cwes)) - if config.Conf.Syslog.Verbose { + if w.Cnf.Verbose { kvPairs = append(kvPairs, fmt.Sprintf(`source_link="%s"`, content.SourceLink)) kvPairs = append(kvPairs, fmt.Sprintf(`summary="%s"`, content.Summary)) } diff --git a/reporter/telegram.go b/reporter/telegram.go index c47425cb..6e6d6e10 100644 --- a/reporter/telegram.go +++ b/reporter/telegram.go @@ -16,10 +16,12 @@ import ( ) // TelegramWriter sends report to Telegram -type TelegramWriter struct{} +type TelegramWriter struct { + Cnf config.TelegramConf + Proxy string +} func (w TelegramWriter) Write(rs ...models.ScanResult) (err error) { - conf := config.Conf.Telegram for _, r := range rs { msgs := []string{fmt.Sprintf("*%s*\n%s\n%s\n%s", r.ServerInfo(), @@ -40,14 +42,14 @@ func (w TelegramWriter) Write(rs ...models.ScanResult) (err error) { maxCvss.Value.Vector, vinfo.Summaries(r.Lang, r.Family)[0].Value)) if len(msgs) == 5 { - if err = sendMessage(conf.ChatID, conf.Token, strings.Join(msgs, "\n\n")); err != nil { + if err = w.sendMessage(w.Cnf.ChatID, w.Cnf.Token, strings.Join(msgs, "\n\n")); err != nil { return err } msgs = []string{} } } if len(msgs) != 0 { - if err = sendMessage(conf.ChatID, conf.Token, strings.Join(msgs, "\n\n")); err != nil { + if err = w.sendMessage(w.Cnf.ChatID, w.Cnf.Token, strings.Join(msgs, "\n\n")); err != nil { return err } } @@ -55,7 +57,7 @@ func (w TelegramWriter) Write(rs ...models.ScanResult) (err error) { return nil } -func sendMessage(chatID, token, message string) error { +func (w TelegramWriter) sendMessage(chatID, token, message string) error { uri := fmt.Sprintf("https://api.telegram.org/bot%s/sendMessage", token) payload := `{"text": "` + strings.Replace(message, `"`, `\"`, -1) + `", "chat_id": "` + chatID + `", "parse_mode": "Markdown" }` @@ -67,7 +69,7 @@ func sendMessage(chatID, token, message string) error { } req.Header.Add("Content-Type", "application/json") - client, err := util.GetHTTPClient(config.Conf.HTTPProxy) + client, err := util.GetHTTPClient(w.Proxy) if err != nil { return err } diff --git a/reporter/util.go b/reporter/util.go index e4d96da2..f006daf9 100644 --- a/reporter/util.go +++ b/reporter/util.go @@ -85,16 +85,15 @@ var jsonDirPattern = regexp.MustCompile( // ListValidJSONDirs returns valid json directory as array // Returned array is sorted so that recent directories are at the head -func ListValidJSONDirs() (dirs []string, err error) { +func ListValidJSONDirs(resultsDir string) (dirs []string, err error) { var dirInfo []os.FileInfo - if dirInfo, err = ioutil.ReadDir(config.Conf.ResultsDir); err != nil { - err = xerrors.Errorf("Failed to read %s: %w", - config.Conf.ResultsDir, err) + if dirInfo, err = ioutil.ReadDir(resultsDir); err != nil { + err = xerrors.Errorf("Failed to read %s: %w", resultsDir, err) return } for _, d := range dirInfo { if d.IsDir() && jsonDirPattern.MatchString(d.Name()) { - jsonDir := filepath.Join(config.Conf.ResultsDir, d.Name()) + jsonDir := filepath.Join(resultsDir, d.Name()) dirs = append(dirs, jsonDir) } } @@ -105,19 +104,17 @@ func ListValidJSONDirs() (dirs []string, err error) { } // JSONDir returns -// If there is an arg, check if it is a valid format and return the corresponding path under results. +// If there is args, check if it is a valid format and return the corresponding path under results. // If arg passed via PIPE (such as history subcommand), return that path. // Otherwise, returns the path of the latest directory -func JSONDir(args []string) (string, error) { - var err error +func JSONDir(resultsDir string, args []string) (path string, err error) { var dirs []string if 0 < len(args) { - if dirs, err = ListValidJSONDirs(); err != nil { + if dirs, err = ListValidJSONDirs(resultsDir); err != nil { return "", err } - - path := filepath.Join(config.Conf.ResultsDir, args[0]) + path = filepath.Join(resultsDir, args[0]) for _, d := range dirs { ss := strings.Split(d, string(os.PathSeparator)) timedir := ss[len(ss)-1] @@ -125,11 +122,10 @@ func JSONDir(args []string) (string, error) { return path, nil } } - return "", xerrors.Errorf("Invalid path: %s", path) } - // PIPE + // TODO remove Pipe flag if config.Conf.Pipe { bytes, err := ioutil.ReadAll(os.Stdin) if err != nil { @@ -137,18 +133,17 @@ func JSONDir(args []string) (string, error) { } fields := strings.Fields(string(bytes)) if 0 < len(fields) { - return filepath.Join(config.Conf.ResultsDir, fields[0]), nil + return filepath.Join(resultsDir, fields[0]), nil } return "", xerrors.Errorf("Stdin is invalid: %s", string(bytes)) } // returns latest dir when no args or no PIPE - if dirs, err = ListValidJSONDirs(); err != nil { + if dirs, err = ListValidJSONDirs(resultsDir); err != nil { return "", err } if len(dirs) == 0 { - return "", xerrors.Errorf("No results under %s", - config.Conf.ResultsDir) + return "", xerrors.Errorf("No results under %s", resultsDir) } return dirs[0], nil } @@ -224,6 +219,7 @@ func formatOneLineSummary(rs ...models.ScanResult) string { } } // We don't want warning message to the summary file + // TODO Don't use global variable if config.Conf.Quiet { return fmt.Sprintf("%s\n", table) } @@ -483,7 +479,7 @@ No CVE-IDs are found in updatable packages. } for _, alert := range vuln.AlertDict.En { - data = append(data, []string{"USCERT Alert", alert.URL}) + data = append(data, []string{"US-CERT Alert", alert.URL}) } // for _, rr := range vuln.CveContents.References(r.Family) { diff --git a/saas/saas.go b/saas/saas.go index 67b21b32..83e24b36 100644 --- a/saas/saas.go +++ b/saas/saas.go @@ -18,7 +18,6 @@ import ( "github.com/aws/aws-sdk-go/service/s3" "github.com/aws/aws-sdk-go/service/sts" "github.com/future-architect/vuls/config" - c "github.com/future-architect/vuls/config" "github.com/future-architect/vuls/logging" "github.com/future-architect/vuls/models" "github.com/future-architect/vuls/util" @@ -56,8 +55,8 @@ func (w Writer) Write(rs ...models.ScanResult) error { hostname, _ := os.Hostname() payload := payload{ - GroupID: c.Conf.Saas.GroupID, - Token: c.Conf.Saas.Token, + GroupID: config.Conf.Saas.GroupID, + Token: config.Conf.Saas.Token, ScannedBy: hostname, ScannedIPv4s: strings.Join(ipv4s, ", "), ScannedIPv6s: strings.Join(ipv6s, ", "), @@ -68,13 +67,14 @@ func (w Writer) Write(rs ...models.ScanResult) error { } ctx, cancel := context.WithTimeout(context.Background(), 10*time.Second) - req, err := http.NewRequestWithContext(ctx, http.MethodPost, c.Conf.Saas.URL, bytes.NewBuffer(body)) + req, err := http.NewRequestWithContext(ctx, http.MethodPost, config.Conf.Saas.URL, bytes.NewBuffer(body)) defer cancel() if err != nil { return err } req.Header.Set("Content-Type", "application/json") req.Header.Set("Accept", "application/json") + // TODO Don't use global variable client, err := util.GetHTTPClient(config.Conf.HTTPProxy) if err != nil { return err diff --git a/saas/uuid.go b/saas/uuid.go index 29150caa..231136a4 100644 --- a/saas/uuid.go +++ b/saas/uuid.go @@ -9,7 +9,7 @@ import ( "strings" "github.com/BurntSushi/toml" - c "github.com/future-architect/vuls/config" + "github.com/future-architect/vuls/config" "github.com/future-architect/vuls/logging" "github.com/future-architect/vuls/models" "github.com/hashicorp/go-uuid" @@ -18,7 +18,7 @@ import ( // EnsureUUIDs generate a new UUID of the scan target server if UUID is not assigned yet. // And then set the generated UUID to config.toml and scan results. -func EnsureUUIDs(servers map[string]c.ServerInfo, path string, scanResults models.ScanResults) (err error) { +func EnsureUUIDs(servers map[string]config.ServerInfo, path string, scanResults models.ScanResults) (err error) { needsOverwrite, err := ensure(servers, path, scanResults, uuid.GenerateUUID) if err != nil { return xerrors.Errorf("Failed to ensure UUIDs. err: %w", err) @@ -27,10 +27,10 @@ func EnsureUUIDs(servers map[string]c.ServerInfo, path string, scanResults model if !needsOverwrite { return } - return writeToFile(c.Conf, path) + return writeToFile(config.Conf, path) } -func ensure(servers map[string]c.ServerInfo, path string, scanResults models.ScanResults, generateFunc func() (string, error)) (needsOverwrite bool, err error) { +func ensure(servers map[string]config.ServerInfo, path string, scanResults models.ScanResults, generateFunc func() (string, error)) (needsOverwrite bool, err error) { for i, r := range scanResults { serverInfo := servers[r.ServerName] if serverInfo.UUIDs == nil { @@ -96,7 +96,7 @@ func ensure(servers map[string]c.ServerInfo, path string, scanResults models.Sca return needsOverwrite, nil } -func writeToFile(cnf c.Config, path string) error { +func writeToFile(cnf config.Config, path string) error { for name, server := range cnf.Servers { server = cleanForTOMLEncoding(server, cnf.Default) cnf.Servers[name] = server @@ -106,9 +106,9 @@ func writeToFile(cnf c.Config, path string) error { } c := struct { - Saas *c.SaasConf `toml:"saas"` - Default c.ServerInfo `toml:"default"` - Servers map[string]c.ServerInfo `toml:"servers"` + Saas *config.SaasConf `toml:"saas"` + Default config.ServerInfo `toml:"default"` + Servers map[string]config.ServerInfo `toml:"servers"` }{ Saas: &cnf.Saas, Default: cnf.Default, @@ -142,7 +142,7 @@ func writeToFile(cnf c.Config, path string) error { return ioutil.WriteFile(realPath, []byte(str), 0600) } -func cleanForTOMLEncoding(server c.ServerInfo, def c.ServerInfo) c.ServerInfo { +func cleanForTOMLEncoding(server config.ServerInfo, def config.ServerInfo) config.ServerInfo { if reflect.DeepEqual(server.Optional, def.Optional) { server.Optional = nil } diff --git a/scanner/base.go b/scanner/base.go index 631c6aae..f2ca134b 100644 --- a/scanner/base.go +++ b/scanner/base.go @@ -357,17 +357,15 @@ func (l *base) detectDeepSecurity() (string, error) { return "", xerrors.Errorf("Failed to detect deepsecurity %s", l.ServerInfo.ServerName) } -func (l *base) detectIPS() { - if !config.Conf.DetectIPS { - return - } +const deepSecurity string = "deepsecurity" +func (l *base) detectIPS() { ips := map[string]string{} fingerprint, err := l.detectDeepSecurity() if err != nil { return } - ips[config.DeepSecurity] = fingerprint + ips[deepSecurity] = fingerprint l.ServerInfo.IPSIdentifiers = ips } diff --git a/scanner/executil.go b/scanner/executil.go index b54b5ab9..c54ff71a 100644 --- a/scanner/executil.go +++ b/scanner/executil.go @@ -11,14 +11,14 @@ import ( "golang.org/x/xerrors" - conf "github.com/future-architect/vuls/config" + "github.com/future-architect/vuls/config" "github.com/future-architect/vuls/logging" homedir "github.com/mitchellh/go-homedir" ) type execResult struct { Servername string - Container conf.Container + Container config.Container Host string Port string Cmd string @@ -131,7 +131,7 @@ func parallelExec(fn func(osTypeInterface) error, timeoutSec ...int) { return } -func exec(c conf.ServerInfo, cmd string, sudo bool, log ...logging.Logger) (result execResult) { +func exec(c config.ServerInfo, cmd string, sudo bool, log ...logging.Logger) (result execResult) { logger := getSSHLogger(log...) logger.Debugf("Executing... %s", strings.Replace(cmd, "\n", "", -1)) @@ -149,7 +149,7 @@ func isLocalExec(port, host string) bool { return port == "local" && (host == "127.0.0.1" || host == "localhost") } -func localExec(c conf.ServerInfo, cmdstr string, sudo bool) (result execResult) { +func localExec(c config.ServerInfo, cmdstr string, sudo bool) (result execResult) { cmdstr = decorateCmd(c, cmdstr, sudo) var cmd *ex.Cmd switch c.Distro.Family { @@ -180,7 +180,7 @@ func localExec(c conf.ServerInfo, cmdstr string, sudo bool) (result execResult) return } -func sshExecExternal(c conf.ServerInfo, cmd string, sudo bool) (result execResult) { +func sshExecExternal(c config.ServerInfo, cmd string, sudo bool) (result execResult) { sshBinaryPath, err := ex.LookPath("ssh") if err != nil { return execResult{Error: err} @@ -211,7 +211,7 @@ func sshExecExternal(c conf.ServerInfo, cmd string, sudo bool) (result execResul ) } - if conf.Conf.Vvv { + if config.Conf.Vvv { defaultSSHArgs = append(defaultSSHArgs, "-vvv") } @@ -276,7 +276,7 @@ func dockerShell(family string) string { } } -func decorateCmd(c conf.ServerInfo, cmd string, sudo bool) string { +func decorateCmd(c config.ServerInfo, cmd string, sudo bool) string { if sudo && c.User != "root" && !c.IsContainer() { cmd = fmt.Sprintf("sudo -S %s", cmd) } diff --git a/scanner/serverapi.go b/scanner/serverapi.go index 621ad567..d8aca839 100644 --- a/scanner/serverapi.go +++ b/scanner/serverapi.go @@ -66,12 +66,14 @@ type osTypeInterface interface { // Scanner has functions for scan type Scanner struct { + ResultsDir string TimeoutSec int ScanTimeoutSec int CacheDBPath string Debug bool LogDir string Quiet bool + DetectIPS bool Targets map[string]config.ServerInfo } @@ -91,8 +93,10 @@ func (s Scanner) Scan() error { logging.Log.Info("Detecting Platforms... ") s.detectPlatform() - logging.Log.Info("Detecting IPS identifiers... ") - s.detectIPS() + if s.DetectIPS { + logging.Log.Info("Detecting IPS identifiers... ") + s.detectIPS() + } if err := s.execScan(); err != nil { return xerrors.Errorf("Failed to scan. err: %w", err) @@ -593,7 +597,7 @@ func (s Scanner) execScan() error { }() scannedAt := time.Now() - dir, err := EnsureResultDir(scannedAt) + dir, err := EnsureResultDir(s.ResultsDir, scannedAt) if err != nil { return err } diff --git a/scanner/utils.go b/scanner/utils.go index 6cf4c255..f4e1b07a 100644 --- a/scanner/utils.go +++ b/scanner/utils.go @@ -7,7 +7,6 @@ import ( "strings" "time" - "github.com/future-architect/vuls/config" "github.com/future-architect/vuls/constant" "github.com/future-architect/vuls/logging" "github.com/future-architect/vuls/models" @@ -42,11 +41,9 @@ func isRunningKernel(pack models.Package, family string, kernel models.Kernel) ( } // EnsureResultDir ensures the directory for scan results -func EnsureResultDir(scannedAt time.Time) (currentDir string, err error) { +func EnsureResultDir(resultsDir string, scannedAt time.Time) (currentDir string, err error) { jsonDirName := scannedAt.Format(time.RFC3339) - - resultsDir := config.Conf.ResultsDir - if len(resultsDir) == 0 { + if resultsDir == "" { wd, _ := os.Getwd() resultsDir = filepath.Join(wd, "results") } diff --git a/server/server.go b/server/server.go index 2112b73d..5b23da23 100644 --- a/server/server.go +++ b/server/server.go @@ -11,7 +11,9 @@ import ( "net/http" "time" + "github.com/future-architect/vuls/config" "github.com/future-architect/vuls/detector" + "github.com/future-architect/vuls/gost" "github.com/future-architect/vuls/logging" "github.com/future-architect/vuls/models" "github.com/future-architect/vuls/reporter" @@ -20,14 +22,13 @@ import ( // VulsHandler is used for vuls server mode type VulsHandler struct { - DBclient detector.DBClient ToLocalFile bool } // ServeHTTP is http handler func (h VulsHandler) ServeHTTP(w http.ResponseWriter, req *http.Request) { var err error - result := models.ScanResult{ScannedCves: models.VulnInfos{}} + r := models.ScanResult{ScannedCves: models.VulnInfos{}} contentType := req.Header.Get("Content-Type") mediatype, _, err := mime.ParseMediaType(contentType) @@ -38,7 +39,7 @@ func (h VulsHandler) ServeHTTP(w http.ResponseWriter, req *http.Request) { } if mediatype == "application/json" { - if err = json.NewDecoder(req.Body).Decode(&result); err != nil { + if err = json.NewDecoder(req.Body).Decode(&r); err != nil { logging.Log.Error(err) http.Error(w, "Invalid JSON", http.StatusBadRequest) return @@ -49,7 +50,7 @@ func (h VulsHandler) ServeHTTP(w http.ResponseWriter, req *http.Request) { http.Error(w, err.Error(), http.StatusBadRequest) return } - if result, err = scanner.ViaHTTP(req.Header, buf.String(), h.ToLocalFile); err != nil { + if r, err = scanner.ViaHTTP(req.Header, buf.String(), h.ToLocalFile); err != nil { logging.Log.Error(err) http.Error(w, err.Error(), http.StatusBadRequest) return @@ -60,22 +61,44 @@ func (h VulsHandler) ServeHTTP(w http.ResponseWriter, req *http.Request) { return } - if err := detector.DetectPkgCves(h.DBclient, &result); err != nil { + if err := detector.DetectPkgCves(&r, config.Conf.OvalDict, config.Conf.Gost); err != nil { logging.Log.Errorf("Failed to detect Pkg CVE: %+v", err) http.Error(w, err.Error(), http.StatusServiceUnavailable) return } - if err := detector.FillCveInfo(h.DBclient, &result); err != nil { - logging.Log.Errorf("Failed to fill CVE detailed info: %+v", err) + logging.Log.Infof("Fill CVE detailed with gost") + if err := gost.FillCVEsWithRedHat(&r, config.Conf.Gost); err != nil { + logging.Log.Errorf("Failed to fill with gost: %+v", err) http.Error(w, err.Error(), http.StatusServiceUnavailable) - return } + logging.Log.Infof("Fill CVE detailed with CVE-DB") + if err := detector.FillCvesWithNvdJvn(&r, config.Conf.CveDict, config.Conf.LogOpts); err != nil { + logging.Log.Errorf("Failed to fill with CVE: %+v", err) + http.Error(w, err.Error(), http.StatusServiceUnavailable) + } + + nExploitCve, err := detector.FillWithExploit(&r, config.Conf.Exploit) + if err != nil { + logging.Log.Errorf("Failed to fill with exploit: %+v", err) + http.Error(w, err.Error(), http.StatusServiceUnavailable) + } + logging.Log.Infof("%s: %d exploits are detected", r.FormatServerName(), nExploitCve) + + nMetasploitCve, err := detector.FillWithMetasploit(&r, config.Conf.Metasploit) + if err != nil { + logging.Log.Errorf("Failed to fill with metasploit: %+v", err) + http.Error(w, err.Error(), http.StatusServiceUnavailable) + } + logging.Log.Infof("%s: %d modules are detected", r.FormatServerName(), nMetasploitCve) + + detector.FillCweDict(&r) + // set ReportedAt to current time when it's set to the epoch, ensures that ReportedAt will be set // properly for scans sent to vuls when running in server mode - if result.ReportedAt.IsZero() { - result.ReportedAt = time.Now() + if r.ReportedAt.IsZero() { + r.ReportedAt = time.Now() } // report @@ -83,12 +106,12 @@ func (h VulsHandler) ServeHTTP(w http.ResponseWriter, req *http.Request) { reporter.HTTPResponseWriter{Writer: w}, } if h.ToLocalFile { - scannedAt := result.ScannedAt + scannedAt := r.ScannedAt if scannedAt.IsZero() { scannedAt = time.Now().Truncate(1 * time.Hour) - result.ScannedAt = scannedAt + r.ScannedAt = scannedAt } - dir, err := scanner.EnsureResultDir(scannedAt) + dir, err := scanner.EnsureResultDir(config.Conf.ResultsDir, scannedAt) if err != nil { logging.Log.Errorf("Failed to ensure the result directory: %+v", err) http.Error(w, err.Error(), http.StatusServiceUnavailable) @@ -103,7 +126,7 @@ func (h VulsHandler) ServeHTTP(w http.ResponseWriter, req *http.Request) { } for _, w := range reports { - if err := w.Write(result); err != nil { + if err := w.Write(r); err != nil { logging.Log.Errorf("Failed to report. err: %+v", err) return } diff --git a/subcmds/configtest.go b/subcmds/configtest.go index 525cfec8..53f64f80 100644 --- a/subcmds/configtest.go +++ b/subcmds/configtest.go @@ -10,7 +10,7 @@ import ( "github.com/google/subcommands" - c "github.com/future-architect/vuls/config" + "github.com/future-architect/vuls/config" "github.com/future-architect/vuls/logging" "github.com/future-architect/vuls/scanner" ) @@ -52,8 +52,8 @@ func (p *ConfigtestCmd) SetFlags(f *flag.FlagSet) { f.StringVar(&p.configPath, "config", defaultConfPath, "/path/to/toml") defaultLogDir := logging.GetDefaultLogDir() - f.StringVar(&c.Conf.LogDir, "log-dir", defaultLogDir, "/path/to/log") - f.BoolVar(&c.Conf.Debug, "debug", false, "debug mode") + f.StringVar(&config.Conf.LogDir, "log-dir", defaultLogDir, "/path/to/log") + f.BoolVar(&config.Conf.Debug, "debug", false, "debug mode") f.IntVar(&p.timeoutSec, "timeout", 5*60, "Timeout(Sec)") @@ -61,16 +61,16 @@ func (p *ConfigtestCmd) SetFlags(f *flag.FlagSet) { "Ask ssh privatekey password before scanning", ) - f.StringVar(&c.Conf.HTTPProxy, "http-proxy", "", + f.StringVar(&config.Conf.HTTPProxy, "http-proxy", "", "http://proxy-url:port (default: empty)") - f.BoolVar(&c.Conf.Vvv, "vvv", false, "ssh -vvv") + f.BoolVar(&config.Conf.Vvv, "vvv", false, "ssh -vvv") } // Execute execute func (p *ConfigtestCmd) Execute(_ context.Context, f *flag.FlagSet, _ ...interface{}) subcommands.ExitStatus { - logging.Log = logging.NewCustomLogger(c.Conf.Debug, c.Conf.Quiet, c.Conf.LogDir, "", "") - logging.Log.Infof("vuls-%s-%s", c.Version, c.Revision) + logging.Log = logging.NewCustomLogger(config.Conf.Debug, config.Conf.Quiet, config.Conf.LogDir, "", "") + logging.Log.Infof("vuls-%s-%s", config.Version, config.Revision) if err := mkdirDotVuls(); err != nil { logging.Log.Errorf("Failed to create $HOME/.vuls: %+v", err) @@ -87,7 +87,7 @@ func (p *ConfigtestCmd) Execute(_ context.Context, f *flag.FlagSet, _ ...interfa } } - err = c.Load(p.configPath, keyPass) + err = config.Load(p.configPath, keyPass) if err != nil { msg := []string{ fmt.Sprintf("Error loading %s", p.configPath), @@ -103,10 +103,10 @@ func (p *ConfigtestCmd) Execute(_ context.Context, f *flag.FlagSet, _ ...interfa servernames = f.Args() } - targets := make(map[string]c.ServerInfo) + targets := make(map[string]config.ServerInfo) for _, arg := range servernames { found := false - for servername, info := range c.Conf.Servers { + for servername, info := range config.Conf.Servers { if servername == arg { targets[servername] = info found = true @@ -120,14 +120,14 @@ func (p *ConfigtestCmd) Execute(_ context.Context, f *flag.FlagSet, _ ...interfa } if 0 < len(servernames) { // if scan target servers are specified by args, set to the config - c.Conf.Servers = targets + config.Conf.Servers = targets } else { // if not specified by args, scan all servers in the config - targets = c.Conf.Servers + targets = config.Conf.Servers } logging.Log.Info("Validating config...") - if !c.Conf.ValidateOnConfigtest() { + if !config.Conf.ValidateOnConfigtest() { return subcommands.ExitUsageError } diff --git a/subcmds/history.go b/subcmds/history.go index 5152ccbe..7f7a0cd7 100644 --- a/subcmds/history.go +++ b/subcmds/history.go @@ -9,7 +9,7 @@ import ( "path/filepath" "strings" - c "github.com/future-architect/vuls/config" + "github.com/future-architect/vuls/config" "github.com/future-architect/vuls/reporter" "github.com/google/subcommands" ) @@ -35,17 +35,16 @@ func (*HistoryCmd) Usage() string { // SetFlags set flag func (p *HistoryCmd) SetFlags(f *flag.FlagSet) { - f.BoolVar(&c.Conf.DebugSQL, "debug-sql", false, "SQL debug mode") + f.BoolVar(&config.Conf.DebugSQL, "debug-sql", false, "SQL debug mode") wd, _ := os.Getwd() defaultResultsDir := filepath.Join(wd, "results") - f.StringVar(&c.Conf.ResultsDir, "results-dir", defaultResultsDir, "/path/to/results") + f.StringVar(&config.Conf.ResultsDir, "results-dir", defaultResultsDir, "/path/to/results") } // Execute execute func (p *HistoryCmd) Execute(_ context.Context, f *flag.FlagSet, _ ...interface{}) subcommands.ExitStatus { - - dirs, err := reporter.ListValidJSONDirs() + dirs, err := reporter.ListValidJSONDirs(config.Conf.ResultsDir) if err != nil { return subcommands.ExitFailure } diff --git a/subcmds/report.go b/subcmds/report.go index c88eb384..430034a5 100644 --- a/subcmds/report.go +++ b/subcmds/report.go @@ -9,7 +9,7 @@ import ( "path/filepath" "github.com/aquasecurity/trivy/pkg/utils" - c "github.com/future-architect/vuls/config" + "github.com/future-architect/vuls/config" "github.com/future-architect/vuls/detector" "github.com/future-architect/vuls/logging" "github.com/future-architect/vuls/models" @@ -92,48 +92,48 @@ func (*ReportCmd) Usage() string { // SetFlags set flag func (p *ReportCmd) SetFlags(f *flag.FlagSet) { - f.StringVar(&c.Conf.Lang, "lang", "en", "[en|ja]") - f.BoolVar(&c.Conf.Debug, "debug", false, "debug mode") - f.BoolVar(&c.Conf.DebugSQL, "debug-sql", false, "SQL debug mode") - f.BoolVar(&c.Conf.Quiet, "quiet", false, "Quiet mode. No output on stdout") - f.BoolVar(&c.Conf.NoProgress, "no-progress", false, "Suppress progress bar") + f.StringVar(&config.Conf.Lang, "lang", "en", "[en|ja]") + f.BoolVar(&config.Conf.Debug, "debug", false, "debug mode") + f.BoolVar(&config.Conf.DebugSQL, "debug-sql", false, "SQL debug mode") + f.BoolVar(&config.Conf.Quiet, "quiet", false, "Quiet mode. No output on stdout") + f.BoolVar(&config.Conf.NoProgress, "no-progress", false, "Suppress progress bar") wd, _ := os.Getwd() defaultConfPath := filepath.Join(wd, "config.toml") f.StringVar(&p.configPath, "config", defaultConfPath, "/path/to/toml") defaultResultsDir := filepath.Join(wd, "results") - f.StringVar(&c.Conf.ResultsDir, "results-dir", defaultResultsDir, "/path/to/results") + f.StringVar(&config.Conf.ResultsDir, "results-dir", defaultResultsDir, "/path/to/results") defaultLogDir := logging.GetDefaultLogDir() - f.StringVar(&c.Conf.LogDir, "log-dir", defaultLogDir, "/path/to/log") + f.StringVar(&config.Conf.LogDir, "log-dir", defaultLogDir, "/path/to/log") - f.BoolVar(&c.Conf.RefreshCve, "refresh-cve", false, + f.BoolVar(&config.Conf.RefreshCve, "refresh-cve", false, "Refresh CVE information in JSON file under results dir") - f.Float64Var(&c.Conf.CvssScoreOver, "cvss-over", 0, + f.Float64Var(&config.Conf.CvssScoreOver, "cvss-over", 0, "-cvss-over=6.5 means reporting CVSS Score 6.5 and over (default: 0 (means report all))") - f.BoolVar(&c.Conf.DiffMinus, "diff-minus", false, + f.BoolVar(&config.Conf.DiffMinus, "diff-minus", false, "Minus Difference between previous result and current result") - f.BoolVar(&c.Conf.DiffPlus, "diff-plus", false, + f.BoolVar(&config.Conf.DiffPlus, "diff-plus", false, "Plus Difference between previous result and current result") - f.BoolVar(&c.Conf.Diff, "diff", false, + f.BoolVar(&config.Conf.Diff, "diff", false, "Plus & Minus Difference between previous result and current result") - f.BoolVar(&c.Conf.IgnoreUnscoredCves, "ignore-unscored-cves", false, + f.BoolVar(&config.Conf.IgnoreUnscoredCves, "ignore-unscored-cves", false, "Don't report the unscored CVEs") - f.BoolVar(&c.Conf.IgnoreUnfixed, "ignore-unfixed", false, + f.BoolVar(&config.Conf.IgnoreUnfixed, "ignore-unfixed", false, "Don't report the unfixed CVEs") - f.BoolVar(&c.Conf.IgnoreGitHubDismissed, "ignore-github-dismissed", false, + f.BoolVar(&config.Conf.IgnoreGitHubDismissed, "ignore-github-dismissed", false, "Don't report the dismissed CVEs on GitHub Security Alerts") f.StringVar( - &c.Conf.HTTPProxy, "http-proxy", "", + &config.Conf.HTTPProxy, "http-proxy", "", "http://proxy-url:port (default: empty)") f.BoolVar(&p.formatJSON, "format-json", false, "JSON format") @@ -158,40 +158,40 @@ func (p *ReportCmd) SetFlags(f *flag.FlagSet) { "Write report to Azure Storage blob (container/yyyyMMdd_HHmm/servername.json/txt)") f.BoolVar(&p.gzip, "gzip", false, "gzip compression") - f.BoolVar(&c.Conf.Pipe, "pipe", false, "Use args passed via PIPE") + f.BoolVar(&config.Conf.Pipe, "pipe", false, "Use args passed via PIPE") - f.StringVar(&c.Conf.TrivyCacheDBDir, "trivy-cachedb-dir", + f.StringVar(&config.Conf.TrivyCacheDBDir, "trivy-cachedb-dir", utils.DefaultCacheDir(), "/path/to/dir") } // Execute execute func (p *ReportCmd) Execute(_ context.Context, f *flag.FlagSet, _ ...interface{}) subcommands.ExitStatus { - logging.Log = logging.NewCustomLogger(c.Conf.Debug, c.Conf.Quiet, c.Conf.LogDir, "", "") - logging.Log.Infof("vuls-%s-%s", c.Version, c.Revision) + logging.Log = logging.NewCustomLogger(config.Conf.Debug, config.Conf.Quiet, config.Conf.LogDir, "", "") + logging.Log.Infof("vuls-%s-%s", config.Version, config.Revision) - if err := c.Load(p.configPath, ""); err != nil { + if err := config.Load(p.configPath, ""); err != nil { logging.Log.Errorf("Error loading %s, %+v", p.configPath, err) return subcommands.ExitUsageError } - c.Conf.Slack.Enabled = p.toSlack - c.Conf.ChatWork.Enabled = p.toChatWork - c.Conf.Telegram.Enabled = p.toTelegram - c.Conf.EMail.Enabled = p.toEmail - c.Conf.Syslog.Enabled = p.toSyslog - c.Conf.AWS.Enabled = p.toS3 - c.Conf.Azure.Enabled = p.toAzureBlob - c.Conf.HTTP.Enabled = p.toHTTP + config.Conf.Slack.Enabled = p.toSlack + config.Conf.ChatWork.Enabled = p.toChatWork + config.Conf.Telegram.Enabled = p.toTelegram + config.Conf.EMail.Enabled = p.toEmail + config.Conf.Syslog.Enabled = p.toSyslog + config.Conf.AWS.Enabled = p.toS3 + config.Conf.Azure.Enabled = p.toAzureBlob + config.Conf.HTTP.Enabled = p.toHTTP - if c.Conf.Diff { - c.Conf.DiffPlus, c.Conf.DiffMinus = true, true + if config.Conf.Diff { + config.Conf.DiffPlus, config.Conf.DiffMinus = true, true } var dir string var err error - if c.Conf.DiffPlus || c.Conf.DiffMinus { - dir, err = reporter.JSONDir([]string{}) + if config.Conf.DiffPlus || config.Conf.DiffMinus { + dir, err = reporter.JSONDir(config.Conf.ResultsDir, []string{}) } else { - dir, err = reporter.JSONDir(f.Args()) + dir, err = reporter.JSONDir(config.Conf.ResultsDir, f.Args()) } if err != nil { logging.Log.Errorf("Failed to read from JSON: %+v", err) @@ -199,7 +199,7 @@ func (p *ReportCmd) Execute(_ context.Context, f *flag.FlagSet, _ ...interface{} } logging.Log.Info("Validating config...") - if !c.Conf.ValidateOnReport() { + if !config.Conf.ValidateOnReport() { return subcommands.ExitUsageError } @@ -233,28 +233,10 @@ func (p *ReportCmd) Execute(_ context.Context, f *flag.FlagSet, _ ...interface{} for _, r := range res { logging.Log.Debugf("%s: %s", - r.ServerInfo(), pp.Sprintf("%s", c.Conf.Servers[r.ServerName])) + r.ServerInfo(), pp.Sprintf("%s", config.Conf.Servers[r.ServerName])) } - dbclient, err := detector.NewDBClient( - &c.Conf.CveDict, - &c.Conf.OvalDict, - &c.Conf.Gost, - &c.Conf.Exploit, - &c.Conf.Metasploit, - c.Conf.DebugSQL, - ) - if err != nil { - logging.Log.Errorf("Failed to init DB Clients. err: %+v", err) - return subcommands.ExitFailure - } - defer func() { - for _, err := range dbclient.CloseDB() { - logging.Log.Errorf("Failed to CloseDB. err: %+v", err) - } - }() - - if res, err = detector.Detect(*dbclient, res, dir); err != nil { + if res, err = detector.Detect(res, dir); err != nil { logging.Log.Errorf("%+v", err) return subcommands.ExitFailure } @@ -272,15 +254,17 @@ func (p *ReportCmd) Execute(_ context.Context, f *flag.FlagSet, _ ...interface{} if p.toSlack { reports = append(reports, reporter.SlackWriter{ FormatOneLineText: p.formatOneLineText, + Cnf: config.Conf.Slack, + Proxy: config.Conf.HTTPProxy, }) } if p.toChatWork { - reports = append(reports, reporter.ChatWorkWriter{}) + reports = append(reports, reporter.ChatWorkWriter{Cnf: config.Conf.ChatWork, Proxy: config.Conf.HTTPProxy}) } if p.toTelegram { - reports = append(reports, reporter.TelegramWriter{}) + reports = append(reports, reporter.TelegramWriter{Cnf: config.Conf.Telegram}) } if p.toEmail { @@ -288,22 +272,23 @@ func (p *ReportCmd) Execute(_ context.Context, f *flag.FlagSet, _ ...interface{} FormatOneEMail: p.formatOneEMail, FormatOneLineText: p.formatOneLineText, FormatList: p.formatList, + Cnf: config.Conf.EMail, }) } if p.toSyslog { - reports = append(reports, reporter.SyslogWriter{}) + reports = append(reports, reporter.SyslogWriter{Cnf: config.Conf.Syslog}) } if p.toHTTP { - reports = append(reports, reporter.HTTPRequestWriter{}) + reports = append(reports, reporter.HTTPRequestWriter{Proxy: config.Conf.HTTPProxy}) } if p.toLocalFile { reports = append(reports, reporter.LocalFileWriter{ CurrentDir: dir, - DiffPlus: c.Conf.DiffPlus, - DiffMinus: c.Conf.DiffMinus, + DiffPlus: config.Conf.DiffPlus, + DiffMinus: config.Conf.DiffMinus, FormatJSON: p.formatJSON, FormatCsv: p.formatCsv, FormatFullText: p.formatFullText, @@ -320,10 +305,10 @@ func (p *ReportCmd) Execute(_ context.Context, f *flag.FlagSet, _ ...interface{} FormatOneLineText: p.formatOneLineText, FormatList: p.formatList, Gzip: p.gzip, - AWSConf: c.Conf.AWS, + AWSConf: config.Conf.AWS, } if err := w.Validate(); err != nil { - logging.Log.Errorf("Check if there is a bucket beforehand: %s, err: %+v", c.Conf.AWS.S3Bucket, err) + logging.Log.Errorf("Check if there is a bucket beforehand: %s, err: %+v", config.Conf.AWS.S3Bucket, err) return subcommands.ExitUsageError } reports = append(reports, w) @@ -336,10 +321,10 @@ func (p *ReportCmd) Execute(_ context.Context, f *flag.FlagSet, _ ...interface{} FormatOneLineText: p.formatOneLineText, FormatList: p.formatList, Gzip: p.gzip, - AzureConf: c.Conf.Azure, + AzureConf: config.Conf.Azure, } if err := w.Validate(); err != nil { - logging.Log.Errorf("Check if there is a container beforehand: %s, err: %+v", c.Conf.Azure.ContainerName, err) + logging.Log.Errorf("Check if there is a container beforehand: %s, err: %+v", config.Conf.Azure.ContainerName, err) return subcommands.ExitUsageError } reports = append(reports, w) diff --git a/subcmds/saas.go b/subcmds/saas.go index fa9dd68e..bf08ae6f 100644 --- a/subcmds/saas.go +++ b/subcmds/saas.go @@ -6,7 +6,7 @@ import ( "os" "path/filepath" - c "github.com/future-architect/vuls/config" + "github.com/future-architect/vuls/config" "github.com/future-architect/vuls/logging" "github.com/future-architect/vuls/models" "github.com/future-architect/vuls/reporter" @@ -41,41 +41,41 @@ func (*SaaSCmd) Usage() string { // SetFlags set flag func (p *SaaSCmd) SetFlags(f *flag.FlagSet) { - f.BoolVar(&c.Conf.Debug, "debug", false, "debug mode") - f.BoolVar(&c.Conf.Quiet, "quiet", false, "Quiet mode. No output on stdout") + f.BoolVar(&config.Conf.Debug, "debug", false, "debug mode") + f.BoolVar(&config.Conf.Quiet, "quiet", false, "Quiet mode. No output on stdout") wd, _ := os.Getwd() defaultConfPath := filepath.Join(wd, "config.toml") f.StringVar(&p.configPath, "config", defaultConfPath, "/path/to/toml") defaultResultsDir := filepath.Join(wd, "results") - f.StringVar(&c.Conf.ResultsDir, "results-dir", defaultResultsDir, "/path/to/results") + f.StringVar(&config.Conf.ResultsDir, "results-dir", defaultResultsDir, "/path/to/results") defaultLogDir := logging.GetDefaultLogDir() - f.StringVar(&c.Conf.LogDir, "log-dir", defaultLogDir, "/path/to/log") + f.StringVar(&config.Conf.LogDir, "log-dir", defaultLogDir, "/path/to/log") f.StringVar( - &c.Conf.HTTPProxy, "http-proxy", "", + &config.Conf.HTTPProxy, "http-proxy", "", "http://proxy-url:port (default: empty)") } // Execute execute func (p *SaaSCmd) Execute(_ context.Context, f *flag.FlagSet, _ ...interface{}) subcommands.ExitStatus { - logging.Log = logging.NewCustomLogger(c.Conf.Debug, c.Conf.Quiet, c.Conf.LogDir, "", "") - logging.Log.Infof("vuls-%s-%s", c.Version, c.Revision) - if err := c.Load(p.configPath, ""); err != nil { + logging.Log = logging.NewCustomLogger(config.Conf.Debug, config.Conf.Quiet, config.Conf.LogDir, "", "") + logging.Log.Infof("vuls-%s-%s", config.Version, config.Revision) + if err := config.Load(p.configPath, ""); err != nil { logging.Log.Errorf("Error loading %s, %+v", p.configPath, err) return subcommands.ExitUsageError } - dir, err := reporter.JSONDir(f.Args()) + dir, err := reporter.JSONDir(config.Conf.ResultsDir, f.Args()) if err != nil { logging.Log.Errorf("Failed to read from JSON: %+v", err) return subcommands.ExitFailure } logging.Log.Info("Validating config...") - if !c.Conf.ValidateOnSaaS() { + if !config.Conf.ValidateOnSaaS() { return subcommands.ExitUsageError } @@ -104,11 +104,11 @@ func (p *SaaSCmd) Execute(_ context.Context, f *flag.FlagSet, _ ...interface{}) for _, r := range res { logging.Log.Debugf("%s: %s", - r.ServerInfo(), pp.Sprintf("%s", c.Conf.Servers[r.ServerName])) + r.ServerInfo(), pp.Sprintf("%s", config.Conf.Servers[r.ServerName])) } // Ensure UUIDs of scan target servers in config.toml - if err := saas.EnsureUUIDs(c.Conf.Servers, p.configPath, res); err != nil { + if err := saas.EnsureUUIDs(config.Conf.Servers, p.configPath, res); err != nil { logging.Log.Errorf("Failed to ensure UUIDs. err: %+v", err) return subcommands.ExitFailure } diff --git a/subcmds/scan.go b/subcmds/scan.go index 9b81d413..453a85af 100644 --- a/subcmds/scan.go +++ b/subcmds/scan.go @@ -10,7 +10,7 @@ import ( "strings" "github.com/asaskevich/govalidator" - c "github.com/future-architect/vuls/config" + "github.com/future-architect/vuls/config" "github.com/future-architect/vuls/logging" "github.com/future-architect/vuls/scanner" "github.com/google/subcommands" @@ -24,6 +24,7 @@ type ScanCmd struct { timeoutSec int scanTimeoutSec int cacheDBPath string + detectIPS bool } // Name return subcommand name @@ -57,34 +58,34 @@ func (*ScanCmd) Usage() string { // SetFlags set flag func (p *ScanCmd) SetFlags(f *flag.FlagSet) { - f.BoolVar(&c.Conf.Debug, "debug", false, "debug mode") - f.BoolVar(&c.Conf.Quiet, "quiet", false, "Quiet mode. No output on stdout") + f.BoolVar(&config.Conf.Debug, "debug", false, "debug mode") + f.BoolVar(&config.Conf.Quiet, "quiet", false, "Quiet mode. No output on stdout") wd, _ := os.Getwd() defaultConfPath := filepath.Join(wd, "config.toml") f.StringVar(&p.configPath, "config", defaultConfPath, "/path/to/toml") defaultResultsDir := filepath.Join(wd, "results") - f.StringVar(&c.Conf.ResultsDir, "results-dir", defaultResultsDir, "/path/to/results") + f.StringVar(&config.Conf.ResultsDir, "results-dir", defaultResultsDir, "/path/to/results") defaultLogDir := logging.GetDefaultLogDir() - f.StringVar(&c.Conf.LogDir, "log-dir", defaultLogDir, "/path/to/log") + f.StringVar(&config.Conf.LogDir, "log-dir", defaultLogDir, "/path/to/log") defaultCacheDBPath := filepath.Join(wd, "cache.db") f.StringVar(&p.cacheDBPath, "cachedb-path", defaultCacheDBPath, "/path/to/cache.db (local cache of changelog for Ubuntu/Debian)") - f.StringVar(&c.Conf.HTTPProxy, "http-proxy", "", + f.StringVar(&config.Conf.HTTPProxy, "http-proxy", "", "http://proxy-url:port (default: empty)") f.BoolVar(&p.askKeyPassword, "ask-key-password", false, "Ask ssh privatekey password before scanning", ) - f.BoolVar(&c.Conf.Pipe, "pipe", false, "Use stdin via PIPE") + f.BoolVar(&config.Conf.Pipe, "pipe", false, "Use stdin via PIPE") - f.BoolVar(&c.Conf.DetectIPS, "ips", false, "retrieve IPS information") - f.BoolVar(&c.Conf.Vvv, "vvv", false, "ssh -vvv") + f.BoolVar(&p.detectIPS, "ips", false, "retrieve IPS information") + f.BoolVar(&config.Conf.Vvv, "vvv", false, "ssh -vvv") f.IntVar(&p.timeoutSec, "timeout", 5*60, "Number of seconds for processing other than scan", @@ -97,8 +98,8 @@ func (p *ScanCmd) SetFlags(f *flag.FlagSet) { // Execute execute func (p *ScanCmd) Execute(_ context.Context, f *flag.FlagSet, _ ...interface{}) subcommands.ExitStatus { - logging.Log = logging.NewCustomLogger(c.Conf.Debug, c.Conf.Quiet, c.Conf.LogDir, "", "") - logging.Log.Infof("vuls-%s-%s", c.Version, c.Revision) + logging.Log = logging.NewCustomLogger(config.Conf.Debug, config.Conf.Quiet, config.Conf.LogDir, "", "") + logging.Log.Infof("vuls-%s-%s", config.Version, config.Revision) if err := mkdirDotVuls(); err != nil { logging.Log.Errorf("Failed to create $HOME/.vuls err: %+v", err) @@ -123,7 +124,7 @@ func (p *ScanCmd) Execute(_ context.Context, f *flag.FlagSet, _ ...interface{}) } } - err = c.Load(p.configPath, keyPass) + err = config.Load(p.configPath, keyPass) if err != nil { msg := []string{ fmt.Sprintf("Error loading %s", p.configPath), @@ -140,7 +141,7 @@ func (p *ScanCmd) Execute(_ context.Context, f *flag.FlagSet, _ ...interface{}) var servernames []string if 0 < len(f.Args()) { servernames = f.Args() - } else if c.Conf.Pipe { + } else if config.Conf.Pipe { bytes, err := ioutil.ReadAll(os.Stdin) if err != nil { logging.Log.Errorf("Failed to read stdin. err: %+v", err) @@ -152,10 +153,10 @@ func (p *ScanCmd) Execute(_ context.Context, f *flag.FlagSet, _ ...interface{}) } } - targets := make(map[string]c.ServerInfo) + targets := make(map[string]config.ServerInfo) for _, arg := range servernames { found := false - for servername, info := range c.Conf.Servers { + for servername, info := range config.Conf.Servers { if servername == arg { targets[servername] = info found = true @@ -169,26 +170,28 @@ func (p *ScanCmd) Execute(_ context.Context, f *flag.FlagSet, _ ...interface{}) } if 0 < len(servernames) { // if scan target servers are specified by args, set to the config - c.Conf.Servers = targets + config.Conf.Servers = targets } else { // if not specified by args, scan all servers in the config - targets = c.Conf.Servers + targets = config.Conf.Servers } logging.Log.Debugf("%s", pp.Sprintf("%v", targets)) logging.Log.Info("Validating config...") - if !c.Conf.ValidateOnScan() { + if !config.Conf.ValidateOnScan() { return subcommands.ExitUsageError } s := scanner.Scanner{ + ResultsDir: config.Conf.ResultsDir, TimeoutSec: p.timeoutSec, ScanTimeoutSec: p.scanTimeoutSec, CacheDBPath: p.cacheDBPath, Targets: targets, - Debug: c.Conf.Debug, - Quiet: c.Conf.Quiet, - LogDir: c.Conf.LogDir, + Debug: config.Conf.Debug, + Quiet: config.Conf.Quiet, + LogDir: config.Conf.LogDir, + DetectIPS: p.detectIPS, } if err := s.Scan(); err != nil { diff --git a/subcmds/server.go b/subcmds/server.go index 1563ee8a..767a4ad5 100644 --- a/subcmds/server.go +++ b/subcmds/server.go @@ -10,10 +10,7 @@ import ( "os" "path/filepath" - // "github.com/future-architect/vuls/Server" - - c "github.com/future-architect/vuls/config" - "github.com/future-architect/vuls/detector" + "github.com/future-architect/vuls/config" "github.com/future-architect/vuls/logging" "github.com/future-architect/vuls/server" "github.com/google/subcommands" @@ -54,30 +51,30 @@ func (*ServerCmd) Usage() string { // SetFlags set flag func (p *ServerCmd) SetFlags(f *flag.FlagSet) { - f.StringVar(&c.Conf.Lang, "lang", "en", "[en|ja]") - f.BoolVar(&c.Conf.Debug, "debug", false, "debug mode") - f.BoolVar(&c.Conf.DebugSQL, "debug-sql", false, "SQL debug mode") + f.StringVar(&config.Conf.Lang, "lang", "en", "[en|ja]") + f.BoolVar(&config.Conf.Debug, "debug", false, "debug mode") + f.BoolVar(&config.Conf.DebugSQL, "debug-sql", false, "SQL debug mode") wd, _ := os.Getwd() defaultConfPath := filepath.Join(wd, "config.toml") f.StringVar(&p.configPath, "config", defaultConfPath, "/path/to/toml") defaultResultsDir := filepath.Join(wd, "results") - f.StringVar(&c.Conf.ResultsDir, "results-dir", defaultResultsDir, "/path/to/results") + f.StringVar(&config.Conf.ResultsDir, "results-dir", defaultResultsDir, "/path/to/results") defaultLogDir := logging.GetDefaultLogDir() - f.StringVar(&c.Conf.LogDir, "log-dir", defaultLogDir, "/path/to/log") + f.StringVar(&config.Conf.LogDir, "log-dir", defaultLogDir, "/path/to/log") - f.Float64Var(&c.Conf.CvssScoreOver, "cvss-over", 0, + f.Float64Var(&config.Conf.CvssScoreOver, "cvss-over", 0, "-cvss-over=6.5 means Servering CVSS Score 6.5 and over (default: 0 (means Server all))") - f.BoolVar(&c.Conf.IgnoreUnscoredCves, "ignore-unscored-cves", false, + f.BoolVar(&config.Conf.IgnoreUnscoredCves, "ignore-unscored-cves", false, "Don't Server the unscored CVEs") - f.BoolVar(&c.Conf.IgnoreUnfixed, "ignore-unfixed", false, + f.BoolVar(&config.Conf.IgnoreUnfixed, "ignore-unfixed", false, "Don't show the unfixed CVEs") - f.StringVar(&c.Conf.HTTPProxy, "http-proxy", "", + f.StringVar(&config.Conf.HTTPProxy, "http-proxy", "", "http://proxy-url:port (default: empty)") f.BoolVar(&p.toLocalFile, "to-localfile", false, "Write report to localfile") @@ -87,38 +84,19 @@ func (p *ServerCmd) SetFlags(f *flag.FlagSet) { // Execute execute func (p *ServerCmd) Execute(_ context.Context, f *flag.FlagSet, _ ...interface{}) subcommands.ExitStatus { - logging.Log = logging.NewCustomLogger(c.Conf.Debug, c.Conf.Quiet, c.Conf.LogDir, "", "") - logging.Log.Infof("vuls-%s-%s", c.Version, c.Revision) - if err := c.Load(p.configPath, ""); err != nil { + logging.Log = logging.NewCustomLogger(config.Conf.Debug, config.Conf.Quiet, config.Conf.LogDir, "", "") + logging.Log.Infof("vuls-%s-%s", config.Version, config.Revision) + if err := config.Load(p.configPath, ""); err != nil { logging.Log.Errorf("Error loading %s. err: %+v", p.configPath, err) return subcommands.ExitUsageError } logging.Log.Info("Validating config...") - if !c.Conf.ValidateOnReport() { + if !config.Conf.ValidateOnReport() { return subcommands.ExitUsageError } - dbclient, err := detector.NewDBClient( - &c.Conf.CveDict, - &c.Conf.OvalDict, - &c.Conf.Gost, - &c.Conf.Exploit, - &c.Conf.Metasploit, - c.Conf.DebugSQL, - ) - if err != nil { - logging.Log.Errorf("Failed to init DB Clients. err: %+v", err) - return subcommands.ExitFailure - } - defer func() { - for _, err := range dbclient.CloseDB() { - logging.Log.Errorf("Failed to CloseDB. err: %+v", err) - } - }() - http.Handle("/vuls", server.VulsHandler{ - DBclient: *dbclient, ToLocalFile: p.toLocalFile, }) http.HandleFunc("/health", func(w http.ResponseWriter, r *http.Request) { diff --git a/subcmds/tui.go b/subcmds/tui.go index 432e9afe..31eed9e8 100644 --- a/subcmds/tui.go +++ b/subcmds/tui.go @@ -9,7 +9,7 @@ import ( "path/filepath" "github.com/aquasecurity/trivy/pkg/utils" - c "github.com/future-architect/vuls/config" + "github.com/future-architect/vuls/config" "github.com/future-architect/vuls/detector" "github.com/future-architect/vuls/logging" "github.com/future-architect/vuls/models" @@ -56,70 +56,70 @@ func (*TuiCmd) Usage() string { // SetFlags set flag func (p *TuiCmd) SetFlags(f *flag.FlagSet) { // f.StringVar(&p.lang, "lang", "en", "[en|ja]") - f.BoolVar(&c.Conf.DebugSQL, "debug-sql", false, "debug SQL") - f.BoolVar(&c.Conf.Debug, "debug", false, "debug mode") - f.BoolVar(&c.Conf.Quiet, "quiet", false, "Quiet mode. No output on stdout") - f.BoolVar(&c.Conf.NoProgress, "no-progress", false, "Suppress progress bar") + f.BoolVar(&config.Conf.DebugSQL, "debug-sql", false, "debug SQL") + f.BoolVar(&config.Conf.Debug, "debug", false, "debug mode") + f.BoolVar(&config.Conf.Quiet, "quiet", false, "Quiet mode. No output on stdout") + f.BoolVar(&config.Conf.NoProgress, "no-progress", false, "Suppress progress bar") defaultLogDir := logging.GetDefaultLogDir() - f.StringVar(&c.Conf.LogDir, "log-dir", defaultLogDir, "/path/to/log") + f.StringVar(&config.Conf.LogDir, "log-dir", defaultLogDir, "/path/to/log") wd, _ := os.Getwd() defaultResultsDir := filepath.Join(wd, "results") - f.StringVar(&c.Conf.ResultsDir, "results-dir", defaultResultsDir, "/path/to/results") + f.StringVar(&config.Conf.ResultsDir, "results-dir", defaultResultsDir, "/path/to/results") defaultConfPath := filepath.Join(wd, "config.toml") f.StringVar(&p.configPath, "config", defaultConfPath, "/path/to/toml") - f.BoolVar(&c.Conf.RefreshCve, "refresh-cve", false, + f.BoolVar(&config.Conf.RefreshCve, "refresh-cve", false, "Refresh CVE information in JSON file under results dir") - f.Float64Var(&c.Conf.CvssScoreOver, "cvss-over", 0, + f.Float64Var(&config.Conf.CvssScoreOver, "cvss-over", 0, "-cvss-over=6.5 means reporting CVSS Score 6.5 and over (default: 0 (means report all))") - f.BoolVar(&c.Conf.Diff, "diff", false, + f.BoolVar(&config.Conf.Diff, "diff", false, "Plus Difference between previous result and current result") - f.BoolVar(&c.Conf.DiffPlus, "diff-plus", false, + f.BoolVar(&config.Conf.DiffPlus, "diff-plus", false, "Plus Difference between previous result and current result") - f.BoolVar(&c.Conf.DiffMinus, "diff-minus", false, + f.BoolVar(&config.Conf.DiffMinus, "diff-minus", false, "Minus Difference between previous result and current result") f.BoolVar( - &c.Conf.IgnoreUnscoredCves, "ignore-unscored-cves", false, + &config.Conf.IgnoreUnscoredCves, "ignore-unscored-cves", false, "Don't report the unscored CVEs") - f.BoolVar(&c.Conf.IgnoreUnfixed, "ignore-unfixed", false, + f.BoolVar(&config.Conf.IgnoreUnfixed, "ignore-unfixed", false, "Don't report the unfixed CVEs") - f.BoolVar(&c.Conf.Pipe, "pipe", false, "Use stdin via PIPE") + f.BoolVar(&config.Conf.Pipe, "pipe", false, "Use stdin via PIPE") - f.StringVar(&c.Conf.TrivyCacheDBDir, "trivy-cachedb-dir", + f.StringVar(&config.Conf.TrivyCacheDBDir, "trivy-cachedb-dir", utils.DefaultCacheDir(), "/path/to/dir") } // Execute execute func (p *TuiCmd) Execute(_ context.Context, f *flag.FlagSet, _ ...interface{}) subcommands.ExitStatus { - logging.Log = logging.NewCustomLogger(c.Conf.Debug, c.Conf.Quiet, c.Conf.LogDir, "", "") - logging.Log.Infof("vuls-%s-%s", c.Version, c.Revision) - if err := c.Load(p.configPath, ""); err != nil { + logging.Log = logging.NewCustomLogger(config.Conf.Debug, config.Conf.Quiet, config.Conf.LogDir, "", "") + logging.Log.Infof("vuls-%s-%s", config.Version, config.Revision) + if err := config.Load(p.configPath, ""); err != nil { logging.Log.Errorf("Error loading %s, err: %+v", p.configPath, err) return subcommands.ExitUsageError } - c.Conf.Lang = "en" + config.Conf.Lang = "en" - if c.Conf.Diff { - c.Conf.DiffPlus = true - c.Conf.DiffMinus = true + if config.Conf.Diff { + config.Conf.DiffPlus = true + config.Conf.DiffMinus = true } var dir string var err error - if c.Conf.DiffPlus || c.Conf.DiffMinus { - dir, err = reporter.JSONDir([]string{}) + if config.Conf.DiffPlus || config.Conf.DiffMinus { + dir, err = reporter.JSONDir(config.Conf.ResultsDir, []string{}) } else { - dir, err = reporter.JSONDir(f.Args()) + dir, err = reporter.JSONDir(config.Conf.ResultsDir, f.Args()) } if err != nil { logging.Log.Errorf("Failed to read from JSON. err: %+v", err) @@ -127,7 +127,7 @@ func (p *TuiCmd) Execute(_ context.Context, f *flag.FlagSet, _ ...interface{}) s } logging.Log.Info("Validating config...") - if !c.Conf.ValidateOnTui() { + if !config.Conf.ValidateOnReport() { return subcommands.ExitUsageError } @@ -138,25 +138,7 @@ func (p *TuiCmd) Execute(_ context.Context, f *flag.FlagSet, _ ...interface{}) s } logging.Log.Infof("Loaded: %s", dir) - dbclient, err := detector.NewDBClient( - &c.Conf.CveDict, - &c.Conf.OvalDict, - &c.Conf.Gost, - &c.Conf.Exploit, - &c.Conf.Metasploit, - c.Conf.DebugSQL, - ) - if err != nil { - logging.Log.Errorf("Failed to init DB Clients. err: %+v", err) - return subcommands.ExitFailure - } - defer func() { - for _, err := range dbclient.CloseDB() { - logging.Log.Errorf("Failed to CloseDB. err: %+v", err) - } - }() - - if res, err = detector.Detect(*dbclient, res, dir); err != nil { + if res, err = detector.Detect(res, dir); err != nil { logging.Log.Error(err) return subcommands.ExitFailure } diff --git a/util/util.go b/util/util.go index 0985cc77..45be5714 100644 --- a/util/util.go +++ b/util/util.go @@ -110,8 +110,16 @@ func IP() (ipv4Addrs []string, ipv6Addrs []string, err error) { return ipv4Addrs, ipv6Addrs, nil } -// ProxyEnv returns shell environment variables to set proxy -func ProxyEnv() string { +// PrependProxyEnv prepends proxy environment variable +func PrependProxyEnv(cmd string) string { + if config.Conf.HTTPProxy == "" { + return cmd + } + return fmt.Sprintf("%s %s", proxyEnv(), cmd) +} + +// proxyEnv returns shell environment variables to set proxy +func proxyEnv() string { httpProxyEnv := "" keys := []string{ "http_proxy", @@ -120,20 +128,11 @@ func ProxyEnv() string { "HTTPS_PROXY", } for _, key := range keys { - httpProxyEnv += fmt.Sprintf( - ` %s="%s"`, key, config.Conf.HTTPProxy) + httpProxyEnv += fmt.Sprintf(` %s="%s"`, key, config.Conf.HTTPProxy) } return httpProxyEnv } -// PrependProxyEnv prepends proxy environment variable -func PrependProxyEnv(cmd string) string { - if config.Conf.HTTPProxy == "" { - return cmd - } - return fmt.Sprintf("%s %s", ProxyEnv(), cmd) -} - // func unixtime(s string) (time.Time, error) { // i, err := strconv.ParseInt(s, 10, 64) // if err != nil {