From 82c1abfd3acad16e904f457105e3f77646f5a860 Mon Sep 17 00:00:00 2001 From: Kota Kanbe Date: Wed, 9 Jun 2021 05:46:42 +0900 Subject: [PATCH 1/8] fix(report): detection logic bugs for Oracle Linux (#1247) * fix(report): continue detecting if arch is emtpy for Oracle Linux * fix test case * fix(report): a bug of `Not Fixed Yet` of Oracle linux scanning --- oval/util.go | 6 ++++-- oval/util_test.go | 10 ++++++---- 2 files changed, 10 insertions(+), 6 deletions(-) diff --git a/oval/util.go b/oval/util.go index b6897fb4..78318b7c 100644 --- a/oval/util.go +++ b/oval/util.go @@ -306,7 +306,8 @@ func isOvalDefAffected(def ovalmodels.Definition, req request, family string, ru switch family { case constant.Oracle, constant.Amazon: if ovalPack.Arch == "" { - return false, false, "", xerrors.Errorf("OVAL DB for %s is old. Please re-fetch the OVAL", family) + logging.Log.Infof("Arch is needed to detect Vulns for Amazon and Oracle Linux, but empty. You need refresh OVAL maybe. oval: %s, defID: %s", ovalPack, def.DefinitionID) + continue } } @@ -370,7 +371,8 @@ func isOvalDefAffected(def ovalmodels.Definition, req request, family string, ru constant.SUSEEnterpriseServer, constant.Debian, constant.Ubuntu, - constant.Raspbian: + constant.Raspbian, + constant.Oracle: // Use fixed state in OVAL for these distros. return true, false, ovalPack.Version, nil } diff --git a/oval/util_test.go b/oval/util_test.go index 03a0b23e..97f5f325 100644 --- a/oval/util_test.go +++ b/oval/util_test.go @@ -1263,7 +1263,7 @@ func TestIsOvalDefAffected(t *testing.T) { affected: true, fixedIn: "2.17-106.0.1", }, - // error when arch is empty for Oracle, Amazon linux + // arch is empty for Oracle, Amazon linux { in: in{ family: constant.Oracle, @@ -1282,9 +1282,10 @@ func TestIsOvalDefAffected(t *testing.T) { arch: "x86_64", }, }, - wantErr: true, + wantErr: false, + fixedIn: "", }, - // error when arch is empty for Oracle, Amazon linux + // arch is empty for Oracle, Amazon linux { in: in{ family: constant.Amazon, @@ -1303,7 +1304,8 @@ func TestIsOvalDefAffected(t *testing.T) { arch: "x86_64", }, }, - wantErr: true, + wantErr: false, + fixedIn: "", }, } From 0095c40e69023abab6ed5d03aff7777cf459d3a7 Mon Sep 17 00:00:00 2001 From: Kota Kanbe Date: Wed, 9 Jun 2021 08:00:52 +0900 Subject: [PATCH 2/8] fix(vet): go vet err of `make build-scanner` (#1248) --- GNUmakefile | 6 +++--- detector/github.go | 2 ++ detector/library.go | 2 ++ detector/util.go | 2 ++ detector/wordpress.go | 2 ++ detector/wordpress_test.go | 2 ++ gost/debian_test.go | 2 ++ gost/gost_test.go | 2 ++ gost/redhat_test.go | 2 ++ gost/util.go | 2 ++ oval/empty.go | 1 - scanner/base.go | 1 + 12 files changed, 22 insertions(+), 4 deletions(-) delete mode 100644 oval/empty.go diff --git a/GNUmakefile b/GNUmakefile index e149677c..296a6893 100644 --- a/GNUmakefile +++ b/GNUmakefile @@ -32,13 +32,13 @@ build: ./cmd/vuls/main.go pretest fmt b: ./cmd/vuls/main.go $(GO) build -a -ldflags "$(LDFLAGS)" -o vuls ./cmd/vuls -install: ./cmd/vuls/main.go pretest fmt +install: ./cmd/vuls/main.go $(GO) install -ldflags "$(LDFLAGS)" ./cmd/vuls -build-scanner: ./cmd/scanner/main.go pretest fmt +build-scanner: ./cmd/scanner/main.go $(CGO_UNABLED) build -tags=scanner -a -ldflags "$(LDFLAGS)" -o vuls ./cmd/scanner -install-scanner: ./cmd/scanner/main.go pretest fmt +install-scanner: ./cmd/scanner/main.go $(CGO_UNABLED) install -tags=scanner -ldflags "$(LDFLAGS)" ./cmd/scanner lint: diff --git a/detector/github.go b/detector/github.go index cf8d61c2..23b83d0c 100644 --- a/detector/github.go +++ b/detector/github.go @@ -1,3 +1,5 @@ +// +build !scanner + package detector import ( diff --git a/detector/library.go b/detector/library.go index 273b9aae..26d7c5e0 100644 --- a/detector/library.go +++ b/detector/library.go @@ -1,3 +1,5 @@ +// +build !scanner + package detector import ( diff --git a/detector/util.go b/detector/util.go index d3f149a3..0e16b875 100644 --- a/detector/util.go +++ b/detector/util.go @@ -1,3 +1,5 @@ +// +build !scanner + package detector import ( diff --git a/detector/wordpress.go b/detector/wordpress.go index b0211e97..672cae51 100644 --- a/detector/wordpress.go +++ b/detector/wordpress.go @@ -1,3 +1,5 @@ +// +build !scanner + package detector import ( diff --git a/detector/wordpress_test.go b/detector/wordpress_test.go index 99165208..d5cc1c10 100644 --- a/detector/wordpress_test.go +++ b/detector/wordpress_test.go @@ -1,3 +1,5 @@ +// +build !scanner + package detector import ( diff --git a/gost/debian_test.go b/gost/debian_test.go index ef41e113..638a0577 100644 --- a/gost/debian_test.go +++ b/gost/debian_test.go @@ -1,3 +1,5 @@ +// +build !scanner + package gost import "testing" diff --git a/gost/gost_test.go b/gost/gost_test.go index 81608a84..9defdede 100644 --- a/gost/gost_test.go +++ b/gost/gost_test.go @@ -1,3 +1,5 @@ +// +build !scanner + package gost import ( diff --git a/gost/redhat_test.go b/gost/redhat_test.go index 72eb5f66..fe2f4f08 100644 --- a/gost/redhat_test.go +++ b/gost/redhat_test.go @@ -1,3 +1,5 @@ +// +build !scanner + package gost import ( diff --git a/gost/util.go b/gost/util.go index a3149b24..9e2043a6 100644 --- a/gost/util.go +++ b/gost/util.go @@ -1,3 +1,5 @@ +// +build !scanner + package gost import ( diff --git a/oval/empty.go b/oval/empty.go deleted file mode 100644 index 5df0f81b..00000000 --- a/oval/empty.go +++ /dev/null @@ -1 +0,0 @@ -package oval diff --git a/scanner/base.go b/scanner/base.go index b1f28435..a657b9dd 100644 --- a/scanner/base.go +++ b/scanner/base.go @@ -623,6 +623,7 @@ func (l *base) scanLibraries() (err error) { return nil } +// AnalyzeLibraries : detects libs defined in lockfile func AnalyzeLibraries(ctx context.Context, libFilemap map[string][]byte) (libraryScanners []models.LibraryScanner, err error) { disabledAnalyzers := []analyzer.Type{ analyzer.TypeAlpine, From 4b487503d496f4028528769bf88b76312142f0ff Mon Sep 17 00:00:00 2001 From: Kota Kanbe Date: Wed, 9 Jun 2021 09:18:32 +0900 Subject: [PATCH 3/8] chore: add go.sum test data for integration test (#1249) * add go.sum test data for integration test * chore: .gitignore --- .gitignore | 1 + integration/data/lockfile/go.sum | 707 +++++++++++++++++++++++++++++++ 2 files changed, 708 insertions(+) create mode 100644 integration/data/lockfile/go.sum diff --git a/.gitignore b/.gitignore index 362a2ac9..00e070f7 100644 --- a/.gitignore +++ b/.gitignore @@ -14,3 +14,4 @@ config.toml .DS_Store dist/ .idea +vuls.* diff --git a/integration/data/lockfile/go.sum b/integration/data/lockfile/go.sum new file mode 100644 index 00000000..cd02d889 --- /dev/null +++ b/integration/data/lockfile/go.sum @@ -0,0 +1,707 @@ + +cloud.google.com/go v0.26.0/go.mod h1:aQUYkXzVsufM+DwF1aE+0xfcU+56JwCaLick0ClmMTw= +cloud.google.com/go v0.30.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.40.0/go.mod h1:Tk58MuI9rbLMKlAjeO/bDnteAx7tX2gJIXw4T5Jwlro= +cloud.google.com/go v0.41.0/go.mod h1:OauMR7DV8fzvZIl2qg6rkaIhD/vmgk4iwEw/h6ercmg= +cloud.google.com/go v0.42.0/go.mod h1:BOSR3VbTLkk6FDC/TcffxP4NF/FFBGA5ku+jvKOP7pg= +cloud.google.com/go v0.43.0/go.mod h1:BOSR3VbTLkk6FDC/TcffxP4NF/FFBGA5ku+jvKOP7pg= +cloud.google.com/go v0.44.0/go.mod h1:iSa0KzasP4Uvy3f1mN/7PiObzGgflwredwwASm/v6AU= +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= +cloud.google.com/go v0.44.3/go.mod h1:60680Gw3Yr4ikxnPRS/oxxkBccT6SA1yMk63TGekxKY= +cloud.google.com/go v0.45.0/go.mod h1:452BcPOeI9AZfbvDw0Tbo7D32wA+WX9WME8AZwMEDZU= +cloud.google.com/go/bigquery v1.0.0/go.mod h1:W6nZUO55RX1ze8f54muIveLNA7ouiqcTlNELudKtFaM= +cloud.google.com/go/bigquery v1.0.1/go.mod h1:i/xbL2UlR5RvWAURpBYZTtm/cXjCha9lbfbpx4poX+o= +cloud.google.com/go/datastore v1.0.0/go.mod h1:LXYbyblFSglQ5pkeyhO+Qmw7ukd3C+pD7TKLgZqpHYE= +code.gitea.io/gitea v1.9.0-dev/go.mod h1:wWyKwhnrzHgqiqguunHKA6yzZXYsLSC7V6WvI+GlOx8= +code.gitea.io/gitea v1.9.0-rc1/go.mod h1:WJbOBnfoAP54J4mP5ylCEKYxytCh8SMZBeSOBdcZBkw= +code.gitea.io/gitea v1.9.0-rc2/go.mod h1:3yZ+sXUqEshMeUwfr8bB3SvttSBcstgk2zXgePfDx4Y= +code.gitea.io/gitea v1.9.0/go.mod h1:HzXskRRacnLWs4z/B6Bt6gFpCl6cicdHM0GfZMTEmtI= +code.gitea.io/gitea v1.9.1/go.mod h1:HzXskRRacnLWs4z/B6Bt6gFpCl6cicdHM0GfZMTEmtI= +code.gitea.io/gitea v1.9.2/go.mod h1:HzXskRRacnLWs4z/B6Bt6gFpCl6cicdHM0GfZMTEmtI= +code.gitea.io/gitea v1.9.3/go.mod h1:HzXskRRacnLWs4z/B6Bt6gFpCl6cicdHM0GfZMTEmtI= +code.gitea.io/gitea v1.9.4/go.mod h1:nwqMi+nJMcJC7r+SdGt5RdDNLFkWwHZ+GpLKV13WifE= +code.gitea.io/gitea v1.9.5/go.mod h1:nwqMi+nJMcJC7r+SdGt5RdDNLFkWwHZ+GpLKV13WifE= +code.gitea.io/gitea v1.9.6/go.mod h1:mkxMeXN4KE+t6JLCNzKaFrM8SOOWZusNcuG3p5RI+f4= +code.gitea.io/gitea v1.10.0-dev/go.mod h1:WJbOBnfoAP54J4mP5ylCEKYxytCh8SMZBeSOBdcZBkw= +code.gitea.io/gitea v1.10.0-rc1/go.mod h1:Z/ysRJuQTNdT5BysAUhfPcKU7cv4X9h1qFrFN359cgw= +code.gitea.io/gitea v1.10.0-rc2/go.mod h1:Z/ysRJuQTNdT5BysAUhfPcKU7cv4X9h1qFrFN359cgw= +code.gitea.io/gitea v1.10.0/go.mod h1:Z/ysRJuQTNdT5BysAUhfPcKU7cv4X9h1qFrFN359cgw= +code.gitea.io/gitea v1.10.1/go.mod h1:DIJZcrFaYaSmWR2f2eSKO6j2n1mPSD2zVO7A/tdWxbM= +code.gitea.io/gitea v1.10.2/go.mod h1:DIJZcrFaYaSmWR2f2eSKO6j2n1mPSD2zVO7A/tdWxbM= +code.gitea.io/gitea v1.10.3/go.mod h1:DIJZcrFaYaSmWR2f2eSKO6j2n1mPSD2zVO7A/tdWxbM= +gitea.com/lunny/levelqueue v0.1.0/go.mod h1:G7hVb908t0Bl0uk7zGSg14fyzNtxgtD9Shf04wkMK7s= +gitea.com/macaron/binding v0.0.0-20190822013154-a5f53841ed2b/go.mod h1:Cxadig6POWpPYYSfg23E7jo35Yf0yvsdC1lifoKWmPo= +gitea.com/macaron/cache v0.0.0-20190822004001-a6e7fee4ee76/go.mod h1:NFHb9Of+LUnU86bU20CiXXg6ZlgCJ4XytP14UsHOXFs= +gitea.com/macaron/captcha v0.0.0-20190822015246-daa973478bae/go.mod h1:J5h3N+1nKTXtU1x4GxexaQKgAz8UiWecNwi/CfX7CtQ= +gitea.com/macaron/cors v0.0.0-20190821152825-7dcef4a17175/go.mod h1:rtOK4J20kpMD9XcNsnO5YA843YSTe/MUMbDj/TJ/Q7A= +gitea.com/macaron/cors v0.0.0-20190826180238-95aec09ea8b4/go.mod h1:rtOK4J20kpMD9XcNsnO5YA843YSTe/MUMbDj/TJ/Q7A= +gitea.com/macaron/csrf v0.0.0-20190822024205-3dc5a4474439/go.mod h1:IsQPHx73HnnqFBYiVHjg87q4XBZyGXXu77xANukvZuk= +gitea.com/macaron/i18n v0.0.0-20190822004228-474e714e2223/go.mod h1:+qsc10s4hBsHKU/9luGGumFh4m5FFVc7uih+8/mM1NY= +gitea.com/macaron/inject v0.0.0-20190803172902-8375ba841591/go.mod h1:h6E4kLao1Yko6DOU6QDnQPcuoNzvbZqzj2mtPcEn1aM= +gitea.com/macaron/inject v0.0.0-20190805023432-d4c86e31027a/go.mod h1:h6E4kLao1Yko6DOU6QDnQPcuoNzvbZqzj2mtPcEn1aM= +gitea.com/macaron/macaron v1.3.2/go.mod h1:x30d38SbJFBUEO2Mgz7loekCzr87U9UaUDNbSAOxg5k= +gitea.com/macaron/macaron v1.3.3-0.20190803174002-53e005ff4827/go.mod h1:/rvxMjIkOq4BM8uPUb+VHuU02ZfAO6R4+wD//tiCiRw= +gitea.com/macaron/macaron v1.3.3-0.20190821202302-9646c0587edb/go.mod h1:0coI+mSPSwbsyAbOuFllVS38awuk9mevhLD52l50Gjs= +gitea.com/macaron/macaron v1.4.0/go.mod h1:P7hfDbQjcW22lkYkXlxdRIfWOXxH2+K4EogN4Q0UlLY= +gitea.com/macaron/session v0.0.0-20190821211443-122c47c5f705/go.mod h1:1ujH0jD6Ca4iK9NL0Q2a7fG2chvXx5hVa7hBfABwpkA= +gitea.com/macaron/session v0.0.0-20191207215012-613cebf0674d/go.mod h1:FanKy3WjWb5iw/iZBPk4ggoQT9FcM6bkBPvmDmsH6tY= +gitea.com/macaron/toolbox v0.0.0-20190822013122-05ff0fc766b7/go.mod h1:kgsbFPPS4P+acDYDOPDa3N4IWWOuDJt5/INKRUz7aks= +github.com/BurntSushi/toml v0.3.1/go.mod h1:xHWCNGjB5oqiDr8zfno3MHue2Ht5sIBksp03qcyfWMU= +github.com/BurntSushi/xgb v0.0.0-20160522181843-27f122750802/go.mod h1:IVnqGOEym/WlBOVXweHU+Q+/VP0lqqI8lqeDx9IjBqo= +github.com/OneOfOne/xxhash v1.2.2/go.mod h1:HSdplMjZKSmBqAxg5vPj2TmRDmfkzw+cTzAElWljhcU= +github.com/OneOfOne/xxhash v1.2.5/go.mod h1:eZbhyaAYD41SGSSsnmcpxVoRiQ/MPUTjUdIIOT9Um7Q= +github.com/PuerkitoBio/goquery v0.0.0-20170324135448-ed7d758e9a34/go.mod h1:T9ezsOHcCrDCgA8aF1Cqr3sSYbO/xgdy8/R/XiIMAhA= +github.com/PuerkitoBio/goquery v1.5.0/go.mod h1:qD2PgZ9lccMbQlc7eEOjaeRlFQON7xY8kdmcsrnKqMg= +github.com/PuerkitoBio/purell v1.1.0/go.mod h1:c11w/QuzBsJSee3cPx9rAFu61PvFxuPbtSwDGJws/X0= +github.com/PuerkitoBio/purell v1.1.1/go.mod h1:c11w/QuzBsJSee3cPx9rAFu61PvFxuPbtSwDGJws/X0= +github.com/PuerkitoBio/urlesc v0.0.0-20170810143723-de5bf2ad4578/go.mod h1:uGdkoq3SwY9Y+13GIhn11/XLaGBb4BfwItxLd5jeuXE= +github.com/RoaringBitmap/roaring v0.4.7/go.mod h1:8khRDP4HmeXns4xIj9oGrKSz7XTQiJx2zgh7AcNke4w= +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/Unknwon/cae v0.0.0-20160715032808-c6aac99ea2ca/go.mod h1:IRSre9/SEhVuy972TVuJLyaPTS73+8Owhe0Y0l9NXHc= +github.com/Unknwon/com v0.0.0-20190321035513-0fed4efef755/go.mod h1:voKvFVpXBJxdIPeqjoJuLK+UVcRlo/JLjeToGxPYu68= +github.com/Unknwon/i18n v0.0.0-20171114194641-b64d33658966/go.mod h1:SFtfq0zFPsENI7DpE87QM2hcYu5QQ0fRdCgP+P1Hrqo= +github.com/Unknwon/paginater v0.0.0-20151104151617-7748a72e0141/go.mod h1:fw0McLecf/G5NFwddCRmDckU6yovtk1YsgWIoepMbYo= +github.com/alcortesm/tgz v0.0.0-20161220082320-9c5fe88206d7/go.mod h1:6zEj6s6u/ghQa61ZWa/C2Aw3RkjiTBOix7dkqa1VLIs= +github.com/alecthomas/template v0.0.0-20160405071501-a0175ee3bccc/go.mod h1:LOuyumcjzFXgccqObfd/Ljyb9UuFJ6TxHnclSeseNhc= +github.com/alecthomas/units v0.0.0-20151022065526-2efee857e7cf/go.mod h1:ybxpYRFXyAe+OPACYpWeL0wqObRcbAqCMya13uyzqw0= +github.com/andybalholm/cascadia v0.0.0-20161224141413-349dd0209470/go.mod h1:3I+3V7B6gTBYfdpYgIG2ymALS9H+5VDKUl3lHH7ToM4= +github.com/andybalholm/cascadia v1.0.0/go.mod h1:GsXiBklL0woXo1j/WYWtSYYC4ouU9PqHO0sqidkEA4Y= +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/armon/consul-api v0.0.0-20180202201655-eb2c6b5be1b6/go.mod h1:grANhF5doyWs3UAsr3K4I6qtAmlQcZDesFNEHPZAzj8= +github.com/armon/go-socks5 v0.0.0-20160902184237-e75332964ef5/go.mod h1:wHh0iHkYZB8zMSxRWpUBQtwG5a7fFgvEO+odwuTv2gs= +github.com/asaskevich/govalidator v0.0.0-20180720115003-f9ffefc3facf/go.mod h1:lB+ZfQJz7igIIfQNfa7Ml4HSf2uFQQRzpGGRXenZAgY= +github.com/asaskevich/govalidator v0.0.0-20190424111038-f61b66f89f4a/go.mod h1:lB+ZfQJz7igIIfQNfa7Ml4HSf2uFQQRzpGGRXenZAgY= +github.com/beorn7/perks v0.0.0-20180321164747-3a771d992973/go.mod h1:Dwedo/Wpr24TaqPxmxbtue+5NUziq4I4S80YR8gNf3Q= +github.com/beorn7/perks v1.0.0/go.mod h1:KWe93zE9D1o94FZ5RNwFwVgaQK1VOXiVxmqh+CedLV8= +github.com/beorn7/perks v1.0.1/go.mod h1:G2ZrVWU2WbWT9wwq4/hrbKbnv/1ERSJQ0ibhJ6rlkpw= +github.com/bgentry/speakeasy v0.1.0/go.mod h1:+zsyZBPWlz7T6j88CTgSN5bM796AkVf0kBD4zp0CCIs= +github.com/blevesearch/bleve v0.0.0-20190214220507-05d86ea8f6e3/go.mod h1:Y2lmIkzV6mcNfAnAdOd+ZxHkHchhBfU/xroGIp61wfw= +github.com/blevesearch/blevex v0.0.0-20180227211930-4b158bb555a3/go.mod h1:WH+MU2F4T0VmSdaPX+Wu5GYoZBrYWdOZWSjzvYcDmqQ= +github.com/blevesearch/go-porterstemmer v0.0.0-20141230013033-23a2c8e5cf1f/go.mod h1:haWQqFT3RdOGz7PJuM3or/pWNJS1pKkoZJWCkWu0DVA= +github.com/blevesearch/segment v0.0.0-20160105220820-db70c57796cc/go.mod h1:IInt5XRvpiGE09KOk9mmCMLjHhydIhNPKPPFLFBB7L8= +github.com/boombuler/barcode v0.0.0-20161226211916-fe0f26ff6d26/go.mod h1:paBWMcWSl3LHKBqUq+rly7CNSldXjb2rDl3JlRe0mD8= +github.com/bradfitz/gomemcache v0.0.0-20160117192205-fb1f79c6b65a/go.mod h1:PmM6Mmwb0LSuEubjR8N7PtNe1KxZLtOUHtbeikc5h60= +github.com/bradfitz/gomemcache v0.0.0-20190329173943-551aad21a668/go.mod h1:H0wQNHz2YrLsuXOZozoeDmnHXkNCRmMW0gwFWDfEZDA= +github.com/bradfitz/gomemcache v0.0.0-20190913173617-a41fca850d0b/go.mod h1:H0wQNHz2YrLsuXOZozoeDmnHXkNCRmMW0gwFWDfEZDA= +github.com/cespare/xxhash v1.1.0/go.mod h1:XrSqR1VqqWfGrhpAt58auRo0WTKS1nRRg3ghfAqPWnc= +github.com/chaseadamsio/goorgeous v0.0.0-20170901132237-098da33fde5f/go.mod h1:6QaC0vFoKWYDth94dHFNgRT2YkT5FHdQp/Yx15aAAi0= +github.com/client9/misspell v0.3.4/go.mod h1:qj6jICC3Q7zFZvVWo7KLAzC3yx5G7kyvSDkc90ppPyw= +github.com/cockroachdb/apd v1.1.0/go.mod h1:8Sl8LxpKi29FqWXR16WEFZRNSz3SoPzUzeMeY4+DwBQ= +github.com/corbym/gocrest v1.0.3/go.mod h1:maVFL5lbdS2PgfOQgGRWDYTeunSWQeiEgoNdTABShCs= +github.com/coreos/bbolt v1.3.2/go.mod h1:iRUV2dpdMOn7Bo10OQBFzIJO9kkE559Wcmn+qkEiiKk= +github.com/coreos/bbolt v1.3.3/go.mod h1:iRUV2dpdMOn7Bo10OQBFzIJO9kkE559Wcmn+qkEiiKk= +github.com/coreos/etcd v3.3.10+incompatible/go.mod h1:uF7uidLiAD3TWHmW31ZFd/JWoc32PjwdhPthX9715RE= +github.com/coreos/etcd v3.3.15+incompatible/go.mod h1:uF7uidLiAD3TWHmW31ZFd/JWoc32PjwdhPthX9715RE= +github.com/coreos/go-oidc v2.1.0+incompatible/go.mod h1:CgnwVTmzoESiwO9qyAFEMiHoZ1nMCKZlZ9V6mm3/LKc= +github.com/coreos/go-semver v0.2.0/go.mod h1:nnelYz7RCh+5ahJtPPxZlU+153eP4D4r3EedlOD2RNk= +github.com/coreos/go-semver v0.3.0/go.mod h1:nnelYz7RCh+5ahJtPPxZlU+153eP4D4r3EedlOD2RNk= +github.com/coreos/go-systemd v0.0.0-20190321100706-95778dfbb74e/go.mod h1:F5haX7vjVVG0kc13fIWeqUViNPyEJxv/OmvnBo0Yme4= +github.com/coreos/go-systemd v0.0.0-20190719114852-fd7a80b32e1f/go.mod h1:F5haX7vjVVG0kc13fIWeqUViNPyEJxv/OmvnBo0Yme4= +github.com/coreos/pkg v0.0.0-20180928190104-399ea9e2e55f/go.mod h1:E3G3o1h8I7cfcXa63jLwjI0eiQQMgzzUDFVpN/nH/eA= +github.com/couchbase/gomemcached v0.0.0-20181122193126-5125a94a666c/go.mod h1:srVSlQLB8iXBVXHgnqemxUXqN6FCvClgCMPCsjBDR7c= +github.com/couchbase/gomemcached v0.0.0-20190515232915-c4b4ca0eb21d/go.mod h1:srVSlQLB8iXBVXHgnqemxUXqN6FCvClgCMPCsjBDR7c= +github.com/couchbase/goutils v0.0.0-20180530154633-e865a1461c8a/go.mod h1:BQwMFlJzDjFDG3DJUdU0KORxn88UlsOULuxLExMh3Hs= +github.com/couchbase/goutils v0.0.0-20190315194238-f9d42b11473b/go.mod h1:BQwMFlJzDjFDG3DJUdU0KORxn88UlsOULuxLExMh3Hs= +github.com/couchbase/goutils v0.0.0-20191018232750-b49639060d85/go.mod h1:BQwMFlJzDjFDG3DJUdU0KORxn88UlsOULuxLExMh3Hs= +github.com/couchbase/vellum v0.0.0-20190111184608-e91b68ff3efe/go.mod h1:prYTC8EgTu3gwbqJihkud9zRXISvyulAplQ6exdCo1g= +github.com/couchbaselabs/go-couchbase v0.0.0-20190117181324-d904413d884d/go.mod h1:mby/05p8HE5yHEAKiIH/555NoblMs7PtW6NrYshDruc= +github.com/couchbaselabs/go-couchbase v0.0.0-20190708161019-23e7ca2ce2b7/go.mod h1:mby/05p8HE5yHEAKiIH/555NoblMs7PtW6NrYshDruc= +github.com/creack/pty v1.1.7/go.mod h1:lj5s0c3V2DBrqTV7llrYr5NG6My20zk30Fl46Y7DoTY= +github.com/cupcake/rdb v0.0.0-20161107195141-43ba34106c76/go.mod h1:vYwsqCOLxGiisLwp9rITslkFNpZD5rz43tf41QFkTWY= +github.com/cznic/b v0.0.0-20181122101859-a26611c4d92d/go.mod h1:URriBxXwVq5ijiJ12C7iIZqlA69nTlI+LgI6/pwftG8= +github.com/cznic/mathutil v0.0.0-20181122101859-297441e03548/go.mod h1:e6NPNENfs9mPDVNRekM7lKScauxd5kXTr1Mfyig6TDM= +github.com/cznic/strutil v0.0.0-20181122101858-275e90344537/go.mod h1:AHHPPPXTw0h6pVabbcbyGRK1DckRn7r/STdZEeIDzZc= +github.com/davecgh/go-spew v1.1.0/go.mod h1:J7Y8YcW2NihsgmVo/mv3lAwl/skON4iLHjSsI+c5H38= +github.com/davecgh/go-spew v1.1.1/go.mod h1:J7Y8YcW2NihsgmVo/mv3lAwl/skON4iLHjSsI+c5H38= +github.com/denisenkom/go-mssqldb v0.0.0-20190121005146-b04fd42d9952/go.mod h1:xN/JuLBIz4bjkxNmByTiV1IbhfnYb6oo99phBn4Eqhc= +github.com/denisenkom/go-mssqldb v0.0.0-20190707035753-2be1aa521ff4/go.mod h1:zAg7JM8CkOJ43xKXIj7eRO9kmWm/TW578qo+oDO6tuM= +github.com/denisenkom/go-mssqldb v0.0.0-20190724012636-11b2859924c1/go.mod h1:uU0N10vx1abI4qeVe79CxepBP6PPREVTgMS5Gx6/mOk= +github.com/denisenkom/go-mssqldb v0.0.0-20190924004331-208c0a498538/go.mod h1:xbL0rPBG9cCiLr28tMa8zpbdarY27NDyej4t/EjAShU= +github.com/dgrijalva/jwt-go v3.2.0+incompatible/go.mod h1:E3ru+11k8xSBh+hMPgOLZmtrrCbhqsmaPHjLKYnJCaQ= +github.com/dgryski/go-sip13 v0.0.0-20181026042036-e10d5fee7954/go.mod h1:vAd38F8PWV+bWy6jNmig1y/TA+kYO4g3RSRF0IAv0no= +github.com/dgryski/go-sip13 v0.0.0-20190329191031-25c5027a8c7b/go.mod h1:vAd38F8PWV+bWy6jNmig1y/TA+kYO4g3RSRF0IAv0no= +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/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/edsrzf/mmap-go v0.0.0-20170320065105-0bce6a688712/go.mod h1:YO35OhQPt3KJa3ryjFM5Bs14WD66h8eGKpfaBNrHW5M= +github.com/edsrzf/mmap-go v1.0.0/go.mod h1:YO35OhQPt3KJa3ryjFM5Bs14WD66h8eGKpfaBNrHW5M= +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/etcd-io/bbolt v1.3.2/go.mod h1:ZF2nL25h33cCyBtcyWeZ2/I3HQOfTP+0PIEvHjkjCrw= +github.com/ethantkoenig/rupture v0.0.0-20180203182544-0a76f03a811a/go.mod h1:MkKY/CB98aVE4VxO63X5vTQKUgcn+3XP15LMASe3lYs= +github.com/facebookgo/clock v0.0.0-20150410010913-600d898af40a/go.mod h1:7Ga40egUymuWXxAe151lTNnCv97MddSOVsjpPPkityA= +github.com/facebookgo/ensure v0.0.0-20160127193407-b4ab57deab51/go.mod h1:Yg+htXGokKKdzcwhuNDwVvN+uBxDGXJ7G/VN1d8fa64= +github.com/facebookgo/freeport v0.0.0-20150612182905-d4adf43b75b9/go.mod h1:uPmAp6Sws4L7+Q/OokbWDAK1ibXYhB3PXFP1kol5hPg= +github.com/facebookgo/grace v0.0.0-20160926231715-5729e484473f/go.mod h1:KigFdumBXUPSwzLDbeuzyt0elrL7+CP7TKuhrhT4bcU= +github.com/facebookgo/httpdown v0.0.0-20160323221027-a3b1354551a2/go.mod h1:TUV/fX3XrTtBQb5+ttSUJzcFgLNpILONFTKmBuk5RSw= +github.com/facebookgo/stack v0.0.0-20160209184415-751773369052/go.mod h1:UbMTZqLaRiH3MsBH8va0n7s1pQYcu3uTb8G4tygF4Zg= +github.com/facebookgo/stats v0.0.0-20151006221625-1b76add642e4/go.mod h1:vsJz7uE339KUCpBXx3JAJzSRH7Uk4iGGyJzR529qDIA= +github.com/facebookgo/subset v0.0.0-20150612182917-8dac2c3c4870/go.mod h1:5tD+neXqOorC30/tWg0LCSkrqj/AR6gu8yY8/fpw1q0= +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/ghodss/yaml v1.0.0/go.mod h1:4dBDuWmgqj2HViK6kFavaiC9ZROes6MMH2rRYeMEF04= +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.1.4/go.mod h1:U7qILu1NlMHj9FlMhZLlkCdDnU1DBEAqr0aevW3Awn0= +github.com/gliderlabs/ssh v0.2.2/go.mod h1:U7qILu1NlMHj9FlMhZLlkCdDnU1DBEAqr0aevW3Awn0= +github.com/globalsign/mgo v0.0.0-20180905125535-1ca0a4f7cbcb/go.mod h1:xkRDCp4j0OGD1HRkm4kmhM+pmpv3AKq5SU7GMg4oO/Q= +github.com/globalsign/mgo v0.0.0-20181015135952-eeefdecb41b8/go.mod h1:xkRDCp4j0OGD1HRkm4kmhM+pmpv3AKq5SU7GMg4oO/Q= +github.com/glycerine/go-unsnap-stream v0.0.0-20180323001048-9f0cb55181dd/go.mod h1:/20jfyN9Y5QPEAprSgKAUr+glWDY39ZiUEAYOEv5dsE= +github.com/glycerine/goconvey v0.0.0-20190315024820-982ee783a72e/go.mod h1:Ogl1Tioa0aV7gstGFO7KhffUsb9M4ydbEbbxpcEDc24= +github.com/go-gitea/gitea v1.2.3 h1:L0SC8kIr3+UnxNAte9M9bmdQ8Bdrc6I5b4Zuz/T+NCw= +github.com/go-gitea/gitea v1.2.3/go.mod h1:g8iUbfFNyuJp8u7GsSggxI8NQyuxeGTyqxogl3imbQM= +github.com/go-kit/kit v0.8.0/go.mod h1:xBxKIO96dXMWWy0MnWVtmwkA9/13aqxPnvrjFYMA2as= +github.com/go-kit/kit v0.9.0/go.mod h1:xBxKIO96dXMWWy0MnWVtmwkA9/13aqxPnvrjFYMA2as= +github.com/go-logfmt/logfmt v0.3.0/go.mod h1:Qt1PoO58o5twSAckw1HlFXLmHsOX5/0LbT9GBnD5lWE= +github.com/go-logfmt/logfmt v0.4.0/go.mod h1:3RMwSq7FuexP4Kalkev3ejPJsZTpXXBr9+V4qmtdjCk= +github.com/go-macaron/binding v0.0.0-20160711225916-9440f336b443/go.mod h1:u+H6rwW+HQwUL+w5uaEJSpIlVZDye1o9MB4Su0JfRfM= +github.com/go-macaron/cache v0.0.0-20151013081102-561735312776/go.mod h1:hHAsZm/oBZVcY+S7qdQL6Vbg5VrXF6RuKGuqsszt3Ok= +github.com/go-macaron/captcha v0.0.0-20151123225153-8aa5919789ab/go.mod h1:j9TJ+0nwUOWBvNnm0bheHIPFf3cC62EQo7n7O6PbjZA= +github.com/go-macaron/captcha v0.0.0-20190710000913-8dc5911259df/go.mod h1:j9TJ+0nwUOWBvNnm0bheHIPFf3cC62EQo7n7O6PbjZA= +github.com/go-macaron/cors v0.0.0-20190418220122-6fd6a9bfe14e/go.mod h1:utmMRnVIrXPSfA9MFcpIYKEpKawjKxf62vv62k4707E= +github.com/go-macaron/inject v0.0.0-20160627170012-d8a0b8677191/go.mod h1:VFI2o2q9kYsC4o7VP1HrEVosiZZTd+MVT3YZx4gqvJw= +github.com/go-openapi/analysis v0.0.0-20180825180245-b006789cd277/go.mod h1:k70tL6pCuVxPJOHXQ+wIac1FUrvNkHolPie/cLEU6hI= +github.com/go-openapi/analysis v0.17.0/go.mod h1:IowGgpVeD0vNm45So8nr+IcQ3pxVtpRoBWb8PVZO0ik= +github.com/go-openapi/analysis v0.17.2/go.mod h1:IowGgpVeD0vNm45So8nr+IcQ3pxVtpRoBWb8PVZO0ik= +github.com/go-openapi/analysis v0.18.0/go.mod h1:IowGgpVeD0vNm45So8nr+IcQ3pxVtpRoBWb8PVZO0ik= +github.com/go-openapi/analysis v0.19.0/go.mod h1:IowGgpVeD0vNm45So8nr+IcQ3pxVtpRoBWb8PVZO0ik= +github.com/go-openapi/analysis v0.19.2/go.mod h1:3P1osvZa9jKjb8ed2TPng3f0i/UY9snX6gxi44djMjk= +github.com/go-openapi/analysis v0.19.3/go.mod h1:3P1osvZa9jKjb8ed2TPng3f0i/UY9snX6gxi44djMjk= +github.com/go-openapi/analysis v0.19.4/go.mod h1:3P1osvZa9jKjb8ed2TPng3f0i/UY9snX6gxi44djMjk= +github.com/go-openapi/analysis v0.19.5/go.mod h1:hkEAkxagaIvIP7VTn8ygJNkd4kAYON2rCu0v0ObL0AU= +github.com/go-openapi/errors v0.17.0/go.mod h1:LcZQpmvG4wyF5j4IhA73wkLFQg+QJXOQHVjmcZxhka0= +github.com/go-openapi/errors v0.17.2/go.mod h1:LcZQpmvG4wyF5j4IhA73wkLFQg+QJXOQHVjmcZxhka0= +github.com/go-openapi/errors v0.18.0/go.mod h1:LcZQpmvG4wyF5j4IhA73wkLFQg+QJXOQHVjmcZxhka0= +github.com/go-openapi/errors v0.19.2/go.mod h1:qX0BLWsyaKfvhluLejVpVNwNRdXZhEbTA4kxxpKBC94= +github.com/go-openapi/inflect v0.19.0/go.mod h1:lHpZVlpIQqLyKwJ4N+YSc9hchQy/i12fJykb83CRBH4= +github.com/go-openapi/jsonpointer v0.17.0/go.mod h1:cOnomiV+CVVwFLk0A/MExoFMjwdsUdVpsRhURCKh+3M= +github.com/go-openapi/jsonpointer v0.17.2/go.mod h1:cOnomiV+CVVwFLk0A/MExoFMjwdsUdVpsRhURCKh+3M= +github.com/go-openapi/jsonpointer v0.18.0/go.mod h1:cOnomiV+CVVwFLk0A/MExoFMjwdsUdVpsRhURCKh+3M= +github.com/go-openapi/jsonpointer v0.19.2/go.mod h1:3akKfEdA7DF1sugOqz1dVQHBcuDBPKZGEoHC/NkiQRg= +github.com/go-openapi/jsonpointer v0.19.3/go.mod h1:Pl9vOtqEWErmShwVjC8pYs9cog34VGT37dQOVbmoatg= +github.com/go-openapi/jsonreference v0.17.0/go.mod h1:g4xxGn04lDIRh0GJb5QlpE3HfopLOL6uZrK/VgnsK9I= +github.com/go-openapi/jsonreference v0.17.2/go.mod h1:g4xxGn04lDIRh0GJb5QlpE3HfopLOL6uZrK/VgnsK9I= +github.com/go-openapi/jsonreference v0.18.0/go.mod h1:g4xxGn04lDIRh0GJb5QlpE3HfopLOL6uZrK/VgnsK9I= +github.com/go-openapi/jsonreference v0.19.2/go.mod h1:jMjeRr2HHw6nAVajTXJ4eiUwohSTlpa0o73RUL1owJc= +github.com/go-openapi/jsonreference v0.19.3/go.mod h1:rjx6GuL8TTa9VaixXglHmQmIL98+wF9xc8zWvFonSJ8= +github.com/go-openapi/loads v0.17.0/go.mod h1:72tmFy5wsWx89uEVddd0RjRWPZm92WRLhf7AC+0+OOU= +github.com/go-openapi/loads v0.17.2/go.mod h1:72tmFy5wsWx89uEVddd0RjRWPZm92WRLhf7AC+0+OOU= +github.com/go-openapi/loads v0.18.0/go.mod h1:72tmFy5wsWx89uEVddd0RjRWPZm92WRLhf7AC+0+OOU= +github.com/go-openapi/loads v0.19.0/go.mod h1:72tmFy5wsWx89uEVddd0RjRWPZm92WRLhf7AC+0+OOU= +github.com/go-openapi/loads v0.19.2/go.mod h1:QAskZPMX5V0C2gvfkGZzJlINuP7Hx/4+ix5jWFxsNPs= +github.com/go-openapi/loads v0.19.3/go.mod h1:YVfqhUCdahYwR3f3iiwQLhicVRvLlU/WO5WPaZvcvSI= +github.com/go-openapi/runtime v0.0.0-20180920151709-4f900dc2ade9/go.mod h1:6v9a6LTXWQCdL8k1AO3cvqx5OtZY/Y9wKTgaoP6YRfA= +github.com/go-openapi/runtime v0.18.0/go.mod h1:uI6pHuxWYTy94zZxgcwJkUWa9wbIlhteGfloI10GD4U= +github.com/go-openapi/runtime v0.19.0/go.mod h1:OwNfisksmmaZse4+gpV3Ne9AyMOlP1lt4sK4FXt0O64= +github.com/go-openapi/runtime v0.19.2/go.mod h1:X277bwSUBxVlCYR3r7xgZZGKVvBd/29gLDlFGtJ8NL4= +github.com/go-openapi/runtime v0.19.3/go.mod h1:X277bwSUBxVlCYR3r7xgZZGKVvBd/29gLDlFGtJ8NL4= +github.com/go-openapi/runtime v0.19.4/go.mod h1:X277bwSUBxVlCYR3r7xgZZGKVvBd/29gLDlFGtJ8NL4= +github.com/go-openapi/runtime v0.19.5/go.mod h1:WIH6IYPXOrtgTClTV8xzdrD20jBlrK25D0aQbdSlqp8= +github.com/go-openapi/spec v0.17.0/go.mod h1:XkF/MOi14NmjsfZ8VtAKf8pIlbZzyoTvZsdfssdxcBI= +github.com/go-openapi/spec v0.17.2/go.mod h1:XkF/MOi14NmjsfZ8VtAKf8pIlbZzyoTvZsdfssdxcBI= +github.com/go-openapi/spec v0.18.0/go.mod h1:XkF/MOi14NmjsfZ8VtAKf8pIlbZzyoTvZsdfssdxcBI= +github.com/go-openapi/spec v0.19.0/go.mod h1:XkF/MOi14NmjsfZ8VtAKf8pIlbZzyoTvZsdfssdxcBI= +github.com/go-openapi/spec v0.19.2/go.mod h1:sCxk3jxKgioEJikev4fgkNmwS+3kuYdJtcsZsD5zxMY= +github.com/go-openapi/spec v0.19.3/go.mod h1:FpwSN1ksY1eteniUU7X0N/BgJ7a4WvBFVA8Lj9mJglo= +github.com/go-openapi/strfmt v0.17.0/go.mod h1:P82hnJI0CXkErkXi8IKjPbNBM6lV6+5pLP5l494TcyU= +github.com/go-openapi/strfmt v0.17.2/go.mod h1:P82hnJI0CXkErkXi8IKjPbNBM6lV6+5pLP5l494TcyU= +github.com/go-openapi/strfmt v0.18.0/go.mod h1:P82hnJI0CXkErkXi8IKjPbNBM6lV6+5pLP5l494TcyU= +github.com/go-openapi/strfmt v0.19.0/go.mod h1:+uW+93UVvGGq2qGaZxdDeJqSAqBqBdl+ZPMF/cC8nDY= +github.com/go-openapi/strfmt v0.19.2/go.mod h1:0yX7dbo8mKIvc3XSKp7MNfxw4JytCfCD6+bY1AVL9LU= +github.com/go-openapi/strfmt v0.19.3/go.mod h1:0yX7dbo8mKIvc3XSKp7MNfxw4JytCfCD6+bY1AVL9LU= +github.com/go-openapi/swag v0.17.0/go.mod h1:AByQ+nYG6gQg71GINrmuDXCPWdL640yX49/kXLo40Tg= +github.com/go-openapi/swag v0.17.2/go.mod h1:AByQ+nYG6gQg71GINrmuDXCPWdL640yX49/kXLo40Tg= +github.com/go-openapi/swag v0.18.0/go.mod h1:AByQ+nYG6gQg71GINrmuDXCPWdL640yX49/kXLo40Tg= +github.com/go-openapi/swag v0.19.2/go.mod h1:POnQmlKehdgb5mhVOsnJFsivZCEZ/vjK9gh66Z9tfKk= +github.com/go-openapi/swag v0.19.5/go.mod h1:POnQmlKehdgb5mhVOsnJFsivZCEZ/vjK9gh66Z9tfKk= +github.com/go-openapi/validate v0.17.2/go.mod h1:Uh4HdOzKt19xGIGm1qHf/ofbX1YQ4Y+MYsct2VUrAJ4= +github.com/go-openapi/validate v0.18.0/go.mod h1:Uh4HdOzKt19xGIGm1qHf/ofbX1YQ4Y+MYsct2VUrAJ4= +github.com/go-openapi/validate v0.19.0/go.mod h1:Uh4HdOzKt19xGIGm1qHf/ofbX1YQ4Y+MYsct2VUrAJ4= +github.com/go-openapi/validate v0.19.2/go.mod h1:1tRCw7m3jtI8eNWEEliiAqUIcBztB2KDnRCRMUi7GTA= +github.com/go-openapi/validate v0.19.3/go.mod h1:90Vh6jjkTn+OT1Eefm0ZixWNFjhtOH7vS9k0lo6zwJo= +github.com/go-redis/redis v6.15.2+incompatible/go.mod h1:NAIEuMOZ/fxfXJIrKDQDz8wamY7mA7PouImQ2Jvg6kA= +github.com/go-redis/redis v6.15.7+incompatible/go.mod h1:NAIEuMOZ/fxfXJIrKDQDz8wamY7mA7PouImQ2Jvg6kA= +github.com/go-sql-driver/mysql v1.4.1/go.mod h1:zAC/RDZ24gD3HViQzih4MyKcchzm+sOG5ZlKdlhCg5w= +github.com/go-stack/stack v1.8.0/go.mod h1:v0f6uXyyMGvRgIKkXu+yp6POWl0qKG85gN/melR3HDY= +github.com/go-swagger/go-swagger v0.19.0/go.mod h1:fOcXeMI1KPNv3uk4u7cR4VSyq0NyrYx4SS1/ajuTWDg= +github.com/go-swagger/go-swagger v0.20.0/go.mod h1:ylaOr/j+CVsLUsIEhQA49ewFKvVwVSQqVCdDdALNcCw= +github.com/go-swagger/go-swagger v0.20.1/go.mod h1:LoTpv6FHYXUvYnECHNLvi/qYNybk0d9wkJGH1cTANWE= +github.com/go-swagger/scan-repo-boundary v0.0.0-20180623220736-973b3573c013/go.mod h1:b65mBPzqzZWxOZGxSWrqs4GInLIn+u99Q9q7p+GKni0= +github.com/go-xorm/builder v0.3.3/go.mod h1:v8mE3MFBgtL+RGFNfUnAMUqqfk/Y4W5KuwCFQIEpQLk= +github.com/go-xorm/core v0.6.2/go.mod h1:bwPIfLdm/FzWgVUH8WPVlr+uJhscvNGFcaZKXsI3n2c= +github.com/go-xorm/sqlfiddle v0.0.0-20180821085327-62ce714f951a/go.mod h1:56xuuqnHyryaerycW3BfssRdxQstACi0Epw/yC5E2xM= +github.com/go-xorm/xorm v0.7.3/go.mod h1:npNkX0GgFcODSSKHj7nhJPobHwa5E7usBBZUFaxCsXA= +github.com/go-xorm/xorm v0.7.4/go.mod h1:vpza5fydeRgt+stvo9qgMhSNohYqmNt0I1/D6hkCekA= +github.com/go-xorm/xorm v0.7.5/go.mod h1:nqz2TAsuOHWH2yk4FYWtacCGgdbrcdZ5mF1XadqEHls= +github.com/go-xorm/xorm v0.7.6/go.mod h1:nqz2TAsuOHWH2yk4FYWtacCGgdbrcdZ5mF1XadqEHls= +github.com/go-xorm/xorm v0.7.7/go.mod h1:BS8F0smoUxtyUqKnAtvoQecDRNs8SruHci62u9lRAJQ= +github.com/go-xorm/xorm v0.7.8/go.mod h1:XiVxrMMIhFkwSkh96BW7PACl7UhLtx2iJIHMdmjh5sQ= +github.com/go-xorm/xorm v0.7.9/go.mod h1:XiVxrMMIhFkwSkh96BW7PACl7UhLtx2iJIHMdmjh5sQ= +github.com/gobwas/glob v0.2.3/go.mod h1:d3Ez4x06l9bZtSvzIay5+Yzi0fmZzPgnTbPcKjJAkT8= +github.com/gofrs/uuid v3.2.0+incompatible/go.mod h1:b2aQJv3Z4Fp6yNu3cdSllBxTCLRxnplIgP/c0N/04lM= +github.com/gogits/chardet v0.0.0-20150115103509-2404f7772561/go.mod h1:YgYOrVn3Nj9Tq0EvjmFbphRytDj7JNRoWSStJZWDJTQ= +github.com/gogo/protobuf v1.1.1/go.mod h1:r8qH/GZQm5c6nD/R0oafs1akxWv10x8SbQlK7atdtwQ= +github.com/gogo/protobuf v1.2.0/go.mod h1:r8qH/GZQm5c6nD/R0oafs1akxWv10x8SbQlK7atdtwQ= +github.com/gogo/protobuf v1.2.1/go.mod h1:hp+jE20tsWTFYpLwKvXlhS1hjn+gTNwPg2I6zVXpSg4= +github.com/gogs/cron v0.0.0-20171120032916-9f6c956d3e14/go.mod h1:jPoNZLWDAqA5N3G5amEoiNbhVrmM+ZQEcnQvNQ2KaZk= +github.com/golang-sql/civil v0.0.0-20190719163853-cb61b32ac6fe/go.mod h1:8vg3r2VgvsThLBIFL93Qb5yWzgyZWhEmBwUJWevAkK0= +github.com/golang/glog v0.0.0-20160126235308-23def4e6c14b/go.mod h1:SBH7ygxi8pfUlaOkMMuAQtPIUF8ecWP5IEl/CR7VP2Q= +github.com/golang/groupcache v0.0.0-20190129154638-5b532d6fd5ef/go.mod h1:cIg4eruTrX1D+g88fzRXU5OdNfaM+9IcxsU14FzY7Hc= +github.com/golang/groupcache v0.0.0-20190702054246-869f871628b6/go.mod h1:cIg4eruTrX1D+g88fzRXU5OdNfaM+9IcxsU14FzY7Hc= +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= +github.com/golang/protobuf v1.2.0/go.mod h1:6lQm79b+lXiMfvg/cZm0SGofjICqVBUtrP5yJMmIC1U= +github.com/golang/protobuf v1.3.1/go.mod h1:6lQm79b+lXiMfvg/cZm0SGofjICqVBUtrP5yJMmIC1U= +github.com/golang/protobuf v1.3.2/go.mod h1:6lQm79b+lXiMfvg/cZm0SGofjICqVBUtrP5yJMmIC1U= +github.com/golang/snappy v0.0.0-20180518054509-2e65f85255db/go.mod h1:/XxbfmMg8lxefKM7IXC3fBNl/7bRcc72aCRzEWrmP2Q= +github.com/golang/snappy v0.0.1/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= +github.com/google/go-cmp v0.3.0/go.mod h1:8QqcDgzrUqlUb/G2PQTWiueGozuR1884gddMywk6iLU= +github.com/google/go-cmp v0.3.1/go.mod h1:8QqcDgzrUqlUb/G2PQTWiueGozuR1884gddMywk6iLU= +github.com/google/go-github v17.0.0+incompatible/go.mod h1:zLgOLi98H3fifZn+44m+umXrS52loVEgC2AApnigrVQ= +github.com/google/go-github/v24 v24.0.1/go.mod h1:CRqaW1Uns1TCkP0wqTpxYyRxRjxwvKU/XSS44u6X74M= +github.com/google/go-querystring v1.0.0/go.mod h1:odCYkC5MyYFN7vkCjXpyrEuKhc/BUO6wN/zVPAxq5ck= +github.com/google/gofuzz v1.0.0/go.mod h1:dBl0BpW6vV/+mYPU4Po3pmUjxk6FQPldtuIdl/M65Eg= +github.com/google/martian v2.1.0+incompatible/go.mod h1:9I4somxYTbIHy5NJKHRl3wXiIaQGbYVAs8BPL6v8lEs= +github.com/google/pprof v0.0.0-20181206194817-3ea8567a2e57/go.mod h1:zfwlbNMJ+OItoe0UupaVj+oy1omPYYDuagoSzA8v9mc= +github.com/google/pprof v0.0.0-20190515194954-54271f7e092f/go.mod h1:zfwlbNMJ+OItoe0UupaVj+oy1omPYYDuagoSzA8v9mc= +github.com/google/pprof v0.0.0-20190723021845-34ac40c74b70/go.mod h1:zfwlbNMJ+OItoe0UupaVj+oy1omPYYDuagoSzA8v9mc= +github.com/google/renameio v0.1.0/go.mod h1:KWCgfxg9yswjAJkECMjeO8J8rahYeXnNhOm40UhjYkI= +github.com/google/uuid v1.0.0/go.mod h1:TIyPZe4MgqvfeYDBFedMoGGpEw/LqOeaOT+nhxU+yHo= +github.com/google/uuid v1.1.0/go.mod h1:TIyPZe4MgqvfeYDBFedMoGGpEw/LqOeaOT+nhxU+yHo= +github.com/google/uuid v1.1.1/go.mod h1:TIyPZe4MgqvfeYDBFedMoGGpEw/LqOeaOT+nhxU+yHo= +github.com/googleapis/gax-go/v2 v2.0.4/go.mod h1:0Wqv26UfaUD9n4G6kQubkQ+KchISgw+vpHVxEJEs9eg= +github.com/googleapis/gax-go/v2 v2.0.5/go.mod h1:DWXyrwAJ9X0FpwwEdw+IPEYBICEFu5mhpdKc/us6bOk= +github.com/gopherjs/gopherjs v0.0.0-20181017120253-0766667cb4d1/go.mod h1:wJfORRmW1u3UXTncJ5qlYoELFm8eSnnEO6hX4iZ3EWY= +github.com/gopherjs/gopherjs v0.0.0-20181103185306-d547d1d9531e/go.mod h1:wJfORRmW1u3UXTncJ5qlYoELFm8eSnnEO6hX4iZ3EWY= +github.com/gopherjs/gopherjs v0.0.0-20190430165422-3e4dfb77656c/go.mod h1:wJfORRmW1u3UXTncJ5qlYoELFm8eSnnEO6hX4iZ3EWY= +github.com/gophish/gophish v0.1.2 h1:OWsIzbGf+JbkCNOokbY1sS+nkArDs+9G9kPzRBJz4c4= +github.com/gophish/gophish v0.1.2/go.mod h1:3nVgumCxriDReEVZ47/9PK5JtN43TcCE9TXt++zFJe8= +github.com/gorilla/context v1.1.1/go.mod h1:kBGZzfjB9CEq2AlWe17Uuf7NDRt0dE0s8S51q0aT7Yg= +github.com/gorilla/handlers v1.4.2/go.mod h1:Qkdc/uu4tH4g6mTK6auzZ766c4CA0Ng8+o/OAirnOIQ= +github.com/gorilla/mux v1.6.2/go.mod h1:1lud6UwP+6orDFRuTfBEV8e9/aOM/c4fVVCaMa2zaAs= +github.com/gorilla/pat v0.0.0-20180118222023-199c85a7f6d1/go.mod h1:YeAe0gNeiNT5hoiZRI4yiOky6jVdNvfO2N6Kav/HmxY= +github.com/gorilla/securecookie v1.1.1/go.mod h1:ra0sb63/xPlUeL+yeDciTfxMRAA+MP+HVt/4epWDjd4= +github.com/gorilla/sessions v1.1.1/go.mod h1:8KCfur6+4Mqcc6S0FEfKuN15Vl5MgXW92AE8ovaJD0w= +github.com/gorilla/sessions v1.2.0/go.mod h1:dk2InVEVJ0sfLlnXv9EAgkf6ecYs/i80K/zI+bUmuGM= +github.com/gorilla/websocket v1.4.0/go.mod h1:E7qHFY5m1UJ88s3WnNqhKjPHQ0heANvMoAMk2YaljkQ= +github.com/grpc-ecosystem/go-grpc-middleware v1.0.0/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.9.0/go.mod h1:vNeuVxBJEsws4ogUvrchl83t/GYV9WGTSLVdBhOQFDY= +github.com/grpc-ecosystem/grpc-gateway v1.9.6/go.mod h1:vNeuVxBJEsws4ogUvrchl83t/GYV9WGTSLVdBhOQFDY= +github.com/hashicorp/golang-lru v0.5.0/go.mod h1:/m3WP610KZHVQ1SGc6re/UDhFvYD7pJ4Ao+sR/qLZy8= +github.com/hashicorp/golang-lru v0.5.1/go.mod h1:/m3WP610KZHVQ1SGc6re/UDhFvYD7pJ4Ao+sR/qLZy8= +github.com/hashicorp/golang-lru v0.5.3/go.mod h1:iADmTwqILo4mZ8BN3D2Q6+9jd8WM5uGBxy+E8yxSoD4= +github.com/hashicorp/hcl v1.0.0/go.mod h1:E5yfLk+7swimpb2L/Alb/PJmXilQ/rhwaUYs4T20WEQ= +github.com/hpcloud/tail v1.0.0/go.mod h1:ab1qPbhIpdTxEkNHXyeSf5vhxWSCs/tWer42PpOxQnU= +github.com/issue9/assert v1.3.2/go.mod h1:9Ger+iz8X7r1zMYYwEhh++2wMGWcNN2oVI+zIQXxcio= +github.com/issue9/identicon v0.0.0-20160320065130-d36b54562f4c/go.mod h1:5mTb/PQNkqmq2x3IxlQZE0aSnTksJg7fg/oWmJ5SKXQ= +github.com/jackc/fake v0.0.0-20150926172116-812a484cc733/go.mod h1:WrMFNQdiFJ80sQsxDoMokWK1W5TQtxBFNpzWTD84ibQ= +github.com/jackc/pgx v3.3.0+incompatible/go.mod h1:0ZGrqGqkRlliWnWB4zKnWtjbSWbGkVEFm4TeybAXq+I= +github.com/jackc/pgx v3.6.0+incompatible/go.mod h1:0ZGrqGqkRlliWnWB4zKnWtjbSWbGkVEFm4TeybAXq+I= +github.com/jarcoal/httpmock v0.0.0-20180424175123-9c70cfe4a1da/go.mod h1:ks+b9deReOc7jgqp+e7LuFiCBH6Rm5hL32cLcEAArb4= +github.com/jaytaylor/html2text v0.0.0-20160923191438-8fb95d837f7d/go.mod h1:CVKlgaMiht+LXvHG173ujK6JUhZXKb2u/BQtjPDIvyk= +github.com/jbenet/go-context v0.0.0-20150711004518-d14ea06fba99/go.mod h1:1lJo3i6rXxKeerYnT8Nvf0QmHCRC1n8sfWVwXF2Frvo= +github.com/jessevdk/go-flags v1.4.0/go.mod h1:4FA24M0QyGHXBuZZK/XkWh8h0e1EYbRYJSGM75WSRxI= +github.com/jmhodges/levigo v1.0.0/go.mod h1:Q6Qx+uH3RAqyK4rFQroq9RL7mdkABMcfhEI+nNuzMJQ= +github.com/joho/godotenv v1.3.0/go.mod h1:7hK45KPybAkOC6peb+G5yklZfMxEjkZhHbwpqxOKXbg= +github.com/jonboulle/clockwork v0.1.0/go.mod h1:Ii8DK3G1RaLaWxj9trq07+26W01tbo22gdxWY5EU2bo= +github.com/json-iterator/go v1.1.6/go.mod h1:+SdeFBvtyEkXs7REEP0seUULqWtbJapLOCVDaaPEHmU= +github.com/json-iterator/go v1.1.7/go.mod h1:KdQUCv79m/52Kvf8AW2vK1V8akMuk1QjK/uOdHXbAo4= +github.com/jstemmer/go-junit-report v0.0.0-20190106144839-af01ea7f8024/go.mod h1:6v2b51hI/fHJwM22ozAgKL4VKDeJcHhJFhtBdhmNjmU= +github.com/jtolds/gls v4.2.1+incompatible/go.mod h1:QJZ7F/aHp+rZTRtaJ1ow/lLfFfVYBRgL+9YlvaHOwJU= +github.com/jtolds/gls v4.20.0+incompatible/go.mod h1:QJZ7F/aHp+rZTRtaJ1ow/lLfFfVYBRgL+9YlvaHOwJU= +github.com/julienschmidt/httprouter v1.2.0/go.mod h1:SYymIcj16QtmaHHD7aYtjjsJG7VTCxuUUipMqKk8s4w= +github.com/kballard/go-shellquote v0.0.0-20170619183022-cd60e84ee657/go.mod h1:CzGEWj7cYgsdH8dAjBGEr58BoE7ScuLd+fwFZ44+/x8= +github.com/kballard/go-shellquote v0.0.0-20180428030007-95032a82bc51/go.mod h1:CzGEWj7cYgsdH8dAjBGEr58BoE7ScuLd+fwFZ44+/x8= +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-20190724205821-6cfae18c12b8/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/keybase/go-crypto v0.0.0-20170605145657-00ac4db533f6/go.mod h1:ghbZscTyKdM07+Fw3KSi0hcJm+AlEUWj8QLlPtijN/M= +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/klauspost/compress v0.0.0-20161025140425-8df558b6cb6f/go.mod h1:RyIbtBH6LamlWaDj8nUwkbUhJ87Yi3uG0guNDohfE1A= +github.com/klauspost/cpuid v0.0.0-20160302075316-09cded8978dc/go.mod h1:Pj4uuM528wm8OyEC2QMXAi2YiTZ96dNQPGgoMS4s3ek= +github.com/klauspost/crc32 v0.0.0-20161016154125-cb6bfca970f6/go.mod h1:+ZoRqAPRLkC4NPOvfYeR5KNOrY6TD+/sAC3HXPZgDYg= +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/kr/logfmt v0.0.0-20140226030751-b84e30acd515/go.mod h1:+0opPa2QZZtGFBFZlji/RkVcI2GknAs/DXo4wKdlNEc= +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/lafriks/xormstore v1.0.0/go.mod h1:dD8vHNRfEp3Uy+JvX9cMi2SXcRKJ0x4pYKsZuy843Ic= +github.com/lafriks/xormstore v1.1.0/go.mod h1:wqtf8B94a8EtE463Ka1MaUT9ZDRl8FICA0nr65xr2wM= +github.com/lafriks/xormstore v1.2.0/go.mod h1:g47/cl3RfWykO5c4nw/Io3N0R+JuDqiD2YY7NzfWDoU= +github.com/lafriks/xormstore v1.3.0/go.mod h1:RAhtOztWBjK9xeZpXwKq59rhUxoRgo1zfYl0H1mtK7A= +github.com/lafriks/xormstore v1.3.1/go.mod h1:qALRD4Vto2Ic7/A5eplMpu5V62mugtSqFysRwz8FETs= +github.com/lib/pq v1.0.0/go.mod h1:5WUZQaWbwv1U+lTReE5YruASi9Al49XbQIvNi/34Woo= +github.com/lib/pq v1.2.0/go.mod h1:5WUZQaWbwv1U+lTReE5YruASi9Al49XbQIvNi/34Woo= +github.com/lunny/dingtalk_webhook v0.0.0-20171025031554-e3534c89ef96/go.mod h1:mmIfjCSQlGYXmJ95jFN84AkQFnVABtKuJL8IrzwvUKQ= +github.com/lunny/log v0.0.0-20160921050905-7887c61bf0de/go.mod h1:3q8WtuPQsoRbatJuy3nvq/hRSvuBJrHHr+ybPPiNvHQ= +github.com/lunny/nodb v0.0.0-20160621015157-fc1ef06ad4af/go.mod h1:Cqz6pqow14VObJ7peltM+2n3PWOz7yTrfUuGbVFkzN0= +github.com/magiconair/properties v1.8.0/go.mod h1:PppfXfuXeibc/6YijjN8zIbojt8czPbwD3XqdrwzmxQ= +github.com/magiconair/properties v1.8.1/go.mod h1:PppfXfuXeibc/6YijjN8zIbojt8czPbwD3XqdrwzmxQ= +github.com/mailru/easyjson v0.0.0-20180823135443-60711f1a8329/go.mod h1:C1wdFJiN94OJF2b5HbByQZoLdCWB1Yqtg26g4irojpc= +github.com/mailru/easyjson v0.0.0-20190312143242-1de009706dbe/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= +github.com/mailru/easyjson v0.7.0/go.mod h1:KAzv3t3aY1NaHWoQz1+4F1ccyAH66Jk7yos7ldAVICs= +github.com/markbates/going v1.0.0/go.mod h1:I6mnB4BPnEeqo85ynXIx1ZFLLbtiLHNXVgWeFO9OGOA= +github.com/markbates/goth v1.56.0/go.mod h1:zZmAw0Es0Dpm7TT/4AdN14QrkiWLMrrU9Xei1o+/mdA= +github.com/mattn/go-isatty v0.0.7/go.mod h1:Iq45c/XA43vh69/j3iqttzPXn0bhXyGjM0Hdxcsrc5s= +github.com/mattn/go-isatty v0.0.12/go.mod h1:cbi8OIDigv2wuxKPP5vlRcQ1OAZbq2CE4Kysco4FUpU= +github.com/mattn/go-oci8 v0.0.0-20190320171441-14ba190cf52d/go.mod h1:/M9VLO+lUPmxvoOK2PfWRZ8mTtB4q1Hy9lEGijv9Nr8= +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 v2.0.3+incompatible/go.mod h1:FPy6KqzDD04eiIsT53CuJW3U88zkxoIYsOqkbpncsNc= +github.com/matttproud/golang_protobuf_extensions v1.0.1/go.mod h1:D8He9yQNgCq6Z5Ld7szi9bcBfOoFv/3dc6xSMkL2PC0= +github.com/mcuadros/go-version v0.0.0-20190308113854-92cdf37c5b75/go.mod h1:76rfSfYPWj01Z85hUf/ituArm797mNKcvINh1OlsZKo= +github.com/mcuadros/go-version v0.0.0-20190830083331-035f6764e8d2/go.mod h1:76rfSfYPWj01Z85hUf/ituArm797mNKcvINh1OlsZKo= +github.com/microcosm-cc/bluemonday v0.0.0-20161012083705-f77f16ffc87a/go.mod h1:hsXNsILzKxV+sX77C5b8FSuKF00vh2OMYv+xgHpAMF4= +github.com/mitchellh/go-homedir v1.0.0/go.mod h1:SfyaCUpYCn1Vlf4IUYiD9fPX4A5wJrkLzIz1N1q0pr0= +github.com/mitchellh/go-homedir v1.1.0/go.mod h1:SfyaCUpYCn1Vlf4IUYiD9fPX4A5wJrkLzIz1N1q0pr0= +github.com/mitchellh/mapstructure v1.1.2/go.mod h1:FVVH3fgwuzCH5S8UJGiWEs2h04kUh9fWfEaFds41c1Y= +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-20180701023420-4b7aa43c6742/go.mod h1:bx2lNnkwVCuqBIxFjflWJWanXIb3RllmbCylyMrvgv0= +github.com/modern-go/reflect2 v1.0.1/go.mod h1:bx2lNnkwVCuqBIxFjflWJWanXIb3RllmbCylyMrvgv0= +github.com/mrjones/oauth v0.0.0-20180629183705-f4e24b6d100c/go.mod h1:skjdDftzkFALcuGzYSklqYd8gvat6F1gZJ4YPVbkZpM= +github.com/mschoch/smat v0.0.0-20160514031455-90eadee771ae/go.mod h1:qAyveg+e4CE+eKJXWVjKXM4ck2QobLqTDytGJbLLhJg= +github.com/msteinert/pam v0.0.0-20151204160544-02ccfbfaf0cc/go.mod h1:np1wUFZ6tyoke22qDJZY40URn9Ae51gX7ljIWXN5TJs= +github.com/mwitkow/go-conntrack v0.0.0-20161129095857-cc309e4a2223/go.mod h1:qRWi+5nqEBWmkhHvq77mSJWrCKwh8bxhgT7d/eI7P4U= +github.com/mwitkow/go-conntrack v0.0.0-20190716064945-2f068394615f/go.mod h1:qRWi+5nqEBWmkhHvq77mSJWrCKwh8bxhgT7d/eI7P4U= +github.com/nfnt/resize v0.0.0-20160724205520-891127d8d1b5/go.mod h1:jpp1/29i3P1S/RLdc7JQKbRpFeM1dOBd8T9ki5s+AY8= +github.com/oklog/ulid v1.3.1/go.mod h1:CirwcVhetQ6Lv90oh/F+FBtV6XMibvdAFo93nm5qn4U= +github.com/oliamb/cutter v0.2.2/go.mod h1:4BenG2/4GuRBDbVm/OPahDVqbrOemzpPiG5mi1iryBU= +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/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/openzipkin/zipkin-go v0.1.6/go.mod h1:QgAqvLzwWbR/WpD4A3cGpPtJrZXNIiJc5AZX7/PBEpw= +github.com/pborman/uuid v1.2.0/go.mod h1:X/NO0urCmaxf9VXbdlT7C2Yzkj2IKimNn4k+gtPdI/k= +github.com/pelletier/go-buffruneio v0.2.0/go.mod h1:JkE26KsDizTr40EUHkXVtNPvgGtbSNq5BcowyYOWdKo= +github.com/pelletier/go-toml v1.2.0/go.mod h1:5z9KED0ma1S8pY6P1sdut58dfprrGBbd/94hg7ilaic= +github.com/pelletier/go-toml v1.4.0/go.mod h1:PN7xzY2wHTK0K9p34ErDQMlFxa51Fk0OUruD3k1mMwo= +github.com/philhofer/fwd v1.0.0/go.mod h1:gk3iGcWd9+svBvR0sR+KPcfE+RNWozjowpeBVG3ZVNU= +github.com/pierrec/lz4 v2.0.5+incompatible/go.mod h1:pdkljMzZIN41W+lC3N2tnIh5sFi+IEE17M5jbnwPHcY= +github.com/pkg/errors v0.8.0/go.mod h1:bwawxfHBFNV+L2hUp1rHADufV3IMtnDRdf1r5NINEl0= +github.com/pkg/errors v0.8.1/go.mod h1:bwawxfHBFNV+L2hUp1rHADufV3IMtnDRdf1r5NINEl0= +github.com/pmezard/go-difflib v1.0.0/go.mod h1:iKH77koFhYxTK1pcRnkKkqfTogsbg7gZNVY4sRDYZ/4= +github.com/pquerna/cachecontrol v0.0.0-20180517163645-1555304b9b35/go.mod h1:prYjPmNq4d1NPVmpShWobRqXY3q7Vp+80DqgxxUrUIA= +github.com/pquerna/otp v0.0.0-20160912161815-54653902c20e/go.mod h1:Zad1CMQfSQZI5KLpahDiSUX4tMMREnXw98IvL1nhgMk= +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_golang v1.1.0/go.mod h1:I1FGZT9+L76gKKOs5djB6ezCbFQP1xR9D75/vuwEF3g= +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-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/common v0.6.0/go.mod h1:eBmuwkDJBwy6iBfxCBob6t6dR6ENT/y+J+Zk0j9GMYc= +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/procfs v0.0.3/go.mod h1:4A/X28fw3Fc593LaREMrKMqOKvUAntwMDaekg4FpcdQ= +github.com/prometheus/procfs v0.0.4/go.mod h1:4A/X28fw3Fc593LaREMrKMqOKvUAntwMDaekg4FpcdQ= +github.com/prometheus/tsdb v0.7.1/go.mod h1:qhTCs0VvXwvX/y3TZrWD7rabWM+ijKTux40TwIPHuXU= +github.com/prometheus/tsdb v0.10.0/go.mod h1:oi49uRhEe9dPUTlS3JRZOwJuVi6tmh10QSgwXEyGCt4= +github.com/rcrowley/go-metrics v0.0.0-20181016184325-3113b8401b8a/go.mod h1:bCqnVzQkZxMG4s8nGwiZ5l3QUCyqpo9Y+/ZMZ9VjZe4= +github.com/remyoudompheng/bigfft v0.0.0-20190321074620-2f0d2b0e0001/go.mod h1:qqbHyh8v60DhA7CoWK5oRCqLrMHRGoxYCSS9EjAz6Eo= +github.com/rogpeppe/fastuuid v0.0.0-20150106093220-6724a57986af/go.mod h1:XWv6SoW27p1b0cqNHllgS5HIMJraePCO15w5zCzIWYg= +github.com/rogpeppe/fastuuid v1.2.0/go.mod h1:jVj6XXZzXRy/MSR5jhDC/2q6DgLz+nrA6LYCDYWNEvQ= +github.com/rogpeppe/go-internal v1.3.0/go.mod h1:M8bDsm7K2OlrFYOpmOWEs/qY81heoFRclV5y23lUDJ4= +github.com/russross/blackfriday v0.0.0-20180428102519-11635eb403ff/go.mod h1:JO/DiYxRf+HjHt06OyowR9PTA263kcR/rfWxYHBV53g= +github.com/saintfish/chardet v0.0.0-20120816061221-3af4cd4741ca/go.mod h1:uugorj2VCxiV1x+LzaIdVa9b4S4qGAcH6cbhh4qVxOU= +github.com/satori/go.uuid v1.2.0/go.mod h1:dA0hQrYB0VpLJoorglMZABFdXlWrHn1NEOzdhQKdks0= +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/shopspring/decimal v0.0.0-20180709203117-cd690d0c9e24/go.mod h1:M+9NzErvs504Cn4c5DxATwIqPbtswREoFCre64PpcG4= +github.com/shurcooL/httpfs v0.0.0-20190527155220-6a4d4a70508b/go.mod h1:ZY1cvUeJuFPAdZ/B6v7RHavJWZn2YPVFQ1OSXhCGOkg= +github.com/shurcooL/sanitized_anchor_name v0.0.0-20160918041101-1dba4b3954bc/go.mod h1:1NzhyTcUVG4SuEtjjoZeVRXNmyL/1OwPU0+IJeTBvfc= +github.com/shurcooL/sanitized_anchor_name v1.0.0/go.mod h1:1NzhyTcUVG4SuEtjjoZeVRXNmyL/1OwPU0+IJeTBvfc= +github.com/shurcooL/vfsgen v0.0.0-20181202132449-6a9ea43bcacd/go.mod h1:TrYk7fJVaAttu97ZZKrO9UbRa8izdowaMIZcxYMbVaw= +github.com/siddontang/go v0.0.0-20180604090527-bdc77568d726/go.mod h1:3yhqj7WBBfRhbBlzyOC3gUxftwsU0u8gqevxwIHQpMw= +github.com/siddontang/go-snappy v0.0.0-20140704025258-d8f7bb82a96d/go.mod h1:vq0tzqLRu6TS7Id0wMo2N5QzJoKedVeovOpHjnykSzY= +github.com/siddontang/ledisdb v0.0.0-20190202134119-8ceb77e66a92/go.mod h1:mF1DpOSOUiJRMR+FDqaqu3EBqrybQtrDDszLUZ6oxPg= +github.com/siddontang/rdb v0.0.0-20150307021120-fc89ed2e418d/go.mod h1:AMEsy7v5z92TR1JKMkLLoaOQk++LVnOKL3ScbJ8GNGA= +github.com/sirupsen/logrus v1.2.0/go.mod h1:LxeOpSwHxABJmUn/MG1IvRgCAasNZTLOkJPxbbu5VWo= +github.com/sirupsen/logrus v1.4.2/go.mod h1:tLMulIdttU9McNUspp0xgXVQah82FyeX6MwdIuYE2rE= +github.com/smartystreets/assertions v0.0.0-20180927180507-b2de0cb4f26d/go.mod h1:OnSkiWE9lh6wB0YB77sQom3nweQdgAjqCqsofrRNTgc= +github.com/smartystreets/assertions v0.0.0-20190116191733-b6c0e53d7304/go.mod h1:OnSkiWE9lh6wB0YB77sQom3nweQdgAjqCqsofrRNTgc= +github.com/smartystreets/assertions v1.0.1/go.mod h1:kHHU4qYBaI3q23Pp3VPrmWhuIUrLW/7eUrw0BU5VaoM= +github.com/smartystreets/goconvey v0.0.0-20181108003508-044398e4856c/go.mod h1:XDJAKZRPZ1CvBcN2aX5YOUTYGHki24fSF0Iv48Ibg0s= +github.com/smartystreets/goconvey v0.0.0-20190731233626-505e41936337/go.mod h1:syvi0/a8iFYH4r/RixwvyeAJjdLS9QV7WQ/tjFTllLA= +github.com/soheilhy/cmux v0.1.4/go.mod h1:IM3LyeVVIOuxMH7sFAkER9+bJ4dT7Ms6E4xg4kGIyLM= +github.com/spaolacci/murmur3 v0.0.0-20180118202830-f09979ecbc72/go.mod h1:JwIasOWyU6f++ZhiEuf87xNszmSA2myDM2Kzu9HwQUA= +github.com/spaolacci/murmur3 v1.1.0/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/cast v1.3.0/go.mod h1:Qx5cxh0v+4UWYiBimWS+eyWzqEqokIECu5etghLkUJE= +github.com/spf13/jwalterweatherman v1.0.0/go.mod h1:cQK4TGJAtQXfYWX+Ddv3mKDzgVb68N+wFjFa4jdeBTo= +github.com/spf13/jwalterweatherman v1.1.0/go.mod h1:aNWZUN0dPAAO/Ljvb5BEdw96iTZ0EXowPYD95IqWIGo= +github.com/spf13/pflag v1.0.3/go.mod h1:DYY7MBk1bdzusC3SYhjObp+wFpr4gzcvqqNjLnInEg4= +github.com/spf13/viper v1.4.0/go.mod h1:PTJ7Z/lr49W6bUbkmS1V3by4uWynFiR9p7+dSq/yZzE= +github.com/src-d/gcfg v1.4.0/go.mod h1:p/UMsR43ujA89BJY9duynAwIpvqEujIH/jFlfL7jWoI= +github.com/steveyen/gtreap v0.0.0-20150807155958-0abe01ef9be2/go.mod h1:mjqs7N0Q6m5HpR7QfXVBZXZWSqTjQLeTujjA/xUp2uw= +github.com/stretchr/objx v0.1.0/go.mod h1:HFkY916IF+rwdDfMAkV7OtwuqBVzrE8GR6GFx+wExME= +github.com/stretchr/objx v0.1.1/go.mod h1:HFkY916IF+rwdDfMAkV7OtwuqBVzrE8GR6GFx+wExME= +github.com/stretchr/objx v0.2.0/go.mod h1:qt09Ya8vawLte6SNmTgCsAVtYtaKzEcn8ATUoHMkEqE= +github.com/stretchr/testify v1.2.2/go.mod h1:a8OnRcib4nhh0OaRAV+Yts87kKdq0PP7pXfy6kDkUVs= +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/syndtr/goleveldb v0.0.0-20190203031304-2f17a3356c66/go.mod h1:ZVVdQEZoIme9iO1Ch2Jdy24qqXrMMOU6lpPAyBWyWuQ= +github.com/syndtr/goleveldb v1.0.0/go.mod h1:ZVVdQEZoIme9iO1Ch2Jdy24qqXrMMOU6lpPAyBWyWuQ= +github.com/tecbot/gorocksdb v0.0.0-20181010114359-8752a9433481/go.mod h1:ahpPrc7HpcfEWDQRZEmnXMzHY03mLDYMCxeDzy46i+8= +github.com/tidwall/pretty v1.0.0/go.mod h1:XNkn88O1ChpSDQmQeStsy+sBenx6DDtFZJxhVysOjyk= +github.com/tinylib/msgp v0.0.0-20180516164116-c8cf64dff200/go.mod h1:+d+yLhGm8mzTaHzB+wgMYrodPfmZrzkirds8fDWklFE= +github.com/tmc/grpc-websocket-proxy v0.0.0-20190109142713-0ad062ec5ee5/go.mod h1:ncp9v5uamzpCO7NfCPTXjqaC+bZgJeR0sMTm6dMHP7U= +github.com/toqueteos/webbrowser v1.2.0/go.mod h1:XWoZq4cyp9WeUeak7w7LXRUQf1F1ATJMir8RTqb4ayM= +github.com/tstranex/u2f v1.0.0/go.mod h1:eahSLaqAS0zsIEv80+vXT7WanXs7MQQDg3j3wGBSayo= +github.com/ugorji/go v1.1.4/go.mod h1:uQMGLiO92mf5W77hV/PUCpI3pbzQx3CRekS0kk+RGrc= +github.com/ugorji/go v1.1.7/go.mod h1:kZn38zHttfInRq0xu/PH0az30d+z6vm202qpg1oXVMw= +github.com/ugorji/go/codec v1.1.7/go.mod h1:Ax+UKWsSmolVDwsd+7N3ZtXu+yMGCf907BLYF3GoBXY= +github.com/unknwon/cae v0.0.0-20190822084630-55a0b64484a1/go.mod h1:QaSeRctcea9fK6piJpAMCCPKxzJ01+xFcr2k1m3WRPU= +github.com/unknwon/cae v1.0.0/go.mod h1:QaSeRctcea9fK6piJpAMCCPKxzJ01+xFcr2k1m3WRPU= +github.com/unknwon/com v0.0.0-20181010210213-41959bdd855f/go.mod h1:7l5Mh6tAHnDUu0AqU0g7Sm0dgGkYZLRGxJqMYXXBlok= +github.com/unknwon/com v0.0.0-20190804042917-757f69c95f3e/go.mod h1:tOOxU81rwgoCLoOVVPHb6T/wt8HZygqH5id+GNnlCXM= +github.com/unknwon/com v1.0.1/go.mod h1:tOOxU81rwgoCLoOVVPHb6T/wt8HZygqH5id+GNnlCXM= +github.com/unknwon/i18n v0.0.0-20190805065654-5c6446a380b6/go.mod h1:+5rDk6sDGpl3azws3O+f+GpFSyN9GVr0K8cvQLQM2ZQ= +github.com/unknwon/paginater v0.0.0-20151104151617-7748a72e0141/go.mod h1:TBwoao3Q4Eb/cp+dHbXDfRTrZSsj/k7kLr2j1oWRWC0= +github.com/urfave/cli v1.20.0/go.mod h1:70zkFmudgCuE/ngEzBv17Jvp/497gISqfk5gWijbERA= +github.com/willf/bitset v0.0.0-20180426185212-8ce1146b8621/go.mod h1:RjeCKbqT1RxIR/KWY6phxZiaY1IyutSBfGjNPySAYV4= +github.com/xanzy/ssh-agent v0.2.0/go.mod h1:0NyE30eGUDliuLEHJgYte/zncp2zdTStcOnWhgSqHD8= +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= +github.com/yohcop/openid-go v0.0.0-20160914080427-2c050d2dae53/go.mod h1:f6elajwZV+xceiaqgRL090YzLEDGSbqr3poGL3ZgXYo= +github.com/ziutek/mymysql v1.5.4/go.mod h1:LMSpPZ6DbqWFxNCHW77HeMg9I646SAhApZ/wKdgO/C0= +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.mongodb.org/mongo-driver v1.0.3/go.mod h1:u7ryQJ+DOzQmeO7zB6MHyr8jkEQvC8vH7qLUO4lqsUM= +go.mongodb.org/mongo-driver v1.1.0/go.mod h1:u7ryQJ+DOzQmeO7zB6MHyr8jkEQvC8vH7qLUO4lqsUM= +go.mongodb.org/mongo-driver v1.1.1/go.mod h1:u7ryQJ+DOzQmeO7zB6MHyr8jkEQvC8vH7qLUO4lqsUM= +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.uber.org/atomic v1.4.0/go.mod h1:gD2HeocX3+yG+ygLZcrzQJaqmWj9AIm7n08wl/qW/PE= +go.uber.org/multierr v1.1.0/go.mod h1:wR5kodmAFQ0UK8QlbwjlSNy0Z68gJhDJUG5sjR94q/0= +go.uber.org/zap v1.10.0/go.mod h1:vwi/ZaCAaUcBkycHslxD9B2zi4UTXhF60s6SWpuDF0Q= +golang.org/x/crypto v0.0.0-20180820150726-614d502a4dac/go.mod h1:6SG95UA2DQfeDnfUPMdvaQW0Q7yPrPDi9nlGo2tz2b4= +golang.org/x/crypto v0.0.0-20180904163835-0709b304e793/go.mod h1:6SG95UA2DQfeDnfUPMdvaQW0Q7yPrPDi9nlGo2tz2b4= +golang.org/x/crypto v0.0.0-20190122013713-64072686203f/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 h1:VklqNMn3ovrHsnt90PveolxSbWFaJdECFbxSq0Mqo2M= +golang.org/x/crypto v0.0.0-20190308221718-c2843e01d9a2/go.mod h1:djNgcEr1/C05ACkg1iLfiJU5Ep61QUkGW8qpdssI0+w= +golang.org/x/crypto v0.0.0-20190320223903-b7391e95e576/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-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-20190617133340-57b3e21c3d56/go.mod h1:yigFU9vqHzYiE8UmvKecakEJjdnWj3jj499lnFckfCI= +golang.org/x/crypto v0.0.0-20190701094942-4def268fd1a4/go.mod h1:yigFU9vqHzYiE8UmvKecakEJjdnWj3jj499lnFckfCI= +golang.org/x/crypto v0.0.0-20190927123631-a832865fa7ad/go.mod h1:yigFU9vqHzYiE8UmvKecakEJjdnWj3jj499lnFckfCI= +golang.org/x/crypto v0.0.0-20191119213627-4f8c1d86b1ba h1:9bFeDpN3gTqNanMVqNcoR/pJQuP5uroC3t1D7eXozTE= +golang.org/x/crypto v0.0.0-20191119213627-4f8c1d86b1ba/go.mod h1:LzIPMQfyMNhhGPhUkYOs5KpL4U8rLKemX1yGLhDgUto= +golang.org/x/exp v0.0.0-20190121172915-509febef88a4/go.mod h1:CJ0aWSM057203Lf6IL+f9T1iT9GByDxfZKAQTCR3kQA= +golang.org/x/exp v0.0.0-20190510132918-efd6b22b2522/go.mod h1:ZjyILWgesfNpC6sMxTJOJm9Kp84zZh5NQWvqDGG3Qr8= +golang.org/x/exp v0.0.0-20190731235908-ec7cb31e5a56/go.mod h1:JhuoJpWY28nO4Vef9tZUw9qufEGTyX1+7lmHxV5q5G4= +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-20181026193005-c67002cb31c3/go.mod h1:UVdnD1Gm6xHRNCYTkRU2/jEulfH38KcIWyp/GAMgvoE= +golang.org/x/lint v0.0.0-20190227174305-5b3e6a55c961/go.mod h1:wehouNa3lNwaWXcvxsM5YxQ5yQlVC4a0KAMCusXpPoU= +golang.org/x/lint v0.0.0-20190301231843-5614ed5bae6f/go.mod h1:UVdnD1Gm6xHRNCYTkRU2/jEulfH38KcIWyp/GAMgvoE= +golang.org/x/lint v0.0.0-20190313153728-d0100b6bd8b3/go.mod h1:6SW0HCj/g11FgYtHlgUYUwCkIfeOF89ocIRzGO/8vkc= +golang.org/x/lint v0.0.0-20190409202823-959b441ac422/go.mod h1:6SW0HCj/g11FgYtHlgUYUwCkIfeOF89ocIRzGO/8vkc= +golang.org/x/mobile v0.0.0-20190312151609-d3739f865fa6/go.mod h1:z+o9i4GpDbdi3rU15maQ/Ox0txvL9dWGYEHz965HBQE= +golang.org/x/mobile v0.0.0-20190814143026-e8b3e6111d02/go.mod h1:z5wpDCy2wbnXyFdvEuY3LhY9gBUL86/IOILm+Hsjx+E= +golang.org/x/mod v0.0.0-20190513183733-4bf6d317e70e/go.mod h1:mXi4GBBbnImb6dmsKGUJ2LatrhH/nqhxcFungHvyanc= +golang.org/x/mod v0.1.0/go.mod h1:0QHyrYULN0/3qlju5TqG8bIK38QM8yzMo5ekMj3DlcY= +golang.org/x/net v0.0.0-20180218175443-cbe0f9307d01/go.mod h1:mL1N/T3taQHkDXs73rZJwtUhF3w3ftmwwsq0BUmARs4= +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-20181005035420-146acd28ed58/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-20190320064053-1272bf9dcd53/go.mod h1:t9HGtf8HONx5eT2rtn7q6eTqICYqUVnKs3thJo3Qplg= +golang.org/x/net v0.0.0-20190404232315-eb5bcb51f2a3/go.mod h1:t9HGtf8HONx5eT2rtn7q6eTqICYqUVnKs3thJo3Qplg= +golang.org/x/net v0.0.0-20190501004415-9ce7a6920f09/go.mod h1:t9HGtf8HONx5eT2rtn7q6eTqICYqUVnKs3thJo3Qplg= +golang.org/x/net v0.0.0-20190503192946-f4e77d36d62c/go.mod h1:t9HGtf8HONx5eT2rtn7q6eTqICYqUVnKs3thJo3Qplg= +golang.org/x/net v0.0.0-20190522155817-f3200d17e092/go.mod h1:HSz+uSET+XFnRR8LxR5pz3Of3rY3CfYBVs4xY44aLks= +golang.org/x/net v0.0.0-20190603091049-60506f45cf65/go.mod h1:HSz+uSET+XFnRR8LxR5pz3Of3rY3CfYBVs4xY44aLks= +golang.org/x/net v0.0.0-20190613194153-d28f0bde5980/go.mod h1:z5CRVTTTmAJ677TzLLGU+0bjPO0LkuOLi4/5GtJWs/s= +golang.org/x/net v0.0.0-20190620200207-3b0461eec859/go.mod h1:z5CRVTTTmAJ677TzLLGU+0bjPO0LkuOLi4/5GtJWs/s= +golang.org/x/net v0.0.0-20190724013045-ca1201d0de80/go.mod h1:z5CRVTTTmAJ677TzLLGU+0bjPO0LkuOLi4/5GtJWs/s= +golang.org/x/net v0.0.0-20190813141303-74dc4d7220e7/go.mod h1:z5CRVTTTmAJ677TzLLGU+0bjPO0LkuOLi4/5GtJWs/s= +golang.org/x/net v0.0.0-20190827160401-ba9fcec4b297/go.mod h1:z5CRVTTTmAJ677TzLLGU+0bjPO0LkuOLi4/5GtJWs/s= +golang.org/x/net v0.0.0-20190909003024-a7b16738d86b/go.mod h1:z5CRVTTTmAJ677TzLLGU+0bjPO0LkuOLi4/5GtJWs/s= +golang.org/x/net v0.0.0-20200324143707-d3edc9973b7e/go.mod h1:qpuaurCH72eLCgpAm/N6yyVIVM9cpaDIP3A8BGJEC5A= +golang.org/x/oauth2 v0.0.0-20180620175406-ef147856a6dd/go.mod h1:N/0e6XlmueqKjAGxoOufVs8QHGRruUQn6yWY3a++T0U= +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= +golang.org/x/sync v0.0.0-20180314180146-1d60e4601c6f/go.mod h1:RxMgew5VJxzue5/jJTE5uejpjVlOe/izrB70Jof72aM= +golang.org/x/sync v0.0.0-20181108010431-42b317875d0f/go.mod h1:RxMgew5VJxzue5/jJTE5uejpjVlOe/izrB70Jof72aM= +golang.org/x/sync v0.0.0-20181221193216-37e7f081c4d4/go.mod h1:RxMgew5VJxzue5/jJTE5uejpjVlOe/izrB70Jof72aM= +golang.org/x/sync v0.0.0-20190227155943-e225da77a7e6/go.mod h1:RxMgew5VJxzue5/jJTE5uejpjVlOe/izrB70Jof72aM= +golang.org/x/sync v0.0.0-20190423024810-112230192c58/go.mod h1:RxMgew5VJxzue5/jJTE5uejpjVlOe/izrB70Jof72aM= +golang.org/x/sys v0.0.0-20180824143301-4910a1d54f87/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-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-20190215142949-d0b11bdaac8a/go.mod h1:STP8DvDyc/dI5b8T5hshtkjS+E42TnysNCUPdjciGhY= +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-20190321052220-f7bb7a8bee54/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= +golang.org/x/sys v0.0.0-20190507160741-ecd444e8653b/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs= +golang.org/x/sys v0.0.0-20190606165138-5da285871e9c/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs= +golang.org/x/sys v0.0.0-20190616124812-15dcb6c0061f/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs= +golang.org/x/sys v0.0.0-20190624142023-c5567b49c5d0/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs= +golang.org/x/sys v0.0.0-20190726091711-fc99dfbffb4e/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs= +golang.org/x/sys v0.0.0-20190730183949-1393eb018365/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs= +golang.org/x/sys v0.0.0-20190801041406-cbf593c0f2f3/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs= +golang.org/x/sys v0.0.0-20190813064441-fde4db37ae7a/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs= +golang.org/x/sys v0.0.0-20190910064555-bbd175535a8b/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs= +golang.org/x/sys v0.0.0-20200116001909-b77594299b42/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs= +golang.org/x/sys v0.0.0-20200323222414-85ca7c5b95cd/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs= +golang.org/x/sys v0.0.0-20200331124033-c3d80250170d/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs= +golang.org/x/text v0.3.0/go.mod h1:NqM8EUOU14njkJ3fqMW+pc6Ldnwhi/IjpwHt7yyuwOQ= +golang.org/x/text v0.3.1-0.20180807135948-17ff2d5776d2/go.mod h1:NqM8EUOU14njkJ3fqMW+pc6Ldnwhi/IjpwHt7yyuwOQ= +golang.org/x/text v0.3.2/go.mod h1:bEr9sfX3Q8Zfm5fL9x+3itogRgK3+ptLWKqgva+5dAk= +golang.org/x/time v0.0.0-20181108054448-85acf8d2951c/go.mod h1:tRJNPiyCQ0inRvYxbN9jk5I+vvW/OXSQhTDSoE431IQ= +golang.org/x/time v0.0.0-20190308202827-9d24e82272b4/go.mod h1:tRJNPiyCQ0inRvYxbN9jk5I+vvW/OXSQhTDSoE431IQ= +golang.org/x/tools v0.0.0-20180221164845-07fd8470d635/go.mod h1:n7NCudcB/nEzxVGmLbDWY5pfWTLqBcC2KZ6jyYvM4mQ= +golang.org/x/tools v0.0.0-20180828015842-6cd1fcedba52/go.mod h1:n7NCudcB/nEzxVGmLbDWY5pfWTLqBcC2KZ6jyYvM4mQ= +golang.org/x/tools v0.0.0-20180917221912-90fa682c2a6e/go.mod h1:n7NCudcB/nEzxVGmLbDWY5pfWTLqBcC2KZ6jyYvM4mQ= +golang.org/x/tools v0.0.0-20181030221726-6c7e314b6563/go.mod h1:n7NCudcB/nEzxVGmLbDWY5pfWTLqBcC2KZ6jyYvM4mQ= +golang.org/x/tools v0.0.0-20190114222345-bf090417da8b/go.mod h1:n7NCudcB/nEzxVGmLbDWY5pfWTLqBcC2KZ6jyYvM4mQ= +golang.org/x/tools v0.0.0-20190226205152-f727befe758c/go.mod h1:9Yl7xja0Znq3iFh3HoIrodX9oNMXvdceNzlUR8zjMvY= +golang.org/x/tools v0.0.0-20190311212946-11955173bddd/go.mod h1:LCzVGOaR6xXOjkQ3onu1FJEFr0SW1gC7cKk1uF8kGRs= +golang.org/x/tools v0.0.0-20190312151545-0bb0c0a6e846/go.mod h1:LCzVGOaR6xXOjkQ3onu1FJEFr0SW1gC7cKk1uF8kGRs= +golang.org/x/tools v0.0.0-20190312170243-e65039ee4138/go.mod h1:LCzVGOaR6xXOjkQ3onu1FJEFr0SW1gC7cKk1uF8kGRs= +golang.org/x/tools v0.0.0-20190328211700-ab21143f2384/go.mod h1:LCzVGOaR6xXOjkQ3onu1FJEFr0SW1gC7cKk1uF8kGRs= +golang.org/x/tools v0.0.0-20190425150028-36563e24a262/go.mod h1:RgjU9mgBXZiqYHBnxXauZ1Gv1EHHAz9KjViQ78xBX0Q= +golang.org/x/tools v0.0.0-20190506145303-2d16b83fe98c/go.mod h1:RgjU9mgBXZiqYHBnxXauZ1Gv1EHHAz9KjViQ78xBX0Q= +golang.org/x/tools v0.0.0-20190524140312-2c0ae7006135/go.mod h1:RgjU9mgBXZiqYHBnxXauZ1Gv1EHHAz9KjViQ78xBX0Q= +golang.org/x/tools v0.0.0-20190606124116-d0a3d012864b/go.mod h1:/rFqwRUd4F7ZHNgwSSTFct+R/Kf4OFW1sUzUTQQTgfc= +golang.org/x/tools v0.0.0-20190614205625-5aca471b1d59/go.mod h1:/rFqwRUd4F7ZHNgwSSTFct+R/Kf4OFW1sUzUTQQTgfc= +golang.org/x/tools v0.0.0-20190617190820-da514acc4774/go.mod h1:/rFqwRUd4F7ZHNgwSSTFct+R/Kf4OFW1sUzUTQQTgfc= +golang.org/x/tools v0.0.0-20190621195816-6e04913cbbac/go.mod h1:/rFqwRUd4F7ZHNgwSSTFct+R/Kf4OFW1sUzUTQQTgfc= +golang.org/x/tools v0.0.0-20190624190245-7f2218787638/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-20190729092621-ff9f1409240a/go.mod h1:jcCCGcm9btYwXyDqrUWc6MKQKKGJCWEQ3AfLSRIbEuI= +golang.org/x/tools v0.0.0-20190808195139-e713427fea3f/go.mod h1:b+2E5dAYhXwXZwtnZ6UAqBI28+e2cm9otk0dWdXHAEo= +golang.org/x/tools v0.0.0-20190820033707-85edb9ef3283/go.mod h1:b+2E5dAYhXwXZwtnZ6UAqBI28+e2cm9otk0dWdXHAEo= +golang.org/x/tools v0.0.0-20190910221609-7f5965fd7709/go.mod h1:b+2E5dAYhXwXZwtnZ6UAqBI28+e2cm9otk0dWdXHAEo= +golang.org/x/xerrors v0.0.0-20190717185122-a985d3407aa7/go.mod h1:I/5z698sn9Ka8TeJc9MKroUUfqBBauWjQqLJ2OPfmY0= +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.0/go.mod h1:btoxGiFvQNVUZQ8W08zLtrVS08CNpINPEfxXxgJL1Q4= +google.golang.org/api v0.7.0/go.mod h1:WtwebWUNSVBH/HAw79HIFXZNqEvBhG+Ra+ax0hx3E3M= +google.golang.org/api v0.8.0/go.mod h1:o4eAsZoiT+ibD93RtjEohWalFOjRDx6CVaqeizhEnKg= +google.golang.org/api v0.9.0/go.mod h1:o4eAsZoiT+ibD93RtjEohWalFOjRDx6CVaqeizhEnKg= +google.golang.org/appengine v1.1.0/go.mod h1:EbEs0AVv82hx2wNQdGPgUI5lhzA/G0D9YwlJXL52JkM= +google.golang.org/appengine v1.2.0/go.mod h1:xpcJRLb0r/rnEns0DIKYYv+WjYCduHsrkT7/EB5XEv4= +google.golang.org/appengine v1.4.0/go.mod h1:xpcJRLb0r/rnEns0DIKYYv+WjYCduHsrkT7/EB5XEv4= +google.golang.org/appengine v1.5.0/go.mod h1:xpcJRLb0r/rnEns0DIKYYv+WjYCduHsrkT7/EB5XEv4= +google.golang.org/appengine v1.6.0/go.mod h1:xpcJRLb0r/rnEns0DIKYYv+WjYCduHsrkT7/EB5XEv4= +google.golang.org/appengine v1.6.1/go.mod h1:i06prIuMbXzDqacNJfV5OdTW448YApPu5ww/cMBSeb0= +google.golang.org/appengine v1.6.2/go.mod h1:i06prIuMbXzDqacNJfV5OdTW448YApPu5ww/cMBSeb0= +google.golang.org/appengine v1.6.3/go.mod h1:i06prIuMbXzDqacNJfV5OdTW448YApPu5ww/cMBSeb0= +google.golang.org/appengine v1.6.4/go.mod h1:i06prIuMbXzDqacNJfV5OdTW448YApPu5ww/cMBSeb0= +google.golang.org/genproto v0.0.0-20180817151627-c66870c02cf8/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= +google.golang.org/genproto v0.0.0-20190530194941-fb225487d101/go.mod h1:z3L6/3dTEVtUr6QSP8miRzeRqwQOioJ9I66odjN4I7s= +google.golang.org/genproto v0.0.0-20190801165951-fa694d86fc64/go.mod h1:DMBHOl98Agz4BDEuKkezgsaosCRResVns1a3J2ZsMNc= +google.golang.org/genproto v0.0.0-20190819201941-24fa4b261c55/go.mod h1:DMBHOl98Agz4BDEuKkezgsaosCRResVns1a3J2ZsMNc= +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= +google.golang.org/grpc v1.21.0/go.mod h1:oYelfM1adQP15Ek0mdvEgi9Df8B9CZIaU1084ijfRaM= +google.golang.org/grpc v1.21.1/go.mod h1:oYelfM1adQP15Ek0mdvEgi9Df8B9CZIaU1084ijfRaM= +google.golang.org/grpc v1.23.0/go.mod h1:Y5yQAOtifL1yxbo5wqy6BxZv8vAUGQwXBOALyacEbxg= +gopkg.in/alecthomas/kingpin.v2 v2.2.6/go.mod h1:FMv+mEhP44yOT+4EoQTLFTRgOQ1FBLkstjWtayDeSgw= +gopkg.in/alexcesaro/quotedprintable.v3 v3.0.0-20150716171945-2caba252f4dc/go.mod h1:m7x9LTH6d71AHyAX77c9yqWCCa3UKHcVEj9y7hAtKDk= +gopkg.in/asn1-ber.v1 v1.0.0-20150924051756-4e86f4367175/go.mod h1:cuepJuh7vyXfUyUwEgHQXw849cJrilpS5NeIjOWESAw= +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= +gopkg.in/check.v1 v1.0.0-20190902080502-41f04d3bba15/go.mod h1:Co6ibVJAznAaIkqp8huTwlJQCZ016jof/cbN4VW5Yz0= +gopkg.in/editorconfig/editorconfig-core-go.v1 v1.3.0/go.mod h1:s2mQFI9McjArkyCwyEwU//+luQENTnD/Lfb/7Sj3/kQ= +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/gomail.v2 v2.0.0-20160411212932-81ebce5c23df/go.mod h1:LRQQ+SO6ZHR7tOkpBDuZnXENFzX8qRjMDMyPD6BRkCw= +gopkg.in/ini.v1 v1.44.0/go.mod h1:pNLf8WUiyNEtQjuu5G5vTm06TEv9tsIgeAvK8hOrP4k= +gopkg.in/ini.v1 v1.44.2/go.mod h1:M3Cogqpuv0QCi3ExAY5V4uOt4qb/R3xZubo9m8lK5wg= +gopkg.in/ini.v1 v1.46.0/go.mod h1:pNLf8WUiyNEtQjuu5G5vTm06TEv9tsIgeAvK8hOrP4k= +gopkg.in/ini.v1 v1.55.0/go.mod h1:pNLf8WUiyNEtQjuu5G5vTm06TEv9tsIgeAvK8hOrP4k= +gopkg.in/ldap.v3 v3.0.2/go.mod h1:oxD7NyBuxchC+SgJDE1Q5Od05eGt29SDQVBmV+HYbzw= +gopkg.in/resty.v1 v1.12.0/go.mod h1:mDo4pnntr5jdWRML875a/NmxYqAlA73dVijT2AXvQQo= +gopkg.in/square/go-jose.v2 v2.3.1/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.2/go.mod h1:nDjArDMp+XMs1aFAESLRjfGSgfvoYN0hDfzEk0GjC98= +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.5.0/go.mod h1:dLBcvytrw/TYZsNTWCnkNF2DSIlzWYqTe3rJR56Ac7g= +gopkg.in/src-d/go-git.v4 v4.11.0/go.mod h1:Vtut8izDyrM8BUVQnzJ+YvmNcem2J89EmfZYCkLokZk= +gopkg.in/src-d/go-git.v4 v4.12.0/go.mod h1:zjlNnzc1Wjn43v3Mtii7RVxiReNP0fIu9npcXKzuNp4= +gopkg.in/src-d/go-git.v4 v4.13.0/go.mod h1:nx5NYcxdKxq5fpltdHnPa2Exj4Sx0EclMWZQbYDu2z8= +gopkg.in/src-d/go-git.v4 v4.13.1/go.mod h1:nx5NYcxdKxq5fpltdHnPa2Exj4Sx0EclMWZQbYDu2z8= +gopkg.in/stretchr/testify.v1 v1.2.2/go.mod h1:QI5V/q6UbPmuhtm10CaFZxED9NreB8PnFYN9JcR6TxU= +gopkg.in/testfixtures.v2 v2.5.0/go.mod h1:vyAq+MYCgNpR29qitQdLZhdbLFf4mR/2MFJRFoQZZ2M= +gopkg.in/tomb.v1 v1.0.0-20141024135613-dd632973f1e7/go.mod h1:dt/ZhP58zS4L8KSrWDmTeBkI65Dw0HsyUHuEVlX15mw= +gopkg.in/warnings.v0 v0.1.2/go.mod h1:jksf8JmL6Qr/oQM2OXTHunEvvTAsrWBLb6OOjuVWRNI= +gopkg.in/yaml.v2 v2.0.0-20170812160011-eb3733d160e7/go.mod h1:JAlM8MvJe8wmxCU4Bli9HhUf9+ttbYbLASfIpnQbh74= +gopkg.in/yaml.v2 v2.2.1/go.mod h1:hI93XBmqTisBFMUTm0b8Fm+jr3Dg1NNxqwp+5A1VGuI= +gopkg.in/yaml.v2 v2.2.2/go.mod h1:hI93XBmqTisBFMUTm0b8Fm+jr3Dg1NNxqwp+5A1VGuI= +gopkg.in/yaml.v2 v2.2.4/go.mod h1:hI93XBmqTisBFMUTm0b8Fm+jr3Dg1NNxqwp+5A1VGuI= +honnef.co/go/tools v0.0.0-2019.2/go.mod h1:a3bituU0lyd329TUQxRnasdCoJDkEUEAqEt0JzvZhAg= +honnef.co/go/tools v0.0.0-2019.2.1/go.mod h1:a3bituU0lyd329TUQxRnasdCoJDkEUEAqEt0JzvZhAg= +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= +honnef.co/go/tools v0.0.0-20190106161140-3f1c8253044a/go.mod h1:rf3lG4BRIbNafJWhAfAdb/ePZxsR/4RtNHQocxwk9r4= +honnef.co/go/tools v0.0.0-20190418001031-e561f6794a2a/go.mod h1:rf3lG4BRIbNafJWhAfAdb/ePZxsR/4RtNHQocxwk9r4= +honnef.co/go/tools v0.0.0-20190523083050-ea95bdfd59fc/go.mod h1:rf3lG4BRIbNafJWhAfAdb/ePZxsR/4RtNHQocxwk9r4= +honnef.co/go/tools v0.0.1-2019.2.2/go.mod h1:a3bituU0lyd329TUQxRnasdCoJDkEUEAqEt0JzvZhAg= +mvdan.cc/xurls/v2 v2.1.0/go.mod h1:5GrSd9rOnKOpZaji1OZLYL/yeAAtGDlo/cFe+8K5n8E= +rsc.io/binaryregexp v0.2.0/go.mod h1:qTv7/COck+e2FymRvadv62gMdZztPaShugOCi3I+8D8= +strk.kbt.io/projects/go/libravatar v0.0.0-20191008002943-06d1c002b251/go.mod h1:FJGmPh3vz9jSos1L/F91iAgnC/aejc0wIIrF2ZwJxdY= +xorm.io/builder v0.3.6/go.mod h1:LEFAPISnRzG+zxaxj2vPicRwz67BdhFreKg8yv8/TgU= +xorm.io/core v0.7.2-0.20190928055935-90aeac8d08eb/go.mod h1:jJfd0UAEzZ4t87nbQYtVjmqpIODugN6PD2D9E+dJvdM= +xorm.io/core v0.7.2/go.mod h1:jJfd0UAEzZ4t87nbQYtVjmqpIODugN6PD2D9E+dJvdM= From 4e535d792f90ea46eeede4d78d3ef8b424d9dcda Mon Sep 17 00:00:00 2001 From: Kota Kanbe Date: Wed, 9 Jun 2021 09:49:26 +0900 Subject: [PATCH 4/8] chore: fix build-tags in .goreleaser.yml (#1250) --- .goreleaser.yml | 8 ++++++-- 1 file changed, 6 insertions(+), 2 deletions(-) diff --git a/.goreleaser.yml b/.goreleaser.yml index 998cc836..3ba292fa 100644 --- a/.goreleaser.yml +++ b/.goreleaser.yml @@ -31,7 +31,8 @@ builds: main: ./cmd/scanner/main.go flags: - -a - - -tags=scanner + tags: + - scanner ldflags: - -s -w -X github.com/future-architect/vuls/config.Version={{.Version}} -X github.com/future-architect/vuls/config.Revision={{.Commit}}-{{ .CommitDate }} binary: vuls-scanner @@ -46,6 +47,8 @@ builds: - amd64 - arm - arm64 + tags: + - scanner main: ./contrib/trivy/cmd/main.go binary: trivy-to-vuls @@ -61,7 +64,8 @@ builds: - arm64 flags: - -a - - -tags=scanner + tags: + - scanner main: ./contrib/future-vuls/cmd/main.go binary: future-vuls From 2a9aebe0591bda06079fc13df80386eda05a6631 Mon Sep 17 00:00:00 2001 From: Kota Kanbe Date: Fri, 11 Jun 2021 14:39:41 +0900 Subject: [PATCH 5/8] fix(report): improve cpe match logic (#1251) * fix(report): improve cpe match logic https://github.com/kotakanbe/go-cve-dictionary/pull/189 * fix vet error --- go.mod | 17 +++++++++++------ go.sum | 51 +++++++++++++++++++++++++++++++-------------------- oval/util.go | 2 +- 3 files changed, 43 insertions(+), 27 deletions(-) diff --git a/go.mod b/go.mod index b2b739de..8ca168c3 100644 --- a/go.mod +++ b/go.mod @@ -6,6 +6,7 @@ require ( github.com/Azure/azure-sdk-for-go v50.2.0+incompatible github.com/BurntSushi/toml v0.3.1 github.com/Ullaakut/nmap/v2 v2.1.2-0.20210406060955-59a52fe80a4f + github.com/VividCortex/ewma v1.2.0 // indirect github.com/aquasecurity/fanal v0.0.0-20210520034323-54c5a82e861f github.com/aquasecurity/trivy v0.18.3 github.com/aquasecurity/trivy-db v0.0.0-20210429114658-ae22941a55d0 @@ -13,9 +14,12 @@ require ( github.com/aws/aws-sdk-go v1.36.31 github.com/boltdb/bolt v1.3.1 github.com/cenkalti/backoff v2.2.1+incompatible + github.com/cheggaaa/pb/v3 v3.0.8 // indirect github.com/d4l3k/messagediff v1.2.2-0.20190829033028-7e0a312ae40b github.com/emersion/go-sasl v0.0.0-20200509203442-7bfe0ed36a21 github.com/emersion/go-smtp v0.14.0 + github.com/fatih/color v1.12.0 // indirect + github.com/go-redis/redis/v8 v8.10.0 // indirect github.com/go-sql-driver/mysql v1.6.0 // indirect github.com/google/subcommands v1.2.0 github.com/gosuri/uitable v0.0.4 @@ -29,13 +33,14 @@ require ( 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.10 - github.com/kotakanbe/go-cve-dictionary v0.5.12 + github.com/kotakanbe/go-cve-dictionary v0.15.14 github.com/kotakanbe/go-pingscanner v0.1.0 github.com/kotakanbe/goval-dictionary v0.3.6-0.20210429000733-6db1754b1d87 github.com/kotakanbe/logrus-prefixed-formatter v0.0.0-20180123152602-928f7356cb96 - github.com/lib/pq v1.10.1 // indirect + github.com/lib/pq v1.10.2 // indirect github.com/magiconair/properties v1.8.4 // indirect - github.com/mattn/go-runewidth v0.0.12 // indirect + github.com/mattn/go-isatty v0.0.13 // indirect + github.com/mattn/go-runewidth v0.0.13 // indirect github.com/mgutz/ansi v0.0.0-20200706080929-d51e80ef957d // indirect github.com/mitchellh/go-homedir v1.1.0 github.com/nlopes/slack v0.6.0 @@ -49,12 +54,12 @@ require ( github.com/spf13/cobra v1.1.3 github.com/takuzoo3868/go-msfdb v0.1.5 github.com/vulsio/go-exploitdb v0.1.7 - golang.org/x/crypto v0.0.0-20210421170649-83a5a9bb288b // indirect + golang.org/x/crypto v0.0.0-20210513164829-c07d793c2f9a // indirect golang.org/x/lint v0.0.0-20201208152925-83fdc39ff7b5 // indirect - golang.org/x/net v0.0.0-20210428140749-89ef3d95e781 // indirect + golang.org/x/net v0.0.0-20210610132358-84b48f89b13b // indirect golang.org/x/oauth2 v0.0.0-20210125201302-af13f521f196 golang.org/x/sync v0.0.0-20210220032951-036812b2e83c - golang.org/x/sys v0.0.0-20210426230700-d19ff857e887 // indirect + golang.org/x/sys v0.0.0-20210608053332-aa57babbf139 // indirect golang.org/x/tools v0.1.0 // indirect golang.org/x/xerrors v0.0.0-20200804184101-5ec99f83aff1 gopkg.in/ini.v1 v1.62.0 // indirect diff --git a/go.sum b/go.sum index b77a430a..74b1ed54 100644 --- a/go.sum +++ b/go.sum @@ -144,8 +144,9 @@ github.com/Shopify/toxiproxy v2.1.4+incompatible/go.mod h1:OXgGpZ6Cli1/URJOF1DMx github.com/StackExchange/wmi v0.0.0-20180116203802-5d049714c4a6/go.mod h1:3eOhrUMpNV+6aFIbp5/iudMxNCF27Vw2OZgy4xEx0Fg= github.com/Ullaakut/nmap/v2 v2.1.2-0.20210406060955-59a52fe80a4f h1:U5oMIt9/cuLbHnVgNddFoJ6ebcMx52Unq2+/Wglo1XU= github.com/Ullaakut/nmap/v2 v2.1.2-0.20210406060955-59a52fe80a4f/go.mod h1:bWPItdcCK9CkZcAaC7yS9N+t2zijtIjAWBcQtOzV9nM= -github.com/VividCortex/ewma v1.1.1 h1:MnEK4VOv6n0RSY4vtRe3h11qjxL3+t0B8yOL8iMXdcM= github.com/VividCortex/ewma v1.1.1/go.mod h1:2Tkkvm3sRDVXaiyucHiACn4cqf7DpdyLvmxzcbUokwA= +github.com/VividCortex/ewma v1.2.0 h1:f58SaIzcDXrSy3kWaHNvuJgJ3Nmz59Zji6XoJR/q1ow= +github.com/VividCortex/ewma v1.2.0/go.mod h1:nz4BbCtbLyFDeC9SUHbtcT5644juEuWfUAUnGx7j5l4= github.com/VividCortex/gohistogram v1.0.0/go.mod h1:Pf5mBqqDxYaXu3hDrrU+w6nw50o/4+TcAqDqk/vUH7g= github.com/afex/hystrix-go v0.0.0-20180502004556-fa1af6a1f4f5/go.mod h1:SkGFH1ia65gfNATL8TAiHDNxPzPdmEL5uirI2Uyuz6c= github.com/agext/levenshtein v1.2.1 h1:QmvMAjj2aEICytGiWzmxoE0x2KZvE0fvmqMOfy2tjT8= @@ -271,8 +272,9 @@ github.com/cheggaaa/pb v1.0.27 h1:wIkZHkNfC7R6GI5w7l/PdAdzXzlrbcI3p8OAlnkTsnc= github.com/cheggaaa/pb v1.0.27/go.mod h1:pQciLPpbU0oxA0h+VJYYLxO+XeDQb5pZijXscXHm81s= github.com/cheggaaa/pb/v3 v3.0.3/go.mod h1:Pp35CDuiEpHa/ZLGCtBbM6CBwMstv1bJlG884V+73Yc= 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/cheggaaa/pb/v3 v3.0.8 h1:bC8oemdChbke2FHIIGy9mn4DPJ2caZYQnfbRqwmdCoA= +github.com/cheggaaa/pb/v3 v3.0.8/go.mod h1:UICbiLec/XO6Hw6k+BHEtHeQFzzBH4i2/qk/ow1EJTA= 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= @@ -429,8 +431,9 @@ github.com/evanphx/json-patch v4.2.0+incompatible/go.mod h1:50XU6AFN0ol/bzJsmQLi github.com/evanphx/json-patch v4.9.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/fatih/color v1.12.0 h1:mRhaKNwANqRgUBGKmnI5ZxEk7QXmjQeCcuYFMX2bfcc= +github.com/fatih/color v1.12.0/go.mod h1:ELkj/draVOlAH/xkhN6mQ50Qd0MPOk5AAr3maGEBuJM= github.com/flynn/go-shlex v0.0.0-20150515145356-3f9db97f8568/go.mod h1:xEzjJPgXI435gkrCt3MPfRiAkVrwSbHsst4LCFVfpJc= github.com/fortytw2/leaktest v1.2.0/go.mod h1:jDsjWgpAGjm2CA7WthBh/CdZYEPF31XHquHwclZch5g= github.com/fortytw2/leaktest v1.3.0/go.mod h1:jDsjWgpAGjm2CA7WthBh/CdZYEPF31XHquHwclZch5g= @@ -484,8 +487,9 @@ github.com/go-redis/redis v6.15.9+incompatible/go.mod h1:NAIEuMOZ/fxfXJIrKDQDz8w 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/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-redis/redis/v8 v8.10.0 h1:OZwrQKuZqdJ4QIM8wn8rnuz868Li91xA3J2DEq+TPGA= +github.com/go-redis/redis/v8 v8.10.0/go.mod h1:vXLTvigok0VtUX0znvbcEW1SOt4OA9CU1ZfnOtKOaiM= github.com/go-restruct/restruct v0.0.0-20191227155143-5734170a48a1 h1:LoN2wx/aN8JPGebG+2DaUyk4M+xRcqJXfuIbs8AWHdE= github.com/go-restruct/restruct v0.0.0-20191227155143-5734170a48a1/go.mod h1:KqrpKpn4M8OLznErihXTGLlsXFGeLxHUrLRRI/1YjGk= github.com/go-sql-driver/mysql v1.4.0/go.mod h1:zAC/RDZ24gD3HViQzih4MyKcchzm+sOG5ZlKdlhCg5w= @@ -833,8 +837,8 @@ github.com/knqyf263/nested v0.0.1/go.mod h1:zwhsIhMkBg90DTOJQvxPkKIypEHPYkgWHs4g 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/konsorten/go-windows-terminal-sequences v1.0.3/go.mod h1:T0+1ngSBFLxvqU3pZ+m/2kptfBszLMUkC4ZK/EgS/cQ= -github.com/kotakanbe/go-cve-dictionary v0.5.12 h1:pJZsty83I/kSO5cmU24xWqeBYOrtiTSQ0c6T/6GVOhA= -github.com/kotakanbe/go-cve-dictionary v0.5.12/go.mod h1:E/CipfNDV31W39MH9QtgkA12JFBMe/3CELxXVvPRphQ= +github.com/kotakanbe/go-cve-dictionary v0.15.14 h1:9NY5p9on+zLy1qBJuVxSEzJdkwXyRiVzxFXmESxXthg= +github.com/kotakanbe/go-cve-dictionary v0.15.14/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.6-0.20210429000733-6db1754b1d87 h1:rkyT7u1aUfcQY6yelIaNkKww0iAg9XZx3tYV0L3iTE8= @@ -864,8 +868,8 @@ github.com/lib/pq v1.0.0/go.mod h1:5WUZQaWbwv1U+lTReE5YruASi9Al49XbQIvNi/34Woo= github.com/lib/pq v1.1.1/go.mod h1:5WUZQaWbwv1U+lTReE5YruASi9Al49XbQIvNi/34Woo= github.com/lib/pq v1.2.0/go.mod h1:5WUZQaWbwv1U+lTReE5YruASi9Al49XbQIvNi/34Woo= github.com/lib/pq v1.9.0/go.mod h1:AlVN5x4E4T544tWzH6hKfbfQvm3HdbOxrmggDNAPY9o= -github.com/lib/pq v1.10.1 h1:6VXZrLU0jHBYyAqrSPa+MgPfnSvTPuMgK+k0o5kVFWo= -github.com/lib/pq v1.10.1/go.mod h1:AlVN5x4E4T544tWzH6hKfbfQvm3HdbOxrmggDNAPY9o= +github.com/lib/pq v1.10.2 h1:AqzbZs4ZoCBp+GtejcpCpcxM3zlSMx29dXbUSeVtJb8= +github.com/lib/pq v1.10.2/go.mod h1:AlVN5x4E4T544tWzH6hKfbfQvm3HdbOxrmggDNAPY9o= github.com/lightstep/lightstep-tracer-common/golang/gogo v0.0.0-20190605223551-bc2310a04743/go.mod h1:qklhhLq1aX+mtWk9cPHPzaBjWImj5ULL6C7HFJtXQMM= github.com/lightstep/lightstep-tracer-go v0.18.1/go.mod h1:jlF1pusYV4pidLvZ+XD0UBX0ZE6WURAspgAczcDHrL4= github.com/logrusorgru/aurora v0.0.0-20181002194514-a7b3b318ed4e/go.mod h1:7rIyQOR62GCctdiQpZ/zOJlFyk6y+94wXzv6RNZgaR4= @@ -905,8 +909,9 @@ github.com/mattn/go-isatty v0.0.8/go.mod h1:Iq45c/XA43vh69/j3iqttzPXn0bhXyGjM0Hd github.com/mattn/go-isatty v0.0.9/go.mod h1:YNRxwqDuOph6SZLI9vUUz6OYw3QyUt7WiY2yME+cCiQ= github.com/mattn/go-isatty v0.0.10/go.mod h1:qgIWMr58cqv1PHHyhnkY9lrL7etaEgOFcMEpPG5Rm84= github.com/mattn/go-isatty v0.0.11/go.mod h1:PhnuNfih5lzO57/f3n+odYbM4JtupLOxQOAqxQCu2WE= -github.com/mattn/go-isatty v0.0.12 h1:wuysRhFDzyxgEmMf5xjvJ2M9dZoWAXNNr5LSBS7uHXY= github.com/mattn/go-isatty v0.0.12/go.mod h1:cbi8OIDigv2wuxKPP5vlRcQ1OAZbq2CE4Kysco4FUpU= +github.com/mattn/go-isatty v0.0.13 h1:qdl+GuBjcsKKDco5BsxPJlId98mSWNKqYA+Co0SC1yA= +github.com/mattn/go-isatty v0.0.13/go.mod h1:cbi8OIDigv2wuxKPP5vlRcQ1OAZbq2CE4Kysco4FUpU= github.com/mattn/go-jsonpointer v0.0.0-20180225143300-37667080efed/go.mod h1:SDJ4hurDYyQ9/7nc+eCYtXqdufgK4Cq9TJlwPklqEYA= github.com/mattn/go-runewidth v0.0.2/go.mod h1:LwmH8dsx7+W8Uxz3IHJYH5QSwggIsqBzpuz5H//U1FU= github.com/mattn/go-runewidth v0.0.4/go.mod h1:LwmH8dsx7+W8Uxz3IHJYH5QSwggIsqBzpuz5H//U1FU= @@ -914,8 +919,9 @@ github.com/mattn/go-runewidth v0.0.6/go.mod h1:H031xJmbD/WCDINGzjvQ9THkh0rPKHF+m github.com/mattn/go-runewidth v0.0.7/go.mod h1:H031xJmbD/WCDINGzjvQ9THkh0rPKHF+m2gUSrubnMI= github.com/mattn/go-runewidth v0.0.9/go.mod h1:H031xJmbD/WCDINGzjvQ9THkh0rPKHF+m2gUSrubnMI= github.com/mattn/go-runewidth v0.0.10/go.mod h1:RAqKPSqVFrSLVXbA8x7dzmKdmGzieGRCM46jaSJTDAk= -github.com/mattn/go-runewidth v0.0.12 h1:Y41i/hVW3Pgwr8gV+J23B9YEY0zxjptBuCWEaxmAOow= github.com/mattn/go-runewidth v0.0.12/go.mod h1:RAqKPSqVFrSLVXbA8x7dzmKdmGzieGRCM46jaSJTDAk= +github.com/mattn/go-runewidth v0.0.13 h1:lTGmDsbAYt5DmK6OnoV7EuIF1wEIFAcxld6ypU4OSgU= +github.com/mattn/go-runewidth v0.0.13/go.mod h1:Jdepj2loyihRzMpdS35Xk/zdY8IAYHsh153qUoGf23w= github.com/mattn/go-shellwords v1.0.10/go.mod h1:EZzvwXDESEeg03EKmM+RmDnNOPKG4lLtQsUlTZDWQ8Y= github.com/mattn/go-sqlite3 v1.9.0/go.mod h1:FPy6KqzDD04eiIsT53CuJW3U88zkxoIYsOqkbpncsNc= github.com/mattn/go-sqlite3 v1.14.0/go.mod h1:JIl7NbARA7phWnGvh0LKTyg7S9BA+6gx71ShQilpsus= @@ -1355,14 +1361,18 @@ go.opencensus.io v0.22.4/go.mod h1:yxeiOL68Rb0Xd1ddK5vPZ/oVn4vY4Ynel7k9FzqtOIw= go.opencensus.io v0.22.6/go.mod h1:XItmlyltB5F7CS4xOC1DcqMoFqwtC6OG2xF7mCv7P7E= go.opentelemetry.io/otel v0.14.0/go.mod h1:vH5xEuwy7Rts0GNtsCW3HYQoZDY+OmBJ6t1bFGGlxgw= 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 v0.20.0 h1:eaP0Fqu7SXHwvjiqDq83zImeehOHX8doTvU9AwXON8g= +go.opentelemetry.io/otel v0.20.0/go.mod h1:Y3ugLH2oa81t5QO+Lty+zXf8zC9L26ax4Nzoxm/dooo= 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/metric v0.20.0 h1:4kzhXFP+btKm4jwxpjIqjs41A7MakRFUS86bqLHTIw8= +go.opentelemetry.io/otel/metric v0.20.0/go.mod h1:598I5tYlH1vzBjn+BTuhzTCSb/9debfNp6R3s7Pr1eU= 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/oteltest v0.20.0 h1:HiITxCawalo5vQzdHfKeZurV8x7ljcqAgiWzF6Vaeaw= +go.opentelemetry.io/otel/oteltest v0.20.0/go.mod h1:L7bgKf9ZB7qCwT9Up7i9/pn0PWIa9FqQ2IQ8LoxiGnw= go.opentelemetry.io/otel/trace v0.19.0/go.mod h1:4IXiNextNOpPnRlI4ryK69mn5iC84bjBWZQA5DXz/qg= +go.opentelemetry.io/otel/trace v0.20.0 h1:1DL6EXUdcg95gukhuRRvLDO/4X5THh/5dIV52lqtnbw= +go.opentelemetry.io/otel/trace v0.20.0/go.mod h1:6GjCW8zgDjwGHGa6GkyeB8+/5vjT16gUEi0Nf1iBdgw= 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= @@ -1409,8 +1419,8 @@ golang.org/x/crypto v0.0.0-20201002170205-7f63de1d35b0/go.mod h1:LzIPMQfyMNhhGPh golang.org/x/crypto v0.0.0-20201117144127-c1f2f97bffc9/go.mod h1:jdWPYTVW3xRLrWPugEBEK3UY2ZEsg3UU495nc5E+M+I= golang.org/x/crypto v0.0.0-20201216223049-8b5274cf687f/go.mod h1:jdWPYTVW3xRLrWPugEBEK3UY2ZEsg3UU495nc5E+M+I= golang.org/x/crypto v0.0.0-20201221181555-eec23a3978ad/go.mod h1:jdWPYTVW3xRLrWPugEBEK3UY2ZEsg3UU495nc5E+M+I= -golang.org/x/crypto v0.0.0-20210421170649-83a5a9bb288b h1:7mWr3k41Qtv8XlltBkDkl8LoP3mpSgBW8BUoxtEdbXg= -golang.org/x/crypto v0.0.0-20210421170649-83a5a9bb288b/go.mod h1:T9bdIzuCu7OtxOm1hfPfRQxPLYneinmdGuTeoZ9dtd4= +golang.org/x/crypto v0.0.0-20210513164829-c07d793c2f9a h1:kr2P4QFmQr29mSLA43kwrOcgcReGTfbE9N577tCTuBc= +golang.org/x/crypto v0.0.0-20210513164829-c07d793c2f9a/go.mod h1:P+XmwS30IXTQdn5tA2iutPOUgjI07+tq3H3K9MVA1s8= 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= @@ -1505,8 +1515,8 @@ golang.org/x/net v0.0.0-20201224014010-6772e930b67b/go.mod h1:m0MpNAwzfU5UDzcl9v golang.org/x/net v0.0.0-20210119194325-5f4716e94777/go.mod h1:m0MpNAwzfU5UDzcl9v0D8zg8gWTRqZa9RBIspLL5mdg= golang.org/x/net v0.0.0-20210220033124-5f55cee0dc0d/go.mod h1:m0MpNAwzfU5UDzcl9v0D8zg8gWTRqZa9RBIspLL5mdg= golang.org/x/net v0.0.0-20210226172049-e18ecbb05110/go.mod h1:m0MpNAwzfU5UDzcl9v0D8zg8gWTRqZa9RBIspLL5mdg= -golang.org/x/net v0.0.0-20210428140749-89ef3d95e781 h1:DzZ89McO9/gWPsQXS/FVKAlG02ZjaQ6AlZRBimEYOd0= -golang.org/x/net v0.0.0-20210428140749-89ef3d95e781/go.mod h1:OJAsFXCWl8Ukc7SiCT/9KSuxbyM7479/AVlXFRxuMCk= +golang.org/x/net v0.0.0-20210610132358-84b48f89b13b h1:k+E048sYJHyVnsr1GDrRZWQ32D2C7lWs9JRc0bel53A= +golang.org/x/net v0.0.0-20210610132358-84b48f89b13b/go.mod h1:9nx3DQGgdP8bBQD5qxJ1jj9UTztislL4KSBs9R2vV5Y= golang.org/x/oauth2 v0.0.0-20180724155351-3d292e4d0cdc/go.mod h1:N/0e6XlmueqKjAGxoOufVs8QHGRruUQn6yWY3a++T0U= golang.org/x/oauth2 v0.0.0-20180821212333-d2e6202438be/go.mod h1:N/0e6XlmueqKjAGxoOufVs8QHGRruUQn6yWY3a++T0U= golang.org/x/oauth2 v0.0.0-20181017192945-9dcd33a902f4/go.mod h1:N/0e6XlmueqKjAGxoOufVs8QHGRruUQn6yWY3a++T0U= @@ -1622,9 +1632,10 @@ golang.org/x/sys v0.0.0-20210113181707-4bcb84eeeb78/go.mod h1:h1NjWce9XRLGQEsW7w golang.org/x/sys v0.0.0-20210119212857-b64e53b001e4/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs= golang.org/x/sys v0.0.0-20210124154548-22da62e12c0c/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs= golang.org/x/sys v0.0.0-20210220050731-9a76102bfb43/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs= +golang.org/x/sys v0.0.0-20210403161142-5e06dd20ab57/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs= golang.org/x/sys v0.0.0-20210423082822-04245dca01da/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs= -golang.org/x/sys v0.0.0-20210426230700-d19ff857e887 h1:dXfMednGJh/SUUFjTLsWJz3P+TQt9qnR11GgeI3vWKs= -golang.org/x/sys v0.0.0-20210426230700-d19ff857e887/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs= +golang.org/x/sys v0.0.0-20210608053332-aa57babbf139 h1:C+AwYEtBp/VQwoLntUmQ/yx3MS9vmZaKNdw5eOpoQe8= +golang.org/x/sys v0.0.0-20210608053332-aa57babbf139/go.mod h1:oPkhp1MJrh7nUepCBck5+mAzfO9JrbApNNgaTdGDITg= 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= diff --git a/oval/util.go b/oval/util.go index 78318b7c..6dc03e6b 100644 --- a/oval/util.go +++ b/oval/util.go @@ -306,7 +306,7 @@ func isOvalDefAffected(def ovalmodels.Definition, req request, family string, ru switch family { case constant.Oracle, constant.Amazon: if ovalPack.Arch == "" { - logging.Log.Infof("Arch is needed to detect Vulns for Amazon and Oracle Linux, but empty. You need refresh OVAL maybe. oval: %s, defID: %s", ovalPack, def.DefinitionID) + logging.Log.Infof("Arch is needed to detect Vulns for Amazon and Oracle Linux, but empty. You need refresh OVAL maybe. oval: %#v, defID: %s", ovalPack, def.DefinitionID) continue } } From 231c63cf621a5fd7beaf7efd37c3ef120115b114 Mon Sep 17 00:00:00 2001 From: Kota Kanbe Date: Wed, 16 Jun 2021 13:28:12 +0900 Subject: [PATCH 6/8] fix(libscan): support empty LibraryFixedIn (#1252) --- models/library.go | 16 +++++++--------- 1 file changed, 7 insertions(+), 9 deletions(-) diff --git a/models/library.go b/models/library.go index 05773963..a2e2e5b1 100644 --- a/models/library.go +++ b/models/library.go @@ -88,15 +88,13 @@ func (s LibraryScanner) getVulnDetail(tvuln types.DetectedVulnerability) (vinfo vinfo.CveID = tvuln.VulnerabilityID vinfo.CveContents = getCveContents(tvuln.VulnerabilityID, vul) - if tvuln.FixedVersion != "" { - vinfo.LibraryFixedIns = []LibraryFixedIn{ - { - Key: s.GetLibraryKey(), - Name: tvuln.PkgName, - FixedIn: tvuln.FixedVersion, - Path: s.Path, - }, - } + vinfo.LibraryFixedIns = []LibraryFixedIn{ + { + Key: s.GetLibraryKey(), + Name: tvuln.PkgName, + FixedIn: tvuln.FixedVersion, + Path: s.Path, + }, } return vinfo, nil } From d0559c7719755a5a4b51e2c86a41399e484bb960 Mon Sep 17 00:00:00 2001 From: Kota Kanbe Date: Wed, 16 Jun 2021 18:45:48 +0900 Subject: [PATCH 7/8] chore: update gost deps (#1253) --- go.mod | 20 ++--- go.sum | 240 ++++++++++++++++++++++++++++++++++++++++++++++++++------- 2 files changed, 223 insertions(+), 37 deletions(-) diff --git a/go.mod b/go.mod index 8ca168c3..a9798563 100644 --- a/go.mod +++ b/go.mod @@ -13,6 +13,7 @@ require ( 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/briandowns/spinner v1.15.0 // indirect github.com/cenkalti/backoff v2.2.1+incompatible github.com/cheggaaa/pb/v3 v3.0.8 // indirect github.com/d4l3k/messagediff v1.2.2-0.20190829033028-7e0a312ae40b @@ -20,25 +21,24 @@ require ( github.com/emersion/go-smtp v0.14.0 github.com/fatih/color v1.12.0 // indirect github.com/go-redis/redis/v8 v8.10.0 // indirect - github.com/go-sql-driver/mysql v1.6.0 // indirect github.com/google/subcommands v1.2.0 github.com/gosuri/uitable v0.0.4 github.com/hashicorp/go-uuid v1.0.2 github.com/hashicorp/go-version v1.3.0 github.com/howeyc/gopass v0.0.0-20190910152052-7cb4b85ec19c + github.com/jackc/pgproto3/v2 v2.1.0 // indirect github.com/jesseduffield/gocui v0.3.0 github.com/k0kubun/pp v3.0.1+incompatible github.com/knqyf263/go-apk-version v0.0.0-20200609155635-041fdbb8563f 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.10 + github.com/knqyf263/gost v0.1.11-0.20210615205949-22120a6441d8 github.com/kotakanbe/go-cve-dictionary v0.15.14 github.com/kotakanbe/go-pingscanner v0.1.0 github.com/kotakanbe/goval-dictionary v0.3.6-0.20210429000733-6db1754b1d87 github.com/kotakanbe/logrus-prefixed-formatter v0.0.0-20180123152602-928f7356cb96 github.com/lib/pq v1.10.2 // indirect - github.com/magiconair/properties v1.8.4 // indirect github.com/mattn/go-isatty v0.0.13 // indirect github.com/mattn/go-runewidth v0.0.13 // indirect github.com/mgutz/ansi v0.0.0-20200706080929-d51e80ef957d // indirect @@ -47,21 +47,21 @@ require ( github.com/nsf/termbox-go v0.0.0-20200418040025-38ba6e5628f1 // indirect 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.8.0 github.com/spf13/afero v1.6.0 github.com/spf13/cobra v1.1.3 + github.com/spf13/viper v1.8.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-20210513164829-c07d793c2f9a // indirect - golang.org/x/lint v0.0.0-20201208152925-83fdc39ff7b5 // indirect - golang.org/x/net v0.0.0-20210610132358-84b48f89b13b // indirect - golang.org/x/oauth2 v0.0.0-20210125201302-af13f521f196 + golang.org/x/net v0.0.0-20210614182718-04defd469f4e // indirect + golang.org/x/oauth2 v0.0.0-20210402161424-2e8d93401602 golang.org/x/sync v0.0.0-20210220032951-036812b2e83c - golang.org/x/sys v0.0.0-20210608053332-aa57babbf139 // indirect - golang.org/x/tools v0.1.0 // indirect + golang.org/x/sys v0.0.0-20210616045830-e2b7044e8c71 // indirect golang.org/x/xerrors v0.0.0-20200804184101-5ec99f83aff1 - gopkg.in/ini.v1 v1.62.0 // indirect + gorm.io/driver/mysql v1.1.0 // indirect + gorm.io/driver/postgres v1.1.0 // indirect + gorm.io/gorm v1.21.11 // indirect k8s.io/utils v0.0.0-20210111153108-fddb29f9d009 ) diff --git a/go.sum b/go.sum index 74b1ed54..be10e784 100644 --- a/go.sum +++ b/go.sum @@ -21,6 +21,11 @@ cloud.google.com/go v0.56.0/go.mod h1:jr7tqZxxKOVYizybht9+26Z/gUq7tiRzu+ACVAMbKV cloud.google.com/go v0.57.0/go.mod h1:oXiQ6Rzq3RAkkY7N6t3TcE6jE+CIBBbA36lwQ1JyzZs= cloud.google.com/go v0.62.0/go.mod h1:jmCYTdRCQuc1PHIIJ/maLInMho30T/Y0M4hTdTShOYc= cloud.google.com/go v0.65.0/go.mod h1:O5N8zS7uWy9vkA9vayVHs65eM1ubvY4h553ofrNHObY= +cloud.google.com/go v0.72.0/go.mod h1:M+5Vjvlc2wnp6tjzE102Dw08nGShTscUx2nZMufOKPI= +cloud.google.com/go v0.74.0/go.mod h1:VV1xSbzvo+9QJOxLDaJfTjx5e+MePCpCWwvftOeQmWk= +cloud.google.com/go v0.78.0/go.mod h1:QjdrLG0uq+YwhjoVOLsS1t7TW8fs36kLs4XO5R5ECHg= +cloud.google.com/go v0.79.0/go.mod h1:3bzgcEeQlzbuEAYu4mrWhKqWjmpprinYgKJLgKHnbb8= +cloud.google.com/go v0.81.0/go.mod h1:mk/AM35KwGk/Nm2YSeZbxXdrNK3KZOYHmLkOqC2V6E0= cloud.google.com/go/bigquery v1.0.1/go.mod h1:i/xbL2UlR5RvWAURpBYZTtm/cXjCha9lbfbpx4poX+o= cloud.google.com/go/bigquery v1.3.0/go.mod h1:PjpwJnslEMmckchkHFfq+HTD2DmtT67aNFKH1/VBDHE= cloud.google.com/go/bigquery v1.4.0/go.mod h1:S8dzgnTigyfTmLBfrtrhyYhwRxG72rYxvftPBK2Dvzc= @@ -115,6 +120,8 @@ github.com/Masterminds/semver v1.5.0 h1:H65muMkzWKEuNDnfl9d70GUjFniHKHRbFPGBuZ3Q github.com/Masterminds/semver v1.5.0/go.mod h1:MB6lktGJrhw8PrUyiEoblNEGEQ+RzHPF078ddwwvV3Y= github.com/Masterminds/semver/v3 v3.0.3/go.mod h1:VPu/7SZ7ePZ3QOrcuXROw5FAcLl4a0cBrbBpGY/8hQs= github.com/Masterminds/semver/v3 v3.1.0/go.mod h1:VPu/7SZ7ePZ3QOrcuXROw5FAcLl4a0cBrbBpGY/8hQs= +github.com/Masterminds/semver/v3 v3.1.1 h1:hLg3sBzpNErnxhQtUy/mmLR2I9foDujNK030IGemrRc= +github.com/Masterminds/semver/v3 v3.1.1/go.mod h1:VPu/7SZ7ePZ3QOrcuXROw5FAcLl4a0cBrbBpGY/8hQs= github.com/Masterminds/sprig v2.22.0+incompatible h1:z4yfnGrZ7netVz+0EDJ0Wi+5VZCSYp4Z0m2dk6cEM60= github.com/Masterminds/sprig v2.22.0+incompatible/go.mod h1:y6hNFY5UBTIWBxnzTeuNhlNS5hqE0NB0E6fgfo2Br3o= github.com/Microsoft/go-winio v0.4.14/go.mod h1:qXqCSQ3Xa7+6tgxaGTIe4Kpcdsi+P8jBhyzoq1bpyYA= @@ -165,6 +172,7 @@ github.com/andreyvit/diff v0.0.0-20170406064948-c7f18ee00883/go.mod h1:rCTlJbsFo 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/antihax/optional v1.0.0/go.mod h1:uupD/76wgC+ih3iEmQUL+0Ugr19nfwCT1kdvxnR2qWY= github.com/apache/thrift v0.12.0/go.mod h1:cp2SuWMxlEZw2r+iP2GNCdIi4C1qmUzdZFSVb+bacwQ= github.com/apache/thrift v0.13.0/go.mod h1:cp2SuWMxlEZw2r+iP2GNCdIi4C1qmUzdZFSVb+bacwQ= github.com/apache/thrift v0.14.0/go.mod h1:cp2SuWMxlEZw2r+iP2GNCdIi4C1qmUzdZFSVb+bacwQ= @@ -236,6 +244,7 @@ github.com/bgentry/go-netrc v0.0.0-20140422174119-9fd32a8b3d3d/go.mod h1:6QX/PXZ github.com/bgentry/speakeasy v0.1.0/go.mod h1:+zsyZBPWlz7T6j88CTgSN5bM796AkVf0kBD4zp0CCIs= github.com/bitly/go-simplejson v0.5.0/go.mod h1:cXHtHw4XUPsvGaxgjIAn8PhEWG9NfngEKAMDJEczWVA= github.com/bketelsen/crypt v0.0.3-0.20200106085610-5cbc8cc4026c/go.mod h1:MKsuJmJgSg28kpZDP6UIiPt0e0Oz0kqKNGyRaWEPv84= +github.com/bketelsen/crypt v0.0.4/go.mod h1:aI6NrJ0pMGgvZKL1iVgXLnfIFJtfV+bKCoqOes/6LfM= github.com/blakesmith/ar v0.0.0-20190502131153-809d4375e1fb/go.mod h1:PkYb9DJNAwrSvRx5DYA+gUcOIgTGVMNkfSCbZM8cWpI= github.com/blang/semver v3.1.0+incompatible/go.mod h1:kRBLl5iJ+tD4TcOOxsy/0fnwebNt5EWlYSAyrTnjyyk= github.com/blang/semver v3.5.0+incompatible/go.mod h1:kRBLl5iJ+tD4TcOOxsy/0fnwebNt5EWlYSAyrTnjyyk= @@ -247,8 +256,9 @@ github.com/bombsimon/wsl/v2 v2.2.0/go.mod h1:Azh8c3XGEJl9LyX0/sFC+CKMc7Ssgua0g+6 github.com/bombsimon/wsl/v3 v3.0.0/go.mod h1:st10JtZYLE4D5sC7b8xV4zTKZwAQjCH/Hy2Pm1FNZIc= github.com/bombsimon/wsl/v3 v3.1.0/go.mod h1:st10JtZYLE4D5sC7b8xV4zTKZwAQjCH/Hy2Pm1FNZIc= github.com/bradfitz/go-smtpd v0.0.0-20170404230938-deb6d6237625/go.mod h1:HYsPBTaaSFSlLx/70C2HPIMNZpVV8+vt/A+FMnYP11g= -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/briandowns/spinner v1.15.0 h1:L0jR0MYN7OAeMwpTzDZWIeqyDLXtTeJFxqoq+sL0VQM= +github.com/briandowns/spinner v1.15.0/go.mod h1:QOuQk7x+EaDASo80FEXwlwiA+j/PPIcX3FScO+3/ZPQ= github.com/bshuster-repo/logrus-logstash-hook v0.4.1/go.mod h1:zsTqEiSzDgAa/8GZR7E1qaXrhYNDKBYy5/dWPTIflbk= github.com/bugsnag/bugsnag-go v0.0.0-20141110184014-b1d153021fcd/go.mod h1:2oa8nejYd4cQ/b0hMIopN0lCRxU0bueqREvZLWFrtK8= github.com/bugsnag/osext v0.0.0-20130617224835-0dd3f918b21b/go.mod h1:obH5gd0BsqsP2LwDJ9aOkm/6J86V6lyAXCoQWGw3K50= @@ -284,7 +294,9 @@ github.com/cilium/ebpf v0.2.0/go.mod h1:To2CFviqOWL/M0gIMsvSMlqe7em/l1ALkX1PyjrX github.com/clbanning/x2j v0.0.0-20191024224557-825249438eec/go.mod h1:jMjuTZXRI4dUb/I5gc9Hdhagfvm9+RyrPryS/auMzxE= github.com/client9/misspell v0.3.4/go.mod h1:qj6jICC3Q7zFZvVWo7KLAzC3yx5G7kyvSDkc90ppPyw= github.com/cncf/udpa/go v0.0.0-20191209042840-269d4d468f6f/go.mod h1:M8M6+tZqaGXZJjfX53e64911xZQV5JYwmTeXPW+k8Sc= +github.com/cncf/udpa/go v0.0.0-20200629203442-efcf912fb354/go.mod h1:WmhPx2Nbnhtbo57+VJT5O0JRkEi1Wbu0z5j0R8u5Hbk= github.com/cncf/udpa/go v0.0.0-20201120205902-5459f2c99403/go.mod h1:WmhPx2Nbnhtbo57+VJT5O0JRkEi1Wbu0z5j0R8u5Hbk= +github.com/cockroachdb/apd v1.1.0 h1:3LFP3629v+1aKXU5Q37mxmRxX/pIu1nijXydLShEq5I= github.com/cockroachdb/apd v1.1.0/go.mod h1:8Sl8LxpKi29FqWXR16WEFZRNSz3SoPzUzeMeY4+DwBQ= github.com/cockroachdb/apd/v2 v2.0.1/go.mod h1:DDxRlzC2lo3/vSlmSoS7JkqbbrARPuFOGr0B9pvN3Gw= github.com/cockroachdb/datadriven v0.0.0-20190809214429-80d97fb3cbaa/go.mod h1:zn76sxSg3SzpJ0PPJaLDCu+Bu0Lg3sKTORVIj19EIF8= @@ -334,8 +346,10 @@ github.com/coreos/go-semver v0.3.0/go.mod h1:nnelYz7RCh+5ahJtPPxZlU+153eP4D4r3Ee github.com/coreos/go-systemd v0.0.0-20180511133405-39ca1b05acc7/go.mod h1:F5haX7vjVVG0kc13fIWeqUViNPyEJxv/OmvnBo0Yme4= github.com/coreos/go-systemd v0.0.0-20181012123002-c6f51f82210d/go.mod h1:F5haX7vjVVG0kc13fIWeqUViNPyEJxv/OmvnBo0Yme4= github.com/coreos/go-systemd v0.0.0-20190321100706-95778dfbb74e/go.mod h1:F5haX7vjVVG0kc13fIWeqUViNPyEJxv/OmvnBo0Yme4= +github.com/coreos/go-systemd v0.0.0-20190719114852-fd7a80b32e1f/go.mod h1:F5haX7vjVVG0kc13fIWeqUViNPyEJxv/OmvnBo0Yme4= github.com/coreos/go-systemd/v22 v22.0.0/go.mod h1:xO0FLkIi5MaZafQlIrOotqXZ90ih+1atmu1JpKERPPk= github.com/coreos/go-systemd/v22 v22.1.0/go.mod h1:xO0FLkIi5MaZafQlIrOotqXZ90ih+1atmu1JpKERPPk= +github.com/coreos/go-systemd/v22 v22.3.2/go.mod h1:Y58oyj3AT4RCenI/lSvhwexgC+NSVTIJ3seZv2GcEnc= github.com/coreos/pkg v0.0.0-20160727233714-3ac0863d7acf/go.mod h1:E3G3o1h8I7cfcXa63jLwjI0eiQQMgzzUDFVpN/nH/eA= github.com/coreos/pkg v0.0.0-20180108230652-97fdf19511ea/go.mod h1:E3G3o1h8I7cfcXa63jLwjI0eiQQMgzzUDFVpN/nH/eA= github.com/coreos/pkg v0.0.0-20180928190104-399ea9e2e55f/go.mod h1:E3G3o1h8I7cfcXa63jLwjI0eiQQMgzzUDFVpN/nH/eA= @@ -423,7 +437,9 @@ github.com/envoyproxy/go-control-plane v0.6.9/go.mod h1:SBwIajubJHhxtWwsL9s8ss4s 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= github.com/envoyproxy/go-control-plane v0.9.4/go.mod h1:6rpuAdCZL397s3pYoYcLgu1mIlRU8Am5FuJP05cCM98= +github.com/envoyproxy/go-control-plane v0.9.7/go.mod h1:cwu0lG7PUMfa9snN8LXBig5ynNVH9qI8YYLbd1fK2po= github.com/envoyproxy/go-control-plane v0.9.9-0.20201210154907-fd9021fe5dad/go.mod h1:cXg6YxExXjJnVBQHBLXeUAgxn2UodCpnH306RInaBQk= +github.com/envoyproxy/go-control-plane v0.9.9-0.20210217033140-668b12f5399d/go.mod h1:cXg6YxExXjJnVBQHBLXeUAgxn2UodCpnH306RInaBQk= 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= @@ -522,9 +538,12 @@ github.com/goccy/go-yaml v1.8.2 h1:gDYrSN12XK/wQTFjxWIgcIqjNCV/Zb5V09M7cq+dbCs= github.com/goccy/go-yaml v1.8.2/go.mod h1:wS4gNoLalDSJxo/SpngzPQ2BN4uuZVLCmbM4S3vd4+Y= github.com/godbus/dbus v0.0.0-20190422162347-ade71ed3457e/go.mod h1:bBOAhwG1umN6/6ZUMtDFBMQR8jRg9O75tm9K00oMsK4= github.com/godbus/dbus/v5 v5.0.3/go.mod h1:xhWf0FNVPg57R7Z0UbKHbJfkEywrmjJnf7w5xrFpKfA= +github.com/godbus/dbus/v5 v5.0.4/go.mod h1:xhWf0FNVPg57R7Z0UbKHbJfkEywrmjJnf7w5xrFpKfA= github.com/godoctor/godoctor v0.0.0-20181123222458-69df17f3a6f6/go.mod h1:+tyhT8jBF8E0XvdlSXOSL7Iko7DlNiongHq3q+wcsPs= github.com/gofrs/flock v0.0.0-20190320160742-5135e617513b/go.mod h1:F1TvTiK9OcQqauNUHlbJvyl9Qa1QvF/gOUDKA14jxHU= github.com/gofrs/flock v0.7.3/go.mod h1:F1TvTiK9OcQqauNUHlbJvyl9Qa1QvF/gOUDKA14jxHU= +github.com/gofrs/uuid v3.2.0+incompatible h1:y12jRkkFxsd7GpqdSZ+/KCs/fJbqpEXSGd4+jfEaewE= +github.com/gofrs/uuid v3.2.0+incompatible/go.mod h1:b2aQJv3Z4Fp6yNu3cdSllBxTCLRxnplIgP/c0N/04lM= github.com/gogo/googleapis v1.1.0/go.mod h1:gf4bu3Q80BeJ6H1S1vYPm8/ELATdvryBaNFGgqEef3s= github.com/gogo/googleapis v1.2.0/go.mod h1:Njal3psf3qN6dwBtQfUmBZh2ybovJ0tlu3o/AC7HYjU= github.com/gogo/googleapis v1.3.2/go.mod h1:5YRNX2z1oM5gXdAkurHa942MDgEJyk02w4OecKY87+c= @@ -551,6 +570,7 @@ github.com/golang/mock v1.4.0/go.mod h1:UOMv5ysSaYNkG+OFQykRIcU/QvvxJf3p21QfJ2Bt github.com/golang/mock v1.4.1/go.mod h1:UOMv5ysSaYNkG+OFQykRIcU/QvvxJf3p21QfJ2Bt3cw= github.com/golang/mock v1.4.3/go.mod h1:UOMv5ysSaYNkG+OFQykRIcU/QvvxJf3p21QfJ2Bt3cw= github.com/golang/mock v1.4.4/go.mod h1:l3mdAwkq5BuhzHwde/uurv3sEJeZMXNpwsxVWU71h+4= +github.com/golang/mock v1.5.0/go.mod h1:CWnOUgYIOo4TcNZ0wHX3YZCqsaM1I1Jvs6v3mP3KVu8= github.com/golang/protobuf v0.0.0-20161109072736-4bd1920723d7/go.mod h1:6lQm79b+lXiMfvg/cZm0SGofjICqVBUtrP5yJMmIC1U= github.com/golang/protobuf v1.1.0/go.mod h1:6lQm79b+lXiMfvg/cZm0SGofjICqVBUtrP5yJMmIC1U= github.com/golang/protobuf v1.2.0/go.mod h1:6lQm79b+lXiMfvg/cZm0SGofjICqVBUtrP5yJMmIC1U= @@ -566,8 +586,11 @@ github.com/golang/protobuf v1.4.0-rc.4.0.20200313231945-b860323f09d0/go.mod h1:W github.com/golang/protobuf v1.4.0/go.mod h1:jodUvKwWbYaEsadDk5Fwe5c77LiNKVO9IDvqG2KuDX0= github.com/golang/protobuf v1.4.1/go.mod h1:U8fpvMrcmy5pZrNK1lt4xCsGvpyWQ/VVv6QDs8UjoX8= github.com/golang/protobuf v1.4.2/go.mod h1:oDoupMAO8OvCJWAcko0GGGIgR6R6ocIYbsSw735rRwI= -github.com/golang/protobuf v1.4.3 h1:JjCZWpVbqXDqFVmTfYWEVTMIYrL/NPdPSCHPJ0T/raM= github.com/golang/protobuf v1.4.3/go.mod h1:oDoupMAO8OvCJWAcko0GGGIgR6R6ocIYbsSw735rRwI= +github.com/golang/protobuf v1.5.0/go.mod h1:FsONVRAS9T7sI+LIUmWTfcYkHO4aIWwzhcaSAoJOfIk= +github.com/golang/protobuf v1.5.1/go.mod h1:DopwsBzvsk0Fs44TXzsVbJyPhcCPeIwnvohx4u74HPM= +github.com/golang/protobuf v1.5.2 h1:ROPKBNFfQgOUMifHyP+KYbvpjbdoFNs+aK7DXlji0Tw= +github.com/golang/protobuf v1.5.2/go.mod h1:XVQd3VNwM+JqD3oG2Ue2ip4fOMUkwXdXDdiuN0vRsmY= github.com/golang/snappy v0.0.0-20180518054509-2e65f85255db/go.mod h1:/XxbfmMg8lxefKM7IXC3fBNl/7bRcc72aCRzEWrmP2Q= github.com/golangci/check v0.0.0-20180506172741-cfe4005ccda2/go.mod h1:k9Qvh+8juN+UKMCS/3jFtGICgW8O96FVaZsaxdzDkR4= github.com/golangci/dupl v0.0.0-20180902072040-3e9179ac440a/go.mod h1:ryS0uhF+x9jgbj/N71xsEqODy9BN81/GonCZiOzirOk= @@ -624,6 +647,7 @@ github.com/google/gofuzz v1.1.0/go.mod h1:dBl0BpW6vV/+mYPU4Po3pmUjxk6FQPldtuIdl/ github.com/google/martian v2.1.0+incompatible/go.mod h1:9I4somxYTbIHy5NJKHRl3wXiIaQGbYVAs8BPL6v8lEs= github.com/google/martian v2.1.1-0.20190517191504-25dcb96d9e51+incompatible/go.mod h1:9I4somxYTbIHy5NJKHRl3wXiIaQGbYVAs8BPL6v8lEs= github.com/google/martian/v3 v3.0.0/go.mod h1:y5Zk1BBys9G+gd6Jrk0W3cC1+ELVxBWuIGO+w/tUAp0= +github.com/google/martian/v3 v3.1.0/go.mod h1:y5Zk1BBys9G+gd6Jrk0W3cC1+ELVxBWuIGO+w/tUAp0= github.com/google/pprof v0.0.0-20181206194817-3ea8567a2e57/go.mod h1:zfwlbNMJ+OItoe0UupaVj+oy1omPYYDuagoSzA8v9mc= github.com/google/pprof v0.0.0-20190515194954-54271f7e092f/go.mod h1:zfwlbNMJ+OItoe0UupaVj+oy1omPYYDuagoSzA8v9mc= github.com/google/pprof v0.0.0-20191218002539-d4f498aebedc/go.mod h1:ZgVRPoUq/hfqzAqh7sHMqb3I9Rq5C59dIz2SbBwJ4eM= @@ -631,6 +655,10 @@ github.com/google/pprof v0.0.0-20200212024743-f11f1df84d12/go.mod h1:ZgVRPoUq/hf github.com/google/pprof v0.0.0-20200229191704-1ebb73c60ed3/go.mod h1:ZgVRPoUq/hfqzAqh7sHMqb3I9Rq5C59dIz2SbBwJ4eM= github.com/google/pprof v0.0.0-20200430221834-fc25d7d30c6d/go.mod h1:ZgVRPoUq/hfqzAqh7sHMqb3I9Rq5C59dIz2SbBwJ4eM= github.com/google/pprof v0.0.0-20200708004538-1a94d8640e99/go.mod h1:ZgVRPoUq/hfqzAqh7sHMqb3I9Rq5C59dIz2SbBwJ4eM= +github.com/google/pprof v0.0.0-20201023163331-3e6fc7fc9c4c/go.mod h1:kpwsk12EmLew5upagYY7GY0pfYCcupk39gWOCRROcvE= +github.com/google/pprof v0.0.0-20201203190320-1bf35d6f28c2/go.mod h1:kpwsk12EmLew5upagYY7GY0pfYCcupk39gWOCRROcvE= +github.com/google/pprof v0.0.0-20210122040257-d980be63207e/go.mod h1:kpwsk12EmLew5upagYY7GY0pfYCcupk39gWOCRROcvE= +github.com/google/pprof v0.0.0-20210226084205-cbba55b83ad5/go.mod h1:kpwsk12EmLew5upagYY7GY0pfYCcupk39gWOCRROcvE= github.com/google/renameio v0.1.0/go.mod h1:KWCgfxg9yswjAJkECMjeO8J8rahYeXnNhOm40UhjYkI= github.com/google/rpmpack v0.0.0-20191226140753-aa36bfddb3a0/go.mod h1:RaTPr0KUf2K7fnZYLNDrr8rxAamWs3iNywJLtQ2AzBg= github.com/google/shlex v0.0.0-20191202100458-e7afc7fbc510/go.mod h1:pupxD2MaaD3pAXIBCelhxNneeOaAeabZDe5s4K6zSpQ= @@ -691,6 +719,7 @@ github.com/grpc-ecosystem/grpc-gateway v1.8.5/go.mod h1:vNeuVxBJEsws4ogUvrchl83t github.com/grpc-ecosystem/grpc-gateway v1.9.0/go.mod h1:vNeuVxBJEsws4ogUvrchl83t/GYV9WGTSLVdBhOQFDY= github.com/grpc-ecosystem/grpc-gateway v1.9.2/go.mod h1:vNeuVxBJEsws4ogUvrchl83t/GYV9WGTSLVdBhOQFDY= github.com/grpc-ecosystem/grpc-gateway v1.9.5/go.mod h1:vNeuVxBJEsws4ogUvrchl83t/GYV9WGTSLVdBhOQFDY= +github.com/grpc-ecosystem/grpc-gateway v1.16.0/go.mod h1:BDjrQk3hbvj6Nolgz8mAMFbcEtjT1g+wF4CSlocrBnw= github.com/grpc-ecosystem/grpc-opentracing v0.0.0-20180507213350-8e809c8a8645/go.mod h1:6iZfnjpejD4L/4DwD7NryNaJyCQdzwWwH2MWhCA90Kw= github.com/hanwen/go-fuse v1.0.0/go.mod h1:unqXarDXqzAk0rt98O2tVndEPIpUgLD9+rwFisZH3Ok= github.com/hanwen/go-fuse/v2 v2.0.3/go.mod h1:0EQM6aH2ctVpvZ6a+onrQ/vaykxh2GH7hy3e13vzTUY= @@ -752,6 +781,7 @@ github.com/huandu/xstrings v1.3.2 h1:L18LIDzqlW6xN2rEkpdV8+oL/IXWJ1APd+vsdYy4Wdw github.com/huandu/xstrings v1.3.2/go.mod h1:y5/lhBue+AyNmUVz9RLU9xbLR0o4KIIExikq4ovT0aE= github.com/hudl/fargo v1.3.0/go.mod h1:y3CKSmjA+wD2gak7sUSXTAoopbhU08POFhmITJgmKTg= github.com/ianlancetaylor/demangle v0.0.0-20181102032728-5e5cf60278f6/go.mod h1:aSSvb/t6k1mPoxDqO4vJh6VOCGPwU4O0C2/Eqndh1Sc= +github.com/ianlancetaylor/demangle v0.0.0-20200824232613-28f6c0f3b639/go.mod h1:aSSvb/t6k1mPoxDqO4vJh6VOCGPwU4O0C2/Eqndh1Sc= github.com/imdario/mergo v0.3.5/go.mod h1:2EnlNZ0deacrJVfApfmtdGgDfMuh/nq6Ok1EcJh5FfA= github.com/imdario/mergo v0.3.8/go.mod h1:2EnlNZ0deacrJVfApfmtdGgDfMuh/nq6Ok1EcJh5FfA= github.com/imdario/mergo v0.3.9 h1:UauaLniWCFHWd+Jp9oCEkTBj8VO/9DKg3PV3VCNMDIg= @@ -763,6 +793,63 @@ github.com/inconshreveable/mousetrap v1.0.0 h1:Z8tu5sraLXCXIcARxBp/8cbvlwVa7Z1NH github.com/inconshreveable/mousetrap v1.0.0/go.mod h1:PxqpIevigyE2G7u3NXJIT2ANytuPF1OarO4DADm73n8= github.com/influxdata/influxdb1-client v0.0.0-20191209144304-8bf82d3c094d/go.mod h1:qj24IKcXYK6Iy9ceXlo3Tc+vtHo9lIhSX5JddghvEPo= github.com/ishidawataru/sctp v0.0.0-20191218070446-00ab2ac2db07/go.mod h1:co9pwDoBCm1kGxawmb4sPq0cSIOOWNPT4KnHotMP1Zg= +github.com/jackc/chunkreader v1.0.0 h1:4s39bBR8ByfqH+DKm8rQA3E1LHZWB9XWcrz8fqaZbe0= +github.com/jackc/chunkreader v1.0.0/go.mod h1:RT6O25fNZIuasFJRyZ4R/Y2BbhasbmZXF9QQ7T3kePo= +github.com/jackc/chunkreader/v2 v2.0.0/go.mod h1:odVSm741yZoC3dpHEUXIqA9tQRhFrgOHwnPIn9lDKlk= +github.com/jackc/chunkreader/v2 v2.0.1 h1:i+RDz65UE+mmpjTfyz0MoVTnzeYxroil2G82ki7MGG8= +github.com/jackc/chunkreader/v2 v2.0.1/go.mod h1:odVSm741yZoC3dpHEUXIqA9tQRhFrgOHwnPIn9lDKlk= +github.com/jackc/pgconn v0.0.0-20190420214824-7e0022ef6ba3/go.mod h1:jkELnwuX+w9qN5YIfX0fl88Ehu4XC3keFuOJJk9pcnA= +github.com/jackc/pgconn v0.0.0-20190824142844-760dd75542eb/go.mod h1:lLjNuW/+OfW9/pnVKPazfWOgNfH2aPem8YQ7ilXGvJE= +github.com/jackc/pgconn v0.0.0-20190831204454-2fabfa3c18b7/go.mod h1:ZJKsE/KZfsUgOEh9hBm+xYTstcNHg7UPMVJqRfQxq4s= +github.com/jackc/pgconn v1.4.0/go.mod h1:Y2O3ZDF0q4mMacyWV3AstPJpeHXWGEetiFttmq5lahk= +github.com/jackc/pgconn v1.5.0/go.mod h1:QeD3lBfpTFe8WUnPZWN5KY/mB8FGMIYRdd8P8Jr0fAI= +github.com/jackc/pgconn v1.5.1-0.20200601181101-fa742c524853/go.mod h1:QeD3lBfpTFe8WUnPZWN5KY/mB8FGMIYRdd8P8Jr0fAI= +github.com/jackc/pgconn v1.8.0/go.mod h1:1C2Pb36bGIP9QHGBYCjnyhqu7Rv3sGshaQUvmfGIB/o= +github.com/jackc/pgconn v1.8.1 h1:ySBX7Q87vOMqKU2bbmKbUvtYhauDFclYbNDYIE1/h6s= +github.com/jackc/pgconn v1.8.1/go.mod h1:JV6m6b6jhjdmzchES0drzCcYcAHS1OPD5xu3OZ/lE2g= +github.com/jackc/pgio v1.0.0 h1:g12B9UwVnzGhueNavwioyEEpAmqMe1E/BN9ES+8ovkE= +github.com/jackc/pgio v1.0.0/go.mod h1:oP+2QK2wFfUWgr+gxjoBH9KGBb31Eio69xUb0w5bYf8= +github.com/jackc/pgmock v0.0.0-20190831213851-13a1b77aafa2 h1:JVX6jT/XfzNqIjye4717ITLaNwV9mWbJx0dLCpcRzdA= +github.com/jackc/pgmock v0.0.0-20190831213851-13a1b77aafa2/go.mod h1:fGZlG77KXmcq05nJLRkk0+p82V8B8Dw8KN2/V9c/OAE= +github.com/jackc/pgpassfile v1.0.0 h1:/6Hmqy13Ss2zCq62VdNG8tM1wchn8zjSGOBJ6icpsIM= +github.com/jackc/pgpassfile v1.0.0/go.mod h1:CEx0iS5ambNFdcRtxPj5JhEz+xB6uRky5eyVu/W2HEg= +github.com/jackc/pgproto3 v1.1.0 h1:FYYE4yRw+AgI8wXIinMlNjBbp/UitDJwfj5LqqewP1A= +github.com/jackc/pgproto3 v1.1.0/go.mod h1:eR5FA3leWg7p9aeAqi37XOTgTIbkABlvcPB3E5rlc78= +github.com/jackc/pgproto3/v2 v2.0.0-alpha1.0.20190420180111-c116219b62db/go.mod h1:bhq50y+xrl9n5mRYyCBFKkpRVTLYJVWeCc+mEAI3yXA= +github.com/jackc/pgproto3/v2 v2.0.0-alpha1.0.20190609003834-432c2951c711/go.mod h1:uH0AWtUmuShn0bcesswc4aBTWGvw0cAxIJp+6OB//Wg= +github.com/jackc/pgproto3/v2 v2.0.0-rc3/go.mod h1:ryONWYqW6dqSg1Lw6vXNMXoBJhpzvWKnT95C46ckYeM= +github.com/jackc/pgproto3/v2 v2.0.0-rc3.0.20190831210041-4c03ce451f29/go.mod h1:ryONWYqW6dqSg1Lw6vXNMXoBJhpzvWKnT95C46ckYeM= +github.com/jackc/pgproto3/v2 v2.0.1/go.mod h1:WfJCnwN3HIg9Ish/j3sgWXnAfK8A9Y0bwXYU5xKaEdA= +github.com/jackc/pgproto3/v2 v2.0.6/go.mod h1:WfJCnwN3HIg9Ish/j3sgWXnAfK8A9Y0bwXYU5xKaEdA= +github.com/jackc/pgproto3/v2 v2.0.7/go.mod h1:WfJCnwN3HIg9Ish/j3sgWXnAfK8A9Y0bwXYU5xKaEdA= +github.com/jackc/pgproto3/v2 v2.1.0 h1:h2yg3kjIyAGSZKDijYn1/gXHlYLCwl9ZjEh2PU0yVxE= +github.com/jackc/pgproto3/v2 v2.1.0/go.mod h1:WfJCnwN3HIg9Ish/j3sgWXnAfK8A9Y0bwXYU5xKaEdA= +github.com/jackc/pgservicefile v0.0.0-20200307190119-3430c5407db8/go.mod h1:vsD4gTJCa9TptPL8sPkXrLZ+hDuNrZCnj29CQpr4X1E= +github.com/jackc/pgservicefile v0.0.0-20200714003250-2b9c44734f2b h1:C8S2+VttkHFdOOCXJe+YGfa4vHYwlt4Zx+IVXQ97jYg= +github.com/jackc/pgservicefile v0.0.0-20200714003250-2b9c44734f2b/go.mod h1:vsD4gTJCa9TptPL8sPkXrLZ+hDuNrZCnj29CQpr4X1E= +github.com/jackc/pgtype v0.0.0-20190421001408-4ed0de4755e0/go.mod h1:hdSHsc1V01CGwFsrv11mJRHWJ6aifDLfdV3aVjFF0zg= +github.com/jackc/pgtype v0.0.0-20190824184912-ab885b375b90/go.mod h1:KcahbBH1nCMSo2DXpzsoWOAfFkdEtEJpPbVLq8eE+mc= +github.com/jackc/pgtype v0.0.0-20190828014616-a8802b16cc59/go.mod h1:MWlu30kVJrUS8lot6TQqcg7mtthZ9T0EoIBFiJcmcyw= +github.com/jackc/pgtype v1.2.0/go.mod h1:5m2OfMh1wTK7x+Fk952IDmI4nw3nPrvtQdM0ZT4WpC0= +github.com/jackc/pgtype v1.3.1-0.20200510190516-8cd94a14c75a/go.mod h1:vaogEUkALtxZMCH411K+tKzNpwzCKU+AnPzBKZ+I+Po= +github.com/jackc/pgtype v1.3.1-0.20200606141011-f6355165a91c/go.mod h1:cvk9Bgu/VzJ9/lxTO5R5sf80p0DiucVtN7ZxvaC4GmQ= +github.com/jackc/pgtype v1.6.2/go.mod h1:JCULISAZBFGrHaOXIIFiyfzW5VY0GRitRr8NeJsrdig= +github.com/jackc/pgtype v1.7.0 h1:6f4kVsW01QftE38ufBYxKciO6gyioXSC0ABIRLcZrGs= +github.com/jackc/pgtype v1.7.0/go.mod h1:ZnHF+rMePVqDKaOfJVI4Q8IVvAQMryDlDkZnKOI75BE= +github.com/jackc/pgx/v4 v4.0.0-20190420224344-cc3461e65d96/go.mod h1:mdxmSJJuR08CZQyj1PVQBHy9XOp5p8/SHH6a0psbY9Y= +github.com/jackc/pgx/v4 v4.0.0-20190421002000-1b8f0016e912/go.mod h1:no/Y67Jkk/9WuGR0JG/JseM9irFbnEPbuWV2EELPNuM= +github.com/jackc/pgx/v4 v4.0.0-pre1.0.20190824185557-6972a5742186/go.mod h1:X+GQnOEnf1dqHGpw7JmHqHc1NxDoalibchSk9/RWuDc= +github.com/jackc/pgx/v4 v4.5.0/go.mod h1:EpAKPLdnTorwmPUUsqrPxy5fphV18j9q3wrfRXgo+kA= +github.com/jackc/pgx/v4 v4.6.1-0.20200510190926-94ba730bb1e9/go.mod h1:t3/cdRQl6fOLDxqtlyhe9UWgfIi9R8+8v8GKV5TRA/o= +github.com/jackc/pgx/v4 v4.6.1-0.20200606145419-4e5062306904/go.mod h1:ZDaNWkt9sW1JMiNn0kdYBaLelIhw7Pg4qd+Vk6tw7Hg= +github.com/jackc/pgx/v4 v4.10.1/go.mod h1:QlrWebbs3kqEZPHCTGyxecvzG6tvIsYu+A5b1raylkA= +github.com/jackc/pgx/v4 v4.11.0 h1:J86tSWd3Y7nKjwT/43xZBvpi04keQWx8gNC2YkdJhZI= +github.com/jackc/pgx/v4 v4.11.0/go.mod h1:i62xJgdrtVDsnL3U8ekyrQXEwGNTRoG7/8r+CIdYfcc= +github.com/jackc/puddle v0.0.0-20190413234325-e4ced69a3a2b/go.mod h1:m4B5Dj62Y0fbyuIc15OsIqK0+JU8nkqQjsgx7dvjSWk= +github.com/jackc/puddle v0.0.0-20190608224051-11cab39313c9/go.mod h1:m4B5Dj62Y0fbyuIc15OsIqK0+JU8nkqQjsgx7dvjSWk= +github.com/jackc/puddle v1.1.0/go.mod h1:m4B5Dj62Y0fbyuIc15OsIqK0+JU8nkqQjsgx7dvjSWk= +github.com/jackc/puddle v1.1.1/go.mod h1:m4B5Dj62Y0fbyuIc15OsIqK0+JU8nkqQjsgx7dvjSWk= +github.com/jackc/puddle v1.1.3/go.mod h1:m4B5Dj62Y0fbyuIc15OsIqK0+JU8nkqQjsgx7dvjSWk= github.com/jaguilar/vt100 v0.0.0-20150826170717-2703a27b14ea/go.mod h1:QMdK4dGB3YhEW2BmA1wgGpPYI3HZy/5gD705PXKUVSg= github.com/jarcoal/httpmock v1.0.5/go.mod h1:ATjnClrvW/3tijVmpL/va5Z3aAyGvqU3gCT8nX0Txik= github.com/jbenet/go-context v0.0.0-20150711004518-d14ea06fba99/go.mod h1:1lJo3i6rXxKeerYnT8Nvf0QmHCRC1n8sfWVwXF2Frvo= @@ -776,8 +863,10 @@ github.com/jinzhu/gorm v1.9.16 h1:+IyIjPEABKRpsu/F8OvDPy9fyQlgsg2luMV2ZIH5i5o= github.com/jinzhu/gorm v1.9.16/go.mod h1:G3LB3wezTOWM2ITLzPxEXgSkOXAntiLHS7UdBefADcs= github.com/jinzhu/inflection v1.0.0 h1:K317FqzuhWc8YvSVlFMCCUb36O/S9MCKRDI7QkRKD/E= github.com/jinzhu/inflection v1.0.0/go.mod h1:h+uFLlag+Qp1Va5pdKtLDYj+kHp5pxUVkryuEj+Srlc= -github.com/jinzhu/now v1.0.1 h1:HjfetcXq097iXP0uoPCdnM4Efp5/9MsM0/M+XOTeR3M= github.com/jinzhu/now v1.0.1/go.mod h1:d3SSVoowX0Lcu0IBviAWJpolVfI5UJVZZ7cO71lE/z8= +github.com/jinzhu/now v1.1.1/go.mod h1:d3SSVoowX0Lcu0IBviAWJpolVfI5UJVZZ7cO71lE/z8= +github.com/jinzhu/now v1.1.2 h1:eVKgfIdy9b6zbWBMgFpfDPoAMifwSZagU9HmEU6zgiI= +github.com/jinzhu/now v1.1.2/go.mod h1:d3SSVoowX0Lcu0IBviAWJpolVfI5UJVZZ7cO71lE/z8= github.com/jirfag/go-printf-func-name v0.0.0-20191110105641-45db9963cdd3/go.mod h1:HEWGJkRDzjJY2sqdDwxccsGicWEf9BQOZsq2tV+xzM0= github.com/jirfag/go-printf-func-name v0.0.0-20200119135958-7558a9eaa5af/go.mod h1:HEWGJkRDzjJY2sqdDwxccsGicWEf9BQOZsq2tV+xzM0= github.com/jmespath/go-jmespath v0.0.0-20160202185014-0b12d6b521d8/go.mod h1:Nht3zPeWKUH0NzdCt2Blrr5ys8VGpn0CEB0cQHVjt7k= @@ -800,6 +889,7 @@ github.com/json-iterator/go v1.1.6/go.mod h1:+SdeFBvtyEkXs7REEP0seUULqWtbJapLOCV github.com/json-iterator/go v1.1.7/go.mod h1:KdQUCv79m/52Kvf8AW2vK1V8akMuk1QjK/uOdHXbAo4= github.com/json-iterator/go v1.1.8/go.mod h1:KdQUCv79m/52Kvf8AW2vK1V8akMuk1QjK/uOdHXbAo4= github.com/json-iterator/go v1.1.10/go.mod h1:KdQUCv79m/52Kvf8AW2vK1V8akMuk1QjK/uOdHXbAo4= +github.com/json-iterator/go v1.1.11/go.mod h1:KdQUCv79m/52Kvf8AW2vK1V8akMuk1QjK/uOdHXbAo4= github.com/jstemmer/go-junit-report v0.0.0-20190106144839-af01ea7f8024/go.mod h1:6v2b51hI/fHJwM22ozAgKL4VKDeJcHhJFhtBdhmNjmU= github.com/jstemmer/go-junit-report v0.9.1/go.mod h1:Brl9GWCQeLvo8nXZwPNNblvFj/XSXhF0NWZEnDohbsk= github.com/jtolds/gls v4.20.0+incompatible h1:xdiiI2gbIgH/gLH7ADydsJ1uDOEzR8yvV7C0MuV77Wo= @@ -830,8 +920,8 @@ github.com/knqyf263/go-rpm-version v0.0.0-20170716094938-74609b86c936 h1:HDjRqot github.com/knqyf263/go-rpm-version v0.0.0-20170716094938-74609b86c936/go.mod h1:i4sF0l1fFnY1aiw08QQSwVAFxHEm311Me3WsU/X7nL0= github.com/knqyf263/go-rpmdb v0.0.0-20201215100354-a9e3110d8ee1 h1:sRDvjjWoHLWAxtPXBKYRJp8Ot4ugxYE/ZyADl3jzc1g= github.com/knqyf263/go-rpmdb v0.0.0-20201215100354-a9e3110d8ee1/go.mod h1:RDPNeIkU5NWXtt0OMEoILyxwUC/DyXeRtK295wpqSi0= -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/gost v0.1.11-0.20210615205949-22120a6441d8 h1:kpIwDZ5QHns0kmfACWlrDUPP/KFMIec/3pn8uVy5v/A= +github.com/knqyf263/gost v0.1.11-0.20210615205949-22120a6441d8/go.mod h1:VgcvOkxaqKbf695UyQrNFKMPQgWChNlGUnJbw8kmET8= github.com/knqyf263/nested v0.0.1 h1:Sv26CegUMhjt19zqbBKntjwESdxe5hxVPSk0+AKjdUc= 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= @@ -865,8 +955,10 @@ github.com/labstack/gommon v0.3.0 h1:JEeO0bvc78PKdyHxloTKiF8BD5iGrH8T6MSeGvSgob0 github.com/labstack/gommon v0.3.0/go.mod h1:MULnywXg0yavhxWKc+lOruYdAhDwPK9wf0OL7NoOu+k= github.com/leodido/go-urn v1.2.0/go.mod h1:+8+nEpDfqqsY+g338gtMEUOtuK+4dEMhiQEgxpxOKII= github.com/lib/pq v1.0.0/go.mod h1:5WUZQaWbwv1U+lTReE5YruASi9Al49XbQIvNi/34Woo= +github.com/lib/pq v1.1.0/go.mod h1:5WUZQaWbwv1U+lTReE5YruASi9Al49XbQIvNi/34Woo= github.com/lib/pq v1.1.1/go.mod h1:5WUZQaWbwv1U+lTReE5YruASi9Al49XbQIvNi/34Woo= github.com/lib/pq v1.2.0/go.mod h1:5WUZQaWbwv1U+lTReE5YruASi9Al49XbQIvNi/34Woo= +github.com/lib/pq v1.3.0/go.mod h1:5WUZQaWbwv1U+lTReE5YruASi9Al49XbQIvNi/34Woo= github.com/lib/pq v1.9.0/go.mod h1:AlVN5x4E4T544tWzH6hKfbfQvm3HdbOxrmggDNAPY9o= github.com/lib/pq v1.10.2 h1:AqzbZs4ZoCBp+GtejcpCpcxM3zlSMx29dXbUSeVtJb8= github.com/lib/pq v1.10.2/go.mod h1:AlVN5x4E4T544tWzH6hKfbfQvm3HdbOxrmggDNAPY9o= @@ -880,8 +972,8 @@ github.com/magefile/mage v1.11.0 h1:C/55Ywp9BpgVVclD3lRnSYCwXTYxmSppIgLeDYlNuls= github.com/magefile/mage v1.11.0/go.mod h1:z5UZb/iS3GoOSn0JgWuiw7dxlurVYTu+/jHXqQg881A= github.com/magiconair/properties v1.8.0/go.mod h1:PppfXfuXeibc/6YijjN8zIbojt8czPbwD3XqdrwzmxQ= 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/magiconair/properties v1.8.5 h1:b6kJs+EmPFMYGkow9GiUyCyOvIwYetYJ3fSaWak/Gls= +github.com/magiconair/properties v1.8.5/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= @@ -905,6 +997,7 @@ github.com/mattn/go-ieproxy v0.0.1/go.mod h1:pYabZ6IHcRpFh7vIaLfK7rdcWgFEb3SFJ6/ github.com/mattn/go-isatty v0.0.3/go.mod h1:M+lRXTBqGeGNdLjl/ufCoiOlB5xdOkqRJdNxMWT7Zi4= github.com/mattn/go-isatty v0.0.4/go.mod h1:M+lRXTBqGeGNdLjl/ufCoiOlB5xdOkqRJdNxMWT7Zi4= github.com/mattn/go-isatty v0.0.5/go.mod h1:Iq45c/XA43vh69/j3iqttzPXn0bhXyGjM0Hdxcsrc5s= +github.com/mattn/go-isatty v0.0.7/go.mod h1:Iq45c/XA43vh69/j3iqttzPXn0bhXyGjM0Hdxcsrc5s= github.com/mattn/go-isatty v0.0.8/go.mod h1:Iq45c/XA43vh69/j3iqttzPXn0bhXyGjM0Hdxcsrc5s= github.com/mattn/go-isatty v0.0.9/go.mod h1:YNRxwqDuOph6SZLI9vUUz6OYw3QyUt7WiY2yME+cCiQ= github.com/mattn/go-isatty v0.0.10/go.mod h1:qgIWMr58cqv1PHHyhnkY9lrL7etaEgOFcMEpPG5Rm84= @@ -925,7 +1018,9 @@ github.com/mattn/go-runewidth v0.0.13/go.mod h1:Jdepj2loyihRzMpdS35Xk/zdY8IAYHsh github.com/mattn/go-shellwords v1.0.10/go.mod h1:EZzvwXDESEeg03EKmM+RmDnNOPKG4lLtQsUlTZDWQ8Y= github.com/mattn/go-sqlite3 v1.9.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.5/go.mod h1:WVKg1VTActs4Qso6iwGbiFih2UIHo0ENGwNd0Lj+XmI= github.com/mattn/go-sqlite3 v1.14.6/go.mod h1:NyWgC/yNuGj7Q9rpYnZvas74GogHl5/Z4A/KQRfk6bU= +github.com/mattn/go-sqlite3 v1.14.7/go.mod h1:NyWgC/yNuGj7Q9rpYnZvas74GogHl5/Z4A/KQRfk6bU= github.com/mattn/go-sqlite3 v2.0.1+incompatible/go.mod h1:FPy6KqzDD04eiIsT53CuJW3U88zkxoIYsOqkbpncsNc= github.com/mattn/go-sqlite3 v2.0.3+incompatible h1:gXHsfypPkaMZrKbD5209QV9jbUTJKjyR5WD3HYQSd+U= github.com/mattn/go-sqlite3 v2.0.3+incompatible/go.mod h1:FPy6KqzDD04eiIsT53CuJW3U88zkxoIYsOqkbpncsNc= @@ -1075,8 +1170,8 @@ github.com/pborman/uuid v1.2.0/go.mod h1:X/NO0urCmaxf9VXbdlT7C2Yzkj2IKimNn4k+gtP github.com/pelletier/go-buffruneio v0.2.0/go.mod h1:JkE26KsDizTr40EUHkXVtNPvgGtbSNq5BcowyYOWdKo= github.com/pelletier/go-toml v1.2.0/go.mod h1:5z9KED0ma1S8pY6P1sdut58dfprrGBbd/94hg7ilaic= github.com/pelletier/go-toml v1.8.0/go.mod h1:D6yutnOGMveHEPV7VQOuvI/gXY61bv+9bAOTRnLElKs= -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/pelletier/go-toml v1.9.3 h1:zeC5b1GviRUyKYd6OJPvBU/mcVDVoL1OhT17FCt5dSQ= +github.com/pelletier/go-toml v1.9.3/go.mod h1:u1nR/EPcESfeI/szUZKdtJ0xRNbUoANCkoOuaOx1Y+c= github.com/performancecopilot/speed v3.0.0+incompatible/go.mod h1:/CLtqpZ5gBg1M9iaPbIdPPGyKcA8hKdoy6hAWba7Yac= 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= @@ -1145,11 +1240,14 @@ github.com/rivo/uniseg v0.2.0 h1:S1pD9weZBuJdFmowNwbpi7BJ8TNftyUImj/0WQi72jY= github.com/rivo/uniseg v0.2.0/go.mod h1:J6wj4VEh+S6ZtnVlnTBMWIodfgj8LQOQFoIToxlJtxc= github.com/rogpeppe/fastuuid v0.0.0-20150106093220-6724a57986af/go.mod h1:XWv6SoW27p1b0cqNHllgS5HIMJraePCO15w5zCzIWYg= github.com/rogpeppe/fastuuid v1.1.0/go.mod h1:jVj6XXZzXRy/MSR5jhDC/2q6DgLz+nrA6LYCDYWNEvQ= +github.com/rogpeppe/fastuuid v1.2.0/go.mod h1:jVj6XXZzXRy/MSR5jhDC/2q6DgLz+nrA6LYCDYWNEvQ= github.com/rogpeppe/go-charset v0.0.0-20180617210344-2471d30d28b4/go.mod h1:qgYeAmZ5ZIpBWTGllZSQnw97Dj+woV0toclVaRGI8pc= github.com/rogpeppe/go-internal v1.3.0/go.mod h1:M8bDsm7K2OlrFYOpmOWEs/qY81heoFRclV5y23lUDJ4= github.com/rogpeppe/go-internal v1.5.2/go.mod h1:xXDCJY+GAPziupqXw64V24skbSoqbTEfhy4qGm1nDQc= github.com/rogpeppe/testscript v1.1.0/go.mod h1:lzMlnW8LS56mcdJoQYkrlzqOoTFCOemzt5LusJ93bDM= github.com/rs/xid v1.2.1/go.mod h1:+uKXf+4Djp6Md1KODXJxgGQPKngRmWyn10oCKFzNHOQ= +github.com/rs/zerolog v1.13.0/go.mod h1:YbFCdg8HfsridGWAh22vktObvhZbQsZXe4/zB0OKkWU= +github.com/rs/zerolog v1.15.0/go.mod h1:xYTKnLHcpfU2225ny5qZjxnj9NvkumZYjJHlAThCjNc= github.com/rubiojr/go-vhd v0.0.0-20160810183302-0bfd3b39853c/go.mod h1:DM5xW0nvfNNm2uytzsvhI3OnX8uzaRAg8UX/CnDqbto= github.com/russross/blackfriday v1.5.2/go.mod h1:JO/DiYxRf+HjHt06OyowR9PTA263kcR/rfWxYHBV53g= github.com/russross/blackfriday/v2 v2.0.1/go.mod h1:+Rmxgy9KzJVeS9/2gXHxylqXiyQDYRxCVz55jmeOWTM= @@ -1173,6 +1271,9 @@ github.com/sergi/go-diff v1.1.0/go.mod h1:STckp+ISIX8hZLjrqAeVduY0gWCT9IjLuqbuNX github.com/serialx/hashring v0.0.0-20190422032157-8b2912629002/go.mod h1:/yeG0My1xr/u+HZrFQ1tOQQQQrOawfyMUH13ai5brBc= github.com/shirou/gopsutil v0.0.0-20190901111213-e4ec7b275ada/go.mod h1:WWnYX4lzhCH5h/3YBfyVA3VbLYjlMZZAQcW9ojMexNc= github.com/shirou/w32 v0.0.0-20160930032740-bb4de0191aa4/go.mod h1:qsXQc7+bwAM3Q1u/4XEfrquwF8Lw7D7y5cD8CuHnfIc= +github.com/shopspring/decimal v0.0.0-20180709203117-cd690d0c9e24/go.mod h1:M+9NzErvs504Cn4c5DxATwIqPbtswREoFCre64PpcG4= +github.com/shopspring/decimal v0.0.0-20200227202807-02e2044944cc h1:jUIKcSPO9MoMJBbEoyE/RJoE8vz7Mb8AjvifMMwSyvY= +github.com/shopspring/decimal v0.0.0-20200227202807-02e2044944cc/go.mod h1:DKyhrW/HYNuLGql+MJL6WCR6knT2jwCFRcu2hWCYk4o= github.com/shteou/go-ignore v0.3.0/go.mod h1:+MO315cnlHh5qKX1xSa41OlWzOuAecXCNwcKUcbL+f0= github.com/shurcooL/go v0.0.0-20180423040247-9e1955d9fb6e/go.mod h1:TDJrrUr11Vxrven61rcy3hJMUqaf/CLWYhHNPmT14Lk= github.com/shurcooL/go-goon v0.0.0-20170922171312-37c2f522c041/go.mod h1:N5mDOmsrJOB+vfqUK+7DmDyjhSLIIBnXo9lvZJj3MWQ= @@ -1230,8 +1331,9 @@ github.com/spf13/viper v1.3.2/go.mod h1:ZiWeW+zYFKm7srdB9IoDzzZXaJaI5eL9QjNiN/DM github.com/spf13/viper v1.4.0/go.mod h1:PTJ7Z/lr49W6bUbkmS1V3by4uWynFiR9p7+dSq/yZzE= github.com/spf13/viper v1.6.1/go.mod h1:t3iDnF5Jlj76alVNuyFBk5oUMCvsrkbvZK0WQdfDi5k= github.com/spf13/viper v1.7.0/go.mod h1:8WkrPz2fc9jxqZNCJI/76HCieCp4Q8HaLFoCha5qpdg= -github.com/spf13/viper v1.7.1 h1:pM5oEahlgWv/WnHXpgbKz7iLIxRf65tye2Ci+XFK5sk= github.com/spf13/viper v1.7.1/go.mod h1:8WkrPz2fc9jxqZNCJI/76HCieCp4Q8HaLFoCha5qpdg= +github.com/spf13/viper v1.8.0 h1:QRwDgoG8xX+kp69di68D+YYTCWfYEckbZRfUlEIAal0= +github.com/spf13/viper v1.8.0/go.mod h1:o0Pch8wJ9BVSWGQMbra6iw0oQ5oktSIBaujf1rJH9Ns= github.com/src-d/gcfg v1.4.0/go.mod h1:p/UMsR43ujA89BJY9duynAwIpvqEujIH/jFlfL7jWoI= github.com/streadway/amqp v0.0.0-20190404075320-75d898a42a94/go.mod h1:AZpEONHx3DKn8O/DFsRAY58/XVQiIPMTMB1SddzLXVw= github.com/streadway/amqp v0.0.0-20190827072141-edfb9018d271/go.mod h1:AZpEONHx3DKn8O/DFsRAY58/XVQiIPMTMB1SddzLXVw= @@ -1335,6 +1437,7 @@ github.com/yuin/goldmark v1.1.25/go.mod h1:3hX8gzYuyVAZsxl0MRgGTJEmQBFcNTphYh9de 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/goldmark v1.3.5/go.mod h1:mwnBkeHKe2W/ZEtQ+71ViKU8L12m81fl3OWwC1Zlc8k= github.com/yuin/gopher-lua v0.0.0-20191220021717-ab39c6098bdb/go.mod h1:gqRgreBUhTSL0GeU64rtZ3Uq3wtjOa/TB2YfrtkCbVQ= github.com/yvasiyarov/go-metrics v0.0.0-20140926110328-57bccd1ccd43/go.mod h1:aX5oPXxHm3bOH+xeAttToC8pqch2ScQN/JoXYupl6xs= github.com/yvasiyarov/gorelic v0.0.0-20141212073537-a9bba5b9ab50/go.mod h1:NUSPSUX/bi6SeDMUh6brw0nXpxHnc96TguQh0+r/ssA= @@ -1342,11 +1445,15 @@ github.com/yvasiyarov/newrelic_platform_go v0.0.0-20140908184405-b21fdbd4370f/go github.com/zclconf/go-cty v1.2.0/go.mod h1:hOPWgoHbaTUnI5k4D2ld+GRpFJSCe6bCM7m1q/N4PQ8= github.com/zclconf/go-cty v1.6.1 h1:wHtZ+LSSQVwUSb+XIJ5E9hgAQxyWATZsAWT+ESJ9dQ0= github.com/zclconf/go-cty v1.6.1/go.mod h1:VDR4+I79ubFBGm1uJac1226K5yANQFHeauxPBoP54+o= +github.com/zenazn/goji v0.9.0/go.mod h1:7S9M489iMyHBNxwZnk9/EHS098H4/F6TATF2mIxtB1Q= 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.etcd.io/etcd/api/v3 v3.5.0/go.mod h1:cbVKeC6lCfl7j/8jBhAK6aIYO9XOjdptoxU/nLQcPvs= +go.etcd.io/etcd/client/pkg/v3 v3.5.0/go.mod h1:IJHfcCEKxYu1Os13ZdwCwIUTUVGYTSAM3YSwc9/Ac1g= +go.etcd.io/etcd/client/v2 v2.305.0/go.mod h1:h9puh54ZTgAKtEbut2oe9P4L/oqKCVB6xsXlzd7alYQ= go.opencensus.io v0.15.0/go.mod h1:UffZAU+4sDEINUGP/B7UfBBkq4fqLu9zXAX7ke6CHW0= go.opencensus.io v0.18.0/go.mod h1:vKdFvxhtzZ9onBp9VKHK8z/sRpBMnKAsufL7wlDrCOA= go.opencensus.io v0.19.1/go.mod h1:gug0GbSHa8Pafr0d2urOSgoXHZ6x/RUlaiT0d9pqb4A= @@ -1358,7 +1465,9 @@ 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.opencensus.io v0.22.5/go.mod h1:5pWMHQbX5EPX2/62yrJeAkowc+lfs/XD7Uxpq3pI6kk= go.opencensus.io v0.22.6/go.mod h1:XItmlyltB5F7CS4xOC1DcqMoFqwtC6OG2xF7mCv7P7E= +go.opencensus.io v0.23.0/go.mod h1:XItmlyltB5F7CS4xOC1DcqMoFqwtC6OG2xF7mCv7P7E= go.opentelemetry.io/otel v0.14.0/go.mod h1:vH5xEuwy7Rts0GNtsCW3HYQoZDY+OmBJ6t1bFGGlxgw= go.opentelemetry.io/otel v0.16.0/go.mod h1:e4GKElweB8W2gWUqbghw0B8t5MCTccc9212eNHnOHwA= go.opentelemetry.io/otel v0.19.0/go.mod h1:j9bF567N9EfomkSidSfmMwIwIBuP37AMAIzVW85OxSg= @@ -1376,18 +1485,21 @@ go.opentelemetry.io/otel/trace v0.20.0/go.mod h1:6GjCW8zgDjwGHGa6GkyeB8+/5vjT16g 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= -go.uber.org/atomic v1.6.0 h1:Ezj3JGmsOnG1MoRWQkPBsKLe9DwWD9QeXzTRzzldNVk= go.uber.org/atomic v1.6.0/go.mod h1:sABNBOSYdrvTF6hTgEIbc7YasKWGhgEQZyfxyTvoXHQ= +go.uber.org/atomic v1.7.0 h1:ADUqmZGgLDDfbSL9ZmPxKTybcoEYHgpYfELNoN+7hsw= +go.uber.org/atomic v1.7.0/go.mod h1:fEN4uk6kAWBTFdckzkM89CLk9XfWZrxpCo0nPH17wJc= go.uber.org/multierr v1.1.0/go.mod h1:wR5kodmAFQ0UK8QlbwjlSNy0Z68gJhDJUG5sjR94q/0= go.uber.org/multierr v1.3.0/go.mod h1:VgVr7evmIr6uPjLBxg28wmKNXyqE9akIJ5XnfpiKl+4= -go.uber.org/multierr v1.5.0 h1:KCa4XfM8CWFCpxXRGok+Q0SS/0XBhMDbHHGABQLvD2A= go.uber.org/multierr v1.5.0/go.mod h1:FeouvMocqHpRaaGuG9EjoKcStLC43Zu/fmqdUMPcKYU= -go.uber.org/tools v0.0.0-20190618225709-2cfd321de3ee h1:0mgffUl7nfd+FpvXMVz4IDEaUSmT1ysygQC7qYo7sG4= +go.uber.org/multierr v1.6.0 h1:y6IPFStTAIT5Ytl7/XYmHvzXQ7S3g/IeZW9hyZ5thw4= +go.uber.org/multierr v1.6.0/go.mod h1:cdWPpRnG4AhwMwsgIHip0KRBQjJy5kYEpYjJxpXp9iU= 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/go.mod h1:zwrFLgMcdUuIBviXEYEH1YKNaOBnKXsx2IPda5bBwHM= -go.uber.org/zap v1.16.0 h1:uFRZXykJGK9lLY4HtgSw44DnIcAM+kRBP7x5m+NpAOM= go.uber.org/zap v1.16.0/go.mod h1:MA8QOfq0BHJwdXa996Y4dYkAqRKB8/1K1QMMZVaNZjQ= +go.uber.org/zap v1.17.0 h1:MTjgFu6ZLKvY6Pvaqk97GlxNBuMpV4Hy/3P6tRGlI2U= +go.uber.org/zap v1.17.0/go.mod h1:MXVU+bhUf/A7Xi2HNOnopQOrmycQ5Ih87HtOu4q5SSo= go4.org v0.0.0-20180809161055-417644f6feb5/go.mod h1:MkTOUMDaeVYJUOUsaDXIhWPZYa1yOyC1qaOBpL57BhE= gocloud.dev v0.19.0/go.mod h1:SmKwiR8YwIMMJvQBKLsC3fHNyMwXLw3PMDO+VVteJMI= golang.org/x/build v0.0.0-20190314133821-5284462c4bec/go.mod h1:atTaCNAy0f16Ah5aV1gMSwgiKVHwu/JncqDpuRr7lS4= @@ -1400,12 +1512,14 @@ golang.org/x/crypto v0.0.0-20190211182817-74369b46fc67/go.mod h1:6SG95UA2DQfeDnf 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-20190411191339-88737f569e3a/go.mod h1:WFFai1msRO1wXaEeE5yQxYXgSfI8pQAWXbQop6sCtWE= golang.org/x/crypto v0.0.0-20190426145343-a29dc8fdc734/go.mod h1:yigFU9vqHzYiE8UmvKecakEJjdnWj3jj499lnFckfCI= 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-20190911031432-227b76d455e7/go.mod h1:yigFU9vqHzYiE8UmvKecakEJjdnWj3jj499lnFckfCI= golang.org/x/crypto v0.0.0-20191002192127-34f69633bfdc/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= @@ -1413,12 +1527,14 @@ golang.org/x/crypto v0.0.0-20191206172530-e9b2fee46413/go.mod h1:LzIPMQfyMNhhGPh golang.org/x/crypto v0.0.0-20200128174031-69ecbb4d6d5d/go.mod h1:LzIPMQfyMNhhGPhUkYOs5KpL4U8rLKemX1yGLhDgUto= golang.org/x/crypto v0.0.0-20200220183623-bac4c82f6975/go.mod h1:LzIPMQfyMNhhGPhUkYOs5KpL4U8rLKemX1yGLhDgUto= golang.org/x/crypto v0.0.0-20200302210943-78000ba7a073/go.mod h1:LzIPMQfyMNhhGPhUkYOs5KpL4U8rLKemX1yGLhDgUto= +golang.org/x/crypto v0.0.0-20200323165209-0ec3e9974c59/go.mod h1:LzIPMQfyMNhhGPhUkYOs5KpL4U8rLKemX1yGLhDgUto= golang.org/x/crypto v0.0.0-20200622213623-75b288015ac9/go.mod h1:LzIPMQfyMNhhGPhUkYOs5KpL4U8rLKemX1yGLhDgUto= 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-20201117144127-c1f2f97bffc9/go.mod h1:jdWPYTVW3xRLrWPugEBEK3UY2ZEsg3UU495nc5E+M+I= golang.org/x/crypto v0.0.0-20201216223049-8b5274cf687f/go.mod h1:jdWPYTVW3xRLrWPugEBEK3UY2ZEsg3UU495nc5E+M+I= golang.org/x/crypto v0.0.0-20201221181555-eec23a3978ad/go.mod h1:jdWPYTVW3xRLrWPugEBEK3UY2ZEsg3UU495nc5E+M+I= +golang.org/x/crypto v0.0.0-20210322153248-0c34fe9e7dc2/go.mod h1:T9bdIzuCu7OtxOm1hfPfRQxPLYneinmdGuTeoZ9dtd4= +golang.org/x/crypto v0.0.0-20210421170649-83a5a9bb288b/go.mod h1:T9bdIzuCu7OtxOm1hfPfRQxPLYneinmdGuTeoZ9dtd4= golang.org/x/crypto v0.0.0-20210513164829-c07d793c2f9a h1:kr2P4QFmQr29mSLA43kwrOcgcReGTfbE9N577tCTuBc= golang.org/x/crypto v0.0.0-20210513164829-c07d793c2f9a/go.mod h1:P+XmwS30IXTQdn5tA2iutPOUgjI07+tq3H3K9MVA1s8= golang.org/x/exp v0.0.0-20190121172915-509febef88a4/go.mod h1:CJ0aWSM057203Lf6IL+f9T1iT9GByDxfZKAQTCR3kQA= @@ -1447,8 +1563,8 @@ golang.org/x/lint v0.0.0-20190930215403-16217165b5de/go.mod h1:6SW0HCj/g11FgYtHl golang.org/x/lint v0.0.0-20191125180803-fdd1cda4f05f/go.mod h1:5qLYkcX4OjUUV8bRuDixDT3tpyyb+LUpUlRWLxfhWrs= golang.org/x/lint v0.0.0-20200130185559-910be7a94367/go.mod h1:3xt1FjdF8hUf6vQPIChWIBhFzV8gjjsPE/fR3IyQdNY= golang.org/x/lint v0.0.0-20200302205851-738671d3881b/go.mod h1:3xt1FjdF8hUf6vQPIChWIBhFzV8gjjsPE/fR3IyQdNY= -golang.org/x/lint v0.0.0-20201208152925-83fdc39ff7b5 h1:2M3HP5CCK1Si9FQhwnzYhXdG6DXeebvUHFpre8QvbyI= golang.org/x/lint v0.0.0-20201208152925-83fdc39ff7b5/go.mod h1:3xt1FjdF8hUf6vQPIChWIBhFzV8gjjsPE/fR3IyQdNY= +golang.org/x/lint v0.0.0-20210508222113-6edffad5e616/go.mod h1:3xt1FjdF8hUf6vQPIChWIBhFzV8gjjsPE/fR3IyQdNY= golang.org/x/mobile v0.0.0-20190312151609-d3739f865fa6/go.mod h1:z+o9i4GpDbdi3rU15maQ/Ox0txvL9dWGYEHz965HBQE= golang.org/x/mobile v0.0.0-20190719004257-d2bd2a29d028/go.mod h1:E/iHnbuqvinMTCcRqshq8CkpyQDoeVncDDYHnLhea+o= golang.org/x/mod v0.0.0-20190513183733-4bf6d317e70e/go.mod h1:mXi4GBBbnImb6dmsKGUJ2LatrhH/nqhxcFungHvyanc= @@ -1456,8 +1572,11 @@ golang.org/x/mod v0.1.0/go.mod h1:0QHyrYULN0/3qlju5TqG8bIK38QM8yzMo5ekMj3DlcY= golang.org/x/mod v0.1.1-0.20191105210325-c90efee705ee/go.mod h1:QqPTAvyqsEbceGzBzNggFXnrqF1CaUcvgkdR5Ot7KZg= golang.org/x/mod v0.1.1-0.20191107180719-034126e5016b/go.mod h1:QqPTAvyqsEbceGzBzNggFXnrqF1CaUcvgkdR5Ot7KZg= golang.org/x/mod v0.2.0/go.mod h1:s0Qsj1ACt9ePp/hMypM3fl4fZqREWJwdYDEqhRiZZUA= -golang.org/x/mod v0.3.0 h1:RM4zey1++hCTbCVQfnWeKs9/IEsaBLA8vTkd0WVtmH4= golang.org/x/mod v0.3.0/go.mod h1:s0Qsj1ACt9ePp/hMypM3fl4fZqREWJwdYDEqhRiZZUA= +golang.org/x/mod v0.4.0/go.mod h1:s0Qsj1ACt9ePp/hMypM3fl4fZqREWJwdYDEqhRiZZUA= +golang.org/x/mod v0.4.1/go.mod h1:s0Qsj1ACt9ePp/hMypM3fl4fZqREWJwdYDEqhRiZZUA= +golang.org/x/mod v0.4.2 h1:Gz96sIWK3OalVv/I/qNygP42zyoKp3xptRVCWRFEBvo= +golang.org/x/mod v0.4.2/go.mod h1:s0Qsj1ACt9ePp/hMypM3fl4fZqREWJwdYDEqhRiZZUA= golang.org/x/net v0.0.0-20170114055629-f2499483f923/go.mod h1:mL1N/T3taQHkDXs73rZJwtUhF3w3ftmwwsq0BUmARs4= golang.org/x/net v0.0.0-20180218175443-cbe0f9307d01/go.mod h1:mL1N/T3taQHkDXs73rZJwtUhF3w3ftmwwsq0BUmARs4= golang.org/x/net v0.0.0-20180724234803-3673e40ba225/go.mod h1:mL1N/T3taQHkDXs73rZJwtUhF3w3ftmwwsq0BUmARs4= @@ -1509,14 +1628,18 @@ golang.org/x/net v0.0.0-20200822124328-c89045814202/go.mod h1:/O7V0waA8r7cgGh81R golang.org/x/net v0.0.0-20200927032502-5d4f70055728/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-20201031054903-ff519b6c9102/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-20201209123823-ac852fbbde11/go.mod h1:m0MpNAwzfU5UDzcl9v0D8zg8gWTRqZa9RBIspLL5mdg= 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-20210220033124-5f55cee0dc0d/go.mod h1:m0MpNAwzfU5UDzcl9v0D8zg8gWTRqZa9RBIspLL5mdg= golang.org/x/net v0.0.0-20210226172049-e18ecbb05110/go.mod h1:m0MpNAwzfU5UDzcl9v0D8zg8gWTRqZa9RBIspLL5mdg= -golang.org/x/net v0.0.0-20210610132358-84b48f89b13b h1:k+E048sYJHyVnsr1GDrRZWQ32D2C7lWs9JRc0bel53A= -golang.org/x/net v0.0.0-20210610132358-84b48f89b13b/go.mod h1:9nx3DQGgdP8bBQD5qxJ1jj9UTztislL4KSBs9R2vV5Y= +golang.org/x/net v0.0.0-20210316092652-d523dce5a7f4/go.mod h1:RBQZq4jEuRlivfhVLdyRGr576XBO4/greRjx4P4O3yc= +golang.org/x/net v0.0.0-20210405180319-a5a99cb37ef4/go.mod h1:p54w0d4576C0XHj96bSt6lcn1PtDYWL6XObtHCRCNQM= +golang.org/x/net v0.0.0-20210614182718-04defd469f4e h1:XpT3nA5TvE525Ne3hInMh6+GETgn27Zfm9dxsThnX2Q= +golang.org/x/net v0.0.0-20210614182718-04defd469f4e/go.mod h1:9nx3DQGgdP8bBQD5qxJ1jj9UTztislL4KSBs9R2vV5Y= golang.org/x/oauth2 v0.0.0-20180724155351-3d292e4d0cdc/go.mod h1:N/0e6XlmueqKjAGxoOufVs8QHGRruUQn6yWY3a++T0U= golang.org/x/oauth2 v0.0.0-20180821212333-d2e6202438be/go.mod h1:N/0e6XlmueqKjAGxoOufVs8QHGRruUQn6yWY3a++T0U= golang.org/x/oauth2 v0.0.0-20181017192945-9dcd33a902f4/go.mod h1:N/0e6XlmueqKjAGxoOufVs8QHGRruUQn6yWY3a++T0U= @@ -1527,9 +1650,14 @@ golang.org/x/oauth2 v0.0.0-20190402181905-9f3314589c9a/go.mod h1:gOpvHmFTYa4Iltr golang.org/x/oauth2 v0.0.0-20190604053449-0f29369cfe45/go.mod h1:gOpvHmFTYa4IltrdGE7lF6nIHvwfUNPOp7c8zoXwtLw= golang.org/x/oauth2 v0.0.0-20191202225959-858c2ad4c8b6/go.mod h1:gOpvHmFTYa4IltrdGE7lF6nIHvwfUNPOp7c8zoXwtLw= golang.org/x/oauth2 v0.0.0-20200107190931-bf48bf16ab8d/go.mod h1:gOpvHmFTYa4IltrdGE7lF6nIHvwfUNPOp7c8zoXwtLw= +golang.org/x/oauth2 v0.0.0-20200902213428-5d25da1a8d43/go.mod h1:KelEdhl1UZF7XfJ4dDtk6s++YSgaE7mD/BuKKDLBl4A= +golang.org/x/oauth2 v0.0.0-20201109201403-9fd604954f58/go.mod h1:KelEdhl1UZF7XfJ4dDtk6s++YSgaE7mD/BuKKDLBl4A= golang.org/x/oauth2 v0.0.0-20201208152858-08078c50e5b5/go.mod h1:KelEdhl1UZF7XfJ4dDtk6s++YSgaE7mD/BuKKDLBl4A= -golang.org/x/oauth2 v0.0.0-20210125201302-af13f521f196 h1:w0u30BeG/TALEc6xVf1Klaz2+etRR4K6jxhRkWCqt4g= -golang.org/x/oauth2 v0.0.0-20210125201302-af13f521f196/go.mod h1:KelEdhl1UZF7XfJ4dDtk6s++YSgaE7mD/BuKKDLBl4A= +golang.org/x/oauth2 v0.0.0-20210218202405-ba52d332ba99/go.mod h1:KelEdhl1UZF7XfJ4dDtk6s++YSgaE7mD/BuKKDLBl4A= +golang.org/x/oauth2 v0.0.0-20210220000619-9bb904979d93/go.mod h1:KelEdhl1UZF7XfJ4dDtk6s++YSgaE7mD/BuKKDLBl4A= +golang.org/x/oauth2 v0.0.0-20210313182246-cd4f82c27b84/go.mod h1:KelEdhl1UZF7XfJ4dDtk6s++YSgaE7mD/BuKKDLBl4A= +golang.org/x/oauth2 v0.0.0-20210402161424-2e8d93401602 h1:0Ja1LBD+yisY6RWM/BH7TJVXWsSjs2VwBSmvSX4HdBc= +golang.org/x/oauth2 v0.0.0-20210402161424-2e8d93401602/go.mod h1:KelEdhl1UZF7XfJ4dDtk6s++YSgaE7mD/BuKKDLBl4A= golang.org/x/perf v0.0.0-20180704124530-6e6d33e29852/go.mod h1:JLpeXjPJfIyPr5TlbXLkXWLhP8nz10XfvxElABhCtcw= golang.org/x/sync v0.0.0-20180314180146-1d60e4601c6f/go.mod h1:RxMgew5VJxzue5/jJTE5uejpjVlOe/izrB70Jof72aM= golang.org/x/sync v0.0.0-20181108010431-42b317875d0f/go.mod h1:RxMgew5VJxzue5/jJTE5uejpjVlOe/izrB70Jof72aM= @@ -1561,6 +1689,7 @@ 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= @@ -1619,6 +1748,7 @@ golang.org/x/sys v0.0.0-20200728102440-3e129f6d46b1/go.mod h1:h1NjWce9XRLGQEsW7w golang.org/x/sys v0.0.0-20200803210538-64077c9b5642/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs= golang.org/x/sys v0.0.0-20200826173525-f9321e4c35a6/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs= golang.org/x/sys v0.0.0-20200831180312-196b9ba8737a/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs= +golang.org/x/sys v0.0.0-20200905004654-be1d3432aa8f/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs= golang.org/x/sys v0.0.0-20200909081042-eff7692f9009/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs= golang.org/x/sys v0.0.0-20200916030750-2334cc1a136f/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs= golang.org/x/sys v0.0.0-20200917073148-efd3b9a0ff20/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs= @@ -1627,15 +1757,21 @@ golang.org/x/sys v0.0.0-20200930185726-fdedc70b468f/go.mod h1:h1NjWce9XRLGQEsW7w golang.org/x/sys v0.0.0-20201013081832-0aaa2718063a/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs= golang.org/x/sys v0.0.0-20201119102817-f84b799fce68/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs= golang.org/x/sys v0.0.0-20201201145000-ef89a241ccb3/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs= +golang.org/x/sys v0.0.0-20210104204734-6f8348627aad/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-20210119212857-b64e53b001e4/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs= golang.org/x/sys v0.0.0-20210124154548-22da62e12c0c/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs= golang.org/x/sys v0.0.0-20210220050731-9a76102bfb43/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs= +golang.org/x/sys v0.0.0-20210305230114-8fe3ee5dd75b/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/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs= +golang.org/x/sys v0.0.0-20210330210617-4fbd30eecc44/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs= golang.org/x/sys v0.0.0-20210403161142-5e06dd20ab57/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs= golang.org/x/sys v0.0.0-20210423082822-04245dca01da/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs= -golang.org/x/sys v0.0.0-20210608053332-aa57babbf139 h1:C+AwYEtBp/VQwoLntUmQ/yx3MS9vmZaKNdw5eOpoQe8= -golang.org/x/sys v0.0.0-20210608053332-aa57babbf139/go.mod h1:oPkhp1MJrh7nUepCBck5+mAzfO9JrbApNNgaTdGDITg= +golang.org/x/sys v0.0.0-20210510120138-977fb7262007/go.mod h1:oPkhp1MJrh7nUepCBck5+mAzfO9JrbApNNgaTdGDITg= +golang.org/x/sys v0.0.0-20210616045830-e2b7044e8c71 h1:X/2sJAybVknnUnV7AD2HdT6rm2p5BP6eH2j+igduWgk= +golang.org/x/sys v0.0.0-20210616045830-e2b7044e8c71/go.mod h1:oPkhp1MJrh7nUepCBck5+mAzfO9JrbApNNgaTdGDITg= 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= @@ -1645,6 +1781,7 @@ golang.org/x/text v0.3.0/go.mod h1:NqM8EUOU14njkJ3fqMW+pc6Ldnwhi/IjpwHt7yyuwOQ= golang.org/x/text v0.3.1-0.20180807135948-17ff2d5776d2/go.mod h1:NqM8EUOU14njkJ3fqMW+pc6Ldnwhi/IjpwHt7yyuwOQ= golang.org/x/text v0.3.2/go.mod h1:bEr9sfX3Q8Zfm5fL9x+3itogRgK3+ptLWKqgva+5dAk= golang.org/x/text v0.3.3/go.mod h1:5Zoc/QRtKVWzQhOtBMvqHzDpF6irO9z98xDceosuGiQ= +golang.org/x/text v0.3.4/go.mod h1:5Zoc/QRtKVWzQhOtBMvqHzDpF6irO9z98xDceosuGiQ= golang.org/x/text v0.3.5/go.mod h1:5Zoc/QRtKVWzQhOtBMvqHzDpF6irO9z98xDceosuGiQ= golang.org/x/text v0.3.6 h1:aRYxNxv6iGQlyVaZmk6ZgYEDa+Jg18DxebPSrd6bg1M= golang.org/x/text v0.3.6/go.mod h1:5Zoc/QRtKVWzQhOtBMvqHzDpF6irO9z98xDceosuGiQ= @@ -1675,6 +1812,7 @@ golang.org/x/tools v0.0.0-20190322203728-c1a832b0ad89/go.mod h1:LCzVGOaR6xXOjkQ3 golang.org/x/tools v0.0.0-20190328211700-ab21143f2384/go.mod h1:LCzVGOaR6xXOjkQ3onu1FJEFr0SW1gC7cKk1uF8kGRs= golang.org/x/tools v0.0.0-20190422233926-fe54fb35175b/go.mod h1:LCzVGOaR6xXOjkQ3onu1FJEFr0SW1gC7cKk1uF8kGRs= golang.org/x/tools v0.0.0-20190425150028-36563e24a262/go.mod h1:RgjU9mgBXZiqYHBnxXauZ1Gv1EHHAz9KjViQ78xBX0Q= +golang.org/x/tools v0.0.0-20190425163242-31fd60d6bfdc/go.mod h1:RgjU9mgBXZiqYHBnxXauZ1Gv1EHHAz9KjViQ78xBX0Q= golang.org/x/tools v0.0.0-20190506145303-2d16b83fe98c/go.mod h1:RgjU9mgBXZiqYHBnxXauZ1Gv1EHHAz9KjViQ78xBX0Q= golang.org/x/tools v0.0.0-20190521203540-521d6ed310dd/go.mod h1:RgjU9mgBXZiqYHBnxXauZ1Gv1EHHAz9KjViQ78xBX0Q= golang.org/x/tools v0.0.0-20190524140312-2c0ae7006135/go.mod h1:RgjU9mgBXZiqYHBnxXauZ1Gv1EHHAz9KjViQ78xBX0Q= @@ -1687,6 +1825,7 @@ golang.org/x/tools v0.0.0-20190706070813-72ffa07ba3db/go.mod h1:jcCCGcm9btYwXyDq golang.org/x/tools v0.0.0-20190719005602-e377ae9d6386/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-20190823170909-c4a336ef6a2f/go.mod h1:b+2E5dAYhXwXZwtnZ6UAqBI28+e2cm9otk0dWdXHAEo= golang.org/x/tools v0.0.0-20190910044552-dd2b5c81c578/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= @@ -1734,11 +1873,18 @@ golang.org/x/tools v0.0.0-20200619180055-7c47624df98f/go.mod h1:EkVYQZoAsY45+roY 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/go.mod h1:njjCfa9FT2d7l9Bc6FUM5FLjQPp3cFF28FI3qnDFljA= +golang.org/x/tools v0.0.0-20200904185747-39188db58858/go.mod h1:Cj7w3i3Rnn0Xh82ur9kSqwfTHTeVxaDqrfMjpcNT6bE= golang.org/x/tools v0.0.0-20201009032223-96877f285f7e/go.mod h1:z6u4i615ZeAfBE4XtMziQW1fSVJXACjjbWkB/mvPzlU= +golang.org/x/tools v0.0.0-20201110124207-079ba7bd75cd/go.mod h1:emZCQorbCU4vsT4fOWvOPXz4eW1wZW4PmDk9uLelYpA= +golang.org/x/tools v0.0.0-20201201161351-ac6f37ff4c2a/go.mod h1:emZCQorbCU4vsT4fOWvOPXz4eW1wZW4PmDk9uLelYpA= +golang.org/x/tools v0.0.0-20201208233053-a543418bbed2/go.mod h1:emZCQorbCU4vsT4fOWvOPXz4eW1wZW4PmDk9uLelYpA= golang.org/x/tools v0.0.0-20201224043029-2b0845dc783e/go.mod h1:emZCQorbCU4vsT4fOWvOPXz4eW1wZW4PmDk9uLelYpA= +golang.org/x/tools v0.0.0-20210105154028-b0ab187a4818/go.mod h1:emZCQorbCU4vsT4fOWvOPXz4eW1wZW4PmDk9uLelYpA= golang.org/x/tools v0.0.0-20210106214847-113979e3529a/go.mod h1:emZCQorbCU4vsT4fOWvOPXz4eW1wZW4PmDk9uLelYpA= -golang.org/x/tools v0.1.0 h1:po9/4sTYwZU9lPhi1tOrb4hCv3qrhiQ77LZfGa2OjwY= golang.org/x/tools v0.1.0/go.mod h1:xkSsbof2nBLbhDlRMhhhyNLN/zl3eTqcnHD5viDpcZ0= +golang.org/x/tools v0.1.2/go.mod h1:o0xws9oXOQQZyjljx8fwUC0k7L1pTE6eaCbjGeHmOkk= +golang.org/x/xerrors v0.0.0-20190410155217-1f06c39b4373/go.mod h1:I/5z698sn9Ka8TeJc9MKroUUfqBBauWjQqLJ2OPfmY0= +golang.org/x/xerrors v0.0.0-20190513163551-3ee3066db522/go.mod h1:I/5z698sn9Ka8TeJc9MKroUUfqBBauWjQqLJ2OPfmY0= 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= @@ -1774,6 +1920,12 @@ google.golang.org/api v0.25.0/go.mod h1:lIXQywCXRcnZPGlsd8NbLnOjtAoL6em04bJ9+z0M google.golang.org/api v0.28.0/go.mod h1:lIXQywCXRcnZPGlsd8NbLnOjtAoL6em04bJ9+z0MncE= google.golang.org/api v0.29.0/go.mod h1:Lcubydp8VUV7KeIHD9z2Bys/sm/vGKnG1UHuDBSrHWM= google.golang.org/api v0.30.0/go.mod h1:QGmEvQ87FHZNiUVJkT14jQNYJ4ZJjdRF23ZXz5138Fc= +google.golang.org/api v0.35.0/go.mod h1:/XrVsuzM0rZmrsbjJutiuftIzeuTQcEeaYcSk/mQ1dg= +google.golang.org/api v0.36.0/go.mod h1:+z5ficQTmoYpPn8LCUNVpK5I7hwkpjbcgqA7I34qYtE= +google.golang.org/api v0.40.0/go.mod h1:fYKFpnQN0DsDSKRVRcQSDQNtqWPfM9i+zNPxepjRCQ8= +google.golang.org/api v0.41.0/go.mod h1:RkxM5lITDfTzmyKFPt+wGrCJbVfniCr2ool8kTBzRTU= +google.golang.org/api v0.43.0/go.mod h1:nQsDGjRXMo4lvh5hP0TKqF244gqhGcr/YSIykhUk/94= +google.golang.org/api v0.44.0/go.mod h1:EBOGZqzyhtvMDoxwS97ctnh0zUmYY6CxqXsc1AvkYD8= google.golang.org/appengine v1.1.0/go.mod h1:EbEs0AVv82hx2wNQdGPgUI5lhzA/G0D9YwlJXL52JkM= google.golang.org/appengine v1.2.0/go.mod h1:xpcJRLb0r/rnEns0DIKYYv+WjYCduHsrkT7/EB5XEv4= google.golang.org/appengine v1.3.0/go.mod h1:xpcJRLb0r/rnEns0DIKYYv+WjYCduHsrkT7/EB5XEv4= @@ -1781,8 +1933,9 @@ google.golang.org/appengine v1.4.0/go.mod h1:xpcJRLb0r/rnEns0DIKYYv+WjYCduHsrkT7 google.golang.org/appengine v1.5.0/go.mod h1:xpcJRLb0r/rnEns0DIKYYv+WjYCduHsrkT7/EB5XEv4= google.golang.org/appengine v1.6.1/go.mod h1:i06prIuMbXzDqacNJfV5OdTW448YApPu5ww/cMBSeb0= google.golang.org/appengine v1.6.5/go.mod h1:8WjMMxjGQR8xUklV/ARdw2HLXBOI7O7uCIDZVag1xfc= -google.golang.org/appengine v1.6.6 h1:lMO5rYAqUxkmaj76jAkRUvt5JZgFymx/+Q5Mzfivuhc= google.golang.org/appengine v1.6.6/go.mod h1:8WjMMxjGQR8xUklV/ARdw2HLXBOI7O7uCIDZVag1xfc= +google.golang.org/appengine v1.6.7 h1:FZR1q0exgwxzPzp/aF+VccGrSfxfPpkBqjIIEq3ru6c= +google.golang.org/appengine v1.6.7/go.mod h1:8WjMMxjGQR8xUklV/ARdw2HLXBOI7O7uCIDZVag1xfc= google.golang.org/cloud v0.0.0-20151119220103-975617b05ea8/go.mod h1:0H1ncTHf11KCFhTc/+EFRbzSCOZx+VUbRMk55Yv5MYk= 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= @@ -1814,6 +1967,7 @@ google.golang.org/genproto v0.0.0-20200312145019-da6875a35672/go.mod h1:55QSHmfG google.golang.org/genproto v0.0.0-20200331122359-1ee6d9798940/go.mod h1:55QSHmfGQM9UVYDPBsyGGes0y52j32PQ3BqQfXhyH3c= google.golang.org/genproto v0.0.0-20200430143042-b979b6f78d84/go.mod h1:55QSHmfGQM9UVYDPBsyGGes0y52j32PQ3BqQfXhyH3c= google.golang.org/genproto v0.0.0-20200511104702-f5ebc3bea380/go.mod h1:55QSHmfGQM9UVYDPBsyGGes0y52j32PQ3BqQfXhyH3c= +google.golang.org/genproto v0.0.0-20200513103714-09dca8ec2884/go.mod h1:55QSHmfGQM9UVYDPBsyGGes0y52j32PQ3BqQfXhyH3c= google.golang.org/genproto v0.0.0-20200515170657-fc4c6c6a6587/go.mod h1:YsZOwe1myG/8QRHRsmBRE1LrgQY60beZKjly0O1fX9U= google.golang.org/genproto v0.0.0-20200526211855-cb27e3aa2013/go.mod h1:NbSheEEYHJ7i3ixzK3sjbqSGDJWnxyFXZblF3eUsNvo= google.golang.org/genproto v0.0.0-20200527145253-8367513e4ece/go.mod h1:jDfRM7FcilCzHH/e9qn6dsT145K34l5v+OpcnNgKAAA= @@ -1821,7 +1975,18 @@ 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/genproto v0.0.0-20200904004341-0bd0a958aa1d/go.mod h1:FWY/as6DDZQgahTzZj3fqbO1CbirC29ZNUFHwi0/+no= +google.golang.org/genproto v0.0.0-20201109203340-2640f1f9cdfb/go.mod h1:FWY/as6DDZQgahTzZj3fqbO1CbirC29ZNUFHwi0/+no= +google.golang.org/genproto v0.0.0-20201201144952-b05cb90ed32e/go.mod h1:FWY/as6DDZQgahTzZj3fqbO1CbirC29ZNUFHwi0/+no= +google.golang.org/genproto v0.0.0-20201210142538-e3217bee35cc/go.mod h1:FWY/as6DDZQgahTzZj3fqbO1CbirC29ZNUFHwi0/+no= +google.golang.org/genproto v0.0.0-20201214200347-8c77b98c765d/go.mod h1:FWY/as6DDZQgahTzZj3fqbO1CbirC29ZNUFHwi0/+no= google.golang.org/genproto v0.0.0-20210219173056-d891e3cb3b5b/go.mod h1:FWY/as6DDZQgahTzZj3fqbO1CbirC29ZNUFHwi0/+no= +google.golang.org/genproto v0.0.0-20210222152913-aa3ee6e6a81c/go.mod h1:FWY/as6DDZQgahTzZj3fqbO1CbirC29ZNUFHwi0/+no= +google.golang.org/genproto v0.0.0-20210303154014-9728d6b83eeb/go.mod h1:FWY/as6DDZQgahTzZj3fqbO1CbirC29ZNUFHwi0/+no= +google.golang.org/genproto v0.0.0-20210310155132-4ce2db91004e/go.mod h1:FWY/as6DDZQgahTzZj3fqbO1CbirC29ZNUFHwi0/+no= +google.golang.org/genproto v0.0.0-20210319143718-93e7006c17a6/go.mod h1:FWY/as6DDZQgahTzZj3fqbO1CbirC29ZNUFHwi0/+no= +google.golang.org/genproto v0.0.0-20210402141018-6c239bbf2bb1/go.mod h1:9lPAdzaEmUacj36I+k7YKbEc5CXzPIeORRgDAUOu28A= +google.golang.org/genproto v0.0.0-20210602131652-f16073e35f0c/go.mod h1:UODoCrxHCcBojKKwX1terBiRUaqAsFqJiF615XL43r0= google.golang.org/grpc v0.0.0-20160317175043-d3ddb4469d5a/go.mod h1:yo6s7OP7yaDglbqo1J04qKzAhqBH6lvTonzMVmEdcZw= google.golang.org/grpc v1.14.0/go.mod h1:yo6s7OP7yaDglbqo1J04qKzAhqBH6lvTonzMVmEdcZw= google.golang.org/grpc v1.16.0/go.mod h1:0JHn/cJsOMiMfNA9+DeHDlAU7KAAB5GDlYFpa9MZMio= @@ -1843,8 +2008,14 @@ google.golang.org/grpc v1.28.0/go.mod h1:rpkK4SK4GF4Ach/+MFLZUBavHOvF2JJB5uozKKa google.golang.org/grpc v1.29.1/go.mod h1:itym6AZVZYACWQqET3MqgPpjcuV5QH3BxFS3IjizoKk= google.golang.org/grpc v1.30.0/go.mod h1:N36X2cJ7JwdamYAgDz+s+rVMFjt3numwzf/HckM8pak= google.golang.org/grpc v1.31.0/go.mod h1:N36X2cJ7JwdamYAgDz+s+rVMFjt3numwzf/HckM8pak= +google.golang.org/grpc v1.31.1/go.mod h1:N36X2cJ7JwdamYAgDz+s+rVMFjt3numwzf/HckM8pak= +google.golang.org/grpc v1.33.1/go.mod h1:fr5YgcSWrqhRRxogOsw7RzIpsmvOZ6IcH4kBYTpR3n0= google.golang.org/grpc v1.33.2/go.mod h1:JMHMWHQWaTccqQQlmk3MJZS+GWXOdAesneDmEnv2fbc= +google.golang.org/grpc v1.34.0/go.mod h1:WotjhfgOW/POjDeRt8vscBtXq+2VjORFy659qA51WJ8= google.golang.org/grpc v1.35.0/go.mod h1:qjiiYl8FncCW8feJPdyg3v6XW24KsRHe+dy9BAGRRjU= +google.golang.org/grpc v1.36.0/go.mod h1:qjiiYl8FncCW8feJPdyg3v6XW24KsRHe+dy9BAGRRjU= +google.golang.org/grpc v1.36.1/go.mod h1:qjiiYl8FncCW8feJPdyg3v6XW24KsRHe+dy9BAGRRjU= +google.golang.org/grpc v1.38.0/go.mod h1:NREThFqKR1f3iQ6oBuvc5LadQuXVGo9rkm5ZGrQdJfM= google.golang.org/protobuf v0.0.0-20200109180630-ec00e32a8dfd/go.mod h1:DFci5gLYBciE7Vtevhsrf46CRTquxDuWsQurQQe4oz8= google.golang.org/protobuf v0.0.0-20200221191635-4d8936d0db64/go.mod h1:kwYJMbMJ01Woi6D6+Kah6886xMZcty6N08ah7+eCXa0= google.golang.org/protobuf v0.0.0-20200228230310-ab0ca4ff8a60/go.mod h1:cfTl7dwQJ+fmap5saPgwCLgHXTUD7jkjRqWcaiX5VyM= @@ -1854,8 +2025,10 @@ google.golang.org/protobuf v1.22.0/go.mod h1:EGpADcykh3NcUnDUJcl1+ZksZNG86OlYog2 google.golang.org/protobuf v1.23.0/go.mod h1:EGpADcykh3NcUnDUJcl1+ZksZNG86OlYog2l/sGQquU= google.golang.org/protobuf v1.23.1-0.20200526195155-81db48ad09cc/go.mod h1:EGpADcykh3NcUnDUJcl1+ZksZNG86OlYog2l/sGQquU= 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= +google.golang.org/protobuf v1.26.0-rc.1/go.mod h1:jlhhOSvTdKEhbULTjvd4ARK9grFBp09yW+WbY/TyQbw= +google.golang.org/protobuf v1.26.0 h1:bxAC2xTBsZGibn2RTntX0oH50xLsqy1OxA9tTL3p/lk= +google.golang.org/protobuf v1.26.0/go.mod h1:9q0QmTI4eRPtz6boOQmLYwt+qCgq0jsYwAQnmE0givc= 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= @@ -1877,6 +2050,7 @@ gopkg.in/gemnasium/logrus-airbrake-hook.v2 v2.1.2/go.mod h1:Xk6kEKp8OKb+X14hQBKW gopkg.in/go-playground/assert.v1 v1.2.1/go.mod h1:9RXL0bg/zibRAgZUYszZSwO/z8Y/a8bDuhia5mkpMnE= 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/go.mod h1:+c9/zcJMFNgbLvly1L1V+PpxWdVbfP1avr/N00E2vyQ= +gopkg.in/inconshreveable/log15.v2 v2.0.0-20180818164646-67afb5ed74ec/go.mod h1:aPpfJ7XW+gOuirDoZ8gHhLh3kZ1B08FtV2bbmy7Jv3s= gopkg.in/inf.v0 v0.9.1/go.mod h1:cWUDdTG/fYaXco+Dcufb5Vnc6Gp2YChqWtbxRZE0mXw= gopkg.in/ini.v1 v1.51.0/go.mod h1:pNLf8WUiyNEtQjuu5G5vTm06TEv9tsIgeAvK8hOrP4k= gopkg.in/ini.v1 v1.56.0/go.mod h1:pNLf8WUiyNEtQjuu5G5vTm06TEv9tsIgeAvK8hOrP4k= @@ -1908,6 +2082,19 @@ gopkg.in/yaml.v3 v3.0.0-20200313102051-9f266ea9e77c/go.mod h1:K4uyk7z7BCEPqu6E+C gopkg.in/yaml.v3 v3.0.0-20200615113413-eeeca48fe776/go.mod h1:K4uyk7z7BCEPqu6E+C64Yfv1cQ7kz7rIZviUmN+EgEM= gopkg.in/yaml.v3 v3.0.0-20210107192922-496545a6307b h1:h8qDotaEPuJATrMmW04NCwg7v22aHH28wwpauUhK9Oo= gopkg.in/yaml.v3 v3.0.0-20210107192922-496545a6307b/go.mod h1:K4uyk7z7BCEPqu6E+C64Yfv1cQ7kz7rIZviUmN+EgEM= +gorm.io/driver/mysql v1.0.6/go.mod h1:KdrTanmfLPPyAOeYGyG+UpDys7/7eeWT1zCq+oekYnU= +gorm.io/driver/mysql v1.1.0 h1:3PgFPJlFq5Xt/0WRiRjxIVaXjeHY+2TQ5feXgpSpEC4= +gorm.io/driver/mysql v1.1.0/go.mod h1:KdrTanmfLPPyAOeYGyG+UpDys7/7eeWT1zCq+oekYnU= +gorm.io/driver/postgres v1.0.8/go.mod h1:4eOzrI1MUfm6ObJU/UcmbXyiHSs8jSwH95G5P5dxcAg= +gorm.io/driver/postgres v1.1.0 h1:afBljg7PtJ5lA6YUWluV2+xovIPhS+YiInuL3kUjrbk= +gorm.io/driver/postgres v1.1.0/go.mod h1:hXQIwafeRjJvUm+OMxcFWyswJ/vevcpPLlGocwAwuqw= +gorm.io/driver/sqlite v1.1.4 h1:PDzwYE+sI6De2+mxAneV9Xs11+ZyKV6oxD3wDGkaNvM= +gorm.io/driver/sqlite v1.1.4/go.mod h1:mJCeTFr7+crvS+TRnWc5Z3UvwxUN1BGBLMrf5LA9DYw= +gorm.io/gorm v1.20.7/go.mod h1:0HFTzE/SqkGTzK6TlDPPQbAYCluiVvhzoA1+aVyzenw= +gorm.io/gorm v1.20.12/go.mod h1:0HFTzE/SqkGTzK6TlDPPQbAYCluiVvhzoA1+aVyzenw= +gorm.io/gorm v1.21.9/go.mod h1:F+OptMscr0P2F2qU97WT1WimdH9GaQPoDW7AYd5i2Y0= +gorm.io/gorm v1.21.11 h1:CxkXW6Cc+VIBlL8yJEHq+Co4RYXdSLiMKNvgoZPjLK4= +gorm.io/gorm v1.21.11/go.mod h1:F+OptMscr0P2F2qU97WT1WimdH9GaQPoDW7AYd5i2Y0= gotest.tools v2.2.0+incompatible/go.mod h1:DsYFclhRJ6vuDpmuTbkuFWG+y2sxOXAzmJt81HFBacw= gotest.tools/v3 v3.0.2/go.mod h1:3SzNCllyD9/Y+b5r9JIKQ474KzkZyqLqEfYqMsX94Bk= grpc.go4.org v0.0.0-20170609214715-11d0a25b4919/go.mod h1:77eQGdRu53HpSqPFJFmuJdjuHRquDANNeA4x7B8WQ9o= @@ -1920,7 +2107,6 @@ honnef.co/go/tools v0.0.0-20190523083050-ea95bdfd59fc/go.mod h1:rf3lG4BRIbNafJWh honnef.co/go/tools v0.0.1-2019.2.3/go.mod h1:a3bituU0lyd329TUQxRnasdCoJDkEUEAqEt0JzvZhAg= honnef.co/go/tools v0.0.1-2020.1.3/go.mod h1:X/FiERA/W4tHapMX5mGpAtMSVEeEUOyHaw9vFzvIQ3k= honnef.co/go/tools v0.0.1-2020.1.4/go.mod h1:X/FiERA/W4tHapMX5mGpAtMSVEeEUOyHaw9vFzvIQ3k= -honnef.co/go/tools v0.0.1-2020.1.5 h1:nI5egYTGJakVyOryqLs1cQO5dO0ksin5XXs2pspk75k= honnef.co/go/tools v0.0.1-2020.1.5/go.mod h1:X/FiERA/W4tHapMX5mGpAtMSVEeEUOyHaw9vFzvIQ3k= k8s.io/api v0.0.0-20180904230853-4e7be11eab3f/go.mod h1:iuAfoD4hCxJ8Onx9kaTIt30j7jUFS00AXQi6QMi99vA= k8s.io/api v0.17.4/go.mod h1:5qxx6vjmwUVG2nHQTKGlLts8Tbok8PzHl4vHtVFuZCA= From 43b46cb324f64076e4d9e807c0b60c4b9ce11a82 Mon Sep 17 00:00:00 2001 From: Kota Kanbe Date: Thu, 17 Jun 2021 14:01:10 +0900 Subject: [PATCH 8/8] chore: add test data for integration test (#1254) --- .gitignore | 6 +- integration/data/results/amazon_2.json | 6534 ++++++++++++++++ integration/data/results/centos_7.json | 5634 ++++++++++++++ integration/data/results/debian_10.json | 5631 ++++++++++++++ integration/data/results/oracle.json | 3031 ++++++++ integration/data/results/rails.json | 131 + integration/data/results/rhel_71.json | 5158 ++++++++++++ integration/data/results/rhel_8.json | 6926 +++++++++++++++++ integration/data/results/ubuntu_1804.json | 8609 +++++++++++++++++++++ integration/data/results/ubuntu_2004.json | 8559 ++++++++++++++++++++ 10 files changed, 50218 insertions(+), 1 deletion(-) create mode 100755 integration/data/results/amazon_2.json create mode 100755 integration/data/results/centos_7.json create mode 100755 integration/data/results/debian_10.json create mode 100644 integration/data/results/oracle.json create mode 100644 integration/data/results/rails.json create mode 100755 integration/data/results/rhel_71.json create mode 100755 integration/data/results/rhel_8.json create mode 100755 integration/data/results/ubuntu_1804.json create mode 100755 integration/data/results/ubuntu_2004.json diff --git a/.gitignore b/.gitignore index 00e070f7..47b00506 100644 --- a/.gitignore +++ b/.gitignore @@ -1,5 +1,6 @@ .vscode *.txt +*.swp *.sqlite3* *.db tags @@ -8,10 +9,13 @@ coverage.out issues/ vendor/ log/ -results/ +results +!integration/data/results config.toml !setup/docker/* .DS_Store dist/ .idea vuls.* +vuls +!cmd/vuls diff --git a/integration/data/results/amazon_2.json b/integration/data/results/amazon_2.json new file mode 100755 index 00000000..87f9911a --- /dev/null +++ b/integration/data/results/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": "" + }, + "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/hoge.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/results/centos_7.json b/integration/data/results/centos_7.json new file mode 100755 index 00000000..bf5abc9f --- /dev/null +++ b/integration/data/results/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": "" + }, + "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/hoge.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/results/debian_10.json b/integration/data/results/debian_10.json new file mode 100755 index 00000000..0fa35dd6 --- /dev/null +++ b/integration/data/results/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": "" + }, + "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/hoge.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/results/oracle.json b/integration/data/results/oracle.json new file mode 100644 index 00000000..b1eaf0a3 --- /dev/null +++ b/integration/data/results/oracle.json @@ -0,0 +1,3031 @@ +{ + "jsonVersion": 4, + "lang": "", + "serverUUID": "", + "serverName": "oracle", + "family": "oracle", + "release": "7.9", + "container": { + "containerID": "", + "name": "", + "image": "", + "type": "", + "uuid": "" + }, + "platform": { + "name": "aws", + "instanceID": "" + }, + "ipv4Addrs": [ + "192.168.0.221" + ], + "scannedAt": "2021-04-26T17:48:28.782669237+09:00", + "scanMode": "fast-root mode", + "scannedVersion": "v0.15.11", + "scannedRevision": "build-20210426_174218_8af2598", + "scannedBy": "dev", + "scannedVia": "remote", + "scannedIpv4Addrs": [ + "172.27.0.1" + ], + "reportedAt": "0001-01-01T00:00:00Z", + "reportedVersion": "", + "reportedRevision": "", + "reportedBy": "", + "errors": [], + "warnings": [], + "scannedCves": {}, + "runningKernel": { + "release": "5.4.17-2102.200.13.el7uek.x86_64", + "version": "", + "rebootRequired": false + }, + "packages": { + "GeoIP": { + "name": "GeoIP", + "version": "1.5.0", + "release": "14.el7", + "newVersion": "1.5.0", + "newRelease": "14.el7", + "arch": "x86_64", + "repository": "" + }, + "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": "15.el7", + "newVersion": "2.2.51", + "newRelease": "15.el7", + "arch": "x86_64", + "repository": "" + }, + "acpid": { + "name": "acpid", + "version": "2.0.19", + "release": "9.el7", + "newVersion": "2.0.19", + "newRelease": "9.el7", + "arch": "x86_64", + "repository": "" + }, + "audit-libs": { + "name": "audit-libs", + "version": "2.8.5", + "release": "4.el7", + "newVersion": "2.8.5", + "newRelease": "4.el7", + "arch": "x86_64", + "repository": "" + }, + "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.0.1.el7", + "newVersion": "10.0", + "newRelease": "7.0.1.el7", + "arch": "noarch", + "repository": "" + }, + "bash": { + "name": "bash", + "version": "4.2.46", + "release": "34.el7", + "newVersion": "4.2.46", + "newRelease": "34.el7", + "arch": "x86_64", + "repository": "" + }, + "bc": { + "name": "bc", + "version": "1.06.95", + "release": "13.el7", + "newVersion": "1.06.95", + "newRelease": "13.el7", + "arch": "x86_64", + "repository": "" + }, + "bind-export-libs": { + "name": "bind-export-libs", + "version": "32:9.11.4", + "release": "26.P2.el7_9.4", + "newVersion": "32:9.11.4", + "newRelease": "26.P2.el7_9.4", + "arch": "x86_64", + "repository": "" + }, + "bind-libs-lite": { + "name": "bind-libs-lite", + "version": "32:9.11.4", + "release": "26.P2.el7_9.4", + "newVersion": "32:9.11.4", + "newRelease": "26.P2.el7_9.4", + "arch": "x86_64", + "repository": "" + }, + "bind-license": { + "name": "bind-license", + "version": "32:9.11.4", + "release": "26.P2.el7_9.4", + "newVersion": "32:9.11.4", + "newRelease": "26.P2.el7_9.4", + "arch": "noarch", + "repository": "" + }, + "binutils": { + "name": "binutils", + "version": "2.27", + "release": "44.base.0.3.el7", + "newVersion": "2.27", + "newRelease": "44.base.0.3.el7", + "arch": "x86_64", + "repository": "" + }, + "btrfs-progs": { + "name": "btrfs-progs", + "version": "5.4.0", + "release": "1.el7", + "newVersion": "5.4.0", + "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": "" + }, + "ca-certificates": { + "name": "ca-certificates", + "version": "2020.2.41", + "release": "70.0.el7_8", + "newVersion": "2020.2.41", + "newRelease": "70.0.el7_8", + "arch": "noarch", + "repository": "" + }, + "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.6", + "release": "1.el7", + "newVersion": "1.7.6", + "newRelease": "1.el7", + "arch": "x86_64", + "repository": "" + }, + "chrony": { + "name": "chrony", + "version": "3.4", + "release": "1.0.1.el7", + "newVersion": "3.4", + "newRelease": "1.0.1.el7", + "arch": "x86_64", + "repository": "" + }, + "cloud-init": { + "name": "cloud-init", + "version": "19.4", + "release": "7.0.3.el7_9.4", + "newVersion": "19.4", + "newRelease": "7.0.3.el7_9.4", + "arch": "x86_64", + "repository": "" + }, + "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.0.1.el7_9.2", + "newVersion": "8.22", + "newRelease": "24.0.1.el7_9.2", + "arch": "x86_64", + "repository": "" + }, + "cpio": { + "name": "cpio", + "version": "2.11", + "release": "28.el7", + "newVersion": "2.11", + "newRelease": "28.el7", + "arch": "x86_64", + "repository": "" + }, + "cracklib": { + "name": "cracklib", + "version": "2.9.0", + "release": "11.el7", + "newVersion": "2.9.0", + "newRelease": "11.el7", + "arch": "x86_64", + "repository": "" + }, + "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": "" + }, + "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": "6.el7", + "newVersion": "2.0.3", + "newRelease": "6.el7", + "arch": "x86_64", + "repository": "" + }, + "curl": { + "name": "curl", + "version": "7.29.0", + "release": "59.0.1.el7_9.1", + "newVersion": "7.29.0", + "newRelease": "59.0.1.el7_9.1", + "arch": "x86_64", + "repository": "" + }, + "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": "" + }, + "dbus": { + "name": "dbus", + "version": "1:1.10.24", + "release": "15.0.1.el7", + "newVersion": "1:1.10.24", + "newRelease": "15.0.1.el7", + "arch": "x86_64", + "repository": "" + }, + "dbus-glib": { + "name": "dbus-glib", + "version": "0.100", + "release": "7.el7", + "newVersion": "0.100", + "newRelease": "7.el7", + "arch": "x86_64", + "repository": "" + }, + "dbus-libs": { + "name": "dbus-libs", + "version": "1:1.10.24", + "release": "15.0.1.el7", + "newVersion": "1:1.10.24", + "newRelease": "15.0.1.el7", + "arch": "x86_64", + "repository": "" + }, + "dbus-python": { + "name": "dbus-python", + "version": "1.1.1", + "release": "9.el7", + "newVersion": "1.1.1", + "newRelease": "9.el7", + "arch": "x86_64", + "repository": "" + }, + "device-mapper": { + "name": "device-mapper", + "version": "7:1.02.170", + "release": "6.0.3.el7_9.4", + "newVersion": "7:1.02.170", + "newRelease": "6.0.3.el7_9.4", + "arch": "x86_64", + "repository": "" + }, + "device-mapper-libs": { + "name": "device-mapper-libs", + "version": "7:1.02.170", + "release": "6.0.3.el7_9.4", + "newVersion": "7:1.02.170", + "newRelease": "6.0.3.el7_9.4", + "arch": "x86_64", + "repository": "" + }, + "dhclient": { + "name": "dhclient", + "version": "12:4.2.5", + "release": "82.0.1.el7", + "newVersion": "12:4.2.5", + "newRelease": "82.0.1.el7", + "arch": "x86_64", + "repository": "" + }, + "dhcp-common": { + "name": "dhcp-common", + "version": "12:4.2.5", + "release": "82.0.1.el7", + "newVersion": "12:4.2.5", + "newRelease": "82.0.1.el7", + "arch": "x86_64", + "repository": "" + }, + "dhcp-libs": { + "name": "dhcp-libs", + "version": "12:4.2.5", + "release": "82.0.1.el7", + "newVersion": "12:4.2.5", + "newRelease": "82.0.1.el7", + "arch": "x86_64", + "repository": "" + }, + "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": "5.el7_9.1", + "newVersion": "1:3.2", + "newRelease": "5.el7_9.1", + "arch": "x86_64", + "repository": "" + }, + "dracut": { + "name": "dracut", + "version": "033", + "release": "572.0.3.el7", + "newVersion": "033", + "newRelease": "572.0.3.el7", + "arch": "x86_64", + "repository": "" + }, + "dracut-config-rescue": { + "name": "dracut-config-rescue", + "version": "033", + "release": "572.0.3.el7", + "newVersion": "033", + "newRelease": "572.0.3.el7", + "arch": "x86_64", + "repository": "" + }, + "e2fsprogs": { + "name": "e2fsprogs", + "version": "1.45.4", + "release": "3.0.5.el7", + "newVersion": "1.45.4", + "newRelease": "3.0.5.el7", + "arch": "x86_64", + "repository": "" + }, + "e2fsprogs-libs": { + "name": "e2fsprogs-libs", + "version": "1.45.4", + "release": "3.0.5.el7", + "newVersion": "1.45.4", + "newRelease": "3.0.5.el7", + "arch": "x86_64", + "repository": "" + }, + "ebtables": { + "name": "ebtables", + "version": "2.0.10", + "release": "16.el7", + "newVersion": "2.0.10", + "newRelease": "16.el7", + "arch": "x86_64", + "repository": "" + }, + "elfutils-default-yama-scope": { + "name": "elfutils-default-yama-scope", + "version": "0.176", + "release": "5.el7", + "newVersion": "0.176", + "newRelease": "5.el7", + "arch": "noarch", + "repository": "" + }, + "elfutils-libelf": { + "name": "elfutils-libelf", + "version": "0.176", + "release": "5.el7", + "newVersion": "0.176", + "newRelease": "5.el7", + "arch": "x86_64", + "repository": "" + }, + "elfutils-libs": { + "name": "elfutils-libs", + "version": "0.176", + "release": "5.el7", + "newVersion": "0.176", + "newRelease": "5.el7", + "arch": "x86_64", + "repository": "" + }, + "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": "12.el7", + "newVersion": "2.1.0", + "newRelease": "12.el7", + "arch": "x86_64", + "repository": "" + }, + "file": { + "name": "file", + "version": "5.11", + "release": "37.el7", + "newVersion": "5.11", + "newRelease": "37.el7", + "arch": "x86_64", + "repository": "" + }, + "file-libs": { + "name": "file-libs", + "version": "5.11", + "release": "37.el7", + "newVersion": "5.11", + "newRelease": "37.el7", + "arch": "x86_64", + "repository": "" + }, + "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": "" + }, + "firewalld-filesystem": { + "name": "firewalld-filesystem", + "version": "0.6.3", + "release": "12.0.1.el7", + "newVersion": "0.6.3", + "newRelease": "12.0.1.el7", + "arch": "noarch", + "repository": "" + }, + "freetype": { + "name": "freetype", + "version": "2.8", + "release": "14.el7_9.1", + "newVersion": "2.8", + "newRelease": "14.el7_9.1", + "arch": "x86_64", + "repository": "" + }, + "fuse-libs": { + "name": "fuse-libs", + "version": "2.9.4", + "release": "1.0.9.el7", + "newVersion": "2.9.4", + "newRelease": "1.0.9.el7", + "arch": "x86_64", + "repository": "" + }, + "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": "" + }, + "gdisk": { + "name": "gdisk", + "version": "0.8.10", + "release": "3.el7", + "newVersion": "0.8.10", + "newRelease": "3.el7", + "arch": "x86_64", + "repository": "" + }, + "geoipupdate": { + "name": "geoipupdate", + "version": "2.5.0", + "release": "1.el7", + "newVersion": "2.5.0", + "newRelease": "1.el7", + "arch": "x86_64", + "repository": "" + }, + "gettext": { + "name": "gettext", + "version": "0.19.8.1", + "release": "3.el7", + "newVersion": "0.19.8.1", + "newRelease": "3.el7", + "arch": "x86_64", + "repository": "" + }, + "gettext-libs": { + "name": "gettext-libs", + "version": "0.19.8.1", + "release": "3.el7", + "newVersion": "0.19.8.1", + "newRelease": "3.el7", + "arch": "x86_64", + "repository": "" + }, + "glib2": { + "name": "glib2", + "version": "2.56.1", + "release": "8.el7", + "newVersion": "2.56.1", + "newRelease": "8.el7", + "arch": "x86_64", + "repository": "" + }, + "glibc": { + "name": "glibc", + "version": "2.17", + "release": "323.0.1.el7_9", + "newVersion": "2.17", + "newRelease": "323.0.1.el7_9", + "arch": "x86_64", + "repository": "" + }, + "glibc-common": { + "name": "glibc-common", + "version": "2.17", + "release": "323.0.1.el7_9", + "newVersion": "2.17", + "newRelease": "323.0.1.el7_9", + "arch": "x86_64", + "repository": "" + }, + "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": "" + }, + "gpg-pubkey": { + "name": "gpg-pubkey", + "version": "ec551f03", + "release": "53619141", + "newVersion": "ec551f03", + "newRelease": "53619141", + "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.87.0.9.el7_9.6", + "newVersion": "1:2.02", + "newRelease": "0.87.0.9.el7_9.6", + "arch": "x86_64", + "repository": "" + }, + "grub2-common": { + "name": "grub2-common", + "version": "1:2.02", + "release": "0.87.0.9.el7_9.6", + "newVersion": "1:2.02", + "newRelease": "0.87.0.9.el7_9.6", + "arch": "noarch", + "repository": "" + }, + "grub2-pc": { + "name": "grub2-pc", + "version": "1:2.02", + "release": "0.87.0.9.el7_9.6", + "newVersion": "1:2.02", + "newRelease": "0.87.0.9.el7_9.6", + "arch": "x86_64", + "repository": "" + }, + "grub2-pc-modules": { + "name": "grub2-pc-modules", + "version": "1:2.02", + "release": "0.87.0.9.el7_9.6", + "newVersion": "1:2.02", + "newRelease": "0.87.0.9.el7_9.6", + "arch": "noarch", + "repository": "" + }, + "grub2-tools": { + "name": "grub2-tools", + "version": "1:2.02", + "release": "0.87.0.9.el7_9.6", + "newVersion": "1:2.02", + "newRelease": "0.87.0.9.el7_9.6", + "arch": "x86_64", + "repository": "" + }, + "grub2-tools-extra": { + "name": "grub2-tools-extra", + "version": "1:2.02", + "release": "0.87.0.9.el7_9.6", + "newVersion": "1:2.02", + "newRelease": "0.87.0.9.el7_9.6", + "arch": "x86_64", + "repository": "" + }, + "grub2-tools-minimal": { + "name": "grub2-tools-minimal", + "version": "1:2.02", + "release": "0.87.0.9.el7_9.6", + "newVersion": "1:2.02", + "newRelease": "0.87.0.9.el7_9.6", + "arch": "x86_64", + "repository": "" + }, + "grubby": { + "name": "grubby", + "version": "8.28", + "release": "26.0.3.el7", + "newVersion": "8.28", + "newRelease": "26.0.3.el7", + "arch": "x86_64", + "repository": "" + }, + "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.7.0.1.el7", + "newVersion": "0.252", + "newRelease": "9.7.0.1.el7", + "arch": "x86_64", + "repository": "" + }, + "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.53", + "release": "1.0.1.el7_9.1", + "newVersion": "9.49.53", + "newRelease": "1.0.1.el7_9.1", + "arch": "x86_64", + "repository": "" + }, + "iproute": { + "name": "iproute", + "version": "5.4.0", + "release": "1.0.1.el7", + "newVersion": "5.4.0", + "newRelease": "1.0.1.el7", + "arch": "x86_64", + "repository": "" + }, + "ipset": { + "name": "ipset", + "version": "7.1", + "release": "1.el7", + "newVersion": "7.1", + "newRelease": "1.el7", + "arch": "x86_64", + "repository": "" + }, + "ipset-libs": { + "name": "ipset-libs", + "version": "7.1", + "release": "1.el7", + "newVersion": "7.1", + "newRelease": "1.el7", + "arch": "x86_64", + "repository": "" + }, + "iptables": { + "name": "iptables", + "version": "1.4.21", + "release": "35.0.1.el7", + "newVersion": "1.4.21", + "newRelease": "35.0.1.el7", + "arch": "x86_64", + "repository": "" + }, + "iptables-services": { + "name": "iptables-services", + "version": "1.4.21", + "release": "35.0.1.el7", + "newVersion": "1.4.21", + "newRelease": "35.0.1.el7", + "arch": "x86_64", + "repository": "" + }, + "iputils": { + "name": "iputils", + "version": "20160308", + "release": "10.el7", + "newVersion": "20160308", + "newRelease": "10.el7", + "arch": "x86_64", + "repository": "" + }, + "irqbalance": { + "name": "irqbalance", + "version": "3:1.0.8", + "release": "2.el7", + "newVersion": "3:1.0.8", + "newRelease": "2.el7", + "arch": "x86_64", + "repository": "" + }, + "jbigkit-libs": { + "name": "jbigkit-libs", + "version": "2.0", + "release": "11.el7", + "newVersion": "2.0", + "newRelease": "11.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-tools": { + "name": "kernel-tools", + "version": "3.10.0", + "release": "1160.24.1.el7", + "newVersion": "3.10.0", + "newRelease": "1160.24.1.el7", + "arch": "x86_64", + "repository": "" + }, + "kernel-tools-libs": { + "name": "kernel-tools-libs", + "version": "3.10.0", + "release": "1160.24.1.el7", + "newVersion": "3.10.0", + "newRelease": "1160.24.1.el7", + "arch": "x86_64", + "repository": "" + }, + "kernel-uek": { + "name": "kernel-uek", + "version": "5.4.17", + "release": "2102.200.13.el7uek", + "newVersion": "5.4.17", + "newRelease": "2102.200.13.el7uek", + "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": "" + }, + "kmod": { + "name": "kmod", + "version": "20", + "release": "28.0.3.el7", + "newVersion": "20", + "newRelease": "28.0.3.el7", + "arch": "x86_64", + "repository": "" + }, + "kmod-libs": { + "name": "kmod-libs", + "version": "20", + "release": "28.0.3.el7", + "newVersion": "20", + "newRelease": "28.0.3.el7", + "arch": "x86_64", + "repository": "" + }, + "kpartx": { + "name": "kpartx", + "version": "0.4.9", + "release": "134.0.3.el7_9", + "newVersion": "0.4.9", + "newRelease": "134.0.3.el7_9", + "arch": "x86_64", + "repository": "" + }, + "krb5-libs": { + "name": "krb5-libs", + "version": "1.15.1", + "release": "50.el7", + "newVersion": "1.15.1", + "newRelease": "50.el7", + "arch": "x86_64", + "repository": "" + }, + "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": "15.el7", + "newVersion": "2.2.51", + "newRelease": "15.el7", + "arch": "x86_64", + "repository": "" + }, + "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": "" + }, + "libblkid": { + "name": "libblkid", + "version": "2.23.2", + "release": "65.0.1.el7_9.1", + "newVersion": "2.23.2", + "newRelease": "65.0.1.el7_9.1", + "arch": "x86_64", + "repository": "" + }, + "libcap": { + "name": "libcap", + "version": "2.22", + "release": "11.el7", + "newVersion": "2.22", + "newRelease": "11.el7", + "arch": "x86_64", + "repository": "" + }, + "libcap-ng": { + "name": "libcap-ng", + "version": "0.7.5", + "release": "4.el7", + "newVersion": "0.7.5", + "newRelease": "4.el7", + "arch": "x86_64", + "repository": "" + }, + "libcgroup": { + "name": "libcgroup", + "version": "0.41", + "release": "21.el7", + "newVersion": "0.41", + "newRelease": "21.el7", + "arch": "x86_64", + "repository": "" + }, + "libcom_err": { + "name": "libcom_err", + "version": "1.45.4", + "release": "3.0.5.el7", + "newVersion": "1.45.4", + "newRelease": "3.0.5.el7", + "arch": "x86_64", + "repository": "" + }, + "libcroco": { + "name": "libcroco", + "version": "0.6.12", + "release": "6.el7_9", + "newVersion": "0.6.12", + "newRelease": "6.el7_9", + "arch": "x86_64", + "repository": "" + }, + "libcurl": { + "name": "libcurl", + "version": "7.29.0", + "release": "59.0.1.el7_9.1", + "newVersion": "7.29.0", + "newRelease": "59.0.1.el7_9.1", + "arch": "x86_64", + "repository": "" + }, + "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": "" + }, + "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": "" + }, + "libfastjson": { + "name": "libfastjson", + "version": "0.99.4", + "release": "3.el7", + "newVersion": "0.99.4", + "newRelease": "3.el7", + "arch": "x86_64", + "repository": "" + }, + "libffi": { + "name": "libffi", + "version": "3.0.13", + "release": "19.el7", + "newVersion": "3.0.13", + "newRelease": "19.el7", + "arch": "x86_64", + "repository": "" + }, + "libgcc": { + "name": "libgcc", + "version": "4.8.5", + "release": "44.0.3.el7", + "newVersion": "4.8.5", + "newRelease": "44.0.3.el7", + "arch": "x86_64", + "repository": "" + }, + "libgcrypt": { + "name": "libgcrypt", + "version": "1.5.3", + "release": "14.el7", + "newVersion": "1.5.3", + "newRelease": "14.el7", + "arch": "x86_64", + "repository": "" + }, + "libgomp": { + "name": "libgomp", + "version": "4.8.5", + "release": "44.0.3.el7", + "newVersion": "4.8.5", + "newRelease": "44.0.3.el7", + "arch": "x86_64", + "repository": "" + }, + "libgpg-error": { + "name": "libgpg-error", + "version": "1.12", + "release": "3.el7", + "newVersion": "1.12", + "newRelease": "3.el7", + "arch": "x86_64", + "repository": "" + }, + "libgudev1": { + "name": "libgudev1", + "version": "219", + "release": "78.0.3.el7_9.3", + "newVersion": "219", + "newRelease": "78.0.3.el7_9.3", + "arch": "x86_64", + "repository": "" + }, + "libidn": { + "name": "libidn", + "version": "1.28", + "release": "4.el7", + "newVersion": "1.28", + "newRelease": "4.el7", + "arch": "x86_64", + "repository": "" + }, + "libjpeg-turbo": { + "name": "libjpeg-turbo", + "version": "1.2.90", + "release": "8.el7", + "newVersion": "1.2.90", + "newRelease": "8.el7", + "arch": "x86_64", + "repository": "" + }, + "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": "65.0.1.el7_9.1", + "newVersion": "2.23.2", + "newRelease": "65.0.1.el7_9.1", + "arch": "x86_64", + "repository": "" + }, + "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": "" + }, + "libnl": { + "name": "libnl", + "version": "1.1.4", + "release": "3.el7", + "newVersion": "1.1.4", + "newRelease": "3.el7", + "arch": "x86_64", + "repository": "" + }, + "libovmapi": { + "name": "libovmapi", + "version": "3.2", + "release": "1.el7", + "newVersion": "3.2", + "newRelease": "1.el7", + "arch": "x86_64", + "repository": "" + }, + "libovmapi-devel": { + "name": "libovmapi-devel", + "version": "3.2", + "release": "1.el7", + "newVersion": "3.2", + "newRelease": "1.el7", + "arch": "x86_64", + "repository": "" + }, + "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": "8.el7", + "newVersion": "2:1.5.13", + "newRelease": "8.el7", + "arch": "x86_64", + "repository": "" + }, + "libpwquality": { + "name": "libpwquality", + "version": "1.2.3", + "release": "5.el7", + "newVersion": "1.2.3", + "newRelease": "5.el7", + "arch": "x86_64", + "repository": "" + }, + "libseccomp": { + "name": "libseccomp", + "version": "2.3.1", + "release": "4.el7", + "newVersion": "2.3.1", + "newRelease": "4.el7", + "arch": "x86_64", + "repository": "" + }, + "libselinux": { + "name": "libselinux", + "version": "2.5", + "release": "15.el7", + "newVersion": "2.5", + "newRelease": "15.el7", + "arch": "x86_64", + "repository": "" + }, + "libselinux-python": { + "name": "libselinux-python", + "version": "2.5", + "release": "15.el7", + "newVersion": "2.5", + "newRelease": "15.el7", + "arch": "x86_64", + "repository": "" + }, + "libselinux-utils": { + "name": "libselinux-utils", + "version": "2.5", + "release": "15.el7", + "newVersion": "2.5", + "newRelease": "15.el7", + "arch": "x86_64", + "repository": "" + }, + "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": "65.0.1.el7_9.1", + "newVersion": "2.23.2", + "newRelease": "65.0.1.el7_9.1", + "arch": "x86_64", + "repository": "" + }, + "libss": { + "name": "libss", + "version": "1.45.4", + "release": "3.0.5.el7", + "newVersion": "1.45.4", + "newRelease": "3.0.5.el7", + "arch": "x86_64", + "repository": "" + }, + "libssh2": { + "name": "libssh2", + "version": "1.8.0", + "release": "4.el7", + "newVersion": "1.8.0", + "newRelease": "4.el7", + "arch": "x86_64", + "repository": "" + }, + "libstdc++": { + "name": "libstdc++", + "version": "4.8.5", + "release": "44.0.3.el7", + "newVersion": "4.8.5", + "newRelease": "44.0.3.el7", + "arch": "x86_64", + "repository": "" + }, + "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": "" + }, + "libtiff": { + "name": "libtiff", + "version": "4.0.3", + "release": "35.el7", + "newVersion": "4.0.3", + "newRelease": "35.el7", + "arch": "x86_64", + "repository": "" + }, + "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": "65.0.1.el7_9.1", + "newVersion": "2.23.2", + "newRelease": "65.0.1.el7_9.1", + "arch": "x86_64", + "repository": "" + }, + "libverto": { + "name": "libverto", + "version": "0.2.5", + "release": "4.el7", + "newVersion": "0.2.5", + "newRelease": "4.el7", + "arch": "x86_64", + "repository": "" + }, + "libwebp": { + "name": "libwebp", + "version": "0.3.0", + "release": "7.el7", + "newVersion": "0.3.0", + "newRelease": "7.el7", + "arch": "x86_64", + "repository": "" + }, + "libxenstore": { + "name": "libxenstore", + "version": "4.7.0", + "release": "4.el7", + "newVersion": "4.7.0", + "newRelease": "4.el7", + "arch": "x86_64", + "repository": "" + }, + "libxml2": { + "name": "libxml2", + "version": "2.9.1", + "release": "6.0.1.el7.5", + "newVersion": "2.9.1", + "newRelease": "6.0.1.el7.5", + "arch": "x86_64", + "repository": "" + }, + "libxml2-python": { + "name": "libxml2-python", + "version": "2.9.1", + "release": "6.0.1.el7.5", + "newVersion": "2.9.1", + "newRelease": "6.0.1.el7.5", + "arch": "x86_64", + "repository": "" + }, + "libyaml": { + "name": "libyaml", + "version": "0.1.4", + "release": "11.el7_0", + "newVersion": "0.1.4", + "newRelease": "11.el7_0", + "arch": "x86_64", + "repository": "" + }, + "libzstd": { + "name": "libzstd", + "version": "1.4.4", + "release": "1.el7", + "newVersion": "1.4.4", + "newRelease": "1.el7", + "arch": "x86_64", + "repository": "" + }, + "linux-firmware": { + "name": "linux-firmware", + "version": "999:20201217", + "release": "999.7.git7455a360.el7", + "newVersion": "999:20201217", + "newRelease": "999.7.git7455a360.el7", + "arch": "noarch", + "repository": "" + }, + "logrotate": { + "name": "logrotate", + "version": "3.8.6", + "release": "19.el7", + "newVersion": "3.8.6", + "newRelease": "19.el7", + "arch": "x86_64", + "repository": "" + }, + "lshw": { + "name": "lshw", + "version": "B.02.18", + "release": "17.el7", + "newVersion": "B.02.18", + "newRelease": "17.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.8.3", + "release": "1.el7", + "newVersion": "1.8.3", + "newRelease": "1.el7", + "arch": "x86_64", + "repository": "" + }, + "lzo": { + "name": "lzo", + "version": "2.06", + "release": "8.el7", + "newVersion": "2.06", + "newRelease": "8.el7", + "arch": "x86_64", + "repository": "" + }, + "m2crypto": { + "name": "m2crypto", + "version": "0.21.1", + "release": "17.el7", + "newVersion": "0.21.1", + "newRelease": "17.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": "" + }, + "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": "" + }, + "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": "" + }, + "nspr": { + "name": "nspr", + "version": "4.25.0", + "release": "2.el7_9", + "newVersion": "4.25.0", + "newRelease": "2.el7_9", + "arch": "x86_64", + "repository": "" + }, + "nss": { + "name": "nss", + "version": "3.53.1", + "release": "3.el7_9", + "newVersion": "3.53.1", + "newRelease": "3.el7_9", + "arch": "x86_64", + "repository": "" + }, + "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.53.1", + "release": "6.0.1.el7_9", + "newVersion": "3.53.1", + "newRelease": "6.0.1.el7_9", + "arch": "x86_64", + "repository": "" + }, + "nss-softokn-freebl": { + "name": "nss-softokn-freebl", + "version": "3.53.1", + "release": "6.0.1.el7_9", + "newVersion": "3.53.1", + "newRelease": "6.0.1.el7_9", + "arch": "x86_64", + "repository": "" + }, + "nss-sysinit": { + "name": "nss-sysinit", + "version": "3.53.1", + "release": "3.el7_9", + "newVersion": "3.53.1", + "newRelease": "3.el7_9", + "arch": "x86_64", + "repository": "" + }, + "nss-tools": { + "name": "nss-tools", + "version": "3.53.1", + "release": "3.el7_9", + "newVersion": "3.53.1", + "newRelease": "3.el7_9", + "arch": "x86_64", + "repository": "" + }, + "nss-util": { + "name": "nss-util", + "version": "3.53.1", + "release": "1.el7_9", + "newVersion": "3.53.1", + "newRelease": "1.el7_9", + "arch": "x86_64", + "repository": "" + }, + "numactl-libs": { + "name": "numactl-libs", + "version": "2.0.12", + "release": "5.0.3.el7", + "newVersion": "2.0.12", + "newRelease": "5.0.3.el7", + "arch": "x86_64", + "repository": "" + }, + "openldap": { + "name": "openldap", + "version": "2.4.44", + "release": "22.el7", + "newVersion": "2.4.44", + "newRelease": "22.el7", + "arch": "x86_64", + "repository": "" + }, + "openssh": { + "name": "openssh", + "version": "7.4p1", + "release": "21.0.1.el7", + "newVersion": "7.4p1", + "newRelease": "21.0.1.el7", + "arch": "x86_64", + "repository": "" + }, + "openssh-clients": { + "name": "openssh-clients", + "version": "7.4p1", + "release": "21.0.1.el7", + "newVersion": "7.4p1", + "newRelease": "21.0.1.el7", + "arch": "x86_64", + "repository": "" + }, + "openssh-server": { + "name": "openssh-server", + "version": "7.4p1", + "release": "21.0.1.el7", + "newVersion": "7.4p1", + "newRelease": "21.0.1.el7", + "arch": "x86_64", + "repository": "" + }, + "openssl": { + "name": "openssl", + "version": "1:1.0.2j", + "release": "21.0.1.el7_9", + "newVersion": "1:1.0.2k", + "newRelease": "21.0.1.el7_9", + "arch": "x86_64", + "repository": "" + }, + "openssl-libs": { + "name": "openssl-libs", + "version": "1:1.0.2j", + "release": "21.0.1.el7_9", + "newVersion": "1:1.0.2k", + "newRelease": "21.0.1.el7_9", + "arch": "x86_64", + "repository": "" + }, + "oracle-logos": { + "name": "oracle-logos", + "version": "70.7.0", + "release": "1.0.7.el7", + "newVersion": "70.7.0", + "newRelease": "1.0.7.el7", + "arch": "noarch", + "repository": "" + }, + "oraclelinux-release": { + "name": "oraclelinux-release", + "version": "7:7.9", + "release": "1.0.9.el7", + "newVersion": "7:7.9", + "newRelease": "1.0.9.el7", + "arch": "x86_64", + "repository": "" + }, + "oraclelinux-release-el7": { + "name": "oraclelinux-release-el7", + "version": "1.0", + "release": "16.el7", + "newVersion": "1.0", + "newRelease": "16.el7", + "arch": "x86_64", + "repository": "" + }, + "os-prober": { + "name": "os-prober", + "version": "1.58", + "release": "9.0.1.el7", + "newVersion": "1.58", + "newRelease": "9.0.1.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": "23.el7", + "newVersion": "1.1.8", + "newRelease": "23.el7", + "arch": "x86_64", + "repository": "" + }, + "parted": { + "name": "parted", + "version": "3.1", + "release": "32.0.1.el7", + "newVersion": "3.1", + "newRelease": "32.0.1.el7", + "arch": "x86_64", + "repository": "" + }, + "passwd": { + "name": "passwd", + "version": "0.79", + "release": "6.el7", + "newVersion": "0.79", + "newRelease": "6.el7", + "arch": "x86_64", + "repository": "" + }, + "pciutils": { + "name": "pciutils", + "version": "3.5.1", + "release": "3.el7", + "newVersion": "3.5.1", + "newRelease": "3.el7", + "arch": "x86_64", + "repository": "" + }, + "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": "" + }, + "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": "34.0.1.el7", + "newVersion": "2.5", + "newRelease": "34.0.1.el7", + "arch": "x86_64", + "repository": "" + }, + "policycoreutils-python": { + "name": "policycoreutils-python", + "version": "2.5", + "release": "34.0.1.el7", + "newVersion": "2.5", + "newRelease": "34.0.1.el7", + "arch": "x86_64", + "repository": "" + }, + "popt": { + "name": "popt", + "version": "1.13", + "release": "16.el7", + "newVersion": "1.13", + "newRelease": "16.el7", + "arch": "x86_64", + "repository": "" + }, + "procps-ng": { + "name": "procps-ng", + "version": "3.3.10", + "release": "28.el7", + "newVersion": "3.3.10", + "newRelease": "28.el7", + "arch": "x86_64", + "repository": "" + }, + "psmisc": { + "name": "psmisc", + "version": "22.20", + "release": "17.el7", + "newVersion": "22.20", + "newRelease": "17.el7", + "arch": "x86_64", + "repository": "" + }, + "pth": { + "name": "pth", + "version": "2.0.7", + "release": "23.el7", + "newVersion": "2.0.7", + "newRelease": "23.el7", + "arch": "x86_64", + "repository": "" + }, + "pyOpenSSL": { + "name": "pyOpenSSL", + "version": "0.13.1", + "release": "4.el7", + "newVersion": "0.13.1", + "newRelease": "4.el7", + "arch": "x86_64", + "repository": "" + }, + "pygobject2": { + "name": "pygobject2", + "version": "2.28.6", + "release": "11.el7", + "newVersion": "2.28.6", + "newRelease": "11.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": "90.0.3.el7", + "newVersion": "2.7.5", + "newRelease": "90.0.3.el7", + "arch": "x86_64", + "repository": "" + }, + "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-boto": { + "name": "python-boto", + "version": "2.27.0", + "release": "1.el7", + "newVersion": "2.27.0", + "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-cheetah": { + "name": "python-cheetah", + "version": "2.4.1", + "release": "1.el7", + "newVersion": "2.4.1", + "newRelease": "1.el7", + "arch": "x86_64", + "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-dmidecode": { + "name": "python-dmidecode", + "version": "3.12.2", + "release": "4.el7", + "newVersion": "3.12.2", + "newRelease": "4.el7", + "arch": "x86_64", + "repository": "" + }, + "python-ethtool": { + "name": "python-ethtool", + "version": "0.8", + "release": "8.el7", + "newVersion": "0.8", + "newRelease": "8.el7", + "arch": "x86_64", + "repository": "" + }, + "python-firewall": { + "name": "python-firewall", + "version": "0.6.3", + "release": "12.0.1.el7", + "newVersion": "0.6.3", + "newRelease": "12.0.1.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": "" + }, + "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-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": "90.0.3.el7", + "newVersion": "2.7.5", + "newRelease": "90.0.3.el7", + "arch": "x86_64", + "repository": "" + }, + "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-markdown": { + "name": "python-markdown", + "version": "2.0.1", + "release": "3.1.el7", + "newVersion": "2.0.1", + "newRelease": "3.1.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": "1160.24.1.el7", + "newVersion": "3.10.0", + "newRelease": "1160.24.1.el7", + "arch": "x86_64", + "repository": "" + }, + "python-pillow": { + "name": "python-pillow", + "version": "2.0.0", + "release": "21.gitd1c6db8.el7", + "newVersion": "2.0.0", + "newRelease": "21.gitd1c6db8.el7", + "arch": "x86_64", + "repository": "" + }, + "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-pygments": { + "name": "python-pygments", + "version": "1.4", + "release": "9.el7", + "newVersion": "1.4", + "newRelease": "9.el7", + "arch": "noarch", + "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": "10.el7", + "newVersion": "2.6.0", + "newRelease": "10.el7", + "arch": "noarch", + "repository": "" + }, + "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-simplejson": { + "name": "python-simplejson", + "version": "3.2.0", + "release": "1.el7", + "newVersion": "3.2.0", + "newRelease": "1.el7", + "arch": "x86_64", + "repository": "" + }, + "python-six": { + "name": "python-six", + "version": "1.9.0", + "release": "2.el7", + "newVersion": "1.9.0", + "newRelease": "2.el7", + "arch": "noarch", + "repository": "" + }, + "python-slip": { + "name": "python-slip", + "version": "0.4.0", + "release": "4.el7", + "newVersion": "0.4.0", + "newRelease": "4.el7", + "arch": "noarch", + "repository": "" + }, + "python-slip-dbus": { + "name": "python-slip-dbus", + "version": "0.4.0", + "release": "4.el7", + "newVersion": "0.4.0", + "newRelease": "4.el7", + "arch": "noarch", + "repository": "" + }, + "python-urlgrabber": { + "name": "python-urlgrabber", + "version": "3.10", + "release": "10.el7", + "newVersion": "3.10", + "newRelease": "10.el7", + "arch": "noarch", + "repository": "" + }, + "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": "" + }, + "readline": { + "name": "readline", + "version": "6.2", + "release": "11.el7", + "newVersion": "6.2", + "newRelease": "11.el7", + "arch": "x86_64", + "repository": "" + }, + "redhat-release-server": { + "name": "redhat-release-server", + "version": "1:7.9", + "release": "6.0.1.el7_9", + "newVersion": "1:7.9", + "newRelease": "6.0.1.el7_9", + "arch": "x86_64", + "repository": "" + }, + "rhn-check": { + "name": "rhn-check", + "version": "2.0.2", + "release": "24.0.7.el7", + "newVersion": "2.0.2", + "newRelease": "24.0.7.el7", + "arch": "x86_64", + "repository": "" + }, + "rhn-client-tools": { + "name": "rhn-client-tools", + "version": "2.0.2", + "release": "24.0.7.el7", + "newVersion": "2.0.2", + "newRelease": "24.0.7.el7", + "arch": "x86_64", + "repository": "" + }, + "rhn-setup": { + "name": "rhn-setup", + "version": "2.0.2", + "release": "24.0.7.el7", + "newVersion": "2.0.2", + "newRelease": "24.0.7.el7", + "arch": "x86_64", + "repository": "" + }, + "rhnlib": { + "name": "rhnlib", + "version": "2.5.65", + "release": "8.0.3.el7", + "newVersion": "2.5.65", + "newRelease": "8.0.3.el7", + "arch": "noarch", + "repository": "" + }, + "rhnsd": { + "name": "rhnsd", + "version": "5.0.13", + "release": "10.0.1.el7", + "newVersion": "5.0.13", + "newRelease": "10.0.1.el7", + "arch": "x86_64", + "repository": "" + }, + "rootfiles": { + "name": "rootfiles", + "version": "8.1", + "release": "11.el7", + "newVersion": "8.1", + "newRelease": "11.el7", + "arch": "noarch", + "repository": "" + }, + "rpm": { + "name": "rpm", + "version": "4.11.3", + "release": "45.el7", + "newVersion": "4.11.3", + "newRelease": "45.el7", + "arch": "x86_64", + "repository": "" + }, + "rpm-build-libs": { + "name": "rpm-build-libs", + "version": "4.11.3", + "release": "45.el7", + "newVersion": "4.11.3", + "newRelease": "45.el7", + "arch": "x86_64", + "repository": "" + }, + "rpm-libs": { + "name": "rpm-libs", + "version": "4.11.3", + "release": "45.el7", + "newVersion": "4.11.3", + "newRelease": "45.el7", + "arch": "x86_64", + "repository": "" + }, + "rpm-python": { + "name": "rpm-python", + "version": "4.11.3", + "release": "45.el7", + "newVersion": "4.11.3", + "newRelease": "45.el7", + "arch": "x86_64", + "repository": "" + }, + "rsyslog": { + "name": "rsyslog", + "version": "8.24.0", + "release": "57.el7_9", + "newVersion": "8.24.0", + "newRelease": "57.el7_9", + "arch": "x86_64", + "repository": "" + }, + "sed": { + "name": "sed", + "version": "4.2.2", + "release": "7.el7", + "newVersion": "4.2.2", + "newRelease": "7.el7", + "arch": "x86_64", + "repository": "" + }, + "selinux-policy": { + "name": "selinux-policy", + "version": "3.13.1", + "release": "268.0.1.el7_9.2", + "newVersion": "3.13.1", + "newRelease": "268.0.1.el7_9.2", + "arch": "noarch", + "repository": "" + }, + "selinux-policy-targeted": { + "name": "selinux-policy-targeted", + "version": "3.13.1", + "release": "268.0.1.el7_9.2", + "newVersion": "3.13.1", + "newRelease": "268.0.1.el7_9.2", + "arch": "noarch", + "repository": "" + }, + "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": "11.el7", + "newVersion": "2.8.71", + "newRelease": "11.el7", + "arch": "noarch", + "repository": "" + }, + "sg3_utils": { + "name": "sg3_utils", + "version": "1:1.37", + "release": "19.0.1.el7", + "newVersion": "1:1.37", + "newRelease": "19.0.1.el7", + "arch": "x86_64", + "repository": "" + }, + "sg3_utils-libs": { + "name": "sg3_utils-libs", + "version": "1:1.37", + "release": "19.0.1.el7", + "newVersion": "1:1.37", + "newRelease": "19.0.1.el7", + "arch": "x86_64", + "repository": "" + }, + "shadow-utils": { + "name": "shadow-utils", + "version": "2:4.6", + "release": "5.0.1.el7", + "newVersion": "2:4.6", + "newRelease": "5.0.1.el7", + "arch": "x86_64", + "repository": "" + }, + "shared-mime-info": { + "name": "shared-mime-info", + "version": "1.8", + "release": "5.el7", + "newVersion": "1.8", + "newRelease": "5.el7", + "arch": "x86_64", + "repository": "" + }, + "slang": { + "name": "slang", + "version": "2.2.4", + "release": "11.el7", + "newVersion": "2.2.4", + "newRelease": "11.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": "10.el7_9.1", + "newVersion": "1.8.23", + "newRelease": "10.el7_9.1", + "arch": "x86_64", + "repository": "" + }, + "systemd": { + "name": "systemd", + "version": "219", + "release": "78.0.3.el7_9.3", + "newVersion": "219", + "newRelease": "78.0.3.el7_9.3", + "arch": "x86_64", + "repository": "" + }, + "systemd-libs": { + "name": "systemd-libs", + "version": "219", + "release": "78.0.3.el7_9.3", + "newVersion": "219", + "newRelease": "78.0.3.el7_9.3", + "arch": "x86_64", + "repository": "" + }, + "systemd-sysv": { + "name": "systemd-sysv", + "version": "219", + "release": "78.0.3.el7_9.3", + "newVersion": "219", + "newRelease": "78.0.3.el7_9.3", + "arch": "x86_64", + "repository": "" + }, + "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-libs": { + "name": "tcp_wrappers-libs", + "version": "7.6", + "release": "77.el7", + "newVersion": "7.6", + "newRelease": "77.el7", + "arch": "x86_64", + "repository": "" + }, + "tmpwatch": { + "name": "tmpwatch", + "version": "2.11", + "release": "6.el7", + "newVersion": "2.11", + "newRelease": "6.el7", + "arch": "x86_64", + "repository": "" + }, + "tzdata": { + "name": "tzdata", + "version": "2021a", + "release": "1.el7", + "newVersion": "2021a", + "newRelease": "1.el7", + "arch": "noarch", + "repository": "" + }, + "uname26": { + "name": "uname26", + "version": "1.0", + "release": "1.el7", + "newVersion": "1.0", + "newRelease": "1.el7", + "arch": "x86_64", + "repository": "" + }, + "usermode": { + "name": "usermode", + "version": "1.111", + "release": "6.el7", + "newVersion": "1.111", + "newRelease": "6.el7", + "arch": "x86_64", + "repository": "" + }, + "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": "65.0.1.el7_9.1", + "newVersion": "2.23.2", + "newRelease": "65.0.1.el7_9.1", + "arch": "x86_64", + "repository": "" + }, + "vim-minimal": { + "name": "vim-minimal", + "version": "2:7.4.629", + "release": "8.0.1.el7_9", + "newVersion": "2:7.4.629", + "newRelease": "8.0.1.el7_9", + "arch": "x86_64", + "repository": "" + }, + "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": "" + }, + "xenstoreprovider": { + "name": "xenstoreprovider", + "version": "3.0", + "release": "19.el7", + "newVersion": "3.0", + "newRelease": "19.el7", + "arch": "x86_64", + "repository": "" + }, + "xfsprogs": { + "name": "xfsprogs", + "version": "5.4.0", + "release": "1.0.1.el7", + "newVersion": "5.4.0", + "newRelease": "1.0.1.el7", + "arch": "x86_64", + "repository": "" + }, + "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": "" + }, + "yum": { + "name": "yum", + "version": "3.4.3", + "release": "168.0.3.el7", + "newVersion": "3.4.3", + "newRelease": "168.0.3.el7", + "arch": "noarch", + "repository": "" + }, + "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-ulninfo": { + "name": "yum-plugin-ulninfo", + "version": "0.2", + "release": "13.el7", + "newVersion": "0.2", + "newRelease": "13.el7", + "arch": "noarch", + "repository": "" + }, + "yum-rhn-plugin": { + "name": "yum-rhn-plugin", + "version": "2.0.1", + "release": "10.0.1.el7", + "newVersion": "2.0.1", + "newRelease": "10.0.1.el7", + "arch": "noarch", + "repository": "" + }, + "yum-utils": { + "name": "yum-utils", + "version": "1.1.31", + "release": "54.0.1.el7_8", + "newVersion": "1.1.31", + "newRelease": "54.0.1.el7_8", + "arch": "noarch", + "repository": "" + }, + "zlib": { + "name": "zlib", + "version": "1.2.7", + "release": "19.el7_9", + "newVersion": "1.2.7", + "newRelease": "19.el7_9", + "arch": "x86_64", + "repository": "" + } + }, + "config": { + "scan": { + "logDir": "/var/log/vuls", + "resultsDir": "/home/ubuntu/go/src/github.com/future-architect/vuls/results", + "default": { + "port": "22", + "scanMode": [ + "fast" + ] + }, + "servers": { + "oracle": { + "serverName": "oracle", + "user": "ec2-user", + "host": "13.231.25.205", + "port": "22", + "keyPath": "/home/ubuntu/.ssh/hoge.pem", + "scanMode": [ + "fast-root" + ], + "wordpress": {} + } + }, + "cveDict": { + "Name": "cveDict", + "Type": "sqlite3", + "SQLite3Path": "/home/ubuntu/vulsctl/docker/cve.sqlite3", + "DebugSQL": false + }, + "ovalDict": { + "Name": "ovalDict", + "Type": "sqlite3", + "SQLite3Path": "/home/ubuntu/vulsctl/docker/oval.sqlite3", + "DebugSQL": false + }, + "gost": { + "Name": "gost", + "Type": "sqlite3", + "SQLite3Path": "/home/ubuntu/vulsctl/docker/gost.sqlite3", + "DebugSQL": false + }, + "exploit": { + "Name": "exploit", + "Type": "sqlite3", + "SQLite3Path": "/home/ubuntu/vulsctl/docker/go-exploitdb.sqlite3", + "DebugSQL": false + }, + "metasploit": { + "Name": "metasploit", + "Type": "sqlite3", + "SQLite3Path": "/home/ubuntu/vulsctl/docker/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/results/rails.json b/integration/data/results/rails.json new file mode 100644 index 00000000..0288da00 --- /dev/null +++ b/integration/data/results/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/results/rhel_71.json b/integration/data/results/rhel_71.json new file mode 100755 index 00000000..699a504e --- /dev/null +++ b/integration/data/results/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": "" + }, + "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/hoge.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/results/rhel_8.json b/integration/data/results/rhel_8.json new file mode 100755 index 00000000..018dd4b9 --- /dev/null +++ b/integration/data/results/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": "" + }, + "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/hoge.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/results/ubuntu_1804.json b/integration/data/results/ubuntu_1804.json new file mode 100755 index 00000000..5e3de5ec --- /dev/null +++ b/integration/data/results/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": "" + }, + "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/hoge.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/results/ubuntu_2004.json b/integration/data/results/ubuntu_2004.json new file mode 100755 index 00000000..1bc52032 --- /dev/null +++ b/integration/data/results/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": "" + }, + "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.100", + "port": "22", + "keyPath": "/home/ubuntu/.ssh/hoge.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 + } + } + } +}