diff --git a/core/domain/cve.go b/core/domain/cve.go index 0b3837a..31ec9a9 100644 --- a/core/domain/cve.go +++ b/core/domain/cve.go @@ -5,6 +5,15 @@ import ( "github.com/kubescape/storage/pkg/apis/softwarecomposition/v1beta1" ) +const ( + CriticalSeverity = "Critical" + HighSeverity = "High" + MediumSeverity = "Medium" + LowSeverity = "Low" + NegligibleSeverity = "Negligible" + UnknownSeverity = "Unknown" +) + type CVEExceptions []armotypes.VulnerabilityExceptionPolicy // CVEManifest contains a JSON CVE report manifest with some metadata diff --git a/go.mod b/go.mod index f23ecf5..7b66210 100644 --- a/go.mod +++ b/go.mod @@ -23,11 +23,11 @@ require ( github.com/google/uuid v1.3.0 github.com/hashicorp/go-multierror v1.1.1 github.com/kinbiko/jsonassert v1.1.1 - github.com/kubescape/go-logger v0.0.11 + github.com/kubescape/go-logger v0.0.12 github.com/kubescape/k8s-interface v0.0.127 - github.com/kubescape/storage v0.2.0 + github.com/kubescape/storage v0.0.8 github.com/spdx/tools-golang v0.5.0-rc1 - github.com/spf13/viper v1.15.0 + github.com/spf13/viper v1.16.0 github.com/stretchr/testify v1.8.3 go.opentelemetry.io/contrib/instrumentation/github.com/gin-gonic/gin/otelgin v0.40.0 go.opentelemetry.io/otel v1.14.0 @@ -39,11 +39,11 @@ require ( ) require ( - cloud.google.com/go v0.107.0 // indirect - cloud.google.com/go/compute v1.18.0 // indirect + cloud.google.com/go v0.110.0 // indirect + cloud.google.com/go/compute v1.19.0 // indirect cloud.google.com/go/compute/metadata v0.2.3 // indirect - cloud.google.com/go/iam v0.8.0 // indirect - cloud.google.com/go/storage v1.27.0 // indirect + cloud.google.com/go/iam v0.13.0 // indirect + cloud.google.com/go/storage v1.28.1 // indirect github.com/CycloneDX/cyclonedx-go v0.7.1 // indirect github.com/DataDog/zstd v1.4.5 // indirect github.com/Masterminds/goutils v1.1.1 // indirect @@ -88,6 +88,7 @@ require ( github.com/gin-contrib/sse v0.1.0 // indirect github.com/go-logr/logr v1.2.3 // indirect github.com/go-logr/stdr v1.2.2 // indirect + github.com/go-logr/zapr v1.2.3 // indirect github.com/go-openapi/jsonpointer v0.19.6 // indirect github.com/go-openapi/jsonreference v0.20.1 // indirect github.com/go-openapi/swag v0.22.3 // indirect @@ -98,7 +99,7 @@ require ( github.com/go-test/deep v1.1.0 // indirect github.com/goccy/go-json v0.10.2 // indirect github.com/gogo/protobuf v1.3.2 // indirect - github.com/golang/glog v1.0.0 // indirect + github.com/golang/glog v1.1.0 // indirect github.com/golang/groupcache v0.0.0-20210331224755-41bb18bfe9da // indirect github.com/golang/protobuf v1.5.3 // indirect github.com/golang/snappy v0.0.4 // indirect @@ -106,8 +107,9 @@ require ( github.com/google/go-cmp v0.5.9 // indirect github.com/google/gofuzz v1.2.0 // indirect github.com/google/licensecheck v0.3.1 // indirect - github.com/googleapis/enterprise-certificate-proxy v0.2.1 // indirect - github.com/googleapis/gax-go/v2 v2.7.0 // indirect + github.com/google/s2a-go v0.1.3 // indirect + github.com/googleapis/enterprise-certificate-proxy v0.2.3 // indirect + github.com/googleapis/gax-go/v2 v2.8.0 // indirect github.com/grpc-ecosystem/grpc-gateway/v2 v2.15.0 // indirect github.com/hako/durafmt v0.0.0-20210608085754-5c1018a4e16b // indirect github.com/hashicorp/errwrap v1.1.0 // indirect @@ -166,7 +168,7 @@ require ( github.com/shopspring/decimal v1.2.0 // indirect github.com/sirupsen/logrus v1.9.0 // indirect github.com/spf13/afero v1.9.5 // indirect - github.com/spf13/cast v1.5.0 // indirect + github.com/spf13/cast v1.5.1 // indirect github.com/spf13/jwalterweatherman v1.1.0 // indirect github.com/spf13/pflag v1.0.5 // indirect github.com/stripe/stripe-go/v74 v74.8.0 // indirect @@ -206,7 +208,7 @@ require ( golang.org/x/exp v0.0.0-20230202163644-54bba9f4231b // indirect golang.org/x/mod v0.9.0 // indirect golang.org/x/net v0.10.0 // indirect - golang.org/x/oauth2 v0.6.0 // indirect + golang.org/x/oauth2 v0.7.0 // indirect golang.org/x/sync v0.1.0 // indirect golang.org/x/sys v0.8.0 // indirect golang.org/x/term v0.8.0 // indirect @@ -214,10 +216,10 @@ require ( golang.org/x/time v0.2.0 // indirect golang.org/x/tools v0.7.0 // indirect golang.org/x/xerrors v0.0.0-20220907171357-04be3eba64a2 // indirect - google.golang.org/api v0.108.0 // indirect + google.golang.org/api v0.122.0 // indirect google.golang.org/appengine v1.6.7 // indirect - google.golang.org/genproto v0.0.0-20230124163310-31e0e69b6fc2 // indirect - google.golang.org/grpc v1.52.0 // indirect + google.golang.org/genproto v0.0.0-20230410155749-daa745c078e1 // indirect + google.golang.org/grpc v1.55.0 // indirect google.golang.org/protobuf v1.30.0 // indirect gopkg.in/inf.v0 v0.9.1 // indirect gopkg.in/ini.v1 v1.67.0 // indirect diff --git a/go.sum b/go.sum index 050d8e8..e77caa7 100644 --- a/go.sum +++ b/go.sum @@ -35,8 +35,8 @@ cloud.google.com/go v0.100.2/go.mod h1:4Xra9TjzAeYHrl5+oeLlzbM2k3mjVhZh4UqTZ//w9 cloud.google.com/go v0.102.0/go.mod h1:oWcCzKlqJ5zgHQt9YsaeTY9KzIvjyy0ArmiBUgpQ+nc= cloud.google.com/go v0.102.1/go.mod h1:XZ77E9qnTEnrgEOvr4xzfdX5TRo7fB4T2F4O6+34hIU= cloud.google.com/go v0.104.0/go.mod h1:OO6xxXdJyvuJPcEPBLN9BJPD+jep5G1+2U5B5gkRYtA= -cloud.google.com/go v0.107.0 h1:qkj22L7bgkl6vIeZDlOY2po43Mx/TIa2Wsa7VR+PEww= -cloud.google.com/go v0.107.0/go.mod h1:wpc2eNrD7hXUTy8EKS10jkxpZBjASrORK7goS+3YX2I= +cloud.google.com/go v0.110.0 h1:Zc8gqp3+a9/Eyph2KDmcGaPtbKRIoqq4YTlL4NMD0Ys= +cloud.google.com/go v0.110.0/go.mod h1:SJnCLqQ0FCFGSZMUNUf84MV3Aia54kn7pi8st7tMzaY= cloud.google.com/go/aiplatform v1.22.0/go.mod h1:ig5Nct50bZlzV6NvKaTwmplLLddFx0YReh9WfTO5jKw= cloud.google.com/go/aiplatform v1.24.0/go.mod h1:67UUvRBKG6GTayHKV8DBv2RtR1t93YRu5B1P3x99mYY= cloud.google.com/go/analytics v0.11.0/go.mod h1:DjEWCu41bVbYcKyvlws9Er60YE4a//bK6mnhWvQeFNI= @@ -73,8 +73,8 @@ cloud.google.com/go/compute v1.6.0/go.mod h1:T29tfhtVbq1wvAPo0E3+7vhgmkOYeXjhFvz cloud.google.com/go/compute v1.6.1/go.mod h1:g85FgpzFvNULZ+S8AYq87axRKuf2Kh7deLqV/jJ3thU= cloud.google.com/go/compute v1.7.0/go.mod h1:435lt8av5oL9P3fv1OEzSbSUe+ybHXGMPQHHZWZxy9U= cloud.google.com/go/compute v1.10.0/go.mod h1:ER5CLbMxl90o2jtNbGSbtfOpQKR0t15FOtRsugnLrlU= -cloud.google.com/go/compute v1.18.0 h1:FEigFqoDbys2cvFkZ9Fjq4gnHBP55anJ0yQyau2f9oY= -cloud.google.com/go/compute v1.18.0/go.mod h1:1X7yHxec2Ga+Ss6jPyjxRxpu2uu7PLgsOVXvgU0yacs= +cloud.google.com/go/compute v1.19.0 h1:+9zda3WGgW1ZSTlVppLCYFIr48Pa35q1uG2N1itbCEQ= +cloud.google.com/go/compute v1.19.0/go.mod h1:rikpw2y+UMidAe9tISo04EHNOIf42RLYF/q8Bs93scU= cloud.google.com/go/compute/metadata v0.2.3 h1:mg4jlk7mCAj6xXp9UJ4fjI9VUI5rubuGBW5aJ7UnBMY= cloud.google.com/go/compute/metadata v0.2.3/go.mod h1:VAV5nSsACxMJvgaAuX6Pk2AawlZn8kiOGuCv6gTkwuA= cloud.google.com/go/containeranalysis v0.5.1/go.mod h1:1D92jd8gRR/c0fGMlymRgxWD3Qw9C1ff6/T7mLgVL8I= @@ -115,13 +115,13 @@ cloud.google.com/go/gkehub v0.10.0/go.mod h1:UIPwxI0DsrpsVoWpLB0stwKCP+WFVG9+y97 cloud.google.com/go/grafeas v0.2.0/go.mod h1:KhxgtF2hb0P191HlY5besjYm6MqTSTj3LSI+M+ByZHc= cloud.google.com/go/iam v0.3.0/go.mod h1:XzJPvDayI+9zsASAFO68Hk07u3z+f+JrT2xXNdp4bnY= cloud.google.com/go/iam v0.5.0/go.mod h1:wPU9Vt0P4UmCux7mqtRu6jcpPAb74cP1fh50J3QpkUc= -cloud.google.com/go/iam v0.8.0 h1:E2osAkZzxI/+8pZcxVLcDtAQx/u+hZXVryUaYQ5O0Kk= -cloud.google.com/go/iam v0.8.0/go.mod h1:lga0/y3iH6CX7sYqypWJ33hf7kkfXJag67naqGESjkE= +cloud.google.com/go/iam v0.13.0 h1:+CmB+K0J/33d0zSQ9SlFWUeCCEn5XJA0ZMZ3pHE9u8k= +cloud.google.com/go/iam v0.13.0/go.mod h1:ljOg+rcNfzZ5d6f1nAUJ8ZIxOaZUVoS14bKCtaLZ/D0= cloud.google.com/go/language v1.4.0/go.mod h1:F9dRpNFQmJbkaop6g0JhSBXCNlO90e1KWx5iDdxbWic= cloud.google.com/go/language v1.6.0/go.mod h1:6dJ8t3B+lUYfStgls25GusK04NLh3eDLQnWM3mdEbhI= cloud.google.com/go/lifesciences v0.5.0/go.mod h1:3oIKy8ycWGPUyZDR/8RNnTOYevhaMLqh5vLUXs9zvT8= cloud.google.com/go/lifesciences v0.6.0/go.mod h1:ddj6tSX/7BOnhxCSd3ZcETvtNr8NZ6t/iPhY2Tyfu08= -cloud.google.com/go/longrunning v0.3.0 h1:NjljC+FYPV3uh5/OwWT6pVU+doBqMg2x/rZlE+CamDs= +cloud.google.com/go/longrunning v0.4.1 h1:v+yFJOfKC3yZdY6ZUI933pIYdhyhV8S3NpWrXWmg7jM= cloud.google.com/go/mediatranslation v0.5.0/go.mod h1:jGPUhGTybqsPQn91pNXw0xVHfuJ3leR1wj37oU3y1f4= cloud.google.com/go/mediatranslation v0.6.0/go.mod h1:hHdBCTYNigsBxshbznuIMFNe5QXEowAuNmmC7h8pu5w= cloud.google.com/go/memcache v1.4.0/go.mod h1:rTOfiGZtJX1AaFUrOgsMHX5kAzaTQ8azHiuDoTPzNsE= @@ -178,8 +178,9 @@ cloud.google.com/go/storage v1.10.0/go.mod h1:FLPqc6j+Ki4BU591ie1oL6qBQGu2Bl/tZ9 cloud.google.com/go/storage v1.14.0/go.mod h1:GrKmX003DSIwi9o29oFT7YDnHYwZoctc3fOKtUw0Xmo= cloud.google.com/go/storage v1.22.1/go.mod h1:S8N1cAStu7BOeFfE8KAQzmyyLkK8p/vmRq6kuBTW58Y= cloud.google.com/go/storage v1.23.0/go.mod h1:vOEEDNFnciUMhBeT6hsJIn3ieU5cFRmzeLgDvXzfIXc= -cloud.google.com/go/storage v1.27.0 h1:YOO045NZI9RKfCj1c5A/ZtuuENUc8OAW+gHdGnDgyMQ= cloud.google.com/go/storage v1.27.0/go.mod h1:x9DOL8TK/ygDUMieqwfhdpQryTeEkhGKMi80i/iqR2s= +cloud.google.com/go/storage v1.28.1 h1:F5QDG5ChchaAVQhINh24U99OWHURqrW8OmQcGKXcbgI= +cloud.google.com/go/storage v1.28.1/go.mod h1:Qnisd4CqDdo6BGs2AD5LLnEsmSQ80wQ5ogcBBKhU86Y= cloud.google.com/go/talent v1.1.0/go.mod h1:Vl4pt9jiHKvOgF9KoZo6Kob9oV4lwd/ZD5Cto54zDRw= cloud.google.com/go/talent v1.2.0/go.mod h1:MoNF9bhFQbiJ6eFD3uSsg0uBALw4n4gaCaEjBw9zo8g= cloud.google.com/go/videointelligence v1.6.0/go.mod h1:w0DIDlVRKtwPCn/C4iwZIJdvC69yInhW0cfi+p546uU= @@ -274,6 +275,7 @@ github.com/aws/aws-sdk-go v1.44.180/go.mod h1:aVsgQcEevwlmQ7qHE9I3h+dtQgpqhFB+i8 github.com/becheran/wildmatch-go v1.0.0 h1:mE3dGGkTmpKtT4Z+88t8RStG40yN9T+kFEGj2PZFSzA= github.com/becheran/wildmatch-go v1.0.0/go.mod h1:gbMvj0NtVdJ15Mg/mH9uxk2R1QCistMyU7d9KFzroX4= github.com/benbjohnson/clock v1.1.0 h1:Q92kusRqC1XV2MjkWETPvjJVqKetz1OzxZB7mHJLju8= +github.com/benbjohnson/clock v1.1.0/go.mod h1:J11/hYXuz8f4ySSvYwY0FKfm+ezbsZBKZxNJlLklBHA= 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= @@ -385,7 +387,7 @@ github.com/fatih/set v0.2.1/go.mod h1:+RKtMCH+favT2+3YecHGxcc0b4KyVWA1QWWJUs4E0C github.com/flynn/go-shlex v0.0.0-20150515145356-3f9db97f8568/go.mod h1:xEzjJPgXI435gkrCt3MPfRiAkVrwSbHsst4LCFVfpJc= github.com/francoispqt/gojay v1.2.13 h1:d2m3sFjloqoIUQU3TsHBgj6qg/BVGlTBeHDUmyJnXKk= github.com/francoispqt/gojay v1.2.13/go.mod h1:ehT5mTG4ua4581f1++1WLG0vPdaA9HaiDsoyrBGkyDY= -github.com/frankban/quicktest v1.14.3 h1:FJKSZTDHjyhriyC81FLQ0LY93eSai0ZyR/ZIkd3ZUKE= +github.com/frankban/quicktest v1.14.4 h1:g2rn0vABPOOXmZUj+vbmUp0lPoXEMuhTpIluN0XL9UY= github.com/fsnotify/fsnotify v1.4.7/go.mod h1:jwhsz4b93w/PPRr/qN1Yymfu8t87LnFCMoQvtojpjFo= github.com/fsnotify/fsnotify v1.5.1/go.mod h1:T3375wBYaZdLLcVNkcVbzGHY7f1l/uK5T5Ai1i3InKU= github.com/fsnotify/fsnotify v1.6.0 h1:n+5WquG0fcWoWp6xPWfHdbskMCQaFnG6PfBrh1Ky4HY= @@ -416,7 +418,8 @@ github.com/go-logr/logr v1.2.3 h1:2DntVwHkVopvECVRSlL5PSo9eG+cAkDCuckLubN+rq0= github.com/go-logr/logr v1.2.3/go.mod h1:jdQByPbusPIv2/zmleS9BjJVeZ6kBagPoEUsqbVz/1A= github.com/go-logr/stdr v1.2.2 h1:hSWxHoqTgW2S2qGc0LTAI563KZ5YKYRhT3MFKZMbjag= github.com/go-logr/stdr v1.2.2/go.mod h1:mMo/vtBO5dYbehREoey6XUKy/eSumjCCveDpRre4VKE= -github.com/go-logr/zapr v1.2.0 h1:n4JnPI1T3Qq1SFEi/F8rwLrZERp2bso19PJZDB9dayk= +github.com/go-logr/zapr v1.2.3 h1:a9vnzlIBPQBBkeaR9IuMUfmVOrQlkoC4YfPoFkX3T7A= +github.com/go-logr/zapr v1.2.3/go.mod h1:eIauM6P8qSvTw5o2ez6UEAfGjQKrxQTl5EoK+Qa2oG4= github.com/go-openapi/jsonpointer v0.19.6 h1:eCs3fxoIi3Wh6vtgmLTOjdhSpiqphQ+DaPn38N2ZdrE= github.com/go-openapi/jsonpointer v0.19.6/go.mod h1:osyAmYz/mB/C3I+WsTTSgw1ONzaLJoLCyoi6/zppojs= github.com/go-openapi/jsonreference v0.20.1 h1:FBLnyygC4/IZZr893oiomc9XaghoveYTrLC1F86HID8= @@ -443,8 +446,9 @@ github.com/gogo/protobuf v1.1.1/go.mod h1:r8qH/GZQm5c6nD/R0oafs1akxWv10x8SbQlK7a github.com/gogo/protobuf v1.3.2 h1:Ov1cvc58UF3b5XjBnZv7+opcTcQFZebYjWzi34vdm4Q= github.com/gogo/protobuf v1.3.2/go.mod h1:P1XiOD3dCwIKUDQYPy72D8LYyHL2YPYrpS2s69NZV8Q= github.com/golang/glog v0.0.0-20160126235308-23def4e6c14b/go.mod h1:SBH7ygxi8pfUlaOkMMuAQtPIUF8ecWP5IEl/CR7VP2Q= -github.com/golang/glog v1.0.0 h1:nfP3RFugxnNRyKgeWd4oI1nYvXpxrx8ck8ZrcizshdQ= github.com/golang/glog v1.0.0/go.mod h1:EWib/APOK0SL3dFbYqvxE3UYd8E6s1ouQ7iEp/0LWV4= +github.com/golang/glog v1.1.0 h1:/d3pCKDPWNnvIWe0vVUpNP32qc8U3PDVxySP/y360qE= +github.com/golang/glog v1.1.0/go.mod h1:pfYeQZ3JWZoXTV5sFc986z3HTpwQs9At6P4ImfuP3NQ= github.com/golang/groupcache v0.0.0-20190702054246-869f871628b6/go.mod h1:cIg4eruTrX1D+g88fzRXU5OdNfaM+9IcxsU14FzY7Hc= github.com/golang/groupcache v0.0.0-20191227052852-215e87163ea7/go.mod h1:cIg4eruTrX1D+g88fzRXU5OdNfaM+9IcxsU14FzY7Hc= github.com/golang/groupcache v0.0.0-20200121045136-8c9f03a8e57e/go.mod h1:cIg4eruTrX1D+g88fzRXU5OdNfaM+9IcxsU14FzY7Hc= @@ -534,6 +538,8 @@ github.com/google/pprof v0.0.0-20210601050228-01bbb1931b22/go.mod h1:kpwsk12EmLe github.com/google/pprof v0.0.0-20210609004039-a478d1d731e9/go.mod h1:kpwsk12EmLew5upagYY7GY0pfYCcupk39gWOCRROcvE= github.com/google/pprof v0.0.0-20210720184732-4bb14d4b1be1/go.mod h1:kpwsk12EmLew5upagYY7GY0pfYCcupk39gWOCRROcvE= github.com/google/renameio v0.1.0/go.mod h1:KWCgfxg9yswjAJkECMjeO8J8rahYeXnNhOm40UhjYkI= +github.com/google/s2a-go v0.1.3 h1:FAgZmpLl/SXurPEZyCMPBIiiYeTbqfjlbdnCNTAkbGE= +github.com/google/s2a-go v0.1.3/go.mod h1:Ej+mSEMGRnqRzjc7VtF+jdBwYG5fuJfiZ8ELkjEwM0A= github.com/google/uuid v1.1.1/go.mod h1:TIyPZe4MgqvfeYDBFedMoGGpEw/LqOeaOT+nhxU+yHo= github.com/google/uuid v1.1.2/go.mod h1:TIyPZe4MgqvfeYDBFedMoGGpEw/LqOeaOT+nhxU+yHo= github.com/google/uuid v1.3.0 h1:t6JiXgmwXMjEs8VusXIJk2BXHsn+wx8BZdTaoZ5fu7I= @@ -541,8 +547,8 @@ github.com/google/uuid v1.3.0/go.mod h1:TIyPZe4MgqvfeYDBFedMoGGpEw/LqOeaOT+nhxU+ github.com/googleapis/enterprise-certificate-proxy v0.0.0-20220520183353-fd19c99a87aa/go.mod h1:17drOmN3MwGY7t0e+Ei9b45FFGA3fBs3x36SsCg1hq8= github.com/googleapis/enterprise-certificate-proxy v0.1.0/go.mod h1:17drOmN3MwGY7t0e+Ei9b45FFGA3fBs3x36SsCg1hq8= github.com/googleapis/enterprise-certificate-proxy v0.2.0/go.mod h1:8C0jb7/mgJe/9KK8Lm7X9ctZC2t60YyIpYEI16jx0Qg= -github.com/googleapis/enterprise-certificate-proxy v0.2.1 h1:RY7tHKZcRlk788d5WSo/e83gOyyy742E8GSs771ySpg= -github.com/googleapis/enterprise-certificate-proxy v0.2.1/go.mod h1:AwSRAtLfXpU5Nm3pW+v7rGDHp09LsPtGY9MduiEsR9k= +github.com/googleapis/enterprise-certificate-proxy v0.2.3 h1:yk9/cqRKtT9wXZSsRH9aurXEpJX+U6FLtpYTdC3R06k= +github.com/googleapis/enterprise-certificate-proxy v0.2.3/go.mod h1:AwSRAtLfXpU5Nm3pW+v7rGDHp09LsPtGY9MduiEsR9k= github.com/googleapis/gax-go v2.0.0+incompatible/go.mod h1:SFVmujtThgffbyetf+mdk2eWhX2bMyUtNHzFKcPA9HY= github.com/googleapis/gax-go/v2 v2.0.3/go.mod h1:LLvjysVCY1JZeum8Z6l8qUty8fiNwE08qbEPm1M08qg= github.com/googleapis/gax-go/v2 v2.0.4/go.mod h1:0Wqv26UfaUD9n4G6kQubkQ+KchISgw+vpHVxEJEs9eg= @@ -554,8 +560,8 @@ github.com/googleapis/gax-go/v2 v2.3.0/go.mod h1:b8LNqSzNabLiUpXKkY7HAR5jr6bIT99 github.com/googleapis/gax-go/v2 v2.4.0/go.mod h1:XOTVJ59hdnfJLIP/dh8n5CGryZR2LxK9wbMD5+iXC6c= github.com/googleapis/gax-go/v2 v2.5.1/go.mod h1:h6B0KMMFNtI2ddbGJn3T3ZbwkeT6yqEF02fYlzkUCyo= github.com/googleapis/gax-go/v2 v2.6.0/go.mod h1:1mjbznJAPHFpesgE5ucqfYEscaz5kMdcIDwU/6+DDoY= -github.com/googleapis/gax-go/v2 v2.7.0 h1:IcsPKeInNvYi7eqSaDjiZqDDKu5rsmunY0Y1YupQSSQ= -github.com/googleapis/gax-go/v2 v2.7.0/go.mod h1:TEop28CZZQ2y+c0VxMUmu1lV+fQx57QpBWsYpwqHJx8= +github.com/googleapis/gax-go/v2 v2.8.0 h1:UBtEZqx1bjXtOQ5BVTkuYghXrr3N4V123VKJK67vJZc= +github.com/googleapis/gax-go/v2 v2.8.0/go.mod h1:4orTrqY6hXxxaUL4LHIPl6lGo8vAE38/qKbhSAKP6QI= github.com/googleapis/go-type-adapters v1.0.0/go.mod h1:zHW75FOG2aur7gAO2B+MLby+cLsWGBF62rFAi7WjWO4= github.com/googleapis/google-cloud-go-testing v0.0.0-20200911160855-bcd43fbb19e8/go.mod h1:dvDLG8qkwmyD9a/MJJN3XJcT3xFxOKAvTZGvuZmac9g= github.com/gookit/color v1.2.5/go.mod h1:AhIE+pS6D4Ql0SQWbBeXPHw7gY0/sjHoA4s/n1KB7xg= @@ -672,18 +678,18 @@ github.com/kr/logfmt v0.0.0-20140226030751-b84e30acd515/go.mod h1:+0opPa2QZZtGFB github.com/kr/pretty v0.1.0/go.mod h1:dAy3ld7l9f0ibDNOQOHHMYYIIbhfbHSm3C4ZsoJORNo= github.com/kr/pretty v0.2.0/go.mod h1:ipq/a2n7PKx3OHsz4KJII5eveXtPO4qwEXGdVfWzfnI= github.com/kr/pretty v0.2.1/go.mod h1:ipq/a2n7PKx3OHsz4KJII5eveXtPO4qwEXGdVfWzfnI= -github.com/kr/pretty v0.3.0 h1:WgNl7dwNpEZ6jJ9k1snq4pZsg7DOEN8hP9Xw0Tsjwk0= +github.com/kr/pretty v0.3.1 h1:flRD4NNwYAUpkphVc1HcthR4KEIFJ65n8Mw5qdRn3LE= github.com/kr/pty v1.1.1/go.mod h1:pFQYn66WHrOpPYNljwOMqo10TkYh1fy3cYio2l3bCsQ= github.com/kr/pty v1.1.3/go.mod h1:pFQYn66WHrOpPYNljwOMqo10TkYh1fy3cYio2l3bCsQ= github.com/kr/text v0.1.0/go.mod h1:4Jbv+DJW3UT/LiOwJeYQe1efqtUx/iVham/4vfdArNI= github.com/kr/text v0.2.0 h1:5Nx0Ya0ZqY2ygV366QzturHI13Jq95ApcVaJBhpS+AY= github.com/kr/text v0.2.0/go.mod h1:eLer722TekiGuMkidMxC/pM04lWEeraHUUmBw8l2grE= -github.com/kubescape/go-logger v0.0.11 h1:oucpq2S7+DT7O+UclG5IrmHado/tj6+IkYf9czVk/aY= -github.com/kubescape/go-logger v0.0.11/go.mod h1:yGiKBJ2lhq/kxzY/MVYDREL9fLV3RGD6gv+UFjslaew= +github.com/kubescape/go-logger v0.0.12 h1:g48TfAS0PhGlhPwBONs5GOSVqiSKMpucHh1lsXudTiA= +github.com/kubescape/go-logger v0.0.12/go.mod h1:yGiKBJ2lhq/kxzY/MVYDREL9fLV3RGD6gv+UFjslaew= github.com/kubescape/k8s-interface v0.0.127 h1:9H4TxbUliliQe4eY+jsZDOaYRWMEK/jriMBj4cMX73A= github.com/kubescape/k8s-interface v0.0.127/go.mod h1:ENpA9SkkS6E3PIT+AaMu/JGkuyE04aUamY+a7WLqsJQ= -github.com/kubescape/storage v0.2.0 h1:WZXy4Dyjf5ltEMtk0SOD9RFL1haS9ffFPGfs1gUV1aM= -github.com/kubescape/storage v0.2.0/go.mod h1:sPE749pFNoxoskBn6JTpNQyguF2rv/u2kYqzRd3MvXw= +github.com/kubescape/storage v0.0.8 h1:QnFdBASsiner/TY0lKpimEk/dbxMDHPnPyzCVJKCuW0= +github.com/kubescape/storage v0.0.8/go.mod h1:LDJDA+AxRosIer/1Ma/HSf2SvXgxCH8bYQ9eejAAv8s= github.com/leodido/go-urn v1.2.4 h1:XlAE/cm/ms7TE/VMVoduSpNBoyc2dOxHs5MZSwAN63Q= github.com/leodido/go-urn v1.2.4/go.mod h1:7ZrI8mTSeBSHl/UaRyKQW1qZeMgak41ANeCNaVckg+4= github.com/logrusorgru/aurora v0.0.0-20200102142835-e9ef32dff381 h1:bqDmpDG49ZRnB5PcgP0RXtQvnMSgIF14M7CBd2shtXs= @@ -817,7 +823,7 @@ 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 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/rogpeppe/go-internal v1.8.0 h1:FCbCCtXNOY3UtUuHUYaghJg4y7Fd14rXifAYUAtL9R8= +github.com/rogpeppe/go-internal v1.9.0 h1:73kH8U+JUqXU8lRuOHeVHaa/SZPifC7BkcraZVejAe8= 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= github.com/russross/blackfriday/v2 v2.1.0/go.mod h1:+Rmxgy9KzJVeS9/2gXHxylqXiyQDYRxCVz55jmeOWTM= @@ -875,8 +881,8 @@ github.com/spf13/afero v1.9.5 h1:stMpOSZFs//0Lv29HduCmli3GUfpFoF3Y1Q/aXj/wVM= github.com/spf13/afero v1.9.5/go.mod h1:UBogFpq8E9Hx+xc5CNTTEpTnuHVmXDwZcZcE1eb/UhQ= github.com/spf13/cast v1.3.1/go.mod h1:Qx5cxh0v+4UWYiBimWS+eyWzqEqokIECu5etghLkUJE= github.com/spf13/cast v1.4.1/go.mod h1:Qx5cxh0v+4UWYiBimWS+eyWzqEqokIECu5etghLkUJE= -github.com/spf13/cast v1.5.0 h1:rj3WzYc11XZaIZMPKmwP96zkFEnnAmV8s6XbB2aY32w= -github.com/spf13/cast v1.5.0/go.mod h1:SpXXQ5YoyJw6s3/6cMTQuxvgRl3PCJiyaX9p6b155UU= +github.com/spf13/cast v1.5.1 h1:R+kOtfhWQE6TVQzY+4D7wJLBgkdVasCEFxSUBYBYIlA= +github.com/spf13/cast v1.5.1/go.mod h1:b9PdjNptOpzXr7Rq1q9gJML/2cdGQAo69NKzQ10KN48= github.com/spf13/cobra v1.3.0/go.mod h1:BrRVncBjOJa/eUcVVm9CE+oC6as8k+VYr4NY7WCi9V4= github.com/spf13/jwalterweatherman v1.1.0 h1:ue6voC5bR5F8YxI5S67j9i582FU4Qvo2bmqnqMYADFk= github.com/spf13/jwalterweatherman v1.1.0/go.mod h1:aNWZUN0dPAAO/Ljvb5BEdw96iTZ0EXowPYD95IqWIGo= @@ -884,8 +890,8 @@ github.com/spf13/pflag v1.0.3/go.mod h1:DYY7MBk1bdzusC3SYhjObp+wFpr4gzcvqqNjLnIn github.com/spf13/pflag v1.0.5 h1:iy+VFUOCP1a+8yFto/drg2CJ5u0yRoB7fZw3DKv/JXA= github.com/spf13/pflag v1.0.5/go.mod h1:McXfInJRrz4CZXVZOBLb0bTZqETkiAhM9Iw0y3An2Bg= github.com/spf13/viper v1.10.0/go.mod h1:SoyBPwAtKDzypXNDFKN5kzH7ppppbGZtls1UpIy5AsM= -github.com/spf13/viper v1.15.0 h1:js3yy885G8xwJa6iOISGFwd+qlUo5AvyXb7CiihdtiU= -github.com/spf13/viper v1.15.0/go.mod h1:fFcTBJxvhhzSJiZy8n+PeW6t8l+KeT/uTARa0jHOQLA= +github.com/spf13/viper v1.16.0 h1:rGGH0XDZhdUOryiDWjmIvUSWpbNqisK8Wk0Vyefw8hc= +github.com/spf13/viper v1.16.0/go.mod h1:yg78JgCJcbrQOvV9YLXgkLaZqUidkY9K+Dd1FofRzQg= github.com/stoewer/go-strcase v1.2.0/go.mod h1:IBiWB2sKIp3wVVQ3Y035++gc+knqhUQag1KpM8ahLw8= 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= @@ -1005,6 +1011,7 @@ go.uber.org/multierr v1.6.0/go.mod h1:cdWPpRnG4AhwMwsgIHip0KRBQjJy5kYEpYjJxpXp9i go.uber.org/multierr v1.9.0 h1:7fIwc/ZtS0q++VgcfqFDxSBZVv/Xo49/SYnDFupUwlI= go.uber.org/multierr v1.9.0/go.mod h1:X2jQV1h+kxSjClGpnseKVIxpmcjrj7MNnI0bnlfKTVQ= go.uber.org/zap v1.17.0/go.mod h1:MXVU+bhUf/A7Xi2HNOnopQOrmycQ5Ih87HtOu4q5SSo= +go.uber.org/zap v1.19.0/go.mod h1:xg/QME4nWcxGxrpdeYfq7UvYrLh66cuVKdrbD1XF/NI= go.uber.org/zap v1.24.0 h1:FiJd5l1UOLj0wCgbSE0rwwXHzEdAZS6hiiSnxJN/D60= go.uber.org/zap v1.24.0/go.mod h1:2kMP+WWQ8aoFoedH3T2sq6iJ2yDWpHbP0f6MQbS9Gkg= go4.org v0.0.0-20180809161055-417644f6feb5/go.mod h1:MkTOUMDaeVYJUOUsaDXIhWPZYa1yOyC1qaOBpL57BhE= @@ -1027,6 +1034,7 @@ golang.org/x/crypto v0.0.0-20201221181555-eec23a3978ad/go.mod h1:jdWPYTVW3xRLrWP golang.org/x/crypto v0.0.0-20210421170649-83a5a9bb288b/go.mod h1:T9bdIzuCu7OtxOm1hfPfRQxPLYneinmdGuTeoZ9dtd4= golang.org/x/crypto v0.0.0-20210817164053-32db794688a5/go.mod h1:GvvjBRRGRdwPK5ydBHafDWAxML/pGHZbMvKqRZ5+Abc= golang.org/x/crypto v0.0.0-20210921155107-089bfa567519/go.mod h1:GvvjBRRGRdwPK5ydBHafDWAxML/pGHZbMvKqRZ5+Abc= +golang.org/x/crypto v0.0.0-20220314234659-1baeb1ce4c0b/go.mod h1:IxCIyHEi3zRg3s0A5j5BB6A9Jmi73HwBIUl50j+osU4= golang.org/x/crypto v0.0.0-20220722155217-630584e8d5aa/go.mod h1:IxCIyHEi3zRg3s0A5j5BB6A9Jmi73HwBIUl50j+osU4= golang.org/x/crypto v0.3.0/go.mod h1:hebNnKkNXi2UzZN1eVRvBB7co0a+JxK6XbPiWVs/3J4= golang.org/x/crypto v0.9.0 h1:LF6fAI+IutBocDJ2OT0Q1g8plpYljMZ4+lty+dsqw3g= @@ -1163,8 +1171,8 @@ golang.org/x/oauth2 v0.0.0-20220822191816-0ebed06d0094/go.mod h1:h4gKUeWbJ4rQPri golang.org/x/oauth2 v0.0.0-20220909003341-f21342109be1/go.mod h1:h4gKUeWbJ4rQPri7E0u6Gs4e9Ri2zaLxzw5DI5XGrYg= golang.org/x/oauth2 v0.0.0-20221014153046-6fdb5e3db783/go.mod h1:h4gKUeWbJ4rQPri7E0u6Gs4e9Ri2zaLxzw5DI5XGrYg= golang.org/x/oauth2 v0.1.0/go.mod h1:G9FE4dLTsbXUu90h/Pf85g4w1D+SSAgR+q46nJZ8M4A= -golang.org/x/oauth2 v0.6.0 h1:Lh8GPgSKBfWSwFvtuWOfeI3aAAnbXTSutYxJiOJFgIw= -golang.org/x/oauth2 v0.6.0/go.mod h1:ycmewcwgD4Rpr3eZJLSB4Kyyljb3qDh40vJ8STE5HKw= +golang.org/x/oauth2 v0.7.0 h1:qe6s0zUXlPX80/dITx3440hWZ7GwMwgDDyrSGTPJG/g= +golang.org/x/oauth2 v0.7.0/go.mod h1:hPLQkd9LyjfXTiRohC/41GhcFqxisoUQ99sCUOHO9x4= 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= @@ -1294,6 +1302,7 @@ 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/go.mod h1:5Zoc/QRtKVWzQhOtBMvqHzDpF6irO9z98xDceosuGiQ= golang.org/x/text v0.3.7/go.mod h1:u+2+/6zg+i71rQMx5EYifcz6MCKuco9NR6JIITiCfzQ= +golang.org/x/text v0.3.8/go.mod h1:E6s5w1FMmriuDzIBO73fBruAKo1PCIq6d2Q6DHfQ8WQ= golang.org/x/text v0.4.0/go.mod h1:mrYo+phRRbMaCq/xk9113O4dZlRixOauAjOtrjsXDZ8= golang.org/x/text v0.9.0 h1:2sjJmO8cDvYveuX97RDLsxlyUxLl+GHoLxBiRdHllBE= golang.org/x/text v0.9.0/go.mod h1:e1OnstbJyHTd6l/uOt8jFFHp6TRDWZR/bV3emEE/zU8= @@ -1428,8 +1437,8 @@ google.golang.org/api v0.96.0/go.mod h1:w7wJQLTM+wvQpNf5JyEcBoxK0RH7EDrh/L4qfsuJ google.golang.org/api v0.97.0/go.mod h1:w7wJQLTM+wvQpNf5JyEcBoxK0RH7EDrh/L4qfsuJ13s= google.golang.org/api v0.98.0/go.mod h1:w7wJQLTM+wvQpNf5JyEcBoxK0RH7EDrh/L4qfsuJ13s= google.golang.org/api v0.100.0/go.mod h1:ZE3Z2+ZOr87Rx7dqFsdRQkRBk36kDtp/h+QpHbB7a70= -google.golang.org/api v0.108.0 h1:WVBc/faN0DkKtR43Q/7+tPny9ZoLZdIiAyG5Q9vFClg= -google.golang.org/api v0.108.0/go.mod h1:2Ts0XTHNVWxypznxWOYUeI4g3WdP9Pk2Qk58+a/O9MY= +google.golang.org/api v0.122.0 h1:zDobeejm3E7pEG1mNHvdxvjs5XJoCMzyNH+CmwL94Es= +google.golang.org/api v0.122.0/go.mod h1:gcitW0lvnyWjSp9nKxAbdHKIZ6vF4aajGueeslZOyms= 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= @@ -1552,8 +1561,8 @@ google.golang.org/genproto v0.0.0-20221010155953-15ba04fc1c0e/go.mod h1:3526vdqw google.golang.org/genproto v0.0.0-20221014173430-6e2ab493f96b/go.mod h1:1vXfmgAz9N9Jx0QA82PqRVauvCz1SGSz739p0f183jM= google.golang.org/genproto v0.0.0-20221014213838-99cd37c6964a/go.mod h1:1vXfmgAz9N9Jx0QA82PqRVauvCz1SGSz739p0f183jM= google.golang.org/genproto v0.0.0-20221025140454-527a21cfbd71/go.mod h1:9qHF0xnpdSfF6knlcsnpzUu5y+rpwgbvsyGAZPBMg4s= -google.golang.org/genproto v0.0.0-20230124163310-31e0e69b6fc2 h1:O97sLx/Xmb/KIZHB/2/BzofxBs5QmmR0LcihPtllmbc= -google.golang.org/genproto v0.0.0-20230124163310-31e0e69b6fc2/go.mod h1:RGgjbofJ8xD9Sq1VVhDM1Vok1vRONV+rg+CjzG4SZKM= +google.golang.org/genproto v0.0.0-20230410155749-daa745c078e1 h1:KpwkzHKEF7B9Zxg18WzOa7djJ+Ha5DzthMyZYQfEn2A= +google.golang.org/genproto v0.0.0-20230410155749-daa745c078e1/go.mod h1:nKE/iIaLqn2bQwXBg8f1g2Ylh6r5MN5CmZvuzZCgsCU= google.golang.org/grpc v1.14.0/go.mod h1:yo6s7OP7yaDglbqo1J04qKzAhqBH6lvTonzMVmEdcZw= google.golang.org/grpc v1.16.0/go.mod h1:0JHn/cJsOMiMfNA9+DeHDlAU7KAAB5GDlYFpa9MZMio= google.golang.org/grpc v1.17.0/go.mod h1:6QZJwpn2B+Zp71q/5VxRsJ6NXXVCE5NRUHRo+f3cWCs= @@ -1593,8 +1602,8 @@ google.golang.org/grpc v1.48.0/go.mod h1:vN9eftEi1UMyUsIF80+uQXhHjbXYbm0uXoFCACu google.golang.org/grpc v1.49.0/go.mod h1:ZgQEeidpAuNRZ8iRrlBKXZQP1ghovWIVhdJRyCDK+GI= google.golang.org/grpc v1.50.0/go.mod h1:ZgQEeidpAuNRZ8iRrlBKXZQP1ghovWIVhdJRyCDK+GI= google.golang.org/grpc v1.50.1/go.mod h1:ZgQEeidpAuNRZ8iRrlBKXZQP1ghovWIVhdJRyCDK+GI= -google.golang.org/grpc v1.52.0 h1:kd48UiU7EHsV4rnLyOJRuP/Il/UHE7gdDAQ+SZI7nZk= -google.golang.org/grpc v1.52.0/go.mod h1:pu6fVzoFb+NBYNAvQL08ic+lvB2IojljRYuun5vorUY= +google.golang.org/grpc v1.55.0 h1:3Oj82/tFSCeUrRTg/5E/7d/W5A1tj6Ky1ABAuZuv5ag= +google.golang.org/grpc v1.55.0/go.mod h1:iYEXKGkEBhg1PjZQvoYEVPTDkHo1/bjTnfwTeGONTY8= google.golang.org/grpc/cmd/protoc-gen-go-grpc v1.1.0/go.mod h1:6Kw0yEErY5E/yWrBtf03jp27GLLJujG4z/JK95pnjjw= 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= diff --git a/internal/tools/tools.go b/internal/tools/tools.go index eb40d7b..9f61eaf 100644 --- a/internal/tools/tools.go +++ b/internal/tools/tools.go @@ -1,6 +1,8 @@ package tools import ( + "encoding/json" + "os" "regexp" "runtime/debug" "testing" @@ -8,6 +10,8 @@ import ( "github.com/aquilax/truncate" "github.com/distribution/distribution/reference" "github.com/kubescape/k8s-interface/instanceidhandler/v1" + "github.com/kubescape/kubevuln/core/domain" + "github.com/kubescape/storage/pkg/apis/softwarecomposition/v1beta1" "github.com/stretchr/testify/assert" "k8s.io/apimachinery/pkg/util/validation" ) @@ -55,3 +59,27 @@ func LabelsFromImageID(imageID string) map[string]string { } return labels } + +func FileContent(path string) []byte { + b, _ := os.ReadFile(path) + return b +} + +func FileToSBOM(path string) *v1beta1.Document { + sbom := v1beta1.Document{} + _ = json.Unmarshal(FileContent(path), &sbom) + return &sbom +} + +func FileToCVEManifest(path string) domain.CVEManifest { + var cve domain.CVEManifest + b, err := os.ReadFile(path) + if err != nil { + panic(err) + } + err = json.Unmarshal(b, &cve) + if err != nil { + panic(err) + } + return cve +} diff --git a/repositories/apiserver.go b/repositories/apiserver.go index 7af3bb3..d1b1e7e 100644 --- a/repositories/apiserver.go +++ b/repositories/apiserver.go @@ -97,9 +97,10 @@ func (a *APIServerStore) GetCVE(ctx context.Context, name, SBOMCreatorVersion, C }, nil } -func (a *APIServerStore) StoreCVE(ctx context.Context, cve domain.CVEManifest, withRelevancy bool) error { - _, span := otel.Tracer("").Start(ctx, "APIServerStore.StoreCVE") +func (a *APIServerStore) storeCVEWithFullContent(ctx context.Context, cve domain.CVEManifest, withRelevancy bool) error { + _, span := otel.Tracer("").Start(ctx, "APIServerStore.StoreCVEWithFullContent") defer span.End() + if cve.Name == "" { logger.L().Debug("skipping storing CVE manifest with empty name", helpers.String("relevant", strconv.FormatBool(withRelevancy))) @@ -174,6 +175,126 @@ func (a *APIServerStore) StoreCVE(ctx context.Context, cve domain.CVEManifest, w return nil } +func parseSeverities(cve domain.CVEManifest) v1beta1.SeveritySummary { + critical := 0 + high := 0 + medium := 0 + low := 0 + negligible := 0 + unknown := 0 + + for i := range cve.Content.Matches { + switch cve.Content.Matches[i].Vulnerability.Severity { + case domain.CriticalSeverity: + critical += 1 + case domain.HighSeverity: + high += 1 + case domain.MediumSeverity: + medium += 1 + case domain.LowSeverity: + low += 1 + case domain.NegligibleSeverity: + negligible += 1 + case domain.UnknownSeverity: + unknown += 1 + } + } + + return v1beta1.SeveritySummary{ + Critical: v1beta1.VulnerabilityCounters{All: critical}, + High: v1beta1.VulnerabilityCounters{All: high}, + Medium: v1beta1.VulnerabilityCounters{All: medium}, + Low: v1beta1.VulnerabilityCounters{All: low}, + Negligible: v1beta1.VulnerabilityCounters{All: negligible}, + Unknown: v1beta1.VulnerabilityCounters{All: unknown}, + } +} + +func (a *APIServerStore) storeCVESummary(ctx context.Context, cve domain.CVEManifest, withRelevancy bool) error { + _, span := otel.Tracer("").Start(ctx, "APIServerStore.storeCVESummary") + defer span.End() + + if cve.Name == "" { + logger.L().Debug("skipping storing CVE manifest with empty name", + helpers.String("relevant", strconv.FormatBool(withRelevancy))) + return nil + } + if cve.Labels == nil { + cve.Labels = make(map[string]string) + } + + if withRelevancy { + cve.Labels[v1.ContextMetadataKey] = v1.ContextMetadataKeyFiltered + } else { + cve.Labels[v1.ContextMetadataKey] = v1.ContextMetadataKeyNonFiltered + } + + manifest := v1beta1.VulnerabilityManifestSummary{ + ObjectMeta: metav1.ObjectMeta{ + Name: cve.Name, + Annotations: cve.Annotations, + Labels: cve.Labels, + }, + Spec: v1beta1.VulnerabilityManifestSummarySpec{ + Severities: parseSeverities(cve), + }, + } + _, err := a.StorageClient.VulnerabilityManifestSummaries(a.Namespace).Create(context.Background(), &manifest, metav1.CreateOptions{}) + switch { + case errors.IsAlreadyExists(err): + retryErr := retry.RetryOnConflict(retry.DefaultRetry, func() error { + // retrieve the latest version before attempting update + // RetryOnConflict uses exponential backoff to avoid exhausting the apiserver + result, getErr := a.StorageClient.VulnerabilityManifestSummaries(a.Namespace).Get(context.Background(), cve.Name, metav1.GetOptions{}) + if getErr != nil { + return getErr + } + // update the vulnerability manifest + result.Annotations = manifest.Annotations + result.Labels = manifest.Labels + result.Spec = manifest.Spec + // try to send the updated vulnerability manifest + _, updateErr := a.StorageClient.VulnerabilityManifestSummaries(a.Namespace).Update(context.Background(), result, metav1.UpdateOptions{}) + return updateErr + }) + if retryErr != nil { + logger.L().Ctx(ctx).Warning("failed to update CVE summary manifest in storage", helpers.Error(err), + helpers.String("name", cve.Name), + helpers.String("relevant", strconv.FormatBool(withRelevancy))) + } else { + logger.L().Debug("updated CVE summary manifest in storage", + helpers.String("name", cve.Name), + helpers.String("relevant", strconv.FormatBool(withRelevancy))) + } + case err != nil: + logger.L().Ctx(ctx).Warning("failed to store CVE summary manifest in storage", helpers.Error(err), + helpers.String("name", cve.Name), + helpers.String("relevant", strconv.FormatBool(withRelevancy))) + default: + logger.L().Debug("stored CVE summary manifest in storage", + helpers.String("name", cve.Name), + helpers.String("relevant", strconv.FormatBool(withRelevancy))) + } + return nil +} + +func (a *APIServerStore) StoreCVE(ctx context.Context, cve domain.CVEManifest, withRelevancy bool) error { + innerCtx, span := otel.Tracer("").Start(ctx, "APIServerStore.StoreCVE") + defer span.End() + + err := a.storeCVEWithFullContent(innerCtx, cve, withRelevancy) + if err != nil { + return err + } + + err = a.storeCVESummary(innerCtx, cve, withRelevancy) + if err != nil { + return err + } + + return nil +} + func (a *APIServerStore) GetSBOM(ctx context.Context, name, SBOMCreatorVersion string) (domain.SBOM, error) { _, span := otel.Tracer("").Start(ctx, "APIServerStore.GetSBOM") defer span.End() @@ -261,9 +382,10 @@ func (a *APIServerStore) GetSBOMp(ctx context.Context, name, SBOMCreatorVersion return result, nil } -func (a *APIServerStore) StoreSBOM(ctx context.Context, sbom domain.SBOM) error { - _, span := otel.Tracer("").Start(ctx, "APIServerStore.StoreSBOM") +func (a *APIServerStore) storeSBOMWithContent(ctx context.Context, sbom domain.SBOM) error { + _, span := otel.Tracer("").Start(ctx, "APIServerStore.StoreSBOMWithContent") defer span.End() + if sbom.Name == "" { logger.L().Debug("skipping storing SBOM with empty name") return nil @@ -309,3 +431,56 @@ func (a *APIServerStore) StoreSBOM(ctx context.Context, sbom domain.SBOM) error } return nil } + +func (a *APIServerStore) storeSBOMWithoutContent(ctx context.Context, sbom domain.SBOM) error { + _, span := otel.Tracer("").Start(ctx, "APIServerStore.StoreSBOMWithoutContent") + defer span.End() + + if sbom.Name == "" { + logger.L().Debug("skipping storing SBOM with empty name") + return nil + } + manifest := v1beta1.SBOMSummary{ + ObjectMeta: metav1.ObjectMeta{ + Name: sbom.Name, + Annotations: sbom.Annotations, + Labels: sbom.Labels, + }, + Spec: v1beta1.SBOMSummarySpec{}, + Status: v1beta1.SBOMSPDXv2p3Status{}, // TODO move timeout information here + } + if manifest.Annotations == nil { + manifest.Annotations = map[string]string{} + } + manifest.Annotations[instanceidhandler.StatusMetadataKey] = sbom.Status // for the moment stored as an annotation + _, err := a.StorageClient.SBOMSummaries(a.Namespace).Create(context.Background(), &manifest, metav1.CreateOptions{}) + switch { + case errors.IsAlreadyExists(err): + logger.L().Debug("SBOM summary manifest already exists in storage", + helpers.String("name", sbom.Name)) + case err != nil: + logger.L().Ctx(ctx).Warning("failed to store SBOM summary into apiserver", helpers.Error(err), + helpers.String("name", sbom.Name)) + default: + logger.L().Debug("stored SBOM summary in storage", + helpers.String("name", sbom.Name)) + } + return nil +} + +func (a *APIServerStore) StoreSBOM(ctx context.Context, sbom domain.SBOM) error { + innerCtx, span := otel.Tracer("").Start(ctx, "APIServerStore.StoreSBOM") + defer span.End() + + err := a.storeSBOMWithContent(innerCtx, sbom) + if err != nil { + return err + } + + err = a.storeSBOMWithoutContent(innerCtx, sbom) + if err != nil { + return err + } + + return nil +} diff --git a/repositories/apiserver_test.go b/repositories/apiserver_test.go index f4d6449..b672eef 100644 --- a/repositories/apiserver_test.go +++ b/repositories/apiserver_test.go @@ -364,3 +364,40 @@ func TestAPIServerStore_GetSBOMp(t *testing.T) { }) } } + +func TestAPIServerStore_parseSeverities(t *testing.T) { + var nginxCVECriticalSeveritiesNumber = 72 + var nginxCVEHighSeveritiesNumber = 128 + var nginxCVEMediumSeveritiesNumber = 98 + var nginxCVELowSeveritiesNumber = 56 + var nginxCVENegligibleSeveritiesNumber = 102 + var nginxCVEUnknownSeveritiesNumber = 0 + + cveManifest := tools.FileToCVEManifest("testdata/nginx-cve.json") + severities := parseSeverities(cveManifest) + assert.Equal(t, nginxCVECriticalSeveritiesNumber, severities.Critical.All) + assert.Equal(t, nginxCVEHighSeveritiesNumber, severities.High.All) + assert.Equal(t, nginxCVEMediumSeveritiesNumber, severities.Medium.All) + assert.Equal(t, nginxCVELowSeveritiesNumber, severities.Low.All) + assert.Equal(t, nginxCVENegligibleSeveritiesNumber, severities.Negligible.All) + assert.Equal(t, nginxCVEUnknownSeveritiesNumber, severities.Unknown.All) +} + +func TestAPIServerStore_storeCVESummary(t *testing.T) { + cveManifest := tools.FileToCVEManifest("testdata/nginx-cve.json") + a := NewFakeAPIServerStorage("kubescape") + + err := a.storeCVESummary(context.TODO(), cveManifest, false) + assert.Equal(t, err, nil) +} + +func TestAPIServerStore_storeSBOMWithoutContent(t *testing.T) { + SBOMData := tools.FileToSBOM("testdata/alpine-sbom.json") + SBOM := domain.SBOM{ + Content: SBOMData, + } + a := NewFakeAPIServerStorage("kubescape") + + err := a.storeSBOMWithoutContent(context.TODO(), SBOM) + assert.Equal(t, err, nil) +} diff --git a/repositories/testdata/alpine-sbom.json b/repositories/testdata/alpine-sbom.json new file mode 100644 index 0000000..fc5da58 --- /dev/null +++ b/repositories/testdata/alpine-sbom.json @@ -0,0 +1,3422 @@ +{ + "documentDescribes": null, + "spdxVersion": "SPDX-2.3", + "dataLicense": "CC0-1.0", + "SPDXID": "SPDXRef-DOCUMENT", + "name": "library/alpine@sha256:e2e16842c9b54d985bf1ef9242a313f36b856181f188de21313820e177002501", + "documentNamespace": "https://anchore.com/syft/image/library/alpine@sha256-e2e16842c9b54d985bf1ef9242a313f36b856181f188de21313820e177002501-77f60834-758b-4755-b5f9-49f0defae9a3", + "externalDocumentRefs": null, + "comment": "", + "creationInfo": { + "licenseListVersion": "3.20", + "creators": [ + "Organization: Anchore, Inc", + "Tool: syft-unknown" + ], + "created": "2023-03-22T07:57:01Z", + "comment": "" + }, + "packages": [ + { + "hasFiles": null, + "name": "alpine-baselayout", + "SPDXID": "SPDXRef-Package-apk-alpine-baselayout-92b19c7750fb559d", + "versionInfo": "3.4.0-r0", + "packageFileName": "", + "supplier": null, + "originator": "Person: Natanael Copa ", + "downloadLocation": "https://git.alpinelinux.org/cgit/aports/tree/main/alpine-baselayout", + "filesAnalyzed": false, + "packageVerificationCode": null, + "checksums": null, + "homepage": "", + "sourceInfo": "acquired package info from APK DB: /lib/apk/db/installed", + "licenseConcluded": "GPL-2.0-only", + "licenseInfoFromFiles": null, + "licenseDeclared": "GPL-2.0-only", + "licenseComments": "", + "copyrightText": "NOASSERTION", + "summary": "", + "description": "Alpine base dir structure and init scripts", + "comment": "", + "externalRefs": [ + { + "referenceCategory": "SECURITY", + "referenceType": "cpe23Type", + "referenceLocator": "cpe:2.3:a:alpine-baselayout:alpine-baselayout:3.4.0-r0:*:*:*:*:*:*:*", + "comment": "" + }, + { + "referenceCategory": "SECURITY", + "referenceType": "cpe23Type", + "referenceLocator": "cpe:2.3:a:alpine-baselayout:alpine_baselayout:3.4.0-r0:*:*:*:*:*:*:*", + "comment": "" + }, + { + "referenceCategory": "SECURITY", + "referenceType": "cpe23Type", + "referenceLocator": "cpe:2.3:a:alpine_baselayout:alpine-baselayout:3.4.0-r0:*:*:*:*:*:*:*", + "comment": "" + }, + { + "referenceCategory": "SECURITY", + "referenceType": "cpe23Type", + "referenceLocator": "cpe:2.3:a:alpine_baselayout:alpine_baselayout:3.4.0-r0:*:*:*:*:*:*:*", + "comment": "" + }, + { + "referenceCategory": "SECURITY", + "referenceType": "cpe23Type", + "referenceLocator": "cpe:2.3:a:alpine:alpine-baselayout:3.4.0-r0:*:*:*:*:*:*:*", + "comment": "" + }, + { + "referenceCategory": "SECURITY", + "referenceType": "cpe23Type", + "referenceLocator": "cpe:2.3:a:alpine:alpine_baselayout:3.4.0-r0:*:*:*:*:*:*:*", + "comment": "" + }, + { + "referenceCategory": "PACKAGE-MANAGER", + "referenceType": "purl", + "referenceLocator": "pkg:apk/alpine/alpine-baselayout@3.4.0-r0?arch=x86_64&distro=alpine-3.17.2", + "comment": "" + } + ], + "attributionTexts": null, + "primaryPackagePurpose": "", + "releaseDate": "", + "builtDate": "", + "validUntilDate": "", + "files": null, + "annotations": null + }, + { + "hasFiles": null, + "name": "alpine-baselayout-data", + "SPDXID": "SPDXRef-Package-apk-alpine-baselayout-data-291d1267b40d636f", + "versionInfo": "3.4.0-r0", + "packageFileName": "", + "supplier": null, + "originator": "Person: Natanael Copa ", + "downloadLocation": "https://git.alpinelinux.org/cgit/aports/tree/main/alpine-baselayout", + "filesAnalyzed": false, + "packageVerificationCode": null, + "checksums": null, + "homepage": "", + "sourceInfo": "acquired package info from APK DB: /lib/apk/db/installed", + "licenseConcluded": "GPL-2.0-only", + "licenseInfoFromFiles": null, + "licenseDeclared": "GPL-2.0-only", + "licenseComments": "", + "copyrightText": "NOASSERTION", + "summary": "", + "description": "Alpine base dir structure and init scripts", + "comment": "", + "externalRefs": [ + { + "referenceCategory": "SECURITY", + "referenceType": "cpe23Type", + "referenceLocator": "cpe:2.3:a:alpine-baselayout-data:alpine-baselayout-data:3.4.0-r0:*:*:*:*:*:*:*", + "comment": "" + }, + { + "referenceCategory": "SECURITY", + "referenceType": "cpe23Type", + "referenceLocator": "cpe:2.3:a:alpine-baselayout-data:alpine_baselayout_data:3.4.0-r0:*:*:*:*:*:*:*", + "comment": "" + }, + { + "referenceCategory": "SECURITY", + "referenceType": "cpe23Type", + "referenceLocator": "cpe:2.3:a:alpine_baselayout_data:alpine-baselayout-data:3.4.0-r0:*:*:*:*:*:*:*", + "comment": "" + }, + { + "referenceCategory": "SECURITY", + "referenceType": "cpe23Type", + "referenceLocator": "cpe:2.3:a:alpine_baselayout_data:alpine_baselayout_data:3.4.0-r0:*:*:*:*:*:*:*", + "comment": "" + }, + { + "referenceCategory": "SECURITY", + "referenceType": "cpe23Type", + "referenceLocator": "cpe:2.3:a:alpine-baselayout:alpine-baselayout-data:3.4.0-r0:*:*:*:*:*:*:*", + "comment": "" + }, + { + "referenceCategory": "SECURITY", + "referenceType": "cpe23Type", + "referenceLocator": "cpe:2.3:a:alpine-baselayout:alpine_baselayout_data:3.4.0-r0:*:*:*:*:*:*:*", + "comment": "" + }, + { + "referenceCategory": "SECURITY", + "referenceType": "cpe23Type", + "referenceLocator": "cpe:2.3:a:alpine_baselayout:alpine-baselayout-data:3.4.0-r0:*:*:*:*:*:*:*", + "comment": "" + }, + { + "referenceCategory": "SECURITY", + "referenceType": "cpe23Type", + "referenceLocator": "cpe:2.3:a:alpine_baselayout:alpine_baselayout_data:3.4.0-r0:*:*:*:*:*:*:*", + "comment": "" + }, + { + "referenceCategory": "SECURITY", + "referenceType": "cpe23Type", + "referenceLocator": "cpe:2.3:a:alpine:alpine-baselayout-data:3.4.0-r0:*:*:*:*:*:*:*", + "comment": "" + }, + { + "referenceCategory": "SECURITY", + "referenceType": "cpe23Type", + "referenceLocator": "cpe:2.3:a:alpine:alpine_baselayout_data:3.4.0-r0:*:*:*:*:*:*:*", + "comment": "" + }, + { + "referenceCategory": "PACKAGE-MANAGER", + "referenceType": "purl", + "referenceLocator": "pkg:apk/alpine/alpine-baselayout-data@3.4.0-r0?arch=x86_64&upstream=alpine-baselayout&distro=alpine-3.17.2", + "comment": "" + } + ], + "attributionTexts": null, + "primaryPackagePurpose": "", + "releaseDate": "", + "builtDate": "", + "validUntilDate": "", + "files": null, + "annotations": null + }, + { + "hasFiles": null, + "name": "alpine-keys", + "SPDXID": "SPDXRef-Package-apk-alpine-keys-2b5e23d349b556cf", + "versionInfo": "2.4-r1", + "packageFileName": "", + "supplier": null, + "originator": "Person: Natanael Copa ", + "downloadLocation": "https://alpinelinux.org", + "filesAnalyzed": false, + "packageVerificationCode": null, + "checksums": null, + "homepage": "", + "sourceInfo": "acquired package info from APK DB: /lib/apk/db/installed", + "licenseConcluded": "MIT", + "licenseInfoFromFiles": null, + "licenseDeclared": "MIT", + "licenseComments": "", + "copyrightText": "NOASSERTION", + "summary": "", + "description": "Public keys for Alpine Linux packages", + "comment": "", + "externalRefs": [ + { + "referenceCategory": "SECURITY", + "referenceType": "cpe23Type", + "referenceLocator": "cpe:2.3:a:alpine-keys:alpine-keys:2.4-r1:*:*:*:*:*:*:*", + "comment": "" + }, + { + "referenceCategory": "SECURITY", + "referenceType": "cpe23Type", + "referenceLocator": "cpe:2.3:a:alpine-keys:alpine_keys:2.4-r1:*:*:*:*:*:*:*", + "comment": "" + }, + { + "referenceCategory": "SECURITY", + "referenceType": "cpe23Type", + "referenceLocator": "cpe:2.3:a:alpine_keys:alpine-keys:2.4-r1:*:*:*:*:*:*:*", + "comment": "" + }, + { + "referenceCategory": "SECURITY", + "referenceType": "cpe23Type", + "referenceLocator": "cpe:2.3:a:alpine_keys:alpine_keys:2.4-r1:*:*:*:*:*:*:*", + "comment": "" + }, + { + "referenceCategory": "SECURITY", + "referenceType": "cpe23Type", + "referenceLocator": "cpe:2.3:a:alpine:alpine-keys:2.4-r1:*:*:*:*:*:*:*", + "comment": "" + }, + { + "referenceCategory": "SECURITY", + "referenceType": "cpe23Type", + "referenceLocator": "cpe:2.3:a:alpine:alpine_keys:2.4-r1:*:*:*:*:*:*:*", + "comment": "" + }, + { + "referenceCategory": "PACKAGE-MANAGER", + "referenceType": "purl", + "referenceLocator": "pkg:apk/alpine/alpine-keys@2.4-r1?arch=x86_64&distro=alpine-3.17.2", + "comment": "" + } + ], + "attributionTexts": null, + "primaryPackagePurpose": "", + "releaseDate": "", + "builtDate": "", + "validUntilDate": "", + "files": null, + "annotations": null + }, + { + "hasFiles": null, + "name": "apk-tools", + "SPDXID": "SPDXRef-Package-apk-apk-tools-e5f757b0df1f62bc", + "versionInfo": "2.12.10-r1", + "packageFileName": "", + "supplier": null, + "originator": "Person: Natanael Copa ", + "downloadLocation": "https://gitlab.alpinelinux.org/alpine/apk-tools", + "filesAnalyzed": false, + "packageVerificationCode": null, + "checksums": null, + "homepage": "", + "sourceInfo": "acquired package info from APK DB: /lib/apk/db/installed", + "licenseConcluded": "GPL-2.0-only", + "licenseInfoFromFiles": null, + "licenseDeclared": "GPL-2.0-only", + "licenseComments": "", + "copyrightText": "NOASSERTION", + "summary": "", + "description": "Alpine Package Keeper - package manager for alpine", + "comment": "", + "externalRefs": [ + { + "referenceCategory": "SECURITY", + "referenceType": "cpe23Type", + "referenceLocator": "cpe:2.3:a:apk-tools:apk-tools:2.12.10-r1:*:*:*:*:*:*:*", + "comment": "" + }, + { + "referenceCategory": "SECURITY", + "referenceType": "cpe23Type", + "referenceLocator": "cpe:2.3:a:apk-tools:apk_tools:2.12.10-r1:*:*:*:*:*:*:*", + "comment": "" + }, + { + "referenceCategory": "SECURITY", + "referenceType": "cpe23Type", + "referenceLocator": "cpe:2.3:a:apk_tools:apk-tools:2.12.10-r1:*:*:*:*:*:*:*", + "comment": "" + }, + { + "referenceCategory": "SECURITY", + "referenceType": "cpe23Type", + "referenceLocator": "cpe:2.3:a:apk_tools:apk_tools:2.12.10-r1:*:*:*:*:*:*:*", + "comment": "" + }, + { + "referenceCategory": "SECURITY", + "referenceType": "cpe23Type", + "referenceLocator": "cpe:2.3:a:apk:apk-tools:2.12.10-r1:*:*:*:*:*:*:*", + "comment": "" + }, + { + "referenceCategory": "SECURITY", + "referenceType": "cpe23Type", + "referenceLocator": "cpe:2.3:a:apk:apk_tools:2.12.10-r1:*:*:*:*:*:*:*", + "comment": "" + }, + { + "referenceCategory": "PACKAGE-MANAGER", + "referenceType": "purl", + "referenceLocator": "pkg:apk/alpine/apk-tools@2.12.10-r1?arch=x86_64&distro=alpine-3.17.2", + "comment": "" + } + ], + "attributionTexts": null, + "primaryPackagePurpose": "", + "releaseDate": "", + "builtDate": "", + "validUntilDate": "", + "files": null, + "annotations": null + }, + { + "hasFiles": null, + "name": "busybox", + "SPDXID": "SPDXRef-Package-binary-busybox-e93bc067bebd50a9", + "versionInfo": "1.35.0", + "packageFileName": "", + "supplier": null, + "originator": null, + "downloadLocation": "NOASSERTION", + "filesAnalyzed": false, + "packageVerificationCode": null, + "checksums": null, + "homepage": "", + "sourceInfo": "acquired package info from the following paths: /bin/busybox", + "licenseConcluded": "NONE", + "licenseInfoFromFiles": null, + "licenseDeclared": "NONE", + "licenseComments": "", + "copyrightText": "NOASSERTION", + "summary": "", + "description": "", + "comment": "", + "externalRefs": [ + { + "referenceCategory": "SECURITY", + "referenceType": "cpe23Type", + "referenceLocator": "cpe:2.3:a:busybox:busybox:1.35.0:*:*:*:*:*:*:*", + "comment": "" + }, + { + "referenceCategory": "SECURITY", + "referenceType": "cpe23Type", + "referenceLocator": "cpe:2.3:a:busybox:busybox:1.35.0:*:*:*:*:*:*:*", + "comment": "" + } + ], + "attributionTexts": null, + "primaryPackagePurpose": "", + "releaseDate": "", + "builtDate": "", + "validUntilDate": "", + "files": null, + "annotations": null + }, + { + "hasFiles": null, + "name": "busybox", + "SPDXID": "SPDXRef-Package-apk-busybox-623d53216342d45e", + "versionInfo": "1.35.0-r29", + "packageFileName": "", + "supplier": null, + "originator": "Person: Sören Tempel ", + "downloadLocation": "https://busybox.net/", + "filesAnalyzed": false, + "packageVerificationCode": null, + "checksums": null, + "homepage": "", + "sourceInfo": "acquired package info from APK DB: /lib/apk/db/installed", + "licenseConcluded": "GPL-2.0-only", + "licenseInfoFromFiles": null, + "licenseDeclared": "GPL-2.0-only", + "licenseComments": "", + "copyrightText": "NOASSERTION", + "summary": "", + "description": "Size optimized toolbox of many common UNIX utilities", + "comment": "", + "externalRefs": [ + { + "referenceCategory": "SECURITY", + "referenceType": "cpe23Type", + "referenceLocator": "cpe:2.3:a:busybox:busybox:1.35.0-r29:*:*:*:*:*:*:*", + "comment": "" + }, + { + "referenceCategory": "PACKAGE-MANAGER", + "referenceType": "purl", + "referenceLocator": "pkg:apk/alpine/busybox@1.35.0-r29?arch=x86_64&distro=alpine-3.17.2", + "comment": "" + } + ], + "attributionTexts": null, + "primaryPackagePurpose": "", + "releaseDate": "", + "builtDate": "", + "validUntilDate": "", + "files": null, + "annotations": null + }, + { + "hasFiles": null, + "name": "busybox-binsh", + "SPDXID": "SPDXRef-Package-apk-busybox-binsh-256fc96b4a8c4da8", + "versionInfo": "1.35.0-r29", + "packageFileName": "", + "supplier": null, + "originator": "Person: Sören Tempel ", + "downloadLocation": "https://busybox.net/", + "filesAnalyzed": false, + "packageVerificationCode": null, + "checksums": null, + "homepage": "", + "sourceInfo": "acquired package info from APK DB: /lib/apk/db/installed", + "licenseConcluded": "GPL-2.0-only", + "licenseInfoFromFiles": null, + "licenseDeclared": "GPL-2.0-only", + "licenseComments": "", + "copyrightText": "NOASSERTION", + "summary": "", + "description": "busybox ash /bin/sh", + "comment": "", + "externalRefs": [ + { + "referenceCategory": "SECURITY", + "referenceType": "cpe23Type", + "referenceLocator": "cpe:2.3:a:busybox-binsh:busybox-binsh:1.35.0-r29:*:*:*:*:*:*:*", + "comment": "" + }, + { + "referenceCategory": "SECURITY", + "referenceType": "cpe23Type", + "referenceLocator": "cpe:2.3:a:busybox-binsh:busybox_binsh:1.35.0-r29:*:*:*:*:*:*:*", + "comment": "" + }, + { + "referenceCategory": "SECURITY", + "referenceType": "cpe23Type", + "referenceLocator": "cpe:2.3:a:busybox_binsh:busybox-binsh:1.35.0-r29:*:*:*:*:*:*:*", + "comment": "" + }, + { + "referenceCategory": "SECURITY", + "referenceType": "cpe23Type", + "referenceLocator": "cpe:2.3:a:busybox_binsh:busybox_binsh:1.35.0-r29:*:*:*:*:*:*:*", + "comment": "" + }, + { + "referenceCategory": "SECURITY", + "referenceType": "cpe23Type", + "referenceLocator": "cpe:2.3:a:busybox:busybox-binsh:1.35.0-r29:*:*:*:*:*:*:*", + "comment": "" + }, + { + "referenceCategory": "SECURITY", + "referenceType": "cpe23Type", + "referenceLocator": "cpe:2.3:a:busybox:busybox_binsh:1.35.0-r29:*:*:*:*:*:*:*", + "comment": "" + }, + { + "referenceCategory": "PACKAGE-MANAGER", + "referenceType": "purl", + "referenceLocator": "pkg:apk/alpine/busybox-binsh@1.35.0-r29?arch=x86_64&upstream=busybox&distro=alpine-3.17.2", + "comment": "" + } + ], + "attributionTexts": null, + "primaryPackagePurpose": "", + "releaseDate": "", + "builtDate": "", + "validUntilDate": "", + "files": null, + "annotations": null + }, + { + "hasFiles": null, + "name": "ca-certificates-bundle", + "SPDXID": "SPDXRef-Package-apk-ca-certificates-bundle-b805d823ae624f04", + "versionInfo": "20220614-r4", + "packageFileName": "", + "supplier": null, + "originator": "Person: Natanael Copa ", + "downloadLocation": "https://www.mozilla.org/en-US/about/governance/policies/security-group/certs/", + "filesAnalyzed": false, + "packageVerificationCode": null, + "checksums": null, + "homepage": "", + "sourceInfo": "acquired package info from APK DB: /lib/apk/db/installed", + "licenseConcluded": "MPL-2.0 AND MIT", + "licenseInfoFromFiles": null, + "licenseDeclared": "MPL-2.0 AND MIT", + "licenseComments": "", + "copyrightText": "NOASSERTION", + "summary": "", + "description": "Pre generated bundle of Mozilla certificates", + "comment": "", + "externalRefs": [ + { + "referenceCategory": "SECURITY", + "referenceType": "cpe23Type", + "referenceLocator": "cpe:2.3:a:ca-certificates-bundle:ca-certificates-bundle:20220614-r4:*:*:*:*:*:*:*", + "comment": "" + }, + { + "referenceCategory": "SECURITY", + "referenceType": "cpe23Type", + "referenceLocator": "cpe:2.3:a:ca-certificates-bundle:ca_certificates_bundle:20220614-r4:*:*:*:*:*:*:*", + "comment": "" + }, + { + "referenceCategory": "SECURITY", + "referenceType": "cpe23Type", + "referenceLocator": "cpe:2.3:a:ca_certificates_bundle:ca-certificates-bundle:20220614-r4:*:*:*:*:*:*:*", + "comment": "" + }, + { + "referenceCategory": "SECURITY", + "referenceType": "cpe23Type", + "referenceLocator": "cpe:2.3:a:ca_certificates_bundle:ca_certificates_bundle:20220614-r4:*:*:*:*:*:*:*", + "comment": "" + }, + { + "referenceCategory": "SECURITY", + "referenceType": "cpe23Type", + "referenceLocator": "cpe:2.3:a:ca-certificates:ca-certificates-bundle:20220614-r4:*:*:*:*:*:*:*", + "comment": "" + }, + { + "referenceCategory": "SECURITY", + "referenceType": "cpe23Type", + "referenceLocator": "cpe:2.3:a:ca-certificates:ca_certificates_bundle:20220614-r4:*:*:*:*:*:*:*", + "comment": "" + }, + { + "referenceCategory": "SECURITY", + "referenceType": "cpe23Type", + "referenceLocator": "cpe:2.3:a:ca_certificates:ca-certificates-bundle:20220614-r4:*:*:*:*:*:*:*", + "comment": "" + }, + { + "referenceCategory": "SECURITY", + "referenceType": "cpe23Type", + "referenceLocator": "cpe:2.3:a:ca_certificates:ca_certificates_bundle:20220614-r4:*:*:*:*:*:*:*", + "comment": "" + }, + { + "referenceCategory": "SECURITY", + "referenceType": "cpe23Type", + "referenceLocator": "cpe:2.3:a:mozilla:ca-certificates-bundle:20220614-r4:*:*:*:*:*:*:*", + "comment": "" + }, + { + "referenceCategory": "SECURITY", + "referenceType": "cpe23Type", + "referenceLocator": "cpe:2.3:a:mozilla:ca_certificates_bundle:20220614-r4:*:*:*:*:*:*:*", + "comment": "" + }, + { + "referenceCategory": "SECURITY", + "referenceType": "cpe23Type", + "referenceLocator": "cpe:2.3:a:ca:ca-certificates-bundle:20220614-r4:*:*:*:*:*:*:*", + "comment": "" + }, + { + "referenceCategory": "SECURITY", + "referenceType": "cpe23Type", + "referenceLocator": "cpe:2.3:a:ca:ca_certificates_bundle:20220614-r4:*:*:*:*:*:*:*", + "comment": "" + }, + { + "referenceCategory": "PACKAGE-MANAGER", + "referenceType": "purl", + "referenceLocator": "pkg:apk/alpine/ca-certificates-bundle@20220614-r4?arch=x86_64&upstream=ca-certificates&distro=alpine-3.17.2", + "comment": "" + } + ], + "attributionTexts": null, + "primaryPackagePurpose": "", + "releaseDate": "", + "builtDate": "", + "validUntilDate": "", + "files": null, + "annotations": null + }, + { + "hasFiles": null, + "name": "libc-utils", + "SPDXID": "SPDXRef-Package-apk-libc-utils-8126b232e2d3c608", + "versionInfo": "0.7.2-r3", + "packageFileName": "", + "supplier": null, + "originator": "Person: Natanael Copa ", + "downloadLocation": "https://alpinelinux.org", + "filesAnalyzed": false, + "packageVerificationCode": null, + "checksums": null, + "homepage": "", + "sourceInfo": "acquired package info from APK DB: /lib/apk/db/installed", + "licenseConcluded": "BSD-2-Clause AND BSD-3-Clause", + "licenseInfoFromFiles": null, + "licenseDeclared": "BSD-2-Clause AND BSD-3-Clause", + "licenseComments": "", + "copyrightText": "NOASSERTION", + "summary": "", + "description": "Meta package to pull in correct libc", + "comment": "", + "externalRefs": [ + { + "referenceCategory": "SECURITY", + "referenceType": "cpe23Type", + "referenceLocator": "cpe:2.3:a:libc-utils:libc-utils:0.7.2-r3:*:*:*:*:*:*:*", + "comment": "" + }, + { + "referenceCategory": "SECURITY", + "referenceType": "cpe23Type", + "referenceLocator": "cpe:2.3:a:libc-utils:libc_utils:0.7.2-r3:*:*:*:*:*:*:*", + "comment": "" + }, + { + "referenceCategory": "SECURITY", + "referenceType": "cpe23Type", + "referenceLocator": "cpe:2.3:a:libc_utils:libc-utils:0.7.2-r3:*:*:*:*:*:*:*", + "comment": "" + }, + { + "referenceCategory": "SECURITY", + "referenceType": "cpe23Type", + "referenceLocator": "cpe:2.3:a:libc_utils:libc_utils:0.7.2-r3:*:*:*:*:*:*:*", + "comment": "" + }, + { + "referenceCategory": "SECURITY", + "referenceType": "cpe23Type", + "referenceLocator": "cpe:2.3:a:libc:libc-utils:0.7.2-r3:*:*:*:*:*:*:*", + "comment": "" + }, + { + "referenceCategory": "SECURITY", + "referenceType": "cpe23Type", + "referenceLocator": "cpe:2.3:a:libc:libc_utils:0.7.2-r3:*:*:*:*:*:*:*", + "comment": "" + }, + { + "referenceCategory": "PACKAGE-MANAGER", + "referenceType": "purl", + "referenceLocator": "pkg:apk/alpine/libc-utils@0.7.2-r3?arch=x86_64&upstream=libc-dev&distro=alpine-3.17.2", + "comment": "" + } + ], + "attributionTexts": null, + "primaryPackagePurpose": "", + "releaseDate": "", + "builtDate": "", + "validUntilDate": "", + "files": null, + "annotations": null + }, + { + "hasFiles": null, + "name": "libcrypto3", + "SPDXID": "SPDXRef-Package-apk-libcrypto3-b0e92b2ef962ab6d", + "versionInfo": "3.0.8-r0", + "packageFileName": "", + "supplier": null, + "originator": "Person: Ariadne Conill ", + "downloadLocation": "https://www.openssl.org/", + "filesAnalyzed": false, + "packageVerificationCode": null, + "checksums": null, + "homepage": "", + "sourceInfo": "acquired package info from APK DB: /lib/apk/db/installed", + "licenseConcluded": "Apache-2.0", + "licenseInfoFromFiles": null, + "licenseDeclared": "Apache-2.0", + "licenseComments": "", + "copyrightText": "NOASSERTION", + "summary": "", + "description": "Crypto library from openssl", + "comment": "", + "externalRefs": [ + { + "referenceCategory": "SECURITY", + "referenceType": "cpe23Type", + "referenceLocator": "cpe:2.3:a:libcrypto3:libcrypto3:3.0.8-r0:*:*:*:*:*:*:*", + "comment": "" + }, + { + "referenceCategory": "SECURITY", + "referenceType": "cpe23Type", + "referenceLocator": "cpe:2.3:a:libcrypto3:libcrypto:3.0.8-r0:*:*:*:*:*:*:*", + "comment": "" + }, + { + "referenceCategory": "SECURITY", + "referenceType": "cpe23Type", + "referenceLocator": "cpe:2.3:a:libcrypto:libcrypto3:3.0.8-r0:*:*:*:*:*:*:*", + "comment": "" + }, + { + "referenceCategory": "SECURITY", + "referenceType": "cpe23Type", + "referenceLocator": "cpe:2.3:a:libcrypto:libcrypto:3.0.8-r0:*:*:*:*:*:*:*", + "comment": "" + }, + { + "referenceCategory": "PACKAGE-MANAGER", + "referenceType": "purl", + "referenceLocator": "pkg:apk/alpine/libcrypto3@3.0.8-r0?arch=x86_64&upstream=openssl&distro=alpine-3.17.2", + "comment": "" + } + ], + "attributionTexts": null, + "primaryPackagePurpose": "", + "releaseDate": "", + "builtDate": "", + "validUntilDate": "", + "files": null, + "annotations": null + }, + { + "hasFiles": null, + "name": "libssl3", + "SPDXID": "SPDXRef-Package-apk-libssl3-9005623d3896bb87", + "versionInfo": "3.0.8-r0", + "packageFileName": "", + "supplier": null, + "originator": "Person: Ariadne Conill ", + "downloadLocation": "https://www.openssl.org/", + "filesAnalyzed": false, + "packageVerificationCode": null, + "checksums": null, + "homepage": "", + "sourceInfo": "acquired package info from APK DB: /lib/apk/db/installed", + "licenseConcluded": "Apache-2.0", + "licenseInfoFromFiles": null, + "licenseDeclared": "Apache-2.0", + "licenseComments": "", + "copyrightText": "NOASSERTION", + "summary": "", + "description": "SSL shared libraries", + "comment": "", + "externalRefs": [ + { + "referenceCategory": "SECURITY", + "referenceType": "cpe23Type", + "referenceLocator": "cpe:2.3:a:libssl3:libssl3:3.0.8-r0:*:*:*:*:*:*:*", + "comment": "" + }, + { + "referenceCategory": "SECURITY", + "referenceType": "cpe23Type", + "referenceLocator": "cpe:2.3:a:libssl3:libssl:3.0.8-r0:*:*:*:*:*:*:*", + "comment": "" + }, + { + "referenceCategory": "SECURITY", + "referenceType": "cpe23Type", + "referenceLocator": "cpe:2.3:a:libssl:libssl3:3.0.8-r0:*:*:*:*:*:*:*", + "comment": "" + }, + { + "referenceCategory": "SECURITY", + "referenceType": "cpe23Type", + "referenceLocator": "cpe:2.3:a:libssl:libssl:3.0.8-r0:*:*:*:*:*:*:*", + "comment": "" + }, + { + "referenceCategory": "PACKAGE-MANAGER", + "referenceType": "purl", + "referenceLocator": "pkg:apk/alpine/libssl3@3.0.8-r0?arch=x86_64&upstream=openssl&distro=alpine-3.17.2", + "comment": "" + } + ], + "attributionTexts": null, + "primaryPackagePurpose": "", + "releaseDate": "", + "builtDate": "", + "validUntilDate": "", + "files": null, + "annotations": null + }, + { + "hasFiles": null, + "name": "musl", + "SPDXID": "SPDXRef-Package-apk-musl-d9700f02cf26e8b8", + "versionInfo": "1.2.3-r4", + "packageFileName": "", + "supplier": null, + "originator": "Person: Timo Teräs ", + "downloadLocation": "https://musl.libc.org/", + "filesAnalyzed": false, + "packageVerificationCode": null, + "checksums": null, + "homepage": "", + "sourceInfo": "acquired package info from APK DB: /lib/apk/db/installed", + "licenseConcluded": "MIT", + "licenseInfoFromFiles": null, + "licenseDeclared": "MIT", + "licenseComments": "", + "copyrightText": "NOASSERTION", + "summary": "", + "description": "the musl c library (libc) implementation", + "comment": "", + "externalRefs": [ + { + "referenceCategory": "SECURITY", + "referenceType": "cpe23Type", + "referenceLocator": "cpe:2.3:a:musl-libc:musl:1.2.3-r4:*:*:*:*:*:*:*", + "comment": "" + }, + { + "referenceCategory": "SECURITY", + "referenceType": "cpe23Type", + "referenceLocator": "cpe:2.3:a:musl_libc:musl:1.2.3-r4:*:*:*:*:*:*:*", + "comment": "" + }, + { + "referenceCategory": "SECURITY", + "referenceType": "cpe23Type", + "referenceLocator": "cpe:2.3:a:musl:musl:1.2.3-r4:*:*:*:*:*:*:*", + "comment": "" + }, + { + "referenceCategory": "PACKAGE-MANAGER", + "referenceType": "purl", + "referenceLocator": "pkg:apk/alpine/musl@1.2.3-r4?arch=x86_64&distro=alpine-3.17.2", + "comment": "" + } + ], + "attributionTexts": null, + "primaryPackagePurpose": "", + "releaseDate": "", + "builtDate": "", + "validUntilDate": "", + "files": null, + "annotations": null + }, + { + "hasFiles": null, + "name": "musl-utils", + "SPDXID": "SPDXRef-Package-apk-musl-utils-f71ecf5267e6c37b", + "versionInfo": "1.2.3-r4", + "packageFileName": "", + "supplier": null, + "originator": "Person: Timo Teräs ", + "downloadLocation": "https://musl.libc.org/", + "filesAnalyzed": false, + "packageVerificationCode": null, + "checksums": null, + "homepage": "", + "sourceInfo": "acquired package info from APK DB: /lib/apk/db/installed", + "licenseConcluded": "MIT AND BSD-2-Clause AND GPL-2.0-or-later", + "licenseInfoFromFiles": null, + "licenseDeclared": "MIT AND BSD-2-Clause AND GPL-2.0-or-later", + "licenseComments": "", + "copyrightText": "NOASSERTION", + "summary": "", + "description": "the musl c library (libc) implementation", + "comment": "", + "externalRefs": [ + { + "referenceCategory": "SECURITY", + "referenceType": "cpe23Type", + "referenceLocator": "cpe:2.3:a:musl-utils:musl-utils:1.2.3-r4:*:*:*:*:*:*:*", + "comment": "" + }, + { + "referenceCategory": "SECURITY", + "referenceType": "cpe23Type", + "referenceLocator": "cpe:2.3:a:musl-utils:musl_utils:1.2.3-r4:*:*:*:*:*:*:*", + "comment": "" + }, + { + "referenceCategory": "SECURITY", + "referenceType": "cpe23Type", + "referenceLocator": "cpe:2.3:a:musl_utils:musl-utils:1.2.3-r4:*:*:*:*:*:*:*", + "comment": "" + }, + { + "referenceCategory": "SECURITY", + "referenceType": "cpe23Type", + "referenceLocator": "cpe:2.3:a:musl_utils:musl_utils:1.2.3-r4:*:*:*:*:*:*:*", + "comment": "" + }, + { + "referenceCategory": "SECURITY", + "referenceType": "cpe23Type", + "referenceLocator": "cpe:2.3:a:musl-libc:musl-utils:1.2.3-r4:*:*:*:*:*:*:*", + "comment": "" + }, + { + "referenceCategory": "SECURITY", + "referenceType": "cpe23Type", + "referenceLocator": "cpe:2.3:a:musl-libc:musl_utils:1.2.3-r4:*:*:*:*:*:*:*", + "comment": "" + }, + { + "referenceCategory": "SECURITY", + "referenceType": "cpe23Type", + "referenceLocator": "cpe:2.3:a:musl:musl-utils:1.2.3-r4:*:*:*:*:*:*:*", + "comment": "" + }, + { + "referenceCategory": "SECURITY", + "referenceType": "cpe23Type", + "referenceLocator": "cpe:2.3:a:musl:musl_utils:1.2.3-r4:*:*:*:*:*:*:*", + "comment": "" + }, + { + "referenceCategory": "PACKAGE-MANAGER", + "referenceType": "purl", + "referenceLocator": "pkg:apk/alpine/musl-utils@1.2.3-r4?arch=x86_64&upstream=musl&distro=alpine-3.17.2", + "comment": "" + } + ], + "attributionTexts": null, + "primaryPackagePurpose": "", + "releaseDate": "", + "builtDate": "", + "validUntilDate": "", + "files": null, + "annotations": null + }, + { + "hasFiles": null, + "name": "scanelf", + "SPDXID": "SPDXRef-Package-apk-scanelf-e903138d19e85b80", + "versionInfo": "1.3.5-r1", + "packageFileName": "", + "supplier": null, + "originator": "Person: Natanael Copa ", + "downloadLocation": "https://wiki.gentoo.org/wiki/Hardened/PaX_Utilities", + "filesAnalyzed": false, + "packageVerificationCode": null, + "checksums": null, + "homepage": "", + "sourceInfo": "acquired package info from APK DB: /lib/apk/db/installed", + "licenseConcluded": "GPL-2.0-only", + "licenseInfoFromFiles": null, + "licenseDeclared": "GPL-2.0-only", + "licenseComments": "", + "copyrightText": "NOASSERTION", + "summary": "", + "description": "Scan ELF binaries for stuff", + "comment": "", + "externalRefs": [ + { + "referenceCategory": "SECURITY", + "referenceType": "cpe23Type", + "referenceLocator": "cpe:2.3:a:scanelf:scanelf:1.3.5-r1:*:*:*:*:*:*:*", + "comment": "" + }, + { + "referenceCategory": "PACKAGE-MANAGER", + "referenceType": "purl", + "referenceLocator": "pkg:apk/alpine/scanelf@1.3.5-r1?arch=x86_64&upstream=pax-utils&distro=alpine-3.17.2", + "comment": "" + } + ], + "attributionTexts": null, + "primaryPackagePurpose": "", + "releaseDate": "", + "builtDate": "", + "validUntilDate": "", + "files": null, + "annotations": null + }, + { + "hasFiles": null, + "name": "ssl_client", + "SPDXID": "SPDXRef-Package-apk-ssl-client-b15247aafcd4a647", + "versionInfo": "1.35.0-r29", + "packageFileName": "", + "supplier": null, + "originator": "Person: Sören Tempel ", + "downloadLocation": "https://busybox.net/", + "filesAnalyzed": false, + "packageVerificationCode": null, + "checksums": null, + "homepage": "", + "sourceInfo": "acquired package info from APK DB: /lib/apk/db/installed", + "licenseConcluded": "GPL-2.0-only", + "licenseInfoFromFiles": null, + "licenseDeclared": "GPL-2.0-only", + "licenseComments": "", + "copyrightText": "NOASSERTION", + "summary": "", + "description": "EXternal ssl_client for busybox wget", + "comment": "", + "externalRefs": [ + { + "referenceCategory": "SECURITY", + "referenceType": "cpe23Type", + "referenceLocator": "cpe:2.3:a:ssl-client:ssl-client:1.35.0-r29:*:*:*:*:*:*:*", + "comment": "" + }, + { + "referenceCategory": "SECURITY", + "referenceType": "cpe23Type", + "referenceLocator": "cpe:2.3:a:ssl-client:ssl_client:1.35.0-r29:*:*:*:*:*:*:*", + "comment": "" + }, + { + "referenceCategory": "SECURITY", + "referenceType": "cpe23Type", + "referenceLocator": "cpe:2.3:a:ssl_client:ssl-client:1.35.0-r29:*:*:*:*:*:*:*", + "comment": "" + }, + { + "referenceCategory": "SECURITY", + "referenceType": "cpe23Type", + "referenceLocator": "cpe:2.3:a:ssl_client:ssl_client:1.35.0-r29:*:*:*:*:*:*:*", + "comment": "" + }, + { + "referenceCategory": "SECURITY", + "referenceType": "cpe23Type", + "referenceLocator": "cpe:2.3:a:ssl:ssl-client:1.35.0-r29:*:*:*:*:*:*:*", + "comment": "" + }, + { + "referenceCategory": "SECURITY", + "referenceType": "cpe23Type", + "referenceLocator": "cpe:2.3:a:ssl:ssl_client:1.35.0-r29:*:*:*:*:*:*:*", + "comment": "" + }, + { + "referenceCategory": "PACKAGE-MANAGER", + "referenceType": "purl", + "referenceLocator": "pkg:apk/alpine/ssl_client@1.35.0-r29?arch=x86_64&upstream=busybox&distro=alpine-3.17.2", + "comment": "" + } + ], + "attributionTexts": null, + "primaryPackagePurpose": "", + "releaseDate": "", + "builtDate": "", + "validUntilDate": "", + "files": null, + "annotations": null + }, + { + "hasFiles": null, + "name": "zlib", + "SPDXID": "SPDXRef-Package-apk-zlib-94014313cfcd2b71", + "versionInfo": "1.2.13-r0", + "packageFileName": "", + "supplier": null, + "originator": "Person: Natanael Copa ", + "downloadLocation": "https://zlib.net/", + "filesAnalyzed": false, + "packageVerificationCode": null, + "checksums": null, + "homepage": "", + "sourceInfo": "acquired package info from APK DB: /lib/apk/db/installed", + "licenseConcluded": "Zlib", + "licenseInfoFromFiles": null, + "licenseDeclared": "Zlib", + "licenseComments": "", + "copyrightText": "NOASSERTION", + "summary": "", + "description": "A compression/decompression Library", + "comment": "", + "externalRefs": [ + { + "referenceCategory": "SECURITY", + "referenceType": "cpe23Type", + "referenceLocator": "cpe:2.3:a:zlib:zlib:1.2.13-r0:*:*:*:*:*:*:*", + "comment": "" + }, + { + "referenceCategory": "PACKAGE-MANAGER", + "referenceType": "purl", + "referenceLocator": "pkg:apk/alpine/zlib@1.2.13-r0?arch=x86_64&distro=alpine-3.17.2", + "comment": "" + } + ], + "attributionTexts": null, + "primaryPackagePurpose": "", + "releaseDate": "", + "builtDate": "", + "validUntilDate": "", + "files": null, + "annotations": null + } + ], + "files": [ + { + "fileName": "/bin/busybox", + "SPDXID": "SPDXRef-564026926225072e", + "fileTypes": null, + "checksums": [ + { + "algorithm": "SHA1", + "checksumValue": "0000000000000000000000000000000000000000" + } + ], + "licenseConcluded": "NOASSERTION", + "licenseInfoInFiles": null, + "licenseComments": "", + "copyrightText": "", + "artifactOfs": null, + "comment": "layerID: sha256:7cd52847ad775a5ddc4b58326cf884beee34544296402c6292ed76474c686d39", + "noticeText": "", + "fileContributors": null, + "attributionTexts": null, + "fileDependencies": null, + "annotations": null + }, + { + "fileName": "/etc/apk/keys/alpine-devel@lists.alpinelinux.org-4a6a0840.rsa.pub", + "SPDXID": "SPDXRef-8d0f0e38c71439e1", + "fileTypes": null, + "checksums": [ + { + "algorithm": "SHA1", + "checksumValue": "0000000000000000000000000000000000000000" + } + ], + "licenseConcluded": "NOASSERTION", + "licenseInfoInFiles": null, + "licenseComments": "", + "copyrightText": "", + "artifactOfs": null, + "comment": "layerID: sha256:7cd52847ad775a5ddc4b58326cf884beee34544296402c6292ed76474c686d39", + "noticeText": "", + "fileContributors": null, + "attributionTexts": null, + "fileDependencies": null, + "annotations": null + }, + { + "fileName": "/etc/apk/keys/alpine-devel@lists.alpinelinux.org-5243ef4b.rsa.pub", + "SPDXID": "SPDXRef-671d1f01c6f0063d", + "fileTypes": null, + "checksums": [ + { + "algorithm": "SHA1", + "checksumValue": "0000000000000000000000000000000000000000" + } + ], + "licenseConcluded": "NOASSERTION", + "licenseInfoInFiles": null, + "licenseComments": "", + "copyrightText": "", + "artifactOfs": null, + "comment": "layerID: sha256:7cd52847ad775a5ddc4b58326cf884beee34544296402c6292ed76474c686d39", + "noticeText": "", + "fileContributors": null, + "attributionTexts": null, + "fileDependencies": null, + "annotations": null + }, + { + "fileName": "/etc/apk/keys/alpine-devel@lists.alpinelinux.org-5261cecb.rsa.pub", + "SPDXID": "SPDXRef-6722cd9ee8e4cd77", + "fileTypes": null, + "checksums": [ + { + "algorithm": "SHA1", + "checksumValue": "0000000000000000000000000000000000000000" + } + ], + "licenseConcluded": "NOASSERTION", + "licenseInfoInFiles": null, + "licenseComments": "", + "copyrightText": "", + "artifactOfs": null, + "comment": "layerID: sha256:7cd52847ad775a5ddc4b58326cf884beee34544296402c6292ed76474c686d39", + "noticeText": "", + "fileContributors": null, + "attributionTexts": null, + "fileDependencies": null, + "annotations": null + }, + { + "fileName": "/etc/apk/keys/alpine-devel@lists.alpinelinux.org-6165ee59.rsa.pub", + "SPDXID": "SPDXRef-627946275cda492f", + "fileTypes": null, + "checksums": [ + { + "algorithm": "SHA1", + "checksumValue": "0000000000000000000000000000000000000000" + } + ], + "licenseConcluded": "NOASSERTION", + "licenseInfoInFiles": null, + "licenseComments": "", + "copyrightText": "", + "artifactOfs": null, + "comment": "layerID: sha256:7cd52847ad775a5ddc4b58326cf884beee34544296402c6292ed76474c686d39", + "noticeText": "", + "fileContributors": null, + "attributionTexts": null, + "fileDependencies": null, + "annotations": null + }, + { + "fileName": "/etc/apk/keys/alpine-devel@lists.alpinelinux.org-61666e3f.rsa.pub", + "SPDXID": "SPDXRef-9bf3883b623158f", + "fileTypes": null, + "checksums": [ + { + "algorithm": "SHA1", + "checksumValue": "0000000000000000000000000000000000000000" + } + ], + "licenseConcluded": "NOASSERTION", + "licenseInfoInFiles": null, + "licenseComments": "", + "copyrightText": "", + "artifactOfs": null, + "comment": "layerID: sha256:7cd52847ad775a5ddc4b58326cf884beee34544296402c6292ed76474c686d39", + "noticeText": "", + "fileContributors": null, + "attributionTexts": null, + "fileDependencies": null, + "annotations": null + }, + { + "fileName": "/etc/crontabs/root", + "SPDXID": "SPDXRef-7ff31e5e9ba0bfa9", + "fileTypes": null, + "checksums": [ + { + "algorithm": "SHA1", + "checksumValue": "0000000000000000000000000000000000000000" + } + ], + "licenseConcluded": "NOASSERTION", + "licenseInfoInFiles": null, + "licenseComments": "", + "copyrightText": "", + "artifactOfs": null, + "comment": "layerID: sha256:7cd52847ad775a5ddc4b58326cf884beee34544296402c6292ed76474c686d39", + "noticeText": "", + "fileContributors": null, + "attributionTexts": null, + "fileDependencies": null, + "annotations": null + }, + { + "fileName": "/etc/fstab", + "SPDXID": "SPDXRef-6b9abe7d80ee470b", + "fileTypes": null, + "checksums": [ + { + "algorithm": "SHA1", + "checksumValue": "0000000000000000000000000000000000000000" + } + ], + "licenseConcluded": "NOASSERTION", + "licenseInfoInFiles": null, + "licenseComments": "", + "copyrightText": "", + "artifactOfs": null, + "comment": "layerID: sha256:7cd52847ad775a5ddc4b58326cf884beee34544296402c6292ed76474c686d39", + "noticeText": "", + "fileContributors": null, + "attributionTexts": null, + "fileDependencies": null, + "annotations": null + }, + { + "fileName": "/etc/group", + "SPDXID": "SPDXRef-fb8ddb3720060aa2", + "fileTypes": null, + "checksums": [ + { + "algorithm": "SHA1", + "checksumValue": "0000000000000000000000000000000000000000" + } + ], + "licenseConcluded": "NOASSERTION", + "licenseInfoInFiles": null, + "licenseComments": "", + "copyrightText": "", + "artifactOfs": null, + "comment": "layerID: sha256:7cd52847ad775a5ddc4b58326cf884beee34544296402c6292ed76474c686d39", + "noticeText": "", + "fileContributors": null, + "attributionTexts": null, + "fileDependencies": null, + "annotations": null + }, + { + "fileName": "/etc/hostname", + "SPDXID": "SPDXRef-e456dfb5be04fdb7", + "fileTypes": null, + "checksums": [ + { + "algorithm": "SHA1", + "checksumValue": "0000000000000000000000000000000000000000" + } + ], + "licenseConcluded": "NOASSERTION", + "licenseInfoInFiles": null, + "licenseComments": "", + "copyrightText": "", + "artifactOfs": null, + "comment": "layerID: sha256:7cd52847ad775a5ddc4b58326cf884beee34544296402c6292ed76474c686d39", + "noticeText": "", + "fileContributors": null, + "attributionTexts": null, + "fileDependencies": null, + "annotations": null + }, + { + "fileName": "/etc/hosts", + "SPDXID": "SPDXRef-4fdfbb03676f495b", + "fileTypes": null, + "checksums": [ + { + "algorithm": "SHA1", + "checksumValue": "0000000000000000000000000000000000000000" + } + ], + "licenseConcluded": "NOASSERTION", + "licenseInfoInFiles": null, + "licenseComments": "", + "copyrightText": "", + "artifactOfs": null, + "comment": "layerID: sha256:7cd52847ad775a5ddc4b58326cf884beee34544296402c6292ed76474c686d39", + "noticeText": "", + "fileContributors": null, + "attributionTexts": null, + "fileDependencies": null, + "annotations": null + }, + { + "fileName": "/etc/inittab", + "SPDXID": "SPDXRef-2791973cba0a89bb", + "fileTypes": null, + "checksums": [ + { + "algorithm": "SHA1", + "checksumValue": "0000000000000000000000000000000000000000" + } + ], + "licenseConcluded": "NOASSERTION", + "licenseInfoInFiles": null, + "licenseComments": "", + "copyrightText": "", + "artifactOfs": null, + "comment": "layerID: sha256:7cd52847ad775a5ddc4b58326cf884beee34544296402c6292ed76474c686d39", + "noticeText": "", + "fileContributors": null, + "attributionTexts": null, + "fileDependencies": null, + "annotations": null + }, + { + "fileName": "/etc/logrotate.d/acpid", + "SPDXID": "SPDXRef-5f6a22a80b2c468e", + "fileTypes": null, + "checksums": [ + { + "algorithm": "SHA1", + "checksumValue": "0000000000000000000000000000000000000000" + } + ], + "licenseConcluded": "NOASSERTION", + "licenseInfoInFiles": null, + "licenseComments": "", + "copyrightText": "", + "artifactOfs": null, + "comment": "layerID: sha256:7cd52847ad775a5ddc4b58326cf884beee34544296402c6292ed76474c686d39", + "noticeText": "", + "fileContributors": null, + "attributionTexts": null, + "fileDependencies": null, + "annotations": null + }, + { + "fileName": "/etc/modprobe.d/aliases.conf", + "SPDXID": "SPDXRef-1071b0c6b4d98bb1", + "fileTypes": null, + "checksums": [ + { + "algorithm": "SHA1", + "checksumValue": "0000000000000000000000000000000000000000" + } + ], + "licenseConcluded": "NOASSERTION", + "licenseInfoInFiles": null, + "licenseComments": "", + "copyrightText": "", + "artifactOfs": null, + "comment": "layerID: sha256:7cd52847ad775a5ddc4b58326cf884beee34544296402c6292ed76474c686d39", + "noticeText": "", + "fileContributors": null, + "attributionTexts": null, + "fileDependencies": null, + "annotations": null + }, + { + "fileName": "/etc/modprobe.d/blacklist.conf", + "SPDXID": "SPDXRef-7b189c84b22c7f02", + "fileTypes": null, + "checksums": [ + { + "algorithm": "SHA1", + "checksumValue": "0000000000000000000000000000000000000000" + } + ], + "licenseConcluded": "NOASSERTION", + "licenseInfoInFiles": null, + "licenseComments": "", + "copyrightText": "", + "artifactOfs": null, + "comment": "layerID: sha256:7cd52847ad775a5ddc4b58326cf884beee34544296402c6292ed76474c686d39", + "noticeText": "", + "fileContributors": null, + "attributionTexts": null, + "fileDependencies": null, + "annotations": null + }, + { + "fileName": "/etc/modprobe.d/i386.conf", + "SPDXID": "SPDXRef-b103e8d521455a19", + "fileTypes": null, + "checksums": [ + { + "algorithm": "SHA1", + "checksumValue": "0000000000000000000000000000000000000000" + } + ], + "licenseConcluded": "NOASSERTION", + "licenseInfoInFiles": null, + "licenseComments": "", + "copyrightText": "", + "artifactOfs": null, + "comment": "layerID: sha256:7cd52847ad775a5ddc4b58326cf884beee34544296402c6292ed76474c686d39", + "noticeText": "", + "fileContributors": null, + "attributionTexts": null, + "fileDependencies": null, + "annotations": null + }, + { + "fileName": "/etc/modprobe.d/kms.conf", + "SPDXID": "SPDXRef-77282715f933737e", + "fileTypes": null, + "checksums": [ + { + "algorithm": "SHA1", + "checksumValue": "0000000000000000000000000000000000000000" + } + ], + "licenseConcluded": "NOASSERTION", + "licenseInfoInFiles": null, + "licenseComments": "", + "copyrightText": "", + "artifactOfs": null, + "comment": "layerID: sha256:7cd52847ad775a5ddc4b58326cf884beee34544296402c6292ed76474c686d39", + "noticeText": "", + "fileContributors": null, + "attributionTexts": null, + "fileDependencies": null, + "annotations": null + }, + { + "fileName": "/etc/modules", + "SPDXID": "SPDXRef-8108ab845e4ccbcb", + "fileTypes": null, + "checksums": [ + { + "algorithm": "SHA1", + "checksumValue": "0000000000000000000000000000000000000000" + } + ], + "licenseConcluded": "NOASSERTION", + "licenseInfoInFiles": null, + "licenseComments": "", + "copyrightText": "", + "artifactOfs": null, + "comment": "layerID: sha256:7cd52847ad775a5ddc4b58326cf884beee34544296402c6292ed76474c686d39", + "noticeText": "", + "fileContributors": null, + "attributionTexts": null, + "fileDependencies": null, + "annotations": null + }, + { + "fileName": "/etc/motd", + "SPDXID": "SPDXRef-35ab393f27e0bc39", + "fileTypes": null, + "checksums": [ + { + "algorithm": "SHA1", + "checksumValue": "0000000000000000000000000000000000000000" + } + ], + "licenseConcluded": "NOASSERTION", + "licenseInfoInFiles": null, + "licenseComments": "", + "copyrightText": "", + "artifactOfs": null, + "comment": "layerID: sha256:7cd52847ad775a5ddc4b58326cf884beee34544296402c6292ed76474c686d39", + "noticeText": "", + "fileContributors": null, + "attributionTexts": null, + "fileDependencies": null, + "annotations": null + }, + { + "fileName": "/etc/network/if-up.d/dad", + "SPDXID": "SPDXRef-da2faa18609cadef", + "fileTypes": null, + "checksums": [ + { + "algorithm": "SHA1", + "checksumValue": "0000000000000000000000000000000000000000" + } + ], + "licenseConcluded": "NOASSERTION", + "licenseInfoInFiles": null, + "licenseComments": "", + "copyrightText": "", + "artifactOfs": null, + "comment": "layerID: sha256:7cd52847ad775a5ddc4b58326cf884beee34544296402c6292ed76474c686d39", + "noticeText": "", + "fileContributors": null, + "attributionTexts": null, + "fileDependencies": null, + "annotations": null + }, + { + "fileName": "/etc/nsswitch.conf", + "SPDXID": "SPDXRef-4cf9c3537f896231", + "fileTypes": null, + "checksums": [ + { + "algorithm": "SHA1", + "checksumValue": "0000000000000000000000000000000000000000" + } + ], + "licenseConcluded": "NOASSERTION", + "licenseInfoInFiles": null, + "licenseComments": "", + "copyrightText": "", + "artifactOfs": null, + "comment": "layerID: sha256:7cd52847ad775a5ddc4b58326cf884beee34544296402c6292ed76474c686d39", + "noticeText": "", + "fileContributors": null, + "attributionTexts": null, + "fileDependencies": null, + "annotations": null + }, + { + "fileName": "/etc/passwd", + "SPDXID": "SPDXRef-57e155e28050b71f", + "fileTypes": null, + "checksums": [ + { + "algorithm": "SHA1", + "checksumValue": "0000000000000000000000000000000000000000" + } + ], + "licenseConcluded": "NOASSERTION", + "licenseInfoInFiles": null, + "licenseComments": "", + "copyrightText": "", + "artifactOfs": null, + "comment": "layerID: sha256:7cd52847ad775a5ddc4b58326cf884beee34544296402c6292ed76474c686d39", + "noticeText": "", + "fileContributors": null, + "attributionTexts": null, + "fileDependencies": null, + "annotations": null + }, + { + "fileName": "/etc/profile", + "SPDXID": "SPDXRef-e549cedcbd486e69", + "fileTypes": null, + "checksums": [ + { + "algorithm": "SHA1", + "checksumValue": "0000000000000000000000000000000000000000" + } + ], + "licenseConcluded": "NOASSERTION", + "licenseInfoInFiles": null, + "licenseComments": "", + "copyrightText": "", + "artifactOfs": null, + "comment": "layerID: sha256:7cd52847ad775a5ddc4b58326cf884beee34544296402c6292ed76474c686d39", + "noticeText": "", + "fileContributors": null, + "attributionTexts": null, + "fileDependencies": null, + "annotations": null + }, + { + "fileName": "/etc/profile.d/README", + "SPDXID": "SPDXRef-d98fbe0bce78b009", + "fileTypes": null, + "checksums": [ + { + "algorithm": "SHA1", + "checksumValue": "0000000000000000000000000000000000000000" + } + ], + "licenseConcluded": "NOASSERTION", + "licenseInfoInFiles": null, + "licenseComments": "", + "copyrightText": "", + "artifactOfs": null, + "comment": "layerID: sha256:7cd52847ad775a5ddc4b58326cf884beee34544296402c6292ed76474c686d39", + "noticeText": "", + "fileContributors": null, + "attributionTexts": null, + "fileDependencies": null, + "annotations": null + }, + { + "fileName": "/etc/profile.d/color_prompt.sh.disabled", + "SPDXID": "SPDXRef-2eba7befcbb3bfa", + "fileTypes": null, + "checksums": [ + { + "algorithm": "SHA1", + "checksumValue": "0000000000000000000000000000000000000000" + } + ], + "licenseConcluded": "NOASSERTION", + "licenseInfoInFiles": null, + "licenseComments": "", + "copyrightText": "", + "artifactOfs": null, + "comment": "layerID: sha256:7cd52847ad775a5ddc4b58326cf884beee34544296402c6292ed76474c686d39", + "noticeText": "", + "fileContributors": null, + "attributionTexts": null, + "fileDependencies": null, + "annotations": null + }, + { + "fileName": "/etc/profile.d/locale.sh", + "SPDXID": "SPDXRef-71fcfec0ece1a67a", + "fileTypes": null, + "checksums": [ + { + "algorithm": "SHA1", + "checksumValue": "0000000000000000000000000000000000000000" + } + ], + "licenseConcluded": "NOASSERTION", + "licenseInfoInFiles": null, + "licenseComments": "", + "copyrightText": "", + "artifactOfs": null, + "comment": "layerID: sha256:7cd52847ad775a5ddc4b58326cf884beee34544296402c6292ed76474c686d39", + "noticeText": "", + "fileContributors": null, + "attributionTexts": null, + "fileDependencies": null, + "annotations": null + }, + { + "fileName": "/etc/protocols", + "SPDXID": "SPDXRef-b58b2fb69e8b39c8", + "fileTypes": null, + "checksums": [ + { + "algorithm": "SHA1", + "checksumValue": "0000000000000000000000000000000000000000" + } + ], + "licenseConcluded": "NOASSERTION", + "licenseInfoInFiles": null, + "licenseComments": "", + "copyrightText": "", + "artifactOfs": null, + "comment": "layerID: sha256:7cd52847ad775a5ddc4b58326cf884beee34544296402c6292ed76474c686d39", + "noticeText": "", + "fileContributors": null, + "attributionTexts": null, + "fileDependencies": null, + "annotations": null + }, + { + "fileName": "/etc/securetty", + "SPDXID": "SPDXRef-7964b7b17ac34389", + "fileTypes": null, + "checksums": [ + { + "algorithm": "SHA1", + "checksumValue": "0000000000000000000000000000000000000000" + } + ], + "licenseConcluded": "NOASSERTION", + "licenseInfoInFiles": null, + "licenseComments": "", + "copyrightText": "", + "artifactOfs": null, + "comment": "layerID: sha256:7cd52847ad775a5ddc4b58326cf884beee34544296402c6292ed76474c686d39", + "noticeText": "", + "fileContributors": null, + "attributionTexts": null, + "fileDependencies": null, + "annotations": null + }, + { + "fileName": "/etc/services", + "SPDXID": "SPDXRef-dfe56f19a55af4ab", + "fileTypes": null, + "checksums": [ + { + "algorithm": "SHA1", + "checksumValue": "0000000000000000000000000000000000000000" + } + ], + "licenseConcluded": "NOASSERTION", + "licenseInfoInFiles": null, + "licenseComments": "", + "copyrightText": "", + "artifactOfs": null, + "comment": "layerID: sha256:7cd52847ad775a5ddc4b58326cf884beee34544296402c6292ed76474c686d39", + "noticeText": "", + "fileContributors": null, + "attributionTexts": null, + "fileDependencies": null, + "annotations": null + }, + { + "fileName": "/etc/shadow", + "SPDXID": "SPDXRef-6202d0483a0eaf70", + "fileTypes": null, + "checksums": [ + { + "algorithm": "SHA1", + "checksumValue": "0000000000000000000000000000000000000000" + } + ], + "licenseConcluded": "NOASSERTION", + "licenseInfoInFiles": null, + "licenseComments": "", + "copyrightText": "", + "artifactOfs": null, + "comment": "layerID: sha256:7cd52847ad775a5ddc4b58326cf884beee34544296402c6292ed76474c686d39", + "noticeText": "", + "fileContributors": null, + "attributionTexts": null, + "fileDependencies": null, + "annotations": null + }, + { + "fileName": "/etc/shells", + "SPDXID": "SPDXRef-8668162f21426d67", + "fileTypes": null, + "checksums": [ + { + "algorithm": "SHA1", + "checksumValue": "0000000000000000000000000000000000000000" + } + ], + "licenseConcluded": "NOASSERTION", + "licenseInfoInFiles": null, + "licenseComments": "", + "copyrightText": "", + "artifactOfs": null, + "comment": "layerID: sha256:7cd52847ad775a5ddc4b58326cf884beee34544296402c6292ed76474c686d39", + "noticeText": "", + "fileContributors": null, + "attributionTexts": null, + "fileDependencies": null, + "annotations": null + }, + { + "fileName": "/etc/ssl/certs/ca-certificates.crt", + "SPDXID": "SPDXRef-fab6f59514f4740", + "fileTypes": null, + "checksums": [ + { + "algorithm": "SHA1", + "checksumValue": "0000000000000000000000000000000000000000" + } + ], + "licenseConcluded": "NOASSERTION", + "licenseInfoInFiles": null, + "licenseComments": "", + "copyrightText": "", + "artifactOfs": null, + "comment": "layerID: sha256:7cd52847ad775a5ddc4b58326cf884beee34544296402c6292ed76474c686d39", + "noticeText": "", + "fileContributors": null, + "attributionTexts": null, + "fileDependencies": null, + "annotations": null + }, + { + "fileName": "/etc/ssl/ct_log_list.cnf", + "SPDXID": "SPDXRef-bacd9a5a78fe821e", + "fileTypes": null, + "checksums": [ + { + "algorithm": "SHA1", + "checksumValue": "0000000000000000000000000000000000000000" + } + ], + "licenseConcluded": "NOASSERTION", + "licenseInfoInFiles": null, + "licenseComments": "", + "copyrightText": "", + "artifactOfs": null, + "comment": "layerID: sha256:7cd52847ad775a5ddc4b58326cf884beee34544296402c6292ed76474c686d39", + "noticeText": "", + "fileContributors": null, + "attributionTexts": null, + "fileDependencies": null, + "annotations": null + }, + { + "fileName": "/etc/ssl/ct_log_list.cnf.dist", + "SPDXID": "SPDXRef-e7815a8b0d1ecdc", + "fileTypes": null, + "checksums": [ + { + "algorithm": "SHA1", + "checksumValue": "0000000000000000000000000000000000000000" + } + ], + "licenseConcluded": "NOASSERTION", + "licenseInfoInFiles": null, + "licenseComments": "", + "copyrightText": "", + "artifactOfs": null, + "comment": "layerID: sha256:7cd52847ad775a5ddc4b58326cf884beee34544296402c6292ed76474c686d39", + "noticeText": "", + "fileContributors": null, + "attributionTexts": null, + "fileDependencies": null, + "annotations": null + }, + { + "fileName": "/etc/ssl/misc/CA.pl", + "SPDXID": "SPDXRef-d5b653bea57138f7", + "fileTypes": null, + "checksums": [ + { + "algorithm": "SHA1", + "checksumValue": "0000000000000000000000000000000000000000" + } + ], + "licenseConcluded": "NOASSERTION", + "licenseInfoInFiles": null, + "licenseComments": "", + "copyrightText": "", + "artifactOfs": null, + "comment": "layerID: sha256:7cd52847ad775a5ddc4b58326cf884beee34544296402c6292ed76474c686d39", + "noticeText": "", + "fileContributors": null, + "attributionTexts": null, + "fileDependencies": null, + "annotations": null + }, + { + "fileName": "/etc/ssl/misc/tsget.pl", + "SPDXID": "SPDXRef-2cb40ab7cf323e58", + "fileTypes": null, + "checksums": [ + { + "algorithm": "SHA1", + "checksumValue": "0000000000000000000000000000000000000000" + } + ], + "licenseConcluded": "NOASSERTION", + "licenseInfoInFiles": null, + "licenseComments": "", + "copyrightText": "", + "artifactOfs": null, + "comment": "layerID: sha256:7cd52847ad775a5ddc4b58326cf884beee34544296402c6292ed76474c686d39", + "noticeText": "", + "fileContributors": null, + "attributionTexts": null, + "fileDependencies": null, + "annotations": null + }, + { + "fileName": "/etc/ssl/openssl.cnf", + "SPDXID": "SPDXRef-f280edcc4c0a74ca", + "fileTypes": null, + "checksums": [ + { + "algorithm": "SHA1", + "checksumValue": "0000000000000000000000000000000000000000" + } + ], + "licenseConcluded": "NOASSERTION", + "licenseInfoInFiles": null, + "licenseComments": "", + "copyrightText": "", + "artifactOfs": null, + "comment": "layerID: sha256:7cd52847ad775a5ddc4b58326cf884beee34544296402c6292ed76474c686d39", + "noticeText": "", + "fileContributors": null, + "attributionTexts": null, + "fileDependencies": null, + "annotations": null + }, + { + "fileName": "/etc/ssl/openssl.cnf.dist", + "SPDXID": "SPDXRef-cd658a985edaf628", + "fileTypes": null, + "checksums": [ + { + "algorithm": "SHA1", + "checksumValue": "0000000000000000000000000000000000000000" + } + ], + "licenseConcluded": "NOASSERTION", + "licenseInfoInFiles": null, + "licenseComments": "", + "copyrightText": "", + "artifactOfs": null, + "comment": "layerID: sha256:7cd52847ad775a5ddc4b58326cf884beee34544296402c6292ed76474c686d39", + "noticeText": "", + "fileContributors": null, + "attributionTexts": null, + "fileDependencies": null, + "annotations": null + }, + { + "fileName": "/etc/sysctl.conf", + "SPDXID": "SPDXRef-c7bb6e42ea2504f8", + "fileTypes": null, + "checksums": [ + { + "algorithm": "SHA1", + "checksumValue": "0000000000000000000000000000000000000000" + } + ], + "licenseConcluded": "NOASSERTION", + "licenseInfoInFiles": null, + "licenseComments": "", + "copyrightText": "", + "artifactOfs": null, + "comment": "layerID: sha256:7cd52847ad775a5ddc4b58326cf884beee34544296402c6292ed76474c686d39", + "noticeText": "", + "fileContributors": null, + "attributionTexts": null, + "fileDependencies": null, + "annotations": null + }, + { + "fileName": "/etc/udhcpd.conf", + "SPDXID": "SPDXRef-faa5e8897571d717", + "fileTypes": null, + "checksums": [ + { + "algorithm": "SHA1", + "checksumValue": "0000000000000000000000000000000000000000" + } + ], + "licenseConcluded": "NOASSERTION", + "licenseInfoInFiles": null, + "licenseComments": "", + "copyrightText": "", + "artifactOfs": null, + "comment": "layerID: sha256:7cd52847ad775a5ddc4b58326cf884beee34544296402c6292ed76474c686d39", + "noticeText": "", + "fileContributors": null, + "attributionTexts": null, + "fileDependencies": null, + "annotations": null + }, + { + "fileName": "/lib/ld-musl-x86_64.so.1", + "SPDXID": "SPDXRef-f45009f97952cd8e", + "fileTypes": null, + "checksums": [ + { + "algorithm": "SHA1", + "checksumValue": "0000000000000000000000000000000000000000" + } + ], + "licenseConcluded": "NOASSERTION", + "licenseInfoInFiles": null, + "licenseComments": "", + "copyrightText": "", + "artifactOfs": null, + "comment": "layerID: sha256:7cd52847ad775a5ddc4b58326cf884beee34544296402c6292ed76474c686d39", + "noticeText": "", + "fileContributors": null, + "attributionTexts": null, + "fileDependencies": null, + "annotations": null + }, + { + "fileName": "/lib/libapk.so.3.12.0", + "SPDXID": "SPDXRef-1aa086f53c8c0808", + "fileTypes": null, + "checksums": [ + { + "algorithm": "SHA1", + "checksumValue": "0000000000000000000000000000000000000000" + } + ], + "licenseConcluded": "NOASSERTION", + "licenseInfoInFiles": null, + "licenseComments": "", + "copyrightText": "", + "artifactOfs": null, + "comment": "layerID: sha256:7cd52847ad775a5ddc4b58326cf884beee34544296402c6292ed76474c686d39", + "noticeText": "", + "fileContributors": null, + "attributionTexts": null, + "fileDependencies": null, + "annotations": null + }, + { + "fileName": "/lib/libcrypto.so.3", + "SPDXID": "SPDXRef-b5c42da9eeef9d95", + "fileTypes": null, + "checksums": [ + { + "algorithm": "SHA1", + "checksumValue": "0000000000000000000000000000000000000000" + } + ], + "licenseConcluded": "NOASSERTION", + "licenseInfoInFiles": null, + "licenseComments": "", + "copyrightText": "", + "artifactOfs": null, + "comment": "layerID: sha256:7cd52847ad775a5ddc4b58326cf884beee34544296402c6292ed76474c686d39", + "noticeText": "", + "fileContributors": null, + "attributionTexts": null, + "fileDependencies": null, + "annotations": null + }, + { + "fileName": "/lib/libssl.so.3", + "SPDXID": "SPDXRef-5c67196b8e1d1558", + "fileTypes": null, + "checksums": [ + { + "algorithm": "SHA1", + "checksumValue": "0000000000000000000000000000000000000000" + } + ], + "licenseConcluded": "NOASSERTION", + "licenseInfoInFiles": null, + "licenseComments": "", + "copyrightText": "", + "artifactOfs": null, + "comment": "layerID: sha256:7cd52847ad775a5ddc4b58326cf884beee34544296402c6292ed76474c686d39", + "noticeText": "", + "fileContributors": null, + "attributionTexts": null, + "fileDependencies": null, + "annotations": null + }, + { + "fileName": "/lib/libz.so.1.2.13", + "SPDXID": "SPDXRef-6d81ff77d1d5460a", + "fileTypes": null, + "checksums": [ + { + "algorithm": "SHA1", + "checksumValue": "0000000000000000000000000000000000000000" + } + ], + "licenseConcluded": "NOASSERTION", + "licenseInfoInFiles": null, + "licenseComments": "", + "copyrightText": "", + "artifactOfs": null, + "comment": "layerID: sha256:7cd52847ad775a5ddc4b58326cf884beee34544296402c6292ed76474c686d39", + "noticeText": "", + "fileContributors": null, + "attributionTexts": null, + "fileDependencies": null, + "annotations": null + }, + { + "fileName": "/lib/sysctl.d/00-alpine.conf", + "SPDXID": "SPDXRef-89c7ab9592844cbb", + "fileTypes": null, + "checksums": [ + { + "algorithm": "SHA1", + "checksumValue": "0000000000000000000000000000000000000000" + } + ], + "licenseConcluded": "NOASSERTION", + "licenseInfoInFiles": null, + "licenseComments": "", + "copyrightText": "", + "artifactOfs": null, + "comment": "layerID: sha256:7cd52847ad775a5ddc4b58326cf884beee34544296402c6292ed76474c686d39", + "noticeText": "", + "fileContributors": null, + "attributionTexts": null, + "fileDependencies": null, + "annotations": null + }, + { + "fileName": "/sbin/apk", + "SPDXID": "SPDXRef-c765115741fe905b", + "fileTypes": null, + "checksums": [ + { + "algorithm": "SHA1", + "checksumValue": "0000000000000000000000000000000000000000" + } + ], + "licenseConcluded": "NOASSERTION", + "licenseInfoInFiles": null, + "licenseComments": "", + "copyrightText": "", + "artifactOfs": null, + "comment": "layerID: sha256:7cd52847ad775a5ddc4b58326cf884beee34544296402c6292ed76474c686d39", + "noticeText": "", + "fileContributors": null, + "attributionTexts": null, + "fileDependencies": null, + "annotations": null + }, + { + "fileName": "/sbin/ldconfig", + "SPDXID": "SPDXRef-c911f25351778370", + "fileTypes": null, + "checksums": [ + { + "algorithm": "SHA1", + "checksumValue": "0000000000000000000000000000000000000000" + } + ], + "licenseConcluded": "NOASSERTION", + "licenseInfoInFiles": null, + "licenseComments": "", + "copyrightText": "", + "artifactOfs": null, + "comment": "layerID: sha256:7cd52847ad775a5ddc4b58326cf884beee34544296402c6292ed76474c686d39", + "noticeText": "", + "fileContributors": null, + "attributionTexts": null, + "fileDependencies": null, + "annotations": null + }, + { + "fileName": "/usr/bin/getconf", + "SPDXID": "SPDXRef-e0a729e0af2c3974", + "fileTypes": null, + "checksums": [ + { + "algorithm": "SHA1", + "checksumValue": "0000000000000000000000000000000000000000" + } + ], + "licenseConcluded": "NOASSERTION", + "licenseInfoInFiles": null, + "licenseComments": "", + "copyrightText": "", + "artifactOfs": null, + "comment": "layerID: sha256:7cd52847ad775a5ddc4b58326cf884beee34544296402c6292ed76474c686d39", + "noticeText": "", + "fileContributors": null, + "attributionTexts": null, + "fileDependencies": null, + "annotations": null + }, + { + "fileName": "/usr/bin/getent", + "SPDXID": "SPDXRef-51ddc107d90f5f4b", + "fileTypes": null, + "checksums": [ + { + "algorithm": "SHA1", + "checksumValue": "0000000000000000000000000000000000000000" + } + ], + "licenseConcluded": "NOASSERTION", + "licenseInfoInFiles": null, + "licenseComments": "", + "copyrightText": "", + "artifactOfs": null, + "comment": "layerID: sha256:7cd52847ad775a5ddc4b58326cf884beee34544296402c6292ed76474c686d39", + "noticeText": "", + "fileContributors": null, + "attributionTexts": null, + "fileDependencies": null, + "annotations": null + }, + { + "fileName": "/usr/bin/iconv", + "SPDXID": "SPDXRef-47c9d14986fb43fc", + "fileTypes": null, + "checksums": [ + { + "algorithm": "SHA1", + "checksumValue": "0000000000000000000000000000000000000000" + } + ], + "licenseConcluded": "NOASSERTION", + "licenseInfoInFiles": null, + "licenseComments": "", + "copyrightText": "", + "artifactOfs": null, + "comment": "layerID: sha256:7cd52847ad775a5ddc4b58326cf884beee34544296402c6292ed76474c686d39", + "noticeText": "", + "fileContributors": null, + "attributionTexts": null, + "fileDependencies": null, + "annotations": null + }, + { + "fileName": "/usr/bin/ldd", + "SPDXID": "SPDXRef-bf51187b1c0aae54", + "fileTypes": null, + "checksums": [ + { + "algorithm": "SHA1", + "checksumValue": "0000000000000000000000000000000000000000" + } + ], + "licenseConcluded": "NOASSERTION", + "licenseInfoInFiles": null, + "licenseComments": "", + "copyrightText": "", + "artifactOfs": null, + "comment": "layerID: sha256:7cd52847ad775a5ddc4b58326cf884beee34544296402c6292ed76474c686d39", + "noticeText": "", + "fileContributors": null, + "attributionTexts": null, + "fileDependencies": null, + "annotations": null + }, + { + "fileName": "/usr/bin/scanelf", + "SPDXID": "SPDXRef-6a7f2c32518c8dbc", + "fileTypes": null, + "checksums": [ + { + "algorithm": "SHA1", + "checksumValue": "0000000000000000000000000000000000000000" + } + ], + "licenseConcluded": "NOASSERTION", + "licenseInfoInFiles": null, + "licenseComments": "", + "copyrightText": "", + "artifactOfs": null, + "comment": "layerID: sha256:7cd52847ad775a5ddc4b58326cf884beee34544296402c6292ed76474c686d39", + "noticeText": "", + "fileContributors": null, + "attributionTexts": null, + "fileDependencies": null, + "annotations": null + }, + { + "fileName": "/usr/bin/ssl_client", + "SPDXID": "SPDXRef-d7486c5ba43c6e31", + "fileTypes": null, + "checksums": [ + { + "algorithm": "SHA1", + "checksumValue": "0000000000000000000000000000000000000000" + } + ], + "licenseConcluded": "NOASSERTION", + "licenseInfoInFiles": null, + "licenseComments": "", + "copyrightText": "", + "artifactOfs": null, + "comment": "layerID: sha256:7cd52847ad775a5ddc4b58326cf884beee34544296402c6292ed76474c686d39", + "noticeText": "", + "fileContributors": null, + "attributionTexts": null, + "fileDependencies": null, + "annotations": null + }, + { + "fileName": "/usr/lib/engines-3/afalg.so", + "SPDXID": "SPDXRef-b6274398f5a1b17c", + "fileTypes": null, + "checksums": [ + { + "algorithm": "SHA1", + "checksumValue": "0000000000000000000000000000000000000000" + } + ], + "licenseConcluded": "NOASSERTION", + "licenseInfoInFiles": null, + "licenseComments": "", + "copyrightText": "", + "artifactOfs": null, + "comment": "layerID: sha256:7cd52847ad775a5ddc4b58326cf884beee34544296402c6292ed76474c686d39", + "noticeText": "", + "fileContributors": null, + "attributionTexts": null, + "fileDependencies": null, + "annotations": null + }, + { + "fileName": "/usr/lib/engines-3/capi.so", + "SPDXID": "SPDXRef-e5d401ebaaead494", + "fileTypes": null, + "checksums": [ + { + "algorithm": "SHA1", + "checksumValue": "0000000000000000000000000000000000000000" + } + ], + "licenseConcluded": "NOASSERTION", + "licenseInfoInFiles": null, + "licenseComments": "", + "copyrightText": "", + "artifactOfs": null, + "comment": "layerID: sha256:7cd52847ad775a5ddc4b58326cf884beee34544296402c6292ed76474c686d39", + "noticeText": "", + "fileContributors": null, + "attributionTexts": null, + "fileDependencies": null, + "annotations": null + }, + { + "fileName": "/usr/lib/engines-3/loader_attic.so", + "SPDXID": "SPDXRef-e05bfc6d7f257206", + "fileTypes": null, + "checksums": [ + { + "algorithm": "SHA1", + "checksumValue": "0000000000000000000000000000000000000000" + } + ], + "licenseConcluded": "NOASSERTION", + "licenseInfoInFiles": null, + "licenseComments": "", + "copyrightText": "", + "artifactOfs": null, + "comment": "layerID: sha256:7cd52847ad775a5ddc4b58326cf884beee34544296402c6292ed76474c686d39", + "noticeText": "", + "fileContributors": null, + "attributionTexts": null, + "fileDependencies": null, + "annotations": null + }, + { + "fileName": "/usr/lib/engines-3/padlock.so", + "SPDXID": "SPDXRef-76af347c7dbc737a", + "fileTypes": null, + "checksums": [ + { + "algorithm": "SHA1", + "checksumValue": "0000000000000000000000000000000000000000" + } + ], + "licenseConcluded": "NOASSERTION", + "licenseInfoInFiles": null, + "licenseComments": "", + "copyrightText": "", + "artifactOfs": null, + "comment": "layerID: sha256:7cd52847ad775a5ddc4b58326cf884beee34544296402c6292ed76474c686d39", + "noticeText": "", + "fileContributors": null, + "attributionTexts": null, + "fileDependencies": null, + "annotations": null + }, + { + "fileName": "/usr/lib/ossl-modules/legacy.so", + "SPDXID": "SPDXRef-1ae61640919b8dcb", + "fileTypes": null, + "checksums": [ + { + "algorithm": "SHA1", + "checksumValue": "0000000000000000000000000000000000000000" + } + ], + "licenseConcluded": "NOASSERTION", + "licenseInfoInFiles": null, + "licenseComments": "", + "copyrightText": "", + "artifactOfs": null, + "comment": "layerID: sha256:7cd52847ad775a5ddc4b58326cf884beee34544296402c6292ed76474c686d39", + "noticeText": "", + "fileContributors": null, + "attributionTexts": null, + "fileDependencies": null, + "annotations": null + }, + { + "fileName": "/usr/share/apk/keys/alpine-devel@lists.alpinelinux.org-4a6a0840.rsa.pub", + "SPDXID": "SPDXRef-d7833aea1af90c3e", + "fileTypes": null, + "checksums": [ + { + "algorithm": "SHA1", + "checksumValue": "0000000000000000000000000000000000000000" + } + ], + "licenseConcluded": "NOASSERTION", + "licenseInfoInFiles": null, + "licenseComments": "", + "copyrightText": "", + "artifactOfs": null, + "comment": "layerID: sha256:7cd52847ad775a5ddc4b58326cf884beee34544296402c6292ed76474c686d39", + "noticeText": "", + "fileContributors": null, + "attributionTexts": null, + "fileDependencies": null, + "annotations": null + }, + { + "fileName": "/usr/share/apk/keys/alpine-devel@lists.alpinelinux.org-5243ef4b.rsa.pub", + "SPDXID": "SPDXRef-f229e2967a4439ae", + "fileTypes": null, + "checksums": [ + { + "algorithm": "SHA1", + "checksumValue": "0000000000000000000000000000000000000000" + } + ], + "licenseConcluded": "NOASSERTION", + "licenseInfoInFiles": null, + "licenseComments": "", + "copyrightText": "", + "artifactOfs": null, + "comment": "layerID: sha256:7cd52847ad775a5ddc4b58326cf884beee34544296402c6292ed76474c686d39", + "noticeText": "", + "fileContributors": null, + "attributionTexts": null, + "fileDependencies": null, + "annotations": null + }, + { + "fileName": "/usr/share/apk/keys/alpine-devel@lists.alpinelinux.org-524d27bb.rsa.pub", + "SPDXID": "SPDXRef-5c344de6c0adfb41", + "fileTypes": null, + "checksums": [ + { + "algorithm": "SHA1", + "checksumValue": "0000000000000000000000000000000000000000" + } + ], + "licenseConcluded": "NOASSERTION", + "licenseInfoInFiles": null, + "licenseComments": "", + "copyrightText": "", + "artifactOfs": null, + "comment": "layerID: sha256:7cd52847ad775a5ddc4b58326cf884beee34544296402c6292ed76474c686d39", + "noticeText": "", + "fileContributors": null, + "attributionTexts": null, + "fileDependencies": null, + "annotations": null + }, + { + "fileName": "/usr/share/apk/keys/alpine-devel@lists.alpinelinux.org-5261cecb.rsa.pub", + "SPDXID": "SPDXRef-7e0eaf4903e2c594", + "fileTypes": null, + "checksums": [ + { + "algorithm": "SHA1", + "checksumValue": "0000000000000000000000000000000000000000" + } + ], + "licenseConcluded": "NOASSERTION", + "licenseInfoInFiles": null, + "licenseComments": "", + "copyrightText": "", + "artifactOfs": null, + "comment": "layerID: sha256:7cd52847ad775a5ddc4b58326cf884beee34544296402c6292ed76474c686d39", + "noticeText": "", + "fileContributors": null, + "attributionTexts": null, + "fileDependencies": null, + "annotations": null + }, + { + "fileName": "/usr/share/apk/keys/alpine-devel@lists.alpinelinux.org-58199dcc.rsa.pub", + "SPDXID": "SPDXRef-c4d82f372f586c5d", + "fileTypes": null, + "checksums": [ + { + "algorithm": "SHA1", + "checksumValue": "0000000000000000000000000000000000000000" + } + ], + "licenseConcluded": "NOASSERTION", + "licenseInfoInFiles": null, + "licenseComments": "", + "copyrightText": "", + "artifactOfs": null, + "comment": "layerID: sha256:7cd52847ad775a5ddc4b58326cf884beee34544296402c6292ed76474c686d39", + "noticeText": "", + "fileContributors": null, + "attributionTexts": null, + "fileDependencies": null, + "annotations": null + }, + { + "fileName": "/usr/share/apk/keys/alpine-devel@lists.alpinelinux.org-58cbb476.rsa.pub", + "SPDXID": "SPDXRef-c9f749c20ace3749", + "fileTypes": null, + "checksums": [ + { + "algorithm": "SHA1", + "checksumValue": "0000000000000000000000000000000000000000" + } + ], + "licenseConcluded": "NOASSERTION", + "licenseInfoInFiles": null, + "licenseComments": "", + "copyrightText": "", + "artifactOfs": null, + "comment": "layerID: sha256:7cd52847ad775a5ddc4b58326cf884beee34544296402c6292ed76474c686d39", + "noticeText": "", + "fileContributors": null, + "attributionTexts": null, + "fileDependencies": null, + "annotations": null + }, + { + "fileName": "/usr/share/apk/keys/alpine-devel@lists.alpinelinux.org-58e4f17d.rsa.pub", + "SPDXID": "SPDXRef-3f37b052555a032a", + "fileTypes": null, + "checksums": [ + { + "algorithm": "SHA1", + "checksumValue": "0000000000000000000000000000000000000000" + } + ], + "licenseConcluded": "NOASSERTION", + "licenseInfoInFiles": null, + "licenseComments": "", + "copyrightText": "", + "artifactOfs": null, + "comment": "layerID: sha256:7cd52847ad775a5ddc4b58326cf884beee34544296402c6292ed76474c686d39", + "noticeText": "", + "fileContributors": null, + "attributionTexts": null, + "fileDependencies": null, + "annotations": null + }, + { + "fileName": "/usr/share/apk/keys/alpine-devel@lists.alpinelinux.org-5e69ca50.rsa.pub", + "SPDXID": "SPDXRef-bd290647080920df", + "fileTypes": null, + "checksums": [ + { + "algorithm": "SHA1", + "checksumValue": "0000000000000000000000000000000000000000" + } + ], + "licenseConcluded": "NOASSERTION", + "licenseInfoInFiles": null, + "licenseComments": "", + "copyrightText": "", + "artifactOfs": null, + "comment": "layerID: sha256:7cd52847ad775a5ddc4b58326cf884beee34544296402c6292ed76474c686d39", + "noticeText": "", + "fileContributors": null, + "attributionTexts": null, + "fileDependencies": null, + "annotations": null + }, + { + "fileName": "/usr/share/apk/keys/alpine-devel@lists.alpinelinux.org-60ac2099.rsa.pub", + "SPDXID": "SPDXRef-761377117b43797c", + "fileTypes": null, + "checksums": [ + { + "algorithm": "SHA1", + "checksumValue": "0000000000000000000000000000000000000000" + } + ], + "licenseConcluded": "NOASSERTION", + "licenseInfoInFiles": null, + "licenseComments": "", + "copyrightText": "", + "artifactOfs": null, + "comment": "layerID: sha256:7cd52847ad775a5ddc4b58326cf884beee34544296402c6292ed76474c686d39", + "noticeText": "", + "fileContributors": null, + "attributionTexts": null, + "fileDependencies": null, + "annotations": null + }, + { + "fileName": "/usr/share/apk/keys/alpine-devel@lists.alpinelinux.org-6165ee59.rsa.pub", + "SPDXID": "SPDXRef-81a031158e5a172a", + "fileTypes": null, + "checksums": [ + { + "algorithm": "SHA1", + "checksumValue": "0000000000000000000000000000000000000000" + } + ], + "licenseConcluded": "NOASSERTION", + "licenseInfoInFiles": null, + "licenseComments": "", + "copyrightText": "", + "artifactOfs": null, + "comment": "layerID: sha256:7cd52847ad775a5ddc4b58326cf884beee34544296402c6292ed76474c686d39", + "noticeText": "", + "fileContributors": null, + "attributionTexts": null, + "fileDependencies": null, + "annotations": null + }, + { + "fileName": "/usr/share/apk/keys/alpine-devel@lists.alpinelinux.org-61666e3f.rsa.pub", + "SPDXID": "SPDXRef-c0437528810bb1fb", + "fileTypes": null, + "checksums": [ + { + "algorithm": "SHA1", + "checksumValue": "0000000000000000000000000000000000000000" + } + ], + "licenseConcluded": "NOASSERTION", + "licenseInfoInFiles": null, + "licenseComments": "", + "copyrightText": "", + "artifactOfs": null, + "comment": "layerID: sha256:7cd52847ad775a5ddc4b58326cf884beee34544296402c6292ed76474c686d39", + "noticeText": "", + "fileContributors": null, + "attributionTexts": null, + "fileDependencies": null, + "annotations": null + }, + { + "fileName": "/usr/share/apk/keys/alpine-devel@lists.alpinelinux.org-616a9724.rsa.pub", + "SPDXID": "SPDXRef-932c31c2300cc286", + "fileTypes": null, + "checksums": [ + { + "algorithm": "SHA1", + "checksumValue": "0000000000000000000000000000000000000000" + } + ], + "licenseConcluded": "NOASSERTION", + "licenseInfoInFiles": null, + "licenseComments": "", + "copyrightText": "", + "artifactOfs": null, + "comment": "layerID: sha256:7cd52847ad775a5ddc4b58326cf884beee34544296402c6292ed76474c686d39", + "noticeText": "", + "fileContributors": null, + "attributionTexts": null, + "fileDependencies": null, + "annotations": null + }, + { + "fileName": "/usr/share/apk/keys/alpine-devel@lists.alpinelinux.org-616abc23.rsa.pub", + "SPDXID": "SPDXRef-a11195f3b431951d", + "fileTypes": null, + "checksums": [ + { + "algorithm": "SHA1", + "checksumValue": "0000000000000000000000000000000000000000" + } + ], + "licenseConcluded": "NOASSERTION", + "licenseInfoInFiles": null, + "licenseComments": "", + "copyrightText": "", + "artifactOfs": null, + "comment": "layerID: sha256:7cd52847ad775a5ddc4b58326cf884beee34544296402c6292ed76474c686d39", + "noticeText": "", + "fileContributors": null, + "attributionTexts": null, + "fileDependencies": null, + "annotations": null + }, + { + "fileName": "/usr/share/apk/keys/alpine-devel@lists.alpinelinux.org-616ac3bc.rsa.pub", + "SPDXID": "SPDXRef-d15e3bb2fde54385", + "fileTypes": null, + "checksums": [ + { + "algorithm": "SHA1", + "checksumValue": "0000000000000000000000000000000000000000" + } + ], + "licenseConcluded": "NOASSERTION", + "licenseInfoInFiles": null, + "licenseComments": "", + "copyrightText": "", + "artifactOfs": null, + "comment": "layerID: sha256:7cd52847ad775a5ddc4b58326cf884beee34544296402c6292ed76474c686d39", + "noticeText": "", + "fileContributors": null, + "attributionTexts": null, + "fileDependencies": null, + "annotations": null + }, + { + "fileName": "/usr/share/apk/keys/alpine-devel@lists.alpinelinux.org-616adfeb.rsa.pub", + "SPDXID": "SPDXRef-e62c139013a804b7", + "fileTypes": null, + "checksums": [ + { + "algorithm": "SHA1", + "checksumValue": "0000000000000000000000000000000000000000" + } + ], + "licenseConcluded": "NOASSERTION", + "licenseInfoInFiles": null, + "licenseComments": "", + "copyrightText": "", + "artifactOfs": null, + "comment": "layerID: sha256:7cd52847ad775a5ddc4b58326cf884beee34544296402c6292ed76474c686d39", + "noticeText": "", + "fileContributors": null, + "attributionTexts": null, + "fileDependencies": null, + "annotations": null + }, + { + "fileName": "/usr/share/apk/keys/alpine-devel@lists.alpinelinux.org-616ae350.rsa.pub", + "SPDXID": "SPDXRef-5229138dd6e4ad25", + "fileTypes": null, + "checksums": [ + { + "algorithm": "SHA1", + "checksumValue": "0000000000000000000000000000000000000000" + } + ], + "licenseConcluded": "NOASSERTION", + "licenseInfoInFiles": null, + "licenseComments": "", + "copyrightText": "", + "artifactOfs": null, + "comment": "layerID: sha256:7cd52847ad775a5ddc4b58326cf884beee34544296402c6292ed76474c686d39", + "noticeText": "", + "fileContributors": null, + "attributionTexts": null, + "fileDependencies": null, + "annotations": null + }, + { + "fileName": "/usr/share/apk/keys/alpine-devel@lists.alpinelinux.org-616db30d.rsa.pub", + "SPDXID": "SPDXRef-75fcc462c95ba1ee", + "fileTypes": null, + "checksums": [ + { + "algorithm": "SHA1", + "checksumValue": "0000000000000000000000000000000000000000" + } + ], + "licenseConcluded": "NOASSERTION", + "licenseInfoInFiles": null, + "licenseComments": "", + "copyrightText": "", + "artifactOfs": null, + "comment": "layerID: sha256:7cd52847ad775a5ddc4b58326cf884beee34544296402c6292ed76474c686d39", + "noticeText": "", + "fileContributors": null, + "attributionTexts": null, + "fileDependencies": null, + "annotations": null + }, + { + "fileName": "/usr/share/udhcpc/default.script", + "SPDXID": "SPDXRef-c468e3fb98398685", + "fileTypes": null, + "checksums": [ + { + "algorithm": "SHA1", + "checksumValue": "0000000000000000000000000000000000000000" + } + ], + "licenseConcluded": "NOASSERTION", + "licenseInfoInFiles": null, + "licenseComments": "", + "copyrightText": "", + "artifactOfs": null, + "comment": "layerID: sha256:7cd52847ad775a5ddc4b58326cf884beee34544296402c6292ed76474c686d39", + "noticeText": "", + "fileContributors": null, + "attributionTexts": null, + "fileDependencies": null, + "annotations": null + } + ], + "hasExtractedLicensingInfos": null, + "relationships": [ + { + "spdxElementId": "SPDXRef-Package-apk-busybox-binsh-256fc96b4a8c4da8", + "relatedSpdxElement": "SPDXRef-564026926225072e", + "relationshipType": "CONTAINS", + "comment": "" + }, + { + "spdxElementId": "SPDXRef-Package-apk-busybox-binsh-256fc96b4a8c4da8", + "relatedSpdxElement": "SPDXRef-Package-apk-alpine-baselayout-92b19c7750fb559d", + "relationshipType": "DEPENDENCY_OF", + "comment": "" + }, + { + "spdxElementId": "SPDXRef-Package-apk-alpine-baselayout-data-291d1267b40d636f", + "relatedSpdxElement": "SPDXRef-2791973cba0a89bb", + "relationshipType": "CONTAINS", + "comment": "" + }, + { + "spdxElementId": "SPDXRef-Package-apk-alpine-baselayout-data-291d1267b40d636f", + "relatedSpdxElement": "SPDXRef-4cf9c3537f896231", + "relationshipType": "CONTAINS", + "comment": "" + }, + { + "spdxElementId": "SPDXRef-Package-apk-alpine-baselayout-data-291d1267b40d636f", + "relatedSpdxElement": "SPDXRef-4fdfbb03676f495b", + "relationshipType": "CONTAINS", + "comment": "" + }, + { + "spdxElementId": "SPDXRef-Package-apk-alpine-baselayout-data-291d1267b40d636f", + "relatedSpdxElement": "SPDXRef-57e155e28050b71f", + "relationshipType": "CONTAINS", + "comment": "" + }, + { + "spdxElementId": "SPDXRef-Package-apk-alpine-baselayout-data-291d1267b40d636f", + "relatedSpdxElement": "SPDXRef-6202d0483a0eaf70", + "relationshipType": "CONTAINS", + "comment": "" + }, + { + "spdxElementId": "SPDXRef-Package-apk-alpine-baselayout-data-291d1267b40d636f", + "relatedSpdxElement": "SPDXRef-6b9abe7d80ee470b", + "relationshipType": "CONTAINS", + "comment": "" + }, + { + "spdxElementId": "SPDXRef-Package-apk-alpine-baselayout-data-291d1267b40d636f", + "relatedSpdxElement": "SPDXRef-8108ab845e4ccbcb", + "relationshipType": "CONTAINS", + "comment": "" + }, + { + "spdxElementId": "SPDXRef-Package-apk-alpine-baselayout-data-291d1267b40d636f", + "relatedSpdxElement": "SPDXRef-8668162f21426d67", + "relationshipType": "CONTAINS", + "comment": "" + }, + { + "spdxElementId": "SPDXRef-Package-apk-alpine-baselayout-data-291d1267b40d636f", + "relatedSpdxElement": "SPDXRef-Package-apk-alpine-baselayout-92b19c7750fb559d", + "relationshipType": "DEPENDENCY_OF", + "comment": "" + }, + { + "spdxElementId": "SPDXRef-Package-apk-alpine-baselayout-data-291d1267b40d636f", + "relatedSpdxElement": "SPDXRef-b58b2fb69e8b39c8", + "relationshipType": "CONTAINS", + "comment": "" + }, + { + "spdxElementId": "SPDXRef-Package-apk-alpine-baselayout-data-291d1267b40d636f", + "relatedSpdxElement": "SPDXRef-c7bb6e42ea2504f8", + "relationshipType": "CONTAINS", + "comment": "" + }, + { + "spdxElementId": "SPDXRef-Package-apk-alpine-baselayout-data-291d1267b40d636f", + "relatedSpdxElement": "SPDXRef-dfe56f19a55af4ab", + "relationshipType": "CONTAINS", + "comment": "" + }, + { + "spdxElementId": "SPDXRef-Package-apk-alpine-baselayout-data-291d1267b40d636f", + "relatedSpdxElement": "SPDXRef-e456dfb5be04fdb7", + "relationshipType": "CONTAINS", + "comment": "" + }, + { + "spdxElementId": "SPDXRef-Package-apk-alpine-baselayout-data-291d1267b40d636f", + "relatedSpdxElement": "SPDXRef-e549cedcbd486e69", + "relationshipType": "CONTAINS", + "comment": "" + }, + { + "spdxElementId": "SPDXRef-Package-apk-alpine-baselayout-data-291d1267b40d636f", + "relatedSpdxElement": "SPDXRef-fb8ddb3720060aa2", + "relationshipType": "CONTAINS", + "comment": "" + }, + { + "spdxElementId": "SPDXRef-Package-apk-alpine-keys-2b5e23d349b556cf", + "relatedSpdxElement": "SPDXRef-3f37b052555a032a", + "relationshipType": "CONTAINS", + "comment": "" + }, + { + "spdxElementId": "SPDXRef-Package-apk-alpine-keys-2b5e23d349b556cf", + "relatedSpdxElement": "SPDXRef-5229138dd6e4ad25", + "relationshipType": "CONTAINS", + "comment": "" + }, + { + "spdxElementId": "SPDXRef-Package-apk-alpine-keys-2b5e23d349b556cf", + "relatedSpdxElement": "SPDXRef-5c344de6c0adfb41", + "relationshipType": "CONTAINS", + "comment": "" + }, + { + "spdxElementId": "SPDXRef-Package-apk-alpine-keys-2b5e23d349b556cf", + "relatedSpdxElement": "SPDXRef-627946275cda492f", + "relationshipType": "CONTAINS", + "comment": "" + }, + { + "spdxElementId": "SPDXRef-Package-apk-alpine-keys-2b5e23d349b556cf", + "relatedSpdxElement": "SPDXRef-671d1f01c6f0063d", + "relationshipType": "CONTAINS", + "comment": "" + }, + { + "spdxElementId": "SPDXRef-Package-apk-alpine-keys-2b5e23d349b556cf", + "relatedSpdxElement": "SPDXRef-6722cd9ee8e4cd77", + "relationshipType": "CONTAINS", + "comment": "" + }, + { + "spdxElementId": "SPDXRef-Package-apk-alpine-keys-2b5e23d349b556cf", + "relatedSpdxElement": "SPDXRef-75fcc462c95ba1ee", + "relationshipType": "CONTAINS", + "comment": "" + }, + { + "spdxElementId": "SPDXRef-Package-apk-alpine-keys-2b5e23d349b556cf", + "relatedSpdxElement": "SPDXRef-761377117b43797c", + "relationshipType": "CONTAINS", + "comment": "" + }, + { + "spdxElementId": "SPDXRef-Package-apk-alpine-keys-2b5e23d349b556cf", + "relatedSpdxElement": "SPDXRef-7e0eaf4903e2c594", + "relationshipType": "CONTAINS", + "comment": "" + }, + { + "spdxElementId": "SPDXRef-Package-apk-alpine-keys-2b5e23d349b556cf", + "relatedSpdxElement": "SPDXRef-81a031158e5a172a", + "relationshipType": "CONTAINS", + "comment": "" + }, + { + "spdxElementId": "SPDXRef-Package-apk-alpine-keys-2b5e23d349b556cf", + "relatedSpdxElement": "SPDXRef-8d0f0e38c71439e1", + "relationshipType": "CONTAINS", + "comment": "" + }, + { + "spdxElementId": "SPDXRef-Package-apk-alpine-keys-2b5e23d349b556cf", + "relatedSpdxElement": "SPDXRef-932c31c2300cc286", + "relationshipType": "CONTAINS", + "comment": "" + }, + { + "spdxElementId": "SPDXRef-Package-apk-alpine-keys-2b5e23d349b556cf", + "relatedSpdxElement": "SPDXRef-9bf3883b623158f", + "relationshipType": "CONTAINS", + "comment": "" + }, + { + "spdxElementId": "SPDXRef-Package-apk-alpine-keys-2b5e23d349b556cf", + "relatedSpdxElement": "SPDXRef-a11195f3b431951d", + "relationshipType": "CONTAINS", + "comment": "" + }, + { + "spdxElementId": "SPDXRef-Package-apk-alpine-keys-2b5e23d349b556cf", + "relatedSpdxElement": "SPDXRef-bd290647080920df", + "relationshipType": "CONTAINS", + "comment": "" + }, + { + "spdxElementId": "SPDXRef-Package-apk-alpine-keys-2b5e23d349b556cf", + "relatedSpdxElement": "SPDXRef-c0437528810bb1fb", + "relationshipType": "CONTAINS", + "comment": "" + }, + { + "spdxElementId": "SPDXRef-Package-apk-alpine-keys-2b5e23d349b556cf", + "relatedSpdxElement": "SPDXRef-c4d82f372f586c5d", + "relationshipType": "CONTAINS", + "comment": "" + }, + { + "spdxElementId": "SPDXRef-Package-apk-alpine-keys-2b5e23d349b556cf", + "relatedSpdxElement": "SPDXRef-c9f749c20ace3749", + "relationshipType": "CONTAINS", + "comment": "" + }, + { + "spdxElementId": "SPDXRef-Package-apk-alpine-keys-2b5e23d349b556cf", + "relatedSpdxElement": "SPDXRef-d15e3bb2fde54385", + "relationshipType": "CONTAINS", + "comment": "" + }, + { + "spdxElementId": "SPDXRef-Package-apk-alpine-keys-2b5e23d349b556cf", + "relatedSpdxElement": "SPDXRef-d7833aea1af90c3e", + "relationshipType": "CONTAINS", + "comment": "" + }, + { + "spdxElementId": "SPDXRef-Package-apk-alpine-keys-2b5e23d349b556cf", + "relatedSpdxElement": "SPDXRef-e62c139013a804b7", + "relationshipType": "CONTAINS", + "comment": "" + }, + { + "spdxElementId": "SPDXRef-Package-apk-alpine-keys-2b5e23d349b556cf", + "relatedSpdxElement": "SPDXRef-f229e2967a4439ae", + "relationshipType": "CONTAINS", + "comment": "" + }, + { + "spdxElementId": "SPDXRef-Package-apk-busybox-623d53216342d45e", + "relatedSpdxElement": "SPDXRef-Package-apk-busybox-binsh-256fc96b4a8c4da8", + "relationshipType": "DEPENDENCY_OF", + "comment": "" + }, + { + "spdxElementId": "SPDXRef-Package-apk-busybox-623d53216342d45e", + "relatedSpdxElement": "SPDXRef-564026926225072e", + "relationshipType": "CONTAINS", + "comment": "" + }, + { + "spdxElementId": "SPDXRef-Package-apk-busybox-623d53216342d45e", + "relatedSpdxElement": "SPDXRef-5f6a22a80b2c468e", + "relationshipType": "CONTAINS", + "comment": "" + }, + { + "spdxElementId": "SPDXRef-Package-apk-busybox-623d53216342d45e", + "relatedSpdxElement": "SPDXRef-7964b7b17ac34389", + "relationshipType": "CONTAINS", + "comment": "" + }, + { + "spdxElementId": "SPDXRef-Package-apk-busybox-623d53216342d45e", + "relatedSpdxElement": "SPDXRef-c468e3fb98398685", + "relationshipType": "CONTAINS", + "comment": "" + }, + { + "spdxElementId": "SPDXRef-Package-apk-busybox-623d53216342d45e", + "relatedSpdxElement": "SPDXRef-da2faa18609cadef", + "relationshipType": "CONTAINS", + "comment": "" + }, + { + "spdxElementId": "SPDXRef-Package-apk-busybox-623d53216342d45e", + "relatedSpdxElement": "SPDXRef-Package-binary-busybox-e93bc067bebd50a9", + "relationshipType": "OTHER", + "comment": "ownership-by-file-overlap: indicates that the parent package claims ownership of a child package since the parent metadata indicates overlap with a location that a cataloger found the child package by" + }, + { + "spdxElementId": "SPDXRef-Package-apk-busybox-623d53216342d45e", + "relatedSpdxElement": "SPDXRef-faa5e8897571d717", + "relationshipType": "CONTAINS", + "comment": "" + }, + { + "spdxElementId": "SPDXRef-Package-apk-libssl3-9005623d3896bb87", + "relatedSpdxElement": "SPDXRef-5c67196b8e1d1558", + "relationshipType": "CONTAINS", + "comment": "" + }, + { + "spdxElementId": "SPDXRef-Package-apk-libssl3-9005623d3896bb87", + "relatedSpdxElement": "SPDXRef-Package-apk-ssl-client-b15247aafcd4a647", + "relationshipType": "DEPENDENCY_OF", + "comment": "" + }, + { + "spdxElementId": "SPDXRef-Package-apk-libssl3-9005623d3896bb87", + "relatedSpdxElement": "SPDXRef-Package-apk-apk-tools-e5f757b0df1f62bc", + "relationshipType": "DEPENDENCY_OF", + "comment": "" + }, + { + "spdxElementId": "SPDXRef-Package-apk-alpine-baselayout-92b19c7750fb559d", + "relatedSpdxElement": "SPDXRef-1071b0c6b4d98bb1", + "relationshipType": "CONTAINS", + "comment": "" + }, + { + "spdxElementId": "SPDXRef-Package-apk-alpine-baselayout-92b19c7750fb559d", + "relatedSpdxElement": "SPDXRef-2eba7befcbb3bfa", + "relationshipType": "CONTAINS", + "comment": "" + }, + { + "spdxElementId": "SPDXRef-Package-apk-alpine-baselayout-92b19c7750fb559d", + "relatedSpdxElement": "SPDXRef-35ab393f27e0bc39", + "relationshipType": "CONTAINS", + "comment": "" + }, + { + "spdxElementId": "SPDXRef-Package-apk-alpine-baselayout-92b19c7750fb559d", + "relatedSpdxElement": "SPDXRef-71fcfec0ece1a67a", + "relationshipType": "CONTAINS", + "comment": "" + }, + { + "spdxElementId": "SPDXRef-Package-apk-alpine-baselayout-92b19c7750fb559d", + "relatedSpdxElement": "SPDXRef-77282715f933737e", + "relationshipType": "CONTAINS", + "comment": "" + }, + { + "spdxElementId": "SPDXRef-Package-apk-alpine-baselayout-92b19c7750fb559d", + "relatedSpdxElement": "SPDXRef-7b189c84b22c7f02", + "relationshipType": "CONTAINS", + "comment": "" + }, + { + "spdxElementId": "SPDXRef-Package-apk-alpine-baselayout-92b19c7750fb559d", + "relatedSpdxElement": "SPDXRef-7ff31e5e9ba0bfa9", + "relationshipType": "CONTAINS", + "comment": "" + }, + { + "spdxElementId": "SPDXRef-Package-apk-alpine-baselayout-92b19c7750fb559d", + "relatedSpdxElement": "SPDXRef-89c7ab9592844cbb", + "relationshipType": "CONTAINS", + "comment": "" + }, + { + "spdxElementId": "SPDXRef-Package-apk-alpine-baselayout-92b19c7750fb559d", + "relatedSpdxElement": "SPDXRef-b103e8d521455a19", + "relationshipType": "CONTAINS", + "comment": "" + }, + { + "spdxElementId": "SPDXRef-Package-apk-alpine-baselayout-92b19c7750fb559d", + "relatedSpdxElement": "SPDXRef-d98fbe0bce78b009", + "relationshipType": "CONTAINS", + "comment": "" + }, + { + "spdxElementId": "SPDXRef-Package-apk-zlib-94014313cfcd2b71", + "relatedSpdxElement": "SPDXRef-6d81ff77d1d5460a", + "relationshipType": "CONTAINS", + "comment": "" + }, + { + "spdxElementId": "SPDXRef-Package-apk-zlib-94014313cfcd2b71", + "relatedSpdxElement": "SPDXRef-Package-apk-apk-tools-e5f757b0df1f62bc", + "relationshipType": "DEPENDENCY_OF", + "comment": "" + }, + { + "spdxElementId": "SPDXRef-Package-apk-libcrypto3-b0e92b2ef962ab6d", + "relatedSpdxElement": "SPDXRef-1ae61640919b8dcb", + "relationshipType": "CONTAINS", + "comment": "" + }, + { + "spdxElementId": "SPDXRef-Package-apk-libcrypto3-b0e92b2ef962ab6d", + "relatedSpdxElement": "SPDXRef-2cb40ab7cf323e58", + "relationshipType": "CONTAINS", + "comment": "" + }, + { + "spdxElementId": "SPDXRef-Package-apk-libcrypto3-b0e92b2ef962ab6d", + "relatedSpdxElement": "SPDXRef-76af347c7dbc737a", + "relationshipType": "CONTAINS", + "comment": "" + }, + { + "spdxElementId": "SPDXRef-Package-apk-libcrypto3-b0e92b2ef962ab6d", + "relatedSpdxElement": "SPDXRef-Package-apk-libssl3-9005623d3896bb87", + "relationshipType": "DEPENDENCY_OF", + "comment": "" + }, + { + "spdxElementId": "SPDXRef-Package-apk-libcrypto3-b0e92b2ef962ab6d", + "relatedSpdxElement": "SPDXRef-Package-apk-ssl-client-b15247aafcd4a647", + "relationshipType": "DEPENDENCY_OF", + "comment": "" + }, + { + "spdxElementId": "SPDXRef-Package-apk-libcrypto3-b0e92b2ef962ab6d", + "relatedSpdxElement": "SPDXRef-b5c42da9eeef9d95", + "relationshipType": "CONTAINS", + "comment": "" + }, + { + "spdxElementId": "SPDXRef-Package-apk-libcrypto3-b0e92b2ef962ab6d", + "relatedSpdxElement": "SPDXRef-b6274398f5a1b17c", + "relationshipType": "CONTAINS", + "comment": "" + }, + { + "spdxElementId": "SPDXRef-Package-apk-libcrypto3-b0e92b2ef962ab6d", + "relatedSpdxElement": "SPDXRef-bacd9a5a78fe821e", + "relationshipType": "CONTAINS", + "comment": "" + }, + { + "spdxElementId": "SPDXRef-Package-apk-libcrypto3-b0e92b2ef962ab6d", + "relatedSpdxElement": "SPDXRef-cd658a985edaf628", + "relationshipType": "CONTAINS", + "comment": "" + }, + { + "spdxElementId": "SPDXRef-Package-apk-libcrypto3-b0e92b2ef962ab6d", + "relatedSpdxElement": "SPDXRef-d5b653bea57138f7", + "relationshipType": "CONTAINS", + "comment": "" + }, + { + "spdxElementId": "SPDXRef-Package-apk-libcrypto3-b0e92b2ef962ab6d", + "relatedSpdxElement": "SPDXRef-e05bfc6d7f257206", + "relationshipType": "CONTAINS", + "comment": "" + }, + { + "spdxElementId": "SPDXRef-Package-apk-libcrypto3-b0e92b2ef962ab6d", + "relatedSpdxElement": "SPDXRef-e5d401ebaaead494", + "relationshipType": "CONTAINS", + "comment": "" + }, + { + "spdxElementId": "SPDXRef-Package-apk-libcrypto3-b0e92b2ef962ab6d", + "relatedSpdxElement": "SPDXRef-Package-apk-apk-tools-e5f757b0df1f62bc", + "relationshipType": "DEPENDENCY_OF", + "comment": "" + }, + { + "spdxElementId": "SPDXRef-Package-apk-libcrypto3-b0e92b2ef962ab6d", + "relatedSpdxElement": "SPDXRef-e7815a8b0d1ecdc", + "relationshipType": "CONTAINS", + "comment": "" + }, + { + "spdxElementId": "SPDXRef-Package-apk-libcrypto3-b0e92b2ef962ab6d", + "relatedSpdxElement": "SPDXRef-f280edcc4c0a74ca", + "relationshipType": "CONTAINS", + "comment": "" + }, + { + "spdxElementId": "SPDXRef-Package-apk-ssl-client-b15247aafcd4a647", + "relatedSpdxElement": "SPDXRef-d7486c5ba43c6e31", + "relationshipType": "CONTAINS", + "comment": "" + }, + { + "spdxElementId": "SPDXRef-Package-apk-ca-certificates-bundle-b805d823ae624f04", + "relatedSpdxElement": "SPDXRef-Package-apk-apk-tools-e5f757b0df1f62bc", + "relationshipType": "DEPENDENCY_OF", + "comment": "" + }, + { + "spdxElementId": "SPDXRef-Package-apk-ca-certificates-bundle-b805d823ae624f04", + "relatedSpdxElement": "SPDXRef-fab6f59514f4740", + "relationshipType": "CONTAINS", + "comment": "" + }, + { + "spdxElementId": "SPDXRef-Package-apk-musl-d9700f02cf26e8b8", + "relatedSpdxElement": "SPDXRef-Package-apk-busybox-623d53216342d45e", + "relationshipType": "DEPENDENCY_OF", + "comment": "" + }, + { + "spdxElementId": "SPDXRef-Package-apk-musl-d9700f02cf26e8b8", + "relatedSpdxElement": "SPDXRef-Package-apk-libssl3-9005623d3896bb87", + "relationshipType": "DEPENDENCY_OF", + "comment": "" + }, + { + "spdxElementId": "SPDXRef-Package-apk-musl-d9700f02cf26e8b8", + "relatedSpdxElement": "SPDXRef-Package-apk-zlib-94014313cfcd2b71", + "relationshipType": "DEPENDENCY_OF", + "comment": "" + }, + { + "spdxElementId": "SPDXRef-Package-apk-musl-d9700f02cf26e8b8", + "relatedSpdxElement": "SPDXRef-Package-apk-libcrypto3-b0e92b2ef962ab6d", + "relationshipType": "DEPENDENCY_OF", + "comment": "" + }, + { + "spdxElementId": "SPDXRef-Package-apk-musl-d9700f02cf26e8b8", + "relatedSpdxElement": "SPDXRef-Package-apk-ssl-client-b15247aafcd4a647", + "relationshipType": "DEPENDENCY_OF", + "comment": "" + }, + { + "spdxElementId": "SPDXRef-Package-apk-musl-d9700f02cf26e8b8", + "relatedSpdxElement": "SPDXRef-Package-apk-apk-tools-e5f757b0df1f62bc", + "relationshipType": "DEPENDENCY_OF", + "comment": "" + }, + { + "spdxElementId": "SPDXRef-Package-apk-musl-d9700f02cf26e8b8", + "relatedSpdxElement": "SPDXRef-Package-apk-apk-tools-e5f757b0df1f62bc", + "relationshipType": "DEPENDENCY_OF", + "comment": "" + }, + { + "spdxElementId": "SPDXRef-Package-apk-musl-d9700f02cf26e8b8", + "relatedSpdxElement": "SPDXRef-Package-apk-scanelf-e903138d19e85b80", + "relationshipType": "DEPENDENCY_OF", + "comment": "" + }, + { + "spdxElementId": "SPDXRef-Package-apk-musl-d9700f02cf26e8b8", + "relatedSpdxElement": "SPDXRef-f45009f97952cd8e", + "relationshipType": "CONTAINS", + "comment": "" + }, + { + "spdxElementId": "SPDXRef-Package-apk-musl-d9700f02cf26e8b8", + "relatedSpdxElement": "SPDXRef-Package-apk-musl-utils-f71ecf5267e6c37b", + "relationshipType": "DEPENDENCY_OF", + "comment": "" + }, + { + "spdxElementId": "SPDXRef-Package-apk-apk-tools-e5f757b0df1f62bc", + "relatedSpdxElement": "SPDXRef-1aa086f53c8c0808", + "relationshipType": "CONTAINS", + "comment": "" + }, + { + "spdxElementId": "SPDXRef-Package-apk-apk-tools-e5f757b0df1f62bc", + "relatedSpdxElement": "SPDXRef-c765115741fe905b", + "relationshipType": "CONTAINS", + "comment": "" + }, + { + "spdxElementId": "SPDXRef-Package-apk-scanelf-e903138d19e85b80", + "relatedSpdxElement": "SPDXRef-6a7f2c32518c8dbc", + "relationshipType": "CONTAINS", + "comment": "" + }, + { + "spdxElementId": "SPDXRef-Package-apk-scanelf-e903138d19e85b80", + "relatedSpdxElement": "SPDXRef-Package-apk-musl-utils-f71ecf5267e6c37b", + "relationshipType": "DEPENDENCY_OF", + "comment": "" + }, + { + "spdxElementId": "SPDXRef-Package-apk-musl-utils-f71ecf5267e6c37b", + "relatedSpdxElement": "SPDXRef-47c9d14986fb43fc", + "relationshipType": "CONTAINS", + "comment": "" + }, + { + "spdxElementId": "SPDXRef-Package-apk-musl-utils-f71ecf5267e6c37b", + "relatedSpdxElement": "SPDXRef-51ddc107d90f5f4b", + "relationshipType": "CONTAINS", + "comment": "" + }, + { + "spdxElementId": "SPDXRef-Package-apk-musl-utils-f71ecf5267e6c37b", + "relatedSpdxElement": "SPDXRef-Package-apk-libc-utils-8126b232e2d3c608", + "relationshipType": "DEPENDENCY_OF", + "comment": "" + }, + { + "spdxElementId": "SPDXRef-Package-apk-musl-utils-f71ecf5267e6c37b", + "relatedSpdxElement": "SPDXRef-bf51187b1c0aae54", + "relationshipType": "CONTAINS", + "comment": "" + }, + { + "spdxElementId": "SPDXRef-Package-apk-musl-utils-f71ecf5267e6c37b", + "relatedSpdxElement": "SPDXRef-c911f25351778370", + "relationshipType": "CONTAINS", + "comment": "" + }, + { + "spdxElementId": "SPDXRef-Package-apk-musl-utils-f71ecf5267e6c37b", + "relatedSpdxElement": "SPDXRef-e0a729e0af2c3974", + "relationshipType": "CONTAINS", + "comment": "" + }, + { + "spdxElementId": "SPDXRef-DOCUMENT", + "relatedSpdxElement": "SPDXRef-DOCUMENT", + "relationshipType": "DESCRIBES", + "comment": "" + } + ], + "annotations": null, + "snippets": null +} \ No newline at end of file diff --git a/repositories/testdata/nginx-cve.json b/repositories/testdata/nginx-cve.json new file mode 100644 index 0000000..57f1435 --- /dev/null +++ b/repositories/testdata/nginx-cve.json @@ -0,0 +1,38159 @@ +{ + "ID": "docker.io/library/nginx@sha256:32fdf92b4e986e109e4db0865758020cb0c3b70d6ba80d02fe87bad5cc3dc228", + "Wlid": "", + "SBOMCreatorName": "", + "SBOMCreatorVersion": "Mock SBOM 1.0", + "CVEScannerName": "", + "CVEScannerVersion": "unknown", + "CVEDBVersion": "sha256:ab0f3d368682eb6c3b137d1fc4ace82e6beb9d1b462485193b90009fc8dd0125", + "Content": { + "matches": [ + { + "vulnerability": { + "id": "CVE-2005-2541", + "dataSource": "https://security-tracker.debian.org/tracker/CVE-2005-2541", + "namespace": "debian:distro:debian:9", + "severity": "Negligible", + "urls": [ + "https://security-tracker.debian.org/tracker/CVE-2005-2541" + ], + "description": "Tar 1.15.1 does not properly warn the user when extracting setuid or setgid files, which may allow local users or remote attackers to gain privileges.", + "cvss": null, + "fix": { + "versions": [], + "state": "not-fixed" + }, + "advisories": null + }, + "relatedVulnerabilities": [ + { + "id": "CVE-2005-2541", + "dataSource": "https://nvd.nist.gov/vuln/detail/CVE-2005-2541", + "namespace": "nvd:cpe", + "severity": "High", + "urls": [ + "http://marc.info/?l=bugtraq\u0026m=112327628230258\u0026w=2", + "https://lists.apache.org/thread.html/rc713534b10f9daeee2e0990239fa407e2118e4aa9e88a7041177497c@%3Cissues.guacamole.apache.org%3E" + ], + "description": "Tar 1.15.1 does not properly warn the user when extracting setuid or setgid files, which may allow local users or remote attackers to gain privileges.", + "cvss": null + } + ], + "matchDetails": [ + { + "type": "exact-direct-match", + "matcher": "dpkg-matcher", + "searchedBy": { + "distro": { + "type": "debian", + "version": "9" + }, + "namespace": "debian:distro:debian:9", + "package": { + "name": "tar", + "version": "1.29b-1.1" + } + }, + "found": { + "versionConstraint": "none (deb)", + "vulnerabilityID": "CVE-2005-2541" + } + } + ], + "artifact": { + "name": "tar", + "version": "1.29b-1.1", + "type": "deb", + "locations": null, + "language": "", + "licenses": [ + "GPL-2.0-only", + "GPL-3.0-only" + ], + "cpes": [ + "cpe:2.3:a:tar:tar:1.29b-1.1:*:*:*:*:*:*:*" + ], + "purl": "pkg:deb/debian/tar@1.29b-1.1?arch=amd64\u0026distro=debian-9", + "upstreams": null, + "metadata": null + } + }, + { + "vulnerability": { + "id": "CVE-2007-5686", + "dataSource": "https://security-tracker.debian.org/tracker/CVE-2007-5686", + "namespace": "debian:distro:debian:9", + "severity": "Negligible", + "urls": [ + "https://security-tracker.debian.org/tracker/CVE-2007-5686" + ], + "description": "initscripts in rPath Linux 1 sets insecure permissions for the /var/log/btmp file, which allows local users to obtain sensitive information regarding authentication attempts. NOTE: because sshd detects the insecure permissions and does not log certain events, this also prevents sshd from logging failed authentication attempts by remote attackers.", + "cvss": null, + "fix": { + "versions": [], + "state": "not-fixed" + }, + "advisories": null + }, + "relatedVulnerabilities": [ + { + "id": "CVE-2007-5686", + "dataSource": "https://nvd.nist.gov/vuln/detail/CVE-2007-5686", + "namespace": "nvd:cpe", + "severity": "Medium", + "urls": [ + "http://www.securityfocus.com/archive/1/482129/100/100/threaded", + "http://www.securityfocus.com/archive/1/482857/100/0/threaded", + "http://www.securityfocus.com/bid/26048", + "http://www.vupen.com/english/advisories/2007/3474", + "https://issues.rpath.com/browse/RPL-1825" + ], + "description": "initscripts in rPath Linux 1 sets insecure permissions for the /var/log/btmp file, which allows local users to obtain sensitive information regarding authentication attempts. NOTE: because sshd detects the insecure permissions and does not log certain events, this also prevents sshd from logging failed authentication attempts by remote attackers.", + "cvss": null + } + ], + "matchDetails": [ + { + "type": "exact-indirect-match", + "matcher": "dpkg-matcher", + "searchedBy": { + "distro": { + "type": "debian", + "version": "9" + }, + "namespace": "debian:distro:debian:9", + "package": { + "name": "shadow", + "version": "1:4.4-4.1" + } + }, + "found": { + "versionConstraint": "none (deb)", + "vulnerabilityID": "CVE-2007-5686" + } + } + ], + "artifact": { + "name": "login", + "version": "1:4.4-4.1", + "type": "deb", + "locations": null, + "language": "", + "licenses": [ + "GPL-2.0-only" + ], + "cpes": [ + "cpe:2.3:a:login:login:1:4.4-4.1:*:*:*:*:*:*:*" + ], + "purl": "pkg:deb/debian/login@1:4.4-4.1?arch=amd64\u0026upstream=shadow\u0026distro=debian-9", + "upstreams": [ + { + "name": "shadow" + } + ], + "metadata": null + } + }, + { + "vulnerability": { + "id": "CVE-2007-5686", + "dataSource": "https://security-tracker.debian.org/tracker/CVE-2007-5686", + "namespace": "debian:distro:debian:9", + "severity": "Negligible", + "urls": [ + "https://security-tracker.debian.org/tracker/CVE-2007-5686" + ], + "description": "initscripts in rPath Linux 1 sets insecure permissions for the /var/log/btmp file, which allows local users to obtain sensitive information regarding authentication attempts. NOTE: because sshd detects the insecure permissions and does not log certain events, this also prevents sshd from logging failed authentication attempts by remote attackers.", + "cvss": null, + "fix": { + "versions": [], + "state": "not-fixed" + }, + "advisories": null + }, + "relatedVulnerabilities": [ + { + "id": "CVE-2007-5686", + "dataSource": "https://nvd.nist.gov/vuln/detail/CVE-2007-5686", + "namespace": "nvd:cpe", + "severity": "Medium", + "urls": [ + "http://www.securityfocus.com/archive/1/482129/100/100/threaded", + "http://www.securityfocus.com/archive/1/482857/100/0/threaded", + "http://www.securityfocus.com/bid/26048", + "http://www.vupen.com/english/advisories/2007/3474", + "https://issues.rpath.com/browse/RPL-1825" + ], + "description": "initscripts in rPath Linux 1 sets insecure permissions for the /var/log/btmp file, which allows local users to obtain sensitive information regarding authentication attempts. NOTE: because sshd detects the insecure permissions and does not log certain events, this also prevents sshd from logging failed authentication attempts by remote attackers.", + "cvss": null + } + ], + "matchDetails": [ + { + "type": "exact-indirect-match", + "matcher": "dpkg-matcher", + "searchedBy": { + "distro": { + "type": "debian", + "version": "9" + }, + "namespace": "debian:distro:debian:9", + "package": { + "name": "shadow", + "version": "1:4.4-4.1" + } + }, + "found": { + "versionConstraint": "none (deb)", + "vulnerabilityID": "CVE-2007-5686" + } + } + ], + "artifact": { + "name": "passwd", + "version": "1:4.4-4.1", + "type": "deb", + "locations": null, + "language": "", + "licenses": [ + "GPL-2.0-only" + ], + "cpes": [ + "cpe:2.3:a:passwd:passwd:1:4.4-4.1:*:*:*:*:*:*:*" + ], + "purl": "pkg:deb/debian/passwd@1:4.4-4.1?arch=amd64\u0026upstream=shadow\u0026distro=debian-9", + "upstreams": [ + { + "name": "shadow" + } + ], + "metadata": null + } + }, + { + "vulnerability": { + "id": "CVE-2007-6755", + "dataSource": "https://security-tracker.debian.org/tracker/CVE-2007-6755", + "namespace": "debian:distro:debian:9", + "severity": "Negligible", + "urls": [ + "https://security-tracker.debian.org/tracker/CVE-2007-6755" + ], + "description": "The NIST SP 800-90A default statement of the Dual Elliptic Curve Deterministic Random Bit Generation (Dual_EC_DRBG) algorithm contains point Q constants with a possible relationship to certain \"skeleton key\" values, which might allow context-dependent attackers to defeat cryptographic protection mechanisms by leveraging knowledge of those values. NOTE: this is a preliminary CVE for Dual_EC_DRBG; future research may provide additional details about point Q and associated attacks, and could potentially lead to a RECAST or REJECT of this CVE.", + "cvss": null, + "fix": { + "versions": [], + "state": "not-fixed" + }, + "advisories": null + }, + "relatedVulnerabilities": [ + { + "id": "CVE-2007-6755", + "dataSource": "https://nvd.nist.gov/vuln/detail/CVE-2007-6755", + "namespace": "nvd:cpe", + "severity": "Medium", + "urls": [ + "http://arstechnica.com/security/2013/09/stop-using-nsa-influence-code-in-our-product-rsa-tells-customers/", + "http://blog.cryptographyengineering.com/2013/09/rsa-warns-developers-against-its-own.html", + "http://blog.cryptographyengineering.com/2013/09/the-many-flaws-of-dualecdrbg.html", + "http://rump2007.cr.yp.to/15-shumow.pdf", + "http://stream.wsj.com/story/latest-headlines/SS-2-63399/SS-2-332655/", + "http://threatpost.com/in-wake-of-latest-crypto-revelations-everything-is-suspect", + "http://www.securityfocus.com/bid/63657", + "https://www.schneier.com/blog/archives/2007/11/the_strange_sto.html" + ], + "description": "The NIST SP 800-90A default statement of the Dual Elliptic Curve Deterministic Random Bit Generation (Dual_EC_DRBG) algorithm contains point Q constants with a possible relationship to certain \"skeleton key\" values, which might allow context-dependent attackers to defeat cryptographic protection mechanisms by leveraging knowledge of those values. NOTE: this is a preliminary CVE for Dual_EC_DRBG; future research may provide additional details about point Q and associated attacks, and could potentially lead to a RECAST or REJECT of this CVE.", + "cvss": null + } + ], + "matchDetails": [ + { + "type": "exact-indirect-match", + "matcher": "dpkg-matcher", + "searchedBy": { + "distro": { + "type": "debian", + "version": "9" + }, + "namespace": "debian:distro:debian:9", + "package": { + "name": "openssl", + "version": "1.1.0f-3+deb9u2" + } + }, + "found": { + "versionConstraint": "none (deb)", + "vulnerabilityID": "CVE-2007-6755" + } + } + ], + "artifact": { + "name": "libssl1.1", + "version": "1.1.0f-3+deb9u2", + "type": "deb", + "locations": null, + "language": "", + "licenses": [], + "cpes": [ + "cpe:2.3:a:libssl1.1:libssl1.1:1.1.0f-3+deb9u2:*:*:*:*:*:*:*" + ], + "purl": "pkg:deb/debian/libssl1.1@1.1.0f-3+deb9u2?arch=amd64\u0026upstream=openssl\u0026distro=debian-9", + "upstreams": [ + { + "name": "openssl" + } + ], + "metadata": null + } + }, + { + "vulnerability": { + "id": "CVE-2009-4487", + "dataSource": "https://security-tracker.debian.org/tracker/CVE-2009-4487", + "namespace": "debian:distro:debian:9", + "severity": "Negligible", + "urls": [ + "https://security-tracker.debian.org/tracker/CVE-2009-4487" + ], + "description": "nginx 0.7.64 writes data to a log file without sanitizing non-printable characters, which might allow remote attackers to modify a window's title, or possibly execute arbitrary commands or overwrite files, via an HTTP request containing an escape sequence for a terminal emulator.", + "cvss": null, + "fix": { + "versions": [], + "state": "not-fixed" + }, + "advisories": null + }, + "relatedVulnerabilities": [ + { + "id": "CVE-2009-4487", + "dataSource": "https://nvd.nist.gov/vuln/detail/CVE-2009-4487", + "namespace": "nvd:cpe", + "severity": "Medium", + "urls": [ + "http://www.securityfocus.com/archive/1/508830/100/0/threaded", + "http://www.securityfocus.com/bid/37711", + "http://www.ush.it/team/ush/hack_httpd_escape/adv.txt" + ], + "description": "nginx 0.7.64 writes data to a log file without sanitizing non-printable characters, which might allow remote attackers to modify a window's title, or possibly execute arbitrary commands or overwrite files, via an HTTP request containing an escape sequence for a terminal emulator.", + "cvss": null + } + ], + "matchDetails": [ + { + "type": "exact-direct-match", + "matcher": "dpkg-matcher", + "searchedBy": { + "distro": { + "type": "debian", + "version": "9" + }, + "namespace": "debian:distro:debian:9", + "package": { + "name": "nginx", + "version": "1.14.1-1~stretch" + } + }, + "found": { + "versionConstraint": "none (deb)", + "vulnerabilityID": "CVE-2009-4487" + } + } + ], + "artifact": { + "name": "nginx", + "version": "1.14.1-1~stretch", + "type": "deb", + "locations": null, + "language": "", + "licenses": [], + "cpes": [ + "cpe:2.3:a:nginx:nginx:1.14.1-1~stretch:*:*:*:*:*:*:*" + ], + "purl": "pkg:deb/debian/nginx@1.14.1-1~stretch?arch=amd64\u0026distro=debian-9", + "upstreams": null, + "metadata": null + } + }, + { + "vulnerability": { + "id": "CVE-2009-5155", + "dataSource": "https://security-tracker.debian.org/tracker/CVE-2009-5155", + "namespace": "debian:distro:debian:9", + "severity": "High", + "urls": [ + "https://security-tracker.debian.org/tracker/CVE-2009-5155" + ], + "description": "In the GNU C Library (aka glibc or libc6) before 2.28, parse_reg_exp in posix/regcomp.c misparses alternatives, which allows attackers to cause a denial of service (assertion failure and application exit) or trigger an incorrect result by attempting a regular-expression match.", + "cvss": null, + "fix": { + "versions": [], + "state": "wont-fix" + }, + "advisories": null + }, + "relatedVulnerabilities": [ + { + "id": "CVE-2009-5155", + "dataSource": "https://nvd.nist.gov/vuln/detail/CVE-2009-5155", + "namespace": "nvd:cpe", + "severity": "High", + "urls": [ + "http://git.savannah.gnu.org/cgit/gnulib.git/commit/?id=5513b40999149090987a0341c018d05d3eea1272", + "https://debbugs.gnu.org/cgi/bugreport.cgi?bug=22793", + "https://debbugs.gnu.org/cgi/bugreport.cgi?bug=32806", + "https://debbugs.gnu.org/cgi/bugreport.cgi?bug=34238", + "https://lists.apache.org/thread.html/r58af02e294bd07f487e2c64ffc0a29b837db5600e33b6e698b9d696b@%3Cissues.bookkeeper.apache.org%3E", + "https://lists.apache.org/thread.html/rf4c02775860db415b4955778a131c2795223f61cb8c6a450893651e4@%3Cissues.bookkeeper.apache.org%3E", + "https://security.netapp.com/advisory/ntap-20190315-0002/", + "https://sourceware.org/bugzilla/show_bug.cgi?id=11053", + "https://sourceware.org/bugzilla/show_bug.cgi?id=18986", + "https://sourceware.org/git/gitweb.cgi?p=glibc.git;h=eb04c21373e2a2885f3d52ff192b0499afe3c672", + "https://support.f5.com/csp/article/K64119434", + "https://support.f5.com/csp/article/K64119434?utm_source=f5support\u0026amp;utm_medium=RSS" + ], + "description": "In the GNU C Library (aka glibc or libc6) before 2.28, parse_reg_exp in posix/regcomp.c misparses alternatives, which allows attackers to cause a denial of service (assertion failure and application exit) or trigger an incorrect result by attempting a regular-expression match.", + "cvss": null + } + ], + "matchDetails": [ + { + "type": "exact-indirect-match", + "matcher": "dpkg-matcher", + "searchedBy": { + "distro": { + "type": "debian", + "version": "9" + }, + "namespace": "debian:distro:debian:9", + "package": { + "name": "glibc", + "version": "2.24-11+deb9u3" + } + }, + "found": { + "versionConstraint": "none (deb)", + "vulnerabilityID": "CVE-2009-5155" + } + } + ], + "artifact": { + "name": "libc-bin", + "version": "2.24-11+deb9u3", + "type": "deb", + "locations": null, + "language": "", + "licenses": [ + "GPL-2.0-only", + "LGPL-2.1-only" + ], + "cpes": [ + "cpe:2.3:a:libc-bin:libc-bin:2.24-11+deb9u3:*:*:*:*:*:*:*", + "cpe:2.3:a:libc-bin:libc_bin:2.24-11+deb9u3:*:*:*:*:*:*:*", + "cpe:2.3:a:libc_bin:libc-bin:2.24-11+deb9u3:*:*:*:*:*:*:*", + "cpe:2.3:a:libc_bin:libc_bin:2.24-11+deb9u3:*:*:*:*:*:*:*", + "cpe:2.3:a:libc:libc-bin:2.24-11+deb9u3:*:*:*:*:*:*:*", + "cpe:2.3:a:libc:libc_bin:2.24-11+deb9u3:*:*:*:*:*:*:*" + ], + "purl": "pkg:deb/debian/libc-bin@2.24-11+deb9u3?arch=amd64\u0026upstream=glibc\u0026distro=debian-9", + "upstreams": [ + { + "name": "glibc" + } + ], + "metadata": null + } + }, + { + "vulnerability": { + "id": "CVE-2009-5155", + "dataSource": "https://security-tracker.debian.org/tracker/CVE-2009-5155", + "namespace": "debian:distro:debian:9", + "severity": "High", + "urls": [ + "https://security-tracker.debian.org/tracker/CVE-2009-5155" + ], + "description": "In the GNU C Library (aka glibc or libc6) before 2.28, parse_reg_exp in posix/regcomp.c misparses alternatives, which allows attackers to cause a denial of service (assertion failure and application exit) or trigger an incorrect result by attempting a regular-expression match.", + "cvss": null, + "fix": { + "versions": [], + "state": "wont-fix" + }, + "advisories": null + }, + "relatedVulnerabilities": [ + { + "id": "CVE-2009-5155", + "dataSource": "https://nvd.nist.gov/vuln/detail/CVE-2009-5155", + "namespace": "nvd:cpe", + "severity": "High", + "urls": [ + "http://git.savannah.gnu.org/cgit/gnulib.git/commit/?id=5513b40999149090987a0341c018d05d3eea1272", + "https://debbugs.gnu.org/cgi/bugreport.cgi?bug=22793", + "https://debbugs.gnu.org/cgi/bugreport.cgi?bug=32806", + "https://debbugs.gnu.org/cgi/bugreport.cgi?bug=34238", + "https://lists.apache.org/thread.html/r58af02e294bd07f487e2c64ffc0a29b837db5600e33b6e698b9d696b@%3Cissues.bookkeeper.apache.org%3E", + "https://lists.apache.org/thread.html/rf4c02775860db415b4955778a131c2795223f61cb8c6a450893651e4@%3Cissues.bookkeeper.apache.org%3E", + "https://security.netapp.com/advisory/ntap-20190315-0002/", + "https://sourceware.org/bugzilla/show_bug.cgi?id=11053", + "https://sourceware.org/bugzilla/show_bug.cgi?id=18986", + "https://sourceware.org/git/gitweb.cgi?p=glibc.git;h=eb04c21373e2a2885f3d52ff192b0499afe3c672", + "https://support.f5.com/csp/article/K64119434", + "https://support.f5.com/csp/article/K64119434?utm_source=f5support\u0026amp;utm_medium=RSS" + ], + "description": "In the GNU C Library (aka glibc or libc6) before 2.28, parse_reg_exp in posix/regcomp.c misparses alternatives, which allows attackers to cause a denial of service (assertion failure and application exit) or trigger an incorrect result by attempting a regular-expression match.", + "cvss": null + } + ], + "matchDetails": [ + { + "type": "exact-indirect-match", + "matcher": "dpkg-matcher", + "searchedBy": { + "distro": { + "type": "debian", + "version": "9" + }, + "namespace": "debian:distro:debian:9", + "package": { + "name": "glibc", + "version": "2.24-11+deb9u3" + } + }, + "found": { + "versionConstraint": "none (deb)", + "vulnerabilityID": "CVE-2009-5155" + } + } + ], + "artifact": { + "name": "libc6", + "version": "2.24-11+deb9u3", + "type": "deb", + "locations": null, + "language": "", + "licenses": [ + "GPL-2.0-only", + "LGPL-2.1-only" + ], + "cpes": [ + "cpe:2.3:a:libc6:libc6:2.24-11+deb9u3:*:*:*:*:*:*:*" + ], + "purl": "pkg:deb/debian/libc6@2.24-11+deb9u3?arch=amd64\u0026upstream=glibc\u0026distro=debian-9", + "upstreams": [ + { + "name": "glibc" + } + ], + "metadata": null + } + }, + { + "vulnerability": { + "id": "CVE-2009-5155", + "dataSource": "https://security-tracker.debian.org/tracker/CVE-2009-5155", + "namespace": "debian:distro:debian:9", + "severity": "High", + "urls": [ + "https://security-tracker.debian.org/tracker/CVE-2009-5155" + ], + "description": "In the GNU C Library (aka glibc or libc6) before 2.28, parse_reg_exp in posix/regcomp.c misparses alternatives, which allows attackers to cause a denial of service (assertion failure and application exit) or trigger an incorrect result by attempting a regular-expression match.", + "cvss": null, + "fix": { + "versions": [], + "state": "wont-fix" + }, + "advisories": null + }, + "relatedVulnerabilities": [ + { + "id": "CVE-2009-5155", + "dataSource": "https://nvd.nist.gov/vuln/detail/CVE-2009-5155", + "namespace": "nvd:cpe", + "severity": "High", + "urls": [ + "http://git.savannah.gnu.org/cgit/gnulib.git/commit/?id=5513b40999149090987a0341c018d05d3eea1272", + "https://debbugs.gnu.org/cgi/bugreport.cgi?bug=22793", + "https://debbugs.gnu.org/cgi/bugreport.cgi?bug=32806", + "https://debbugs.gnu.org/cgi/bugreport.cgi?bug=34238", + "https://lists.apache.org/thread.html/r58af02e294bd07f487e2c64ffc0a29b837db5600e33b6e698b9d696b@%3Cissues.bookkeeper.apache.org%3E", + "https://lists.apache.org/thread.html/rf4c02775860db415b4955778a131c2795223f61cb8c6a450893651e4@%3Cissues.bookkeeper.apache.org%3E", + "https://security.netapp.com/advisory/ntap-20190315-0002/", + "https://sourceware.org/bugzilla/show_bug.cgi?id=11053", + "https://sourceware.org/bugzilla/show_bug.cgi?id=18986", + "https://sourceware.org/git/gitweb.cgi?p=glibc.git;h=eb04c21373e2a2885f3d52ff192b0499afe3c672", + "https://support.f5.com/csp/article/K64119434", + "https://support.f5.com/csp/article/K64119434?utm_source=f5support\u0026amp;utm_medium=RSS" + ], + "description": "In the GNU C Library (aka glibc or libc6) before 2.28, parse_reg_exp in posix/regcomp.c misparses alternatives, which allows attackers to cause a denial of service (assertion failure and application exit) or trigger an incorrect result by attempting a regular-expression match.", + "cvss": null + } + ], + "matchDetails": [ + { + "type": "exact-indirect-match", + "matcher": "dpkg-matcher", + "searchedBy": { + "distro": { + "type": "debian", + "version": "9" + }, + "namespace": "debian:distro:debian:9", + "package": { + "name": "glibc", + "version": "2.24-11+deb9u3" + } + }, + "found": { + "versionConstraint": "none (deb)", + "vulnerabilityID": "CVE-2009-5155" + } + } + ], + "artifact": { + "name": "multiarch-support", + "version": "2.24-11+deb9u3", + "type": "deb", + "locations": null, + "language": "", + "licenses": [ + "GPL-2.0-only", + "LGPL-2.1-only" + ], + "cpes": [ + "cpe:2.3:a:multiarch-support:multiarch-support:2.24-11+deb9u3:*:*:*:*:*:*:*", + "cpe:2.3:a:multiarch-support:multiarch_support:2.24-11+deb9u3:*:*:*:*:*:*:*", + "cpe:2.3:a:multiarch_support:multiarch-support:2.24-11+deb9u3:*:*:*:*:*:*:*", + "cpe:2.3:a:multiarch_support:multiarch_support:2.24-11+deb9u3:*:*:*:*:*:*:*", + "cpe:2.3:a:multiarch:multiarch-support:2.24-11+deb9u3:*:*:*:*:*:*:*", + "cpe:2.3:a:multiarch:multiarch_support:2.24-11+deb9u3:*:*:*:*:*:*:*" + ], + "purl": "pkg:deb/debian/multiarch-support@2.24-11+deb9u3?arch=amd64\u0026upstream=glibc\u0026distro=debian-9", + "upstreams": [ + { + "name": "glibc" + } + ], + "metadata": null + } + }, + { + "vulnerability": { + "id": "CVE-2010-0928", + "dataSource": "https://security-tracker.debian.org/tracker/CVE-2010-0928", + "namespace": "debian:distro:debian:9", + "severity": "Negligible", + "urls": [ + "https://security-tracker.debian.org/tracker/CVE-2010-0928" + ], + "description": "OpenSSL 0.9.8i on the Gaisler Research LEON3 SoC on the Xilinx Virtex-II Pro FPGA uses a Fixed Width Exponentiation (FWE) algorithm for certain signature calculations, and does not verify the signature before providing it to a caller, which makes it easier for physically proximate attackers to determine the private key via a modified supply voltage for the microprocessor, related to a \"fault-based attack.\"", + "cvss": null, + "fix": { + "versions": [], + "state": "not-fixed" + }, + "advisories": null + }, + "relatedVulnerabilities": [ + { + "id": "CVE-2010-0928", + "dataSource": "https://nvd.nist.gov/vuln/detail/CVE-2010-0928", + "namespace": "nvd:cpe", + "severity": "Medium", + "urls": [ + "http://rdist.root.org/2010/03/08/attacking-rsa-exponentiation-with-fault-injection/", + "http://www.eecs.umich.edu/%7Evaleria/research/publications/DATE10RSA.pdf", + "http://www.networkworld.com/news/2010/030410-rsa-security-attack.html", + "http://www.theregister.co.uk/2010/03/04/severe_openssl_vulnerability/", + "https://exchange.xforce.ibmcloud.com/vulnerabilities/56750" + ], + "description": "OpenSSL 0.9.8i on the Gaisler Research LEON3 SoC on the Xilinx Virtex-II Pro FPGA uses a Fixed Width Exponentiation (FWE) algorithm for certain signature calculations, and does not verify the signature before providing it to a caller, which makes it easier for physically proximate attackers to determine the private key via a modified supply voltage for the microprocessor, related to a \"fault-based attack.\"", + "cvss": null + } + ], + "matchDetails": [ + { + "type": "exact-indirect-match", + "matcher": "dpkg-matcher", + "searchedBy": { + "distro": { + "type": "debian", + "version": "9" + }, + "namespace": "debian:distro:debian:9", + "package": { + "name": "openssl", + "version": "1.1.0f-3+deb9u2" + } + }, + "found": { + "versionConstraint": "none (deb)", + "vulnerabilityID": "CVE-2010-0928" + } + } + ], + "artifact": { + "name": "libssl1.1", + "version": "1.1.0f-3+deb9u2", + "type": "deb", + "locations": null, + "language": "", + "licenses": [], + "cpes": [ + "cpe:2.3:a:libssl1.1:libssl1.1:1.1.0f-3+deb9u2:*:*:*:*:*:*:*" + ], + "purl": "pkg:deb/debian/libssl1.1@1.1.0f-3+deb9u2?arch=amd64\u0026upstream=openssl\u0026distro=debian-9", + "upstreams": [ + { + "name": "openssl" + } + ], + "metadata": null + } + }, + { + "vulnerability": { + "id": "CVE-2010-4756", + "dataSource": "https://security-tracker.debian.org/tracker/CVE-2010-4756", + "namespace": "debian:distro:debian:9", + "severity": "Negligible", + "urls": [ + "https://security-tracker.debian.org/tracker/CVE-2010-4756" + ], + "description": "The glob implementation in the GNU C Library (aka glibc or libc6) allows remote authenticated users to cause a denial of service (CPU and memory consumption) via crafted glob expressions that do not match any pathnames, as demonstrated by glob expressions in STAT commands to an FTP daemon, a different vulnerability than CVE-2010-2632.", + "cvss": null, + "fix": { + "versions": [], + "state": "not-fixed" + }, + "advisories": null + }, + "relatedVulnerabilities": [ + { + "id": "CVE-2010-4756", + "dataSource": "https://nvd.nist.gov/vuln/detail/CVE-2010-4756", + "namespace": "nvd:cpe", + "severity": "Medium", + "urls": [ + "http://cxib.net/stuff/glob-0day.c", + "http://securityreason.com/achievement_securityalert/89", + "http://securityreason.com/exploitalert/9223", + "https://bugzilla.redhat.com/show_bug.cgi?id=681681", + "https://bugzilla.redhat.com/show_bug.cgi?id=CVE-2010-4756" + ], + "description": "The glob implementation in the GNU C Library (aka glibc or libc6) allows remote authenticated users to cause a denial of service (CPU and memory consumption) via crafted glob expressions that do not match any pathnames, as demonstrated by glob expressions in STAT commands to an FTP daemon, a different vulnerability than CVE-2010-2632.", + "cvss": null + } + ], + "matchDetails": [ + { + "type": "exact-indirect-match", + "matcher": "dpkg-matcher", + "searchedBy": { + "distro": { + "type": "debian", + "version": "9" + }, + "namespace": "debian:distro:debian:9", + "package": { + "name": "glibc", + "version": "2.24-11+deb9u3" + } + }, + "found": { + "versionConstraint": "none (deb)", + "vulnerabilityID": "CVE-2010-4756" + } + } + ], + "artifact": { + "name": "libc-bin", + "version": "2.24-11+deb9u3", + "type": "deb", + "locations": null, + "language": "", + "licenses": [ + "GPL-2.0-only", + "LGPL-2.1-only" + ], + "cpes": [ + "cpe:2.3:a:libc-bin:libc-bin:2.24-11+deb9u3:*:*:*:*:*:*:*", + "cpe:2.3:a:libc-bin:libc_bin:2.24-11+deb9u3:*:*:*:*:*:*:*", + "cpe:2.3:a:libc_bin:libc-bin:2.24-11+deb9u3:*:*:*:*:*:*:*", + "cpe:2.3:a:libc_bin:libc_bin:2.24-11+deb9u3:*:*:*:*:*:*:*", + "cpe:2.3:a:libc:libc-bin:2.24-11+deb9u3:*:*:*:*:*:*:*", + "cpe:2.3:a:libc:libc_bin:2.24-11+deb9u3:*:*:*:*:*:*:*" + ], + "purl": "pkg:deb/debian/libc-bin@2.24-11+deb9u3?arch=amd64\u0026upstream=glibc\u0026distro=debian-9", + "upstreams": [ + { + "name": "glibc" + } + ], + "metadata": null + } + }, + { + "vulnerability": { + "id": "CVE-2010-4756", + "dataSource": "https://security-tracker.debian.org/tracker/CVE-2010-4756", + "namespace": "debian:distro:debian:9", + "severity": "Negligible", + "urls": [ + "https://security-tracker.debian.org/tracker/CVE-2010-4756" + ], + "description": "The glob implementation in the GNU C Library (aka glibc or libc6) allows remote authenticated users to cause a denial of service (CPU and memory consumption) via crafted glob expressions that do not match any pathnames, as demonstrated by glob expressions in STAT commands to an FTP daemon, a different vulnerability than CVE-2010-2632.", + "cvss": null, + "fix": { + "versions": [], + "state": "not-fixed" + }, + "advisories": null + }, + "relatedVulnerabilities": [ + { + "id": "CVE-2010-4756", + "dataSource": "https://nvd.nist.gov/vuln/detail/CVE-2010-4756", + "namespace": "nvd:cpe", + "severity": "Medium", + "urls": [ + "http://cxib.net/stuff/glob-0day.c", + "http://securityreason.com/achievement_securityalert/89", + "http://securityreason.com/exploitalert/9223", + "https://bugzilla.redhat.com/show_bug.cgi?id=681681", + "https://bugzilla.redhat.com/show_bug.cgi?id=CVE-2010-4756" + ], + "description": "The glob implementation in the GNU C Library (aka glibc or libc6) allows remote authenticated users to cause a denial of service (CPU and memory consumption) via crafted glob expressions that do not match any pathnames, as demonstrated by glob expressions in STAT commands to an FTP daemon, a different vulnerability than CVE-2010-2632.", + "cvss": null + } + ], + "matchDetails": [ + { + "type": "exact-indirect-match", + "matcher": "dpkg-matcher", + "searchedBy": { + "distro": { + "type": "debian", + "version": "9" + }, + "namespace": "debian:distro:debian:9", + "package": { + "name": "glibc", + "version": "2.24-11+deb9u3" + } + }, + "found": { + "versionConstraint": "none (deb)", + "vulnerabilityID": "CVE-2010-4756" + } + } + ], + "artifact": { + "name": "libc6", + "version": "2.24-11+deb9u3", + "type": "deb", + "locations": null, + "language": "", + "licenses": [ + "GPL-2.0-only", + "LGPL-2.1-only" + ], + "cpes": [ + "cpe:2.3:a:libc6:libc6:2.24-11+deb9u3:*:*:*:*:*:*:*" + ], + "purl": "pkg:deb/debian/libc6@2.24-11+deb9u3?arch=amd64\u0026upstream=glibc\u0026distro=debian-9", + "upstreams": [ + { + "name": "glibc" + } + ], + "metadata": null + } + }, + { + "vulnerability": { + "id": "CVE-2010-4756", + "dataSource": "https://security-tracker.debian.org/tracker/CVE-2010-4756", + "namespace": "debian:distro:debian:9", + "severity": "Negligible", + "urls": [ + "https://security-tracker.debian.org/tracker/CVE-2010-4756" + ], + "description": "The glob implementation in the GNU C Library (aka glibc or libc6) allows remote authenticated users to cause a denial of service (CPU and memory consumption) via crafted glob expressions that do not match any pathnames, as demonstrated by glob expressions in STAT commands to an FTP daemon, a different vulnerability than CVE-2010-2632.", + "cvss": null, + "fix": { + "versions": [], + "state": "not-fixed" + }, + "advisories": null + }, + "relatedVulnerabilities": [ + { + "id": "CVE-2010-4756", + "dataSource": "https://nvd.nist.gov/vuln/detail/CVE-2010-4756", + "namespace": "nvd:cpe", + "severity": "Medium", + "urls": [ + "http://cxib.net/stuff/glob-0day.c", + "http://securityreason.com/achievement_securityalert/89", + "http://securityreason.com/exploitalert/9223", + "https://bugzilla.redhat.com/show_bug.cgi?id=681681", + "https://bugzilla.redhat.com/show_bug.cgi?id=CVE-2010-4756" + ], + "description": "The glob implementation in the GNU C Library (aka glibc or libc6) allows remote authenticated users to cause a denial of service (CPU and memory consumption) via crafted glob expressions that do not match any pathnames, as demonstrated by glob expressions in STAT commands to an FTP daemon, a different vulnerability than CVE-2010-2632.", + "cvss": null + } + ], + "matchDetails": [ + { + "type": "exact-indirect-match", + "matcher": "dpkg-matcher", + "searchedBy": { + "distro": { + "type": "debian", + "version": "9" + }, + "namespace": "debian:distro:debian:9", + "package": { + "name": "glibc", + "version": "2.24-11+deb9u3" + } + }, + "found": { + "versionConstraint": "none (deb)", + "vulnerabilityID": "CVE-2010-4756" + } + } + ], + "artifact": { + "name": "multiarch-support", + "version": "2.24-11+deb9u3", + "type": "deb", + "locations": null, + "language": "", + "licenses": [ + "GPL-2.0-only", + "LGPL-2.1-only" + ], + "cpes": [ + "cpe:2.3:a:multiarch-support:multiarch-support:2.24-11+deb9u3:*:*:*:*:*:*:*", + "cpe:2.3:a:multiarch-support:multiarch_support:2.24-11+deb9u3:*:*:*:*:*:*:*", + "cpe:2.3:a:multiarch_support:multiarch-support:2.24-11+deb9u3:*:*:*:*:*:*:*", + "cpe:2.3:a:multiarch_support:multiarch_support:2.24-11+deb9u3:*:*:*:*:*:*:*", + "cpe:2.3:a:multiarch:multiarch-support:2.24-11+deb9u3:*:*:*:*:*:*:*", + "cpe:2.3:a:multiarch:multiarch_support:2.24-11+deb9u3:*:*:*:*:*:*:*" + ], + "purl": "pkg:deb/debian/multiarch-support@2.24-11+deb9u3?arch=amd64\u0026upstream=glibc\u0026distro=debian-9", + "upstreams": [ + { + "name": "glibc" + } + ], + "metadata": null + } + }, + { + "vulnerability": { + "id": "CVE-2011-3374", + "dataSource": "https://security-tracker.debian.org/tracker/CVE-2011-3374", + "namespace": "debian:distro:debian:9", + "severity": "Negligible", + "urls": [ + "https://security-tracker.debian.org/tracker/CVE-2011-3374" + ], + "description": "It was found that apt-key in apt, all versions, do not correctly validate gpg keys with the master keyring, leading to a potential man-in-the-middle attack.", + "cvss": null, + "fix": { + "versions": [], + "state": "not-fixed" + }, + "advisories": null + }, + "relatedVulnerabilities": [ + { + "id": "CVE-2011-3374", + "dataSource": "https://nvd.nist.gov/vuln/detail/CVE-2011-3374", + "namespace": "nvd:cpe", + "severity": "Low", + "urls": [ + "https://access.redhat.com/security/cve/cve-2011-3374", + "https://bugs.debian.org/cgi-bin/bugreport.cgi?bug=642480", + "https://people.canonical.com/~ubuntu-security/cve/2011/CVE-2011-3374.html", + "https://seclists.org/fulldisclosure/2011/Sep/221", + "https://security-tracker.debian.org/tracker/CVE-2011-3374", + "https://snyk.io/vuln/SNYK-LINUX-APT-116518", + "https://ubuntu.com/security/CVE-2011-3374" + ], + "description": "It was found that apt-key in apt, all versions, do not correctly validate gpg keys with the master keyring, leading to a potential man-in-the-middle attack.", + "cvss": null + } + ], + "matchDetails": [ + { + "type": "exact-direct-match", + "matcher": "dpkg-matcher", + "searchedBy": { + "distro": { + "type": "debian", + "version": "9" + }, + "namespace": "debian:distro:debian:9", + "package": { + "name": "apt", + "version": "1.4.8" + } + }, + "found": { + "versionConstraint": "none (deb)", + "vulnerabilityID": "CVE-2011-3374" + } + } + ], + "artifact": { + "name": "apt", + "version": "1.4.8", + "type": "deb", + "locations": null, + "language": "", + "licenses": [ + "GPL-2.0-only", + "LicenseRef-GPLv2-" + ], + "cpes": [ + "cpe:2.3:a:apt:apt:1.4.8:*:*:*:*:*:*:*" + ], + "purl": "pkg:deb/debian/apt@1.4.8?arch=amd64\u0026distro=debian-9", + "upstreams": null, + "metadata": null + } + }, + { + "vulnerability": { + "id": "CVE-2011-3374", + "dataSource": "https://security-tracker.debian.org/tracker/CVE-2011-3374", + "namespace": "debian:distro:debian:9", + "severity": "Negligible", + "urls": [ + "https://security-tracker.debian.org/tracker/CVE-2011-3374" + ], + "description": "It was found that apt-key in apt, all versions, do not correctly validate gpg keys with the master keyring, leading to a potential man-in-the-middle attack.", + "cvss": null, + "fix": { + "versions": [], + "state": "not-fixed" + }, + "advisories": null + }, + "relatedVulnerabilities": [ + { + "id": "CVE-2011-3374", + "dataSource": "https://nvd.nist.gov/vuln/detail/CVE-2011-3374", + "namespace": "nvd:cpe", + "severity": "Low", + "urls": [ + "https://access.redhat.com/security/cve/cve-2011-3374", + "https://bugs.debian.org/cgi-bin/bugreport.cgi?bug=642480", + "https://people.canonical.com/~ubuntu-security/cve/2011/CVE-2011-3374.html", + "https://seclists.org/fulldisclosure/2011/Sep/221", + "https://security-tracker.debian.org/tracker/CVE-2011-3374", + "https://snyk.io/vuln/SNYK-LINUX-APT-116518", + "https://ubuntu.com/security/CVE-2011-3374" + ], + "description": "It was found that apt-key in apt, all versions, do not correctly validate gpg keys with the master keyring, leading to a potential man-in-the-middle attack.", + "cvss": null + } + ], + "matchDetails": [ + { + "type": "exact-indirect-match", + "matcher": "dpkg-matcher", + "searchedBy": { + "distro": { + "type": "debian", + "version": "9" + }, + "namespace": "debian:distro:debian:9", + "package": { + "name": "apt", + "version": "1.4.8" + } + }, + "found": { + "versionConstraint": "none (deb)", + "vulnerabilityID": "CVE-2011-3374" + } + } + ], + "artifact": { + "name": "libapt-pkg5.0", + "version": "1.4.8", + "type": "deb", + "locations": null, + "language": "", + "licenses": [ + "GPL-2.0-only", + "LicenseRef-GPLv2-" + ], + "cpes": [ + "cpe:2.3:a:libapt-pkg5.0:libapt-pkg5.0:1.4.8:*:*:*:*:*:*:*", + "cpe:2.3:a:libapt-pkg5.0:libapt_pkg5.0:1.4.8:*:*:*:*:*:*:*", + "cpe:2.3:a:libapt_pkg5.0:libapt-pkg5.0:1.4.8:*:*:*:*:*:*:*", + "cpe:2.3:a:libapt_pkg5.0:libapt_pkg5.0:1.4.8:*:*:*:*:*:*:*", + "cpe:2.3:a:libapt:libapt-pkg5.0:1.4.8:*:*:*:*:*:*:*", + "cpe:2.3:a:libapt:libapt_pkg5.0:1.4.8:*:*:*:*:*:*:*" + ], + "purl": "pkg:deb/debian/libapt-pkg5.0@1.4.8?arch=amd64\u0026upstream=apt\u0026distro=debian-9", + "upstreams": [ + { + "name": "apt" + } + ], + "metadata": null + } + }, + { + "vulnerability": { + "id": "CVE-2011-4116", + "dataSource": "https://security-tracker.debian.org/tracker/CVE-2011-4116", + "namespace": "debian:distro:debian:9", + "severity": "Negligible", + "urls": [ + "https://security-tracker.debian.org/tracker/CVE-2011-4116" + ], + "description": "_is_safe in the File::Temp module for Perl does not properly handle symlinks.", + "cvss": null, + "fix": { + "versions": [], + "state": "not-fixed" + }, + "advisories": null + }, + "relatedVulnerabilities": [ + { + "id": "CVE-2011-4116", + "dataSource": "https://nvd.nist.gov/vuln/detail/CVE-2011-4116", + "namespace": "nvd:cpe", + "severity": "High", + "urls": [ + "http://www.openwall.com/lists/oss-security/2011/11/04/2", + "http://www.openwall.com/lists/oss-security/2011/11/04/4", + "https://github.com/Perl-Toolchain-Gang/File-Temp/issues/14", + "https://rt.cpan.org/Public/Bug/Display.html?id=69106", + "https://seclists.org/oss-sec/2011/q4/238" + ], + "description": "_is_safe in the File::Temp module for Perl does not properly handle symlinks.", + "cvss": null + } + ], + "matchDetails": [ + { + "type": "exact-indirect-match", + "matcher": "dpkg-matcher", + "searchedBy": { + "distro": { + "type": "debian", + "version": "9" + }, + "namespace": "debian:distro:debian:9", + "package": { + "name": "perl", + "version": "5.24.1-3+deb9u4" + } + }, + "found": { + "versionConstraint": "none (deb)", + "vulnerabilityID": "CVE-2011-4116" + } + } + ], + "artifact": { + "name": "perl-base", + "version": "5.24.1-3+deb9u4", + "type": "deb", + "locations": null, + "language": "", + "licenses": [ + "LicenseRef-Artistic", + "Artistic-2.0", + "BSD-3-Clause", + "LicenseRef-BSD-3-clause-GENERIC", + "LicenseRef-BSD-3-clause-with-weird-numbering", + "LicenseRef-BSD-4-clause-POWERDOG", + "LicenseRef-BZIP", + "LicenseRef-DONT-CHANGE-THE-GPL", + "LicenseRef-Expat", + "GPL-1.0-only", + "GPL-1.0-or-later", + "GPL-2.0-only", + "GPL-2.0-or-later", + "LicenseRef-GPL-3--WITH-BISON-EXCEPTION", + "LicenseRef-HSIEH-BSD", + "LicenseRef-HSIEH-DERIVATIVE", + "LGPL-2.1-only", + "LicenseRef-REGCOMP", + "LicenseRef-REGCOMP-", + "LicenseRef-RRA-KEEP-THIS-NOTICE", + "LicenseRef-S2P", + "LicenseRef-SDBM-PUBLIC-DOMAIN", + "LicenseRef-TEXT-TABS", + "LicenseRef-Unicode", + "Zlib" + ], + "cpes": [ + "cpe:2.3:a:perl-base:perl-base:5.24.1-3+deb9u4:*:*:*:*:*:*:*", + "cpe:2.3:a:perl-base:perl_base:5.24.1-3+deb9u4:*:*:*:*:*:*:*", + "cpe:2.3:a:perl_base:perl-base:5.24.1-3+deb9u4:*:*:*:*:*:*:*", + "cpe:2.3:a:perl_base:perl_base:5.24.1-3+deb9u4:*:*:*:*:*:*:*", + "cpe:2.3:a:perl:perl-base:5.24.1-3+deb9u4:*:*:*:*:*:*:*", + "cpe:2.3:a:perl:perl_base:5.24.1-3+deb9u4:*:*:*:*:*:*:*" + ], + "purl": "pkg:deb/debian/perl-base@5.24.1-3+deb9u4?arch=amd64\u0026upstream=perl\u0026distro=debian-9", + "upstreams": [ + { + "name": "perl" + } + ], + "metadata": null + } + }, + { + "vulnerability": { + "id": "CVE-2013-0337", + "dataSource": "https://security-tracker.debian.org/tracker/CVE-2013-0337", + "namespace": "debian:distro:debian:9", + "severity": "Low", + "urls": [ + "https://security-tracker.debian.org/tracker/CVE-2013-0337" + ], + "description": "The default configuration of nginx, possibly 1.3.13 and earlier, uses world-readable permissions for the (1) access.log and (2) error.log files, which allows local users to obtain sensitive information by reading the files.", + "cvss": null, + "fix": { + "versions": [], + "state": "wont-fix" + }, + "advisories": null + }, + "relatedVulnerabilities": [ + { + "id": "CVE-2013-0337", + "dataSource": "https://nvd.nist.gov/vuln/detail/CVE-2013-0337", + "namespace": "nvd:cpe", + "severity": "High", + "urls": [ + "http://security.gentoo.org/glsa/glsa-201310-04.xml", + "http://www.openwall.com/lists/oss-security/2013/02/21/15", + "http://www.openwall.com/lists/oss-security/2013/02/22/1", + "http://www.openwall.com/lists/oss-security/2013/02/24/1" + ], + "description": "The default configuration of nginx, possibly 1.3.13 and earlier, uses world-readable permissions for the (1) access.log and (2) error.log files, which allows local users to obtain sensitive information by reading the files.", + "cvss": null + } + ], + "matchDetails": [ + { + "type": "exact-direct-match", + "matcher": "dpkg-matcher", + "searchedBy": { + "distro": { + "type": "debian", + "version": "9" + }, + "namespace": "debian:distro:debian:9", + "package": { + "name": "nginx", + "version": "1.14.1-1~stretch" + } + }, + "found": { + "versionConstraint": "none (deb)", + "vulnerabilityID": "CVE-2013-0337" + } + } + ], + "artifact": { + "name": "nginx", + "version": "1.14.1-1~stretch", + "type": "deb", + "locations": null, + "language": "", + "licenses": [], + "cpes": [ + "cpe:2.3:a:nginx:nginx:1.14.1-1~stretch:*:*:*:*:*:*:*" + ], + "purl": "pkg:deb/debian/nginx@1.14.1-1~stretch?arch=amd64\u0026distro=debian-9", + "upstreams": null, + "metadata": null + } + }, + { + "vulnerability": { + "id": "CVE-2013-0340", + "dataSource": "https://security-tracker.debian.org/tracker/CVE-2013-0340", + "namespace": "debian:distro:debian:9", + "severity": "Negligible", + "urls": [ + "https://security-tracker.debian.org/tracker/CVE-2013-0340" + ], + "description": "expat 2.1.0 and earlier does not properly handle entities expansion unless an application developer uses the XML_SetEntityDeclHandler function, which allows remote attackers to cause a denial of service (resource consumption), send HTTP requests to intranet servers, or read arbitrary files via a crafted XML document, aka an XML External Entity (XXE) issue. NOTE: it could be argued that because expat already provides the ability to disable external entity expansion, the responsibility for resolving this issue lies with application developers; according to this argument, this entry should be REJECTed, and each affected application would need its own CVE.", + "cvss": null, + "fix": { + "versions": [], + "state": "not-fixed" + }, + "advisories": null + }, + "relatedVulnerabilities": [ + { + "id": "CVE-2013-0340", + "dataSource": "https://nvd.nist.gov/vuln/detail/CVE-2013-0340", + "namespace": "nvd:cpe", + "severity": "Medium", + "urls": [ + "http://openwall.com/lists/oss-security/2013/02/22/3", + "http://seclists.org/fulldisclosure/2021/Oct/61", + "http://seclists.org/fulldisclosure/2021/Oct/62", + "http://seclists.org/fulldisclosure/2021/Oct/63", + "http://seclists.org/fulldisclosure/2021/Sep/33", + "http://seclists.org/fulldisclosure/2021/Sep/34", + "http://seclists.org/fulldisclosure/2021/Sep/35", + "http://seclists.org/fulldisclosure/2021/Sep/38", + "http://seclists.org/fulldisclosure/2021/Sep/39", + "http://seclists.org/fulldisclosure/2021/Sep/40", + "http://securitytracker.com/id?1028213", + "http://www.openwall.com/lists/oss-security/2013/04/12/6", + "http://www.openwall.com/lists/oss-security/2021/10/07/4", + "http://www.securityfocus.com/bid/58233", + "https://lists.apache.org/thread.html/r41eca5f4f09e74436cbb05dec450fc2bef37b5d3e966aa7cc5fada6d%40%3Cannounce.apache.org%3E", + "https://lists.apache.org/thread.html/rfb2c193360436e230b85547e85a41bea0916916f96c501f5b6fc4702%40%3Cusers.openoffice.apache.org%3E", + "https://security.gentoo.org/glsa/201701-21", + "https://support.apple.com/kb/HT212804", + "https://support.apple.com/kb/HT212805", + "https://support.apple.com/kb/HT212807", + "https://support.apple.com/kb/HT212814", + "https://support.apple.com/kb/HT212815", + "https://support.apple.com/kb/HT212819" + ], + "description": "expat 2.1.0 and earlier does not properly handle entities expansion unless an application developer uses the XML_SetEntityDeclHandler function, which allows remote attackers to cause a denial of service (resource consumption), send HTTP requests to intranet servers, or read arbitrary files via a crafted XML document, aka an XML External Entity (XXE) issue. NOTE: it could be argued that because expat already provides the ability to disable external entity expansion, the responsibility for resolving this issue lies with application developers; according to this argument, this entry should be REJECTed, and each affected application would need its own CVE.", + "cvss": null + } + ], + "matchDetails": [ + { + "type": "exact-indirect-match", + "matcher": "dpkg-matcher", + "searchedBy": { + "distro": { + "type": "debian", + "version": "9" + }, + "namespace": "debian:distro:debian:9", + "package": { + "name": "expat", + "version": "2.2.0-2+deb9u1" + } + }, + "found": { + "versionConstraint": "none (deb)", + "vulnerabilityID": "CVE-2013-0340" + } + } + ], + "artifact": { + "name": "libexpat1", + "version": "2.2.0-2+deb9u1", + "type": "deb", + "locations": null, + "language": "", + "licenses": [], + "cpes": [ + "cpe:2.3:a:libexpat1:libexpat1:2.2.0-2+deb9u1:*:*:*:*:*:*:*" + ], + "purl": "pkg:deb/debian/libexpat1@2.2.0-2+deb9u1?arch=amd64\u0026upstream=expat\u0026distro=debian-9", + "upstreams": [ + { + "name": "expat" + } + ], + "metadata": null + } + }, + { + "vulnerability": { + "id": "CVE-2013-4235", + "dataSource": "https://security-tracker.debian.org/tracker/CVE-2013-4235", + "namespace": "debian:distro:debian:9", + "severity": "Negligible", + "urls": [ + "https://security-tracker.debian.org/tracker/CVE-2013-4235" + ], + "description": "shadow: TOCTOU (time-of-check time-of-use) race condition when copying and removing directory trees", + "cvss": null, + "fix": { + "versions": [], + "state": "not-fixed" + }, + "advisories": null + }, + "relatedVulnerabilities": [ + { + "id": "CVE-2013-4235", + "dataSource": "https://nvd.nist.gov/vuln/detail/CVE-2013-4235", + "namespace": "nvd:cpe", + "severity": "Medium", + "urls": [ + "https://access.redhat.com/security/cve/cve-2013-4235", + "https://bugzilla.redhat.com/show_bug.cgi?id=CVE-2013-4235", + "https://lists.apache.org/thread.html/rf9fa47ab66495c78bb4120b0754dd9531ca2ff0430f6685ac9b07772%40%3Cdev.mina.apache.org%3E", + "https://security-tracker.debian.org/tracker/CVE-2013-4235", + "https://security.gentoo.org/glsa/202210-26" + ], + "description": "shadow: TOCTOU (time-of-check time-of-use) race condition when copying and removing directory trees", + "cvss": null + } + ], + "matchDetails": [ + { + "type": "exact-indirect-match", + "matcher": "dpkg-matcher", + "searchedBy": { + "distro": { + "type": "debian", + "version": "9" + }, + "namespace": "debian:distro:debian:9", + "package": { + "name": "shadow", + "version": "1:4.4-4.1" + } + }, + "found": { + "versionConstraint": "none (deb)", + "vulnerabilityID": "CVE-2013-4235" + } + } + ], + "artifact": { + "name": "login", + "version": "1:4.4-4.1", + "type": "deb", + "locations": null, + "language": "", + "licenses": [ + "GPL-2.0-only" + ], + "cpes": [ + "cpe:2.3:a:login:login:1:4.4-4.1:*:*:*:*:*:*:*" + ], + "purl": "pkg:deb/debian/login@1:4.4-4.1?arch=amd64\u0026upstream=shadow\u0026distro=debian-9", + "upstreams": [ + { + "name": "shadow" + } + ], + "metadata": null + } + }, + { + "vulnerability": { + "id": "CVE-2013-4235", + "dataSource": "https://security-tracker.debian.org/tracker/CVE-2013-4235", + "namespace": "debian:distro:debian:9", + "severity": "Negligible", + "urls": [ + "https://security-tracker.debian.org/tracker/CVE-2013-4235" + ], + "description": "shadow: TOCTOU (time-of-check time-of-use) race condition when copying and removing directory trees", + "cvss": null, + "fix": { + "versions": [], + "state": "not-fixed" + }, + "advisories": null + }, + "relatedVulnerabilities": [ + { + "id": "CVE-2013-4235", + "dataSource": "https://nvd.nist.gov/vuln/detail/CVE-2013-4235", + "namespace": "nvd:cpe", + "severity": "Medium", + "urls": [ + "https://access.redhat.com/security/cve/cve-2013-4235", + "https://bugzilla.redhat.com/show_bug.cgi?id=CVE-2013-4235", + "https://lists.apache.org/thread.html/rf9fa47ab66495c78bb4120b0754dd9531ca2ff0430f6685ac9b07772%40%3Cdev.mina.apache.org%3E", + "https://security-tracker.debian.org/tracker/CVE-2013-4235", + "https://security.gentoo.org/glsa/202210-26" + ], + "description": "shadow: TOCTOU (time-of-check time-of-use) race condition when copying and removing directory trees", + "cvss": null + } + ], + "matchDetails": [ + { + "type": "exact-indirect-match", + "matcher": "dpkg-matcher", + "searchedBy": { + "distro": { + "type": "debian", + "version": "9" + }, + "namespace": "debian:distro:debian:9", + "package": { + "name": "shadow", + "version": "1:4.4-4.1" + } + }, + "found": { + "versionConstraint": "none (deb)", + "vulnerabilityID": "CVE-2013-4235" + } + } + ], + "artifact": { + "name": "passwd", + "version": "1:4.4-4.1", + "type": "deb", + "locations": null, + "language": "", + "licenses": [ + "GPL-2.0-only" + ], + "cpes": [ + "cpe:2.3:a:passwd:passwd:1:4.4-4.1:*:*:*:*:*:*:*" + ], + "purl": "pkg:deb/debian/passwd@1:4.4-4.1?arch=amd64\u0026upstream=shadow\u0026distro=debian-9", + "upstreams": [ + { + "name": "shadow" + } + ], + "metadata": null + } + }, + { + "vulnerability": { + "id": "CVE-2013-4392", + "dataSource": "https://security-tracker.debian.org/tracker/CVE-2013-4392", + "namespace": "debian:distro:debian:9", + "severity": "Negligible", + "urls": [ + "https://security-tracker.debian.org/tracker/CVE-2013-4392" + ], + "description": "systemd, when updating file permissions, allows local users to change the permissions and SELinux security contexts for arbitrary files via a symlink attack on unspecified files.", + "cvss": null, + "fix": { + "versions": [], + "state": "not-fixed" + }, + "advisories": null + }, + "relatedVulnerabilities": [ + { + "id": "CVE-2013-4392", + "dataSource": "https://nvd.nist.gov/vuln/detail/CVE-2013-4392", + "namespace": "nvd:cpe", + "severity": "Low", + "urls": [ + "http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=725357", + "http://www.openwall.com/lists/oss-security/2013/10/01/9", + "https://bugzilla.redhat.com/show_bug.cgi?id=859060" + ], + "description": "systemd, when updating file permissions, allows local users to change the permissions and SELinux security contexts for arbitrary files via a symlink attack on unspecified files.", + "cvss": null + } + ], + "matchDetails": [ + { + "type": "exact-indirect-match", + "matcher": "dpkg-matcher", + "searchedBy": { + "distro": { + "type": "debian", + "version": "9" + }, + "namespace": "debian:distro:debian:9", + "package": { + "name": "systemd", + "version": "232-25+deb9u6" + } + }, + "found": { + "versionConstraint": "none (deb)", + "vulnerabilityID": "CVE-2013-4392" + } + } + ], + "artifact": { + "name": "libsystemd0", + "version": "232-25+deb9u6", + "type": "deb", + "locations": null, + "language": "", + "licenses": [ + "LicenseRef-CC0", + "LicenseRef-Expat", + "GPL-2.0-only", + "GPL-2.0-or-later", + "LGPL-2.1-only", + "LGPL-2.1-or-later", + "LicenseRef-public-domain" + ], + "cpes": [ + "cpe:2.3:a:libsystemd0:libsystemd0:232-25+deb9u6:*:*:*:*:*:*:*" + ], + "purl": "pkg:deb/debian/libsystemd0@232-25+deb9u6?arch=amd64\u0026upstream=systemd\u0026distro=debian-9", + "upstreams": [ + { + "name": "systemd" + } + ], + "metadata": null + } + }, + { + "vulnerability": { + "id": "CVE-2013-4392", + "dataSource": "https://security-tracker.debian.org/tracker/CVE-2013-4392", + "namespace": "debian:distro:debian:9", + "severity": "Negligible", + "urls": [ + "https://security-tracker.debian.org/tracker/CVE-2013-4392" + ], + "description": "systemd, when updating file permissions, allows local users to change the permissions and SELinux security contexts for arbitrary files via a symlink attack on unspecified files.", + "cvss": null, + "fix": { + "versions": [], + "state": "not-fixed" + }, + "advisories": null + }, + "relatedVulnerabilities": [ + { + "id": "CVE-2013-4392", + "dataSource": "https://nvd.nist.gov/vuln/detail/CVE-2013-4392", + "namespace": "nvd:cpe", + "severity": "Low", + "urls": [ + "http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=725357", + "http://www.openwall.com/lists/oss-security/2013/10/01/9", + "https://bugzilla.redhat.com/show_bug.cgi?id=859060" + ], + "description": "systemd, when updating file permissions, allows local users to change the permissions and SELinux security contexts for arbitrary files via a symlink attack on unspecified files.", + "cvss": null + } + ], + "matchDetails": [ + { + "type": "exact-indirect-match", + "matcher": "dpkg-matcher", + "searchedBy": { + "distro": { + "type": "debian", + "version": "9" + }, + "namespace": "debian:distro:debian:9", + "package": { + "name": "systemd", + "version": "232-25+deb9u6" + } + }, + "found": { + "versionConstraint": "none (deb)", + "vulnerabilityID": "CVE-2013-4392" + } + } + ], + "artifact": { + "name": "libudev1", + "version": "232-25+deb9u6", + "type": "deb", + "locations": null, + "language": "", + "licenses": [ + "LicenseRef-CC0", + "LicenseRef-Expat", + "GPL-2.0-only", + "GPL-2.0-or-later", + "LGPL-2.1-only", + "LGPL-2.1-or-later", + "LicenseRef-public-domain" + ], + "cpes": [ + "cpe:2.3:a:libudev1:libudev1:232-25+deb9u6:*:*:*:*:*:*:*" + ], + "purl": "pkg:deb/debian/libudev1@232-25+deb9u6?arch=amd64\u0026upstream=systemd\u0026distro=debian-9", + "upstreams": [ + { + "name": "systemd" + } + ], + "metadata": null + } + }, + { + "vulnerability": { + "id": "CVE-2014-8130", + "dataSource": "https://security-tracker.debian.org/tracker/CVE-2014-8130", + "namespace": "debian:distro:debian:9", + "severity": "Negligible", + "urls": [ + "https://security-tracker.debian.org/tracker/CVE-2014-8130" + ], + "description": "The _TIFFmalloc function in tif_unix.c in LibTIFF 4.0.3 does not reject a zero size, which allows remote attackers to cause a denial of service (divide-by-zero error and application crash) via a crafted TIFF image that is mishandled by the TIFFWriteScanline function in tif_write.c, as demonstrated by tiffdither.", + "cvss": null, + "fix": { + "versions": [], + "state": "not-fixed" + }, + "advisories": null + }, + "relatedVulnerabilities": [ + { + "id": "CVE-2014-8130", + "dataSource": "https://nvd.nist.gov/vuln/detail/CVE-2014-8130", + "namespace": "nvd:cpe", + "severity": "Medium", + "urls": [ + "http://bugzilla.maptools.org/show_bug.cgi?id=2483", + "http://lists.apple.com/archives/security-announce/2015/Jun/msg00001.html", + "http://lists.apple.com/archives/security-announce/2015/Jun/msg00002.html", + "http://openwall.com/lists/oss-security/2015/01/24/15", + "http://rhn.redhat.com/errata/RHSA-2016-1546.html", + "http://rhn.redhat.com/errata/RHSA-2016-1547.html", + "http://support.apple.com/kb/HT204941", + "http://support.apple.com/kb/HT204942", + "http://www.conostix.com/pub/adv/CVE-2014-8130-LibTIFF-Division_By_Zero.txt", + "http://www.securityfocus.com/bid/72353", + "http://www.securitytracker.com/id/1032760", + "https://bugzilla.redhat.com/show_bug.cgi?id=1185817", + "https://github.com/vadz/libtiff/commit/3c5eb8b1be544e41d2c336191bc4936300ad7543", + "https://security.gentoo.org/glsa/201701-16" + ], + "description": "The _TIFFmalloc function in tif_unix.c in LibTIFF 4.0.3 does not reject a zero size, which allows remote attackers to cause a denial of service (divide-by-zero error and application crash) via a crafted TIFF image that is mishandled by the TIFFWriteScanline function in tif_write.c, as demonstrated by tiffdither.", + "cvss": null + } + ], + "matchDetails": [ + { + "type": "exact-indirect-match", + "matcher": "dpkg-matcher", + "searchedBy": { + "distro": { + "type": "debian", + "version": "9" + }, + "namespace": "debian:distro:debian:9", + "package": { + "name": "tiff", + "version": "4.0.8-2+deb9u2" + } + }, + "found": { + "versionConstraint": "none (deb)", + "vulnerabilityID": "CVE-2014-8130" + } + } + ], + "artifact": { + "name": "libtiff5", + "version": "4.0.8-2+deb9u2", + "type": "deb", + "locations": null, + "language": "", + "licenses": [ + "LicenseRef-Hylafax" + ], + "cpes": [ + "cpe:2.3:a:libtiff5:libtiff5:4.0.8-2+deb9u2:*:*:*:*:*:*:*" + ], + "purl": "pkg:deb/debian/libtiff5@4.0.8-2+deb9u2?arch=amd64\u0026upstream=tiff\u0026distro=debian-9", + "upstreams": [ + { + "name": "tiff" + } + ], + "metadata": null + } + }, + { + "vulnerability": { + "id": "CVE-2015-8985", + "dataSource": "https://security-tracker.debian.org/tracker/CVE-2015-8985", + "namespace": "debian:distro:debian:9", + "severity": "Negligible", + "urls": [ + "https://security-tracker.debian.org/tracker/CVE-2015-8985" + ], + "description": "The pop_fail_stack function in the GNU C Library (aka glibc or libc6) allows context-dependent attackers to cause a denial of service (assertion failure and application crash) via vectors related to extended regular expression processing.", + "cvss": null, + "fix": { + "versions": [], + "state": "not-fixed" + }, + "advisories": null + }, + "relatedVulnerabilities": [ + { + "id": "CVE-2015-8985", + "dataSource": "https://nvd.nist.gov/vuln/detail/CVE-2015-8985", + "namespace": "nvd:cpe", + "severity": "Medium", + "urls": [ + "http://www.openwall.com/lists/oss-security/2017/02/14/9", + "http://www.securityfocus.com/bid/76916", + "https://bugs.debian.org/cgi-bin/bugreport.cgi?bug=779392", + "https://security.gentoo.org/glsa/201908-06" + ], + "description": "The pop_fail_stack function in the GNU C Library (aka glibc or libc6) allows context-dependent attackers to cause a denial of service (assertion failure and application crash) via vectors related to extended regular expression processing.", + "cvss": null + } + ], + "matchDetails": [ + { + "type": "exact-indirect-match", + "matcher": "dpkg-matcher", + "searchedBy": { + "distro": { + "type": "debian", + "version": "9" + }, + "namespace": "debian:distro:debian:9", + "package": { + "name": "glibc", + "version": "2.24-11+deb9u3" + } + }, + "found": { + "versionConstraint": "none (deb)", + "vulnerabilityID": "CVE-2015-8985" + } + } + ], + "artifact": { + "name": "libc-bin", + "version": "2.24-11+deb9u3", + "type": "deb", + "locations": null, + "language": "", + "licenses": [ + "GPL-2.0-only", + "LGPL-2.1-only" + ], + "cpes": [ + "cpe:2.3:a:libc-bin:libc-bin:2.24-11+deb9u3:*:*:*:*:*:*:*", + "cpe:2.3:a:libc-bin:libc_bin:2.24-11+deb9u3:*:*:*:*:*:*:*", + "cpe:2.3:a:libc_bin:libc-bin:2.24-11+deb9u3:*:*:*:*:*:*:*", + "cpe:2.3:a:libc_bin:libc_bin:2.24-11+deb9u3:*:*:*:*:*:*:*", + "cpe:2.3:a:libc:libc-bin:2.24-11+deb9u3:*:*:*:*:*:*:*", + "cpe:2.3:a:libc:libc_bin:2.24-11+deb9u3:*:*:*:*:*:*:*" + ], + "purl": "pkg:deb/debian/libc-bin@2.24-11+deb9u3?arch=amd64\u0026upstream=glibc\u0026distro=debian-9", + "upstreams": [ + { + "name": "glibc" + } + ], + "metadata": null + } + }, + { + "vulnerability": { + "id": "CVE-2015-8985", + "dataSource": "https://security-tracker.debian.org/tracker/CVE-2015-8985", + "namespace": "debian:distro:debian:9", + "severity": "Negligible", + "urls": [ + "https://security-tracker.debian.org/tracker/CVE-2015-8985" + ], + "description": "The pop_fail_stack function in the GNU C Library (aka glibc or libc6) allows context-dependent attackers to cause a denial of service (assertion failure and application crash) via vectors related to extended regular expression processing.", + "cvss": null, + "fix": { + "versions": [], + "state": "not-fixed" + }, + "advisories": null + }, + "relatedVulnerabilities": [ + { + "id": "CVE-2015-8985", + "dataSource": "https://nvd.nist.gov/vuln/detail/CVE-2015-8985", + "namespace": "nvd:cpe", + "severity": "Medium", + "urls": [ + "http://www.openwall.com/lists/oss-security/2017/02/14/9", + "http://www.securityfocus.com/bid/76916", + "https://bugs.debian.org/cgi-bin/bugreport.cgi?bug=779392", + "https://security.gentoo.org/glsa/201908-06" + ], + "description": "The pop_fail_stack function in the GNU C Library (aka glibc or libc6) allows context-dependent attackers to cause a denial of service (assertion failure and application crash) via vectors related to extended regular expression processing.", + "cvss": null + } + ], + "matchDetails": [ + { + "type": "exact-indirect-match", + "matcher": "dpkg-matcher", + "searchedBy": { + "distro": { + "type": "debian", + "version": "9" + }, + "namespace": "debian:distro:debian:9", + "package": { + "name": "glibc", + "version": "2.24-11+deb9u3" + } + }, + "found": { + "versionConstraint": "none (deb)", + "vulnerabilityID": "CVE-2015-8985" + } + } + ], + "artifact": { + "name": "libc6", + "version": "2.24-11+deb9u3", + "type": "deb", + "locations": null, + "language": "", + "licenses": [ + "GPL-2.0-only", + "LGPL-2.1-only" + ], + "cpes": [ + "cpe:2.3:a:libc6:libc6:2.24-11+deb9u3:*:*:*:*:*:*:*" + ], + "purl": "pkg:deb/debian/libc6@2.24-11+deb9u3?arch=amd64\u0026upstream=glibc\u0026distro=debian-9", + "upstreams": [ + { + "name": "glibc" + } + ], + "metadata": null + } + }, + { + "vulnerability": { + "id": "CVE-2015-8985", + "dataSource": "https://security-tracker.debian.org/tracker/CVE-2015-8985", + "namespace": "debian:distro:debian:9", + "severity": "Negligible", + "urls": [ + "https://security-tracker.debian.org/tracker/CVE-2015-8985" + ], + "description": "The pop_fail_stack function in the GNU C Library (aka glibc or libc6) allows context-dependent attackers to cause a denial of service (assertion failure and application crash) via vectors related to extended regular expression processing.", + "cvss": null, + "fix": { + "versions": [], + "state": "not-fixed" + }, + "advisories": null + }, + "relatedVulnerabilities": [ + { + "id": "CVE-2015-8985", + "dataSource": "https://nvd.nist.gov/vuln/detail/CVE-2015-8985", + "namespace": "nvd:cpe", + "severity": "Medium", + "urls": [ + "http://www.openwall.com/lists/oss-security/2017/02/14/9", + "http://www.securityfocus.com/bid/76916", + "https://bugs.debian.org/cgi-bin/bugreport.cgi?bug=779392", + "https://security.gentoo.org/glsa/201908-06" + ], + "description": "The pop_fail_stack function in the GNU C Library (aka glibc or libc6) allows context-dependent attackers to cause a denial of service (assertion failure and application crash) via vectors related to extended regular expression processing.", + "cvss": null + } + ], + "matchDetails": [ + { + "type": "exact-indirect-match", + "matcher": "dpkg-matcher", + "searchedBy": { + "distro": { + "type": "debian", + "version": "9" + }, + "namespace": "debian:distro:debian:9", + "package": { + "name": "glibc", + "version": "2.24-11+deb9u3" + } + }, + "found": { + "versionConstraint": "none (deb)", + "vulnerabilityID": "CVE-2015-8985" + } + } + ], + "artifact": { + "name": "multiarch-support", + "version": "2.24-11+deb9u3", + "type": "deb", + "locations": null, + "language": "", + "licenses": [ + "GPL-2.0-only", + "LGPL-2.1-only" + ], + "cpes": [ + "cpe:2.3:a:multiarch-support:multiarch-support:2.24-11+deb9u3:*:*:*:*:*:*:*", + "cpe:2.3:a:multiarch-support:multiarch_support:2.24-11+deb9u3:*:*:*:*:*:*:*", + "cpe:2.3:a:multiarch_support:multiarch-support:2.24-11+deb9u3:*:*:*:*:*:*:*", + "cpe:2.3:a:multiarch_support:multiarch_support:2.24-11+deb9u3:*:*:*:*:*:*:*", + "cpe:2.3:a:multiarch:multiarch-support:2.24-11+deb9u3:*:*:*:*:*:*:*", + "cpe:2.3:a:multiarch:multiarch_support:2.24-11+deb9u3:*:*:*:*:*:*:*" + ], + "purl": "pkg:deb/debian/multiarch-support@2.24-11+deb9u3?arch=amd64\u0026upstream=glibc\u0026distro=debian-9", + "upstreams": [ + { + "name": "glibc" + } + ], + "metadata": null + } + }, + { + "vulnerability": { + "id": "CVE-2015-9019", + "dataSource": "https://security-tracker.debian.org/tracker/CVE-2015-9019", + "namespace": "debian:distro:debian:9", + "severity": "Negligible", + "urls": [ + "https://security-tracker.debian.org/tracker/CVE-2015-9019" + ], + "description": "In libxslt 1.1.29 and earlier, the EXSLT math.random function was not initialized with a random seed during startup, which could cause usage of this function to produce predictable outputs.", + "cvss": null, + "fix": { + "versions": [], + "state": "not-fixed" + }, + "advisories": null + }, + "relatedVulnerabilities": [ + { + "id": "CVE-2015-9019", + "dataSource": "https://nvd.nist.gov/vuln/detail/CVE-2015-9019", + "namespace": "nvd:cpe", + "severity": "Medium", + "urls": [ + "https://bugzilla.gnome.org/show_bug.cgi?id=758400", + "https://bugzilla.suse.com/show_bug.cgi?id=934119" + ], + "description": "In libxslt 1.1.29 and earlier, the EXSLT math.random function was not initialized with a random seed during startup, which could cause usage of this function to produce predictable outputs.", + "cvss": null + } + ], + "matchDetails": [ + { + "type": "exact-indirect-match", + "matcher": "dpkg-matcher", + "searchedBy": { + "distro": { + "type": "debian", + "version": "9" + }, + "namespace": "debian:distro:debian:9", + "package": { + "name": "libxslt", + "version": "1.1.29-2.1" + } + }, + "found": { + "versionConstraint": "none (deb)", + "vulnerabilityID": "CVE-2015-9019" + } + } + ], + "artifact": { + "name": "libxslt1.1", + "version": "1.1.29-2.1", + "type": "deb", + "locations": null, + "language": "", + "licenses": [], + "cpes": [ + "cpe:2.3:a:libxslt1.1:libxslt1.1:1.1.29-2.1:*:*:*:*:*:*:*" + ], + "purl": "pkg:deb/debian/libxslt1.1@1.1.29-2.1?arch=amd64\u0026upstream=libxslt\u0026distro=debian-9", + "upstreams": [ + { + "name": "libxslt" + } + ], + "metadata": null + } + }, + { + "vulnerability": { + "id": "CVE-2016-10228", + "dataSource": "https://security-tracker.debian.org/tracker/CVE-2016-10228", + "namespace": "debian:distro:debian:9", + "severity": "Low", + "urls": [ + "https://security-tracker.debian.org/tracker/CVE-2016-10228" + ], + "description": "The iconv program in the GNU C Library (aka glibc or libc6) 2.31 and earlier, when invoked with multiple suffixes in the destination encoding (TRANSLATE or IGNORE) along with the -c option, enters an infinite loop when processing invalid multi-byte input sequences, leading to a denial of service.", + "cvss": null, + "fix": { + "versions": [], + "state": "wont-fix" + }, + "advisories": null + }, + "relatedVulnerabilities": [ + { + "id": "CVE-2016-10228", + "dataSource": "https://nvd.nist.gov/vuln/detail/CVE-2016-10228", + "namespace": "nvd:cpe", + "severity": "Medium", + "urls": [ + "http://openwall.com/lists/oss-security/2017/03/01/10", + "http://www.securityfocus.com/bid/96525", + "https://lists.apache.org/thread.html/rf9fa47ab66495c78bb4120b0754dd9531ca2ff0430f6685ac9b07772@%3Cdev.mina.apache.org%3E", + "https://lists.debian.org/debian-lts-announce/2022/10/msg00021.html", + "https://security.gentoo.org/glsa/202101-20", + "https://sourceware.org/bugzilla/show_bug.cgi?id=19519", + "https://sourceware.org/bugzilla/show_bug.cgi?id=19519#c21", + "https://sourceware.org/bugzilla/show_bug.cgi?id=26224", + "https://www.oracle.com/security-alerts/cpuapr2022.html" + ], + "description": "The iconv program in the GNU C Library (aka glibc or libc6) 2.31 and earlier, when invoked with multiple suffixes in the destination encoding (TRANSLATE or IGNORE) along with the -c option, enters an infinite loop when processing invalid multi-byte input sequences, leading to a denial of service.", + "cvss": null + } + ], + "matchDetails": [ + { + "type": "exact-indirect-match", + "matcher": "dpkg-matcher", + "searchedBy": { + "distro": { + "type": "debian", + "version": "9" + }, + "namespace": "debian:distro:debian:9", + "package": { + "name": "glibc", + "version": "2.24-11+deb9u3" + } + }, + "found": { + "versionConstraint": "none (deb)", + "vulnerabilityID": "CVE-2016-10228" + } + } + ], + "artifact": { + "name": "libc-bin", + "version": "2.24-11+deb9u3", + "type": "deb", + "locations": null, + "language": "", + "licenses": [ + "GPL-2.0-only", + "LGPL-2.1-only" + ], + "cpes": [ + "cpe:2.3:a:libc-bin:libc-bin:2.24-11+deb9u3:*:*:*:*:*:*:*", + "cpe:2.3:a:libc-bin:libc_bin:2.24-11+deb9u3:*:*:*:*:*:*:*", + "cpe:2.3:a:libc_bin:libc-bin:2.24-11+deb9u3:*:*:*:*:*:*:*", + "cpe:2.3:a:libc_bin:libc_bin:2.24-11+deb9u3:*:*:*:*:*:*:*", + "cpe:2.3:a:libc:libc-bin:2.24-11+deb9u3:*:*:*:*:*:*:*", + "cpe:2.3:a:libc:libc_bin:2.24-11+deb9u3:*:*:*:*:*:*:*" + ], + "purl": "pkg:deb/debian/libc-bin@2.24-11+deb9u3?arch=amd64\u0026upstream=glibc\u0026distro=debian-9", + "upstreams": [ + { + "name": "glibc" + } + ], + "metadata": null + } + }, + { + "vulnerability": { + "id": "CVE-2016-10228", + "dataSource": "https://security-tracker.debian.org/tracker/CVE-2016-10228", + "namespace": "debian:distro:debian:9", + "severity": "Low", + "urls": [ + "https://security-tracker.debian.org/tracker/CVE-2016-10228" + ], + "description": "The iconv program in the GNU C Library (aka glibc or libc6) 2.31 and earlier, when invoked with multiple suffixes in the destination encoding (TRANSLATE or IGNORE) along with the -c option, enters an infinite loop when processing invalid multi-byte input sequences, leading to a denial of service.", + "cvss": null, + "fix": { + "versions": [], + "state": "wont-fix" + }, + "advisories": null + }, + "relatedVulnerabilities": [ + { + "id": "CVE-2016-10228", + "dataSource": "https://nvd.nist.gov/vuln/detail/CVE-2016-10228", + "namespace": "nvd:cpe", + "severity": "Medium", + "urls": [ + "http://openwall.com/lists/oss-security/2017/03/01/10", + "http://www.securityfocus.com/bid/96525", + "https://lists.apache.org/thread.html/rf9fa47ab66495c78bb4120b0754dd9531ca2ff0430f6685ac9b07772@%3Cdev.mina.apache.org%3E", + "https://lists.debian.org/debian-lts-announce/2022/10/msg00021.html", + "https://security.gentoo.org/glsa/202101-20", + "https://sourceware.org/bugzilla/show_bug.cgi?id=19519", + "https://sourceware.org/bugzilla/show_bug.cgi?id=19519#c21", + "https://sourceware.org/bugzilla/show_bug.cgi?id=26224", + "https://www.oracle.com/security-alerts/cpuapr2022.html" + ], + "description": "The iconv program in the GNU C Library (aka glibc or libc6) 2.31 and earlier, when invoked with multiple suffixes in the destination encoding (TRANSLATE or IGNORE) along with the -c option, enters an infinite loop when processing invalid multi-byte input sequences, leading to a denial of service.", + "cvss": null + } + ], + "matchDetails": [ + { + "type": "exact-indirect-match", + "matcher": "dpkg-matcher", + "searchedBy": { + "distro": { + "type": "debian", + "version": "9" + }, + "namespace": "debian:distro:debian:9", + "package": { + "name": "glibc", + "version": "2.24-11+deb9u3" + } + }, + "found": { + "versionConstraint": "none (deb)", + "vulnerabilityID": "CVE-2016-10228" + } + } + ], + "artifact": { + "name": "libc6", + "version": "2.24-11+deb9u3", + "type": "deb", + "locations": null, + "language": "", + "licenses": [ + "GPL-2.0-only", + "LGPL-2.1-only" + ], + "cpes": [ + "cpe:2.3:a:libc6:libc6:2.24-11+deb9u3:*:*:*:*:*:*:*" + ], + "purl": "pkg:deb/debian/libc6@2.24-11+deb9u3?arch=amd64\u0026upstream=glibc\u0026distro=debian-9", + "upstreams": [ + { + "name": "glibc" + } + ], + "metadata": null + } + }, + { + "vulnerability": { + "id": "CVE-2016-10228", + "dataSource": "https://security-tracker.debian.org/tracker/CVE-2016-10228", + "namespace": "debian:distro:debian:9", + "severity": "Low", + "urls": [ + "https://security-tracker.debian.org/tracker/CVE-2016-10228" + ], + "description": "The iconv program in the GNU C Library (aka glibc or libc6) 2.31 and earlier, when invoked with multiple suffixes in the destination encoding (TRANSLATE or IGNORE) along with the -c option, enters an infinite loop when processing invalid multi-byte input sequences, leading to a denial of service.", + "cvss": null, + "fix": { + "versions": [], + "state": "wont-fix" + }, + "advisories": null + }, + "relatedVulnerabilities": [ + { + "id": "CVE-2016-10228", + "dataSource": "https://nvd.nist.gov/vuln/detail/CVE-2016-10228", + "namespace": "nvd:cpe", + "severity": "Medium", + "urls": [ + "http://openwall.com/lists/oss-security/2017/03/01/10", + "http://www.securityfocus.com/bid/96525", + "https://lists.apache.org/thread.html/rf9fa47ab66495c78bb4120b0754dd9531ca2ff0430f6685ac9b07772@%3Cdev.mina.apache.org%3E", + "https://lists.debian.org/debian-lts-announce/2022/10/msg00021.html", + "https://security.gentoo.org/glsa/202101-20", + "https://sourceware.org/bugzilla/show_bug.cgi?id=19519", + "https://sourceware.org/bugzilla/show_bug.cgi?id=19519#c21", + "https://sourceware.org/bugzilla/show_bug.cgi?id=26224", + "https://www.oracle.com/security-alerts/cpuapr2022.html" + ], + "description": "The iconv program in the GNU C Library (aka glibc or libc6) 2.31 and earlier, when invoked with multiple suffixes in the destination encoding (TRANSLATE or IGNORE) along with the -c option, enters an infinite loop when processing invalid multi-byte input sequences, leading to a denial of service.", + "cvss": null + } + ], + "matchDetails": [ + { + "type": "exact-indirect-match", + "matcher": "dpkg-matcher", + "searchedBy": { + "distro": { + "type": "debian", + "version": "9" + }, + "namespace": "debian:distro:debian:9", + "package": { + "name": "glibc", + "version": "2.24-11+deb9u3" + } + }, + "found": { + "versionConstraint": "none (deb)", + "vulnerabilityID": "CVE-2016-10228" + } + } + ], + "artifact": { + "name": "multiarch-support", + "version": "2.24-11+deb9u3", + "type": "deb", + "locations": null, + "language": "", + "licenses": [ + "GPL-2.0-only", + "LGPL-2.1-only" + ], + "cpes": [ + "cpe:2.3:a:multiarch-support:multiarch-support:2.24-11+deb9u3:*:*:*:*:*:*:*", + "cpe:2.3:a:multiarch-support:multiarch_support:2.24-11+deb9u3:*:*:*:*:*:*:*", + "cpe:2.3:a:multiarch_support:multiarch-support:2.24-11+deb9u3:*:*:*:*:*:*:*", + "cpe:2.3:a:multiarch_support:multiarch_support:2.24-11+deb9u3:*:*:*:*:*:*:*", + "cpe:2.3:a:multiarch:multiarch-support:2.24-11+deb9u3:*:*:*:*:*:*:*", + "cpe:2.3:a:multiarch:multiarch_support:2.24-11+deb9u3:*:*:*:*:*:*:*" + ], + "purl": "pkg:deb/debian/multiarch-support@2.24-11+deb9u3?arch=amd64\u0026upstream=glibc\u0026distro=debian-9", + "upstreams": [ + { + "name": "glibc" + } + ], + "metadata": null + } + }, + { + "vulnerability": { + "id": "CVE-2016-10739", + "dataSource": "https://security-tracker.debian.org/tracker/CVE-2016-10739", + "namespace": "debian:distro:debian:9", + "severity": "Medium", + "urls": [ + "https://security-tracker.debian.org/tracker/CVE-2016-10739" + ], + "description": "In the GNU C Library (aka glibc or libc6) through 2.28, the getaddrinfo function would successfully parse a string that contained an IPv4 address followed by whitespace and arbitrary characters, which could lead applications to incorrectly assume that it had parsed a valid string, without the possibility of embedded HTTP headers or other potentially dangerous substrings.", + "cvss": null, + "fix": { + "versions": [], + "state": "wont-fix" + }, + "advisories": null + }, + "relatedVulnerabilities": [ + { + "id": "CVE-2016-10739", + "dataSource": "https://nvd.nist.gov/vuln/detail/CVE-2016-10739", + "namespace": "nvd:cpe", + "severity": "Medium", + "urls": [ + "http://lists.opensuse.org/opensuse-security-announce/2019-04/msg00082.html", + "http://www.securityfocus.com/bid/106672", + "https://access.redhat.com/errata/RHSA-2019:2118", + "https://access.redhat.com/errata/RHSA-2019:3513", + "https://bugzilla.redhat.com/show_bug.cgi?id=1347549", + "https://sourceware.org/bugzilla/show_bug.cgi?id=20018" + ], + "description": "In the GNU C Library (aka glibc or libc6) through 2.28, the getaddrinfo function would successfully parse a string that contained an IPv4 address followed by whitespace and arbitrary characters, which could lead applications to incorrectly assume that it had parsed a valid string, without the possibility of embedded HTTP headers or other potentially dangerous substrings.", + "cvss": null + } + ], + "matchDetails": [ + { + "type": "exact-indirect-match", + "matcher": "dpkg-matcher", + "searchedBy": { + "distro": { + "type": "debian", + "version": "9" + }, + "namespace": "debian:distro:debian:9", + "package": { + "name": "glibc", + "version": "2.24-11+deb9u3" + } + }, + "found": { + "versionConstraint": "none (deb)", + "vulnerabilityID": "CVE-2016-10739" + } + } + ], + "artifact": { + "name": "libc-bin", + "version": "2.24-11+deb9u3", + "type": "deb", + "locations": null, + "language": "", + "licenses": [ + "GPL-2.0-only", + "LGPL-2.1-only" + ], + "cpes": [ + "cpe:2.3:a:libc-bin:libc-bin:2.24-11+deb9u3:*:*:*:*:*:*:*", + "cpe:2.3:a:libc-bin:libc_bin:2.24-11+deb9u3:*:*:*:*:*:*:*", + "cpe:2.3:a:libc_bin:libc-bin:2.24-11+deb9u3:*:*:*:*:*:*:*", + "cpe:2.3:a:libc_bin:libc_bin:2.24-11+deb9u3:*:*:*:*:*:*:*", + "cpe:2.3:a:libc:libc-bin:2.24-11+deb9u3:*:*:*:*:*:*:*", + "cpe:2.3:a:libc:libc_bin:2.24-11+deb9u3:*:*:*:*:*:*:*" + ], + "purl": "pkg:deb/debian/libc-bin@2.24-11+deb9u3?arch=amd64\u0026upstream=glibc\u0026distro=debian-9", + "upstreams": [ + { + "name": "glibc" + } + ], + "metadata": null + } + }, + { + "vulnerability": { + "id": "CVE-2016-10739", + "dataSource": "https://security-tracker.debian.org/tracker/CVE-2016-10739", + "namespace": "debian:distro:debian:9", + "severity": "Medium", + "urls": [ + "https://security-tracker.debian.org/tracker/CVE-2016-10739" + ], + "description": "In the GNU C Library (aka glibc or libc6) through 2.28, the getaddrinfo function would successfully parse a string that contained an IPv4 address followed by whitespace and arbitrary characters, which could lead applications to incorrectly assume that it had parsed a valid string, without the possibility of embedded HTTP headers or other potentially dangerous substrings.", + "cvss": null, + "fix": { + "versions": [], + "state": "wont-fix" + }, + "advisories": null + }, + "relatedVulnerabilities": [ + { + "id": "CVE-2016-10739", + "dataSource": "https://nvd.nist.gov/vuln/detail/CVE-2016-10739", + "namespace": "nvd:cpe", + "severity": "Medium", + "urls": [ + "http://lists.opensuse.org/opensuse-security-announce/2019-04/msg00082.html", + "http://www.securityfocus.com/bid/106672", + "https://access.redhat.com/errata/RHSA-2019:2118", + "https://access.redhat.com/errata/RHSA-2019:3513", + "https://bugzilla.redhat.com/show_bug.cgi?id=1347549", + "https://sourceware.org/bugzilla/show_bug.cgi?id=20018" + ], + "description": "In the GNU C Library (aka glibc or libc6) through 2.28, the getaddrinfo function would successfully parse a string that contained an IPv4 address followed by whitespace and arbitrary characters, which could lead applications to incorrectly assume that it had parsed a valid string, without the possibility of embedded HTTP headers or other potentially dangerous substrings.", + "cvss": null + } + ], + "matchDetails": [ + { + "type": "exact-indirect-match", + "matcher": "dpkg-matcher", + "searchedBy": { + "distro": { + "type": "debian", + "version": "9" + }, + "namespace": "debian:distro:debian:9", + "package": { + "name": "glibc", + "version": "2.24-11+deb9u3" + } + }, + "found": { + "versionConstraint": "none (deb)", + "vulnerabilityID": "CVE-2016-10739" + } + } + ], + "artifact": { + "name": "libc6", + "version": "2.24-11+deb9u3", + "type": "deb", + "locations": null, + "language": "", + "licenses": [ + "GPL-2.0-only", + "LGPL-2.1-only" + ], + "cpes": [ + "cpe:2.3:a:libc6:libc6:2.24-11+deb9u3:*:*:*:*:*:*:*" + ], + "purl": "pkg:deb/debian/libc6@2.24-11+deb9u3?arch=amd64\u0026upstream=glibc\u0026distro=debian-9", + "upstreams": [ + { + "name": "glibc" + } + ], + "metadata": null + } + }, + { + "vulnerability": { + "id": "CVE-2016-10739", + "dataSource": "https://security-tracker.debian.org/tracker/CVE-2016-10739", + "namespace": "debian:distro:debian:9", + "severity": "Medium", + "urls": [ + "https://security-tracker.debian.org/tracker/CVE-2016-10739" + ], + "description": "In the GNU C Library (aka glibc or libc6) through 2.28, the getaddrinfo function would successfully parse a string that contained an IPv4 address followed by whitespace and arbitrary characters, which could lead applications to incorrectly assume that it had parsed a valid string, without the possibility of embedded HTTP headers or other potentially dangerous substrings.", + "cvss": null, + "fix": { + "versions": [], + "state": "wont-fix" + }, + "advisories": null + }, + "relatedVulnerabilities": [ + { + "id": "CVE-2016-10739", + "dataSource": "https://nvd.nist.gov/vuln/detail/CVE-2016-10739", + "namespace": "nvd:cpe", + "severity": "Medium", + "urls": [ + "http://lists.opensuse.org/opensuse-security-announce/2019-04/msg00082.html", + "http://www.securityfocus.com/bid/106672", + "https://access.redhat.com/errata/RHSA-2019:2118", + "https://access.redhat.com/errata/RHSA-2019:3513", + "https://bugzilla.redhat.com/show_bug.cgi?id=1347549", + "https://sourceware.org/bugzilla/show_bug.cgi?id=20018" + ], + "description": "In the GNU C Library (aka glibc or libc6) through 2.28, the getaddrinfo function would successfully parse a string that contained an IPv4 address followed by whitespace and arbitrary characters, which could lead applications to incorrectly assume that it had parsed a valid string, without the possibility of embedded HTTP headers or other potentially dangerous substrings.", + "cvss": null + } + ], + "matchDetails": [ + { + "type": "exact-indirect-match", + "matcher": "dpkg-matcher", + "searchedBy": { + "distro": { + "type": "debian", + "version": "9" + }, + "namespace": "debian:distro:debian:9", + "package": { + "name": "glibc", + "version": "2.24-11+deb9u3" + } + }, + "found": { + "versionConstraint": "none (deb)", + "vulnerabilityID": "CVE-2016-10739" + } + } + ], + "artifact": { + "name": "multiarch-support", + "version": "2.24-11+deb9u3", + "type": "deb", + "locations": null, + "language": "", + "licenses": [ + "GPL-2.0-only", + "LGPL-2.1-only" + ], + "cpes": [ + "cpe:2.3:a:multiarch-support:multiarch-support:2.24-11+deb9u3:*:*:*:*:*:*:*", + "cpe:2.3:a:multiarch-support:multiarch_support:2.24-11+deb9u3:*:*:*:*:*:*:*", + "cpe:2.3:a:multiarch_support:multiarch-support:2.24-11+deb9u3:*:*:*:*:*:*:*", + "cpe:2.3:a:multiarch_support:multiarch_support:2.24-11+deb9u3:*:*:*:*:*:*:*", + "cpe:2.3:a:multiarch:multiarch-support:2.24-11+deb9u3:*:*:*:*:*:*:*", + "cpe:2.3:a:multiarch:multiarch_support:2.24-11+deb9u3:*:*:*:*:*:*:*" + ], + "purl": "pkg:deb/debian/multiarch-support@2.24-11+deb9u3?arch=amd64\u0026upstream=glibc\u0026distro=debian-9", + "upstreams": [ + { + "name": "glibc" + } + ], + "metadata": null + } + }, + { + "vulnerability": { + "id": "CVE-2016-2779", + "dataSource": "https://security-tracker.debian.org/tracker/CVE-2016-2779", + "namespace": "debian:distro:debian:9", + "severity": "High", + "urls": [ + "https://security-tracker.debian.org/tracker/CVE-2016-2779" + ], + "description": "runuser in util-linux allows local users to escape to the parent session via a crafted TIOCSTI ioctl call, which pushes characters to the terminal's input buffer.", + "cvss": null, + "fix": { + "versions": [], + "state": "wont-fix" + }, + "advisories": null + }, + "relatedVulnerabilities": [ + { + "id": "CVE-2016-2779", + "dataSource": "https://nvd.nist.gov/vuln/detail/CVE-2016-2779", + "namespace": "nvd:cpe", + "severity": "High", + "urls": [ + "http://www.openwall.com/lists/oss-security/2016/02/27/1", + "http://www.openwall.com/lists/oss-security/2016/02/27/2", + "https://bugs.debian.org/cgi-bin/bugreport.cgi?bug=815922" + ], + "description": "runuser in util-linux allows local users to escape to the parent session via a crafted TIOCSTI ioctl call, which pushes characters to the terminal's input buffer.", + "cvss": null + } + ], + "matchDetails": [ + { + "type": "exact-indirect-match", + "matcher": "dpkg-matcher", + "searchedBy": { + "distro": { + "type": "debian", + "version": "9" + }, + "namespace": "debian:distro:debian:9", + "package": { + "name": "util-linux", + "version": "2.29.2-1+deb9u1" + } + }, + "found": { + "versionConstraint": "none (deb)", + "vulnerabilityID": "CVE-2016-2779" + } + } + ], + "artifact": { + "name": "bsdutils", + "version": "1:2.29.2-1+deb9u1", + "type": "deb", + "locations": null, + "language": "", + "licenses": [ + "BSD-2-Clause", + "BSD-3-Clause", + "BSD-4-Clause", + "GPL-2.0-only", + "GPL-2.0-or-later", + "GPL-3.0-only", + "GPL-3.0-or-later", + "LicenseRef-LGPL", + "LGPL-2.0-only", + "LGPL-2.0-or-later", + "LGPL-2.1-only", + "LGPL-2.1-or-later", + "LGPL-3.0-only", + "LGPL-3.0-or-later", + "MIT", + "LicenseRef-public-domain" + ], + "cpes": [ + "cpe:2.3:a:bsdutils:bsdutils:1:2.29.2-1+deb9u1:*:*:*:*:*:*:*" + ], + "purl": "pkg:deb/debian/bsdutils@1:2.29.2-1+deb9u1?arch=amd64\u0026upstream=util-linux%402.29.2-1+deb9u1\u0026distro=debian-9", + "upstreams": [ + { + "name": "util-linux", + "version": "2.29.2-1+deb9u1" + } + ], + "metadata": null + } + }, + { + "vulnerability": { + "id": "CVE-2016-2779", + "dataSource": "https://security-tracker.debian.org/tracker/CVE-2016-2779", + "namespace": "debian:distro:debian:9", + "severity": "High", + "urls": [ + "https://security-tracker.debian.org/tracker/CVE-2016-2779" + ], + "description": "runuser in util-linux allows local users to escape to the parent session via a crafted TIOCSTI ioctl call, which pushes characters to the terminal's input buffer.", + "cvss": null, + "fix": { + "versions": [], + "state": "wont-fix" + }, + "advisories": null + }, + "relatedVulnerabilities": [ + { + "id": "CVE-2016-2779", + "dataSource": "https://nvd.nist.gov/vuln/detail/CVE-2016-2779", + "namespace": "nvd:cpe", + "severity": "High", + "urls": [ + "http://www.openwall.com/lists/oss-security/2016/02/27/1", + "http://www.openwall.com/lists/oss-security/2016/02/27/2", + "https://bugs.debian.org/cgi-bin/bugreport.cgi?bug=815922" + ], + "description": "runuser in util-linux allows local users to escape to the parent session via a crafted TIOCSTI ioctl call, which pushes characters to the terminal's input buffer.", + "cvss": null + } + ], + "matchDetails": [ + { + "type": "exact-indirect-match", + "matcher": "dpkg-matcher", + "searchedBy": { + "distro": { + "type": "debian", + "version": "9" + }, + "namespace": "debian:distro:debian:9", + "package": { + "name": "util-linux", + "version": "2.29.2-1+deb9u1" + } + }, + "found": { + "versionConstraint": "none (deb)", + "vulnerabilityID": "CVE-2016-2779" + } + } + ], + "artifact": { + "name": "libblkid1", + "version": "2.29.2-1+deb9u1", + "type": "deb", + "locations": null, + "language": "", + "licenses": [ + "BSD-2-Clause", + "BSD-3-Clause", + "BSD-4-Clause", + "GPL-2.0-only", + "GPL-2.0-or-later", + "GPL-3.0-only", + "GPL-3.0-or-later", + "LicenseRef-LGPL", + "LGPL-2.0-only", + "LGPL-2.0-or-later", + "LGPL-2.1-only", + "LGPL-2.1-or-later", + "LGPL-3.0-only", + "LGPL-3.0-or-later", + "MIT", + "LicenseRef-public-domain" + ], + "cpes": [ + "cpe:2.3:a:libblkid1:libblkid1:2.29.2-1+deb9u1:*:*:*:*:*:*:*" + ], + "purl": "pkg:deb/debian/libblkid1@2.29.2-1+deb9u1?arch=amd64\u0026upstream=util-linux\u0026distro=debian-9", + "upstreams": [ + { + "name": "util-linux" + } + ], + "metadata": null + } + }, + { + "vulnerability": { + "id": "CVE-2016-2779", + "dataSource": "https://security-tracker.debian.org/tracker/CVE-2016-2779", + "namespace": "debian:distro:debian:9", + "severity": "High", + "urls": [ + "https://security-tracker.debian.org/tracker/CVE-2016-2779" + ], + "description": "runuser in util-linux allows local users to escape to the parent session via a crafted TIOCSTI ioctl call, which pushes characters to the terminal's input buffer.", + "cvss": null, + "fix": { + "versions": [], + "state": "wont-fix" + }, + "advisories": null + }, + "relatedVulnerabilities": [ + { + "id": "CVE-2016-2779", + "dataSource": "https://nvd.nist.gov/vuln/detail/CVE-2016-2779", + "namespace": "nvd:cpe", + "severity": "High", + "urls": [ + "http://www.openwall.com/lists/oss-security/2016/02/27/1", + "http://www.openwall.com/lists/oss-security/2016/02/27/2", + "https://bugs.debian.org/cgi-bin/bugreport.cgi?bug=815922" + ], + "description": "runuser in util-linux allows local users to escape to the parent session via a crafted TIOCSTI ioctl call, which pushes characters to the terminal's input buffer.", + "cvss": null + } + ], + "matchDetails": [ + { + "type": "exact-indirect-match", + "matcher": "dpkg-matcher", + "searchedBy": { + "distro": { + "type": "debian", + "version": "9" + }, + "namespace": "debian:distro:debian:9", + "package": { + "name": "util-linux", + "version": "2.29.2-1+deb9u1" + } + }, + "found": { + "versionConstraint": "none (deb)", + "vulnerabilityID": "CVE-2016-2779" + } + } + ], + "artifact": { + "name": "libfdisk1", + "version": "2.29.2-1+deb9u1", + "type": "deb", + "locations": null, + "language": "", + "licenses": [ + "BSD-2-Clause", + "BSD-3-Clause", + "BSD-4-Clause", + "GPL-2.0-only", + "GPL-2.0-or-later", + "GPL-3.0-only", + "GPL-3.0-or-later", + "LicenseRef-LGPL", + "LGPL-2.0-only", + "LGPL-2.0-or-later", + "LGPL-2.1-only", + "LGPL-2.1-or-later", + "LGPL-3.0-only", + "LGPL-3.0-or-later", + "MIT", + "LicenseRef-public-domain" + ], + "cpes": [ + "cpe:2.3:a:libfdisk1:libfdisk1:2.29.2-1+deb9u1:*:*:*:*:*:*:*" + ], + "purl": "pkg:deb/debian/libfdisk1@2.29.2-1+deb9u1?arch=amd64\u0026upstream=util-linux\u0026distro=debian-9", + "upstreams": [ + { + "name": "util-linux" + } + ], + "metadata": null + } + }, + { + "vulnerability": { + "id": "CVE-2016-2779", + "dataSource": "https://security-tracker.debian.org/tracker/CVE-2016-2779", + "namespace": "debian:distro:debian:9", + "severity": "High", + "urls": [ + "https://security-tracker.debian.org/tracker/CVE-2016-2779" + ], + "description": "runuser in util-linux allows local users to escape to the parent session via a crafted TIOCSTI ioctl call, which pushes characters to the terminal's input buffer.", + "cvss": null, + "fix": { + "versions": [], + "state": "wont-fix" + }, + "advisories": null + }, + "relatedVulnerabilities": [ + { + "id": "CVE-2016-2779", + "dataSource": "https://nvd.nist.gov/vuln/detail/CVE-2016-2779", + "namespace": "nvd:cpe", + "severity": "High", + "urls": [ + "http://www.openwall.com/lists/oss-security/2016/02/27/1", + "http://www.openwall.com/lists/oss-security/2016/02/27/2", + "https://bugs.debian.org/cgi-bin/bugreport.cgi?bug=815922" + ], + "description": "runuser in util-linux allows local users to escape to the parent session via a crafted TIOCSTI ioctl call, which pushes characters to the terminal's input buffer.", + "cvss": null + } + ], + "matchDetails": [ + { + "type": "exact-indirect-match", + "matcher": "dpkg-matcher", + "searchedBy": { + "distro": { + "type": "debian", + "version": "9" + }, + "namespace": "debian:distro:debian:9", + "package": { + "name": "util-linux", + "version": "2.29.2-1+deb9u1" + } + }, + "found": { + "versionConstraint": "none (deb)", + "vulnerabilityID": "CVE-2016-2779" + } + } + ], + "artifact": { + "name": "libmount1", + "version": "2.29.2-1+deb9u1", + "type": "deb", + "locations": null, + "language": "", + "licenses": [ + "BSD-2-Clause", + "BSD-3-Clause", + "BSD-4-Clause", + "GPL-2.0-only", + "GPL-2.0-or-later", + "GPL-3.0-only", + "GPL-3.0-or-later", + "LicenseRef-LGPL", + "LGPL-2.0-only", + "LGPL-2.0-or-later", + "LGPL-2.1-only", + "LGPL-2.1-or-later", + "LGPL-3.0-only", + "LGPL-3.0-or-later", + "MIT", + "LicenseRef-public-domain" + ], + "cpes": [ + "cpe:2.3:a:libmount1:libmount1:2.29.2-1+deb9u1:*:*:*:*:*:*:*" + ], + "purl": "pkg:deb/debian/libmount1@2.29.2-1+deb9u1?arch=amd64\u0026upstream=util-linux\u0026distro=debian-9", + "upstreams": [ + { + "name": "util-linux" + } + ], + "metadata": null + } + }, + { + "vulnerability": { + "id": "CVE-2016-2779", + "dataSource": "https://security-tracker.debian.org/tracker/CVE-2016-2779", + "namespace": "debian:distro:debian:9", + "severity": "High", + "urls": [ + "https://security-tracker.debian.org/tracker/CVE-2016-2779" + ], + "description": "runuser in util-linux allows local users to escape to the parent session via a crafted TIOCSTI ioctl call, which pushes characters to the terminal's input buffer.", + "cvss": null, + "fix": { + "versions": [], + "state": "wont-fix" + }, + "advisories": null + }, + "relatedVulnerabilities": [ + { + "id": "CVE-2016-2779", + "dataSource": "https://nvd.nist.gov/vuln/detail/CVE-2016-2779", + "namespace": "nvd:cpe", + "severity": "High", + "urls": [ + "http://www.openwall.com/lists/oss-security/2016/02/27/1", + "http://www.openwall.com/lists/oss-security/2016/02/27/2", + "https://bugs.debian.org/cgi-bin/bugreport.cgi?bug=815922" + ], + "description": "runuser in util-linux allows local users to escape to the parent session via a crafted TIOCSTI ioctl call, which pushes characters to the terminal's input buffer.", + "cvss": null + } + ], + "matchDetails": [ + { + "type": "exact-indirect-match", + "matcher": "dpkg-matcher", + "searchedBy": { + "distro": { + "type": "debian", + "version": "9" + }, + "namespace": "debian:distro:debian:9", + "package": { + "name": "util-linux", + "version": "2.29.2-1+deb9u1" + } + }, + "found": { + "versionConstraint": "none (deb)", + "vulnerabilityID": "CVE-2016-2779" + } + } + ], + "artifact": { + "name": "libsmartcols1", + "version": "2.29.2-1+deb9u1", + "type": "deb", + "locations": null, + "language": "", + "licenses": [ + "BSD-2-Clause", + "BSD-3-Clause", + "BSD-4-Clause", + "GPL-2.0-only", + "GPL-2.0-or-later", + "GPL-3.0-only", + "GPL-3.0-or-later", + "LicenseRef-LGPL", + "LGPL-2.0-only", + "LGPL-2.0-or-later", + "LGPL-2.1-only", + "LGPL-2.1-or-later", + "LGPL-3.0-only", + "LGPL-3.0-or-later", + "MIT", + "LicenseRef-public-domain" + ], + "cpes": [ + "cpe:2.3:a:libsmartcols1:libsmartcols1:2.29.2-1+deb9u1:*:*:*:*:*:*:*" + ], + "purl": "pkg:deb/debian/libsmartcols1@2.29.2-1+deb9u1?arch=amd64\u0026upstream=util-linux\u0026distro=debian-9", + "upstreams": [ + { + "name": "util-linux" + } + ], + "metadata": null + } + }, + { + "vulnerability": { + "id": "CVE-2016-2779", + "dataSource": "https://security-tracker.debian.org/tracker/CVE-2016-2779", + "namespace": "debian:distro:debian:9", + "severity": "High", + "urls": [ + "https://security-tracker.debian.org/tracker/CVE-2016-2779" + ], + "description": "runuser in util-linux allows local users to escape to the parent session via a crafted TIOCSTI ioctl call, which pushes characters to the terminal's input buffer.", + "cvss": null, + "fix": { + "versions": [], + "state": "wont-fix" + }, + "advisories": null + }, + "relatedVulnerabilities": [ + { + "id": "CVE-2016-2779", + "dataSource": "https://nvd.nist.gov/vuln/detail/CVE-2016-2779", + "namespace": "nvd:cpe", + "severity": "High", + "urls": [ + "http://www.openwall.com/lists/oss-security/2016/02/27/1", + "http://www.openwall.com/lists/oss-security/2016/02/27/2", + "https://bugs.debian.org/cgi-bin/bugreport.cgi?bug=815922" + ], + "description": "runuser in util-linux allows local users to escape to the parent session via a crafted TIOCSTI ioctl call, which pushes characters to the terminal's input buffer.", + "cvss": null + } + ], + "matchDetails": [ + { + "type": "exact-indirect-match", + "matcher": "dpkg-matcher", + "searchedBy": { + "distro": { + "type": "debian", + "version": "9" + }, + "namespace": "debian:distro:debian:9", + "package": { + "name": "util-linux", + "version": "2.29.2-1+deb9u1" + } + }, + "found": { + "versionConstraint": "none (deb)", + "vulnerabilityID": "CVE-2016-2779" + } + } + ], + "artifact": { + "name": "libuuid1", + "version": "2.29.2-1+deb9u1", + "type": "deb", + "locations": null, + "language": "", + "licenses": [ + "BSD-2-Clause", + "BSD-3-Clause", + "BSD-4-Clause", + "GPL-2.0-only", + "GPL-2.0-or-later", + "GPL-3.0-only", + "GPL-3.0-or-later", + "LicenseRef-LGPL", + "LGPL-2.0-only", + "LGPL-2.0-or-later", + "LGPL-2.1-only", + "LGPL-2.1-or-later", + "LGPL-3.0-only", + "LGPL-3.0-or-later", + "MIT", + "LicenseRef-public-domain" + ], + "cpes": [ + "cpe:2.3:a:libuuid1:libuuid1:2.29.2-1+deb9u1:*:*:*:*:*:*:*" + ], + "purl": "pkg:deb/debian/libuuid1@2.29.2-1+deb9u1?arch=amd64\u0026upstream=util-linux\u0026distro=debian-9", + "upstreams": [ + { + "name": "util-linux" + } + ], + "metadata": null + } + }, + { + "vulnerability": { + "id": "CVE-2016-2779", + "dataSource": "https://security-tracker.debian.org/tracker/CVE-2016-2779", + "namespace": "debian:distro:debian:9", + "severity": "High", + "urls": [ + "https://security-tracker.debian.org/tracker/CVE-2016-2779" + ], + "description": "runuser in util-linux allows local users to escape to the parent session via a crafted TIOCSTI ioctl call, which pushes characters to the terminal's input buffer.", + "cvss": null, + "fix": { + "versions": [], + "state": "wont-fix" + }, + "advisories": null + }, + "relatedVulnerabilities": [ + { + "id": "CVE-2016-2779", + "dataSource": "https://nvd.nist.gov/vuln/detail/CVE-2016-2779", + "namespace": "nvd:cpe", + "severity": "High", + "urls": [ + "http://www.openwall.com/lists/oss-security/2016/02/27/1", + "http://www.openwall.com/lists/oss-security/2016/02/27/2", + "https://bugs.debian.org/cgi-bin/bugreport.cgi?bug=815922" + ], + "description": "runuser in util-linux allows local users to escape to the parent session via a crafted TIOCSTI ioctl call, which pushes characters to the terminal's input buffer.", + "cvss": null + } + ], + "matchDetails": [ + { + "type": "exact-indirect-match", + "matcher": "dpkg-matcher", + "searchedBy": { + "distro": { + "type": "debian", + "version": "9" + }, + "namespace": "debian:distro:debian:9", + "package": { + "name": "util-linux", + "version": "2.29.2-1+deb9u1" + } + }, + "found": { + "versionConstraint": "none (deb)", + "vulnerabilityID": "CVE-2016-2779" + } + } + ], + "artifact": { + "name": "mount", + "version": "2.29.2-1+deb9u1", + "type": "deb", + "locations": null, + "language": "", + "licenses": [ + "BSD-2-Clause", + "BSD-3-Clause", + "BSD-4-Clause", + "GPL-2.0-only", + "GPL-2.0-or-later", + "GPL-3.0-only", + "GPL-3.0-or-later", + "LicenseRef-LGPL", + "LGPL-2.0-only", + "LGPL-2.0-or-later", + "LGPL-2.1-only", + "LGPL-2.1-or-later", + "LGPL-3.0-only", + "LGPL-3.0-or-later", + "MIT", + "LicenseRef-public-domain" + ], + "cpes": [ + "cpe:2.3:a:mount:mount:2.29.2-1+deb9u1:*:*:*:*:*:*:*" + ], + "purl": "pkg:deb/debian/mount@2.29.2-1+deb9u1?arch=amd64\u0026upstream=util-linux\u0026distro=debian-9", + "upstreams": [ + { + "name": "util-linux" + } + ], + "metadata": null + } + }, + { + "vulnerability": { + "id": "CVE-2016-2779", + "dataSource": "https://security-tracker.debian.org/tracker/CVE-2016-2779", + "namespace": "debian:distro:debian:9", + "severity": "High", + "urls": [ + "https://security-tracker.debian.org/tracker/CVE-2016-2779" + ], + "description": "runuser in util-linux allows local users to escape to the parent session via a crafted TIOCSTI ioctl call, which pushes characters to the terminal's input buffer.", + "cvss": null, + "fix": { + "versions": [], + "state": "wont-fix" + }, + "advisories": null + }, + "relatedVulnerabilities": [ + { + "id": "CVE-2016-2779", + "dataSource": "https://nvd.nist.gov/vuln/detail/CVE-2016-2779", + "namespace": "nvd:cpe", + "severity": "High", + "urls": [ + "http://www.openwall.com/lists/oss-security/2016/02/27/1", + "http://www.openwall.com/lists/oss-security/2016/02/27/2", + "https://bugs.debian.org/cgi-bin/bugreport.cgi?bug=815922" + ], + "description": "runuser in util-linux allows local users to escape to the parent session via a crafted TIOCSTI ioctl call, which pushes characters to the terminal's input buffer.", + "cvss": null + } + ], + "matchDetails": [ + { + "type": "exact-direct-match", + "matcher": "dpkg-matcher", + "searchedBy": { + "distro": { + "type": "debian", + "version": "9" + }, + "namespace": "debian:distro:debian:9", + "package": { + "name": "util-linux", + "version": "2.29.2-1+deb9u1" + } + }, + "found": { + "versionConstraint": "none (deb)", + "vulnerabilityID": "CVE-2016-2779" + } + } + ], + "artifact": { + "name": "util-linux", + "version": "2.29.2-1+deb9u1", + "type": "deb", + "locations": null, + "language": "", + "licenses": [ + "BSD-2-Clause", + "BSD-3-Clause", + "BSD-4-Clause", + "GPL-2.0-only", + "GPL-2.0-or-later", + "GPL-3.0-only", + "GPL-3.0-or-later", + "LicenseRef-LGPL", + "LGPL-2.0-only", + "LGPL-2.0-or-later", + "LGPL-2.1-only", + "LGPL-2.1-or-later", + "LGPL-3.0-only", + "LGPL-3.0-or-later", + "MIT", + "LicenseRef-public-domain" + ], + "cpes": [ + "cpe:2.3:a:util-linux:util-linux:2.29.2-1+deb9u1:*:*:*:*:*:*:*", + "cpe:2.3:a:util-linux:util_linux:2.29.2-1+deb9u1:*:*:*:*:*:*:*", + "cpe:2.3:a:util_linux:util-linux:2.29.2-1+deb9u1:*:*:*:*:*:*:*", + "cpe:2.3:a:util_linux:util_linux:2.29.2-1+deb9u1:*:*:*:*:*:*:*", + "cpe:2.3:a:util:util-linux:2.29.2-1+deb9u1:*:*:*:*:*:*:*", + "cpe:2.3:a:util:util_linux:2.29.2-1+deb9u1:*:*:*:*:*:*:*" + ], + "purl": "pkg:deb/debian/util-linux@2.29.2-1+deb9u1?arch=amd64\u0026distro=debian-9", + "upstreams": null, + "metadata": null + } + }, + { + "vulnerability": { + "id": "CVE-2016-2781", + "dataSource": "https://security-tracker.debian.org/tracker/CVE-2016-2781", + "namespace": "debian:distro:debian:9", + "severity": "Low", + "urls": [ + "https://security-tracker.debian.org/tracker/CVE-2016-2781" + ], + "description": "chroot in GNU coreutils, when used with --userspec, allows local users to escape to the parent session via a crafted TIOCSTI ioctl call, which pushes characters to the terminal's input buffer.", + "cvss": null, + "fix": { + "versions": [], + "state": "wont-fix" + }, + "advisories": null + }, + "relatedVulnerabilities": [ + { + "id": "CVE-2016-2781", + "dataSource": "https://nvd.nist.gov/vuln/detail/CVE-2016-2781", + "namespace": "nvd:cpe", + "severity": "Medium", + "urls": [ + "http://www.openwall.com/lists/oss-security/2016/02/28/2", + "http://www.openwall.com/lists/oss-security/2016/02/28/3", + "https://lists.apache.org/thread.html/rf9fa47ab66495c78bb4120b0754dd9531ca2ff0430f6685ac9b07772@%3Cdev.mina.apache.org%3E" + ], + "description": "chroot in GNU coreutils, when used with --userspec, allows local users to escape to the parent session via a crafted TIOCSTI ioctl call, which pushes characters to the terminal's input buffer.", + "cvss": null + } + ], + "matchDetails": [ + { + "type": "exact-direct-match", + "matcher": "dpkg-matcher", + "searchedBy": { + "distro": { + "type": "debian", + "version": "9" + }, + "namespace": "debian:distro:debian:9", + "package": { + "name": "coreutils", + "version": "8.26-3" + } + }, + "found": { + "versionConstraint": "none (deb)", + "vulnerabilityID": "CVE-2016-2781" + } + } + ], + "artifact": { + "name": "coreutils", + "version": "8.26-3", + "type": "deb", + "locations": null, + "language": "", + "licenses": [ + "GPL-3.0-only" + ], + "cpes": [ + "cpe:2.3:a:coreutils:coreutils:8.26-3:*:*:*:*:*:*:*" + ], + "purl": "pkg:deb/debian/coreutils@8.26-3?arch=amd64\u0026distro=debian-9", + "upstreams": null, + "metadata": null + } + }, + { + "vulnerability": { + "id": "CVE-2016-9085", + "dataSource": "https://security-tracker.debian.org/tracker/CVE-2016-9085", + "namespace": "debian:distro:debian:9", + "severity": "Negligible", + "urls": [ + "https://security-tracker.debian.org/tracker/CVE-2016-9085" + ], + "description": "Multiple integer overflows in libwebp allows attackers to have unspecified impact via unknown vectors.", + "cvss": null, + "fix": { + "versions": [], + "state": "not-fixed" + }, + "advisories": null + }, + "relatedVulnerabilities": [ + { + "id": "CVE-2016-9085", + "dataSource": "https://nvd.nist.gov/vuln/detail/CVE-2016-9085", + "namespace": "nvd:cpe", + "severity": "Low", + "urls": [ + "http://www.openwall.com/lists/oss-security/2016/10/27/3", + "http://www.securityfocus.com/bid/93928", + "https://bugzilla.redhat.com/show_bug.cgi?id=1389338", + "https://chromium.googlesource.com/webm/libwebp/+/e2affacc35f1df6cc3b1a9fa0ceff5ce2d0cce83", + "https://lists.apache.org/thread.html/rf9fa47ab66495c78bb4120b0754dd9531ca2ff0430f6685ac9b07772@%3Cdev.mina.apache.org%3E", + "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/LG5Q42J7EJDKQKWTTHCO4YZMOMP74YPQ/", + "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/PTR2ZW67TMT7KC24RBENIF25KWUJ7VPD/", + "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/SH6X3MWD5AHZC5JT4625PGFHAYLR7YW7/", + "https://security.gentoo.org/glsa/201701-61" + ], + "description": "Multiple integer overflows in libwebp allows attackers to have unspecified impact via unknown vectors.", + "cvss": null + } + ], + "matchDetails": [ + { + "type": "exact-indirect-match", + "matcher": "dpkg-matcher", + "searchedBy": { + "distro": { + "type": "debian", + "version": "9" + }, + "namespace": "debian:distro:debian:9", + "package": { + "name": "libwebp", + "version": "0.5.2-1" + } + }, + "found": { + "versionConstraint": "none (deb)", + "vulnerabilityID": "CVE-2016-9085" + } + } + ], + "artifact": { + "name": "libwebp6", + "version": "0.5.2-1", + "type": "deb", + "locations": null, + "language": "", + "licenses": [ + "Apache-2.0" + ], + "cpes": [ + "cpe:2.3:a:libwebp6:libwebp6:0.5.2-1:*:*:*:*:*:*:*" + ], + "purl": "pkg:deb/debian/libwebp6@0.5.2-1?arch=amd64\u0026upstream=libwebp\u0026distro=debian-9", + "upstreams": [ + { + "name": "libwebp" + } + ], + "metadata": null + } + }, + { + "vulnerability": { + "id": "CVE-2016-9318", + "dataSource": "https://security-tracker.debian.org/tracker/CVE-2016-9318", + "namespace": "debian:distro:debian:9", + "severity": "Medium", + "urls": [ + "https://security-tracker.debian.org/tracker/CVE-2016-9318" + ], + "description": "libxml2 2.9.4 and earlier, as used in XMLSec 1.2.23 and earlier and other products, does not offer a flag directly indicating that the current document may be read but other files may not be opened, which makes it easier for remote attackers to conduct XML External Entity (XXE) attacks via a crafted document.", + "cvss": null, + "fix": { + "versions": [ + "2.9.4+dfsg1-2.2+deb9u6" + ], + "state": "fixed" + }, + "advisories": null + }, + "relatedVulnerabilities": [ + { + "id": "CVE-2016-9318", + "dataSource": "https://nvd.nist.gov/vuln/detail/CVE-2016-9318", + "namespace": "nvd:cpe", + "severity": "Medium", + "urls": [ + "http://www.securityfocus.com/bid/94347", + "https://bugzilla.gnome.org/show_bug.cgi?id=772726", + "https://github.com/lsh123/xmlsec/issues/43", + "https://lists.debian.org/debian-lts-announce/2022/04/msg00004.html", + "https://security.gentoo.org/glsa/201711-01", + "https://usn.ubuntu.com/3739-1/", + "https://usn.ubuntu.com/3739-2/" + ], + "description": "libxml2 2.9.4 and earlier, as used in XMLSec 1.2.23 and earlier and other products, does not offer a flag directly indicating that the current document may be read but other files may not be opened, which makes it easier for remote attackers to conduct XML External Entity (XXE) attacks via a crafted document.", + "cvss": null + } + ], + "matchDetails": [ + { + "type": "exact-direct-match", + "matcher": "dpkg-matcher", + "searchedBy": { + "distro": { + "type": "debian", + "version": "9" + }, + "namespace": "debian:distro:debian:9", + "package": { + "name": "libxml2", + "version": "2.9.4+dfsg1-2.2+deb9u2" + } + }, + "found": { + "versionConstraint": "\u003c 2.9.4+dfsg1-2.2+deb9u6 (deb)", + "vulnerabilityID": "CVE-2016-9318" + } + } + ], + "artifact": { + "name": "libxml2", + "version": "2.9.4+dfsg1-2.2+deb9u2", + "type": "deb", + "locations": null, + "language": "", + "licenses": [], + "cpes": [ + "cpe:2.3:a:libxml2:libxml2:2.9.4+dfsg1-2.2+deb9u2:*:*:*:*:*:*:*" + ], + "purl": "pkg:deb/debian/libxml2@2.9.4+dfsg1-2.2+deb9u2?arch=amd64\u0026distro=debian-9", + "upstreams": null, + "metadata": null + } + }, + { + "vulnerability": { + "id": "CVE-2017-1000082", + "dataSource": "https://security-tracker.debian.org/tracker/CVE-2017-1000082", + "namespace": "debian:distro:debian:9", + "severity": "Negligible", + "urls": [ + "https://security-tracker.debian.org/tracker/CVE-2017-1000082" + ], + "description": "systemd v233 and earlier fails to safely parse usernames starting with a numeric digit (e.g. \"0day\"), running the service in question with root privileges rather than the user intended.", + "cvss": null, + "fix": { + "versions": [], + "state": "not-fixed" + }, + "advisories": null + }, + "relatedVulnerabilities": [ + { + "id": "CVE-2017-1000082", + "dataSource": "https://nvd.nist.gov/vuln/detail/CVE-2017-1000082", + "namespace": "nvd:cpe", + "severity": "Critical", + "urls": [ + "http://www.openwall.com/lists/oss-security/2017/07/02/1", + "http://www.securityfocus.com/bid/99507", + "http://www.securitytracker.com/id/1038839", + "https://github.com/systemd/systemd/issues/6237" + ], + "description": "systemd v233 and earlier fails to safely parse usernames starting with a numeric digit (e.g. \"0day\"), running the service in question with root privileges rather than the user intended.", + "cvss": null + } + ], + "matchDetails": [ + { + "type": "exact-indirect-match", + "matcher": "dpkg-matcher", + "searchedBy": { + "distro": { + "type": "debian", + "version": "9" + }, + "namespace": "debian:distro:debian:9", + "package": { + "name": "systemd", + "version": "232-25+deb9u6" + } + }, + "found": { + "versionConstraint": "none (deb)", + "vulnerabilityID": "CVE-2017-1000082" + } + } + ], + "artifact": { + "name": "libsystemd0", + "version": "232-25+deb9u6", + "type": "deb", + "locations": null, + "language": "", + "licenses": [ + "LicenseRef-CC0", + "LicenseRef-Expat", + "GPL-2.0-only", + "GPL-2.0-or-later", + "LGPL-2.1-only", + "LGPL-2.1-or-later", + "LicenseRef-public-domain" + ], + "cpes": [ + "cpe:2.3:a:libsystemd0:libsystemd0:232-25+deb9u6:*:*:*:*:*:*:*" + ], + "purl": "pkg:deb/debian/libsystemd0@232-25+deb9u6?arch=amd64\u0026upstream=systemd\u0026distro=debian-9", + "upstreams": [ + { + "name": "systemd" + } + ], + "metadata": null + } + }, + { + "vulnerability": { + "id": "CVE-2017-1000082", + "dataSource": "https://security-tracker.debian.org/tracker/CVE-2017-1000082", + "namespace": "debian:distro:debian:9", + "severity": "Negligible", + "urls": [ + "https://security-tracker.debian.org/tracker/CVE-2017-1000082" + ], + "description": "systemd v233 and earlier fails to safely parse usernames starting with a numeric digit (e.g. \"0day\"), running the service in question with root privileges rather than the user intended.", + "cvss": null, + "fix": { + "versions": [], + "state": "not-fixed" + }, + "advisories": null + }, + "relatedVulnerabilities": [ + { + "id": "CVE-2017-1000082", + "dataSource": "https://nvd.nist.gov/vuln/detail/CVE-2017-1000082", + "namespace": "nvd:cpe", + "severity": "Critical", + "urls": [ + "http://www.openwall.com/lists/oss-security/2017/07/02/1", + "http://www.securityfocus.com/bid/99507", + "http://www.securitytracker.com/id/1038839", + "https://github.com/systemd/systemd/issues/6237" + ], + "description": "systemd v233 and earlier fails to safely parse usernames starting with a numeric digit (e.g. \"0day\"), running the service in question with root privileges rather than the user intended.", + "cvss": null + } + ], + "matchDetails": [ + { + "type": "exact-indirect-match", + "matcher": "dpkg-matcher", + "searchedBy": { + "distro": { + "type": "debian", + "version": "9" + }, + "namespace": "debian:distro:debian:9", + "package": { + "name": "systemd", + "version": "232-25+deb9u6" + } + }, + "found": { + "versionConstraint": "none (deb)", + "vulnerabilityID": "CVE-2017-1000082" + } + } + ], + "artifact": { + "name": "libudev1", + "version": "232-25+deb9u6", + "type": "deb", + "locations": null, + "language": "", + "licenses": [ + "LicenseRef-CC0", + "LicenseRef-Expat", + "GPL-2.0-only", + "GPL-2.0-or-later", + "LGPL-2.1-only", + "LGPL-2.1-or-later", + "LicenseRef-public-domain" + ], + "cpes": [ + "cpe:2.3:a:libudev1:libudev1:232-25+deb9u6:*:*:*:*:*:*:*" + ], + "purl": "pkg:deb/debian/libudev1@232-25+deb9u6?arch=amd64\u0026upstream=systemd\u0026distro=debian-9", + "upstreams": [ + { + "name": "systemd" + } + ], + "metadata": null + } + }, + { + "vulnerability": { + "id": "CVE-2017-1000408", + "dataSource": "https://security-tracker.debian.org/tracker/CVE-2017-1000408", + "namespace": "debian:distro:debian:9", + "severity": "High", + "urls": [ + "https://security-tracker.debian.org/tracker/CVE-2017-1000408" + ], + "description": "A memory leak in glibc 2.1.1 (released on May 24, 1999) can be reached and amplified through the LD_HWCAP_MASK environment variable. Please note that many versions of glibc are not vulnerable to this issue if patched for CVE-2017-1000366.", + "cvss": null, + "fix": { + "versions": [ + "2.24-11+deb9u4" + ], + "state": "fixed" + }, + "advisories": null + }, + "relatedVulnerabilities": [ + { + "id": "CVE-2017-1000408", + "dataSource": "https://nvd.nist.gov/vuln/detail/CVE-2017-1000408", + "namespace": "nvd:cpe", + "severity": "High", + "urls": [ + "http://seclists.org/oss-sec/2017/q4/385", + "http://www.openwall.com/lists/oss-security/2019/06/27/7", + "http://www.openwall.com/lists/oss-security/2019/06/28/1", + "http://www.openwall.com/lists/oss-security/2019/06/28/2", + "https://security.netapp.com/advisory/ntap-20190404-0003/", + "https://www.exploit-db.com/exploits/43331/" + ], + "description": "A memory leak in glibc 2.1.1 (released on May 24, 1999) can be reached and amplified through the LD_HWCAP_MASK environment variable. Please note that many versions of glibc are not vulnerable to this issue if patched for CVE-2017-1000366.", + "cvss": null + } + ], + "matchDetails": [ + { + "type": "exact-indirect-match", + "matcher": "dpkg-matcher", + "searchedBy": { + "distro": { + "type": "debian", + "version": "9" + }, + "namespace": "debian:distro:debian:9", + "package": { + "name": "glibc", + "version": "2.24-11+deb9u3" + } + }, + "found": { + "versionConstraint": "\u003c 2.24-11+deb9u4 (deb)", + "vulnerabilityID": "CVE-2017-1000408" + } + } + ], + "artifact": { + "name": "libc-bin", + "version": "2.24-11+deb9u3", + "type": "deb", + "locations": null, + "language": "", + "licenses": [ + "GPL-2.0-only", + "LGPL-2.1-only" + ], + "cpes": [ + "cpe:2.3:a:libc-bin:libc-bin:2.24-11+deb9u3:*:*:*:*:*:*:*", + "cpe:2.3:a:libc-bin:libc_bin:2.24-11+deb9u3:*:*:*:*:*:*:*", + "cpe:2.3:a:libc_bin:libc-bin:2.24-11+deb9u3:*:*:*:*:*:*:*", + "cpe:2.3:a:libc_bin:libc_bin:2.24-11+deb9u3:*:*:*:*:*:*:*", + "cpe:2.3:a:libc:libc-bin:2.24-11+deb9u3:*:*:*:*:*:*:*", + "cpe:2.3:a:libc:libc_bin:2.24-11+deb9u3:*:*:*:*:*:*:*" + ], + "purl": "pkg:deb/debian/libc-bin@2.24-11+deb9u3?arch=amd64\u0026upstream=glibc\u0026distro=debian-9", + "upstreams": [ + { + "name": "glibc" + } + ], + "metadata": null + } + }, + { + "vulnerability": { + "id": "CVE-2017-1000408", + "dataSource": "https://security-tracker.debian.org/tracker/CVE-2017-1000408", + "namespace": "debian:distro:debian:9", + "severity": "High", + "urls": [ + "https://security-tracker.debian.org/tracker/CVE-2017-1000408" + ], + "description": "A memory leak in glibc 2.1.1 (released on May 24, 1999) can be reached and amplified through the LD_HWCAP_MASK environment variable. Please note that many versions of glibc are not vulnerable to this issue if patched for CVE-2017-1000366.", + "cvss": null, + "fix": { + "versions": [ + "2.24-11+deb9u4" + ], + "state": "fixed" + }, + "advisories": null + }, + "relatedVulnerabilities": [ + { + "id": "CVE-2017-1000408", + "dataSource": "https://nvd.nist.gov/vuln/detail/CVE-2017-1000408", + "namespace": "nvd:cpe", + "severity": "High", + "urls": [ + "http://seclists.org/oss-sec/2017/q4/385", + "http://www.openwall.com/lists/oss-security/2019/06/27/7", + "http://www.openwall.com/lists/oss-security/2019/06/28/1", + "http://www.openwall.com/lists/oss-security/2019/06/28/2", + "https://security.netapp.com/advisory/ntap-20190404-0003/", + "https://www.exploit-db.com/exploits/43331/" + ], + "description": "A memory leak in glibc 2.1.1 (released on May 24, 1999) can be reached and amplified through the LD_HWCAP_MASK environment variable. Please note that many versions of glibc are not vulnerable to this issue if patched for CVE-2017-1000366.", + "cvss": null + } + ], + "matchDetails": [ + { + "type": "exact-indirect-match", + "matcher": "dpkg-matcher", + "searchedBy": { + "distro": { + "type": "debian", + "version": "9" + }, + "namespace": "debian:distro:debian:9", + "package": { + "name": "glibc", + "version": "2.24-11+deb9u3" + } + }, + "found": { + "versionConstraint": "\u003c 2.24-11+deb9u4 (deb)", + "vulnerabilityID": "CVE-2017-1000408" + } + } + ], + "artifact": { + "name": "libc6", + "version": "2.24-11+deb9u3", + "type": "deb", + "locations": null, + "language": "", + "licenses": [ + "GPL-2.0-only", + "LGPL-2.1-only" + ], + "cpes": [ + "cpe:2.3:a:libc6:libc6:2.24-11+deb9u3:*:*:*:*:*:*:*" + ], + "purl": "pkg:deb/debian/libc6@2.24-11+deb9u3?arch=amd64\u0026upstream=glibc\u0026distro=debian-9", + "upstreams": [ + { + "name": "glibc" + } + ], + "metadata": null + } + }, + { + "vulnerability": { + "id": "CVE-2017-1000408", + "dataSource": "https://security-tracker.debian.org/tracker/CVE-2017-1000408", + "namespace": "debian:distro:debian:9", + "severity": "High", + "urls": [ + "https://security-tracker.debian.org/tracker/CVE-2017-1000408" + ], + "description": "A memory leak in glibc 2.1.1 (released on May 24, 1999) can be reached and amplified through the LD_HWCAP_MASK environment variable. Please note that many versions of glibc are not vulnerable to this issue if patched for CVE-2017-1000366.", + "cvss": null, + "fix": { + "versions": [ + "2.24-11+deb9u4" + ], + "state": "fixed" + }, + "advisories": null + }, + "relatedVulnerabilities": [ + { + "id": "CVE-2017-1000408", + "dataSource": "https://nvd.nist.gov/vuln/detail/CVE-2017-1000408", + "namespace": "nvd:cpe", + "severity": "High", + "urls": [ + "http://seclists.org/oss-sec/2017/q4/385", + "http://www.openwall.com/lists/oss-security/2019/06/27/7", + "http://www.openwall.com/lists/oss-security/2019/06/28/1", + "http://www.openwall.com/lists/oss-security/2019/06/28/2", + "https://security.netapp.com/advisory/ntap-20190404-0003/", + "https://www.exploit-db.com/exploits/43331/" + ], + "description": "A memory leak in glibc 2.1.1 (released on May 24, 1999) can be reached and amplified through the LD_HWCAP_MASK environment variable. Please note that many versions of glibc are not vulnerable to this issue if patched for CVE-2017-1000366.", + "cvss": null + } + ], + "matchDetails": [ + { + "type": "exact-indirect-match", + "matcher": "dpkg-matcher", + "searchedBy": { + "distro": { + "type": "debian", + "version": "9" + }, + "namespace": "debian:distro:debian:9", + "package": { + "name": "glibc", + "version": "2.24-11+deb9u3" + } + }, + "found": { + "versionConstraint": "\u003c 2.24-11+deb9u4 (deb)", + "vulnerabilityID": "CVE-2017-1000408" + } + } + ], + "artifact": { + "name": "multiarch-support", + "version": "2.24-11+deb9u3", + "type": "deb", + "locations": null, + "language": "", + "licenses": [ + "GPL-2.0-only", + "LGPL-2.1-only" + ], + "cpes": [ + "cpe:2.3:a:multiarch-support:multiarch-support:2.24-11+deb9u3:*:*:*:*:*:*:*", + "cpe:2.3:a:multiarch-support:multiarch_support:2.24-11+deb9u3:*:*:*:*:*:*:*", + "cpe:2.3:a:multiarch_support:multiarch-support:2.24-11+deb9u3:*:*:*:*:*:*:*", + "cpe:2.3:a:multiarch_support:multiarch_support:2.24-11+deb9u3:*:*:*:*:*:*:*", + "cpe:2.3:a:multiarch:multiarch-support:2.24-11+deb9u3:*:*:*:*:*:*:*", + "cpe:2.3:a:multiarch:multiarch_support:2.24-11+deb9u3:*:*:*:*:*:*:*" + ], + "purl": "pkg:deb/debian/multiarch-support@2.24-11+deb9u3?arch=amd64\u0026upstream=glibc\u0026distro=debian-9", + "upstreams": [ + { + "name": "glibc" + } + ], + "metadata": null + } + }, + { + "vulnerability": { + "id": "CVE-2017-1000409", + "dataSource": "https://security-tracker.debian.org/tracker/CVE-2017-1000409", + "namespace": "debian:distro:debian:9", + "severity": "High", + "urls": [ + "https://security-tracker.debian.org/tracker/CVE-2017-1000409" + ], + "description": "A buffer overflow in glibc 2.5 (released on September 29, 2006) and can be triggered through the LD_LIBRARY_PATH environment variable. Please note that many versions of glibc are not vulnerable to this issue if patched for CVE-2017-1000366.", + "cvss": null, + "fix": { + "versions": [ + "2.24-11+deb9u4" + ], + "state": "fixed" + }, + "advisories": null + }, + "relatedVulnerabilities": [ + { + "id": "CVE-2017-1000409", + "dataSource": "https://nvd.nist.gov/vuln/detail/CVE-2017-1000409", + "namespace": "nvd:cpe", + "severity": "High", + "urls": [ + "http://seclists.org/oss-sec/2017/q4/385", + "https://security.netapp.com/advisory/ntap-20190404-0003/", + "https://www.exploit-db.com/exploits/43331/" + ], + "description": "A buffer overflow in glibc 2.5 (released on September 29, 2006) and can be triggered through the LD_LIBRARY_PATH environment variable. Please note that many versions of glibc are not vulnerable to this issue if patched for CVE-2017-1000366.", + "cvss": null + } + ], + "matchDetails": [ + { + "type": "exact-indirect-match", + "matcher": "dpkg-matcher", + "searchedBy": { + "distro": { + "type": "debian", + "version": "9" + }, + "namespace": "debian:distro:debian:9", + "package": { + "name": "glibc", + "version": "2.24-11+deb9u3" + } + }, + "found": { + "versionConstraint": "\u003c 2.24-11+deb9u4 (deb)", + "vulnerabilityID": "CVE-2017-1000409" + } + } + ], + "artifact": { + "name": "libc-bin", + "version": "2.24-11+deb9u3", + "type": "deb", + "locations": null, + "language": "", + "licenses": [ + "GPL-2.0-only", + "LGPL-2.1-only" + ], + "cpes": [ + "cpe:2.3:a:libc-bin:libc-bin:2.24-11+deb9u3:*:*:*:*:*:*:*", + "cpe:2.3:a:libc-bin:libc_bin:2.24-11+deb9u3:*:*:*:*:*:*:*", + "cpe:2.3:a:libc_bin:libc-bin:2.24-11+deb9u3:*:*:*:*:*:*:*", + "cpe:2.3:a:libc_bin:libc_bin:2.24-11+deb9u3:*:*:*:*:*:*:*", + "cpe:2.3:a:libc:libc-bin:2.24-11+deb9u3:*:*:*:*:*:*:*", + "cpe:2.3:a:libc:libc_bin:2.24-11+deb9u3:*:*:*:*:*:*:*" + ], + "purl": "pkg:deb/debian/libc-bin@2.24-11+deb9u3?arch=amd64\u0026upstream=glibc\u0026distro=debian-9", + "upstreams": [ + { + "name": "glibc" + } + ], + "metadata": null + } + }, + { + "vulnerability": { + "id": "CVE-2017-1000409", + "dataSource": "https://security-tracker.debian.org/tracker/CVE-2017-1000409", + "namespace": "debian:distro:debian:9", + "severity": "High", + "urls": [ + "https://security-tracker.debian.org/tracker/CVE-2017-1000409" + ], + "description": "A buffer overflow in glibc 2.5 (released on September 29, 2006) and can be triggered through the LD_LIBRARY_PATH environment variable. Please note that many versions of glibc are not vulnerable to this issue if patched for CVE-2017-1000366.", + "cvss": null, + "fix": { + "versions": [ + "2.24-11+deb9u4" + ], + "state": "fixed" + }, + "advisories": null + }, + "relatedVulnerabilities": [ + { + "id": "CVE-2017-1000409", + "dataSource": "https://nvd.nist.gov/vuln/detail/CVE-2017-1000409", + "namespace": "nvd:cpe", + "severity": "High", + "urls": [ + "http://seclists.org/oss-sec/2017/q4/385", + "https://security.netapp.com/advisory/ntap-20190404-0003/", + "https://www.exploit-db.com/exploits/43331/" + ], + "description": "A buffer overflow in glibc 2.5 (released on September 29, 2006) and can be triggered through the LD_LIBRARY_PATH environment variable. Please note that many versions of glibc are not vulnerable to this issue if patched for CVE-2017-1000366.", + "cvss": null + } + ], + "matchDetails": [ + { + "type": "exact-indirect-match", + "matcher": "dpkg-matcher", + "searchedBy": { + "distro": { + "type": "debian", + "version": "9" + }, + "namespace": "debian:distro:debian:9", + "package": { + "name": "glibc", + "version": "2.24-11+deb9u3" + } + }, + "found": { + "versionConstraint": "\u003c 2.24-11+deb9u4 (deb)", + "vulnerabilityID": "CVE-2017-1000409" + } + } + ], + "artifact": { + "name": "libc6", + "version": "2.24-11+deb9u3", + "type": "deb", + "locations": null, + "language": "", + "licenses": [ + "GPL-2.0-only", + "LGPL-2.1-only" + ], + "cpes": [ + "cpe:2.3:a:libc6:libc6:2.24-11+deb9u3:*:*:*:*:*:*:*" + ], + "purl": "pkg:deb/debian/libc6@2.24-11+deb9u3?arch=amd64\u0026upstream=glibc\u0026distro=debian-9", + "upstreams": [ + { + "name": "glibc" + } + ], + "metadata": null + } + }, + { + "vulnerability": { + "id": "CVE-2017-1000409", + "dataSource": "https://security-tracker.debian.org/tracker/CVE-2017-1000409", + "namespace": "debian:distro:debian:9", + "severity": "High", + "urls": [ + "https://security-tracker.debian.org/tracker/CVE-2017-1000409" + ], + "description": "A buffer overflow in glibc 2.5 (released on September 29, 2006) and can be triggered through the LD_LIBRARY_PATH environment variable. Please note that many versions of glibc are not vulnerable to this issue if patched for CVE-2017-1000366.", + "cvss": null, + "fix": { + "versions": [ + "2.24-11+deb9u4" + ], + "state": "fixed" + }, + "advisories": null + }, + "relatedVulnerabilities": [ + { + "id": "CVE-2017-1000409", + "dataSource": "https://nvd.nist.gov/vuln/detail/CVE-2017-1000409", + "namespace": "nvd:cpe", + "severity": "High", + "urls": [ + "http://seclists.org/oss-sec/2017/q4/385", + "https://security.netapp.com/advisory/ntap-20190404-0003/", + "https://www.exploit-db.com/exploits/43331/" + ], + "description": "A buffer overflow in glibc 2.5 (released on September 29, 2006) and can be triggered through the LD_LIBRARY_PATH environment variable. Please note that many versions of glibc are not vulnerable to this issue if patched for CVE-2017-1000366.", + "cvss": null + } + ], + "matchDetails": [ + { + "type": "exact-indirect-match", + "matcher": "dpkg-matcher", + "searchedBy": { + "distro": { + "type": "debian", + "version": "9" + }, + "namespace": "debian:distro:debian:9", + "package": { + "name": "glibc", + "version": "2.24-11+deb9u3" + } + }, + "found": { + "versionConstraint": "\u003c 2.24-11+deb9u4 (deb)", + "vulnerabilityID": "CVE-2017-1000409" + } + } + ], + "artifact": { + "name": "multiarch-support", + "version": "2.24-11+deb9u3", + "type": "deb", + "locations": null, + "language": "", + "licenses": [ + "GPL-2.0-only", + "LGPL-2.1-only" + ], + "cpes": [ + "cpe:2.3:a:multiarch-support:multiarch-support:2.24-11+deb9u3:*:*:*:*:*:*:*", + "cpe:2.3:a:multiarch-support:multiarch_support:2.24-11+deb9u3:*:*:*:*:*:*:*", + "cpe:2.3:a:multiarch_support:multiarch-support:2.24-11+deb9u3:*:*:*:*:*:*:*", + "cpe:2.3:a:multiarch_support:multiarch_support:2.24-11+deb9u3:*:*:*:*:*:*:*", + "cpe:2.3:a:multiarch:multiarch-support:2.24-11+deb9u3:*:*:*:*:*:*:*", + "cpe:2.3:a:multiarch:multiarch_support:2.24-11+deb9u3:*:*:*:*:*:*:*" + ], + "purl": "pkg:deb/debian/multiarch-support@2.24-11+deb9u3?arch=amd64\u0026upstream=glibc\u0026distro=debian-9", + "upstreams": [ + { + "name": "glibc" + } + ], + "metadata": null + } + }, + { + "vulnerability": { + "id": "CVE-2017-11164", + "dataSource": "https://security-tracker.debian.org/tracker/CVE-2017-11164", + "namespace": "debian:distro:debian:9", + "severity": "Negligible", + "urls": [ + "https://security-tracker.debian.org/tracker/CVE-2017-11164" + ], + "description": "In PCRE 8.41, the OP_KETRMAX feature in the match function in pcre_exec.c allows stack exhaustion (uncontrolled recursion) when processing a crafted regular expression.", + "cvss": null, + "fix": { + "versions": [], + "state": "not-fixed" + }, + "advisories": null + }, + "relatedVulnerabilities": [ + { + "id": "CVE-2017-11164", + "dataSource": "https://nvd.nist.gov/vuln/detail/CVE-2017-11164", + "namespace": "nvd:cpe", + "severity": "High", + "urls": [ + "http://openwall.com/lists/oss-security/2017/07/11/3", + "http://www.securityfocus.com/bid/99575", + "https://lists.apache.org/thread.html/rf9fa47ab66495c78bb4120b0754dd9531ca2ff0430f6685ac9b07772@%3Cdev.mina.apache.org%3E" + ], + "description": "In PCRE 8.41, the OP_KETRMAX feature in the match function in pcre_exec.c allows stack exhaustion (uncontrolled recursion) when processing a crafted regular expression.", + "cvss": null + } + ], + "matchDetails": [ + { + "type": "exact-indirect-match", + "matcher": "dpkg-matcher", + "searchedBy": { + "distro": { + "type": "debian", + "version": "9" + }, + "namespace": "debian:distro:debian:9", + "package": { + "name": "pcre3", + "version": "2:8.39-3" + } + }, + "found": { + "versionConstraint": "none (deb)", + "vulnerabilityID": "CVE-2017-11164" + } + } + ], + "artifact": { + "name": "libpcre3", + "version": "2:8.39-3", + "type": "deb", + "locations": null, + "language": "", + "licenses": [], + "cpes": [ + "cpe:2.3:a:libpcre3:libpcre3:2:8.39-3:*:*:*:*:*:*:*" + ], + "purl": "pkg:deb/debian/libpcre3@2:8.39-3?arch=amd64\u0026upstream=pcre3\u0026distro=debian-9", + "upstreams": [ + { + "name": "pcre3" + } + ], + "metadata": null + } + }, + { + "vulnerability": { + "id": "CVE-2017-11613", + "dataSource": "https://security-tracker.debian.org/tracker/CVE-2017-11613", + "namespace": "debian:distro:debian:9", + "severity": "Medium", + "urls": [ + "https://security-tracker.debian.org/tracker/CVE-2017-11613" + ], + "description": "In LibTIFF 4.0.8, there is a denial of service vulnerability in the TIFFOpen function. A crafted input will lead to a denial of service attack. During the TIFFOpen process, td_imagelength is not checked. The value of td_imagelength can be directly controlled by an input file. In the ChopUpSingleUncompressedStrip function, the _TIFFCheckMalloc function is called based on td_imagelength. If we set the value of td_imagelength close to the amount of system memory, it will hang the system or trigger the OOM killer.", + "cvss": null, + "fix": { + "versions": [ + "4.0.8-2+deb9u4" + ], + "state": "fixed" + }, + "advisories": [ + { + "id": "DSA-4349-1", + "link": "https://security-tracker.debian.org/tracker/DSA-4349-1" + } + ] + }, + "relatedVulnerabilities": [ + { + "id": "CVE-2017-11613", + "dataSource": "https://nvd.nist.gov/vuln/detail/CVE-2017-11613", + "namespace": "nvd:cpe", + "severity": "Medium", + "urls": [ + "http://www.securityfocus.com/bid/99977", + "https://gist.github.com/dazhouzhou/1a3b7400547f23fe316db303ab9b604f", + "https://lists.debian.org/debian-lts-announce/2018/05/msg00022.html", + "https://lists.debian.org/debian-lts-announce/2018/07/msg00002.html", + "https://usn.ubuntu.com/3606-1/", + "https://www.debian.org/security/2018/dsa-4349" + ], + "description": "In LibTIFF 4.0.8, there is a denial of service vulnerability in the TIFFOpen function. A crafted input will lead to a denial of service attack. During the TIFFOpen process, td_imagelength is not checked. The value of td_imagelength can be directly controlled by an input file. In the ChopUpSingleUncompressedStrip function, the _TIFFCheckMalloc function is called based on td_imagelength. If we set the value of td_imagelength close to the amount of system memory, it will hang the system or trigger the OOM killer.", + "cvss": null + } + ], + "matchDetails": [ + { + "type": "exact-indirect-match", + "matcher": "dpkg-matcher", + "searchedBy": { + "distro": { + "type": "debian", + "version": "9" + }, + "namespace": "debian:distro:debian:9", + "package": { + "name": "tiff", + "version": "4.0.8-2+deb9u2" + } + }, + "found": { + "versionConstraint": "\u003c 4.0.8-2+deb9u4 (deb)", + "vulnerabilityID": "CVE-2017-11613" + } + } + ], + "artifact": { + "name": "libtiff5", + "version": "4.0.8-2+deb9u2", + "type": "deb", + "locations": null, + "language": "", + "licenses": [ + "LicenseRef-Hylafax" + ], + "cpes": [ + "cpe:2.3:a:libtiff5:libtiff5:4.0.8-2+deb9u2:*:*:*:*:*:*:*" + ], + "purl": "pkg:deb/debian/libtiff5@4.0.8-2+deb9u2?arch=amd64\u0026upstream=tiff\u0026distro=debian-9", + "upstreams": [ + { + "name": "tiff" + } + ], + "metadata": null + } + }, + { + "vulnerability": { + "id": "CVE-2017-12132", + "dataSource": "https://security-tracker.debian.org/tracker/CVE-2017-12132", + "namespace": "debian:distro:debian:9", + "severity": "Medium", + "urls": [ + "https://security-tracker.debian.org/tracker/CVE-2017-12132" + ], + "description": "The DNS stub resolver in the GNU C Library (aka glibc or libc6) before version 2.26, when EDNS support is enabled, will solicit large UDP responses from name servers, potentially simplifying off-path DNS spoofing attacks due to IP fragmentation.", + "cvss": null, + "fix": { + "versions": [], + "state": "wont-fix" + }, + "advisories": null + }, + "relatedVulnerabilities": [ + { + "id": "CVE-2017-12132", + "dataSource": "https://nvd.nist.gov/vuln/detail/CVE-2017-12132", + "namespace": "nvd:cpe", + "severity": "Medium", + "urls": [ + "http://www.securityfocus.com/bid/100598", + "https://access.redhat.com/errata/RHSA-2018:0805", + "https://arxiv.org/pdf/1205.4011.pdf", + "https://sourceware.org/bugzilla/show_bug.cgi?id=21361" + ], + "description": "The DNS stub resolver in the GNU C Library (aka glibc or libc6) before version 2.26, when EDNS support is enabled, will solicit large UDP responses from name servers, potentially simplifying off-path DNS spoofing attacks due to IP fragmentation.", + "cvss": null + } + ], + "matchDetails": [ + { + "type": "exact-indirect-match", + "matcher": "dpkg-matcher", + "searchedBy": { + "distro": { + "type": "debian", + "version": "9" + }, + "namespace": "debian:distro:debian:9", + "package": { + "name": "glibc", + "version": "2.24-11+deb9u3" + } + }, + "found": { + "versionConstraint": "none (deb)", + "vulnerabilityID": "CVE-2017-12132" + } + } + ], + "artifact": { + "name": "libc-bin", + "version": "2.24-11+deb9u3", + "type": "deb", + "locations": null, + "language": "", + "licenses": [ + "GPL-2.0-only", + "LGPL-2.1-only" + ], + "cpes": [ + "cpe:2.3:a:libc-bin:libc-bin:2.24-11+deb9u3:*:*:*:*:*:*:*", + "cpe:2.3:a:libc-bin:libc_bin:2.24-11+deb9u3:*:*:*:*:*:*:*", + "cpe:2.3:a:libc_bin:libc-bin:2.24-11+deb9u3:*:*:*:*:*:*:*", + "cpe:2.3:a:libc_bin:libc_bin:2.24-11+deb9u3:*:*:*:*:*:*:*", + "cpe:2.3:a:libc:libc-bin:2.24-11+deb9u3:*:*:*:*:*:*:*", + "cpe:2.3:a:libc:libc_bin:2.24-11+deb9u3:*:*:*:*:*:*:*" + ], + "purl": "pkg:deb/debian/libc-bin@2.24-11+deb9u3?arch=amd64\u0026upstream=glibc\u0026distro=debian-9", + "upstreams": [ + { + "name": "glibc" + } + ], + "metadata": null + } + }, + { + "vulnerability": { + "id": "CVE-2017-12132", + "dataSource": "https://security-tracker.debian.org/tracker/CVE-2017-12132", + "namespace": "debian:distro:debian:9", + "severity": "Medium", + "urls": [ + "https://security-tracker.debian.org/tracker/CVE-2017-12132" + ], + "description": "The DNS stub resolver in the GNU C Library (aka glibc or libc6) before version 2.26, when EDNS support is enabled, will solicit large UDP responses from name servers, potentially simplifying off-path DNS spoofing attacks due to IP fragmentation.", + "cvss": null, + "fix": { + "versions": [], + "state": "wont-fix" + }, + "advisories": null + }, + "relatedVulnerabilities": [ + { + "id": "CVE-2017-12132", + "dataSource": "https://nvd.nist.gov/vuln/detail/CVE-2017-12132", + "namespace": "nvd:cpe", + "severity": "Medium", + "urls": [ + "http://www.securityfocus.com/bid/100598", + "https://access.redhat.com/errata/RHSA-2018:0805", + "https://arxiv.org/pdf/1205.4011.pdf", + "https://sourceware.org/bugzilla/show_bug.cgi?id=21361" + ], + "description": "The DNS stub resolver in the GNU C Library (aka glibc or libc6) before version 2.26, when EDNS support is enabled, will solicit large UDP responses from name servers, potentially simplifying off-path DNS spoofing attacks due to IP fragmentation.", + "cvss": null + } + ], + "matchDetails": [ + { + "type": "exact-indirect-match", + "matcher": "dpkg-matcher", + "searchedBy": { + "distro": { + "type": "debian", + "version": "9" + }, + "namespace": "debian:distro:debian:9", + "package": { + "name": "glibc", + "version": "2.24-11+deb9u3" + } + }, + "found": { + "versionConstraint": "none (deb)", + "vulnerabilityID": "CVE-2017-12132" + } + } + ], + "artifact": { + "name": "libc6", + "version": "2.24-11+deb9u3", + "type": "deb", + "locations": null, + "language": "", + "licenses": [ + "GPL-2.0-only", + "LGPL-2.1-only" + ], + "cpes": [ + "cpe:2.3:a:libc6:libc6:2.24-11+deb9u3:*:*:*:*:*:*:*" + ], + "purl": "pkg:deb/debian/libc6@2.24-11+deb9u3?arch=amd64\u0026upstream=glibc\u0026distro=debian-9", + "upstreams": [ + { + "name": "glibc" + } + ], + "metadata": null + } + }, + { + "vulnerability": { + "id": "CVE-2017-12132", + "dataSource": "https://security-tracker.debian.org/tracker/CVE-2017-12132", + "namespace": "debian:distro:debian:9", + "severity": "Medium", + "urls": [ + "https://security-tracker.debian.org/tracker/CVE-2017-12132" + ], + "description": "The DNS stub resolver in the GNU C Library (aka glibc or libc6) before version 2.26, when EDNS support is enabled, will solicit large UDP responses from name servers, potentially simplifying off-path DNS spoofing attacks due to IP fragmentation.", + "cvss": null, + "fix": { + "versions": [], + "state": "wont-fix" + }, + "advisories": null + }, + "relatedVulnerabilities": [ + { + "id": "CVE-2017-12132", + "dataSource": "https://nvd.nist.gov/vuln/detail/CVE-2017-12132", + "namespace": "nvd:cpe", + "severity": "Medium", + "urls": [ + "http://www.securityfocus.com/bid/100598", + "https://access.redhat.com/errata/RHSA-2018:0805", + "https://arxiv.org/pdf/1205.4011.pdf", + "https://sourceware.org/bugzilla/show_bug.cgi?id=21361" + ], + "description": "The DNS stub resolver in the GNU C Library (aka glibc or libc6) before version 2.26, when EDNS support is enabled, will solicit large UDP responses from name servers, potentially simplifying off-path DNS spoofing attacks due to IP fragmentation.", + "cvss": null + } + ], + "matchDetails": [ + { + "type": "exact-indirect-match", + "matcher": "dpkg-matcher", + "searchedBy": { + "distro": { + "type": "debian", + "version": "9" + }, + "namespace": "debian:distro:debian:9", + "package": { + "name": "glibc", + "version": "2.24-11+deb9u3" + } + }, + "found": { + "versionConstraint": "none (deb)", + "vulnerabilityID": "CVE-2017-12132" + } + } + ], + "artifact": { + "name": "multiarch-support", + "version": "2.24-11+deb9u3", + "type": "deb", + "locations": null, + "language": "", + "licenses": [ + "GPL-2.0-only", + "LGPL-2.1-only" + ], + "cpes": [ + "cpe:2.3:a:multiarch-support:multiarch-support:2.24-11+deb9u3:*:*:*:*:*:*:*", + "cpe:2.3:a:multiarch-support:multiarch_support:2.24-11+deb9u3:*:*:*:*:*:*:*", + "cpe:2.3:a:multiarch_support:multiarch-support:2.24-11+deb9u3:*:*:*:*:*:*:*", + "cpe:2.3:a:multiarch_support:multiarch_support:2.24-11+deb9u3:*:*:*:*:*:*:*", + "cpe:2.3:a:multiarch:multiarch-support:2.24-11+deb9u3:*:*:*:*:*:*:*", + "cpe:2.3:a:multiarch:multiarch_support:2.24-11+deb9u3:*:*:*:*:*:*:*" + ], + "purl": "pkg:deb/debian/multiarch-support@2.24-11+deb9u3?arch=amd64\u0026upstream=glibc\u0026distro=debian-9", + "upstreams": [ + { + "name": "glibc" + } + ], + "metadata": null + } + }, + { + "vulnerability": { + "id": "CVE-2017-12424", + "dataSource": "https://security-tracker.debian.org/tracker/CVE-2017-12424", + "namespace": "debian:distro:debian:9", + "severity": "Critical", + "urls": [ + "https://security-tracker.debian.org/tracker/CVE-2017-12424" + ], + "description": "In shadow before 4.5, the newusers tool could be made to manipulate internal data structures in ways unintended by the authors. Malformed input may lead to crashes (with a buffer overflow or other memory corruption) or other unspecified behaviors. This crosses a privilege boundary in, for example, certain web-hosting environments in which a Control Panel allows an unprivileged user account to create subaccounts.", + "cvss": null, + "fix": { + "versions": [ + "1:4.4-4.1+deb9u1" + ], + "state": "fixed" + }, + "advisories": null + }, + "relatedVulnerabilities": [ + { + "id": "CVE-2017-12424", + "dataSource": "https://nvd.nist.gov/vuln/detail/CVE-2017-12424", + "namespace": "nvd:cpe", + "severity": "Critical", + "urls": [ + "https://bugs.debian.org/cgi-bin/bugreport.cgi?bug=756630", + "https://bugs.launchpad.net/ubuntu/+source/shadow/+bug/1266675", + "https://github.com/shadow-maint/shadow/commit/954e3d2e7113e9ac06632aee3c69b8d818cc8952", + "https://lists.debian.org/debian-lts-announce/2021/03/msg00020.html", + "https://security.gentoo.org/glsa/201710-16" + ], + "description": "In shadow before 4.5, the newusers tool could be made to manipulate internal data structures in ways unintended by the authors. Malformed input may lead to crashes (with a buffer overflow or other memory corruption) or other unspecified behaviors. This crosses a privilege boundary in, for example, certain web-hosting environments in which a Control Panel allows an unprivileged user account to create subaccounts.", + "cvss": null + } + ], + "matchDetails": [ + { + "type": "exact-indirect-match", + "matcher": "dpkg-matcher", + "searchedBy": { + "distro": { + "type": "debian", + "version": "9" + }, + "namespace": "debian:distro:debian:9", + "package": { + "name": "shadow", + "version": "1:4.4-4.1" + } + }, + "found": { + "versionConstraint": "\u003c 1:4.4-4.1+deb9u1 (deb)", + "vulnerabilityID": "CVE-2017-12424" + } + } + ], + "artifact": { + "name": "login", + "version": "1:4.4-4.1", + "type": "deb", + "locations": null, + "language": "", + "licenses": [ + "GPL-2.0-only" + ], + "cpes": [ + "cpe:2.3:a:login:login:1:4.4-4.1:*:*:*:*:*:*:*" + ], + "purl": "pkg:deb/debian/login@1:4.4-4.1?arch=amd64\u0026upstream=shadow\u0026distro=debian-9", + "upstreams": [ + { + "name": "shadow" + } + ], + "metadata": null + } + }, + { + "vulnerability": { + "id": "CVE-2017-12424", + "dataSource": "https://security-tracker.debian.org/tracker/CVE-2017-12424", + "namespace": "debian:distro:debian:9", + "severity": "Critical", + "urls": [ + "https://security-tracker.debian.org/tracker/CVE-2017-12424" + ], + "description": "In shadow before 4.5, the newusers tool could be made to manipulate internal data structures in ways unintended by the authors. Malformed input may lead to crashes (with a buffer overflow or other memory corruption) or other unspecified behaviors. This crosses a privilege boundary in, for example, certain web-hosting environments in which a Control Panel allows an unprivileged user account to create subaccounts.", + "cvss": null, + "fix": { + "versions": [ + "1:4.4-4.1+deb9u1" + ], + "state": "fixed" + }, + "advisories": null + }, + "relatedVulnerabilities": [ + { + "id": "CVE-2017-12424", + "dataSource": "https://nvd.nist.gov/vuln/detail/CVE-2017-12424", + "namespace": "nvd:cpe", + "severity": "Critical", + "urls": [ + "https://bugs.debian.org/cgi-bin/bugreport.cgi?bug=756630", + "https://bugs.launchpad.net/ubuntu/+source/shadow/+bug/1266675", + "https://github.com/shadow-maint/shadow/commit/954e3d2e7113e9ac06632aee3c69b8d818cc8952", + "https://lists.debian.org/debian-lts-announce/2021/03/msg00020.html", + "https://security.gentoo.org/glsa/201710-16" + ], + "description": "In shadow before 4.5, the newusers tool could be made to manipulate internal data structures in ways unintended by the authors. Malformed input may lead to crashes (with a buffer overflow or other memory corruption) or other unspecified behaviors. This crosses a privilege boundary in, for example, certain web-hosting environments in which a Control Panel allows an unprivileged user account to create subaccounts.", + "cvss": null + } + ], + "matchDetails": [ + { + "type": "exact-indirect-match", + "matcher": "dpkg-matcher", + "searchedBy": { + "distro": { + "type": "debian", + "version": "9" + }, + "namespace": "debian:distro:debian:9", + "package": { + "name": "shadow", + "version": "1:4.4-4.1" + } + }, + "found": { + "versionConstraint": "\u003c 1:4.4-4.1+deb9u1 (deb)", + "vulnerabilityID": "CVE-2017-12424" + } + } + ], + "artifact": { + "name": "passwd", + "version": "1:4.4-4.1", + "type": "deb", + "locations": null, + "language": "", + "licenses": [ + "GPL-2.0-only" + ], + "cpes": [ + "cpe:2.3:a:passwd:passwd:1:4.4-4.1:*:*:*:*:*:*:*" + ], + "purl": "pkg:deb/debian/passwd@1:4.4-4.1?arch=amd64\u0026upstream=shadow\u0026distro=debian-9", + "upstreams": [ + { + "name": "shadow" + } + ], + "metadata": null + } + }, + { + "vulnerability": { + "id": "CVE-2017-12652", + "dataSource": "https://security-tracker.debian.org/tracker/CVE-2017-12652", + "namespace": "debian:distro:debian:9", + "severity": "Critical", + "urls": [ + "https://security-tracker.debian.org/tracker/CVE-2017-12652" + ], + "description": "libpng before 1.6.32 does not properly check the length of chunks against the user limit.", + "cvss": null, + "fix": { + "versions": [], + "state": "wont-fix" + }, + "advisories": null + }, + "relatedVulnerabilities": [ + { + "id": "CVE-2017-12652", + "dataSource": "https://nvd.nist.gov/vuln/detail/CVE-2017-12652", + "namespace": "nvd:cpe", + "severity": "Critical", + "urls": [ + "http://www.securityfocus.com/bid/109269", + "https://github.com/glennrp/libpng/blob/df7e9dae0c4aac63d55361e35709c864fa1b8363/ANNOUNCE", + "https://security.netapp.com/advisory/ntap-20220506-0003/", + "https://support.f5.com/csp/article/K88124225", + "https://support.f5.com/csp/article/K88124225?utm_source=f5support\u0026amp;utm_medium=RSS" + ], + "description": "libpng before 1.6.32 does not properly check the length of chunks against the user limit.", + "cvss": null + } + ], + "matchDetails": [ + { + "type": "exact-indirect-match", + "matcher": "dpkg-matcher", + "searchedBy": { + "distro": { + "type": "debian", + "version": "9" + }, + "namespace": "debian:distro:debian:9", + "package": { + "name": "libpng1.6", + "version": "1.6.28-1" + } + }, + "found": { + "versionConstraint": "none (deb)", + "vulnerabilityID": "CVE-2017-12652" + } + } + ], + "artifact": { + "name": "libpng16-16", + "version": "1.6.28-1", + "type": "deb", + "locations": null, + "language": "", + "licenses": [ + "LicenseRef-BSD-like-with-advertising-clause", + "GPL-2.0-only", + "GPL-2.0-or-later", + "LicenseRef-expat", + "Libpng" + ], + "cpes": [ + "cpe:2.3:a:libpng16-16:libpng16-16:1.6.28-1:*:*:*:*:*:*:*", + "cpe:2.3:a:libpng16-16:libpng16_16:1.6.28-1:*:*:*:*:*:*:*", + "cpe:2.3:a:libpng16_16:libpng16-16:1.6.28-1:*:*:*:*:*:*:*", + "cpe:2.3:a:libpng16_16:libpng16_16:1.6.28-1:*:*:*:*:*:*:*", + "cpe:2.3:a:libpng16:libpng16-16:1.6.28-1:*:*:*:*:*:*:*", + "cpe:2.3:a:libpng16:libpng16_16:1.6.28-1:*:*:*:*:*:*:*" + ], + "purl": "pkg:deb/debian/libpng16-16@1.6.28-1?arch=amd64\u0026upstream=libpng1.6\u0026distro=debian-9", + "upstreams": [ + { + "name": "libpng1.6" + } + ], + "metadata": null + } + }, + { + "vulnerability": { + "id": "CVE-2017-15232", + "dataSource": "https://security-tracker.debian.org/tracker/CVE-2017-15232", + "namespace": "debian:distro:debian:9", + "severity": "Negligible", + "urls": [ + "https://security-tracker.debian.org/tracker/CVE-2017-15232" + ], + "description": "libjpeg-turbo 1.5.2 has a NULL Pointer Dereference in jdpostct.c and jquant1.c via a crafted JPEG file.", + "cvss": null, + "fix": { + "versions": [], + "state": "not-fixed" + }, + "advisories": null + }, + "relatedVulnerabilities": [ + { + "id": "CVE-2017-15232", + "dataSource": "https://nvd.nist.gov/vuln/detail/CVE-2017-15232", + "namespace": "nvd:cpe", + "severity": "Medium", + "urls": [ + "https://github.com/libjpeg-turbo/libjpeg-turbo/pull/182", + "https://github.com/mozilla/mozjpeg/issues/268", + "https://usn.ubuntu.com/3706-1/" + ], + "description": "libjpeg-turbo 1.5.2 has a NULL Pointer Dereference in jdpostct.c and jquant1.c via a crafted JPEG file.", + "cvss": null + } + ], + "matchDetails": [ + { + "type": "exact-indirect-match", + "matcher": "dpkg-matcher", + "searchedBy": { + "distro": { + "type": "debian", + "version": "9" + }, + "namespace": "debian:distro:debian:9", + "package": { + "name": "libjpeg-turbo", + "version": "1:1.5.1-2" + } + }, + "found": { + "versionConstraint": "none (deb)", + "vulnerabilityID": "CVE-2017-15232" + } + } + ], + "artifact": { + "name": "libjpeg62-turbo", + "version": "1:1.5.1-2", + "type": "deb", + "locations": null, + "language": "", + "licenses": [ + "LicenseRef-BSD-3", + "LicenseRef-BSD-BY-LC-NE", + "LicenseRef-Expat" + ], + "cpes": [ + "cpe:2.3:a:libjpeg62-turbo:libjpeg62-turbo:1:1.5.1-2:*:*:*:*:*:*:*", + "cpe:2.3:a:libjpeg62-turbo:libjpeg62_turbo:1:1.5.1-2:*:*:*:*:*:*:*", + "cpe:2.3:a:libjpeg62_turbo:libjpeg62-turbo:1:1.5.1-2:*:*:*:*:*:*:*", + "cpe:2.3:a:libjpeg62_turbo:libjpeg62_turbo:1:1.5.1-2:*:*:*:*:*:*:*", + "cpe:2.3:a:libjpeg62:libjpeg62-turbo:1:1.5.1-2:*:*:*:*:*:*:*", + "cpe:2.3:a:libjpeg62:libjpeg62_turbo:1:1.5.1-2:*:*:*:*:*:*:*" + ], + "purl": "pkg:deb/debian/libjpeg62-turbo@1:1.5.1-2?arch=amd64\u0026upstream=libjpeg-turbo\u0026distro=debian-9", + "upstreams": [ + { + "name": "libjpeg-turbo" + } + ], + "metadata": null + } + }, + { + "vulnerability": { + "id": "CVE-2017-15670", + "dataSource": "https://security-tracker.debian.org/tracker/CVE-2017-15670", + "namespace": "debian:distro:debian:9", + "severity": "Critical", + "urls": [ + "https://security-tracker.debian.org/tracker/CVE-2017-15670" + ], + "description": "The GNU C Library (aka glibc or libc6) before 2.27 contains an off-by-one error leading to a heap-based buffer overflow in the glob function in glob.c, related to the processing of home directories using the ~ operator followed by a long string.", + "cvss": null, + "fix": { + "versions": [ + "2.24-11+deb9u4" + ], + "state": "fixed" + }, + "advisories": null + }, + "relatedVulnerabilities": [ + { + "id": "CVE-2017-15670", + "dataSource": "https://nvd.nist.gov/vuln/detail/CVE-2017-15670", + "namespace": "nvd:cpe", + "severity": "Critical", + "urls": [ + "http://www.securityfocus.com/bid/101521", + "https://access.redhat.com/errata/RHSA-2018:0805", + "https://access.redhat.com/errata/RHSA-2018:1879", + "https://sourceware.org/bugzilla/show_bug.cgi?id=22320" + ], + "description": "The GNU C Library (aka glibc or libc6) before 2.27 contains an off-by-one error leading to a heap-based buffer overflow in the glob function in glob.c, related to the processing of home directories using the ~ operator followed by a long string.", + "cvss": null + } + ], + "matchDetails": [ + { + "type": "exact-indirect-match", + "matcher": "dpkg-matcher", + "searchedBy": { + "distro": { + "type": "debian", + "version": "9" + }, + "namespace": "debian:distro:debian:9", + "package": { + "name": "glibc", + "version": "2.24-11+deb9u3" + } + }, + "found": { + "versionConstraint": "\u003c 2.24-11+deb9u4 (deb)", + "vulnerabilityID": "CVE-2017-15670" + } + } + ], + "artifact": { + "name": "libc-bin", + "version": "2.24-11+deb9u3", + "type": "deb", + "locations": null, + "language": "", + "licenses": [ + "GPL-2.0-only", + "LGPL-2.1-only" + ], + "cpes": [ + "cpe:2.3:a:libc-bin:libc-bin:2.24-11+deb9u3:*:*:*:*:*:*:*", + "cpe:2.3:a:libc-bin:libc_bin:2.24-11+deb9u3:*:*:*:*:*:*:*", + "cpe:2.3:a:libc_bin:libc-bin:2.24-11+deb9u3:*:*:*:*:*:*:*", + "cpe:2.3:a:libc_bin:libc_bin:2.24-11+deb9u3:*:*:*:*:*:*:*", + "cpe:2.3:a:libc:libc-bin:2.24-11+deb9u3:*:*:*:*:*:*:*", + "cpe:2.3:a:libc:libc_bin:2.24-11+deb9u3:*:*:*:*:*:*:*" + ], + "purl": "pkg:deb/debian/libc-bin@2.24-11+deb9u3?arch=amd64\u0026upstream=glibc\u0026distro=debian-9", + "upstreams": [ + { + "name": "glibc" + } + ], + "metadata": null + } + }, + { + "vulnerability": { + "id": "CVE-2017-15670", + "dataSource": "https://security-tracker.debian.org/tracker/CVE-2017-15670", + "namespace": "debian:distro:debian:9", + "severity": "Critical", + "urls": [ + "https://security-tracker.debian.org/tracker/CVE-2017-15670" + ], + "description": "The GNU C Library (aka glibc or libc6) before 2.27 contains an off-by-one error leading to a heap-based buffer overflow in the glob function in glob.c, related to the processing of home directories using the ~ operator followed by a long string.", + "cvss": null, + "fix": { + "versions": [ + "2.24-11+deb9u4" + ], + "state": "fixed" + }, + "advisories": null + }, + "relatedVulnerabilities": [ + { + "id": "CVE-2017-15670", + "dataSource": "https://nvd.nist.gov/vuln/detail/CVE-2017-15670", + "namespace": "nvd:cpe", + "severity": "Critical", + "urls": [ + "http://www.securityfocus.com/bid/101521", + "https://access.redhat.com/errata/RHSA-2018:0805", + "https://access.redhat.com/errata/RHSA-2018:1879", + "https://sourceware.org/bugzilla/show_bug.cgi?id=22320" + ], + "description": "The GNU C Library (aka glibc or libc6) before 2.27 contains an off-by-one error leading to a heap-based buffer overflow in the glob function in glob.c, related to the processing of home directories using the ~ operator followed by a long string.", + "cvss": null + } + ], + "matchDetails": [ + { + "type": "exact-indirect-match", + "matcher": "dpkg-matcher", + "searchedBy": { + "distro": { + "type": "debian", + "version": "9" + }, + "namespace": "debian:distro:debian:9", + "package": { + "name": "glibc", + "version": "2.24-11+deb9u3" + } + }, + "found": { + "versionConstraint": "\u003c 2.24-11+deb9u4 (deb)", + "vulnerabilityID": "CVE-2017-15670" + } + } + ], + "artifact": { + "name": "libc6", + "version": "2.24-11+deb9u3", + "type": "deb", + "locations": null, + "language": "", + "licenses": [ + "GPL-2.0-only", + "LGPL-2.1-only" + ], + "cpes": [ + "cpe:2.3:a:libc6:libc6:2.24-11+deb9u3:*:*:*:*:*:*:*" + ], + "purl": "pkg:deb/debian/libc6@2.24-11+deb9u3?arch=amd64\u0026upstream=glibc\u0026distro=debian-9", + "upstreams": [ + { + "name": "glibc" + } + ], + "metadata": null + } + }, + { + "vulnerability": { + "id": "CVE-2017-15670", + "dataSource": "https://security-tracker.debian.org/tracker/CVE-2017-15670", + "namespace": "debian:distro:debian:9", + "severity": "Critical", + "urls": [ + "https://security-tracker.debian.org/tracker/CVE-2017-15670" + ], + "description": "The GNU C Library (aka glibc or libc6) before 2.27 contains an off-by-one error leading to a heap-based buffer overflow in the glob function in glob.c, related to the processing of home directories using the ~ operator followed by a long string.", + "cvss": null, + "fix": { + "versions": [ + "2.24-11+deb9u4" + ], + "state": "fixed" + }, + "advisories": null + }, + "relatedVulnerabilities": [ + { + "id": "CVE-2017-15670", + "dataSource": "https://nvd.nist.gov/vuln/detail/CVE-2017-15670", + "namespace": "nvd:cpe", + "severity": "Critical", + "urls": [ + "http://www.securityfocus.com/bid/101521", + "https://access.redhat.com/errata/RHSA-2018:0805", + "https://access.redhat.com/errata/RHSA-2018:1879", + "https://sourceware.org/bugzilla/show_bug.cgi?id=22320" + ], + "description": "The GNU C Library (aka glibc or libc6) before 2.27 contains an off-by-one error leading to a heap-based buffer overflow in the glob function in glob.c, related to the processing of home directories using the ~ operator followed by a long string.", + "cvss": null + } + ], + "matchDetails": [ + { + "type": "exact-indirect-match", + "matcher": "dpkg-matcher", + "searchedBy": { + "distro": { + "type": "debian", + "version": "9" + }, + "namespace": "debian:distro:debian:9", + "package": { + "name": "glibc", + "version": "2.24-11+deb9u3" + } + }, + "found": { + "versionConstraint": "\u003c 2.24-11+deb9u4 (deb)", + "vulnerabilityID": "CVE-2017-15670" + } + } + ], + "artifact": { + "name": "multiarch-support", + "version": "2.24-11+deb9u3", + "type": "deb", + "locations": null, + "language": "", + "licenses": [ + "GPL-2.0-only", + "LGPL-2.1-only" + ], + "cpes": [ + "cpe:2.3:a:multiarch-support:multiarch-support:2.24-11+deb9u3:*:*:*:*:*:*:*", + "cpe:2.3:a:multiarch-support:multiarch_support:2.24-11+deb9u3:*:*:*:*:*:*:*", + "cpe:2.3:a:multiarch_support:multiarch-support:2.24-11+deb9u3:*:*:*:*:*:*:*", + "cpe:2.3:a:multiarch_support:multiarch_support:2.24-11+deb9u3:*:*:*:*:*:*:*", + "cpe:2.3:a:multiarch:multiarch-support:2.24-11+deb9u3:*:*:*:*:*:*:*", + "cpe:2.3:a:multiarch:multiarch_support:2.24-11+deb9u3:*:*:*:*:*:*:*" + ], + "purl": "pkg:deb/debian/multiarch-support@2.24-11+deb9u3?arch=amd64\u0026upstream=glibc\u0026distro=debian-9", + "upstreams": [ + { + "name": "glibc" + } + ], + "metadata": null + } + }, + { + "vulnerability": { + "id": "CVE-2017-15671", + "dataSource": "https://security-tracker.debian.org/tracker/CVE-2017-15671", + "namespace": "debian:distro:debian:9", + "severity": "Medium", + "urls": [ + "https://security-tracker.debian.org/tracker/CVE-2017-15671" + ], + "description": "The glob function in glob.c in the GNU C Library (aka glibc or libc6) before 2.27, when invoked with GLOB_TILDE, could skip freeing allocated memory when processing the ~ operator with a long user name, potentially leading to a denial of service (memory leak).", + "cvss": null, + "fix": { + "versions": [ + "2.24-11+deb9u4" + ], + "state": "fixed" + }, + "advisories": null + }, + "relatedVulnerabilities": [ + { + "id": "CVE-2017-15671", + "dataSource": "https://nvd.nist.gov/vuln/detail/CVE-2017-15671", + "namespace": "nvd:cpe", + "severity": "Medium", + "urls": [ + "http://www.securityfocus.com/bid/101517", + "https://sourceware.org/bugzilla/show_bug.cgi?id=22325" + ], + "description": "The glob function in glob.c in the GNU C Library (aka glibc or libc6) before 2.27, when invoked with GLOB_TILDE, could skip freeing allocated memory when processing the ~ operator with a long user name, potentially leading to a denial of service (memory leak).", + "cvss": null + } + ], + "matchDetails": [ + { + "type": "exact-indirect-match", + "matcher": "dpkg-matcher", + "searchedBy": { + "distro": { + "type": "debian", + "version": "9" + }, + "namespace": "debian:distro:debian:9", + "package": { + "name": "glibc", + "version": "2.24-11+deb9u3" + } + }, + "found": { + "versionConstraint": "\u003c 2.24-11+deb9u4 (deb)", + "vulnerabilityID": "CVE-2017-15671" + } + } + ], + "artifact": { + "name": "libc-bin", + "version": "2.24-11+deb9u3", + "type": "deb", + "locations": null, + "language": "", + "licenses": [ + "GPL-2.0-only", + "LGPL-2.1-only" + ], + "cpes": [ + "cpe:2.3:a:libc-bin:libc-bin:2.24-11+deb9u3:*:*:*:*:*:*:*", + "cpe:2.3:a:libc-bin:libc_bin:2.24-11+deb9u3:*:*:*:*:*:*:*", + "cpe:2.3:a:libc_bin:libc-bin:2.24-11+deb9u3:*:*:*:*:*:*:*", + "cpe:2.3:a:libc_bin:libc_bin:2.24-11+deb9u3:*:*:*:*:*:*:*", + "cpe:2.3:a:libc:libc-bin:2.24-11+deb9u3:*:*:*:*:*:*:*", + "cpe:2.3:a:libc:libc_bin:2.24-11+deb9u3:*:*:*:*:*:*:*" + ], + "purl": "pkg:deb/debian/libc-bin@2.24-11+deb9u3?arch=amd64\u0026upstream=glibc\u0026distro=debian-9", + "upstreams": [ + { + "name": "glibc" + } + ], + "metadata": null + } + }, + { + "vulnerability": { + "id": "CVE-2017-15671", + "dataSource": "https://security-tracker.debian.org/tracker/CVE-2017-15671", + "namespace": "debian:distro:debian:9", + "severity": "Medium", + "urls": [ + "https://security-tracker.debian.org/tracker/CVE-2017-15671" + ], + "description": "The glob function in glob.c in the GNU C Library (aka glibc or libc6) before 2.27, when invoked with GLOB_TILDE, could skip freeing allocated memory when processing the ~ operator with a long user name, potentially leading to a denial of service (memory leak).", + "cvss": null, + "fix": { + "versions": [ + "2.24-11+deb9u4" + ], + "state": "fixed" + }, + "advisories": null + }, + "relatedVulnerabilities": [ + { + "id": "CVE-2017-15671", + "dataSource": "https://nvd.nist.gov/vuln/detail/CVE-2017-15671", + "namespace": "nvd:cpe", + "severity": "Medium", + "urls": [ + "http://www.securityfocus.com/bid/101517", + "https://sourceware.org/bugzilla/show_bug.cgi?id=22325" + ], + "description": "The glob function in glob.c in the GNU C Library (aka glibc or libc6) before 2.27, when invoked with GLOB_TILDE, could skip freeing allocated memory when processing the ~ operator with a long user name, potentially leading to a denial of service (memory leak).", + "cvss": null + } + ], + "matchDetails": [ + { + "type": "exact-indirect-match", + "matcher": "dpkg-matcher", + "searchedBy": { + "distro": { + "type": "debian", + "version": "9" + }, + "namespace": "debian:distro:debian:9", + "package": { + "name": "glibc", + "version": "2.24-11+deb9u3" + } + }, + "found": { + "versionConstraint": "\u003c 2.24-11+deb9u4 (deb)", + "vulnerabilityID": "CVE-2017-15671" + } + } + ], + "artifact": { + "name": "libc6", + "version": "2.24-11+deb9u3", + "type": "deb", + "locations": null, + "language": "", + "licenses": [ + "GPL-2.0-only", + "LGPL-2.1-only" + ], + "cpes": [ + "cpe:2.3:a:libc6:libc6:2.24-11+deb9u3:*:*:*:*:*:*:*" + ], + "purl": "pkg:deb/debian/libc6@2.24-11+deb9u3?arch=amd64\u0026upstream=glibc\u0026distro=debian-9", + "upstreams": [ + { + "name": "glibc" + } + ], + "metadata": null + } + }, + { + "vulnerability": { + "id": "CVE-2017-15671", + "dataSource": "https://security-tracker.debian.org/tracker/CVE-2017-15671", + "namespace": "debian:distro:debian:9", + "severity": "Medium", + "urls": [ + "https://security-tracker.debian.org/tracker/CVE-2017-15671" + ], + "description": "The glob function in glob.c in the GNU C Library (aka glibc or libc6) before 2.27, when invoked with GLOB_TILDE, could skip freeing allocated memory when processing the ~ operator with a long user name, potentially leading to a denial of service (memory leak).", + "cvss": null, + "fix": { + "versions": [ + "2.24-11+deb9u4" + ], + "state": "fixed" + }, + "advisories": null + }, + "relatedVulnerabilities": [ + { + "id": "CVE-2017-15671", + "dataSource": "https://nvd.nist.gov/vuln/detail/CVE-2017-15671", + "namespace": "nvd:cpe", + "severity": "Medium", + "urls": [ + "http://www.securityfocus.com/bid/101517", + "https://sourceware.org/bugzilla/show_bug.cgi?id=22325" + ], + "description": "The glob function in glob.c in the GNU C Library (aka glibc or libc6) before 2.27, when invoked with GLOB_TILDE, could skip freeing allocated memory when processing the ~ operator with a long user name, potentially leading to a denial of service (memory leak).", + "cvss": null + } + ], + "matchDetails": [ + { + "type": "exact-indirect-match", + "matcher": "dpkg-matcher", + "searchedBy": { + "distro": { + "type": "debian", + "version": "9" + }, + "namespace": "debian:distro:debian:9", + "package": { + "name": "glibc", + "version": "2.24-11+deb9u3" + } + }, + "found": { + "versionConstraint": "\u003c 2.24-11+deb9u4 (deb)", + "vulnerabilityID": "CVE-2017-15671" + } + } + ], + "artifact": { + "name": "multiarch-support", + "version": "2.24-11+deb9u3", + "type": "deb", + "locations": null, + "language": "", + "licenses": [ + "GPL-2.0-only", + "LGPL-2.1-only" + ], + "cpes": [ + "cpe:2.3:a:multiarch-support:multiarch-support:2.24-11+deb9u3:*:*:*:*:*:*:*", + "cpe:2.3:a:multiarch-support:multiarch_support:2.24-11+deb9u3:*:*:*:*:*:*:*", + "cpe:2.3:a:multiarch_support:multiarch-support:2.24-11+deb9u3:*:*:*:*:*:*:*", + "cpe:2.3:a:multiarch_support:multiarch_support:2.24-11+deb9u3:*:*:*:*:*:*:*", + "cpe:2.3:a:multiarch:multiarch-support:2.24-11+deb9u3:*:*:*:*:*:*:*", + "cpe:2.3:a:multiarch:multiarch_support:2.24-11+deb9u3:*:*:*:*:*:*:*" + ], + "purl": "pkg:deb/debian/multiarch-support@2.24-11+deb9u3?arch=amd64\u0026upstream=glibc\u0026distro=debian-9", + "upstreams": [ + { + "name": "glibc" + } + ], + "metadata": null + } + }, + { + "vulnerability": { + "id": "CVE-2017-15804", + "dataSource": "https://security-tracker.debian.org/tracker/CVE-2017-15804", + "namespace": "debian:distro:debian:9", + "severity": "Critical", + "urls": [ + "https://security-tracker.debian.org/tracker/CVE-2017-15804" + ], + "description": "The glob function in glob.c in the GNU C Library (aka glibc or libc6) before 2.27 contains a buffer overflow during unescaping of user names with the ~ operator.", + "cvss": null, + "fix": { + "versions": [ + "2.24-11+deb9u4" + ], + "state": "fixed" + }, + "advisories": null + }, + "relatedVulnerabilities": [ + { + "id": "CVE-2017-15804", + "dataSource": "https://nvd.nist.gov/vuln/detail/CVE-2017-15804", + "namespace": "nvd:cpe", + "severity": "Critical", + "urls": [ + "http://www.securityfocus.com/bid/101535", + "https://access.redhat.com/errata/RHSA-2018:0805", + "https://access.redhat.com/errata/RHSA-2018:1879", + "https://sourceware.org/bugzilla/show_bug.cgi?id=22332", + "https://sourceware.org/git/gitweb.cgi?p=glibc.git;a=commit;h=a159b53fa059947cc2548e3b0d5bdcf7b9630ba8" + ], + "description": "The glob function in glob.c in the GNU C Library (aka glibc or libc6) before 2.27 contains a buffer overflow during unescaping of user names with the ~ operator.", + "cvss": null + } + ], + "matchDetails": [ + { + "type": "exact-indirect-match", + "matcher": "dpkg-matcher", + "searchedBy": { + "distro": { + "type": "debian", + "version": "9" + }, + "namespace": "debian:distro:debian:9", + "package": { + "name": "glibc", + "version": "2.24-11+deb9u3" + } + }, + "found": { + "versionConstraint": "\u003c 2.24-11+deb9u4 (deb)", + "vulnerabilityID": "CVE-2017-15804" + } + } + ], + "artifact": { + "name": "libc-bin", + "version": "2.24-11+deb9u3", + "type": "deb", + "locations": null, + "language": "", + "licenses": [ + "GPL-2.0-only", + "LGPL-2.1-only" + ], + "cpes": [ + "cpe:2.3:a:libc-bin:libc-bin:2.24-11+deb9u3:*:*:*:*:*:*:*", + "cpe:2.3:a:libc-bin:libc_bin:2.24-11+deb9u3:*:*:*:*:*:*:*", + "cpe:2.3:a:libc_bin:libc-bin:2.24-11+deb9u3:*:*:*:*:*:*:*", + "cpe:2.3:a:libc_bin:libc_bin:2.24-11+deb9u3:*:*:*:*:*:*:*", + "cpe:2.3:a:libc:libc-bin:2.24-11+deb9u3:*:*:*:*:*:*:*", + "cpe:2.3:a:libc:libc_bin:2.24-11+deb9u3:*:*:*:*:*:*:*" + ], + "purl": "pkg:deb/debian/libc-bin@2.24-11+deb9u3?arch=amd64\u0026upstream=glibc\u0026distro=debian-9", + "upstreams": [ + { + "name": "glibc" + } + ], + "metadata": null + } + }, + { + "vulnerability": { + "id": "CVE-2017-15804", + "dataSource": "https://security-tracker.debian.org/tracker/CVE-2017-15804", + "namespace": "debian:distro:debian:9", + "severity": "Critical", + "urls": [ + "https://security-tracker.debian.org/tracker/CVE-2017-15804" + ], + "description": "The glob function in glob.c in the GNU C Library (aka glibc or libc6) before 2.27 contains a buffer overflow during unescaping of user names with the ~ operator.", + "cvss": null, + "fix": { + "versions": [ + "2.24-11+deb9u4" + ], + "state": "fixed" + }, + "advisories": null + }, + "relatedVulnerabilities": [ + { + "id": "CVE-2017-15804", + "dataSource": "https://nvd.nist.gov/vuln/detail/CVE-2017-15804", + "namespace": "nvd:cpe", + "severity": "Critical", + "urls": [ + "http://www.securityfocus.com/bid/101535", + "https://access.redhat.com/errata/RHSA-2018:0805", + "https://access.redhat.com/errata/RHSA-2018:1879", + "https://sourceware.org/bugzilla/show_bug.cgi?id=22332", + "https://sourceware.org/git/gitweb.cgi?p=glibc.git;a=commit;h=a159b53fa059947cc2548e3b0d5bdcf7b9630ba8" + ], + "description": "The glob function in glob.c in the GNU C Library (aka glibc or libc6) before 2.27 contains a buffer overflow during unescaping of user names with the ~ operator.", + "cvss": null + } + ], + "matchDetails": [ + { + "type": "exact-indirect-match", + "matcher": "dpkg-matcher", + "searchedBy": { + "distro": { + "type": "debian", + "version": "9" + }, + "namespace": "debian:distro:debian:9", + "package": { + "name": "glibc", + "version": "2.24-11+deb9u3" + } + }, + "found": { + "versionConstraint": "\u003c 2.24-11+deb9u4 (deb)", + "vulnerabilityID": "CVE-2017-15804" + } + } + ], + "artifact": { + "name": "libc6", + "version": "2.24-11+deb9u3", + "type": "deb", + "locations": null, + "language": "", + "licenses": [ + "GPL-2.0-only", + "LGPL-2.1-only" + ], + "cpes": [ + "cpe:2.3:a:libc6:libc6:2.24-11+deb9u3:*:*:*:*:*:*:*" + ], + "purl": "pkg:deb/debian/libc6@2.24-11+deb9u3?arch=amd64\u0026upstream=glibc\u0026distro=debian-9", + "upstreams": [ + { + "name": "glibc" + } + ], + "metadata": null + } + }, + { + "vulnerability": { + "id": "CVE-2017-15804", + "dataSource": "https://security-tracker.debian.org/tracker/CVE-2017-15804", + "namespace": "debian:distro:debian:9", + "severity": "Critical", + "urls": [ + "https://security-tracker.debian.org/tracker/CVE-2017-15804" + ], + "description": "The glob function in glob.c in the GNU C Library (aka glibc or libc6) before 2.27 contains a buffer overflow during unescaping of user names with the ~ operator.", + "cvss": null, + "fix": { + "versions": [ + "2.24-11+deb9u4" + ], + "state": "fixed" + }, + "advisories": null + }, + "relatedVulnerabilities": [ + { + "id": "CVE-2017-15804", + "dataSource": "https://nvd.nist.gov/vuln/detail/CVE-2017-15804", + "namespace": "nvd:cpe", + "severity": "Critical", + "urls": [ + "http://www.securityfocus.com/bid/101535", + "https://access.redhat.com/errata/RHSA-2018:0805", + "https://access.redhat.com/errata/RHSA-2018:1879", + "https://sourceware.org/bugzilla/show_bug.cgi?id=22332", + "https://sourceware.org/git/gitweb.cgi?p=glibc.git;a=commit;h=a159b53fa059947cc2548e3b0d5bdcf7b9630ba8" + ], + "description": "The glob function in glob.c in the GNU C Library (aka glibc or libc6) before 2.27 contains a buffer overflow during unescaping of user names with the ~ operator.", + "cvss": null + } + ], + "matchDetails": [ + { + "type": "exact-indirect-match", + "matcher": "dpkg-matcher", + "searchedBy": { + "distro": { + "type": "debian", + "version": "9" + }, + "namespace": "debian:distro:debian:9", + "package": { + "name": "glibc", + "version": "2.24-11+deb9u3" + } + }, + "found": { + "versionConstraint": "\u003c 2.24-11+deb9u4 (deb)", + "vulnerabilityID": "CVE-2017-15804" + } + } + ], + "artifact": { + "name": "multiarch-support", + "version": "2.24-11+deb9u3", + "type": "deb", + "locations": null, + "language": "", + "licenses": [ + "GPL-2.0-only", + "LGPL-2.1-only" + ], + "cpes": [ + "cpe:2.3:a:multiarch-support:multiarch-support:2.24-11+deb9u3:*:*:*:*:*:*:*", + "cpe:2.3:a:multiarch-support:multiarch_support:2.24-11+deb9u3:*:*:*:*:*:*:*", + "cpe:2.3:a:multiarch_support:multiarch-support:2.24-11+deb9u3:*:*:*:*:*:*:*", + "cpe:2.3:a:multiarch_support:multiarch_support:2.24-11+deb9u3:*:*:*:*:*:*:*", + "cpe:2.3:a:multiarch:multiarch-support:2.24-11+deb9u3:*:*:*:*:*:*:*", + "cpe:2.3:a:multiarch:multiarch_support:2.24-11+deb9u3:*:*:*:*:*:*:*" + ], + "purl": "pkg:deb/debian/multiarch-support@2.24-11+deb9u3?arch=amd64\u0026upstream=glibc\u0026distro=debian-9", + "upstreams": [ + { + "name": "glibc" + } + ], + "metadata": null + } + }, + { + "vulnerability": { + "id": "CVE-2017-16231", + "dataSource": "https://security-tracker.debian.org/tracker/CVE-2017-16231", + "namespace": "debian:distro:debian:9", + "severity": "Negligible", + "urls": [ + "https://security-tracker.debian.org/tracker/CVE-2017-16231" + ], + "description": "** DISPUTED ** In PCRE 8.41, after compiling, a pcretest load test PoC produces a crash overflow in the function match() in pcre_exec.c because of a self-recursive call. NOTE: third parties dispute the relevance of this report, noting that there are options that can be used to limit the amount of stack that is used.", + "cvss": null, + "fix": { + "versions": [], + "state": "not-fixed" + }, + "advisories": null + }, + "relatedVulnerabilities": [ + { + "id": "CVE-2017-16231", + "dataSource": "https://nvd.nist.gov/vuln/detail/CVE-2017-16231", + "namespace": "nvd:cpe", + "severity": "Medium", + "urls": [ + "http://packetstormsecurity.com/files/150897/PCRE-8.41-Buffer-Overflow.html", + "http://seclists.org/fulldisclosure/2018/Dec/33", + "http://www.openwall.com/lists/oss-security/2017/11/01/11", + "http://www.openwall.com/lists/oss-security/2017/11/01/3", + "http://www.openwall.com/lists/oss-security/2017/11/01/7", + "http://www.openwall.com/lists/oss-security/2017/11/01/8", + "http://www.securityfocus.com/bid/101688", + "https://bugs.exim.org/show_bug.cgi?id=2047" + ], + "description": "** DISPUTED ** In PCRE 8.41, after compiling, a pcretest load test PoC produces a crash overflow in the function match() in pcre_exec.c because of a self-recursive call. NOTE: third parties dispute the relevance of this report, noting that there are options that can be used to limit the amount of stack that is used.", + "cvss": null + } + ], + "matchDetails": [ + { + "type": "exact-indirect-match", + "matcher": "dpkg-matcher", + "searchedBy": { + "distro": { + "type": "debian", + "version": "9" + }, + "namespace": "debian:distro:debian:9", + "package": { + "name": "pcre3", + "version": "2:8.39-3" + } + }, + "found": { + "versionConstraint": "none (deb)", + "vulnerabilityID": "CVE-2017-16231" + } + } + ], + "artifact": { + "name": "libpcre3", + "version": "2:8.39-3", + "type": "deb", + "locations": null, + "language": "", + "licenses": [], + "cpes": [ + "cpe:2.3:a:libpcre3:libpcre3:2:8.39-3:*:*:*:*:*:*:*" + ], + "purl": "pkg:deb/debian/libpcre3@2:8.39-3?arch=amd64\u0026upstream=pcre3\u0026distro=debian-9", + "upstreams": [ + { + "name": "pcre3" + } + ], + "metadata": null + } + }, + { + "vulnerability": { + "id": "CVE-2017-16232", + "dataSource": "https://security-tracker.debian.org/tracker/CVE-2017-16232", + "namespace": "debian:distro:debian:9", + "severity": "Negligible", + "urls": [ + "https://security-tracker.debian.org/tracker/CVE-2017-16232" + ], + "description": "** DISPUTED ** LibTIFF 4.0.8 has multiple memory leak vulnerabilities, which allow attackers to cause a denial of service (memory consumption), as demonstrated by tif_open.c, tif_lzw.c, and tif_aux.c. NOTE: Third parties were unable to reproduce the issue.", + "cvss": null, + "fix": { + "versions": [], + "state": "not-fixed" + }, + "advisories": null + }, + "relatedVulnerabilities": [ + { + "id": "CVE-2017-16232", + "dataSource": "https://nvd.nist.gov/vuln/detail/CVE-2017-16232", + "namespace": "nvd:cpe", + "severity": "High", + "urls": [ + "http://lists.opensuse.org/opensuse-security-announce/2018-01/msg00036.html", + "http://lists.opensuse.org/opensuse-security-announce/2018-01/msg00041.html", + "http://packetstormsecurity.com/files/150896/LibTIFF-4.0.8-Memory-Leak.html", + "http://seclists.org/fulldisclosure/2018/Dec/32", + "http://seclists.org/fulldisclosure/2018/Dec/47", + "http://www.openwall.com/lists/oss-security/2017/11/01/11", + "http://www.openwall.com/lists/oss-security/2017/11/01/3", + "http://www.openwall.com/lists/oss-security/2017/11/01/7", + "http://www.openwall.com/lists/oss-security/2017/11/01/8", + "http://www.securityfocus.com/bid/101696" + ], + "description": "** DISPUTED ** LibTIFF 4.0.8 has multiple memory leak vulnerabilities, which allow attackers to cause a denial of service (memory consumption), as demonstrated by tif_open.c, tif_lzw.c, and tif_aux.c. NOTE: Third parties were unable to reproduce the issue.", + "cvss": null + } + ], + "matchDetails": [ + { + "type": "exact-indirect-match", + "matcher": "dpkg-matcher", + "searchedBy": { + "distro": { + "type": "debian", + "version": "9" + }, + "namespace": "debian:distro:debian:9", + "package": { + "name": "tiff", + "version": "4.0.8-2+deb9u2" + } + }, + "found": { + "versionConstraint": "none (deb)", + "vulnerabilityID": "CVE-2017-16232" + } + } + ], + "artifact": { + "name": "libtiff5", + "version": "4.0.8-2+deb9u2", + "type": "deb", + "locations": null, + "language": "", + "licenses": [ + "LicenseRef-Hylafax" + ], + "cpes": [ + "cpe:2.3:a:libtiff5:libtiff5:4.0.8-2+deb9u2:*:*:*:*:*:*:*" + ], + "purl": "pkg:deb/debian/libtiff5@4.0.8-2+deb9u2?arch=amd64\u0026upstream=tiff\u0026distro=debian-9", + "upstreams": [ + { + "name": "tiff" + } + ], + "metadata": null + } + }, + { + "vulnerability": { + "id": "CVE-2017-16932", + "dataSource": "https://security-tracker.debian.org/tracker/CVE-2017-16932", + "namespace": "debian:distro:debian:9", + "severity": "High", + "urls": [ + "https://security-tracker.debian.org/tracker/CVE-2017-16932" + ], + "description": "parser.c in libxml2 before 2.9.5 does not prevent infinite recursion in parameter entities.", + "cvss": null, + "fix": { + "versions": [ + "2.9.4+dfsg1-2.2+deb9u6" + ], + "state": "fixed" + }, + "advisories": null + }, + "relatedVulnerabilities": [ + { + "id": "CVE-2017-16932", + "dataSource": "https://nvd.nist.gov/vuln/detail/CVE-2017-16932", + "namespace": "nvd:cpe", + "severity": "High", + "urls": [ + "http://xmlsoft.org/news.html", + "https://blog.clamav.net/2018/07/clamav-01001-has-been-released.html", + "https://bugzilla.gnome.org/show_bug.cgi?id=759579", + "https://github.com/GNOME/libxml2/commit/899a5d9f0ed13b8e32449a08a361e0de127dd961", + "https://lists.apache.org/thread.html/r58af02e294bd07f487e2c64ffc0a29b837db5600e33b6e698b9d696b@%3Cissues.bookkeeper.apache.org%3E", + "https://lists.apache.org/thread.html/rf4c02775860db415b4955778a131c2795223f61cb8c6a450893651e4@%3Cissues.bookkeeper.apache.org%3E", + "https://lists.debian.org/debian-lts-announce/2017/11/msg00041.html", + "https://lists.debian.org/debian-lts-announce/2022/04/msg00004.html", + "https://usn.ubuntu.com/3739-1/" + ], + "description": "parser.c in libxml2 before 2.9.5 does not prevent infinite recursion in parameter entities.", + "cvss": null + } + ], + "matchDetails": [ + { + "type": "exact-direct-match", + "matcher": "dpkg-matcher", + "searchedBy": { + "distro": { + "type": "debian", + "version": "9" + }, + "namespace": "debian:distro:debian:9", + "package": { + "name": "libxml2", + "version": "2.9.4+dfsg1-2.2+deb9u2" + } + }, + "found": { + "versionConstraint": "\u003c 2.9.4+dfsg1-2.2+deb9u6 (deb)", + "vulnerabilityID": "CVE-2017-16932" + } + } + ], + "artifact": { + "name": "libxml2", + "version": "2.9.4+dfsg1-2.2+deb9u2", + "type": "deb", + "locations": null, + "language": "", + "licenses": [], + "cpes": [ + "cpe:2.3:a:libxml2:libxml2:2.9.4+dfsg1-2.2+deb9u2:*:*:*:*:*:*:*" + ], + "purl": "pkg:deb/debian/libxml2@2.9.4+dfsg1-2.2+deb9u2?arch=amd64\u0026distro=debian-9", + "upstreams": null, + "metadata": null + } + }, + { + "vulnerability": { + "id": "CVE-2017-16997", + "dataSource": "https://security-tracker.debian.org/tracker/CVE-2017-16997", + "namespace": "debian:distro:debian:9", + "severity": "High", + "urls": [ + "https://security-tracker.debian.org/tracker/CVE-2017-16997" + ], + "description": "elf/dl-load.c in the GNU C Library (aka glibc or libc6) 2.19 through 2.26 mishandles RPATH and RUNPATH containing $ORIGIN for a privileged (setuid or AT_SECURE) program, which allows local users to gain privileges via a Trojan horse library in the current working directory, related to the fillin_rpath and decompose_rpath functions. This is associated with misinterpretion of an empty RPATH/RUNPATH token as the \"./\" directory. NOTE: this configuration of RPATH/RUNPATH for a privileged program is apparently very uncommon; most likely, no such program is shipped with any common Linux distribution.", + "cvss": null, + "fix": { + "versions": [ + "2.24-11+deb9u4" + ], + "state": "fixed" + }, + "advisories": null + }, + "relatedVulnerabilities": [ + { + "id": "CVE-2017-16997", + "dataSource": "https://nvd.nist.gov/vuln/detail/CVE-2017-16997", + "namespace": "nvd:cpe", + "severity": "High", + "urls": [ + "http://www.securityfocus.com/bid/102228", + "https://access.redhat.com/errata/RHBA-2019:0327", + "https://access.redhat.com/errata/RHSA-2018:3092", + "https://bugs.debian.org/884615", + "https://sourceware.org/bugzilla/show_bug.cgi?id=22625", + "https://sourceware.org/ml/libc-alpha/2017-12/msg00528.html" + ], + "description": "elf/dl-load.c in the GNU C Library (aka glibc or libc6) 2.19 through 2.26 mishandles RPATH and RUNPATH containing $ORIGIN for a privileged (setuid or AT_SECURE) program, which allows local users to gain privileges via a Trojan horse library in the current working directory, related to the fillin_rpath and decompose_rpath functions. This is associated with misinterpretion of an empty RPATH/RUNPATH token as the \"./\" directory. NOTE: this configuration of RPATH/RUNPATH for a privileged program is apparently very uncommon; most likely, no such program is shipped with any common Linux distribution.", + "cvss": null + } + ], + "matchDetails": [ + { + "type": "exact-indirect-match", + "matcher": "dpkg-matcher", + "searchedBy": { + "distro": { + "type": "debian", + "version": "9" + }, + "namespace": "debian:distro:debian:9", + "package": { + "name": "glibc", + "version": "2.24-11+deb9u3" + } + }, + "found": { + "versionConstraint": "\u003c 2.24-11+deb9u4 (deb)", + "vulnerabilityID": "CVE-2017-16997" + } + } + ], + "artifact": { + "name": "libc-bin", + "version": "2.24-11+deb9u3", + "type": "deb", + "locations": null, + "language": "", + "licenses": [ + "GPL-2.0-only", + "LGPL-2.1-only" + ], + "cpes": [ + "cpe:2.3:a:libc-bin:libc-bin:2.24-11+deb9u3:*:*:*:*:*:*:*", + "cpe:2.3:a:libc-bin:libc_bin:2.24-11+deb9u3:*:*:*:*:*:*:*", + "cpe:2.3:a:libc_bin:libc-bin:2.24-11+deb9u3:*:*:*:*:*:*:*", + "cpe:2.3:a:libc_bin:libc_bin:2.24-11+deb9u3:*:*:*:*:*:*:*", + "cpe:2.3:a:libc:libc-bin:2.24-11+deb9u3:*:*:*:*:*:*:*", + "cpe:2.3:a:libc:libc_bin:2.24-11+deb9u3:*:*:*:*:*:*:*" + ], + "purl": "pkg:deb/debian/libc-bin@2.24-11+deb9u3?arch=amd64\u0026upstream=glibc\u0026distro=debian-9", + "upstreams": [ + { + "name": "glibc" + } + ], + "metadata": null + } + }, + { + "vulnerability": { + "id": "CVE-2017-16997", + "dataSource": "https://security-tracker.debian.org/tracker/CVE-2017-16997", + "namespace": "debian:distro:debian:9", + "severity": "High", + "urls": [ + "https://security-tracker.debian.org/tracker/CVE-2017-16997" + ], + "description": "elf/dl-load.c in the GNU C Library (aka glibc or libc6) 2.19 through 2.26 mishandles RPATH and RUNPATH containing $ORIGIN for a privileged (setuid or AT_SECURE) program, which allows local users to gain privileges via a Trojan horse library in the current working directory, related to the fillin_rpath and decompose_rpath functions. This is associated with misinterpretion of an empty RPATH/RUNPATH token as the \"./\" directory. NOTE: this configuration of RPATH/RUNPATH for a privileged program is apparently very uncommon; most likely, no such program is shipped with any common Linux distribution.", + "cvss": null, + "fix": { + "versions": [ + "2.24-11+deb9u4" + ], + "state": "fixed" + }, + "advisories": null + }, + "relatedVulnerabilities": [ + { + "id": "CVE-2017-16997", + "dataSource": "https://nvd.nist.gov/vuln/detail/CVE-2017-16997", + "namespace": "nvd:cpe", + "severity": "High", + "urls": [ + "http://www.securityfocus.com/bid/102228", + "https://access.redhat.com/errata/RHBA-2019:0327", + "https://access.redhat.com/errata/RHSA-2018:3092", + "https://bugs.debian.org/884615", + "https://sourceware.org/bugzilla/show_bug.cgi?id=22625", + "https://sourceware.org/ml/libc-alpha/2017-12/msg00528.html" + ], + "description": "elf/dl-load.c in the GNU C Library (aka glibc or libc6) 2.19 through 2.26 mishandles RPATH and RUNPATH containing $ORIGIN for a privileged (setuid or AT_SECURE) program, which allows local users to gain privileges via a Trojan horse library in the current working directory, related to the fillin_rpath and decompose_rpath functions. This is associated with misinterpretion of an empty RPATH/RUNPATH token as the \"./\" directory. NOTE: this configuration of RPATH/RUNPATH for a privileged program is apparently very uncommon; most likely, no such program is shipped with any common Linux distribution.", + "cvss": null + } + ], + "matchDetails": [ + { + "type": "exact-indirect-match", + "matcher": "dpkg-matcher", + "searchedBy": { + "distro": { + "type": "debian", + "version": "9" + }, + "namespace": "debian:distro:debian:9", + "package": { + "name": "glibc", + "version": "2.24-11+deb9u3" + } + }, + "found": { + "versionConstraint": "\u003c 2.24-11+deb9u4 (deb)", + "vulnerabilityID": "CVE-2017-16997" + } + } + ], + "artifact": { + "name": "libc6", + "version": "2.24-11+deb9u3", + "type": "deb", + "locations": null, + "language": "", + "licenses": [ + "GPL-2.0-only", + "LGPL-2.1-only" + ], + "cpes": [ + "cpe:2.3:a:libc6:libc6:2.24-11+deb9u3:*:*:*:*:*:*:*" + ], + "purl": "pkg:deb/debian/libc6@2.24-11+deb9u3?arch=amd64\u0026upstream=glibc\u0026distro=debian-9", + "upstreams": [ + { + "name": "glibc" + } + ], + "metadata": null + } + }, + { + "vulnerability": { + "id": "CVE-2017-16997", + "dataSource": "https://security-tracker.debian.org/tracker/CVE-2017-16997", + "namespace": "debian:distro:debian:9", + "severity": "High", + "urls": [ + "https://security-tracker.debian.org/tracker/CVE-2017-16997" + ], + "description": "elf/dl-load.c in the GNU C Library (aka glibc or libc6) 2.19 through 2.26 mishandles RPATH and RUNPATH containing $ORIGIN for a privileged (setuid or AT_SECURE) program, which allows local users to gain privileges via a Trojan horse library in the current working directory, related to the fillin_rpath and decompose_rpath functions. This is associated with misinterpretion of an empty RPATH/RUNPATH token as the \"./\" directory. NOTE: this configuration of RPATH/RUNPATH for a privileged program is apparently very uncommon; most likely, no such program is shipped with any common Linux distribution.", + "cvss": null, + "fix": { + "versions": [ + "2.24-11+deb9u4" + ], + "state": "fixed" + }, + "advisories": null + }, + "relatedVulnerabilities": [ + { + "id": "CVE-2017-16997", + "dataSource": "https://nvd.nist.gov/vuln/detail/CVE-2017-16997", + "namespace": "nvd:cpe", + "severity": "High", + "urls": [ + "http://www.securityfocus.com/bid/102228", + "https://access.redhat.com/errata/RHBA-2019:0327", + "https://access.redhat.com/errata/RHSA-2018:3092", + "https://bugs.debian.org/884615", + "https://sourceware.org/bugzilla/show_bug.cgi?id=22625", + "https://sourceware.org/ml/libc-alpha/2017-12/msg00528.html" + ], + "description": "elf/dl-load.c in the GNU C Library (aka glibc or libc6) 2.19 through 2.26 mishandles RPATH and RUNPATH containing $ORIGIN for a privileged (setuid or AT_SECURE) program, which allows local users to gain privileges via a Trojan horse library in the current working directory, related to the fillin_rpath and decompose_rpath functions. This is associated with misinterpretion of an empty RPATH/RUNPATH token as the \"./\" directory. NOTE: this configuration of RPATH/RUNPATH for a privileged program is apparently very uncommon; most likely, no such program is shipped with any common Linux distribution.", + "cvss": null + } + ], + "matchDetails": [ + { + "type": "exact-indirect-match", + "matcher": "dpkg-matcher", + "searchedBy": { + "distro": { + "type": "debian", + "version": "9" + }, + "namespace": "debian:distro:debian:9", + "package": { + "name": "glibc", + "version": "2.24-11+deb9u3" + } + }, + "found": { + "versionConstraint": "\u003c 2.24-11+deb9u4 (deb)", + "vulnerabilityID": "CVE-2017-16997" + } + } + ], + "artifact": { + "name": "multiarch-support", + "version": "2.24-11+deb9u3", + "type": "deb", + "locations": null, + "language": "", + "licenses": [ + "GPL-2.0-only", + "LGPL-2.1-only" + ], + "cpes": [ + "cpe:2.3:a:multiarch-support:multiarch-support:2.24-11+deb9u3:*:*:*:*:*:*:*", + "cpe:2.3:a:multiarch-support:multiarch_support:2.24-11+deb9u3:*:*:*:*:*:*:*", + "cpe:2.3:a:multiarch_support:multiarch-support:2.24-11+deb9u3:*:*:*:*:*:*:*", + "cpe:2.3:a:multiarch_support:multiarch_support:2.24-11+deb9u3:*:*:*:*:*:*:*", + "cpe:2.3:a:multiarch:multiarch-support:2.24-11+deb9u3:*:*:*:*:*:*:*", + "cpe:2.3:a:multiarch:multiarch_support:2.24-11+deb9u3:*:*:*:*:*:*:*" + ], + "purl": "pkg:deb/debian/multiarch-support@2.24-11+deb9u3?arch=amd64\u0026upstream=glibc\u0026distro=debian-9", + "upstreams": [ + { + "name": "glibc" + } + ], + "metadata": null + } + }, + { + "vulnerability": { + "id": "CVE-2017-17095", + "dataSource": "https://security-tracker.debian.org/tracker/CVE-2017-17095", + "namespace": "debian:distro:debian:9", + "severity": "High", + "urls": [ + "https://security-tracker.debian.org/tracker/CVE-2017-17095" + ], + "description": "tools/pal2rgb.c in pal2rgb in LibTIFF 4.0.9 allows remote attackers to cause a denial of service (TIFFSetupStrips heap-based buffer overflow and application crash) or possibly have unspecified other impact via a crafted TIFF file.", + "cvss": null, + "fix": { + "versions": [ + "4.0.8-2+deb9u4" + ], + "state": "fixed" + }, + "advisories": [ + { + "id": "DSA-4349-1", + "link": "https://security-tracker.debian.org/tracker/DSA-4349-1" + } + ] + }, + "relatedVulnerabilities": [ + { + "id": "CVE-2017-17095", + "dataSource": "https://nvd.nist.gov/vuln/detail/CVE-2017-17095", + "namespace": "nvd:cpe", + "severity": "High", + "urls": [ + "http://bugzilla.maptools.org/show_bug.cgi?id=2750", + "http://www.openwall.com/lists/oss-security/2017/11/30/3", + "http://www.securityfocus.com/bid/102124", + "https://lists.debian.org/debian-lts-announce/2019/11/msg00027.html", + "https://security.gentoo.org/glsa/202003-25", + "https://usn.ubuntu.com/3606-1/", + "https://www.debian.org/security/2018/dsa-4349", + "https://www.exploit-db.com/exploits/43322/" + ], + "description": "tools/pal2rgb.c in pal2rgb in LibTIFF 4.0.9 allows remote attackers to cause a denial of service (TIFFSetupStrips heap-based buffer overflow and application crash) or possibly have unspecified other impact via a crafted TIFF file.", + "cvss": null + } + ], + "matchDetails": [ + { + "type": "exact-indirect-match", + "matcher": "dpkg-matcher", + "searchedBy": { + "distro": { + "type": "debian", + "version": "9" + }, + "namespace": "debian:distro:debian:9", + "package": { + "name": "tiff", + "version": "4.0.8-2+deb9u2" + } + }, + "found": { + "versionConstraint": "\u003c 4.0.8-2+deb9u4 (deb)", + "vulnerabilityID": "CVE-2017-17095" + } + } + ], + "artifact": { + "name": "libtiff5", + "version": "4.0.8-2+deb9u2", + "type": "deb", + "locations": null, + "language": "", + "licenses": [ + "LicenseRef-Hylafax" + ], + "cpes": [ + "cpe:2.3:a:libtiff5:libtiff5:4.0.8-2+deb9u2:*:*:*:*:*:*:*" + ], + "purl": "pkg:deb/debian/libtiff5@4.0.8-2+deb9u2?arch=amd64\u0026upstream=tiff\u0026distro=debian-9", + "upstreams": [ + { + "name": "tiff" + } + ], + "metadata": null + } + }, + { + "vulnerability": { + "id": "CVE-2017-17973", + "dataSource": "https://security-tracker.debian.org/tracker/CVE-2017-17973", + "namespace": "debian:distro:debian:9", + "severity": "Negligible", + "urls": [ + "https://security-tracker.debian.org/tracker/CVE-2017-17973" + ], + "description": "** DISPUTED ** In LibTIFF 4.0.8, there is a heap-based use-after-free in the t2p_writeproc function in tiff2pdf.c. NOTE: there is a third-party report of inability to reproduce this issue.", + "cvss": null, + "fix": { + "versions": [], + "state": "not-fixed" + }, + "advisories": null + }, + "relatedVulnerabilities": [ + { + "id": "CVE-2017-17973", + "dataSource": "https://nvd.nist.gov/vuln/detail/CVE-2017-17973", + "namespace": "nvd:cpe", + "severity": "High", + "urls": [ + "http://bugzilla.maptools.org/show_bug.cgi?id=2769", + "http://www.securityfocus.com/bid/102331", + "https://bugzilla.novell.com/show_bug.cgi?id=1074318", + "https://bugzilla.redhat.com/show_bug.cgi?id=1530912" + ], + "description": "** DISPUTED ** In LibTIFF 4.0.8, there is a heap-based use-after-free in the t2p_writeproc function in tiff2pdf.c. NOTE: there is a third-party report of inability to reproduce this issue.", + "cvss": null + } + ], + "matchDetails": [ + { + "type": "exact-indirect-match", + "matcher": "dpkg-matcher", + "searchedBy": { + "distro": { + "type": "debian", + "version": "9" + }, + "namespace": "debian:distro:debian:9", + "package": { + "name": "tiff", + "version": "4.0.8-2+deb9u2" + } + }, + "found": { + "versionConstraint": "none (deb)", + "vulnerabilityID": "CVE-2017-17973" + } + } + ], + "artifact": { + "name": "libtiff5", + "version": "4.0.8-2+deb9u2", + "type": "deb", + "locations": null, + "language": "", + "licenses": [ + "LicenseRef-Hylafax" + ], + "cpes": [ + "cpe:2.3:a:libtiff5:libtiff5:4.0.8-2+deb9u2:*:*:*:*:*:*:*" + ], + "purl": "pkg:deb/debian/libtiff5@4.0.8-2+deb9u2?arch=amd64\u0026upstream=tiff\u0026distro=debian-9", + "upstreams": [ + { + "name": "tiff" + } + ], + "metadata": null + } + }, + { + "vulnerability": { + "id": "CVE-2017-18018", + "dataSource": "https://security-tracker.debian.org/tracker/CVE-2017-18018", + "namespace": "debian:distro:debian:9", + "severity": "Negligible", + "urls": [ + "https://security-tracker.debian.org/tracker/CVE-2017-18018" + ], + "description": "In GNU Coreutils through 8.29, chown-core.c in chown and chgrp does not prevent replacement of a plain file with a symlink during use of the POSIX \"-R -L\" options, which allows local users to modify the ownership of arbitrary files by leveraging a race condition.", + "cvss": null, + "fix": { + "versions": [], + "state": "not-fixed" + }, + "advisories": null + }, + "relatedVulnerabilities": [ + { + "id": "CVE-2017-18018", + "dataSource": "https://nvd.nist.gov/vuln/detail/CVE-2017-18018", + "namespace": "nvd:cpe", + "severity": "Medium", + "urls": [ + "http://lists.gnu.org/archive/html/coreutils/2017-12/msg00045.html" + ], + "description": "In GNU Coreutils through 8.29, chown-core.c in chown and chgrp does not prevent replacement of a plain file with a symlink during use of the POSIX \"-R -L\" options, which allows local users to modify the ownership of arbitrary files by leveraging a race condition.", + "cvss": null + } + ], + "matchDetails": [ + { + "type": "exact-direct-match", + "matcher": "dpkg-matcher", + "searchedBy": { + "distro": { + "type": "debian", + "version": "9" + }, + "namespace": "debian:distro:debian:9", + "package": { + "name": "coreutils", + "version": "8.26-3" + } + }, + "found": { + "versionConstraint": "none (deb)", + "vulnerabilityID": "CVE-2017-18018" + } + } + ], + "artifact": { + "name": "coreutils", + "version": "8.26-3", + "type": "deb", + "locations": null, + "language": "", + "licenses": [ + "GPL-3.0-only" + ], + "cpes": [ + "cpe:2.3:a:coreutils:coreutils:8.26-3:*:*:*:*:*:*:*" + ], + "purl": "pkg:deb/debian/coreutils@8.26-3?arch=amd64\u0026distro=debian-9", + "upstreams": null, + "metadata": null + } + }, + { + "vulnerability": { + "id": "CVE-2017-18078", + "dataSource": "https://security-tracker.debian.org/tracker/CVE-2017-18078", + "namespace": "debian:distro:debian:9", + "severity": "Negligible", + "urls": [ + "https://security-tracker.debian.org/tracker/CVE-2017-18078" + ], + "description": "systemd-tmpfiles in systemd before 237 attempts to support ownership/permission changes on hardlinked files even if the fs.protected_hardlinks sysctl is turned off, which allows local users to bypass intended access restrictions via vectors involving a hard link to a file for which the user lacks write access, as demonstrated by changing the ownership of the /etc/passwd file.", + "cvss": null, + "fix": { + "versions": [], + "state": "not-fixed" + }, + "advisories": null + }, + "relatedVulnerabilities": [ + { + "id": "CVE-2017-18078", + "dataSource": "https://nvd.nist.gov/vuln/detail/CVE-2017-18078", + "namespace": "nvd:cpe", + "severity": "High", + "urls": [ + "http://lists.opensuse.org/opensuse-updates/2018-02/msg00109.html", + "http://packetstormsecurity.com/files/146184/systemd-Local-Privilege-Escalation.html", + "http://www.openwall.com/lists/oss-security/2018/01/29/3", + "https://github.com/systemd/systemd/issues/7736", + "https://lists.apache.org/thread.html/r58af02e294bd07f487e2c64ffc0a29b837db5600e33b6e698b9d696b@%3Cissues.bookkeeper.apache.org%3E", + "https://lists.apache.org/thread.html/rf4c02775860db415b4955778a131c2795223f61cb8c6a450893651e4@%3Cissues.bookkeeper.apache.org%3E", + "https://lists.debian.org/debian-lts-announce/2019/04/msg00022.html", + "https://www.exploit-db.com/exploits/43935/", + "https://www.openwall.com/lists/oss-security/2018/01/29/4" + ], + "description": "systemd-tmpfiles in systemd before 237 attempts to support ownership/permission changes on hardlinked files even if the fs.protected_hardlinks sysctl is turned off, which allows local users to bypass intended access restrictions via vectors involving a hard link to a file for which the user lacks write access, as demonstrated by changing the ownership of the /etc/passwd file.", + "cvss": null + } + ], + "matchDetails": [ + { + "type": "exact-indirect-match", + "matcher": "dpkg-matcher", + "searchedBy": { + "distro": { + "type": "debian", + "version": "9" + }, + "namespace": "debian:distro:debian:9", + "package": { + "name": "systemd", + "version": "232-25+deb9u6" + } + }, + "found": { + "versionConstraint": "none (deb)", + "vulnerabilityID": "CVE-2017-18078" + } + } + ], + "artifact": { + "name": "libsystemd0", + "version": "232-25+deb9u6", + "type": "deb", + "locations": null, + "language": "", + "licenses": [ + "LicenseRef-CC0", + "LicenseRef-Expat", + "GPL-2.0-only", + "GPL-2.0-or-later", + "LGPL-2.1-only", + "LGPL-2.1-or-later", + "LicenseRef-public-domain" + ], + "cpes": [ + "cpe:2.3:a:libsystemd0:libsystemd0:232-25+deb9u6:*:*:*:*:*:*:*" + ], + "purl": "pkg:deb/debian/libsystemd0@232-25+deb9u6?arch=amd64\u0026upstream=systemd\u0026distro=debian-9", + "upstreams": [ + { + "name": "systemd" + } + ], + "metadata": null + } + }, + { + "vulnerability": { + "id": "CVE-2017-18078", + "dataSource": "https://security-tracker.debian.org/tracker/CVE-2017-18078", + "namespace": "debian:distro:debian:9", + "severity": "Negligible", + "urls": [ + "https://security-tracker.debian.org/tracker/CVE-2017-18078" + ], + "description": "systemd-tmpfiles in systemd before 237 attempts to support ownership/permission changes on hardlinked files even if the fs.protected_hardlinks sysctl is turned off, which allows local users to bypass intended access restrictions via vectors involving a hard link to a file for which the user lacks write access, as demonstrated by changing the ownership of the /etc/passwd file.", + "cvss": null, + "fix": { + "versions": [], + "state": "not-fixed" + }, + "advisories": null + }, + "relatedVulnerabilities": [ + { + "id": "CVE-2017-18078", + "dataSource": "https://nvd.nist.gov/vuln/detail/CVE-2017-18078", + "namespace": "nvd:cpe", + "severity": "High", + "urls": [ + "http://lists.opensuse.org/opensuse-updates/2018-02/msg00109.html", + "http://packetstormsecurity.com/files/146184/systemd-Local-Privilege-Escalation.html", + "http://www.openwall.com/lists/oss-security/2018/01/29/3", + "https://github.com/systemd/systemd/issues/7736", + "https://lists.apache.org/thread.html/r58af02e294bd07f487e2c64ffc0a29b837db5600e33b6e698b9d696b@%3Cissues.bookkeeper.apache.org%3E", + "https://lists.apache.org/thread.html/rf4c02775860db415b4955778a131c2795223f61cb8c6a450893651e4@%3Cissues.bookkeeper.apache.org%3E", + "https://lists.debian.org/debian-lts-announce/2019/04/msg00022.html", + "https://www.exploit-db.com/exploits/43935/", + "https://www.openwall.com/lists/oss-security/2018/01/29/4" + ], + "description": "systemd-tmpfiles in systemd before 237 attempts to support ownership/permission changes on hardlinked files even if the fs.protected_hardlinks sysctl is turned off, which allows local users to bypass intended access restrictions via vectors involving a hard link to a file for which the user lacks write access, as demonstrated by changing the ownership of the /etc/passwd file.", + "cvss": null + } + ], + "matchDetails": [ + { + "type": "exact-indirect-match", + "matcher": "dpkg-matcher", + "searchedBy": { + "distro": { + "type": "debian", + "version": "9" + }, + "namespace": "debian:distro:debian:9", + "package": { + "name": "systemd", + "version": "232-25+deb9u6" + } + }, + "found": { + "versionConstraint": "none (deb)", + "vulnerabilityID": "CVE-2017-18078" + } + } + ], + "artifact": { + "name": "libudev1", + "version": "232-25+deb9u6", + "type": "deb", + "locations": null, + "language": "", + "licenses": [ + "LicenseRef-CC0", + "LicenseRef-Expat", + "GPL-2.0-only", + "GPL-2.0-or-later", + "LGPL-2.1-only", + "LGPL-2.1-or-later", + "LicenseRef-public-domain" + ], + "cpes": [ + "cpe:2.3:a:libudev1:libudev1:232-25+deb9u6:*:*:*:*:*:*:*" + ], + "purl": "pkg:deb/debian/libudev1@232-25+deb9u6?arch=amd64\u0026upstream=systemd\u0026distro=debian-9", + "upstreams": [ + { + "name": "systemd" + } + ], + "metadata": null + } + }, + { + "vulnerability": { + "id": "CVE-2017-18258", + "dataSource": "https://security-tracker.debian.org/tracker/CVE-2017-18258", + "namespace": "debian:distro:debian:9", + "severity": "Medium", + "urls": [ + "https://security-tracker.debian.org/tracker/CVE-2017-18258" + ], + "description": "The xz_head function in xzlib.c in libxml2 before 2.9.6 allows remote attackers to cause a denial of service (memory consumption) via a crafted LZMA file, because the decoder functionality does not restrict memory usage to what is required for a legitimate file.", + "cvss": null, + "fix": { + "versions": [ + "2.9.4+dfsg1-2.2+deb9u3" + ], + "state": "fixed" + }, + "advisories": null + }, + "relatedVulnerabilities": [ + { + "id": "CVE-2017-18258", + "dataSource": "https://nvd.nist.gov/vuln/detail/CVE-2017-18258", + "namespace": "nvd:cpe", + "severity": "Medium", + "urls": [ + "https://git.gnome.org/browse/libxml2/commit/?id=e2a9122b8dde53d320750451e9907a7dcb2ca8bb", + "https://kc.mcafee.com/corporate/index?page=content\u0026id=SB10284", + "https://lists.debian.org/debian-lts-announce/2018/09/msg00035.html", + "https://lists.debian.org/debian-lts-announce/2020/09/msg00009.html", + "https://security.netapp.com/advisory/ntap-20190719-0001/", + "https://usn.ubuntu.com/3739-1/" + ], + "description": "The xz_head function in xzlib.c in libxml2 before 2.9.6 allows remote attackers to cause a denial of service (memory consumption) via a crafted LZMA file, because the decoder functionality does not restrict memory usage to what is required for a legitimate file.", + "cvss": null + } + ], + "matchDetails": [ + { + "type": "exact-direct-match", + "matcher": "dpkg-matcher", + "searchedBy": { + "distro": { + "type": "debian", + "version": "9" + }, + "namespace": "debian:distro:debian:9", + "package": { + "name": "libxml2", + "version": "2.9.4+dfsg1-2.2+deb9u2" + } + }, + "found": { + "versionConstraint": "\u003c 2.9.4+dfsg1-2.2+deb9u3 (deb)", + "vulnerabilityID": "CVE-2017-18258" + } + } + ], + "artifact": { + "name": "libxml2", + "version": "2.9.4+dfsg1-2.2+deb9u2", + "type": "deb", + "locations": null, + "language": "", + "licenses": [], + "cpes": [ + "cpe:2.3:a:libxml2:libxml2:2.9.4+dfsg1-2.2+deb9u2:*:*:*:*:*:*:*" + ], + "purl": "pkg:deb/debian/libxml2@2.9.4+dfsg1-2.2+deb9u2?arch=amd64\u0026distro=debian-9", + "upstreams": null, + "metadata": null + } + }, + { + "vulnerability": { + "id": "CVE-2017-18269", + "dataSource": "https://security-tracker.debian.org/tracker/CVE-2017-18269", + "namespace": "debian:distro:debian:9", + "severity": "Critical", + "urls": [ + "https://security-tracker.debian.org/tracker/CVE-2017-18269" + ], + "description": "An SSE2-optimized memmove implementation for i386 in sysdeps/i386/i686/multiarch/memcpy-sse2-unaligned.S in the GNU C Library (aka glibc or libc6) 2.21 through 2.27 does not correctly perform the overlapping memory check if the source memory range spans the middle of the address space, resulting in corrupt data being produced by the copy operation. This may disclose information to context-dependent attackers, or result in a denial of service, or, possibly, code execution.", + "cvss": null, + "fix": { + "versions": [ + "2.24-11+deb9u4" + ], + "state": "fixed" + }, + "advisories": null + }, + "relatedVulnerabilities": [ + { + "id": "CVE-2017-18269", + "dataSource": "https://nvd.nist.gov/vuln/detail/CVE-2017-18269", + "namespace": "nvd:cpe", + "severity": "Critical", + "urls": [ + "https://github.com/fingolfin/memmove-bug", + "https://security.netapp.com/advisory/ntap-20190329-0001/", + "https://security.netapp.com/advisory/ntap-20190401-0001/", + "https://sourceware.org/bugzilla/show_bug.cgi?id=22644", + "https://sourceware.org/git/gitweb.cgi?p=glibc.git;h=cd66c0e584c6d692bc8347b5e72723d02b8a8ada", + "https://usn.ubuntu.com/4416-1/" + ], + "description": "An SSE2-optimized memmove implementation for i386 in sysdeps/i386/i686/multiarch/memcpy-sse2-unaligned.S in the GNU C Library (aka glibc or libc6) 2.21 through 2.27 does not correctly perform the overlapping memory check if the source memory range spans the middle of the address space, resulting in corrupt data being produced by the copy operation. This may disclose information to context-dependent attackers, or result in a denial of service, or, possibly, code execution.", + "cvss": null + } + ], + "matchDetails": [ + { + "type": "exact-indirect-match", + "matcher": "dpkg-matcher", + "searchedBy": { + "distro": { + "type": "debian", + "version": "9" + }, + "namespace": "debian:distro:debian:9", + "package": { + "name": "glibc", + "version": "2.24-11+deb9u3" + } + }, + "found": { + "versionConstraint": "\u003c 2.24-11+deb9u4 (deb)", + "vulnerabilityID": "CVE-2017-18269" + } + } + ], + "artifact": { + "name": "libc-bin", + "version": "2.24-11+deb9u3", + "type": "deb", + "locations": null, + "language": "", + "licenses": [ + "GPL-2.0-only", + "LGPL-2.1-only" + ], + "cpes": [ + "cpe:2.3:a:libc-bin:libc-bin:2.24-11+deb9u3:*:*:*:*:*:*:*", + "cpe:2.3:a:libc-bin:libc_bin:2.24-11+deb9u3:*:*:*:*:*:*:*", + "cpe:2.3:a:libc_bin:libc-bin:2.24-11+deb9u3:*:*:*:*:*:*:*", + "cpe:2.3:a:libc_bin:libc_bin:2.24-11+deb9u3:*:*:*:*:*:*:*", + "cpe:2.3:a:libc:libc-bin:2.24-11+deb9u3:*:*:*:*:*:*:*", + "cpe:2.3:a:libc:libc_bin:2.24-11+deb9u3:*:*:*:*:*:*:*" + ], + "purl": "pkg:deb/debian/libc-bin@2.24-11+deb9u3?arch=amd64\u0026upstream=glibc\u0026distro=debian-9", + "upstreams": [ + { + "name": "glibc" + } + ], + "metadata": null + } + }, + { + "vulnerability": { + "id": "CVE-2017-18269", + "dataSource": "https://security-tracker.debian.org/tracker/CVE-2017-18269", + "namespace": "debian:distro:debian:9", + "severity": "Critical", + "urls": [ + "https://security-tracker.debian.org/tracker/CVE-2017-18269" + ], + "description": "An SSE2-optimized memmove implementation for i386 in sysdeps/i386/i686/multiarch/memcpy-sse2-unaligned.S in the GNU C Library (aka glibc or libc6) 2.21 through 2.27 does not correctly perform the overlapping memory check if the source memory range spans the middle of the address space, resulting in corrupt data being produced by the copy operation. This may disclose information to context-dependent attackers, or result in a denial of service, or, possibly, code execution.", + "cvss": null, + "fix": { + "versions": [ + "2.24-11+deb9u4" + ], + "state": "fixed" + }, + "advisories": null + }, + "relatedVulnerabilities": [ + { + "id": "CVE-2017-18269", + "dataSource": "https://nvd.nist.gov/vuln/detail/CVE-2017-18269", + "namespace": "nvd:cpe", + "severity": "Critical", + "urls": [ + "https://github.com/fingolfin/memmove-bug", + "https://security.netapp.com/advisory/ntap-20190329-0001/", + "https://security.netapp.com/advisory/ntap-20190401-0001/", + "https://sourceware.org/bugzilla/show_bug.cgi?id=22644", + "https://sourceware.org/git/gitweb.cgi?p=glibc.git;h=cd66c0e584c6d692bc8347b5e72723d02b8a8ada", + "https://usn.ubuntu.com/4416-1/" + ], + "description": "An SSE2-optimized memmove implementation for i386 in sysdeps/i386/i686/multiarch/memcpy-sse2-unaligned.S in the GNU C Library (aka glibc or libc6) 2.21 through 2.27 does not correctly perform the overlapping memory check if the source memory range spans the middle of the address space, resulting in corrupt data being produced by the copy operation. This may disclose information to context-dependent attackers, or result in a denial of service, or, possibly, code execution.", + "cvss": null + } + ], + "matchDetails": [ + { + "type": "exact-indirect-match", + "matcher": "dpkg-matcher", + "searchedBy": { + "distro": { + "type": "debian", + "version": "9" + }, + "namespace": "debian:distro:debian:9", + "package": { + "name": "glibc", + "version": "2.24-11+deb9u3" + } + }, + "found": { + "versionConstraint": "\u003c 2.24-11+deb9u4 (deb)", + "vulnerabilityID": "CVE-2017-18269" + } + } + ], + "artifact": { + "name": "libc6", + "version": "2.24-11+deb9u3", + "type": "deb", + "locations": null, + "language": "", + "licenses": [ + "GPL-2.0-only", + "LGPL-2.1-only" + ], + "cpes": [ + "cpe:2.3:a:libc6:libc6:2.24-11+deb9u3:*:*:*:*:*:*:*" + ], + "purl": "pkg:deb/debian/libc6@2.24-11+deb9u3?arch=amd64\u0026upstream=glibc\u0026distro=debian-9", + "upstreams": [ + { + "name": "glibc" + } + ], + "metadata": null + } + }, + { + "vulnerability": { + "id": "CVE-2017-18269", + "dataSource": "https://security-tracker.debian.org/tracker/CVE-2017-18269", + "namespace": "debian:distro:debian:9", + "severity": "Critical", + "urls": [ + "https://security-tracker.debian.org/tracker/CVE-2017-18269" + ], + "description": "An SSE2-optimized memmove implementation for i386 in sysdeps/i386/i686/multiarch/memcpy-sse2-unaligned.S in the GNU C Library (aka glibc or libc6) 2.21 through 2.27 does not correctly perform the overlapping memory check if the source memory range spans the middle of the address space, resulting in corrupt data being produced by the copy operation. This may disclose information to context-dependent attackers, or result in a denial of service, or, possibly, code execution.", + "cvss": null, + "fix": { + "versions": [ + "2.24-11+deb9u4" + ], + "state": "fixed" + }, + "advisories": null + }, + "relatedVulnerabilities": [ + { + "id": "CVE-2017-18269", + "dataSource": "https://nvd.nist.gov/vuln/detail/CVE-2017-18269", + "namespace": "nvd:cpe", + "severity": "Critical", + "urls": [ + "https://github.com/fingolfin/memmove-bug", + "https://security.netapp.com/advisory/ntap-20190329-0001/", + "https://security.netapp.com/advisory/ntap-20190401-0001/", + "https://sourceware.org/bugzilla/show_bug.cgi?id=22644", + "https://sourceware.org/git/gitweb.cgi?p=glibc.git;h=cd66c0e584c6d692bc8347b5e72723d02b8a8ada", + "https://usn.ubuntu.com/4416-1/" + ], + "description": "An SSE2-optimized memmove implementation for i386 in sysdeps/i386/i686/multiarch/memcpy-sse2-unaligned.S in the GNU C Library (aka glibc or libc6) 2.21 through 2.27 does not correctly perform the overlapping memory check if the source memory range spans the middle of the address space, resulting in corrupt data being produced by the copy operation. This may disclose information to context-dependent attackers, or result in a denial of service, or, possibly, code execution.", + "cvss": null + } + ], + "matchDetails": [ + { + "type": "exact-indirect-match", + "matcher": "dpkg-matcher", + "searchedBy": { + "distro": { + "type": "debian", + "version": "9" + }, + "namespace": "debian:distro:debian:9", + "package": { + "name": "glibc", + "version": "2.24-11+deb9u3" + } + }, + "found": { + "versionConstraint": "\u003c 2.24-11+deb9u4 (deb)", + "vulnerabilityID": "CVE-2017-18269" + } + } + ], + "artifact": { + "name": "multiarch-support", + "version": "2.24-11+deb9u3", + "type": "deb", + "locations": null, + "language": "", + "licenses": [ + "GPL-2.0-only", + "LGPL-2.1-only" + ], + "cpes": [ + "cpe:2.3:a:multiarch-support:multiarch-support:2.24-11+deb9u3:*:*:*:*:*:*:*", + "cpe:2.3:a:multiarch-support:multiarch_support:2.24-11+deb9u3:*:*:*:*:*:*:*", + "cpe:2.3:a:multiarch_support:multiarch-support:2.24-11+deb9u3:*:*:*:*:*:*:*", + "cpe:2.3:a:multiarch_support:multiarch_support:2.24-11+deb9u3:*:*:*:*:*:*:*", + "cpe:2.3:a:multiarch:multiarch-support:2.24-11+deb9u3:*:*:*:*:*:*:*", + "cpe:2.3:a:multiarch:multiarch_support:2.24-11+deb9u3:*:*:*:*:*:*:*" + ], + "purl": "pkg:deb/debian/multiarch-support@2.24-11+deb9u3?arch=amd64\u0026upstream=glibc\u0026distro=debian-9", + "upstreams": [ + { + "name": "glibc" + } + ], + "metadata": null + } + }, + { + "vulnerability": { + "id": "CVE-2017-20002", + "dataSource": "https://security-tracker.debian.org/tracker/CVE-2017-20002", + "namespace": "debian:distro:debian:9", + "severity": "High", + "urls": [ + "https://security-tracker.debian.org/tracker/CVE-2017-20002" + ], + "description": "The Debian shadow package before 1:4.5-1 for Shadow incorrectly lists pts/0 and pts/1 as physical terminals in /etc/securetty. This allows local users to login as password-less users even if they are connected by non-physical means such as SSH (hence bypassing PAM's nullok_secure configuration). This notably affects environments such as virtual machines automatically generated with a default blank root password, allowing all local users to escalate privileges.", + "cvss": null, + "fix": { + "versions": [ + "1:4.4-4.1+deb9u1" + ], + "state": "fixed" + }, + "advisories": null + }, + "relatedVulnerabilities": [ + { + "id": "CVE-2017-20002", + "dataSource": "https://nvd.nist.gov/vuln/detail/CVE-2017-20002", + "namespace": "nvd:cpe", + "severity": "High", + "urls": [ + "https://bugs.debian.org/cgi-bin/bugreport.cgi?bug=877374", + "https://bugs.debian.org/cgi-bin/bugreport.cgi?bug=914957", + "https://lists.debian.org/debian-lts-announce/2021/03/msg00020.html" + ], + "description": "The Debian shadow package before 1:4.5-1 for Shadow incorrectly lists pts/0 and pts/1 as physical terminals in /etc/securetty. This allows local users to login as password-less users even if they are connected by non-physical means such as SSH (hence bypassing PAM's nullok_secure configuration). This notably affects environments such as virtual machines automatically generated with a default blank root password, allowing all local users to escalate privileges.", + "cvss": null + } + ], + "matchDetails": [ + { + "type": "exact-indirect-match", + "matcher": "dpkg-matcher", + "searchedBy": { + "distro": { + "type": "debian", + "version": "9" + }, + "namespace": "debian:distro:debian:9", + "package": { + "name": "shadow", + "version": "1:4.4-4.1" + } + }, + "found": { + "versionConstraint": "\u003c 1:4.4-4.1+deb9u1 (deb)", + "vulnerabilityID": "CVE-2017-20002" + } + } + ], + "artifact": { + "name": "login", + "version": "1:4.4-4.1", + "type": "deb", + "locations": null, + "language": "", + "licenses": [ + "GPL-2.0-only" + ], + "cpes": [ + "cpe:2.3:a:login:login:1:4.4-4.1:*:*:*:*:*:*:*" + ], + "purl": "pkg:deb/debian/login@1:4.4-4.1?arch=amd64\u0026upstream=shadow\u0026distro=debian-9", + "upstreams": [ + { + "name": "shadow" + } + ], + "metadata": null + } + }, + { + "vulnerability": { + "id": "CVE-2017-20002", + "dataSource": "https://security-tracker.debian.org/tracker/CVE-2017-20002", + "namespace": "debian:distro:debian:9", + "severity": "High", + "urls": [ + "https://security-tracker.debian.org/tracker/CVE-2017-20002" + ], + "description": "The Debian shadow package before 1:4.5-1 for Shadow incorrectly lists pts/0 and pts/1 as physical terminals in /etc/securetty. This allows local users to login as password-less users even if they are connected by non-physical means such as SSH (hence bypassing PAM's nullok_secure configuration). This notably affects environments such as virtual machines automatically generated with a default blank root password, allowing all local users to escalate privileges.", + "cvss": null, + "fix": { + "versions": [ + "1:4.4-4.1+deb9u1" + ], + "state": "fixed" + }, + "advisories": null + }, + "relatedVulnerabilities": [ + { + "id": "CVE-2017-20002", + "dataSource": "https://nvd.nist.gov/vuln/detail/CVE-2017-20002", + "namespace": "nvd:cpe", + "severity": "High", + "urls": [ + "https://bugs.debian.org/cgi-bin/bugreport.cgi?bug=877374", + "https://bugs.debian.org/cgi-bin/bugreport.cgi?bug=914957", + "https://lists.debian.org/debian-lts-announce/2021/03/msg00020.html" + ], + "description": "The Debian shadow package before 1:4.5-1 for Shadow incorrectly lists pts/0 and pts/1 as physical terminals in /etc/securetty. This allows local users to login as password-less users even if they are connected by non-physical means such as SSH (hence bypassing PAM's nullok_secure configuration). This notably affects environments such as virtual machines automatically generated with a default blank root password, allowing all local users to escalate privileges.", + "cvss": null + } + ], + "matchDetails": [ + { + "type": "exact-indirect-match", + "matcher": "dpkg-matcher", + "searchedBy": { + "distro": { + "type": "debian", + "version": "9" + }, + "namespace": "debian:distro:debian:9", + "package": { + "name": "shadow", + "version": "1:4.4-4.1" + } + }, + "found": { + "versionConstraint": "\u003c 1:4.4-4.1+deb9u1 (deb)", + "vulnerabilityID": "CVE-2017-20002" + } + } + ], + "artifact": { + "name": "passwd", + "version": "1:4.4-4.1", + "type": "deb", + "locations": null, + "language": "", + "licenses": [ + "GPL-2.0-only" + ], + "cpes": [ + "cpe:2.3:a:passwd:passwd:1:4.4-4.1:*:*:*:*:*:*:*" + ], + "purl": "pkg:deb/debian/passwd@1:4.4-4.1?arch=amd64\u0026upstream=shadow\u0026distro=debian-9", + "upstreams": [ + { + "name": "shadow" + } + ], + "metadata": null + } + }, + { + "vulnerability": { + "id": "CVE-2017-5130", + "dataSource": "https://security-tracker.debian.org/tracker/CVE-2017-5130", + "namespace": "debian:distro:debian:9", + "severity": "High", + "urls": [ + "https://security-tracker.debian.org/tracker/CVE-2017-5130" + ], + "description": "An integer overflow in xmlmemory.c in libxml2 before 2.9.5, as used in Google Chrome prior to 62.0.3202.62 and other products, allowed a remote attacker to potentially exploit heap corruption via a crafted XML file.", + "cvss": null, + "fix": { + "versions": [ + "2.9.4+dfsg1-2.2+deb9u6" + ], + "state": "fixed" + }, + "advisories": null + }, + "relatedVulnerabilities": [ + { + "id": "CVE-2017-5130", + "dataSource": "https://nvd.nist.gov/vuln/detail/CVE-2017-5130", + "namespace": "nvd:cpe", + "severity": "High", + "urls": [ + "http://bugzilla.gnome.org/show_bug.cgi?id=783026", + "http://www.securityfocus.com/bid/101482", + "https://access.redhat.com/errata/RHSA-2017:2997", + "https://chromereleases.googleblog.com/2017/10/stable-channel-update-for-desktop.html", + "https://crbug.com/722079", + "https://git.gnome.org/browse/libxml2/commit/?id=897dffbae322b46b83f99a607d527058a72c51ed", + "https://lists.debian.org/debian-lts-announce/2017/11/msg00034.html", + "https://lists.debian.org/debian-lts-announce/2022/04/msg00004.html", + "https://security.gentoo.org/glsa/201710-24", + "https://security.netapp.com/advisory/ntap-20190719-0001/", + "https://www.oracle.com/security-alerts/cpuapr2020.html" + ], + "description": "An integer overflow in xmlmemory.c in libxml2 before 2.9.5, as used in Google Chrome prior to 62.0.3202.62 and other products, allowed a remote attacker to potentially exploit heap corruption via a crafted XML file.", + "cvss": null + } + ], + "matchDetails": [ + { + "type": "exact-direct-match", + "matcher": "dpkg-matcher", + "searchedBy": { + "distro": { + "type": "debian", + "version": "9" + }, + "namespace": "debian:distro:debian:9", + "package": { + "name": "libxml2", + "version": "2.9.4+dfsg1-2.2+deb9u2" + } + }, + "found": { + "versionConstraint": "\u003c 2.9.4+dfsg1-2.2+deb9u6 (deb)", + "vulnerabilityID": "CVE-2017-5130" + } + } + ], + "artifact": { + "name": "libxml2", + "version": "2.9.4+dfsg1-2.2+deb9u2", + "type": "deb", + "locations": null, + "language": "", + "licenses": [], + "cpes": [ + "cpe:2.3:a:libxml2:libxml2:2.9.4+dfsg1-2.2+deb9u2:*:*:*:*:*:*:*" + ], + "purl": "pkg:deb/debian/libxml2@2.9.4+dfsg1-2.2+deb9u2?arch=amd64\u0026distro=debian-9", + "upstreams": null, + "metadata": null + } + }, + { + "vulnerability": { + "id": "CVE-2017-5563", + "dataSource": "https://security-tracker.debian.org/tracker/CVE-2017-5563", + "namespace": "debian:distro:debian:9", + "severity": "Negligible", + "urls": [ + "https://security-tracker.debian.org/tracker/CVE-2017-5563" + ], + "description": "LibTIFF version 4.0.7 is vulnerable to a heap-based buffer over-read in tif_lzw.c resulting in DoS or code execution via a crafted bmp image to tools/bmp2tiff.", + "cvss": null, + "fix": { + "versions": [], + "state": "not-fixed" + }, + "advisories": null + }, + "relatedVulnerabilities": [ + { + "id": "CVE-2017-5563", + "dataSource": "https://nvd.nist.gov/vuln/detail/CVE-2017-5563", + "namespace": "nvd:cpe", + "severity": "High", + "urls": [ + "http://bugzilla.maptools.org/show_bug.cgi?id=2664", + "http://www.securityfocus.com/bid/95705", + "https://security.gentoo.org/glsa/201709-27", + "https://usn.ubuntu.com/3606-1/" + ], + "description": "LibTIFF version 4.0.7 is vulnerable to a heap-based buffer over-read in tif_lzw.c resulting in DoS or code execution via a crafted bmp image to tools/bmp2tiff.", + "cvss": null + } + ], + "matchDetails": [ + { + "type": "exact-indirect-match", + "matcher": "dpkg-matcher", + "searchedBy": { + "distro": { + "type": "debian", + "version": "9" + }, + "namespace": "debian:distro:debian:9", + "package": { + "name": "tiff", + "version": "4.0.8-2+deb9u2" + } + }, + "found": { + "versionConstraint": "none (deb)", + "vulnerabilityID": "CVE-2017-5563" + } + } + ], + "artifact": { + "name": "libtiff5", + "version": "4.0.8-2+deb9u2", + "type": "deb", + "locations": null, + "language": "", + "licenses": [ + "LicenseRef-Hylafax" + ], + "cpes": [ + "cpe:2.3:a:libtiff5:libtiff5:4.0.8-2+deb9u2:*:*:*:*:*:*:*" + ], + "purl": "pkg:deb/debian/libtiff5@4.0.8-2+deb9u2?arch=amd64\u0026upstream=tiff\u0026distro=debian-9", + "upstreams": [ + { + "name": "tiff" + } + ], + "metadata": null + } + }, + { + "vulnerability": { + "id": "CVE-2017-5969", + "dataSource": "https://security-tracker.debian.org/tracker/CVE-2017-5969", + "namespace": "debian:distro:debian:9", + "severity": "Medium", + "urls": [ + "https://security-tracker.debian.org/tracker/CVE-2017-5969" + ], + "description": "** DISPUTED ** libxml2 2.9.4, when used in recover mode, allows remote attackers to cause a denial of service (NULL pointer dereference) via a crafted XML document. NOTE: The maintainer states \"I would disagree of a CVE with the Recover parsing option which should only be used for manual recovery at least for XML parser.\"", + "cvss": null, + "fix": { + "versions": [ + "2.9.4+dfsg1-2.2+deb9u6" + ], + "state": "fixed" + }, + "advisories": null + }, + "relatedVulnerabilities": [ + { + "id": "CVE-2017-5969", + "dataSource": "https://nvd.nist.gov/vuln/detail/CVE-2017-5969", + "namespace": "nvd:cpe", + "severity": "Medium", + "urls": [ + "http://www.openwall.com/lists/oss-security/2016/11/05/3", + "http://www.openwall.com/lists/oss-security/2017/02/13/1", + "http://www.securityfocus.com/bid/96188", + "https://bugzilla.gnome.org/show_bug.cgi?id=778519", + "https://lists.debian.org/debian-lts-announce/2022/04/msg00004.html", + "https://security.gentoo.org/glsa/201711-01" + ], + "description": "** DISPUTED ** libxml2 2.9.4, when used in recover mode, allows remote attackers to cause a denial of service (NULL pointer dereference) via a crafted XML document. NOTE: The maintainer states \"I would disagree of a CVE with the Recover parsing option which should only be used for manual recovery at least for XML parser.\"", + "cvss": null + } + ], + "matchDetails": [ + { + "type": "exact-direct-match", + "matcher": "dpkg-matcher", + "searchedBy": { + "distro": { + "type": "debian", + "version": "9" + }, + "namespace": "debian:distro:debian:9", + "package": { + "name": "libxml2", + "version": "2.9.4+dfsg1-2.2+deb9u2" + } + }, + "found": { + "versionConstraint": "\u003c 2.9.4+dfsg1-2.2+deb9u6 (deb)", + "vulnerabilityID": "CVE-2017-5969" + } + } + ], + "artifact": { + "name": "libxml2", + "version": "2.9.4+dfsg1-2.2+deb9u2", + "type": "deb", + "locations": null, + "language": "", + "licenses": [], + "cpes": [ + "cpe:2.3:a:libxml2:libxml2:2.9.4+dfsg1-2.2+deb9u2:*:*:*:*:*:*:*" + ], + "purl": "pkg:deb/debian/libxml2@2.9.4+dfsg1-2.2+deb9u2?arch=amd64\u0026distro=debian-9", + "upstreams": null, + "metadata": null + } + }, + { + "vulnerability": { + "id": "CVE-2017-6363", + "dataSource": "https://security-tracker.debian.org/tracker/CVE-2017-6363", + "namespace": "debian:distro:debian:9", + "severity": "High", + "urls": [ + "https://security-tracker.debian.org/tracker/CVE-2017-6363" + ], + "description": "** DISPUTED ** In the GD Graphics Library (aka LibGD) through 2.2.5, there is a heap-based buffer over-read in tiffWriter in gd_tiff.c. NOTE: the vendor says \"In my opinion this issue should not have a CVE, since the GD and GD2 formats are documented to be 'obsolete, and should only be used for development and testing purposes.'\"", + "cvss": null, + "fix": { + "versions": [], + "state": "wont-fix" + }, + "advisories": null + }, + "relatedVulnerabilities": [ + { + "id": "CVE-2017-6363", + "dataSource": "https://nvd.nist.gov/vuln/detail/CVE-2017-6363", + "namespace": "nvd:cpe", + "severity": "High", + "urls": [ + "https://github.com/libgd/libgd/issues/383" + ], + "description": "** DISPUTED ** In the GD Graphics Library (aka LibGD) through 2.2.5, there is a heap-based buffer over-read in tiffWriter in gd_tiff.c. NOTE: the vendor says \"In my opinion this issue should not have a CVE, since the GD and GD2 formats are documented to be 'obsolete, and should only be used for development and testing purposes.'\"", + "cvss": null + } + ], + "matchDetails": [ + { + "type": "exact-indirect-match", + "matcher": "dpkg-matcher", + "searchedBy": { + "distro": { + "type": "debian", + "version": "9" + }, + "namespace": "debian:distro:debian:9", + "package": { + "name": "libgd2", + "version": "2.2.4-2+deb9u3" + } + }, + "found": { + "versionConstraint": "none (deb)", + "vulnerabilityID": "CVE-2017-6363" + } + } + ], + "artifact": { + "name": "libgd3", + "version": "2.2.4-2+deb9u3", + "type": "deb", + "locations": null, + "language": "", + "licenses": [ + "BSD-3-Clause", + "LicenseRef-GAP-Makefile.in", + "LicenseRef-GAP-configure", + "GD", + "GPL-2.0-only", + "GPL-2.0-or-later", + "HPND", + "MIT", + "LicenseRef-WEBP", + "LicenseRef-XFIG" + ], + "cpes": [ + "cpe:2.3:a:libgd3:libgd3:2.2.4-2+deb9u3:*:*:*:*:*:*:*" + ], + "purl": "pkg:deb/debian/libgd3@2.2.4-2+deb9u3?arch=amd64\u0026upstream=libgd2\u0026distro=debian-9", + "upstreams": [ + { + "name": "libgd2" + } + ], + "metadata": null + } + }, + { + "vulnerability": { + "id": "CVE-2017-7245", + "dataSource": "https://security-tracker.debian.org/tracker/CVE-2017-7245", + "namespace": "debian:distro:debian:9", + "severity": "Negligible", + "urls": [ + "https://security-tracker.debian.org/tracker/CVE-2017-7245" + ], + "description": "Stack-based buffer overflow in the pcre32_copy_substring function in pcre_get.c in libpcre1 in PCRE 8.40 allows remote attackers to cause a denial of service (WRITE of size 4) or possibly have unspecified other impact via a crafted file.", + "cvss": null, + "fix": { + "versions": [], + "state": "not-fixed" + }, + "advisories": null + }, + "relatedVulnerabilities": [ + { + "id": "CVE-2017-7245", + "dataSource": "https://nvd.nist.gov/vuln/detail/CVE-2017-7245", + "namespace": "nvd:cpe", + "severity": "High", + "urls": [ + "http://www.securityfocus.com/bid/97067", + "https://access.redhat.com/errata/RHSA-2018:2486", + "https://blogs.gentoo.org/ago/2017/03/20/libpcre-two-stack-based-buffer-overflow-write-in-pcre32_copy_substring-pcre_get-c/", + "https://security.gentoo.org/glsa/201710-25" + ], + "description": "Stack-based buffer overflow in the pcre32_copy_substring function in pcre_get.c in libpcre1 in PCRE 8.40 allows remote attackers to cause a denial of service (WRITE of size 4) or possibly have unspecified other impact via a crafted file.", + "cvss": null + } + ], + "matchDetails": [ + { + "type": "exact-indirect-match", + "matcher": "dpkg-matcher", + "searchedBy": { + "distro": { + "type": "debian", + "version": "9" + }, + "namespace": "debian:distro:debian:9", + "package": { + "name": "pcre3", + "version": "2:8.39-3" + } + }, + "found": { + "versionConstraint": "none (deb)", + "vulnerabilityID": "CVE-2017-7245" + } + } + ], + "artifact": { + "name": "libpcre3", + "version": "2:8.39-3", + "type": "deb", + "locations": null, + "language": "", + "licenses": [], + "cpes": [ + "cpe:2.3:a:libpcre3:libpcre3:2:8.39-3:*:*:*:*:*:*:*" + ], + "purl": "pkg:deb/debian/libpcre3@2:8.39-3?arch=amd64\u0026upstream=pcre3\u0026distro=debian-9", + "upstreams": [ + { + "name": "pcre3" + } + ], + "metadata": null + } + }, + { + "vulnerability": { + "id": "CVE-2017-7246", + "dataSource": "https://security-tracker.debian.org/tracker/CVE-2017-7246", + "namespace": "debian:distro:debian:9", + "severity": "Negligible", + "urls": [ + "https://security-tracker.debian.org/tracker/CVE-2017-7246" + ], + "description": "Stack-based buffer overflow in the pcre32_copy_substring function in pcre_get.c in libpcre1 in PCRE 8.40 allows remote attackers to cause a denial of service (WRITE of size 268) or possibly have unspecified other impact via a crafted file.", + "cvss": null, + "fix": { + "versions": [], + "state": "not-fixed" + }, + "advisories": null + }, + "relatedVulnerabilities": [ + { + "id": "CVE-2017-7246", + "dataSource": "https://nvd.nist.gov/vuln/detail/CVE-2017-7246", + "namespace": "nvd:cpe", + "severity": "High", + "urls": [ + "http://www.securityfocus.com/bid/97067", + "https://access.redhat.com/errata/RHSA-2018:2486", + "https://blogs.gentoo.org/ago/2017/03/20/libpcre-two-stack-based-buffer-overflow-write-in-pcre32_copy_substring-pcre_get-c/", + "https://security.gentoo.org/glsa/201710-25" + ], + "description": "Stack-based buffer overflow in the pcre32_copy_substring function in pcre_get.c in libpcre1 in PCRE 8.40 allows remote attackers to cause a denial of service (WRITE of size 268) or possibly have unspecified other impact via a crafted file.", + "cvss": null + } + ], + "matchDetails": [ + { + "type": "exact-indirect-match", + "matcher": "dpkg-matcher", + "searchedBy": { + "distro": { + "type": "debian", + "version": "9" + }, + "namespace": "debian:distro:debian:9", + "package": { + "name": "pcre3", + "version": "2:8.39-3" + } + }, + "found": { + "versionConstraint": "none (deb)", + "vulnerabilityID": "CVE-2017-7246" + } + } + ], + "artifact": { + "name": "libpcre3", + "version": "2:8.39-3", + "type": "deb", + "locations": null, + "language": "", + "licenses": [], + "cpes": [ + "cpe:2.3:a:libpcre3:libpcre3:2:8.39-3:*:*:*:*:*:*:*" + ], + "purl": "pkg:deb/debian/libpcre3@2:8.39-3?arch=amd64\u0026upstream=pcre3\u0026distro=debian-9", + "upstreams": [ + { + "name": "pcre3" + } + ], + "metadata": null + } + }, + { + "vulnerability": { + "id": "CVE-2017-8872", + "dataSource": "https://security-tracker.debian.org/tracker/CVE-2017-8872", + "namespace": "debian:distro:debian:9", + "severity": "Critical", + "urls": [ + "https://security-tracker.debian.org/tracker/CVE-2017-8872" + ], + "description": "The htmlParseTryOrFinish function in HTMLparser.c in libxml2 2.9.4 allows attackers to cause a denial of service (buffer over-read) or information disclosure.", + "cvss": null, + "fix": { + "versions": [ + "2.9.4+dfsg1-2.2+deb9u3" + ], + "state": "fixed" + }, + "advisories": null + }, + "relatedVulnerabilities": [ + { + "id": "CVE-2017-8872", + "dataSource": "https://nvd.nist.gov/vuln/detail/CVE-2017-8872", + "namespace": "nvd:cpe", + "severity": "Critical", + "urls": [ + "https://bugzilla.gnome.org/show_bug.cgi?id=775200", + "https://lists.debian.org/debian-lts-announce/2020/09/msg00009.html" + ], + "description": "The htmlParseTryOrFinish function in HTMLparser.c in libxml2 2.9.4 allows attackers to cause a denial of service (buffer over-read) or information disclosure.", + "cvss": null + } + ], + "matchDetails": [ + { + "type": "exact-direct-match", + "matcher": "dpkg-matcher", + "searchedBy": { + "distro": { + "type": "debian", + "version": "9" + }, + "namespace": "debian:distro:debian:9", + "package": { + "name": "libxml2", + "version": "2.9.4+dfsg1-2.2+deb9u2" + } + }, + "found": { + "versionConstraint": "\u003c 2.9.4+dfsg1-2.2+deb9u3 (deb)", + "vulnerabilityID": "CVE-2017-8872" + } + } + ], + "artifact": { + "name": "libxml2", + "version": "2.9.4+dfsg1-2.2+deb9u2", + "type": "deb", + "locations": null, + "language": "", + "licenses": [], + "cpes": [ + "cpe:2.3:a:libxml2:libxml2:2.9.4+dfsg1-2.2+deb9u2:*:*:*:*:*:*:*" + ], + "purl": "pkg:deb/debian/libxml2@2.9.4+dfsg1-2.2+deb9u2?arch=amd64\u0026distro=debian-9", + "upstreams": null, + "metadata": null + } + }, + { + "vulnerability": { + "id": "CVE-2017-9117", + "dataSource": "https://security-tracker.debian.org/tracker/CVE-2017-9117", + "namespace": "debian:distro:debian:9", + "severity": "Negligible", + "urls": [ + "https://security-tracker.debian.org/tracker/CVE-2017-9117" + ], + "description": "In LibTIFF 4.0.7, the program processes BMP images without verifying that biWidth and biHeight in the bitmap-information header match the actual input, leading to a heap-based buffer over-read in bmp2tiff.", + "cvss": null, + "fix": { + "versions": [], + "state": "not-fixed" + }, + "advisories": null + }, + "relatedVulnerabilities": [ + { + "id": "CVE-2017-9117", + "dataSource": "https://nvd.nist.gov/vuln/detail/CVE-2017-9117", + "namespace": "nvd:cpe", + "severity": "Critical", + "urls": [ + "http://bugzilla.maptools.org/show_bug.cgi?id=2690", + "http://www.securityfocus.com/bid/98581", + "https://usn.ubuntu.com/3606-1/" + ], + "description": "In LibTIFF 4.0.7, the program processes BMP images without verifying that biWidth and biHeight in the bitmap-information header match the actual input, leading to a heap-based buffer over-read in bmp2tiff.", + "cvss": null + } + ], + "matchDetails": [ + { + "type": "exact-indirect-match", + "matcher": "dpkg-matcher", + "searchedBy": { + "distro": { + "type": "debian", + "version": "9" + }, + "namespace": "debian:distro:debian:9", + "package": { + "name": "tiff", + "version": "4.0.8-2+deb9u2" + } + }, + "found": { + "versionConstraint": "none (deb)", + "vulnerabilityID": "CVE-2017-9117" + } + } + ], + "artifact": { + "name": "libtiff5", + "version": "4.0.8-2+deb9u2", + "type": "deb", + "locations": null, + "language": "", + "licenses": [ + "LicenseRef-Hylafax" + ], + "cpes": [ + "cpe:2.3:a:libtiff5:libtiff5:4.0.8-2+deb9u2:*:*:*:*:*:*:*" + ], + "purl": "pkg:deb/debian/libtiff5@4.0.8-2+deb9u2?arch=amd64\u0026upstream=tiff\u0026distro=debian-9", + "upstreams": [ + { + "name": "tiff" + } + ], + "metadata": null + } + }, + { + "vulnerability": { + "id": "CVE-2017-9937", + "dataSource": "https://security-tracker.debian.org/tracker/CVE-2017-9937", + "namespace": "debian:distro:debian:9", + "severity": "Negligible", + "urls": [ + "https://security-tracker.debian.org/tracker/CVE-2017-9937" + ], + "description": "In LibTIFF 4.0.8, there is a memory malloc failure in tif_jbig.c. A crafted TIFF document can lead to an abort resulting in a remote denial of service attack.", + "cvss": null, + "fix": { + "versions": [], + "state": "not-fixed" + }, + "advisories": null + }, + "relatedVulnerabilities": [ + { + "id": "CVE-2017-9937", + "dataSource": "https://nvd.nist.gov/vuln/detail/CVE-2017-9937", + "namespace": "nvd:cpe", + "severity": "Medium", + "urls": [ + "http://bugzilla.maptools.org/show_bug.cgi?id=2707", + "http://www.securityfocus.com/bid/99304", + "https://lists.apache.org/thread.html/rf9fa47ab66495c78bb4120b0754dd9531ca2ff0430f6685ac9b07772@%3Cdev.mina.apache.org%3E" + ], + "description": "In LibTIFF 4.0.8, there is a memory malloc failure in tif_jbig.c. A crafted TIFF document can lead to an abort resulting in a remote denial of service attack.", + "cvss": null + } + ], + "matchDetails": [ + { + "type": "exact-indirect-match", + "matcher": "dpkg-matcher", + "searchedBy": { + "distro": { + "type": "debian", + "version": "9" + }, + "namespace": "debian:distro:debian:9", + "package": { + "name": "jbigkit", + "version": "2.1-3.1" + } + }, + "found": { + "versionConstraint": "none (deb)", + "vulnerabilityID": "CVE-2017-9937" + } + } + ], + "artifact": { + "name": "libjbig0", + "version": "2.1-3.1+b2", + "type": "deb", + "locations": null, + "language": "", + "licenses": [ + "GPL-2.0-only", + "GPL-2.0-or-later" + ], + "cpes": [ + "cpe:2.3:a:libjbig0:libjbig0:2.1-3.1+b2:*:*:*:*:*:*:*" + ], + "purl": "pkg:deb/debian/libjbig0@2.1-3.1+b2?arch=amd64\u0026upstream=jbigkit%402.1-3.1\u0026distro=debian-9", + "upstreams": [ + { + "name": "jbigkit", + "version": "2.1-3.1" + } + ], + "metadata": null + } + }, + { + "vulnerability": { + "id": "CVE-2018-0732", + "dataSource": "https://security-tracker.debian.org/tracker/CVE-2018-0732", + "namespace": "debian:distro:debian:9", + "severity": "High", + "urls": [ + "https://security-tracker.debian.org/tracker/CVE-2018-0732" + ], + "description": "During key agreement in a TLS handshake using a DH(E) based ciphersuite a malicious server can send a very large prime value to the client. This will cause the client to spend an unreasonably long period of time generating a key for this prime resulting in a hang until the client has finished. This could be exploited in a Denial Of Service attack. Fixed in OpenSSL 1.1.0i-dev (Affected 1.1.0-1.1.0h). Fixed in OpenSSL 1.0.2p-dev (Affected 1.0.2-1.0.2o).", + "cvss": null, + "fix": { + "versions": [ + "1.1.0j-1~deb9u1" + ], + "state": "fixed" + }, + "advisories": [ + { + "id": "DSA-4348-1", + "link": "https://security-tracker.debian.org/tracker/DSA-4348-1" + } + ] + }, + "relatedVulnerabilities": [ + { + "id": "CVE-2018-0732", + "dataSource": "https://nvd.nist.gov/vuln/detail/CVE-2018-0732", + "namespace": "nvd:cpe", + "severity": "High", + "urls": [ + "http://www.oracle.com/technetwork/security-advisory/cpuoct2018-4428296.html", + "http://www.securityfocus.com/bid/104442", + "http://www.securitytracker.com/id/1041090", + "https://access.redhat.com/errata/RHSA-2018:2552", + "https://access.redhat.com/errata/RHSA-2018:2553", + "https://access.redhat.com/errata/RHSA-2018:3221", + "https://access.redhat.com/errata/RHSA-2018:3505", + "https://access.redhat.com/errata/RHSA-2019:1296", + "https://access.redhat.com/errata/RHSA-2019:1297", + "https://access.redhat.com/errata/RHSA-2019:1543", + "https://cert-portal.siemens.com/productcert/pdf/ssa-419820.pdf", + "https://git.openssl.org/gitweb/?p=openssl.git;a=commitdiff;h=3984ef0b72831da8b3ece4745cac4f8575b19098", + "https://git.openssl.org/gitweb/?p=openssl.git;a=commitdiff;h=ea7abeeabf92b7aca160bdd0208636d4da69f4f4", + "https://lists.debian.org/debian-lts-announce/2018/07/msg00043.html", + "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/EWC42UXL5GHTU5G77VKBF6JYUUNGSHOM/", + "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/Y3IVFGSERAZLNJCK35TEM2R4726XIH3Z/", + "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/ZBEV5QGDRFUZDMNECFXUSN5FMYOZDE4V/", + "https://nodejs.org/en/blog/vulnerability/august-2018-security-releases/", + "https://security.gentoo.org/glsa/201811-03", + "https://security.netapp.com/advisory/ntap-20181105-0001/", + "https://security.netapp.com/advisory/ntap-20190118-0002/", + "https://securityadvisories.paloaltonetworks.com/Home/Detail/133", + "https://usn.ubuntu.com/3692-1/", + "https://usn.ubuntu.com/3692-2/", + "https://www.debian.org/security/2018/dsa-4348", + "https://www.debian.org/security/2018/dsa-4355", + "https://www.openssl.org/news/secadv/20180612.txt", + "https://www.oracle.com/security-alerts/cpuapr2020.html", + "https://www.oracle.com/security-alerts/cpujan2021.html", + "https://www.oracle.com/technetwork/security-advisory/cpuapr2019-5072813.html", + "https://www.oracle.com/technetwork/security-advisory/cpujan2019-5072801.html", + "https://www.oracle.com/technetwork/security-advisory/cpujul2019-5072835.html", + "https://www.oracle.com/technetwork/security-advisory/cpuoct2019-5072832.html", + "https://www.tenable.com/security/tns-2018-12", + "https://www.tenable.com/security/tns-2018-13", + "https://www.tenable.com/security/tns-2018-14", + "https://www.tenable.com/security/tns-2018-17" + ], + "description": "During key agreement in a TLS handshake using a DH(E) based ciphersuite a malicious server can send a very large prime value to the client. This will cause the client to spend an unreasonably long period of time generating a key for this prime resulting in a hang until the client has finished. This could be exploited in a Denial Of Service attack. Fixed in OpenSSL 1.1.0i-dev (Affected 1.1.0-1.1.0h). Fixed in OpenSSL 1.0.2p-dev (Affected 1.0.2-1.0.2o).", + "cvss": null + } + ], + "matchDetails": [ + { + "type": "exact-indirect-match", + "matcher": "dpkg-matcher", + "searchedBy": { + "distro": { + "type": "debian", + "version": "9" + }, + "namespace": "debian:distro:debian:9", + "package": { + "name": "openssl", + "version": "1.1.0f-3+deb9u2" + } + }, + "found": { + "versionConstraint": "\u003c 1.1.0j-1~deb9u1 (deb)", + "vulnerabilityID": "CVE-2018-0732" + } + } + ], + "artifact": { + "name": "libssl1.1", + "version": "1.1.0f-3+deb9u2", + "type": "deb", + "locations": null, + "language": "", + "licenses": [], + "cpes": [ + "cpe:2.3:a:libssl1.1:libssl1.1:1.1.0f-3+deb9u2:*:*:*:*:*:*:*" + ], + "purl": "pkg:deb/debian/libssl1.1@1.1.0f-3+deb9u2?arch=amd64\u0026upstream=openssl\u0026distro=debian-9", + "upstreams": [ + { + "name": "openssl" + } + ], + "metadata": null + } + }, + { + "vulnerability": { + "id": "CVE-2018-0734", + "dataSource": "https://security-tracker.debian.org/tracker/CVE-2018-0734", + "namespace": "debian:distro:debian:9", + "severity": "Medium", + "urls": [ + "https://security-tracker.debian.org/tracker/CVE-2018-0734" + ], + "description": "The OpenSSL DSA signature algorithm has been shown to be vulnerable to a timing side channel attack. An attacker could use variations in the signing algorithm to recover the private key. Fixed in OpenSSL 1.1.1a (Affected 1.1.1). Fixed in OpenSSL 1.1.0j (Affected 1.1.0-1.1.0i). Fixed in OpenSSL 1.0.2q (Affected 1.0.2-1.0.2p).", + "cvss": null, + "fix": { + "versions": [ + "1.1.0j-1~deb9u1" + ], + "state": "fixed" + }, + "advisories": [ + { + "id": "DSA-4348-1", + "link": "https://security-tracker.debian.org/tracker/DSA-4348-1" + } + ] + }, + "relatedVulnerabilities": [ + { + "id": "CVE-2018-0734", + "dataSource": "https://nvd.nist.gov/vuln/detail/CVE-2018-0734", + "namespace": "nvd:cpe", + "severity": "Medium", + "urls": [ + "http://lists.opensuse.org/opensuse-security-announce/2019-06/msg00030.html", + "http://lists.opensuse.org/opensuse-security-announce/2019-07/msg00056.html", + "http://www.securityfocus.com/bid/105758", + "https://access.redhat.com/errata/RHSA-2019:2304", + "https://access.redhat.com/errata/RHSA-2019:3700", + "https://access.redhat.com/errata/RHSA-2019:3932", + "https://access.redhat.com/errata/RHSA-2019:3933", + "https://access.redhat.com/errata/RHSA-2019:3935", + "https://git.openssl.org/gitweb/?p=openssl.git;a=commitdiff;h=43e6a58d4991a451daf4891ff05a48735df871ac", + "https://git.openssl.org/gitweb/?p=openssl.git;a=commitdiff;h=8abfe72e8c1de1b95f50aa0d9134803b4d00070f", + "https://git.openssl.org/gitweb/?p=openssl.git;a=commitdiff;h=ef11e19d1365eea2b1851e6f540a0bf365d303e7", + "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/EWC42UXL5GHTU5G77VKBF6JYUUNGSHOM/", + "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/Y3IVFGSERAZLNJCK35TEM2R4726XIH3Z/", + "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/ZBEV5QGDRFUZDMNECFXUSN5FMYOZDE4V/", + "https://nodejs.org/en/blog/vulnerability/november-2018-security-releases/", + "https://security.netapp.com/advisory/ntap-20181105-0002/", + "https://security.netapp.com/advisory/ntap-20190118-0002/", + "https://security.netapp.com/advisory/ntap-20190423-0002/", + "https://usn.ubuntu.com/3840-1/", + "https://www.debian.org/security/2018/dsa-4348", + "https://www.debian.org/security/2018/dsa-4355", + "https://www.openssl.org/news/secadv/20181030.txt", + "https://www.oracle.com/security-alerts/cpuapr2020.html", + "https://www.oracle.com/security-alerts/cpujan2020.html", + "https://www.oracle.com/technetwork/security-advisory/cpuapr2019-5072813.html", + "https://www.oracle.com/technetwork/security-advisory/cpujan2019-5072801.html", + "https://www.oracle.com/technetwork/security-advisory/cpujul2019-5072835.html", + "https://www.tenable.com/security/tns-2018-16", + "https://www.tenable.com/security/tns-2018-17" + ], + "description": "The OpenSSL DSA signature algorithm has been shown to be vulnerable to a timing side channel attack. An attacker could use variations in the signing algorithm to recover the private key. Fixed in OpenSSL 1.1.1a (Affected 1.1.1). Fixed in OpenSSL 1.1.0j (Affected 1.1.0-1.1.0i). Fixed in OpenSSL 1.0.2q (Affected 1.0.2-1.0.2p).", + "cvss": null + } + ], + "matchDetails": [ + { + "type": "exact-indirect-match", + "matcher": "dpkg-matcher", + "searchedBy": { + "distro": { + "type": "debian", + "version": "9" + }, + "namespace": "debian:distro:debian:9", + "package": { + "name": "openssl", + "version": "1.1.0f-3+deb9u2" + } + }, + "found": { + "versionConstraint": "\u003c 1.1.0j-1~deb9u1 (deb)", + "vulnerabilityID": "CVE-2018-0734" + } + } + ], + "artifact": { + "name": "libssl1.1", + "version": "1.1.0f-3+deb9u2", + "type": "deb", + "locations": null, + "language": "", + "licenses": [], + "cpes": [ + "cpe:2.3:a:libssl1.1:libssl1.1:1.1.0f-3+deb9u2:*:*:*:*:*:*:*" + ], + "purl": "pkg:deb/debian/libssl1.1@1.1.0f-3+deb9u2?arch=amd64\u0026upstream=openssl\u0026distro=debian-9", + "upstreams": [ + { + "name": "openssl" + } + ], + "metadata": null + } + }, + { + "vulnerability": { + "id": "CVE-2018-0735", + "dataSource": "https://security-tracker.debian.org/tracker/CVE-2018-0735", + "namespace": "debian:distro:debian:9", + "severity": "Medium", + "urls": [ + "https://security-tracker.debian.org/tracker/CVE-2018-0735" + ], + "description": "The OpenSSL ECDSA signature algorithm has been shown to be vulnerable to a timing side channel attack. An attacker could use variations in the signing algorithm to recover the private key. Fixed in OpenSSL 1.1.0j (Affected 1.1.0-1.1.0i). Fixed in OpenSSL 1.1.1a (Affected 1.1.1).", + "cvss": null, + "fix": { + "versions": [ + "1.1.0j-1~deb9u1" + ], + "state": "fixed" + }, + "advisories": [ + { + "id": "DSA-4348-1", + "link": "https://security-tracker.debian.org/tracker/DSA-4348-1" + } + ] + }, + "relatedVulnerabilities": [ + { + "id": "CVE-2018-0735", + "dataSource": "https://nvd.nist.gov/vuln/detail/CVE-2018-0735", + "namespace": "nvd:cpe", + "severity": "Medium", + "urls": [ + "http://www.securityfocus.com/bid/105750", + "http://www.securitytracker.com/id/1041986", + "https://access.redhat.com/errata/RHSA-2019:3700", + "https://git.openssl.org/gitweb/?p=openssl.git;a=commitdiff;h=56fb454d281a023b3f950d969693553d3f3ceea1", + "https://git.openssl.org/gitweb/?p=openssl.git;a=commitdiff;h=b1d6d55ece1c26fa2829e2b819b038d7b6d692b4", + "https://lists.debian.org/debian-lts-announce/2018/11/msg00024.html", + "https://nodejs.org/en/blog/vulnerability/november-2018-security-releases/", + "https://security.netapp.com/advisory/ntap-20181105-0002/", + "https://usn.ubuntu.com/3840-1/", + "https://www.debian.org/security/2018/dsa-4348", + "https://www.openssl.org/news/secadv/20181029.txt", + "https://www.oracle.com/security-alerts/cpujan2020.html", + "https://www.oracle.com/technetwork/security-advisory/cpuapr2019-5072813.html", + "https://www.oracle.com/technetwork/security-advisory/cpujan2019-5072801.html", + "https://www.oracle.com/technetwork/security-advisory/cpujul2019-5072835.html" + ], + "description": "The OpenSSL ECDSA signature algorithm has been shown to be vulnerable to a timing side channel attack. An attacker could use variations in the signing algorithm to recover the private key. Fixed in OpenSSL 1.1.0j (Affected 1.1.0-1.1.0i). Fixed in OpenSSL 1.1.1a (Affected 1.1.1).", + "cvss": null + } + ], + "matchDetails": [ + { + "type": "exact-indirect-match", + "matcher": "dpkg-matcher", + "searchedBy": { + "distro": { + "type": "debian", + "version": "9" + }, + "namespace": "debian:distro:debian:9", + "package": { + "name": "openssl", + "version": "1.1.0f-3+deb9u2" + } + }, + "found": { + "versionConstraint": "\u003c 1.1.0j-1~deb9u1 (deb)", + "vulnerabilityID": "CVE-2018-0735" + } + } + ], + "artifact": { + "name": "libssl1.1", + "version": "1.1.0f-3+deb9u2", + "type": "deb", + "locations": null, + "language": "", + "licenses": [], + "cpes": [ + "cpe:2.3:a:libssl1.1:libssl1.1:1.1.0f-3+deb9u2:*:*:*:*:*:*:*" + ], + "purl": "pkg:deb/debian/libssl1.1@1.1.0f-3+deb9u2?arch=amd64\u0026upstream=openssl\u0026distro=debian-9", + "upstreams": [ + { + "name": "openssl" + } + ], + "metadata": null + } + }, + { + "vulnerability": { + "id": "CVE-2018-0737", + "dataSource": "https://security-tracker.debian.org/tracker/CVE-2018-0737", + "namespace": "debian:distro:debian:9", + "severity": "Medium", + "urls": [ + "https://security-tracker.debian.org/tracker/CVE-2018-0737" + ], + "description": "The OpenSSL RSA Key generation algorithm has been shown to be vulnerable to a cache timing side channel attack. An attacker with sufficient access to mount cache timing attacks during the RSA key generation process could recover the private key. Fixed in OpenSSL 1.1.0i-dev (Affected 1.1.0-1.1.0h). Fixed in OpenSSL 1.0.2p-dev (Affected 1.0.2b-1.0.2o).", + "cvss": null, + "fix": { + "versions": [ + "1.1.0j-1~deb9u1" + ], + "state": "fixed" + }, + "advisories": [ + { + "id": "DSA-4348-1", + "link": "https://security-tracker.debian.org/tracker/DSA-4348-1" + } + ] + }, + "relatedVulnerabilities": [ + { + "id": "CVE-2018-0737", + "dataSource": "https://nvd.nist.gov/vuln/detail/CVE-2018-0737", + "namespace": "nvd:cpe", + "severity": "Medium", + "urls": [ + "http://www.oracle.com/technetwork/security-advisory/cpuoct2018-4428296.html", + "http://www.securityfocus.com/bid/103766", + "http://www.securitytracker.com/id/1040685", + "https://access.redhat.com/errata/RHSA-2018:3221", + "https://access.redhat.com/errata/RHSA-2018:3505", + "https://access.redhat.com/errata/RHSA-2019:3932", + "https://access.redhat.com/errata/RHSA-2019:3933", + "https://access.redhat.com/errata/RHSA-2019:3935", + "https://git.openssl.org/gitweb/?p=openssl.git;a=commitdiff;h=349a41da1ad88ad87825414752a8ff5fdd6a6c3f", + "https://git.openssl.org/gitweb/?p=openssl.git;a=commitdiff;h=6939eab03a6e23d2bd2c3f5e34fe1d48e542e787", + "https://lists.debian.org/debian-lts-announce/2018/07/msg00043.html", + "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/EWC42UXL5GHTU5G77VKBF6JYUUNGSHOM/", + "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/Y3IVFGSERAZLNJCK35TEM2R4726XIH3Z/", + "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/ZBEV5QGDRFUZDMNECFXUSN5FMYOZDE4V/", + "https://nodejs.org/en/blog/vulnerability/august-2018-security-releases/", + "https://security.gentoo.org/glsa/201811-21", + "https://security.netapp.com/advisory/ntap-20180726-0003/", + "https://securityadvisories.paloaltonetworks.com/Home/Detail/133", + "https://usn.ubuntu.com/3628-1/", + "https://usn.ubuntu.com/3628-2/", + "https://usn.ubuntu.com/3692-1/", + "https://usn.ubuntu.com/3692-2/", + "https://www.debian.org/security/2018/dsa-4348", + "https://www.debian.org/security/2018/dsa-4355", + "https://www.openssl.org/news/secadv/20180416.txt", + "https://www.oracle.com//security-alerts/cpujul2021.html", + "https://www.oracle.com/security-alerts/cpuapr2020.html", + "https://www.oracle.com/technetwork/security-advisory/cpuapr2019-5072813.html", + "https://www.oracle.com/technetwork/security-advisory/cpujan2019-5072801.html", + "https://www.oracle.com/technetwork/security-advisory/cpujul2019-5072835.html", + "https://www.tenable.com/security/tns-2018-12", + "https://www.tenable.com/security/tns-2018-13", + "https://www.tenable.com/security/tns-2018-14", + "https://www.tenable.com/security/tns-2018-17" + ], + "description": "The OpenSSL RSA Key generation algorithm has been shown to be vulnerable to a cache timing side channel attack. An attacker with sufficient access to mount cache timing attacks during the RSA key generation process could recover the private key. Fixed in OpenSSL 1.1.0i-dev (Affected 1.1.0-1.1.0h). Fixed in OpenSSL 1.0.2p-dev (Affected 1.0.2b-1.0.2o).", + "cvss": null + } + ], + "matchDetails": [ + { + "type": "exact-indirect-match", + "matcher": "dpkg-matcher", + "searchedBy": { + "distro": { + "type": "debian", + "version": "9" + }, + "namespace": "debian:distro:debian:9", + "package": { + "name": "openssl", + "version": "1.1.0f-3+deb9u2" + } + }, + "found": { + "versionConstraint": "\u003c 1.1.0j-1~deb9u1 (deb)", + "vulnerabilityID": "CVE-2018-0737" + } + } + ], + "artifact": { + "name": "libssl1.1", + "version": "1.1.0f-3+deb9u2", + "type": "deb", + "locations": null, + "language": "", + "licenses": [], + "cpes": [ + "cpe:2.3:a:libssl1.1:libssl1.1:1.1.0f-3+deb9u2:*:*:*:*:*:*:*" + ], + "purl": "pkg:deb/debian/libssl1.1@1.1.0f-3+deb9u2?arch=amd64\u0026upstream=openssl\u0026distro=debian-9", + "upstreams": [ + { + "name": "openssl" + } + ], + "metadata": null + } + }, + { + "vulnerability": { + "id": "CVE-2018-1000001", + "dataSource": "https://security-tracker.debian.org/tracker/CVE-2018-1000001", + "namespace": "debian:distro:debian:9", + "severity": "High", + "urls": [ + "https://security-tracker.debian.org/tracker/CVE-2018-1000001" + ], + "description": "In glibc 2.26 and earlier there is confusion in the usage of getcwd() by realpath() which can be used to write before the destination buffer leading to a buffer underflow and potential code execution.", + "cvss": null, + "fix": { + "versions": [], + "state": "wont-fix" + }, + "advisories": null + }, + "relatedVulnerabilities": [ + { + "id": "CVE-2018-1000001", + "dataSource": "https://nvd.nist.gov/vuln/detail/CVE-2018-1000001", + "namespace": "nvd:cpe", + "severity": "High", + "urls": [ + "http://seclists.org/oss-sec/2018/q1/38", + "http://www.securityfocus.com/bid/102525", + "http://www.securitytracker.com/id/1040162", + "https://access.redhat.com/errata/RHSA-2018:0805", + "https://security.netapp.com/advisory/ntap-20190404-0003/", + "https://usn.ubuntu.com/3534-1/", + "https://usn.ubuntu.com/3536-1/", + "https://www.exploit-db.com/exploits/43775/", + "https://www.exploit-db.com/exploits/44889/", + "https://www.halfdog.net/Security/2017/LibcRealpathBufferUnderflow/" + ], + "description": "In glibc 2.26 and earlier there is confusion in the usage of getcwd() by realpath() which can be used to write before the destination buffer leading to a buffer underflow and potential code execution.", + "cvss": null + } + ], + "matchDetails": [ + { + "type": "exact-indirect-match", + "matcher": "dpkg-matcher", + "searchedBy": { + "distro": { + "type": "debian", + "version": "9" + }, + "namespace": "debian:distro:debian:9", + "package": { + "name": "glibc", + "version": "2.24-11+deb9u3" + } + }, + "found": { + "versionConstraint": "none (deb)", + "vulnerabilityID": "CVE-2018-1000001" + } + } + ], + "artifact": { + "name": "libc-bin", + "version": "2.24-11+deb9u3", + "type": "deb", + "locations": null, + "language": "", + "licenses": [ + "GPL-2.0-only", + "LGPL-2.1-only" + ], + "cpes": [ + "cpe:2.3:a:libc-bin:libc-bin:2.24-11+deb9u3:*:*:*:*:*:*:*", + "cpe:2.3:a:libc-bin:libc_bin:2.24-11+deb9u3:*:*:*:*:*:*:*", + "cpe:2.3:a:libc_bin:libc-bin:2.24-11+deb9u3:*:*:*:*:*:*:*", + "cpe:2.3:a:libc_bin:libc_bin:2.24-11+deb9u3:*:*:*:*:*:*:*", + "cpe:2.3:a:libc:libc-bin:2.24-11+deb9u3:*:*:*:*:*:*:*", + "cpe:2.3:a:libc:libc_bin:2.24-11+deb9u3:*:*:*:*:*:*:*" + ], + "purl": "pkg:deb/debian/libc-bin@2.24-11+deb9u3?arch=amd64\u0026upstream=glibc\u0026distro=debian-9", + "upstreams": [ + { + "name": "glibc" + } + ], + "metadata": null + } + }, + { + "vulnerability": { + "id": "CVE-2018-1000001", + "dataSource": "https://security-tracker.debian.org/tracker/CVE-2018-1000001", + "namespace": "debian:distro:debian:9", + "severity": "High", + "urls": [ + "https://security-tracker.debian.org/tracker/CVE-2018-1000001" + ], + "description": "In glibc 2.26 and earlier there is confusion in the usage of getcwd() by realpath() which can be used to write before the destination buffer leading to a buffer underflow and potential code execution.", + "cvss": null, + "fix": { + "versions": [], + "state": "wont-fix" + }, + "advisories": null + }, + "relatedVulnerabilities": [ + { + "id": "CVE-2018-1000001", + "dataSource": "https://nvd.nist.gov/vuln/detail/CVE-2018-1000001", + "namespace": "nvd:cpe", + "severity": "High", + "urls": [ + "http://seclists.org/oss-sec/2018/q1/38", + "http://www.securityfocus.com/bid/102525", + "http://www.securitytracker.com/id/1040162", + "https://access.redhat.com/errata/RHSA-2018:0805", + "https://security.netapp.com/advisory/ntap-20190404-0003/", + "https://usn.ubuntu.com/3534-1/", + "https://usn.ubuntu.com/3536-1/", + "https://www.exploit-db.com/exploits/43775/", + "https://www.exploit-db.com/exploits/44889/", + "https://www.halfdog.net/Security/2017/LibcRealpathBufferUnderflow/" + ], + "description": "In glibc 2.26 and earlier there is confusion in the usage of getcwd() by realpath() which can be used to write before the destination buffer leading to a buffer underflow and potential code execution.", + "cvss": null + } + ], + "matchDetails": [ + { + "type": "exact-indirect-match", + "matcher": "dpkg-matcher", + "searchedBy": { + "distro": { + "type": "debian", + "version": "9" + }, + "namespace": "debian:distro:debian:9", + "package": { + "name": "glibc", + "version": "2.24-11+deb9u3" + } + }, + "found": { + "versionConstraint": "none (deb)", + "vulnerabilityID": "CVE-2018-1000001" + } + } + ], + "artifact": { + "name": "libc6", + "version": "2.24-11+deb9u3", + "type": "deb", + "locations": null, + "language": "", + "licenses": [ + "GPL-2.0-only", + "LGPL-2.1-only" + ], + "cpes": [ + "cpe:2.3:a:libc6:libc6:2.24-11+deb9u3:*:*:*:*:*:*:*" + ], + "purl": "pkg:deb/debian/libc6@2.24-11+deb9u3?arch=amd64\u0026upstream=glibc\u0026distro=debian-9", + "upstreams": [ + { + "name": "glibc" + } + ], + "metadata": null + } + }, + { + "vulnerability": { + "id": "CVE-2018-1000001", + "dataSource": "https://security-tracker.debian.org/tracker/CVE-2018-1000001", + "namespace": "debian:distro:debian:9", + "severity": "High", + "urls": [ + "https://security-tracker.debian.org/tracker/CVE-2018-1000001" + ], + "description": "In glibc 2.26 and earlier there is confusion in the usage of getcwd() by realpath() which can be used to write before the destination buffer leading to a buffer underflow and potential code execution.", + "cvss": null, + "fix": { + "versions": [], + "state": "wont-fix" + }, + "advisories": null + }, + "relatedVulnerabilities": [ + { + "id": "CVE-2018-1000001", + "dataSource": "https://nvd.nist.gov/vuln/detail/CVE-2018-1000001", + "namespace": "nvd:cpe", + "severity": "High", + "urls": [ + "http://seclists.org/oss-sec/2018/q1/38", + "http://www.securityfocus.com/bid/102525", + "http://www.securitytracker.com/id/1040162", + "https://access.redhat.com/errata/RHSA-2018:0805", + "https://security.netapp.com/advisory/ntap-20190404-0003/", + "https://usn.ubuntu.com/3534-1/", + "https://usn.ubuntu.com/3536-1/", + "https://www.exploit-db.com/exploits/43775/", + "https://www.exploit-db.com/exploits/44889/", + "https://www.halfdog.net/Security/2017/LibcRealpathBufferUnderflow/" + ], + "description": "In glibc 2.26 and earlier there is confusion in the usage of getcwd() by realpath() which can be used to write before the destination buffer leading to a buffer underflow and potential code execution.", + "cvss": null + } + ], + "matchDetails": [ + { + "type": "exact-indirect-match", + "matcher": "dpkg-matcher", + "searchedBy": { + "distro": { + "type": "debian", + "version": "9" + }, + "namespace": "debian:distro:debian:9", + "package": { + "name": "glibc", + "version": "2.24-11+deb9u3" + } + }, + "found": { + "versionConstraint": "none (deb)", + "vulnerabilityID": "CVE-2018-1000001" + } + } + ], + "artifact": { + "name": "multiarch-support", + "version": "2.24-11+deb9u3", + "type": "deb", + "locations": null, + "language": "", + "licenses": [ + "GPL-2.0-only", + "LGPL-2.1-only" + ], + "cpes": [ + "cpe:2.3:a:multiarch-support:multiarch-support:2.24-11+deb9u3:*:*:*:*:*:*:*", + "cpe:2.3:a:multiarch-support:multiarch_support:2.24-11+deb9u3:*:*:*:*:*:*:*", + "cpe:2.3:a:multiarch_support:multiarch-support:2.24-11+deb9u3:*:*:*:*:*:*:*", + "cpe:2.3:a:multiarch_support:multiarch_support:2.24-11+deb9u3:*:*:*:*:*:*:*", + "cpe:2.3:a:multiarch:multiarch-support:2.24-11+deb9u3:*:*:*:*:*:*:*", + "cpe:2.3:a:multiarch:multiarch_support:2.24-11+deb9u3:*:*:*:*:*:*:*" + ], + "purl": "pkg:deb/debian/multiarch-support@2.24-11+deb9u3?arch=amd64\u0026upstream=glibc\u0026distro=debian-9", + "upstreams": [ + { + "name": "glibc" + } + ], + "metadata": null + } + }, + { + "vulnerability": { + "id": "CVE-2018-1000858", + "dataSource": "https://security-tracker.debian.org/tracker/CVE-2018-1000858", + "namespace": "debian:distro:debian:9", + "severity": "High", + "urls": [ + "https://security-tracker.debian.org/tracker/CVE-2018-1000858" + ], + "description": "GnuPG version 2.1.12 - 2.2.11 contains a Cross ite Request Forgery (CSRF) vulnerability in dirmngr that can result in Attacker controlled CSRF, Information Disclosure, DoS. This attack appear to be exploitable via Victim must perform a WKD request, e.g. enter an email address in the composer window of Thunderbird/Enigmail. This vulnerability appears to have been fixed in after commit 4a4bb874f63741026bd26264c43bb32b1099f060.", + "cvss": null, + "fix": { + "versions": [], + "state": "wont-fix" + }, + "advisories": null + }, + "relatedVulnerabilities": [ + { + "id": "CVE-2018-1000858", + "dataSource": "https://nvd.nist.gov/vuln/detail/CVE-2018-1000858", + "namespace": "nvd:cpe", + "severity": "High", + "urls": [ + "https://sektioneins.de/en/advisories/advisory-012018-gnupg-wkd.html", + "https://sektioneins.de/en/blog/18-11-23-gnupg-wkd.html", + "https://usn.ubuntu.com/3853-1/" + ], + "description": "GnuPG version 2.1.12 - 2.2.11 contains a Cross ite Request Forgery (CSRF) vulnerability in dirmngr that can result in Attacker controlled CSRF, Information Disclosure, DoS. This attack appear to be exploitable via Victim must perform a WKD request, e.g. enter an email address in the composer window of Thunderbird/Enigmail. This vulnerability appears to have been fixed in after commit 4a4bb874f63741026bd26264c43bb32b1099f060.", + "cvss": null + } + ], + "matchDetails": [ + { + "type": "exact-indirect-match", + "matcher": "dpkg-matcher", + "searchedBy": { + "distro": { + "type": "debian", + "version": "9" + }, + "namespace": "debian:distro:debian:9", + "package": { + "name": "gnupg2", + "version": "2.1.18-8~deb9u3" + } + }, + "found": { + "versionConstraint": "none (deb)", + "vulnerabilityID": "CVE-2018-1000858" + } + } + ], + "artifact": { + "name": "gpgv", + "version": "2.1.18-8~deb9u3", + "type": "deb", + "locations": null, + "language": "", + "licenses": [ + "BSD-3-Clause", + "LicenseRef-Expat", + "GPL-3.0-only", + "GPL-3.0-or-later", + "LGPL-2.1-only", + "LGPL-2.1-or-later", + "LGPL-3.0-only", + "LGPL-3.0-or-later", + "LicenseRef-RFC-Reference", + "LicenseRef-TinySCHEME", + "LicenseRef-permissive" + ], + "cpes": [ + "cpe:2.3:a:gpgv:gpgv:2.1.18-8~deb9u3:*:*:*:*:*:*:*" + ], + "purl": "pkg:deb/debian/gpgv@2.1.18-8~deb9u3?arch=amd64\u0026upstream=gnupg2\u0026distro=debian-9", + "upstreams": [ + { + "name": "gnupg2" + } + ], + "metadata": null + } + }, + { + "vulnerability": { + "id": "CVE-2018-10126", + "dataSource": "https://security-tracker.debian.org/tracker/CVE-2018-10126", + "namespace": "debian:distro:debian:9", + "severity": "Negligible", + "urls": [ + "https://security-tracker.debian.org/tracker/CVE-2018-10126" + ], + "description": "LibTIFF 4.0.9 has a NULL pointer dereference in the jpeg_fdct_16x16 function in jfdctint.c.", + "cvss": null, + "fix": { + "versions": [], + "state": "not-fixed" + }, + "advisories": null + }, + "relatedVulnerabilities": [ + { + "id": "CVE-2018-10126", + "dataSource": "https://nvd.nist.gov/vuln/detail/CVE-2018-10126", + "namespace": "nvd:cpe", + "severity": "Medium", + "urls": [ + "http://bugzilla.maptools.org/show_bug.cgi?id=2786", + "https://lists.apache.org/thread.html/rf9fa47ab66495c78bb4120b0754dd9531ca2ff0430f6685ac9b07772@%3Cdev.mina.apache.org%3E" + ], + "description": "LibTIFF 4.0.9 has a NULL pointer dereference in the jpeg_fdct_16x16 function in jfdctint.c.", + "cvss": null + } + ], + "matchDetails": [ + { + "type": "exact-indirect-match", + "matcher": "dpkg-matcher", + "searchedBy": { + "distro": { + "type": "debian", + "version": "9" + }, + "namespace": "debian:distro:debian:9", + "package": { + "name": "tiff", + "version": "4.0.8-2+deb9u2" + } + }, + "found": { + "versionConstraint": "none (deb)", + "vulnerabilityID": "CVE-2018-10126" + } + } + ], + "artifact": { + "name": "libtiff5", + "version": "4.0.8-2+deb9u2", + "type": "deb", + "locations": null, + "language": "", + "licenses": [ + "LicenseRef-Hylafax" + ], + "cpes": [ + "cpe:2.3:a:libtiff5:libtiff5:4.0.8-2+deb9u2:*:*:*:*:*:*:*" + ], + "purl": "pkg:deb/debian/libtiff5@4.0.8-2+deb9u2?arch=amd64\u0026upstream=tiff\u0026distro=debian-9", + "upstreams": [ + { + "name": "tiff" + } + ], + "metadata": null + } + }, + { + "vulnerability": { + "id": "CVE-2018-1049", + "dataSource": "https://security-tracker.debian.org/tracker/CVE-2018-1049", + "namespace": "debian:distro:debian:9", + "severity": "Medium", + "urls": [ + "https://security-tracker.debian.org/tracker/CVE-2018-1049" + ], + "description": "In systemd prior to 234 a race condition exists between .mount and .automount units such that automount requests from kernel may not be serviced by systemd resulting in kernel holding the mountpoint and any processes that try to use said mount will hang. A race condition like this may lead to denial of service, until mount points are unmounted.", + "cvss": null, + "fix": { + "versions": [ + "232-25+deb9u10" + ], + "state": "fixed" + }, + "advisories": null + }, + "relatedVulnerabilities": [ + { + "id": "CVE-2018-1049", + "dataSource": "https://nvd.nist.gov/vuln/detail/CVE-2018-1049", + "namespace": "nvd:cpe", + "severity": "Medium", + "urls": [ + "http://www.securitytracker.com/id/1041520", + "https://access.redhat.com/errata/RHSA-2018:0260", + "https://bugzilla.redhat.com/show_bug.cgi?id=1534701", + "https://lists.debian.org/debian-lts-announce/2018/11/msg00017.html", + "https://usn.ubuntu.com/3558-1/" + ], + "description": "In systemd prior to 234 a race condition exists between .mount and .automount units such that automount requests from kernel may not be serviced by systemd resulting in kernel holding the mountpoint and any processes that try to use said mount will hang. A race condition like this may lead to denial of service, until mount points are unmounted.", + "cvss": null + } + ], + "matchDetails": [ + { + "type": "exact-indirect-match", + "matcher": "dpkg-matcher", + "searchedBy": { + "distro": { + "type": "debian", + "version": "9" + }, + "namespace": "debian:distro:debian:9", + "package": { + "name": "systemd", + "version": "232-25+deb9u6" + } + }, + "found": { + "versionConstraint": "\u003c 232-25+deb9u10 (deb)", + "vulnerabilityID": "CVE-2018-1049" + } + } + ], + "artifact": { + "name": "libsystemd0", + "version": "232-25+deb9u6", + "type": "deb", + "locations": null, + "language": "", + "licenses": [ + "LicenseRef-CC0", + "LicenseRef-Expat", + "GPL-2.0-only", + "GPL-2.0-or-later", + "LGPL-2.1-only", + "LGPL-2.1-or-later", + "LicenseRef-public-domain" + ], + "cpes": [ + "cpe:2.3:a:libsystemd0:libsystemd0:232-25+deb9u6:*:*:*:*:*:*:*" + ], + "purl": "pkg:deb/debian/libsystemd0@232-25+deb9u6?arch=amd64\u0026upstream=systemd\u0026distro=debian-9", + "upstreams": [ + { + "name": "systemd" + } + ], + "metadata": null + } + }, + { + "vulnerability": { + "id": "CVE-2018-1049", + "dataSource": "https://security-tracker.debian.org/tracker/CVE-2018-1049", + "namespace": "debian:distro:debian:9", + "severity": "Medium", + "urls": [ + "https://security-tracker.debian.org/tracker/CVE-2018-1049" + ], + "description": "In systemd prior to 234 a race condition exists between .mount and .automount units such that automount requests from kernel may not be serviced by systemd resulting in kernel holding the mountpoint and any processes that try to use said mount will hang. A race condition like this may lead to denial of service, until mount points are unmounted.", + "cvss": null, + "fix": { + "versions": [ + "232-25+deb9u10" + ], + "state": "fixed" + }, + "advisories": null + }, + "relatedVulnerabilities": [ + { + "id": "CVE-2018-1049", + "dataSource": "https://nvd.nist.gov/vuln/detail/CVE-2018-1049", + "namespace": "nvd:cpe", + "severity": "Medium", + "urls": [ + "http://www.securitytracker.com/id/1041520", + "https://access.redhat.com/errata/RHSA-2018:0260", + "https://bugzilla.redhat.com/show_bug.cgi?id=1534701", + "https://lists.debian.org/debian-lts-announce/2018/11/msg00017.html", + "https://usn.ubuntu.com/3558-1/" + ], + "description": "In systemd prior to 234 a race condition exists between .mount and .automount units such that automount requests from kernel may not be serviced by systemd resulting in kernel holding the mountpoint and any processes that try to use said mount will hang. A race condition like this may lead to denial of service, until mount points are unmounted.", + "cvss": null + } + ], + "matchDetails": [ + { + "type": "exact-indirect-match", + "matcher": "dpkg-matcher", + "searchedBy": { + "distro": { + "type": "debian", + "version": "9" + }, + "namespace": "debian:distro:debian:9", + "package": { + "name": "systemd", + "version": "232-25+deb9u6" + } + }, + "found": { + "versionConstraint": "\u003c 232-25+deb9u10 (deb)", + "vulnerabilityID": "CVE-2018-1049" + } + } + ], + "artifact": { + "name": "libudev1", + "version": "232-25+deb9u6", + "type": "deb", + "locations": null, + "language": "", + "licenses": [ + "LicenseRef-CC0", + "LicenseRef-Expat", + "GPL-2.0-only", + "GPL-2.0-or-later", + "LGPL-2.1-only", + "LGPL-2.1-or-later", + "LicenseRef-public-domain" + ], + "cpes": [ + "cpe:2.3:a:libudev1:libudev1:232-25+deb9u6:*:*:*:*:*:*:*" + ], + "purl": "pkg:deb/debian/libudev1@232-25+deb9u6?arch=amd64\u0026upstream=systemd\u0026distro=debian-9", + "upstreams": [ + { + "name": "systemd" + } + ], + "metadata": null + } + }, + { + "vulnerability": { + "id": "CVE-2018-10963", + "dataSource": "https://security-tracker.debian.org/tracker/CVE-2018-10963", + "namespace": "debian:distro:debian:9", + "severity": "Medium", + "urls": [ + "https://security-tracker.debian.org/tracker/CVE-2018-10963" + ], + "description": "The TIFFWriteDirectorySec() function in tif_dirwrite.c in LibTIFF through 4.0.9 allows remote attackers to cause a denial of service (assertion failure and application crash) via a crafted file, a different vulnerability than CVE-2017-13726.", + "cvss": null, + "fix": { + "versions": [ + "4.0.8-2+deb9u4" + ], + "state": "fixed" + }, + "advisories": [ + { + "id": "DSA-4349-1", + "link": "https://security-tracker.debian.org/tracker/DSA-4349-1" + } + ] + }, + "relatedVulnerabilities": [ + { + "id": "CVE-2018-10963", + "dataSource": "https://nvd.nist.gov/vuln/detail/CVE-2018-10963", + "namespace": "nvd:cpe", + "severity": "Medium", + "urls": [ + "http://bugzilla.maptools.org/show_bug.cgi?id=2795", + "https://access.redhat.com/errata/RHSA-2019:2053", + "https://lists.debian.org/debian-lts-announce/2018/07/msg00002.html", + "https://usn.ubuntu.com/3864-1/", + "https://www.debian.org/security/2018/dsa-4349" + ], + "description": "The TIFFWriteDirectorySec() function in tif_dirwrite.c in LibTIFF through 4.0.9 allows remote attackers to cause a denial of service (assertion failure and application crash) via a crafted file, a different vulnerability than CVE-2017-13726.", + "cvss": null + } + ], + "matchDetails": [ + { + "type": "exact-indirect-match", + "matcher": "dpkg-matcher", + "searchedBy": { + "distro": { + "type": "debian", + "version": "9" + }, + "namespace": "debian:distro:debian:9", + "package": { + "name": "tiff", + "version": "4.0.8-2+deb9u2" + } + }, + "found": { + "versionConstraint": "\u003c 4.0.8-2+deb9u4 (deb)", + "vulnerabilityID": "CVE-2018-10963" + } + } + ], + "artifact": { + "name": "libtiff5", + "version": "4.0.8-2+deb9u2", + "type": "deb", + "locations": null, + "language": "", + "licenses": [ + "LicenseRef-Hylafax" + ], + "cpes": [ + "cpe:2.3:a:libtiff5:libtiff5:4.0.8-2+deb9u2:*:*:*:*:*:*:*" + ], + "purl": "pkg:deb/debian/libtiff5@4.0.8-2+deb9u2?arch=amd64\u0026upstream=tiff\u0026distro=debian-9", + "upstreams": [ + { + "name": "tiff" + } + ], + "metadata": null + } + }, + { + "vulnerability": { + "id": "CVE-2018-11236", + "dataSource": "https://security-tracker.debian.org/tracker/CVE-2018-11236", + "namespace": "debian:distro:debian:9", + "severity": "Critical", + "urls": [ + "https://security-tracker.debian.org/tracker/CVE-2018-11236" + ], + "description": "stdlib/canonicalize.c in the GNU C Library (aka glibc or libc6) 2.27 and earlier, when processing very long pathname arguments to the realpath function, could encounter an integer overflow on 32-bit architectures, leading to a stack-based buffer overflow and, potentially, arbitrary code execution.", + "cvss": null, + "fix": { + "versions": [ + "2.24-11+deb9u4" + ], + "state": "fixed" + }, + "advisories": null + }, + "relatedVulnerabilities": [ + { + "id": "CVE-2018-11236", + "dataSource": "https://nvd.nist.gov/vuln/detail/CVE-2018-11236", + "namespace": "nvd:cpe", + "severity": "Critical", + "urls": [ + "http://www.securityfocus.com/bid/104255", + "https://access.redhat.com/errata/RHBA-2019:0327", + "https://access.redhat.com/errata/RHSA-2018:3092", + "https://security.netapp.com/advisory/ntap-20190401-0001/", + "https://sourceware.org/bugzilla/show_bug.cgi?id=22786", + "https://sourceware.org/git/gitweb.cgi?p=glibc.git;h=5460617d1567657621107d895ee2dd83bc1f88f2", + "https://usn.ubuntu.com/4416-1/", + "https://www.oracle.com/technetwork/security-advisory/cpuapr2019-5072813.html" + ], + "description": "stdlib/canonicalize.c in the GNU C Library (aka glibc or libc6) 2.27 and earlier, when processing very long pathname arguments to the realpath function, could encounter an integer overflow on 32-bit architectures, leading to a stack-based buffer overflow and, potentially, arbitrary code execution.", + "cvss": null + } + ], + "matchDetails": [ + { + "type": "exact-indirect-match", + "matcher": "dpkg-matcher", + "searchedBy": { + "distro": { + "type": "debian", + "version": "9" + }, + "namespace": "debian:distro:debian:9", + "package": { + "name": "glibc", + "version": "2.24-11+deb9u3" + } + }, + "found": { + "versionConstraint": "\u003c 2.24-11+deb9u4 (deb)", + "vulnerabilityID": "CVE-2018-11236" + } + } + ], + "artifact": { + "name": "libc-bin", + "version": "2.24-11+deb9u3", + "type": "deb", + "locations": null, + "language": "", + "licenses": [ + "GPL-2.0-only", + "LGPL-2.1-only" + ], + "cpes": [ + "cpe:2.3:a:libc-bin:libc-bin:2.24-11+deb9u3:*:*:*:*:*:*:*", + "cpe:2.3:a:libc-bin:libc_bin:2.24-11+deb9u3:*:*:*:*:*:*:*", + "cpe:2.3:a:libc_bin:libc-bin:2.24-11+deb9u3:*:*:*:*:*:*:*", + "cpe:2.3:a:libc_bin:libc_bin:2.24-11+deb9u3:*:*:*:*:*:*:*", + "cpe:2.3:a:libc:libc-bin:2.24-11+deb9u3:*:*:*:*:*:*:*", + "cpe:2.3:a:libc:libc_bin:2.24-11+deb9u3:*:*:*:*:*:*:*" + ], + "purl": "pkg:deb/debian/libc-bin@2.24-11+deb9u3?arch=amd64\u0026upstream=glibc\u0026distro=debian-9", + "upstreams": [ + { + "name": "glibc" + } + ], + "metadata": null + } + }, + { + "vulnerability": { + "id": "CVE-2018-11236", + "dataSource": "https://security-tracker.debian.org/tracker/CVE-2018-11236", + "namespace": "debian:distro:debian:9", + "severity": "Critical", + "urls": [ + "https://security-tracker.debian.org/tracker/CVE-2018-11236" + ], + "description": "stdlib/canonicalize.c in the GNU C Library (aka glibc or libc6) 2.27 and earlier, when processing very long pathname arguments to the realpath function, could encounter an integer overflow on 32-bit architectures, leading to a stack-based buffer overflow and, potentially, arbitrary code execution.", + "cvss": null, + "fix": { + "versions": [ + "2.24-11+deb9u4" + ], + "state": "fixed" + }, + "advisories": null + }, + "relatedVulnerabilities": [ + { + "id": "CVE-2018-11236", + "dataSource": "https://nvd.nist.gov/vuln/detail/CVE-2018-11236", + "namespace": "nvd:cpe", + "severity": "Critical", + "urls": [ + "http://www.securityfocus.com/bid/104255", + "https://access.redhat.com/errata/RHBA-2019:0327", + "https://access.redhat.com/errata/RHSA-2018:3092", + "https://security.netapp.com/advisory/ntap-20190401-0001/", + "https://sourceware.org/bugzilla/show_bug.cgi?id=22786", + "https://sourceware.org/git/gitweb.cgi?p=glibc.git;h=5460617d1567657621107d895ee2dd83bc1f88f2", + "https://usn.ubuntu.com/4416-1/", + "https://www.oracle.com/technetwork/security-advisory/cpuapr2019-5072813.html" + ], + "description": "stdlib/canonicalize.c in the GNU C Library (aka glibc or libc6) 2.27 and earlier, when processing very long pathname arguments to the realpath function, could encounter an integer overflow on 32-bit architectures, leading to a stack-based buffer overflow and, potentially, arbitrary code execution.", + "cvss": null + } + ], + "matchDetails": [ + { + "type": "exact-indirect-match", + "matcher": "dpkg-matcher", + "searchedBy": { + "distro": { + "type": "debian", + "version": "9" + }, + "namespace": "debian:distro:debian:9", + "package": { + "name": "glibc", + "version": "2.24-11+deb9u3" + } + }, + "found": { + "versionConstraint": "\u003c 2.24-11+deb9u4 (deb)", + "vulnerabilityID": "CVE-2018-11236" + } + } + ], + "artifact": { + "name": "libc6", + "version": "2.24-11+deb9u3", + "type": "deb", + "locations": null, + "language": "", + "licenses": [ + "GPL-2.0-only", + "LGPL-2.1-only" + ], + "cpes": [ + "cpe:2.3:a:libc6:libc6:2.24-11+deb9u3:*:*:*:*:*:*:*" + ], + "purl": "pkg:deb/debian/libc6@2.24-11+deb9u3?arch=amd64\u0026upstream=glibc\u0026distro=debian-9", + "upstreams": [ + { + "name": "glibc" + } + ], + "metadata": null + } + }, + { + "vulnerability": { + "id": "CVE-2018-11236", + "dataSource": "https://security-tracker.debian.org/tracker/CVE-2018-11236", + "namespace": "debian:distro:debian:9", + "severity": "Critical", + "urls": [ + "https://security-tracker.debian.org/tracker/CVE-2018-11236" + ], + "description": "stdlib/canonicalize.c in the GNU C Library (aka glibc or libc6) 2.27 and earlier, when processing very long pathname arguments to the realpath function, could encounter an integer overflow on 32-bit architectures, leading to a stack-based buffer overflow and, potentially, arbitrary code execution.", + "cvss": null, + "fix": { + "versions": [ + "2.24-11+deb9u4" + ], + "state": "fixed" + }, + "advisories": null + }, + "relatedVulnerabilities": [ + { + "id": "CVE-2018-11236", + "dataSource": "https://nvd.nist.gov/vuln/detail/CVE-2018-11236", + "namespace": "nvd:cpe", + "severity": "Critical", + "urls": [ + "http://www.securityfocus.com/bid/104255", + "https://access.redhat.com/errata/RHBA-2019:0327", + "https://access.redhat.com/errata/RHSA-2018:3092", + "https://security.netapp.com/advisory/ntap-20190401-0001/", + "https://sourceware.org/bugzilla/show_bug.cgi?id=22786", + "https://sourceware.org/git/gitweb.cgi?p=glibc.git;h=5460617d1567657621107d895ee2dd83bc1f88f2", + "https://usn.ubuntu.com/4416-1/", + "https://www.oracle.com/technetwork/security-advisory/cpuapr2019-5072813.html" + ], + "description": "stdlib/canonicalize.c in the GNU C Library (aka glibc or libc6) 2.27 and earlier, when processing very long pathname arguments to the realpath function, could encounter an integer overflow on 32-bit architectures, leading to a stack-based buffer overflow and, potentially, arbitrary code execution.", + "cvss": null + } + ], + "matchDetails": [ + { + "type": "exact-indirect-match", + "matcher": "dpkg-matcher", + "searchedBy": { + "distro": { + "type": "debian", + "version": "9" + }, + "namespace": "debian:distro:debian:9", + "package": { + "name": "glibc", + "version": "2.24-11+deb9u3" + } + }, + "found": { + "versionConstraint": "\u003c 2.24-11+deb9u4 (deb)", + "vulnerabilityID": "CVE-2018-11236" + } + } + ], + "artifact": { + "name": "multiarch-support", + "version": "2.24-11+deb9u3", + "type": "deb", + "locations": null, + "language": "", + "licenses": [ + "GPL-2.0-only", + "LGPL-2.1-only" + ], + "cpes": [ + "cpe:2.3:a:multiarch-support:multiarch-support:2.24-11+deb9u3:*:*:*:*:*:*:*", + "cpe:2.3:a:multiarch-support:multiarch_support:2.24-11+deb9u3:*:*:*:*:*:*:*", + "cpe:2.3:a:multiarch_support:multiarch-support:2.24-11+deb9u3:*:*:*:*:*:*:*", + "cpe:2.3:a:multiarch_support:multiarch_support:2.24-11+deb9u3:*:*:*:*:*:*:*", + "cpe:2.3:a:multiarch:multiarch-support:2.24-11+deb9u3:*:*:*:*:*:*:*", + "cpe:2.3:a:multiarch:multiarch_support:2.24-11+deb9u3:*:*:*:*:*:*:*" + ], + "purl": "pkg:deb/debian/multiarch-support@2.24-11+deb9u3?arch=amd64\u0026upstream=glibc\u0026distro=debian-9", + "upstreams": [ + { + "name": "glibc" + } + ], + "metadata": null + } + }, + { + "vulnerability": { + "id": "CVE-2018-11237", + "dataSource": "https://security-tracker.debian.org/tracker/CVE-2018-11237", + "namespace": "debian:distro:debian:9", + "severity": "High", + "urls": [ + "https://security-tracker.debian.org/tracker/CVE-2018-11237" + ], + "description": "An AVX-512-optimized implementation of the mempcpy function in the GNU C Library (aka glibc or libc6) 2.27 and earlier may write data beyond the target buffer, leading to a buffer overflow in __mempcpy_avx512_no_vzeroupper.", + "cvss": null, + "fix": { + "versions": [ + "2.24-11+deb9u4" + ], + "state": "fixed" + }, + "advisories": null + }, + "relatedVulnerabilities": [ + { + "id": "CVE-2018-11237", + "dataSource": "https://nvd.nist.gov/vuln/detail/CVE-2018-11237", + "namespace": "nvd:cpe", + "severity": "High", + "urls": [ + "http://www.securityfocus.com/bid/104256", + "https://access.redhat.com/errata/RHBA-2019:0327", + "https://access.redhat.com/errata/RHSA-2018:3092", + "https://security.netapp.com/advisory/ntap-20190401-0001/", + "https://sourceware.org/bugzilla/show_bug.cgi?id=23196", + "https://usn.ubuntu.com/4416-1/", + "https://www.exploit-db.com/exploits/44750/", + "https://www.oracle.com/technetwork/security-advisory/cpuapr2019-5072813.html" + ], + "description": "An AVX-512-optimized implementation of the mempcpy function in the GNU C Library (aka glibc or libc6) 2.27 and earlier may write data beyond the target buffer, leading to a buffer overflow in __mempcpy_avx512_no_vzeroupper.", + "cvss": null + } + ], + "matchDetails": [ + { + "type": "exact-indirect-match", + "matcher": "dpkg-matcher", + "searchedBy": { + "distro": { + "type": "debian", + "version": "9" + }, + "namespace": "debian:distro:debian:9", + "package": { + "name": "glibc", + "version": "2.24-11+deb9u3" + } + }, + "found": { + "versionConstraint": "\u003c 2.24-11+deb9u4 (deb)", + "vulnerabilityID": "CVE-2018-11237" + } + } + ], + "artifact": { + "name": "libc-bin", + "version": "2.24-11+deb9u3", + "type": "deb", + "locations": null, + "language": "", + "licenses": [ + "GPL-2.0-only", + "LGPL-2.1-only" + ], + "cpes": [ + "cpe:2.3:a:libc-bin:libc-bin:2.24-11+deb9u3:*:*:*:*:*:*:*", + "cpe:2.3:a:libc-bin:libc_bin:2.24-11+deb9u3:*:*:*:*:*:*:*", + "cpe:2.3:a:libc_bin:libc-bin:2.24-11+deb9u3:*:*:*:*:*:*:*", + "cpe:2.3:a:libc_bin:libc_bin:2.24-11+deb9u3:*:*:*:*:*:*:*", + "cpe:2.3:a:libc:libc-bin:2.24-11+deb9u3:*:*:*:*:*:*:*", + "cpe:2.3:a:libc:libc_bin:2.24-11+deb9u3:*:*:*:*:*:*:*" + ], + "purl": "pkg:deb/debian/libc-bin@2.24-11+deb9u3?arch=amd64\u0026upstream=glibc\u0026distro=debian-9", + "upstreams": [ + { + "name": "glibc" + } + ], + "metadata": null + } + }, + { + "vulnerability": { + "id": "CVE-2018-11237", + "dataSource": "https://security-tracker.debian.org/tracker/CVE-2018-11237", + "namespace": "debian:distro:debian:9", + "severity": "High", + "urls": [ + "https://security-tracker.debian.org/tracker/CVE-2018-11237" + ], + "description": "An AVX-512-optimized implementation of the mempcpy function in the GNU C Library (aka glibc or libc6) 2.27 and earlier may write data beyond the target buffer, leading to a buffer overflow in __mempcpy_avx512_no_vzeroupper.", + "cvss": null, + "fix": { + "versions": [ + "2.24-11+deb9u4" + ], + "state": "fixed" + }, + "advisories": null + }, + "relatedVulnerabilities": [ + { + "id": "CVE-2018-11237", + "dataSource": "https://nvd.nist.gov/vuln/detail/CVE-2018-11237", + "namespace": "nvd:cpe", + "severity": "High", + "urls": [ + "http://www.securityfocus.com/bid/104256", + "https://access.redhat.com/errata/RHBA-2019:0327", + "https://access.redhat.com/errata/RHSA-2018:3092", + "https://security.netapp.com/advisory/ntap-20190401-0001/", + "https://sourceware.org/bugzilla/show_bug.cgi?id=23196", + "https://usn.ubuntu.com/4416-1/", + "https://www.exploit-db.com/exploits/44750/", + "https://www.oracle.com/technetwork/security-advisory/cpuapr2019-5072813.html" + ], + "description": "An AVX-512-optimized implementation of the mempcpy function in the GNU C Library (aka glibc or libc6) 2.27 and earlier may write data beyond the target buffer, leading to a buffer overflow in __mempcpy_avx512_no_vzeroupper.", + "cvss": null + } + ], + "matchDetails": [ + { + "type": "exact-indirect-match", + "matcher": "dpkg-matcher", + "searchedBy": { + "distro": { + "type": "debian", + "version": "9" + }, + "namespace": "debian:distro:debian:9", + "package": { + "name": "glibc", + "version": "2.24-11+deb9u3" + } + }, + "found": { + "versionConstraint": "\u003c 2.24-11+deb9u4 (deb)", + "vulnerabilityID": "CVE-2018-11237" + } + } + ], + "artifact": { + "name": "libc6", + "version": "2.24-11+deb9u3", + "type": "deb", + "locations": null, + "language": "", + "licenses": [ + "GPL-2.0-only", + "LGPL-2.1-only" + ], + "cpes": [ + "cpe:2.3:a:libc6:libc6:2.24-11+deb9u3:*:*:*:*:*:*:*" + ], + "purl": "pkg:deb/debian/libc6@2.24-11+deb9u3?arch=amd64\u0026upstream=glibc\u0026distro=debian-9", + "upstreams": [ + { + "name": "glibc" + } + ], + "metadata": null + } + }, + { + "vulnerability": { + "id": "CVE-2018-11237", + "dataSource": "https://security-tracker.debian.org/tracker/CVE-2018-11237", + "namespace": "debian:distro:debian:9", + "severity": "High", + "urls": [ + "https://security-tracker.debian.org/tracker/CVE-2018-11237" + ], + "description": "An AVX-512-optimized implementation of the mempcpy function in the GNU C Library (aka glibc or libc6) 2.27 and earlier may write data beyond the target buffer, leading to a buffer overflow in __mempcpy_avx512_no_vzeroupper.", + "cvss": null, + "fix": { + "versions": [ + "2.24-11+deb9u4" + ], + "state": "fixed" + }, + "advisories": null + }, + "relatedVulnerabilities": [ + { + "id": "CVE-2018-11237", + "dataSource": "https://nvd.nist.gov/vuln/detail/CVE-2018-11237", + "namespace": "nvd:cpe", + "severity": "High", + "urls": [ + "http://www.securityfocus.com/bid/104256", + "https://access.redhat.com/errata/RHBA-2019:0327", + "https://access.redhat.com/errata/RHSA-2018:3092", + "https://security.netapp.com/advisory/ntap-20190401-0001/", + "https://sourceware.org/bugzilla/show_bug.cgi?id=23196", + "https://usn.ubuntu.com/4416-1/", + "https://www.exploit-db.com/exploits/44750/", + "https://www.oracle.com/technetwork/security-advisory/cpuapr2019-5072813.html" + ], + "description": "An AVX-512-optimized implementation of the mempcpy function in the GNU C Library (aka glibc or libc6) 2.27 and earlier may write data beyond the target buffer, leading to a buffer overflow in __mempcpy_avx512_no_vzeroupper.", + "cvss": null + } + ], + "matchDetails": [ + { + "type": "exact-indirect-match", + "matcher": "dpkg-matcher", + "searchedBy": { + "distro": { + "type": "debian", + "version": "9" + }, + "namespace": "debian:distro:debian:9", + "package": { + "name": "glibc", + "version": "2.24-11+deb9u3" + } + }, + "found": { + "versionConstraint": "\u003c 2.24-11+deb9u4 (deb)", + "vulnerabilityID": "CVE-2018-11237" + } + } + ], + "artifact": { + "name": "multiarch-support", + "version": "2.24-11+deb9u3", + "type": "deb", + "locations": null, + "language": "", + "licenses": [ + "GPL-2.0-only", + "LGPL-2.1-only" + ], + "cpes": [ + "cpe:2.3:a:multiarch-support:multiarch-support:2.24-11+deb9u3:*:*:*:*:*:*:*", + "cpe:2.3:a:multiarch-support:multiarch_support:2.24-11+deb9u3:*:*:*:*:*:*:*", + "cpe:2.3:a:multiarch_support:multiarch-support:2.24-11+deb9u3:*:*:*:*:*:*:*", + "cpe:2.3:a:multiarch_support:multiarch_support:2.24-11+deb9u3:*:*:*:*:*:*:*", + "cpe:2.3:a:multiarch:multiarch-support:2.24-11+deb9u3:*:*:*:*:*:*:*", + "cpe:2.3:a:multiarch:multiarch_support:2.24-11+deb9u3:*:*:*:*:*:*:*" + ], + "purl": "pkg:deb/debian/multiarch-support@2.24-11+deb9u3?arch=amd64\u0026upstream=glibc\u0026distro=debian-9", + "upstreams": [ + { + "name": "glibc" + } + ], + "metadata": null + } + }, + { + "vulnerability": { + "id": "CVE-2018-1152", + "dataSource": "https://security-tracker.debian.org/tracker/CVE-2018-1152", + "namespace": "debian:distro:debian:9", + "severity": "Medium", + "urls": [ + "https://security-tracker.debian.org/tracker/CVE-2018-1152" + ], + "description": "libjpeg-turbo 1.5.90 is vulnerable to a denial of service vulnerability caused by a divide by zero when processing a crafted BMP image.", + "cvss": null, + "fix": { + "versions": [ + "1:1.5.1-2+deb9u1" + ], + "state": "fixed" + }, + "advisories": null + }, + "relatedVulnerabilities": [ + { + "id": "CVE-2018-1152", + "dataSource": "https://nvd.nist.gov/vuln/detail/CVE-2018-1152", + "namespace": "nvd:cpe", + "severity": "Medium", + "urls": [ + "http://lists.opensuse.org/opensuse-security-announce/2019-04/msg00015.html", + "http://lists.opensuse.org/opensuse-security-announce/2019-05/msg00015.html", + "http://www.securityfocus.com/bid/104543", + "https://github.com/libjpeg-turbo/libjpeg-turbo/commit/43e84cff1bb2bd8293066f6ac4eb0df61ddddbc6", + "https://lists.debian.org/debian-lts-announce/2019/01/msg00015.html", + "https://lists.debian.org/debian-lts-announce/2020/07/msg00033.html", + "https://usn.ubuntu.com/3706-1/", + "https://usn.ubuntu.com/3706-2/", + "https://www.tenable.com/security/research/tra-2018-17" + ], + "description": "libjpeg-turbo 1.5.90 is vulnerable to a denial of service vulnerability caused by a divide by zero when processing a crafted BMP image.", + "cvss": null + } + ], + "matchDetails": [ + { + "type": "exact-indirect-match", + "matcher": "dpkg-matcher", + "searchedBy": { + "distro": { + "type": "debian", + "version": "9" + }, + "namespace": "debian:distro:debian:9", + "package": { + "name": "libjpeg-turbo", + "version": "1:1.5.1-2" + } + }, + "found": { + "versionConstraint": "\u003c 1:1.5.1-2+deb9u1 (deb)", + "vulnerabilityID": "CVE-2018-1152" + } + } + ], + "artifact": { + "name": "libjpeg62-turbo", + "version": "1:1.5.1-2", + "type": "deb", + "locations": null, + "language": "", + "licenses": [ + "LicenseRef-BSD-3", + "LicenseRef-BSD-BY-LC-NE", + "LicenseRef-Expat" + ], + "cpes": [ + "cpe:2.3:a:libjpeg62-turbo:libjpeg62-turbo:1:1.5.1-2:*:*:*:*:*:*:*", + "cpe:2.3:a:libjpeg62-turbo:libjpeg62_turbo:1:1.5.1-2:*:*:*:*:*:*:*", + "cpe:2.3:a:libjpeg62_turbo:libjpeg62-turbo:1:1.5.1-2:*:*:*:*:*:*:*", + "cpe:2.3:a:libjpeg62_turbo:libjpeg62_turbo:1:1.5.1-2:*:*:*:*:*:*:*", + "cpe:2.3:a:libjpeg62:libjpeg62-turbo:1:1.5.1-2:*:*:*:*:*:*:*", + "cpe:2.3:a:libjpeg62:libjpeg62_turbo:1:1.5.1-2:*:*:*:*:*:*:*" + ], + "purl": "pkg:deb/debian/libjpeg62-turbo@1:1.5.1-2?arch=amd64\u0026upstream=libjpeg-turbo\u0026distro=debian-9", + "upstreams": [ + { + "name": "libjpeg-turbo" + } + ], + "metadata": null + } + }, + { + "vulnerability": { + "id": "CVE-2018-11813", + "dataSource": "https://security-tracker.debian.org/tracker/CVE-2018-11813", + "namespace": "debian:distro:debian:9", + "severity": "Negligible", + "urls": [ + "https://security-tracker.debian.org/tracker/CVE-2018-11813" + ], + "description": "libjpeg 9c has a large loop because read_pixel in rdtarga.c mishandles EOF.", + "cvss": null, + "fix": { + "versions": [], + "state": "not-fixed" + }, + "advisories": null + }, + "relatedVulnerabilities": [ + { + "id": "CVE-2018-11813", + "dataSource": "https://nvd.nist.gov/vuln/detail/CVE-2018-11813", + "namespace": "nvd:cpe", + "severity": "High", + "urls": [ + "http://lists.opensuse.org/opensuse-security-announce/2019-04/msg00015.html", + "http://lists.opensuse.org/opensuse-security-announce/2019-05/msg00015.html", + "http://www.ijg.org/files/jpegsrc.v9d.tar.gz", + "https://access.redhat.com/errata/RHSA-2019:2052", + "https://bugs.gentoo.org/727908", + "https://github.com/ChijinZ/security_advisories/blob/master/libjpeg-v9c/mail.pdf", + "https://github.com/ChijinZ/security_advisories/tree/master/libjpeg-v9c" + ], + "description": "libjpeg 9c has a large loop because read_pixel in rdtarga.c mishandles EOF.", + "cvss": null + } + ], + "matchDetails": [ + { + "type": "exact-indirect-match", + "matcher": "dpkg-matcher", + "searchedBy": { + "distro": { + "type": "debian", + "version": "9" + }, + "namespace": "debian:distro:debian:9", + "package": { + "name": "libjpeg-turbo", + "version": "1:1.5.1-2" + } + }, + "found": { + "versionConstraint": "none (deb)", + "vulnerabilityID": "CVE-2018-11813" + } + } + ], + "artifact": { + "name": "libjpeg62-turbo", + "version": "1:1.5.1-2", + "type": "deb", + "locations": null, + "language": "", + "licenses": [ + "LicenseRef-BSD-3", + "LicenseRef-BSD-BY-LC-NE", + "LicenseRef-Expat" + ], + "cpes": [ + "cpe:2.3:a:libjpeg62-turbo:libjpeg62-turbo:1:1.5.1-2:*:*:*:*:*:*:*", + "cpe:2.3:a:libjpeg62-turbo:libjpeg62_turbo:1:1.5.1-2:*:*:*:*:*:*:*", + "cpe:2.3:a:libjpeg62_turbo:libjpeg62-turbo:1:1.5.1-2:*:*:*:*:*:*:*", + "cpe:2.3:a:libjpeg62_turbo:libjpeg62_turbo:1:1.5.1-2:*:*:*:*:*:*:*", + "cpe:2.3:a:libjpeg62:libjpeg62-turbo:1:1.5.1-2:*:*:*:*:*:*:*", + "cpe:2.3:a:libjpeg62:libjpeg62_turbo:1:1.5.1-2:*:*:*:*:*:*:*" + ], + "purl": "pkg:deb/debian/libjpeg62-turbo@1:1.5.1-2?arch=amd64\u0026upstream=libjpeg-turbo\u0026distro=debian-9", + "upstreams": [ + { + "name": "libjpeg-turbo" + } + ], + "metadata": null + } + }, + { + "vulnerability": { + "id": "CVE-2018-12886", + "dataSource": "https://security-tracker.debian.org/tracker/CVE-2018-12886", + "namespace": "debian:distro:debian:9", + "severity": "High", + "urls": [ + "https://security-tracker.debian.org/tracker/CVE-2018-12886" + ], + "description": "stack_protect_prologue in cfgexpand.c and stack_protect_epilogue in function.c in GNU Compiler Collection (GCC) 4.1 through 8 (under certain circumstances) generate instruction sequences when targeting ARM targets that spill the address of the stack protector guard, which allows an attacker to bypass the protection of -fstack-protector, -fstack-protector-all, -fstack-protector-strong, and -fstack-protector-explicit against stack overflow by controlling what the stack canary is compared against.", + "cvss": null, + "fix": { + "versions": [], + "state": "wont-fix" + }, + "advisories": null + }, + "relatedVulnerabilities": [ + { + "id": "CVE-2018-12886", + "dataSource": "https://nvd.nist.gov/vuln/detail/CVE-2018-12886", + "namespace": "nvd:cpe", + "severity": "High", + "urls": [ + "https://gcc.gnu.org/viewcvs/gcc/trunk/gcc/config/arm/arm-protos.h?revision=266379\u0026view=markup", + "https://www.gnu.org/software/gcc/gcc-8/changes.html" + ], + "description": "stack_protect_prologue in cfgexpand.c and stack_protect_epilogue in function.c in GNU Compiler Collection (GCC) 4.1 through 8 (under certain circumstances) generate instruction sequences when targeting ARM targets that spill the address of the stack protector guard, which allows an attacker to bypass the protection of -fstack-protector, -fstack-protector-all, -fstack-protector-strong, and -fstack-protector-explicit against stack overflow by controlling what the stack canary is compared against.", + "cvss": null + } + ], + "matchDetails": [ + { + "type": "exact-indirect-match", + "matcher": "dpkg-matcher", + "searchedBy": { + "distro": { + "type": "debian", + "version": "9" + }, + "namespace": "debian:distro:debian:9", + "package": { + "name": "gcc-6", + "version": "6.3.0-18+deb9u1" + } + }, + "found": { + "versionConstraint": "none (deb)", + "vulnerabilityID": "CVE-2018-12886" + } + } + ], + "artifact": { + "name": "gcc-6-base", + "version": "6.3.0-18+deb9u1", + "type": "deb", + "locations": null, + "language": "", + "licenses": [ + "LicenseRef-Artistic", + "GFDL-1.2-only", + "LicenseRef-GPL", + "GPL-2.0-only", + "GPL-3.0-only" + ], + "cpes": [ + "cpe:2.3:a:gcc-6-base:gcc-6-base:6.3.0-18+deb9u1:*:*:*:*:*:*:*", + "cpe:2.3:a:gcc-6-base:gcc_6_base:6.3.0-18+deb9u1:*:*:*:*:*:*:*", + "cpe:2.3:a:gcc_6_base:gcc-6-base:6.3.0-18+deb9u1:*:*:*:*:*:*:*", + "cpe:2.3:a:gcc_6_base:gcc_6_base:6.3.0-18+deb9u1:*:*:*:*:*:*:*", + "cpe:2.3:a:gcc-6:gcc-6-base:6.3.0-18+deb9u1:*:*:*:*:*:*:*", + "cpe:2.3:a:gcc-6:gcc_6_base:6.3.0-18+deb9u1:*:*:*:*:*:*:*", + "cpe:2.3:a:gcc_6:gcc-6-base:6.3.0-18+deb9u1:*:*:*:*:*:*:*", + "cpe:2.3:a:gcc_6:gcc_6_base:6.3.0-18+deb9u1:*:*:*:*:*:*:*", + "cpe:2.3:a:gcc:gcc-6-base:6.3.0-18+deb9u1:*:*:*:*:*:*:*", + "cpe:2.3:a:gcc:gcc_6_base:6.3.0-18+deb9u1:*:*:*:*:*:*:*" + ], + "purl": "pkg:deb/debian/gcc-6-base@6.3.0-18+deb9u1?arch=amd64\u0026upstream=gcc-6\u0026distro=debian-9", + "upstreams": [ + { + "name": "gcc-6" + } + ], + "metadata": null + } + }, + { + "vulnerability": { + "id": "CVE-2018-12886", + "dataSource": "https://security-tracker.debian.org/tracker/CVE-2018-12886", + "namespace": "debian:distro:debian:9", + "severity": "High", + "urls": [ + "https://security-tracker.debian.org/tracker/CVE-2018-12886" + ], + "description": "stack_protect_prologue in cfgexpand.c and stack_protect_epilogue in function.c in GNU Compiler Collection (GCC) 4.1 through 8 (under certain circumstances) generate instruction sequences when targeting ARM targets that spill the address of the stack protector guard, which allows an attacker to bypass the protection of -fstack-protector, -fstack-protector-all, -fstack-protector-strong, and -fstack-protector-explicit against stack overflow by controlling what the stack canary is compared against.", + "cvss": null, + "fix": { + "versions": [], + "state": "wont-fix" + }, + "advisories": null + }, + "relatedVulnerabilities": [ + { + "id": "CVE-2018-12886", + "dataSource": "https://nvd.nist.gov/vuln/detail/CVE-2018-12886", + "namespace": "nvd:cpe", + "severity": "High", + "urls": [ + "https://gcc.gnu.org/viewcvs/gcc/trunk/gcc/config/arm/arm-protos.h?revision=266379\u0026view=markup", + "https://www.gnu.org/software/gcc/gcc-8/changes.html" + ], + "description": "stack_protect_prologue in cfgexpand.c and stack_protect_epilogue in function.c in GNU Compiler Collection (GCC) 4.1 through 8 (under certain circumstances) generate instruction sequences when targeting ARM targets that spill the address of the stack protector guard, which allows an attacker to bypass the protection of -fstack-protector, -fstack-protector-all, -fstack-protector-strong, and -fstack-protector-explicit against stack overflow by controlling what the stack canary is compared against.", + "cvss": null + } + ], + "matchDetails": [ + { + "type": "exact-indirect-match", + "matcher": "dpkg-matcher", + "searchedBy": { + "distro": { + "type": "debian", + "version": "9" + }, + "namespace": "debian:distro:debian:9", + "package": { + "name": "gcc-6", + "version": "6.3.0-18+deb9u1" + } + }, + "found": { + "versionConstraint": "none (deb)", + "vulnerabilityID": "CVE-2018-12886" + } + } + ], + "artifact": { + "name": "libgcc1", + "version": "1:6.3.0-18+deb9u1", + "type": "deb", + "locations": null, + "language": "", + "licenses": [ + "LicenseRef-Artistic", + "GFDL-1.2-only", + "LicenseRef-GPL", + "GPL-2.0-only", + "GPL-3.0-only" + ], + "cpes": [ + "cpe:2.3:a:libgcc1:libgcc1:1:6.3.0-18+deb9u1:*:*:*:*:*:*:*" + ], + "purl": "pkg:deb/debian/libgcc1@1:6.3.0-18+deb9u1?arch=amd64\u0026upstream=gcc-6%406.3.0-18+deb9u1\u0026distro=debian-9", + "upstreams": [ + { + "name": "gcc-6", + "version": "6.3.0-18+deb9u1" + } + ], + "metadata": null + } + }, + { + "vulnerability": { + "id": "CVE-2018-12886", + "dataSource": "https://security-tracker.debian.org/tracker/CVE-2018-12886", + "namespace": "debian:distro:debian:9", + "severity": "High", + "urls": [ + "https://security-tracker.debian.org/tracker/CVE-2018-12886" + ], + "description": "stack_protect_prologue in cfgexpand.c and stack_protect_epilogue in function.c in GNU Compiler Collection (GCC) 4.1 through 8 (under certain circumstances) generate instruction sequences when targeting ARM targets that spill the address of the stack protector guard, which allows an attacker to bypass the protection of -fstack-protector, -fstack-protector-all, -fstack-protector-strong, and -fstack-protector-explicit against stack overflow by controlling what the stack canary is compared against.", + "cvss": null, + "fix": { + "versions": [], + "state": "wont-fix" + }, + "advisories": null + }, + "relatedVulnerabilities": [ + { + "id": "CVE-2018-12886", + "dataSource": "https://nvd.nist.gov/vuln/detail/CVE-2018-12886", + "namespace": "nvd:cpe", + "severity": "High", + "urls": [ + "https://gcc.gnu.org/viewcvs/gcc/trunk/gcc/config/arm/arm-protos.h?revision=266379\u0026view=markup", + "https://www.gnu.org/software/gcc/gcc-8/changes.html" + ], + "description": "stack_protect_prologue in cfgexpand.c and stack_protect_epilogue in function.c in GNU Compiler Collection (GCC) 4.1 through 8 (under certain circumstances) generate instruction sequences when targeting ARM targets that spill the address of the stack protector guard, which allows an attacker to bypass the protection of -fstack-protector, -fstack-protector-all, -fstack-protector-strong, and -fstack-protector-explicit against stack overflow by controlling what the stack canary is compared against.", + "cvss": null + } + ], + "matchDetails": [ + { + "type": "exact-indirect-match", + "matcher": "dpkg-matcher", + "searchedBy": { + "distro": { + "type": "debian", + "version": "9" + }, + "namespace": "debian:distro:debian:9", + "package": { + "name": "gcc-6", + "version": "6.3.0-18+deb9u1" + } + }, + "found": { + "versionConstraint": "none (deb)", + "vulnerabilityID": "CVE-2018-12886" + } + } + ], + "artifact": { + "name": "libstdc++6", + "version": "6.3.0-18+deb9u1", + "type": "deb", + "locations": null, + "language": "", + "licenses": [ + "LicenseRef-Artistic", + "GFDL-1.2-only", + "LicenseRef-GPL", + "GPL-2.0-only", + "GPL-3.0-only" + ], + "cpes": [ + "cpe:2.3:a:libstdc++6:libstdc++6:6.3.0-18+deb9u1:*:*:*:*:*:*:*" + ], + "purl": "pkg:deb/debian/libstdc++6@6.3.0-18+deb9u1?arch=amd64\u0026upstream=gcc-6\u0026distro=debian-9", + "upstreams": [ + { + "name": "gcc-6" + } + ], + "metadata": null + } + }, + { + "vulnerability": { + "id": "CVE-2018-12900", + "dataSource": "https://security-tracker.debian.org/tracker/CVE-2018-12900", + "namespace": "debian:distro:debian:9", + "severity": "High", + "urls": [ + "https://security-tracker.debian.org/tracker/CVE-2018-12900" + ], + "description": "Heap-based buffer overflow in the cpSeparateBufToContigBuf function in tiffcp.c in LibTIFF 3.9.3, 3.9.4, 3.9.5, 3.9.6, 3.9.7, 4.0.0beta7, 4.0.0alpha4, 4.0.0alpha5, 4.0.0alpha6, 4.0.0, 4.0.1, 4.0.2, 4.0.3, 4.0.4, 4.0.4beta, 4.0.5, 4.0.6, 4.0.7, 4.0.8 and 4.0.9 allows remote attackers to cause a denial of service (crash) or possibly have unspecified other impact via a crafted TIFF file.", + "cvss": null, + "fix": { + "versions": [ + "4.0.8-2+deb9u5" + ], + "state": "fixed" + }, + "advisories": [ + { + "id": "DSA-4670-1", + "link": "https://security-tracker.debian.org/tracker/DSA-4670-1" + } + ] + }, + "relatedVulnerabilities": [ + { + "id": "CVE-2018-12900", + "dataSource": "https://nvd.nist.gov/vuln/detail/CVE-2018-12900", + "namespace": "nvd:cpe", + "severity": "High", + "urls": [ + "http://bugzilla.maptools.org/show_bug.cgi?id=2798", + "https://access.redhat.com/errata/RHSA-2019:2053", + "https://access.redhat.com/errata/RHSA-2019:3419", + "https://github.com/Hack-Me/Pocs_for_Multi_Versions/tree/main/CVE-2018-12900", + "https://lists.debian.org/debian-lts-announce/2019/11/msg00027.html", + "https://usn.ubuntu.com/3906-1/", + "https://usn.ubuntu.com/3906-2/", + "https://www.debian.org/security/2020/dsa-4670" + ], + "description": "Heap-based buffer overflow in the cpSeparateBufToContigBuf function in tiffcp.c in LibTIFF 3.9.3, 3.9.4, 3.9.5, 3.9.6, 3.9.7, 4.0.0beta7, 4.0.0alpha4, 4.0.0alpha5, 4.0.0alpha6, 4.0.0, 4.0.1, 4.0.2, 4.0.3, 4.0.4, 4.0.4beta, 4.0.5, 4.0.6, 4.0.7, 4.0.8 and 4.0.9 allows remote attackers to cause a denial of service (crash) or possibly have unspecified other impact via a crafted TIFF file.", + "cvss": null + } + ], + "matchDetails": [ + { + "type": "exact-indirect-match", + "matcher": "dpkg-matcher", + "searchedBy": { + "distro": { + "type": "debian", + "version": "9" + }, + "namespace": "debian:distro:debian:9", + "package": { + "name": "tiff", + "version": "4.0.8-2+deb9u2" + } + }, + "found": { + "versionConstraint": "\u003c 4.0.8-2+deb9u5 (deb)", + "vulnerabilityID": "CVE-2018-12900" + } + } + ], + "artifact": { + "name": "libtiff5", + "version": "4.0.8-2+deb9u2", + "type": "deb", + "locations": null, + "language": "", + "licenses": [ + "LicenseRef-Hylafax" + ], + "cpes": [ + "cpe:2.3:a:libtiff5:libtiff5:4.0.8-2+deb9u2:*:*:*:*:*:*:*" + ], + "purl": "pkg:deb/debian/libtiff5@4.0.8-2+deb9u2?arch=amd64\u0026upstream=tiff\u0026distro=debian-9", + "upstreams": [ + { + "name": "tiff" + } + ], + "metadata": null + } + }, + { + "vulnerability": { + "id": "CVE-2018-14048", + "dataSource": "https://security-tracker.debian.org/tracker/CVE-2018-14048", + "namespace": "debian:distro:debian:9", + "severity": "Negligible", + "urls": [ + "https://security-tracker.debian.org/tracker/CVE-2018-14048" + ], + "description": "An issue has been found in libpng 1.6.34. It is a SEGV in the function png_free_data in png.c, related to the recommended error handling for png_read_image.", + "cvss": null, + "fix": { + "versions": [], + "state": "not-fixed" + }, + "advisories": null + }, + "relatedVulnerabilities": [ + { + "id": "CVE-2018-14048", + "dataSource": "https://nvd.nist.gov/vuln/detail/CVE-2018-14048", + "namespace": "nvd:cpe", + "severity": "Medium", + "urls": [ + "http://packetstormsecurity.com/files/152561/Slackware-Security-Advisory-libpng-Updates.html", + "http://www.oracle.com/technetwork/security-advisory/cpuoct2018-4428296.html", + "https://github.com/fouzhe/security/tree/master/libpng", + "https://github.com/glennrp/libpng/issues/238", + "https://seclists.org/bugtraq/2019/Apr/30", + "https://security.gentoo.org/glsa/201908-02" + ], + "description": "An issue has been found in libpng 1.6.34. It is a SEGV in the function png_free_data in png.c, related to the recommended error handling for png_read_image.", + "cvss": null + } + ], + "matchDetails": [ + { + "type": "exact-indirect-match", + "matcher": "dpkg-matcher", + "searchedBy": { + "distro": { + "type": "debian", + "version": "9" + }, + "namespace": "debian:distro:debian:9", + "package": { + "name": "libpng1.6", + "version": "1.6.28-1" + } + }, + "found": { + "versionConstraint": "none (deb)", + "vulnerabilityID": "CVE-2018-14048" + } + } + ], + "artifact": { + "name": "libpng16-16", + "version": "1.6.28-1", + "type": "deb", + "locations": null, + "language": "", + "licenses": [ + "LicenseRef-BSD-like-with-advertising-clause", + "GPL-2.0-only", + "GPL-2.0-or-later", + "LicenseRef-expat", + "Libpng" + ], + "cpes": [ + "cpe:2.3:a:libpng16-16:libpng16-16:1.6.28-1:*:*:*:*:*:*:*", + "cpe:2.3:a:libpng16-16:libpng16_16:1.6.28-1:*:*:*:*:*:*:*", + "cpe:2.3:a:libpng16_16:libpng16-16:1.6.28-1:*:*:*:*:*:*:*", + "cpe:2.3:a:libpng16_16:libpng16_16:1.6.28-1:*:*:*:*:*:*:*", + "cpe:2.3:a:libpng16:libpng16-16:1.6.28-1:*:*:*:*:*:*:*", + "cpe:2.3:a:libpng16:libpng16_16:1.6.28-1:*:*:*:*:*:*:*" + ], + "purl": "pkg:deb/debian/libpng16-16@1.6.28-1?arch=amd64\u0026upstream=libpng1.6\u0026distro=debian-9", + "upstreams": [ + { + "name": "libpng1.6" + } + ], + "metadata": null + } + }, + { + "vulnerability": { + "id": "CVE-2018-14404", + "dataSource": "https://security-tracker.debian.org/tracker/CVE-2018-14404", + "namespace": "debian:distro:debian:9", + "severity": "High", + "urls": [ + "https://security-tracker.debian.org/tracker/CVE-2018-14404" + ], + "description": "A NULL pointer dereference vulnerability exists in the xpath.c:xmlXPathCompOpEval() function of libxml2 through 2.9.8 when parsing an invalid XPath expression in the XPATH_OP_AND or XPATH_OP_OR case. Applications processing untrusted XSL format inputs with the use of the libxml2 library may be vulnerable to a denial of service attack due to a crash of the application.", + "cvss": null, + "fix": { + "versions": [ + "2.9.4+dfsg1-2.2+deb9u3" + ], + "state": "fixed" + }, + "advisories": null + }, + "relatedVulnerabilities": [ + { + "id": "CVE-2018-14404", + "dataSource": "https://nvd.nist.gov/vuln/detail/CVE-2018-14404", + "namespace": "nvd:cpe", + "severity": "High", + "urls": [ + "https://access.redhat.com/errata/RHSA-2019:1543", + "https://bugs.debian.org/cgi-bin/bugreport.cgi?bug=901817", + "https://bugzilla.redhat.com/show_bug.cgi?id=1595985", + "https://gitlab.gnome.org/GNOME/libxml2/issues/10", + "https://lists.debian.org/debian-lts-announce/2018/09/msg00035.html", + "https://lists.debian.org/debian-lts-announce/2020/09/msg00009.html", + "https://security.netapp.com/advisory/ntap-20190719-0002/", + "https://usn.ubuntu.com/3739-1/", + "https://usn.ubuntu.com/3739-2/" + ], + "description": "A NULL pointer dereference vulnerability exists in the xpath.c:xmlXPathCompOpEval() function of libxml2 through 2.9.8 when parsing an invalid XPath expression in the XPATH_OP_AND or XPATH_OP_OR case. Applications processing untrusted XSL format inputs with the use of the libxml2 library may be vulnerable to a denial of service attack due to a crash of the application.", + "cvss": null + } + ], + "matchDetails": [ + { + "type": "exact-direct-match", + "matcher": "dpkg-matcher", + "searchedBy": { + "distro": { + "type": "debian", + "version": "9" + }, + "namespace": "debian:distro:debian:9", + "package": { + "name": "libxml2", + "version": "2.9.4+dfsg1-2.2+deb9u2" + } + }, + "found": { + "versionConstraint": "\u003c 2.9.4+dfsg1-2.2+deb9u3 (deb)", + "vulnerabilityID": "CVE-2018-14404" + } + } + ], + "artifact": { + "name": "libxml2", + "version": "2.9.4+dfsg1-2.2+deb9u2", + "type": "deb", + "locations": null, + "language": "", + "licenses": [], + "cpes": [ + "cpe:2.3:a:libxml2:libxml2:2.9.4+dfsg1-2.2+deb9u2:*:*:*:*:*:*:*" + ], + "purl": "pkg:deb/debian/libxml2@2.9.4+dfsg1-2.2+deb9u2?arch=amd64\u0026distro=debian-9", + "upstreams": null, + "metadata": null + } + }, + { + "vulnerability": { + "id": "CVE-2018-14498", + "dataSource": "https://security-tracker.debian.org/tracker/CVE-2018-14498", + "namespace": "debian:distro:debian:9", + "severity": "Medium", + "urls": [ + "https://security-tracker.debian.org/tracker/CVE-2018-14498" + ], + "description": "get_8bit_row in rdbmp.c in libjpeg-turbo through 1.5.90 and MozJPEG through 3.3.1 allows attackers to cause a denial of service (heap-based buffer over-read and application crash) via a crafted 8-bit BMP in which one or more of the color indices is out of range for the number of palette entries.", + "cvss": null, + "fix": { + "versions": [ + "1:1.5.1-2+deb9u1" + ], + "state": "fixed" + }, + "advisories": null + }, + "relatedVulnerabilities": [ + { + "id": "CVE-2018-14498", + "dataSource": "https://nvd.nist.gov/vuln/detail/CVE-2018-14498", + "namespace": "nvd:cpe", + "severity": "Medium", + "urls": [ + "http://lists.opensuse.org/opensuse-security-announce/2019-04/msg00015.html", + "http://lists.opensuse.org/opensuse-security-announce/2019-05/msg00015.html", + "https://access.redhat.com/errata/RHSA-2019:2052", + "https://access.redhat.com/errata/RHSA-2019:3705", + "https://github.com/libjpeg-turbo/libjpeg-turbo/commit/9c78a04df4e44ef6487eee99c4258397f4fdca55", + "https://github.com/libjpeg-turbo/libjpeg-turbo/issues/258", + "https://github.com/mozilla/mozjpeg/issues/299", + "https://lists.debian.org/debian-lts-announce/2019/03/msg00021.html", + "https://lists.debian.org/debian-lts-announce/2020/07/msg00033.html", + "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/F7YP4QUEYGHI4Q7GIAVFVKWQ7DJMBYLU/", + "https://usn.ubuntu.com/4190-1/" + ], + "description": "get_8bit_row in rdbmp.c in libjpeg-turbo through 1.5.90 and MozJPEG through 3.3.1 allows attackers to cause a denial of service (heap-based buffer over-read and application crash) via a crafted 8-bit BMP in which one or more of the color indices is out of range for the number of palette entries.", + "cvss": null + } + ], + "matchDetails": [ + { + "type": "exact-indirect-match", + "matcher": "dpkg-matcher", + "searchedBy": { + "distro": { + "type": "debian", + "version": "9" + }, + "namespace": "debian:distro:debian:9", + "package": { + "name": "libjpeg-turbo", + "version": "1:1.5.1-2" + } + }, + "found": { + "versionConstraint": "\u003c 1:1.5.1-2+deb9u1 (deb)", + "vulnerabilityID": "CVE-2018-14498" + } + } + ], + "artifact": { + "name": "libjpeg62-turbo", + "version": "1:1.5.1-2", + "type": "deb", + "locations": null, + "language": "", + "licenses": [ + "LicenseRef-BSD-3", + "LicenseRef-BSD-BY-LC-NE", + "LicenseRef-Expat" + ], + "cpes": [ + "cpe:2.3:a:libjpeg62-turbo:libjpeg62-turbo:1:1.5.1-2:*:*:*:*:*:*:*", + "cpe:2.3:a:libjpeg62-turbo:libjpeg62_turbo:1:1.5.1-2:*:*:*:*:*:*:*", + "cpe:2.3:a:libjpeg62_turbo:libjpeg62-turbo:1:1.5.1-2:*:*:*:*:*:*:*", + "cpe:2.3:a:libjpeg62_turbo:libjpeg62_turbo:1:1.5.1-2:*:*:*:*:*:*:*", + "cpe:2.3:a:libjpeg62:libjpeg62-turbo:1:1.5.1-2:*:*:*:*:*:*:*", + "cpe:2.3:a:libjpeg62:libjpeg62_turbo:1:1.5.1-2:*:*:*:*:*:*:*" + ], + "purl": "pkg:deb/debian/libjpeg62-turbo@1:1.5.1-2?arch=amd64\u0026upstream=libjpeg-turbo\u0026distro=debian-9", + "upstreams": [ + { + "name": "libjpeg-turbo" + } + ], + "metadata": null + } + }, + { + "vulnerability": { + "id": "CVE-2018-14550", + "dataSource": "https://security-tracker.debian.org/tracker/CVE-2018-14550", + "namespace": "debian:distro:debian:9", + "severity": "Negligible", + "urls": [ + "https://security-tracker.debian.org/tracker/CVE-2018-14550" + ], + "description": "An issue has been found in third-party PNM decoding associated with libpng 1.6.35. It is a stack-based buffer overflow in the function get_token in pnm2png.c in pnm2png.", + "cvss": null, + "fix": { + "versions": [], + "state": "not-fixed" + }, + "advisories": null + }, + "relatedVulnerabilities": [ + { + "id": "CVE-2018-14550", + "dataSource": "https://nvd.nist.gov/vuln/detail/CVE-2018-14550", + "namespace": "nvd:cpe", + "severity": "High", + "urls": [ + "https://github.com/fouzhe/security/tree/master/libpng#stack-buffer-overflow-in-png2pnm-in-function-get_token", + "https://github.com/glennrp/libpng/issues/246", + "https://security.gentoo.org/glsa/201908-02", + "https://security.netapp.com/advisory/ntap-20221028-0001/", + "https://www.oracle.com/security-alerts/cpuApr2021.html", + "https://www.oracle.com/security-alerts/cpuoct2021.html" + ], + "description": "An issue has been found in third-party PNM decoding associated with libpng 1.6.35. It is a stack-based buffer overflow in the function get_token in pnm2png.c in pnm2png.", + "cvss": null + } + ], + "matchDetails": [ + { + "type": "exact-indirect-match", + "matcher": "dpkg-matcher", + "searchedBy": { + "distro": { + "type": "debian", + "version": "9" + }, + "namespace": "debian:distro:debian:9", + "package": { + "name": "libpng1.6", + "version": "1.6.28-1" + } + }, + "found": { + "versionConstraint": "none (deb)", + "vulnerabilityID": "CVE-2018-14550" + } + } + ], + "artifact": { + "name": "libpng16-16", + "version": "1.6.28-1", + "type": "deb", + "locations": null, + "language": "", + "licenses": [ + "LicenseRef-BSD-like-with-advertising-clause", + "GPL-2.0-only", + "GPL-2.0-or-later", + "LicenseRef-expat", + "Libpng" + ], + "cpes": [ + "cpe:2.3:a:libpng16-16:libpng16-16:1.6.28-1:*:*:*:*:*:*:*", + "cpe:2.3:a:libpng16-16:libpng16_16:1.6.28-1:*:*:*:*:*:*:*", + "cpe:2.3:a:libpng16_16:libpng16-16:1.6.28-1:*:*:*:*:*:*:*", + "cpe:2.3:a:libpng16_16:libpng16_16:1.6.28-1:*:*:*:*:*:*:*", + "cpe:2.3:a:libpng16:libpng16-16:1.6.28-1:*:*:*:*:*:*:*", + "cpe:2.3:a:libpng16:libpng16_16:1.6.28-1:*:*:*:*:*:*:*" + ], + "purl": "pkg:deb/debian/libpng16-16@1.6.28-1?arch=amd64\u0026upstream=libpng1.6\u0026distro=debian-9", + "upstreams": [ + { + "name": "libpng1.6" + } + ], + "metadata": null + } + }, + { + "vulnerability": { + "id": "CVE-2018-14553", + "dataSource": "https://security-tracker.debian.org/tracker/CVE-2018-14553", + "namespace": "debian:distro:debian:9", + "severity": "Low", + "urls": [ + "https://security-tracker.debian.org/tracker/CVE-2018-14553" + ], + "description": "gdImageClone in gd.c in libgd 2.1.0-rc2 through 2.2.5 has a NULL pointer dereference allowing attackers to crash an application via a specific function call sequence. Only affects PHP when linked with an external libgd (not bundled).", + "cvss": null, + "fix": { + "versions": [], + "state": "wont-fix" + }, + "advisories": null + }, + "relatedVulnerabilities": [ + { + "id": "CVE-2018-14553", + "dataSource": "https://nvd.nist.gov/vuln/detail/CVE-2018-14553", + "namespace": "nvd:cpe", + "severity": "High", + "urls": [ + "http://lists.opensuse.org/opensuse-security-announce/2020-03/msg00020.html", + "https://bugzilla.redhat.com/show_bug.cgi?id=1599032", + "https://github.com/libgd/libgd/commit/a93eac0e843148dc2d631c3ba80af17e9c8c860f", + "https://github.com/libgd/libgd/pull/580", + "https://lists.debian.org/debian-lts-announce/2020/02/msg00014.html", + "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/3CZ2QADQTKRHTGB2AHD7J4QQNDLBEMM6/", + "https://usn.ubuntu.com/4316-1/", + "https://usn.ubuntu.com/4316-2/" + ], + "description": "gdImageClone in gd.c in libgd 2.1.0-rc2 through 2.2.5 has a NULL pointer dereference allowing attackers to crash an application via a specific function call sequence. Only affects PHP when linked with an external libgd (not bundled).", + "cvss": null + } + ], + "matchDetails": [ + { + "type": "exact-indirect-match", + "matcher": "dpkg-matcher", + "searchedBy": { + "distro": { + "type": "debian", + "version": "9" + }, + "namespace": "debian:distro:debian:9", + "package": { + "name": "libgd2", + "version": "2.2.4-2+deb9u3" + } + }, + "found": { + "versionConstraint": "none (deb)", + "vulnerabilityID": "CVE-2018-14553" + } + } + ], + "artifact": { + "name": "libgd3", + "version": "2.2.4-2+deb9u3", + "type": "deb", + "locations": null, + "language": "", + "licenses": [ + "BSD-3-Clause", + "LicenseRef-GAP-Makefile.in", + "LicenseRef-GAP-configure", + "GD", + "GPL-2.0-only", + "GPL-2.0-or-later", + "HPND", + "MIT", + "LicenseRef-WEBP", + "LicenseRef-XFIG" + ], + "cpes": [ + "cpe:2.3:a:libgd3:libgd3:2.2.4-2+deb9u3:*:*:*:*:*:*:*" + ], + "purl": "pkg:deb/debian/libgd3@2.2.4-2+deb9u3?arch=amd64\u0026upstream=libgd2\u0026distro=debian-9", + "upstreams": [ + { + "name": "libgd2" + } + ], + "metadata": null + } + }, + { + "vulnerability": { + "id": "CVE-2018-14567", + "dataSource": "https://security-tracker.debian.org/tracker/CVE-2018-14567", + "namespace": "debian:distro:debian:9", + "severity": "Medium", + "urls": [ + "https://security-tracker.debian.org/tracker/CVE-2018-14567" + ], + "description": "libxml2 2.9.8, if --with-lzma is used, allows remote attackers to cause a denial of service (infinite loop) via a crafted XML file that triggers LZMA_MEMLIMIT_ERROR, as demonstrated by xmllint, a different vulnerability than CVE-2015-8035 and CVE-2018-9251.", + "cvss": null, + "fix": { + "versions": [ + "2.9.4+dfsg1-2.2+deb9u3" + ], + "state": "fixed" + }, + "advisories": null + }, + "relatedVulnerabilities": [ + { + "id": "CVE-2018-14567", + "dataSource": "https://nvd.nist.gov/vuln/detail/CVE-2018-14567", + "namespace": "nvd:cpe", + "severity": "Medium", + "urls": [ + "http://www.securityfocus.com/bid/105198", + "https://gitlab.gnome.org/GNOME/libxml2/commit/2240fbf5912054af025fb6e01e26375100275e74", + "https://lists.debian.org/debian-lts-announce/2018/09/msg00035.html", + "https://lists.debian.org/debian-lts-announce/2020/09/msg00009.html", + "https://usn.ubuntu.com/3739-1/" + ], + "description": "libxml2 2.9.8, if --with-lzma is used, allows remote attackers to cause a denial of service (infinite loop) via a crafted XML file that triggers LZMA_MEMLIMIT_ERROR, as demonstrated by xmllint, a different vulnerability than CVE-2015-8035 and CVE-2018-9251.", + "cvss": null + } + ], + "matchDetails": [ + { + "type": "exact-direct-match", + "matcher": "dpkg-matcher", + "searchedBy": { + "distro": { + "type": "debian", + "version": "9" + }, + "namespace": "debian:distro:debian:9", + "package": { + "name": "libxml2", + "version": "2.9.4+dfsg1-2.2+deb9u2" + } + }, + "found": { + "versionConstraint": "\u003c 2.9.4+dfsg1-2.2+deb9u3 (deb)", + "vulnerabilityID": "CVE-2018-14567" + } + } + ], + "artifact": { + "name": "libxml2", + "version": "2.9.4+dfsg1-2.2+deb9u2", + "type": "deb", + "locations": null, + "language": "", + "licenses": [], + "cpes": [ + "cpe:2.3:a:libxml2:libxml2:2.9.4+dfsg1-2.2+deb9u2:*:*:*:*:*:*:*" + ], + "purl": "pkg:deb/debian/libxml2@2.9.4+dfsg1-2.2+deb9u2?arch=amd64\u0026distro=debian-9", + "upstreams": null, + "metadata": null + } + }, + { + "vulnerability": { + "id": "CVE-2018-15209", + "dataSource": "https://security-tracker.debian.org/tracker/CVE-2018-15209", + "namespace": "debian:distro:debian:9", + "severity": "High", + "urls": [ + "https://security-tracker.debian.org/tracker/CVE-2018-15209" + ], + "description": "ChopUpSingleUncompressedStrip in tif_dirread.c in LibTIFF 4.0.9 allows remote attackers to cause a denial of service (heap-based buffer overflow and application crash) or possibly have unspecified other impact via a crafted TIFF file, as demonstrated by tiff2pdf.", + "cvss": null, + "fix": { + "versions": [ + "4.0.8-2+deb9u4" + ], + "state": "fixed" + }, + "advisories": [ + { + "id": "DSA-4349-1", + "link": "https://security-tracker.debian.org/tracker/DSA-4349-1" + } + ] + }, + "relatedVulnerabilities": [ + { + "id": "CVE-2018-15209", + "dataSource": "https://nvd.nist.gov/vuln/detail/CVE-2018-15209", + "namespace": "nvd:cpe", + "severity": "High", + "urls": [ + "http://bugzilla.maptools.org/show_bug.cgi?id=2808", + "http://www.securityfocus.com/bid/105092", + "https://www.debian.org/security/2018/dsa-4349" + ], + "description": "ChopUpSingleUncompressedStrip in tif_dirread.c in LibTIFF 4.0.9 allows remote attackers to cause a denial of service (heap-based buffer overflow and application crash) or possibly have unspecified other impact via a crafted TIFF file, as demonstrated by tiff2pdf.", + "cvss": null + } + ], + "matchDetails": [ + { + "type": "exact-indirect-match", + "matcher": "dpkg-matcher", + "searchedBy": { + "distro": { + "type": "debian", + "version": "9" + }, + "namespace": "debian:distro:debian:9", + "package": { + "name": "tiff", + "version": "4.0.8-2+deb9u2" + } + }, + "found": { + "versionConstraint": "\u003c 4.0.8-2+deb9u4 (deb)", + "vulnerabilityID": "CVE-2018-15209" + } + } + ], + "artifact": { + "name": "libtiff5", + "version": "4.0.8-2+deb9u2", + "type": "deb", + "locations": null, + "language": "", + "licenses": [ + "LicenseRef-Hylafax" + ], + "cpes": [ + "cpe:2.3:a:libtiff5:libtiff5:4.0.8-2+deb9u2:*:*:*:*:*:*:*" + ], + "purl": "pkg:deb/debian/libtiff5@4.0.8-2+deb9u2?arch=amd64\u0026upstream=tiff\u0026distro=debian-9", + "upstreams": [ + { + "name": "tiff" + } + ], + "metadata": null + } + }, + { + "vulnerability": { + "id": "CVE-2018-15686", + "dataSource": "https://security-tracker.debian.org/tracker/CVE-2018-15686", + "namespace": "debian:distro:debian:9", + "severity": "High", + "urls": [ + "https://security-tracker.debian.org/tracker/CVE-2018-15686" + ], + "description": "A vulnerability in unit_deserialize of systemd allows an attacker to supply arbitrary state across systemd re-execution via NotifyAccess. This can be used to improperly influence systemd execution and possibly lead to root privilege escalation. Affected releases are systemd versions up to and including 239.", + "cvss": null, + "fix": { + "versions": [ + "232-25+deb9u10" + ], + "state": "fixed" + }, + "advisories": null + }, + "relatedVulnerabilities": [ + { + "id": "CVE-2018-15686", + "dataSource": "https://nvd.nist.gov/vuln/detail/CVE-2018-15686", + "namespace": "nvd:cpe", + "severity": "High", + "urls": [ + "http://www.securityfocus.com/bid/105747", + "https://access.redhat.com/errata/RHSA-2019:2091", + "https://access.redhat.com/errata/RHSA-2019:3222", + "https://access.redhat.com/errata/RHSA-2020:0593", + "https://github.com/systemd/systemd/pull/10519", + "https://lists.apache.org/thread.html/r1b103833cb5bc8466e24ff0ecc5e75b45a705334ab6a444e64e840a0@%3Cissues.bookkeeper.apache.org%3E", + "https://lists.debian.org/debian-lts-announce/2018/11/msg00017.html", + "https://security.gentoo.org/glsa/201810-10", + "https://usn.ubuntu.com/3816-1/", + "https://www.exploit-db.com/exploits/45714/", + "https://www.oracle.com//security-alerts/cpujul2021.html" + ], + "description": "A vulnerability in unit_deserialize of systemd allows an attacker to supply arbitrary state across systemd re-execution via NotifyAccess. This can be used to improperly influence systemd execution and possibly lead to root privilege escalation. Affected releases are systemd versions up to and including 239.", + "cvss": null + } + ], + "matchDetails": [ + { + "type": "exact-indirect-match", + "matcher": "dpkg-matcher", + "searchedBy": { + "distro": { + "type": "debian", + "version": "9" + }, + "namespace": "debian:distro:debian:9", + "package": { + "name": "systemd", + "version": "232-25+deb9u6" + } + }, + "found": { + "versionConstraint": "\u003c 232-25+deb9u10 (deb)", + "vulnerabilityID": "CVE-2018-15686" + } + } + ], + "artifact": { + "name": "libsystemd0", + "version": "232-25+deb9u6", + "type": "deb", + "locations": null, + "language": "", + "licenses": [ + "LicenseRef-CC0", + "LicenseRef-Expat", + "GPL-2.0-only", + "GPL-2.0-or-later", + "LGPL-2.1-only", + "LGPL-2.1-or-later", + "LicenseRef-public-domain" + ], + "cpes": [ + "cpe:2.3:a:libsystemd0:libsystemd0:232-25+deb9u6:*:*:*:*:*:*:*" + ], + "purl": "pkg:deb/debian/libsystemd0@232-25+deb9u6?arch=amd64\u0026upstream=systemd\u0026distro=debian-9", + "upstreams": [ + { + "name": "systemd" + } + ], + "metadata": null + } + }, + { + "vulnerability": { + "id": "CVE-2018-15686", + "dataSource": "https://security-tracker.debian.org/tracker/CVE-2018-15686", + "namespace": "debian:distro:debian:9", + "severity": "High", + "urls": [ + "https://security-tracker.debian.org/tracker/CVE-2018-15686" + ], + "description": "A vulnerability in unit_deserialize of systemd allows an attacker to supply arbitrary state across systemd re-execution via NotifyAccess. This can be used to improperly influence systemd execution and possibly lead to root privilege escalation. Affected releases are systemd versions up to and including 239.", + "cvss": null, + "fix": { + "versions": [ + "232-25+deb9u10" + ], + "state": "fixed" + }, + "advisories": null + }, + "relatedVulnerabilities": [ + { + "id": "CVE-2018-15686", + "dataSource": "https://nvd.nist.gov/vuln/detail/CVE-2018-15686", + "namespace": "nvd:cpe", + "severity": "High", + "urls": [ + "http://www.securityfocus.com/bid/105747", + "https://access.redhat.com/errata/RHSA-2019:2091", + "https://access.redhat.com/errata/RHSA-2019:3222", + "https://access.redhat.com/errata/RHSA-2020:0593", + "https://github.com/systemd/systemd/pull/10519", + "https://lists.apache.org/thread.html/r1b103833cb5bc8466e24ff0ecc5e75b45a705334ab6a444e64e840a0@%3Cissues.bookkeeper.apache.org%3E", + "https://lists.debian.org/debian-lts-announce/2018/11/msg00017.html", + "https://security.gentoo.org/glsa/201810-10", + "https://usn.ubuntu.com/3816-1/", + "https://www.exploit-db.com/exploits/45714/", + "https://www.oracle.com//security-alerts/cpujul2021.html" + ], + "description": "A vulnerability in unit_deserialize of systemd allows an attacker to supply arbitrary state across systemd re-execution via NotifyAccess. This can be used to improperly influence systemd execution and possibly lead to root privilege escalation. Affected releases are systemd versions up to and including 239.", + "cvss": null + } + ], + "matchDetails": [ + { + "type": "exact-indirect-match", + "matcher": "dpkg-matcher", + "searchedBy": { + "distro": { + "type": "debian", + "version": "9" + }, + "namespace": "debian:distro:debian:9", + "package": { + "name": "systemd", + "version": "232-25+deb9u6" + } + }, + "found": { + "versionConstraint": "\u003c 232-25+deb9u10 (deb)", + "vulnerabilityID": "CVE-2018-15686" + } + } + ], + "artifact": { + "name": "libudev1", + "version": "232-25+deb9u6", + "type": "deb", + "locations": null, + "language": "", + "licenses": [ + "LicenseRef-CC0", + "LicenseRef-Expat", + "GPL-2.0-only", + "GPL-2.0-or-later", + "LGPL-2.1-only", + "LGPL-2.1-or-later", + "LicenseRef-public-domain" + ], + "cpes": [ + "cpe:2.3:a:libudev1:libudev1:232-25+deb9u6:*:*:*:*:*:*:*" + ], + "purl": "pkg:deb/debian/libudev1@232-25+deb9u6?arch=amd64\u0026upstream=systemd\u0026distro=debian-9", + "upstreams": [ + { + "name": "systemd" + } + ], + "metadata": null + } + }, + { + "vulnerability": { + "id": "CVE-2018-16335", + "dataSource": "https://security-tracker.debian.org/tracker/CVE-2018-16335", + "namespace": "debian:distro:debian:9", + "severity": "High", + "urls": [ + "https://security-tracker.debian.org/tracker/CVE-2018-16335" + ], + "description": "newoffsets handling in ChopUpSingleUncompressedStrip in tif_dirread.c in LibTIFF 4.0.9 allows remote attackers to cause a denial of service (heap-based buffer overflow and application crash) or possibly have unspecified other impact via a crafted TIFF file, as demonstrated by tiff2pdf. This is a different vulnerability than CVE-2018-15209.", + "cvss": null, + "fix": { + "versions": [ + "4.0.8-2+deb9u4" + ], + "state": "fixed" + }, + "advisories": [ + { + "id": "DSA-4349-1", + "link": "https://security-tracker.debian.org/tracker/DSA-4349-1" + } + ] + }, + "relatedVulnerabilities": [ + { + "id": "CVE-2018-16335", + "dataSource": "https://nvd.nist.gov/vuln/detail/CVE-2018-16335", + "namespace": "nvd:cpe", + "severity": "High", + "urls": [ + "http://bugzilla.maptools.org/show_bug.cgi?id=2809", + "https://www.debian.org/security/2018/dsa-4349" + ], + "description": "newoffsets handling in ChopUpSingleUncompressedStrip in tif_dirread.c in LibTIFF 4.0.9 allows remote attackers to cause a denial of service (heap-based buffer overflow and application crash) or possibly have unspecified other impact via a crafted TIFF file, as demonstrated by tiff2pdf. This is a different vulnerability than CVE-2018-15209.", + "cvss": null + } + ], + "matchDetails": [ + { + "type": "exact-indirect-match", + "matcher": "dpkg-matcher", + "searchedBy": { + "distro": { + "type": "debian", + "version": "9" + }, + "namespace": "debian:distro:debian:9", + "package": { + "name": "tiff", + "version": "4.0.8-2+deb9u2" + } + }, + "found": { + "versionConstraint": "\u003c 4.0.8-2+deb9u4 (deb)", + "vulnerabilityID": "CVE-2018-16335" + } + } + ], + "artifact": { + "name": "libtiff5", + "version": "4.0.8-2+deb9u2", + "type": "deb", + "locations": null, + "language": "", + "licenses": [ + "LicenseRef-Hylafax" + ], + "cpes": [ + "cpe:2.3:a:libtiff5:libtiff5:4.0.8-2+deb9u2:*:*:*:*:*:*:*" + ], + "purl": "pkg:deb/debian/libtiff5@4.0.8-2+deb9u2?arch=amd64\u0026upstream=tiff\u0026distro=debian-9", + "upstreams": [ + { + "name": "tiff" + } + ], + "metadata": null + } + }, + { + "vulnerability": { + "id": "CVE-2018-16864", + "dataSource": "https://security-tracker.debian.org/tracker/CVE-2018-16864", + "namespace": "debian:distro:debian:9", + "severity": "High", + "urls": [ + "https://security-tracker.debian.org/tracker/CVE-2018-16864" + ], + "description": "An allocation of memory without limits, that could result in the stack clashing with another memory region, was discovered in systemd-journald when a program with long command line arguments calls syslog. A local attacker may use this flaw to crash systemd-journald or escalate his privileges. Versions through v240 are vulnerable.", + "cvss": null, + "fix": { + "versions": [ + "232-25+deb9u7" + ], + "state": "fixed" + }, + "advisories": [ + { + "id": "DSA-4367-1", + "link": "https://security-tracker.debian.org/tracker/DSA-4367-1" + }, + { + "id": "DSA-4367-2", + "link": "https://security-tracker.debian.org/tracker/DSA-4367-2" + } + ] + }, + "relatedVulnerabilities": [ + { + "id": "CVE-2018-16864", + "dataSource": "https://nvd.nist.gov/vuln/detail/CVE-2018-16864", + "namespace": "nvd:cpe", + "severity": "High", + "urls": [ + "http://www.openwall.com/lists/oss-security/2021/07/20/2", + "http://www.securityfocus.com/bid/106523", + "https://access.redhat.com/errata/RHBA-2019:0327", + "https://access.redhat.com/errata/RHSA-2019:0049", + "https://access.redhat.com/errata/RHSA-2019:0204", + "https://access.redhat.com/errata/RHSA-2019:0271", + "https://access.redhat.com/errata/RHSA-2019:0342", + "https://access.redhat.com/errata/RHSA-2019:0361", + "https://access.redhat.com/errata/RHSA-2019:2402", + "https://bugzilla.redhat.com/show_bug.cgi?id=CVE-2018-16864", + "https://lists.debian.org/debian-lts-announce/2019/01/msg00016.html", + "https://security.gentoo.org/glsa/201903-07", + "https://security.netapp.com/advisory/ntap-20190117-0001/", + "https://usn.ubuntu.com/3855-1/", + "https://www.debian.org/security/2019/dsa-4367", + "https://www.oracle.com/technetwork/security-advisory/cpuapr2019-5072813.html", + "https://www.qualys.com/2019/01/09/system-down/system-down.txt" + ], + "description": "An allocation of memory without limits, that could result in the stack clashing with another memory region, was discovered in systemd-journald when a program with long command line arguments calls syslog. A local attacker may use this flaw to crash systemd-journald or escalate his privileges. Versions through v240 are vulnerable.", + "cvss": null + } + ], + "matchDetails": [ + { + "type": "exact-indirect-match", + "matcher": "dpkg-matcher", + "searchedBy": { + "distro": { + "type": "debian", + "version": "9" + }, + "namespace": "debian:distro:debian:9", + "package": { + "name": "systemd", + "version": "232-25+deb9u6" + } + }, + "found": { + "versionConstraint": "\u003c 232-25+deb9u7 (deb)", + "vulnerabilityID": "CVE-2018-16864" + } + } + ], + "artifact": { + "name": "libsystemd0", + "version": "232-25+deb9u6", + "type": "deb", + "locations": null, + "language": "", + "licenses": [ + "LicenseRef-CC0", + "LicenseRef-Expat", + "GPL-2.0-only", + "GPL-2.0-or-later", + "LGPL-2.1-only", + "LGPL-2.1-or-later", + "LicenseRef-public-domain" + ], + "cpes": [ + "cpe:2.3:a:libsystemd0:libsystemd0:232-25+deb9u6:*:*:*:*:*:*:*" + ], + "purl": "pkg:deb/debian/libsystemd0@232-25+deb9u6?arch=amd64\u0026upstream=systemd\u0026distro=debian-9", + "upstreams": [ + { + "name": "systemd" + } + ], + "metadata": null + } + }, + { + "vulnerability": { + "id": "CVE-2018-16864", + "dataSource": "https://security-tracker.debian.org/tracker/CVE-2018-16864", + "namespace": "debian:distro:debian:9", + "severity": "High", + "urls": [ + "https://security-tracker.debian.org/tracker/CVE-2018-16864" + ], + "description": "An allocation of memory without limits, that could result in the stack clashing with another memory region, was discovered in systemd-journald when a program with long command line arguments calls syslog. A local attacker may use this flaw to crash systemd-journald or escalate his privileges. Versions through v240 are vulnerable.", + "cvss": null, + "fix": { + "versions": [ + "232-25+deb9u7" + ], + "state": "fixed" + }, + "advisories": [ + { + "id": "DSA-4367-1", + "link": "https://security-tracker.debian.org/tracker/DSA-4367-1" + }, + { + "id": "DSA-4367-2", + "link": "https://security-tracker.debian.org/tracker/DSA-4367-2" + } + ] + }, + "relatedVulnerabilities": [ + { + "id": "CVE-2018-16864", + "dataSource": "https://nvd.nist.gov/vuln/detail/CVE-2018-16864", + "namespace": "nvd:cpe", + "severity": "High", + "urls": [ + "http://www.openwall.com/lists/oss-security/2021/07/20/2", + "http://www.securityfocus.com/bid/106523", + "https://access.redhat.com/errata/RHBA-2019:0327", + "https://access.redhat.com/errata/RHSA-2019:0049", + "https://access.redhat.com/errata/RHSA-2019:0204", + "https://access.redhat.com/errata/RHSA-2019:0271", + "https://access.redhat.com/errata/RHSA-2019:0342", + "https://access.redhat.com/errata/RHSA-2019:0361", + "https://access.redhat.com/errata/RHSA-2019:2402", + "https://bugzilla.redhat.com/show_bug.cgi?id=CVE-2018-16864", + "https://lists.debian.org/debian-lts-announce/2019/01/msg00016.html", + "https://security.gentoo.org/glsa/201903-07", + "https://security.netapp.com/advisory/ntap-20190117-0001/", + "https://usn.ubuntu.com/3855-1/", + "https://www.debian.org/security/2019/dsa-4367", + "https://www.oracle.com/technetwork/security-advisory/cpuapr2019-5072813.html", + "https://www.qualys.com/2019/01/09/system-down/system-down.txt" + ], + "description": "An allocation of memory without limits, that could result in the stack clashing with another memory region, was discovered in systemd-journald when a program with long command line arguments calls syslog. A local attacker may use this flaw to crash systemd-journald or escalate his privileges. Versions through v240 are vulnerable.", + "cvss": null + } + ], + "matchDetails": [ + { + "type": "exact-indirect-match", + "matcher": "dpkg-matcher", + "searchedBy": { + "distro": { + "type": "debian", + "version": "9" + }, + "namespace": "debian:distro:debian:9", + "package": { + "name": "systemd", + "version": "232-25+deb9u6" + } + }, + "found": { + "versionConstraint": "\u003c 232-25+deb9u7 (deb)", + "vulnerabilityID": "CVE-2018-16864" + } + } + ], + "artifact": { + "name": "libudev1", + "version": "232-25+deb9u6", + "type": "deb", + "locations": null, + "language": "", + "licenses": [ + "LicenseRef-CC0", + "LicenseRef-Expat", + "GPL-2.0-only", + "GPL-2.0-or-later", + "LGPL-2.1-only", + "LGPL-2.1-or-later", + "LicenseRef-public-domain" + ], + "cpes": [ + "cpe:2.3:a:libudev1:libudev1:232-25+deb9u6:*:*:*:*:*:*:*" + ], + "purl": "pkg:deb/debian/libudev1@232-25+deb9u6?arch=amd64\u0026upstream=systemd\u0026distro=debian-9", + "upstreams": [ + { + "name": "systemd" + } + ], + "metadata": null + } + }, + { + "vulnerability": { + "id": "CVE-2018-16865", + "dataSource": "https://security-tracker.debian.org/tracker/CVE-2018-16865", + "namespace": "debian:distro:debian:9", + "severity": "High", + "urls": [ + "https://security-tracker.debian.org/tracker/CVE-2018-16865" + ], + "description": "An allocation of memory without limits, that could result in the stack clashing with another memory region, was discovered in systemd-journald when many entries are sent to the journal socket. A local attacker, or a remote one if systemd-journal-remote is used, may use this flaw to crash systemd-journald or execute code with journald privileges. Versions through v240 are vulnerable.", + "cvss": null, + "fix": { + "versions": [ + "232-25+deb9u7" + ], + "state": "fixed" + }, + "advisories": [ + { + "id": "DSA-4367-1", + "link": "https://security-tracker.debian.org/tracker/DSA-4367-1" + }, + { + "id": "DSA-4367-2", + "link": "https://security-tracker.debian.org/tracker/DSA-4367-2" + } + ] + }, + "relatedVulnerabilities": [ + { + "id": "CVE-2018-16865", + "dataSource": "https://nvd.nist.gov/vuln/detail/CVE-2018-16865", + "namespace": "nvd:cpe", + "severity": "High", + "urls": [ + "http://packetstormsecurity.com/files/152841/System-Down-A-systemd-journald-Exploit.html", + "http://seclists.org/fulldisclosure/2019/May/21", + "http://www.openwall.com/lists/oss-security/2019/05/10/4", + "http://www.openwall.com/lists/oss-security/2021/07/20/2", + "http://www.securityfocus.com/bid/106525", + "https://access.redhat.com/errata/RHBA-2019:0327", + "https://access.redhat.com/errata/RHSA-2019:0049", + "https://access.redhat.com/errata/RHSA-2019:0204", + "https://access.redhat.com/errata/RHSA-2019:0271", + "https://access.redhat.com/errata/RHSA-2019:0342", + "https://access.redhat.com/errata/RHSA-2019:0361", + "https://access.redhat.com/errata/RHSA-2019:2402", + "https://bugzilla.redhat.com/show_bug.cgi?id=CVE-2018-16865", + "https://lists.debian.org/debian-lts-announce/2019/01/msg00016.html", + "https://seclists.org/bugtraq/2019/May/25", + "https://security.gentoo.org/glsa/201903-07", + "https://security.netapp.com/advisory/ntap-20190117-0001/", + "https://usn.ubuntu.com/3855-1/", + "https://www.debian.org/security/2019/dsa-4367", + "https://www.oracle.com/technetwork/security-advisory/cpuapr2019-5072813.html", + "https://www.qualys.com/2019/01/09/system-down/system-down.txt" + ], + "description": "An allocation of memory without limits, that could result in the stack clashing with another memory region, was discovered in systemd-journald when many entries are sent to the journal socket. A local attacker, or a remote one if systemd-journal-remote is used, may use this flaw to crash systemd-journald or execute code with journald privileges. Versions through v240 are vulnerable.", + "cvss": null + } + ], + "matchDetails": [ + { + "type": "exact-indirect-match", + "matcher": "dpkg-matcher", + "searchedBy": { + "distro": { + "type": "debian", + "version": "9" + }, + "namespace": "debian:distro:debian:9", + "package": { + "name": "systemd", + "version": "232-25+deb9u6" + } + }, + "found": { + "versionConstraint": "\u003c 232-25+deb9u7 (deb)", + "vulnerabilityID": "CVE-2018-16865" + } + } + ], + "artifact": { + "name": "libsystemd0", + "version": "232-25+deb9u6", + "type": "deb", + "locations": null, + "language": "", + "licenses": [ + "LicenseRef-CC0", + "LicenseRef-Expat", + "GPL-2.0-only", + "GPL-2.0-or-later", + "LGPL-2.1-only", + "LGPL-2.1-or-later", + "LicenseRef-public-domain" + ], + "cpes": [ + "cpe:2.3:a:libsystemd0:libsystemd0:232-25+deb9u6:*:*:*:*:*:*:*" + ], + "purl": "pkg:deb/debian/libsystemd0@232-25+deb9u6?arch=amd64\u0026upstream=systemd\u0026distro=debian-9", + "upstreams": [ + { + "name": "systemd" + } + ], + "metadata": null + } + }, + { + "vulnerability": { + "id": "CVE-2018-16865", + "dataSource": "https://security-tracker.debian.org/tracker/CVE-2018-16865", + "namespace": "debian:distro:debian:9", + "severity": "High", + "urls": [ + "https://security-tracker.debian.org/tracker/CVE-2018-16865" + ], + "description": "An allocation of memory without limits, that could result in the stack clashing with another memory region, was discovered in systemd-journald when many entries are sent to the journal socket. A local attacker, or a remote one if systemd-journal-remote is used, may use this flaw to crash systemd-journald or execute code with journald privileges. Versions through v240 are vulnerable.", + "cvss": null, + "fix": { + "versions": [ + "232-25+deb9u7" + ], + "state": "fixed" + }, + "advisories": [ + { + "id": "DSA-4367-1", + "link": "https://security-tracker.debian.org/tracker/DSA-4367-1" + }, + { + "id": "DSA-4367-2", + "link": "https://security-tracker.debian.org/tracker/DSA-4367-2" + } + ] + }, + "relatedVulnerabilities": [ + { + "id": "CVE-2018-16865", + "dataSource": "https://nvd.nist.gov/vuln/detail/CVE-2018-16865", + "namespace": "nvd:cpe", + "severity": "High", + "urls": [ + "http://packetstormsecurity.com/files/152841/System-Down-A-systemd-journald-Exploit.html", + "http://seclists.org/fulldisclosure/2019/May/21", + "http://www.openwall.com/lists/oss-security/2019/05/10/4", + "http://www.openwall.com/lists/oss-security/2021/07/20/2", + "http://www.securityfocus.com/bid/106525", + "https://access.redhat.com/errata/RHBA-2019:0327", + "https://access.redhat.com/errata/RHSA-2019:0049", + "https://access.redhat.com/errata/RHSA-2019:0204", + "https://access.redhat.com/errata/RHSA-2019:0271", + "https://access.redhat.com/errata/RHSA-2019:0342", + "https://access.redhat.com/errata/RHSA-2019:0361", + "https://access.redhat.com/errata/RHSA-2019:2402", + "https://bugzilla.redhat.com/show_bug.cgi?id=CVE-2018-16865", + "https://lists.debian.org/debian-lts-announce/2019/01/msg00016.html", + "https://seclists.org/bugtraq/2019/May/25", + "https://security.gentoo.org/glsa/201903-07", + "https://security.netapp.com/advisory/ntap-20190117-0001/", + "https://usn.ubuntu.com/3855-1/", + "https://www.debian.org/security/2019/dsa-4367", + "https://www.oracle.com/technetwork/security-advisory/cpuapr2019-5072813.html", + "https://www.qualys.com/2019/01/09/system-down/system-down.txt" + ], + "description": "An allocation of memory without limits, that could result in the stack clashing with another memory region, was discovered in systemd-journald when many entries are sent to the journal socket. A local attacker, or a remote one if systemd-journal-remote is used, may use this flaw to crash systemd-journald or execute code with journald privileges. Versions through v240 are vulnerable.", + "cvss": null + } + ], + "matchDetails": [ + { + "type": "exact-indirect-match", + "matcher": "dpkg-matcher", + "searchedBy": { + "distro": { + "type": "debian", + "version": "9" + }, + "namespace": "debian:distro:debian:9", + "package": { + "name": "systemd", + "version": "232-25+deb9u6" + } + }, + "found": { + "versionConstraint": "\u003c 232-25+deb9u7 (deb)", + "vulnerabilityID": "CVE-2018-16865" + } + } + ], + "artifact": { + "name": "libudev1", + "version": "232-25+deb9u6", + "type": "deb", + "locations": null, + "language": "", + "licenses": [ + "LicenseRef-CC0", + "LicenseRef-Expat", + "GPL-2.0-only", + "GPL-2.0-or-later", + "LGPL-2.1-only", + "LGPL-2.1-or-later", + "LicenseRef-public-domain" + ], + "cpes": [ + "cpe:2.3:a:libudev1:libudev1:232-25+deb9u6:*:*:*:*:*:*:*" + ], + "purl": "pkg:deb/debian/libudev1@232-25+deb9u6?arch=amd64\u0026upstream=systemd\u0026distro=debian-9", + "upstreams": [ + { + "name": "systemd" + } + ], + "metadata": null + } + }, + { + "vulnerability": { + "id": "CVE-2018-16866", + "dataSource": "https://security-tracker.debian.org/tracker/CVE-2018-16866", + "namespace": "debian:distro:debian:9", + "severity": "Low", + "urls": [ + "https://security-tracker.debian.org/tracker/CVE-2018-16866" + ], + "description": "An out of bounds read was discovered in systemd-journald in the way it parses log messages that terminate with a colon ':'. A local attacker can use this flaw to disclose process memory data. Versions from v221 to v239 are vulnerable.", + "cvss": null, + "fix": { + "versions": [ + "232-25+deb9u7" + ], + "state": "fixed" + }, + "advisories": [ + { + "id": "DSA-4367-1", + "link": "https://security-tracker.debian.org/tracker/DSA-4367-1" + }, + { + "id": "DSA-4367-2", + "link": "https://security-tracker.debian.org/tracker/DSA-4367-2" + } + ] + }, + "relatedVulnerabilities": [ + { + "id": "CVE-2018-16866", + "dataSource": "https://nvd.nist.gov/vuln/detail/CVE-2018-16866", + "namespace": "nvd:cpe", + "severity": "Low", + "urls": [ + "http://packetstormsecurity.com/files/152841/System-Down-A-systemd-journald-Exploit.html", + "http://seclists.org/fulldisclosure/2019/May/21", + "http://www.openwall.com/lists/oss-security/2019/05/10/4", + "http://www.securityfocus.com/bid/106527", + "https://access.redhat.com/errata/RHSA-2019:2091", + "https://access.redhat.com/errata/RHSA-2019:3222", + "https://access.redhat.com/errata/RHSA-2020:0593", + "https://bugzilla.redhat.com/show_bug.cgi?id=CVE-2018-16866", + "https://seclists.org/bugtraq/2019/May/25", + "https://security.gentoo.org/glsa/201903-07", + "https://security.netapp.com/advisory/ntap-20190117-0001/", + "https://usn.ubuntu.com/3855-1/", + "https://www.debian.org/security/2019/dsa-4367", + "https://www.qualys.com/2019/01/09/system-down/system-down.txt" + ], + "description": "An out of bounds read was discovered in systemd-journald in the way it parses log messages that terminate with a colon ':'. A local attacker can use this flaw to disclose process memory data. Versions from v221 to v239 are vulnerable.", + "cvss": null + } + ], + "matchDetails": [ + { + "type": "exact-indirect-match", + "matcher": "dpkg-matcher", + "searchedBy": { + "distro": { + "type": "debian", + "version": "9" + }, + "namespace": "debian:distro:debian:9", + "package": { + "name": "systemd", + "version": "232-25+deb9u6" + } + }, + "found": { + "versionConstraint": "\u003c 232-25+deb9u7 (deb)", + "vulnerabilityID": "CVE-2018-16866" + } + } + ], + "artifact": { + "name": "libsystemd0", + "version": "232-25+deb9u6", + "type": "deb", + "locations": null, + "language": "", + "licenses": [ + "LicenseRef-CC0", + "LicenseRef-Expat", + "GPL-2.0-only", + "GPL-2.0-or-later", + "LGPL-2.1-only", + "LGPL-2.1-or-later", + "LicenseRef-public-domain" + ], + "cpes": [ + "cpe:2.3:a:libsystemd0:libsystemd0:232-25+deb9u6:*:*:*:*:*:*:*" + ], + "purl": "pkg:deb/debian/libsystemd0@232-25+deb9u6?arch=amd64\u0026upstream=systemd\u0026distro=debian-9", + "upstreams": [ + { + "name": "systemd" + } + ], + "metadata": null + } + }, + { + "vulnerability": { + "id": "CVE-2018-16866", + "dataSource": "https://security-tracker.debian.org/tracker/CVE-2018-16866", + "namespace": "debian:distro:debian:9", + "severity": "Low", + "urls": [ + "https://security-tracker.debian.org/tracker/CVE-2018-16866" + ], + "description": "An out of bounds read was discovered in systemd-journald in the way it parses log messages that terminate with a colon ':'. A local attacker can use this flaw to disclose process memory data. Versions from v221 to v239 are vulnerable.", + "cvss": null, + "fix": { + "versions": [ + "232-25+deb9u7" + ], + "state": "fixed" + }, + "advisories": [ + { + "id": "DSA-4367-1", + "link": "https://security-tracker.debian.org/tracker/DSA-4367-1" + }, + { + "id": "DSA-4367-2", + "link": "https://security-tracker.debian.org/tracker/DSA-4367-2" + } + ] + }, + "relatedVulnerabilities": [ + { + "id": "CVE-2018-16866", + "dataSource": "https://nvd.nist.gov/vuln/detail/CVE-2018-16866", + "namespace": "nvd:cpe", + "severity": "Low", + "urls": [ + "http://packetstormsecurity.com/files/152841/System-Down-A-systemd-journald-Exploit.html", + "http://seclists.org/fulldisclosure/2019/May/21", + "http://www.openwall.com/lists/oss-security/2019/05/10/4", + "http://www.securityfocus.com/bid/106527", + "https://access.redhat.com/errata/RHSA-2019:2091", + "https://access.redhat.com/errata/RHSA-2019:3222", + "https://access.redhat.com/errata/RHSA-2020:0593", + "https://bugzilla.redhat.com/show_bug.cgi?id=CVE-2018-16866", + "https://seclists.org/bugtraq/2019/May/25", + "https://security.gentoo.org/glsa/201903-07", + "https://security.netapp.com/advisory/ntap-20190117-0001/", + "https://usn.ubuntu.com/3855-1/", + "https://www.debian.org/security/2019/dsa-4367", + "https://www.qualys.com/2019/01/09/system-down/system-down.txt" + ], + "description": "An out of bounds read was discovered in systemd-journald in the way it parses log messages that terminate with a colon ':'. A local attacker can use this flaw to disclose process memory data. Versions from v221 to v239 are vulnerable.", + "cvss": null + } + ], + "matchDetails": [ + { + "type": "exact-indirect-match", + "matcher": "dpkg-matcher", + "searchedBy": { + "distro": { + "type": "debian", + "version": "9" + }, + "namespace": "debian:distro:debian:9", + "package": { + "name": "systemd", + "version": "232-25+deb9u6" + } + }, + "found": { + "versionConstraint": "\u003c 232-25+deb9u7 (deb)", + "vulnerabilityID": "CVE-2018-16866" + } + } + ], + "artifact": { + "name": "libudev1", + "version": "232-25+deb9u6", + "type": "deb", + "locations": null, + "language": "", + "licenses": [ + "LicenseRef-CC0", + "LicenseRef-Expat", + "GPL-2.0-only", + "GPL-2.0-or-later", + "LGPL-2.1-only", + "LGPL-2.1-or-later", + "LicenseRef-public-domain" + ], + "cpes": [ + "cpe:2.3:a:libudev1:libudev1:232-25+deb9u6:*:*:*:*:*:*:*" + ], + "purl": "pkg:deb/debian/libudev1@232-25+deb9u6?arch=amd64\u0026upstream=systemd\u0026distro=debian-9", + "upstreams": [ + { + "name": "systemd" + } + ], + "metadata": null + } + }, + { + "vulnerability": { + "id": "CVE-2018-16888", + "dataSource": "https://security-tracker.debian.org/tracker/CVE-2018-16888", + "namespace": "debian:distro:debian:9", + "severity": "Low", + "urls": [ + "https://security-tracker.debian.org/tracker/CVE-2018-16888" + ], + "description": "It was discovered systemd does not correctly check the content of PIDFile files before using it to kill processes. When a service is run from an unprivileged user (e.g. User field set in the service file), a local attacker who is able to write to the PIDFile of the mentioned service may use this flaw to trick systemd into killing other services and/or privileged processes. Versions before v237 are vulnerable.", + "cvss": null, + "fix": { + "versions": [], + "state": "wont-fix" + }, + "advisories": null + }, + "relatedVulnerabilities": [ + { + "id": "CVE-2018-16888", + "dataSource": "https://nvd.nist.gov/vuln/detail/CVE-2018-16888", + "namespace": "nvd:cpe", + "severity": "Medium", + "urls": [ + "https://access.redhat.com/errata/RHSA-2019:2091", + "https://bugzilla.redhat.com/show_bug.cgi?id=CVE-2018-16888", + "https://lists.apache.org/thread.html/5960a34a524848cd722fd7ab7e2227eac10107b0f90d9d1e9c3caa74@%3Cuser.cassandra.apache.org%3E", + "https://security.netapp.com/advisory/ntap-20190307-0007/", + "https://usn.ubuntu.com/4269-1/" + ], + "description": "It was discovered systemd does not correctly check the content of PIDFile files before using it to kill processes. When a service is run from an unprivileged user (e.g. User field set in the service file), a local attacker who is able to write to the PIDFile of the mentioned service may use this flaw to trick systemd into killing other services and/or privileged processes. Versions before v237 are vulnerable.", + "cvss": null + } + ], + "matchDetails": [ + { + "type": "exact-indirect-match", + "matcher": "dpkg-matcher", + "searchedBy": { + "distro": { + "type": "debian", + "version": "9" + }, + "namespace": "debian:distro:debian:9", + "package": { + "name": "systemd", + "version": "232-25+deb9u6" + } + }, + "found": { + "versionConstraint": "none (deb)", + "vulnerabilityID": "CVE-2018-16888" + } + } + ], + "artifact": { + "name": "libsystemd0", + "version": "232-25+deb9u6", + "type": "deb", + "locations": null, + "language": "", + "licenses": [ + "LicenseRef-CC0", + "LicenseRef-Expat", + "GPL-2.0-only", + "GPL-2.0-or-later", + "LGPL-2.1-only", + "LGPL-2.1-or-later", + "LicenseRef-public-domain" + ], + "cpes": [ + "cpe:2.3:a:libsystemd0:libsystemd0:232-25+deb9u6:*:*:*:*:*:*:*" + ], + "purl": "pkg:deb/debian/libsystemd0@232-25+deb9u6?arch=amd64\u0026upstream=systemd\u0026distro=debian-9", + "upstreams": [ + { + "name": "systemd" + } + ], + "metadata": null + } + }, + { + "vulnerability": { + "id": "CVE-2018-16888", + "dataSource": "https://security-tracker.debian.org/tracker/CVE-2018-16888", + "namespace": "debian:distro:debian:9", + "severity": "Low", + "urls": [ + "https://security-tracker.debian.org/tracker/CVE-2018-16888" + ], + "description": "It was discovered systemd does not correctly check the content of PIDFile files before using it to kill processes. When a service is run from an unprivileged user (e.g. User field set in the service file), a local attacker who is able to write to the PIDFile of the mentioned service may use this flaw to trick systemd into killing other services and/or privileged processes. Versions before v237 are vulnerable.", + "cvss": null, + "fix": { + "versions": [], + "state": "wont-fix" + }, + "advisories": null + }, + "relatedVulnerabilities": [ + { + "id": "CVE-2018-16888", + "dataSource": "https://nvd.nist.gov/vuln/detail/CVE-2018-16888", + "namespace": "nvd:cpe", + "severity": "Medium", + "urls": [ + "https://access.redhat.com/errata/RHSA-2019:2091", + "https://bugzilla.redhat.com/show_bug.cgi?id=CVE-2018-16888", + "https://lists.apache.org/thread.html/5960a34a524848cd722fd7ab7e2227eac10107b0f90d9d1e9c3caa74@%3Cuser.cassandra.apache.org%3E", + "https://security.netapp.com/advisory/ntap-20190307-0007/", + "https://usn.ubuntu.com/4269-1/" + ], + "description": "It was discovered systemd does not correctly check the content of PIDFile files before using it to kill processes. When a service is run from an unprivileged user (e.g. User field set in the service file), a local attacker who is able to write to the PIDFile of the mentioned service may use this flaw to trick systemd into killing other services and/or privileged processes. Versions before v237 are vulnerable.", + "cvss": null + } + ], + "matchDetails": [ + { + "type": "exact-indirect-match", + "matcher": "dpkg-matcher", + "searchedBy": { + "distro": { + "type": "debian", + "version": "9" + }, + "namespace": "debian:distro:debian:9", + "package": { + "name": "systemd", + "version": "232-25+deb9u6" + } + }, + "found": { + "versionConstraint": "none (deb)", + "vulnerabilityID": "CVE-2018-16888" + } + } + ], + "artifact": { + "name": "libudev1", + "version": "232-25+deb9u6", + "type": "deb", + "locations": null, + "language": "", + "licenses": [ + "LicenseRef-CC0", + "LicenseRef-Expat", + "GPL-2.0-only", + "GPL-2.0-or-later", + "LGPL-2.1-only", + "LGPL-2.1-or-later", + "LicenseRef-public-domain" + ], + "cpes": [ + "cpe:2.3:a:libudev1:libudev1:232-25+deb9u6:*:*:*:*:*:*:*" + ], + "purl": "pkg:deb/debian/libudev1@232-25+deb9u6?arch=amd64\u0026upstream=systemd\u0026distro=debian-9", + "upstreams": [ + { + "name": "systemd" + } + ], + "metadata": null + } + }, + { + "vulnerability": { + "id": "CVE-2018-17000", + "dataSource": "https://security-tracker.debian.org/tracker/CVE-2018-17000", + "namespace": "debian:distro:debian:9", + "severity": "Medium", + "urls": [ + "https://security-tracker.debian.org/tracker/CVE-2018-17000" + ], + "description": "A NULL pointer dereference in the function _TIFFmemcmp at tif_unix.c (called from TIFFWriteDirectoryTagTransferfunction) in LibTIFF 4.0.9 allows an attacker to cause a denial-of-service through a crafted tiff file. This vulnerability can be triggered by the executable tiffcp.", + "cvss": null, + "fix": { + "versions": [ + "4.0.8-2+deb9u5" + ], + "state": "fixed" + }, + "advisories": [ + { + "id": "DSA-4670-1", + "link": "https://security-tracker.debian.org/tracker/DSA-4670-1" + } + ] + }, + "relatedVulnerabilities": [ + { + "id": "CVE-2018-17000", + "dataSource": "https://nvd.nist.gov/vuln/detail/CVE-2018-17000", + "namespace": "nvd:cpe", + "severity": "Medium", + "urls": [ + "http://bugzilla.maptools.org/show_bug.cgi?id=2811", + "http://lists.opensuse.org/opensuse-security-announce/2019-04/msg00041.html", + "http://www.securityfocus.com/bid/105342", + "https://lists.debian.org/debian-lts-announce/2019/02/msg00026.html", + "https://usn.ubuntu.com/3906-1/", + "https://www.debian.org/security/2020/dsa-4670" + ], + "description": "A NULL pointer dereference in the function _TIFFmemcmp at tif_unix.c (called from TIFFWriteDirectoryTagTransferfunction) in LibTIFF 4.0.9 allows an attacker to cause a denial-of-service through a crafted tiff file. This vulnerability can be triggered by the executable tiffcp.", + "cvss": null + } + ], + "matchDetails": [ + { + "type": "exact-indirect-match", + "matcher": "dpkg-matcher", + "searchedBy": { + "distro": { + "type": "debian", + "version": "9" + }, + "namespace": "debian:distro:debian:9", + "package": { + "name": "tiff", + "version": "4.0.8-2+deb9u2" + } + }, + "found": { + "versionConstraint": "\u003c 4.0.8-2+deb9u5 (deb)", + "vulnerabilityID": "CVE-2018-17000" + } + } + ], + "artifact": { + "name": "libtiff5", + "version": "4.0.8-2+deb9u2", + "type": "deb", + "locations": null, + "language": "", + "licenses": [ + "LicenseRef-Hylafax" + ], + "cpes": [ + "cpe:2.3:a:libtiff5:libtiff5:4.0.8-2+deb9u2:*:*:*:*:*:*:*" + ], + "purl": "pkg:deb/debian/libtiff5@4.0.8-2+deb9u2?arch=amd64\u0026upstream=tiff\u0026distro=debian-9", + "upstreams": [ + { + "name": "tiff" + } + ], + "metadata": null + } + }, + { + "vulnerability": { + "id": "CVE-2018-17100", + "dataSource": "https://security-tracker.debian.org/tracker/CVE-2018-17100", + "namespace": "debian:distro:debian:9", + "severity": "High", + "urls": [ + "https://security-tracker.debian.org/tracker/CVE-2018-17100" + ], + "description": "An issue was discovered in LibTIFF 4.0.9. There is a int32 overflow in multiply_ms in tools/ppm2tiff.c, which can cause a denial of service (crash) or possibly have unspecified other impact via a crafted image file.", + "cvss": null, + "fix": { + "versions": [ + "4.0.8-2+deb9u5" + ], + "state": "fixed" + }, + "advisories": [ + { + "id": "DSA-4670-1", + "link": "https://security-tracker.debian.org/tracker/DSA-4670-1" + } + ] + }, + "relatedVulnerabilities": [ + { + "id": "CVE-2018-17100", + "dataSource": "https://nvd.nist.gov/vuln/detail/CVE-2018-17100", + "namespace": "nvd:cpe", + "severity": "High", + "urls": [ + "http://bugzilla.maptools.org/show_bug.cgi?id=2810", + "https://access.redhat.com/errata/RHSA-2019:2053", + "https://gitlab.com/libtiff/libtiff/merge_requests/33/diffs?commit_id=6da1fb3f64d43be37e640efbec60400d1f1ac39e", + "https://lists.debian.org/debian-lts-announce/2018/10/msg00019.html", + "https://usn.ubuntu.com/3864-1/", + "https://usn.ubuntu.com/3906-2/", + "https://www.debian.org/security/2020/dsa-4670" + ], + "description": "An issue was discovered in LibTIFF 4.0.9. There is a int32 overflow in multiply_ms in tools/ppm2tiff.c, which can cause a denial of service (crash) or possibly have unspecified other impact via a crafted image file.", + "cvss": null + } + ], + "matchDetails": [ + { + "type": "exact-indirect-match", + "matcher": "dpkg-matcher", + "searchedBy": { + "distro": { + "type": "debian", + "version": "9" + }, + "namespace": "debian:distro:debian:9", + "package": { + "name": "tiff", + "version": "4.0.8-2+deb9u2" + } + }, + "found": { + "versionConstraint": "\u003c 4.0.8-2+deb9u5 (deb)", + "vulnerabilityID": "CVE-2018-17100" + } + } + ], + "artifact": { + "name": "libtiff5", + "version": "4.0.8-2+deb9u2", + "type": "deb", + "locations": null, + "language": "", + "licenses": [ + "LicenseRef-Hylafax" + ], + "cpes": [ + "cpe:2.3:a:libtiff5:libtiff5:4.0.8-2+deb9u2:*:*:*:*:*:*:*" + ], + "purl": "pkg:deb/debian/libtiff5@4.0.8-2+deb9u2?arch=amd64\u0026upstream=tiff\u0026distro=debian-9", + "upstreams": [ + { + "name": "tiff" + } + ], + "metadata": null + } + }, + { + "vulnerability": { + "id": "CVE-2018-17101", + "dataSource": "https://security-tracker.debian.org/tracker/CVE-2018-17101", + "namespace": "debian:distro:debian:9", + "severity": "High", + "urls": [ + "https://security-tracker.debian.org/tracker/CVE-2018-17101" + ], + "description": "An issue was discovered in LibTIFF 4.0.9. There are two out-of-bounds writes in cpTags in tools/tiff2bw.c and tools/pal2rgb.c, which can cause a denial of service (application crash) or possibly have unspecified other impact via a crafted image file.", + "cvss": null, + "fix": { + "versions": [ + "4.0.8-2+deb9u4" + ], + "state": "fixed" + }, + "advisories": [ + { + "id": "DSA-4349-1", + "link": "https://security-tracker.debian.org/tracker/DSA-4349-1" + } + ] + }, + "relatedVulnerabilities": [ + { + "id": "CVE-2018-17101", + "dataSource": "https://nvd.nist.gov/vuln/detail/CVE-2018-17101", + "namespace": "nvd:cpe", + "severity": "High", + "urls": [ + "http://bugzilla.maptools.org/show_bug.cgi?id=2807", + "http://www.securityfocus.com/bid/105370", + "https://access.redhat.com/errata/RHSA-2019:2053", + "https://gitlab.com/libtiff/libtiff/merge_requests/33/diffs?commit_id=f1b94e8a3ba49febdd3361c0214a1d1149251577", + "https://lists.debian.org/debian-lts-announce/2018/10/msg00019.html", + "https://usn.ubuntu.com/3864-1/", + "https://usn.ubuntu.com/3906-2/", + "https://www.debian.org/security/2018/dsa-4349" + ], + "description": "An issue was discovered in LibTIFF 4.0.9. There are two out-of-bounds writes in cpTags in tools/tiff2bw.c and tools/pal2rgb.c, which can cause a denial of service (application crash) or possibly have unspecified other impact via a crafted image file.", + "cvss": null + } + ], + "matchDetails": [ + { + "type": "exact-indirect-match", + "matcher": "dpkg-matcher", + "searchedBy": { + "distro": { + "type": "debian", + "version": "9" + }, + "namespace": "debian:distro:debian:9", + "package": { + "name": "tiff", + "version": "4.0.8-2+deb9u2" + } + }, + "found": { + "versionConstraint": "\u003c 4.0.8-2+deb9u4 (deb)", + "vulnerabilityID": "CVE-2018-17101" + } + } + ], + "artifact": { + "name": "libtiff5", + "version": "4.0.8-2+deb9u2", + "type": "deb", + "locations": null, + "language": "", + "licenses": [ + "LicenseRef-Hylafax" + ], + "cpes": [ + "cpe:2.3:a:libtiff5:libtiff5:4.0.8-2+deb9u2:*:*:*:*:*:*:*" + ], + "purl": "pkg:deb/debian/libtiff5@4.0.8-2+deb9u2?arch=amd64\u0026upstream=tiff\u0026distro=debian-9", + "upstreams": [ + { + "name": "tiff" + } + ], + "metadata": null + } + }, + { + "vulnerability": { + "id": "CVE-2018-18311", + "dataSource": "https://security-tracker.debian.org/tracker/CVE-2018-18311", + "namespace": "debian:distro:debian:9", + "severity": "Critical", + "urls": [ + "https://security-tracker.debian.org/tracker/CVE-2018-18311" + ], + "description": "Perl before 5.26.3 and 5.28.x before 5.28.1 has a buffer overflow via a crafted regular expression that triggers invalid write operations.", + "cvss": null, + "fix": { + "versions": [ + "5.24.1-3+deb9u5" + ], + "state": "fixed" + }, + "advisories": [ + { + "id": "DSA-4347-1", + "link": "https://security-tracker.debian.org/tracker/DSA-4347-1" + } + ] + }, + "relatedVulnerabilities": [ + { + "id": "CVE-2018-18311", + "dataSource": "https://nvd.nist.gov/vuln/detail/CVE-2018-18311", + "namespace": "nvd:cpe", + "severity": "Critical", + "urls": [ + "http://seclists.org/fulldisclosure/2019/Mar/49", + "http://www.securityfocus.com/bid/106145", + "http://www.securitytracker.com/id/1042181", + "https://access.redhat.com/errata/RHBA-2019:0327", + "https://access.redhat.com/errata/RHSA-2019:0001", + "https://access.redhat.com/errata/RHSA-2019:0010", + "https://access.redhat.com/errata/RHSA-2019:0109", + "https://access.redhat.com/errata/RHSA-2019:1790", + "https://access.redhat.com/errata/RHSA-2019:1942", + "https://access.redhat.com/errata/RHSA-2019:2400", + "https://bugzilla.redhat.com/show_bug.cgi?id=1646730", + "https://github.com/Perl/perl5/commit/34716e2a6ee2af96078d62b065b7785c001194be", + "https://kc.mcafee.com/corporate/index?page=content\u0026id=SB10278", + "https://lists.debian.org/debian-lts-announce/2018/11/msg00039.html", + "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/RWQGEB543QN7SSBRKYJM6PSOC3RLYGSM/", + "https://metacpan.org/changes/release/SHAY/perl-5.26.3", + "https://metacpan.org/changes/release/SHAY/perl-5.28.1", + "https://rt.perl.org/Ticket/Display.html?id=133204", + "https://seclists.org/bugtraq/2019/Mar/42", + "https://security.gentoo.org/glsa/201909-01", + "https://security.netapp.com/advisory/ntap-20190221-0003/", + "https://support.apple.com/kb/HT209600", + "https://usn.ubuntu.com/3834-1/", + "https://usn.ubuntu.com/3834-2/", + "https://www.debian.org/security/2018/dsa-4347", + "https://www.oracle.com/security-alerts/cpuapr2020.html", + "https://www.oracle.com/security-alerts/cpujul2020.html", + "https://www.oracle.com/technetwork/security-advisory/cpujul2019-5072835.html" + ], + "description": "Perl before 5.26.3 and 5.28.x before 5.28.1 has a buffer overflow via a crafted regular expression that triggers invalid write operations.", + "cvss": null + } + ], + "matchDetails": [ + { + "type": "exact-indirect-match", + "matcher": "dpkg-matcher", + "searchedBy": { + "distro": { + "type": "debian", + "version": "9" + }, + "namespace": "debian:distro:debian:9", + "package": { + "name": "perl", + "version": "5.24.1-3+deb9u4" + } + }, + "found": { + "versionConstraint": "\u003c 5.24.1-3+deb9u5 (deb)", + "vulnerabilityID": "CVE-2018-18311" + } + } + ], + "artifact": { + "name": "perl-base", + "version": "5.24.1-3+deb9u4", + "type": "deb", + "locations": null, + "language": "", + "licenses": [ + "LicenseRef-Artistic", + "Artistic-2.0", + "BSD-3-Clause", + "LicenseRef-BSD-3-clause-GENERIC", + "LicenseRef-BSD-3-clause-with-weird-numbering", + "LicenseRef-BSD-4-clause-POWERDOG", + "LicenseRef-BZIP", + "LicenseRef-DONT-CHANGE-THE-GPL", + "LicenseRef-Expat", + "GPL-1.0-only", + "GPL-1.0-or-later", + "GPL-2.0-only", + "GPL-2.0-or-later", + "LicenseRef-GPL-3--WITH-BISON-EXCEPTION", + "LicenseRef-HSIEH-BSD", + "LicenseRef-HSIEH-DERIVATIVE", + "LGPL-2.1-only", + "LicenseRef-REGCOMP", + "LicenseRef-REGCOMP-", + "LicenseRef-RRA-KEEP-THIS-NOTICE", + "LicenseRef-S2P", + "LicenseRef-SDBM-PUBLIC-DOMAIN", + "LicenseRef-TEXT-TABS", + "LicenseRef-Unicode", + "Zlib" + ], + "cpes": [ + "cpe:2.3:a:perl-base:perl-base:5.24.1-3+deb9u4:*:*:*:*:*:*:*", + "cpe:2.3:a:perl-base:perl_base:5.24.1-3+deb9u4:*:*:*:*:*:*:*", + "cpe:2.3:a:perl_base:perl-base:5.24.1-3+deb9u4:*:*:*:*:*:*:*", + "cpe:2.3:a:perl_base:perl_base:5.24.1-3+deb9u4:*:*:*:*:*:*:*", + "cpe:2.3:a:perl:perl-base:5.24.1-3+deb9u4:*:*:*:*:*:*:*", + "cpe:2.3:a:perl:perl_base:5.24.1-3+deb9u4:*:*:*:*:*:*:*" + ], + "purl": "pkg:deb/debian/perl-base@5.24.1-3+deb9u4?arch=amd64\u0026upstream=perl\u0026distro=debian-9", + "upstreams": [ + { + "name": "perl" + } + ], + "metadata": null + } + }, + { + "vulnerability": { + "id": "CVE-2018-18312", + "dataSource": "https://security-tracker.debian.org/tracker/CVE-2018-18312", + "namespace": "debian:distro:debian:9", + "severity": "Critical", + "urls": [ + "https://security-tracker.debian.org/tracker/CVE-2018-18312" + ], + "description": "Perl before 5.26.3 and 5.28.0 before 5.28.1 has a buffer overflow via a crafted regular expression that triggers invalid write operations.", + "cvss": null, + "fix": { + "versions": [ + "5.24.1-3+deb9u5" + ], + "state": "fixed" + }, + "advisories": [ + { + "id": "DSA-4347-1", + "link": "https://security-tracker.debian.org/tracker/DSA-4347-1" + } + ] + }, + "relatedVulnerabilities": [ + { + "id": "CVE-2018-18312", + "dataSource": "https://nvd.nist.gov/vuln/detail/CVE-2018-18312", + "namespace": "nvd:cpe", + "severity": "Critical", + "urls": [ + "http://www.securityfocus.com/bid/106179", + "http://www.securitytracker.com/id/1042181", + "https://access.redhat.com/errata/RHSA-2019:0001", + "https://access.redhat.com/errata/RHSA-2019:0010", + "https://bugzilla.redhat.com/show_bug.cgi?id=1646734", + "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/RWQGEB543QN7SSBRKYJM6PSOC3RLYGSM/", + "https://metacpan.org/changes/release/SHAY/perl-5.26.3", + "https://metacpan.org/changes/release/SHAY/perl-5.28.1", + "https://rt.perl.org/Public/Bug/Display.html?id=133423", + "https://security.gentoo.org/glsa/201909-01", + "https://security.netapp.com/advisory/ntap-20190221-0003/", + "https://usn.ubuntu.com/3834-1/", + "https://www.debian.org/security/2018/dsa-4347", + "https://www.oracle.com/security-alerts/cpujul2020.html" + ], + "description": "Perl before 5.26.3 and 5.28.0 before 5.28.1 has a buffer overflow via a crafted regular expression that triggers invalid write operations.", + "cvss": null + } + ], + "matchDetails": [ + { + "type": "exact-indirect-match", + "matcher": "dpkg-matcher", + "searchedBy": { + "distro": { + "type": "debian", + "version": "9" + }, + "namespace": "debian:distro:debian:9", + "package": { + "name": "perl", + "version": "5.24.1-3+deb9u4" + } + }, + "found": { + "versionConstraint": "\u003c 5.24.1-3+deb9u5 (deb)", + "vulnerabilityID": "CVE-2018-18312" + } + } + ], + "artifact": { + "name": "perl-base", + "version": "5.24.1-3+deb9u4", + "type": "deb", + "locations": null, + "language": "", + "licenses": [ + "LicenseRef-Artistic", + "Artistic-2.0", + "BSD-3-Clause", + "LicenseRef-BSD-3-clause-GENERIC", + "LicenseRef-BSD-3-clause-with-weird-numbering", + "LicenseRef-BSD-4-clause-POWERDOG", + "LicenseRef-BZIP", + "LicenseRef-DONT-CHANGE-THE-GPL", + "LicenseRef-Expat", + "GPL-1.0-only", + "GPL-1.0-or-later", + "GPL-2.0-only", + "GPL-2.0-or-later", + "LicenseRef-GPL-3--WITH-BISON-EXCEPTION", + "LicenseRef-HSIEH-BSD", + "LicenseRef-HSIEH-DERIVATIVE", + "LGPL-2.1-only", + "LicenseRef-REGCOMP", + "LicenseRef-REGCOMP-", + "LicenseRef-RRA-KEEP-THIS-NOTICE", + "LicenseRef-S2P", + "LicenseRef-SDBM-PUBLIC-DOMAIN", + "LicenseRef-TEXT-TABS", + "LicenseRef-Unicode", + "Zlib" + ], + "cpes": [ + "cpe:2.3:a:perl-base:perl-base:5.24.1-3+deb9u4:*:*:*:*:*:*:*", + "cpe:2.3:a:perl-base:perl_base:5.24.1-3+deb9u4:*:*:*:*:*:*:*", + "cpe:2.3:a:perl_base:perl-base:5.24.1-3+deb9u4:*:*:*:*:*:*:*", + "cpe:2.3:a:perl_base:perl_base:5.24.1-3+deb9u4:*:*:*:*:*:*:*", + "cpe:2.3:a:perl:perl-base:5.24.1-3+deb9u4:*:*:*:*:*:*:*", + "cpe:2.3:a:perl:perl_base:5.24.1-3+deb9u4:*:*:*:*:*:*:*" + ], + "purl": "pkg:deb/debian/perl-base@5.24.1-3+deb9u4?arch=amd64\u0026upstream=perl\u0026distro=debian-9", + "upstreams": [ + { + "name": "perl" + } + ], + "metadata": null + } + }, + { + "vulnerability": { + "id": "CVE-2018-18313", + "dataSource": "https://security-tracker.debian.org/tracker/CVE-2018-18313", + "namespace": "debian:distro:debian:9", + "severity": "Critical", + "urls": [ + "https://security-tracker.debian.org/tracker/CVE-2018-18313" + ], + "description": "Perl before 5.26.3 has a buffer over-read via a crafted regular expression that triggers disclosure of sensitive information from process memory.", + "cvss": null, + "fix": { + "versions": [ + "5.24.1-3+deb9u5" + ], + "state": "fixed" + }, + "advisories": [ + { + "id": "DSA-4347-1", + "link": "https://security-tracker.debian.org/tracker/DSA-4347-1" + } + ] + }, + "relatedVulnerabilities": [ + { + "id": "CVE-2018-18313", + "dataSource": "https://nvd.nist.gov/vuln/detail/CVE-2018-18313", + "namespace": "nvd:cpe", + "severity": "Critical", + "urls": [ + "http://seclists.org/fulldisclosure/2019/Mar/49", + "http://www.securitytracker.com/id/1042181", + "https://access.redhat.com/errata/RHSA-2019:0001", + "https://access.redhat.com/errata/RHSA-2019:0010", + "https://bugzilla.redhat.com/show_bug.cgi?id=1646738", + "https://github.com/Perl/perl5/commit/43b2f4ef399e2fd7240b4eeb0658686ad95f8e62", + "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/RWQGEB543QN7SSBRKYJM6PSOC3RLYGSM/", + "https://metacpan.org/changes/release/SHAY/perl-5.26.3", + "https://rt.perl.org/Ticket/Display.html?id=133192", + "https://seclists.org/bugtraq/2019/Mar/42", + "https://security.gentoo.org/glsa/201909-01", + "https://security.netapp.com/advisory/ntap-20190221-0003/", + "https://support.apple.com/kb/HT209600", + "https://usn.ubuntu.com/3834-1/", + "https://usn.ubuntu.com/3834-2/", + "https://www.debian.org/security/2018/dsa-4347", + "https://www.oracle.com/security-alerts/cpujul2020.html" + ], + "description": "Perl before 5.26.3 has a buffer over-read via a crafted regular expression that triggers disclosure of sensitive information from process memory.", + "cvss": null + } + ], + "matchDetails": [ + { + "type": "exact-indirect-match", + "matcher": "dpkg-matcher", + "searchedBy": { + "distro": { + "type": "debian", + "version": "9" + }, + "namespace": "debian:distro:debian:9", + "package": { + "name": "perl", + "version": "5.24.1-3+deb9u4" + } + }, + "found": { + "versionConstraint": "\u003c 5.24.1-3+deb9u5 (deb)", + "vulnerabilityID": "CVE-2018-18313" + } + } + ], + "artifact": { + "name": "perl-base", + "version": "5.24.1-3+deb9u4", + "type": "deb", + "locations": null, + "language": "", + "licenses": [ + "LicenseRef-Artistic", + "Artistic-2.0", + "BSD-3-Clause", + "LicenseRef-BSD-3-clause-GENERIC", + "LicenseRef-BSD-3-clause-with-weird-numbering", + "LicenseRef-BSD-4-clause-POWERDOG", + "LicenseRef-BZIP", + "LicenseRef-DONT-CHANGE-THE-GPL", + "LicenseRef-Expat", + "GPL-1.0-only", + "GPL-1.0-or-later", + "GPL-2.0-only", + "GPL-2.0-or-later", + "LicenseRef-GPL-3--WITH-BISON-EXCEPTION", + "LicenseRef-HSIEH-BSD", + "LicenseRef-HSIEH-DERIVATIVE", + "LGPL-2.1-only", + "LicenseRef-REGCOMP", + "LicenseRef-REGCOMP-", + "LicenseRef-RRA-KEEP-THIS-NOTICE", + "LicenseRef-S2P", + "LicenseRef-SDBM-PUBLIC-DOMAIN", + "LicenseRef-TEXT-TABS", + "LicenseRef-Unicode", + "Zlib" + ], + "cpes": [ + "cpe:2.3:a:perl-base:perl-base:5.24.1-3+deb9u4:*:*:*:*:*:*:*", + "cpe:2.3:a:perl-base:perl_base:5.24.1-3+deb9u4:*:*:*:*:*:*:*", + "cpe:2.3:a:perl_base:perl-base:5.24.1-3+deb9u4:*:*:*:*:*:*:*", + "cpe:2.3:a:perl_base:perl_base:5.24.1-3+deb9u4:*:*:*:*:*:*:*", + "cpe:2.3:a:perl:perl-base:5.24.1-3+deb9u4:*:*:*:*:*:*:*", + "cpe:2.3:a:perl:perl_base:5.24.1-3+deb9u4:*:*:*:*:*:*:*" + ], + "purl": "pkg:deb/debian/perl-base@5.24.1-3+deb9u4?arch=amd64\u0026upstream=perl\u0026distro=debian-9", + "upstreams": [ + { + "name": "perl" + } + ], + "metadata": null + } + }, + { + "vulnerability": { + "id": "CVE-2018-18314", + "dataSource": "https://security-tracker.debian.org/tracker/CVE-2018-18314", + "namespace": "debian:distro:debian:9", + "severity": "Critical", + "urls": [ + "https://security-tracker.debian.org/tracker/CVE-2018-18314" + ], + "description": "Perl before 5.26.3 has a buffer overflow via a crafted regular expression that triggers invalid write operations.", + "cvss": null, + "fix": { + "versions": [ + "5.24.1-3+deb9u5" + ], + "state": "fixed" + }, + "advisories": [ + { + "id": "DSA-4347-1", + "link": "https://security-tracker.debian.org/tracker/DSA-4347-1" + } + ] + }, + "relatedVulnerabilities": [ + { + "id": "CVE-2018-18314", + "dataSource": "https://nvd.nist.gov/vuln/detail/CVE-2018-18314", + "namespace": "nvd:cpe", + "severity": "Critical", + "urls": [ + "http://www.securityfocus.com/bid/106145", + "http://www.securitytracker.com/id/1042181", + "https://access.redhat.com/errata/RHSA-2019:0001", + "https://access.redhat.com/errata/RHSA-2019:0010", + "https://bugzilla.redhat.com/show_bug.cgi?id=1646751", + "https://github.com/Perl/perl5/commit/19a498a461d7c81ae3507c450953d1148efecf4f", + "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/RWQGEB543QN7SSBRKYJM6PSOC3RLYGSM/", + "https://metacpan.org/changes/release/SHAY/perl-5.26.3", + "https://rt.perl.org/Ticket/Display.html?id=131649", + "https://security.gentoo.org/glsa/201909-01", + "https://security.netapp.com/advisory/ntap-20190221-0003/", + "https://usn.ubuntu.com/3834-1/", + "https://www.debian.org/security/2018/dsa-4347", + "https://www.oracle.com/security-alerts/cpujul2020.html" + ], + "description": "Perl before 5.26.3 has a buffer overflow via a crafted regular expression that triggers invalid write operations.", + "cvss": null + } + ], + "matchDetails": [ + { + "type": "exact-indirect-match", + "matcher": "dpkg-matcher", + "searchedBy": { + "distro": { + "type": "debian", + "version": "9" + }, + "namespace": "debian:distro:debian:9", + "package": { + "name": "perl", + "version": "5.24.1-3+deb9u4" + } + }, + "found": { + "versionConstraint": "\u003c 5.24.1-3+deb9u5 (deb)", + "vulnerabilityID": "CVE-2018-18314" + } + } + ], + "artifact": { + "name": "perl-base", + "version": "5.24.1-3+deb9u4", + "type": "deb", + "locations": null, + "language": "", + "licenses": [ + "LicenseRef-Artistic", + "Artistic-2.0", + "BSD-3-Clause", + "LicenseRef-BSD-3-clause-GENERIC", + "LicenseRef-BSD-3-clause-with-weird-numbering", + "LicenseRef-BSD-4-clause-POWERDOG", + "LicenseRef-BZIP", + "LicenseRef-DONT-CHANGE-THE-GPL", + "LicenseRef-Expat", + "GPL-1.0-only", + "GPL-1.0-or-later", + "GPL-2.0-only", + "GPL-2.0-or-later", + "LicenseRef-GPL-3--WITH-BISON-EXCEPTION", + "LicenseRef-HSIEH-BSD", + "LicenseRef-HSIEH-DERIVATIVE", + "LGPL-2.1-only", + "LicenseRef-REGCOMP", + "LicenseRef-REGCOMP-", + "LicenseRef-RRA-KEEP-THIS-NOTICE", + "LicenseRef-S2P", + "LicenseRef-SDBM-PUBLIC-DOMAIN", + "LicenseRef-TEXT-TABS", + "LicenseRef-Unicode", + "Zlib" + ], + "cpes": [ + "cpe:2.3:a:perl-base:perl-base:5.24.1-3+deb9u4:*:*:*:*:*:*:*", + "cpe:2.3:a:perl-base:perl_base:5.24.1-3+deb9u4:*:*:*:*:*:*:*", + "cpe:2.3:a:perl_base:perl-base:5.24.1-3+deb9u4:*:*:*:*:*:*:*", + "cpe:2.3:a:perl_base:perl_base:5.24.1-3+deb9u4:*:*:*:*:*:*:*", + "cpe:2.3:a:perl:perl-base:5.24.1-3+deb9u4:*:*:*:*:*:*:*", + "cpe:2.3:a:perl:perl_base:5.24.1-3+deb9u4:*:*:*:*:*:*:*" + ], + "purl": "pkg:deb/debian/perl-base@5.24.1-3+deb9u4?arch=amd64\u0026upstream=perl\u0026distro=debian-9", + "upstreams": [ + { + "name": "perl" + } + ], + "metadata": null + } + }, + { + "vulnerability": { + "id": "CVE-2018-18557", + "dataSource": "https://security-tracker.debian.org/tracker/CVE-2018-18557", + "namespace": "debian:distro:debian:9", + "severity": "High", + "urls": [ + "https://security-tracker.debian.org/tracker/CVE-2018-18557" + ], + "description": "LibTIFF 3.9.3, 3.9.4, 3.9.5, 3.9.6, 3.9.7, 4.0.0alpha4, 4.0.0alpha5, 4.0.0alpha6, 4.0.0beta7, 4.0.0, 4.0.1, 4.0.2, 4.0.3, 4.0.4, 4.0.4beta, 4.0.5, 4.0.6, 4.0.7, 4.0.8 and 4.0.9 (with JBIG enabled) decodes arbitrarily-sized JBIG into a buffer, ignoring the buffer size, which leads to a tif_jbig.c JBIGDecode out-of-bounds write.", + "cvss": null, + "fix": { + "versions": [ + "4.0.8-2+deb9u4" + ], + "state": "fixed" + }, + "advisories": [ + { + "id": "DSA-4349-1", + "link": "https://security-tracker.debian.org/tracker/DSA-4349-1" + } + ] + }, + "relatedVulnerabilities": [ + { + "id": "CVE-2018-18557", + "dataSource": "https://nvd.nist.gov/vuln/detail/CVE-2018-18557", + "namespace": "nvd:cpe", + "severity": "High", + "urls": [ + "https://access.redhat.com/errata/RHSA-2019:2053", + "https://github.com/Hack-Me/Pocs_for_Multi_Versions/tree/main/CVE-2018-18557", + "https://gitlab.com/libtiff/libtiff/commit/681748ec2f5ce88da5f9fa6831e1653e46af8a66", + "https://gitlab.com/libtiff/libtiff/merge_requests/38", + "https://lists.debian.org/debian-lts-announce/2018/10/msg00019.html", + "https://security.gentoo.org/glsa/201904-15", + "https://usn.ubuntu.com/3864-1/", + "https://usn.ubuntu.com/3906-2/", + "https://www.debian.org/security/2018/dsa-4349", + "https://www.exploit-db.com/exploits/45694/" + ], + "description": "LibTIFF 3.9.3, 3.9.4, 3.9.5, 3.9.6, 3.9.7, 4.0.0alpha4, 4.0.0alpha5, 4.0.0alpha6, 4.0.0beta7, 4.0.0, 4.0.1, 4.0.2, 4.0.3, 4.0.4, 4.0.4beta, 4.0.5, 4.0.6, 4.0.7, 4.0.8 and 4.0.9 (with JBIG enabled) decodes arbitrarily-sized JBIG into a buffer, ignoring the buffer size, which leads to a tif_jbig.c JBIGDecode out-of-bounds write.", + "cvss": null + } + ], + "matchDetails": [ + { + "type": "exact-indirect-match", + "matcher": "dpkg-matcher", + "searchedBy": { + "distro": { + "type": "debian", + "version": "9" + }, + "namespace": "debian:distro:debian:9", + "package": { + "name": "tiff", + "version": "4.0.8-2+deb9u2" + } + }, + "found": { + "versionConstraint": "\u003c 4.0.8-2+deb9u4 (deb)", + "vulnerabilityID": "CVE-2018-18557" + } + } + ], + "artifact": { + "name": "libtiff5", + "version": "4.0.8-2+deb9u2", + "type": "deb", + "locations": null, + "language": "", + "licenses": [ + "LicenseRef-Hylafax" + ], + "cpes": [ + "cpe:2.3:a:libtiff5:libtiff5:4.0.8-2+deb9u2:*:*:*:*:*:*:*" + ], + "purl": "pkg:deb/debian/libtiff5@4.0.8-2+deb9u2?arch=amd64\u0026upstream=tiff\u0026distro=debian-9", + "upstreams": [ + { + "name": "tiff" + } + ], + "metadata": null + } + }, + { + "vulnerability": { + "id": "CVE-2018-18661", + "dataSource": "https://security-tracker.debian.org/tracker/CVE-2018-18661", + "namespace": "debian:distro:debian:9", + "severity": "Negligible", + "urls": [ + "https://security-tracker.debian.org/tracker/CVE-2018-18661" + ], + "description": "An issue was discovered in LibTIFF 4.0.9. There is a NULL pointer dereference in the function LZWDecode in the file tif_lzw.c.", + "cvss": null, + "fix": { + "versions": [], + "state": "not-fixed" + }, + "advisories": null + }, + "relatedVulnerabilities": [ + { + "id": "CVE-2018-18661", + "dataSource": "https://nvd.nist.gov/vuln/detail/CVE-2018-18661", + "namespace": "nvd:cpe", + "severity": "Medium", + "urls": [ + "http://bugzilla.maptools.org/show_bug.cgi?id=2819", + "http://www.securityfocus.com/bid/105762", + "https://access.redhat.com/errata/RHSA-2019:2053", + "https://lists.debian.org/debian-lts-announce/2019/11/msg00027.html", + "https://usn.ubuntu.com/3864-1/" + ], + "description": "An issue was discovered in LibTIFF 4.0.9. There is a NULL pointer dereference in the function LZWDecode in the file tif_lzw.c.", + "cvss": null + } + ], + "matchDetails": [ + { + "type": "exact-indirect-match", + "matcher": "dpkg-matcher", + "searchedBy": { + "distro": { + "type": "debian", + "version": "9" + }, + "namespace": "debian:distro:debian:9", + "package": { + "name": "tiff", + "version": "4.0.8-2+deb9u2" + } + }, + "found": { + "versionConstraint": "none (deb)", + "vulnerabilityID": "CVE-2018-18661" + } + } + ], + "artifact": { + "name": "libtiff5", + "version": "4.0.8-2+deb9u2", + "type": "deb", + "locations": null, + "language": "", + "licenses": [ + "LicenseRef-Hylafax" + ], + "cpes": [ + "cpe:2.3:a:libtiff5:libtiff5:4.0.8-2+deb9u2:*:*:*:*:*:*:*" + ], + "purl": "pkg:deb/debian/libtiff5@4.0.8-2+deb9u2?arch=amd64\u0026upstream=tiff\u0026distro=debian-9", + "upstreams": [ + { + "name": "tiff" + } + ], + "metadata": null + } + }, + { + "vulnerability": { + "id": "CVE-2018-18751", + "dataSource": "https://security-tracker.debian.org/tracker/CVE-2018-18751", + "namespace": "debian:distro:debian:9", + "severity": "Negligible", + "urls": [ + "https://security-tracker.debian.org/tracker/CVE-2018-18751" + ], + "description": "An issue was discovered in GNU gettext 0.19.8. There is a double free in default_add_message in read-catalog.c, related to an invalid free in po_gram_parse in po-gram-gen.y, as demonstrated by lt-msgfmt.", + "cvss": null, + "fix": { + "versions": [], + "state": "not-fixed" + }, + "advisories": null + }, + "relatedVulnerabilities": [ + { + "id": "CVE-2018-18751", + "dataSource": "https://nvd.nist.gov/vuln/detail/CVE-2018-18751", + "namespace": "nvd:cpe", + "severity": "Critical", + "urls": [ + "http://lists.opensuse.org/opensuse-security-announce/2020-08/msg00061.html", + "http://lists.opensuse.org/opensuse-security-announce/2020-08/msg00065.html", + "http://lists.opensuse.org/opensuse-security-announce/2020-09/msg00025.html", + "https://access.redhat.com/errata/RHSA-2019:3643", + "https://github.com/CCCCCrash/POCs/tree/master/Bin/Tools-gettext-0.19.8.1/doublefree", + "https://github.com/CCCCCrash/POCs/tree/master/Bin/Tools-gettext-0.19.8.1/heapcorruption", + "https://usn.ubuntu.com/3815-1/", + "https://usn.ubuntu.com/3815-2/" + ], + "description": "An issue was discovered in GNU gettext 0.19.8. There is a double free in default_add_message in read-catalog.c, related to an invalid free in po_gram_parse in po-gram-gen.y, as demonstrated by lt-msgfmt.", + "cvss": null + } + ], + "matchDetails": [ + { + "type": "exact-indirect-match", + "matcher": "dpkg-matcher", + "searchedBy": { + "distro": { + "type": "debian", + "version": "9" + }, + "namespace": "debian:distro:debian:9", + "package": { + "name": "gettext", + "version": "0.19.8.1-2" + } + }, + "found": { + "versionConstraint": "none (deb)", + "vulnerabilityID": "CVE-2018-18751" + } + } + ], + "artifact": { + "name": "gettext-base", + "version": "0.19.8.1-2", + "type": "deb", + "locations": null, + "language": "", + "licenses": [ + "LicenseRef-GFDL", + "LicenseRef-GPL", + "LicenseRef-LGPL" + ], + "cpes": [ + "cpe:2.3:a:gettext-base:gettext-base:0.19.8.1-2:*:*:*:*:*:*:*", + "cpe:2.3:a:gettext-base:gettext_base:0.19.8.1-2:*:*:*:*:*:*:*", + "cpe:2.3:a:gettext_base:gettext-base:0.19.8.1-2:*:*:*:*:*:*:*", + "cpe:2.3:a:gettext_base:gettext_base:0.19.8.1-2:*:*:*:*:*:*:*", + "cpe:2.3:a:gettext:gettext-base:0.19.8.1-2:*:*:*:*:*:*:*", + "cpe:2.3:a:gettext:gettext_base:0.19.8.1-2:*:*:*:*:*:*:*" + ], + "purl": "pkg:deb/debian/gettext-base@0.19.8.1-2?arch=amd64\u0026upstream=gettext\u0026distro=debian-9", + "upstreams": [ + { + "name": "gettext" + } + ], + "metadata": null + } + }, + { + "vulnerability": { + "id": "CVE-2018-19210", + "dataSource": "https://security-tracker.debian.org/tracker/CVE-2018-19210", + "namespace": "debian:distro:debian:9", + "severity": "Medium", + "urls": [ + "https://security-tracker.debian.org/tracker/CVE-2018-19210" + ], + "description": "In LibTIFF 4.0.9, there is a NULL pointer dereference in the TIFFWriteDirectorySec function in tif_dirwrite.c that will lead to a denial of service attack, as demonstrated by tiffset.", + "cvss": null, + "fix": { + "versions": [ + "4.0.8-2+deb9u5" + ], + "state": "fixed" + }, + "advisories": [ + { + "id": "DSA-4670-1", + "link": "https://security-tracker.debian.org/tracker/DSA-4670-1" + } + ] + }, + "relatedVulnerabilities": [ + { + "id": "CVE-2018-19210", + "dataSource": "https://nvd.nist.gov/vuln/detail/CVE-2018-19210", + "namespace": "nvd:cpe", + "severity": "Medium", + "urls": [ + "http://bugzilla.maptools.org/show_bug.cgi?id=2820", + "http://lists.opensuse.org/opensuse-security-announce/2019-04/msg00041.html", + "http://packetstormsecurity.com/files/155095/Slackware-Security-Advisory-libtiff-Updates.html", + "http://www.securityfocus.com/bid/105932", + "https://lists.debian.org/debian-lts-announce/2019/02/msg00026.html", + "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/C6IL2QFKE6MGVUTOPU2UUWITTE36KRDF/", + "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/TX5UEYHGMTNEHJB4FHE7HCJ75UQDNKGB/", + "https://seclists.org/bugtraq/2019/Nov/5", + "https://security.gentoo.org/glsa/202003-25", + "https://usn.ubuntu.com/3906-1/", + "https://www.debian.org/security/2020/dsa-4670" + ], + "description": "In LibTIFF 4.0.9, there is a NULL pointer dereference in the TIFFWriteDirectorySec function in tif_dirwrite.c that will lead to a denial of service attack, as demonstrated by tiffset.", + "cvss": null + } + ], + "matchDetails": [ + { + "type": "exact-indirect-match", + "matcher": "dpkg-matcher", + "searchedBy": { + "distro": { + "type": "debian", + "version": "9" + }, + "namespace": "debian:distro:debian:9", + "package": { + "name": "tiff", + "version": "4.0.8-2+deb9u2" + } + }, + "found": { + "versionConstraint": "\u003c 4.0.8-2+deb9u5 (deb)", + "vulnerabilityID": "CVE-2018-19210" + } + } + ], + "artifact": { + "name": "libtiff5", + "version": "4.0.8-2+deb9u2", + "type": "deb", + "locations": null, + "language": "", + "licenses": [ + "LicenseRef-Hylafax" + ], + "cpes": [ + "cpe:2.3:a:libtiff5:libtiff5:4.0.8-2+deb9u2:*:*:*:*:*:*:*" + ], + "purl": "pkg:deb/debian/libtiff5@4.0.8-2+deb9u2?arch=amd64\u0026upstream=tiff\u0026distro=debian-9", + "upstreams": [ + { + "name": "tiff" + } + ], + "metadata": null + } + }, + { + "vulnerability": { + "id": "CVE-2018-19211", + "dataSource": "https://security-tracker.debian.org/tracker/CVE-2018-19211", + "namespace": "debian:distro:debian:9", + "severity": "Low", + "urls": [ + "https://security-tracker.debian.org/tracker/CVE-2018-19211" + ], + "description": "In ncurses 6.1, there is a NULL pointer dereference at function _nc_parse_entry in parse_entry.c that will lead to a denial of service attack. The product proceeds to the dereference code path even after a \"dubious character `*' in name or alias field\" detection.", + "cvss": null, + "fix": { + "versions": [], + "state": "wont-fix" + }, + "advisories": null + }, + "relatedVulnerabilities": [ + { + "id": "CVE-2018-19211", + "dataSource": "https://nvd.nist.gov/vuln/detail/CVE-2018-19211", + "namespace": "nvd:cpe", + "severity": "Medium", + "urls": [ + "https://bugzilla.redhat.com/show_bug.cgi?id=1643754" + ], + "description": "In ncurses 6.1, there is a NULL pointer dereference at function _nc_parse_entry in parse_entry.c that will lead to a denial of service attack. The product proceeds to the dereference code path even after a \"dubious character `*' in name or alias field\" detection.", + "cvss": null + } + ], + "matchDetails": [ + { + "type": "exact-indirect-match", + "matcher": "dpkg-matcher", + "searchedBy": { + "distro": { + "type": "debian", + "version": "9" + }, + "namespace": "debian:distro:debian:9", + "package": { + "name": "ncurses", + "version": "6.0+20161126-1+deb9u2" + } + }, + "found": { + "versionConstraint": "none (deb)", + "vulnerabilityID": "CVE-2018-19211" + } + } + ], + "artifact": { + "name": "libncurses5", + "version": "6.0+20161126-1+deb9u2", + "type": "deb", + "locations": null, + "language": "", + "licenses": [], + "cpes": [ + "cpe:2.3:a:libncurses5:libncurses5:6.0+20161126-1+deb9u2:*:*:*:*:*:*:*" + ], + "purl": "pkg:deb/debian/libncurses5@6.0+20161126-1+deb9u2?arch=amd64\u0026upstream=ncurses\u0026distro=debian-9", + "upstreams": [ + { + "name": "ncurses" + } + ], + "metadata": null + } + }, + { + "vulnerability": { + "id": "CVE-2018-19211", + "dataSource": "https://security-tracker.debian.org/tracker/CVE-2018-19211", + "namespace": "debian:distro:debian:9", + "severity": "Low", + "urls": [ + "https://security-tracker.debian.org/tracker/CVE-2018-19211" + ], + "description": "In ncurses 6.1, there is a NULL pointer dereference at function _nc_parse_entry in parse_entry.c that will lead to a denial of service attack. The product proceeds to the dereference code path even after a \"dubious character `*' in name or alias field\" detection.", + "cvss": null, + "fix": { + "versions": [], + "state": "wont-fix" + }, + "advisories": null + }, + "relatedVulnerabilities": [ + { + "id": "CVE-2018-19211", + "dataSource": "https://nvd.nist.gov/vuln/detail/CVE-2018-19211", + "namespace": "nvd:cpe", + "severity": "Medium", + "urls": [ + "https://bugzilla.redhat.com/show_bug.cgi?id=1643754" + ], + "description": "In ncurses 6.1, there is a NULL pointer dereference at function _nc_parse_entry in parse_entry.c that will lead to a denial of service attack. The product proceeds to the dereference code path even after a \"dubious character `*' in name or alias field\" detection.", + "cvss": null + } + ], + "matchDetails": [ + { + "type": "exact-indirect-match", + "matcher": "dpkg-matcher", + "searchedBy": { + "distro": { + "type": "debian", + "version": "9" + }, + "namespace": "debian:distro:debian:9", + "package": { + "name": "ncurses", + "version": "6.0+20161126-1+deb9u2" + } + }, + "found": { + "versionConstraint": "none (deb)", + "vulnerabilityID": "CVE-2018-19211" + } + } + ], + "artifact": { + "name": "libncursesw5", + "version": "6.0+20161126-1+deb9u2", + "type": "deb", + "locations": null, + "language": "", + "licenses": [], + "cpes": [ + "cpe:2.3:a:libncursesw5:libncursesw5:6.0+20161126-1+deb9u2:*:*:*:*:*:*:*" + ], + "purl": "pkg:deb/debian/libncursesw5@6.0+20161126-1+deb9u2?arch=amd64\u0026upstream=ncurses\u0026distro=debian-9", + "upstreams": [ + { + "name": "ncurses" + } + ], + "metadata": null + } + }, + { + "vulnerability": { + "id": "CVE-2018-19211", + "dataSource": "https://security-tracker.debian.org/tracker/CVE-2018-19211", + "namespace": "debian:distro:debian:9", + "severity": "Low", + "urls": [ + "https://security-tracker.debian.org/tracker/CVE-2018-19211" + ], + "description": "In ncurses 6.1, there is a NULL pointer dereference at function _nc_parse_entry in parse_entry.c that will lead to a denial of service attack. The product proceeds to the dereference code path even after a \"dubious character `*' in name or alias field\" detection.", + "cvss": null, + "fix": { + "versions": [], + "state": "wont-fix" + }, + "advisories": null + }, + "relatedVulnerabilities": [ + { + "id": "CVE-2018-19211", + "dataSource": "https://nvd.nist.gov/vuln/detail/CVE-2018-19211", + "namespace": "nvd:cpe", + "severity": "Medium", + "urls": [ + "https://bugzilla.redhat.com/show_bug.cgi?id=1643754" + ], + "description": "In ncurses 6.1, there is a NULL pointer dereference at function _nc_parse_entry in parse_entry.c that will lead to a denial of service attack. The product proceeds to the dereference code path even after a \"dubious character `*' in name or alias field\" detection.", + "cvss": null + } + ], + "matchDetails": [ + { + "type": "exact-indirect-match", + "matcher": "dpkg-matcher", + "searchedBy": { + "distro": { + "type": "debian", + "version": "9" + }, + "namespace": "debian:distro:debian:9", + "package": { + "name": "ncurses", + "version": "6.0+20161126-1+deb9u2" + } + }, + "found": { + "versionConstraint": "none (deb)", + "vulnerabilityID": "CVE-2018-19211" + } + } + ], + "artifact": { + "name": "libtinfo5", + "version": "6.0+20161126-1+deb9u2", + "type": "deb", + "locations": null, + "language": "", + "licenses": [], + "cpes": [ + "cpe:2.3:a:libtinfo5:libtinfo5:6.0+20161126-1+deb9u2:*:*:*:*:*:*:*" + ], + "purl": "pkg:deb/debian/libtinfo5@6.0+20161126-1+deb9u2?arch=amd64\u0026upstream=ncurses\u0026distro=debian-9", + "upstreams": [ + { + "name": "ncurses" + } + ], + "metadata": null + } + }, + { + "vulnerability": { + "id": "CVE-2018-19211", + "dataSource": "https://security-tracker.debian.org/tracker/CVE-2018-19211", + "namespace": "debian:distro:debian:9", + "severity": "Low", + "urls": [ + "https://security-tracker.debian.org/tracker/CVE-2018-19211" + ], + "description": "In ncurses 6.1, there is a NULL pointer dereference at function _nc_parse_entry in parse_entry.c that will lead to a denial of service attack. The product proceeds to the dereference code path even after a \"dubious character `*' in name or alias field\" detection.", + "cvss": null, + "fix": { + "versions": [], + "state": "wont-fix" + }, + "advisories": null + }, + "relatedVulnerabilities": [ + { + "id": "CVE-2018-19211", + "dataSource": "https://nvd.nist.gov/vuln/detail/CVE-2018-19211", + "namespace": "nvd:cpe", + "severity": "Medium", + "urls": [ + "https://bugzilla.redhat.com/show_bug.cgi?id=1643754" + ], + "description": "In ncurses 6.1, there is a NULL pointer dereference at function _nc_parse_entry in parse_entry.c that will lead to a denial of service attack. The product proceeds to the dereference code path even after a \"dubious character `*' in name or alias field\" detection.", + "cvss": null + } + ], + "matchDetails": [ + { + "type": "exact-indirect-match", + "matcher": "dpkg-matcher", + "searchedBy": { + "distro": { + "type": "debian", + "version": "9" + }, + "namespace": "debian:distro:debian:9", + "package": { + "name": "ncurses", + "version": "6.0+20161126-1+deb9u2" + } + }, + "found": { + "versionConstraint": "none (deb)", + "vulnerabilityID": "CVE-2018-19211" + } + } + ], + "artifact": { + "name": "ncurses-base", + "version": "6.0+20161126-1+deb9u2", + "type": "deb", + "locations": null, + "language": "", + "licenses": [], + "cpes": [ + "cpe:2.3:a:ncurses-base:ncurses-base:6.0+20161126-1+deb9u2:*:*:*:*:*:*:*", + "cpe:2.3:a:ncurses-base:ncurses_base:6.0+20161126-1+deb9u2:*:*:*:*:*:*:*", + "cpe:2.3:a:ncurses_base:ncurses-base:6.0+20161126-1+deb9u2:*:*:*:*:*:*:*", + "cpe:2.3:a:ncurses_base:ncurses_base:6.0+20161126-1+deb9u2:*:*:*:*:*:*:*", + "cpe:2.3:a:ncurses:ncurses-base:6.0+20161126-1+deb9u2:*:*:*:*:*:*:*", + "cpe:2.3:a:ncurses:ncurses_base:6.0+20161126-1+deb9u2:*:*:*:*:*:*:*" + ], + "purl": "pkg:deb/debian/ncurses-base@6.0+20161126-1+deb9u2?arch=all\u0026upstream=ncurses\u0026distro=debian-9", + "upstreams": [ + { + "name": "ncurses" + } + ], + "metadata": null + } + }, + { + "vulnerability": { + "id": "CVE-2018-19211", + "dataSource": "https://security-tracker.debian.org/tracker/CVE-2018-19211", + "namespace": "debian:distro:debian:9", + "severity": "Low", + "urls": [ + "https://security-tracker.debian.org/tracker/CVE-2018-19211" + ], + "description": "In ncurses 6.1, there is a NULL pointer dereference at function _nc_parse_entry in parse_entry.c that will lead to a denial of service attack. The product proceeds to the dereference code path even after a \"dubious character `*' in name or alias field\" detection.", + "cvss": null, + "fix": { + "versions": [], + "state": "wont-fix" + }, + "advisories": null + }, + "relatedVulnerabilities": [ + { + "id": "CVE-2018-19211", + "dataSource": "https://nvd.nist.gov/vuln/detail/CVE-2018-19211", + "namespace": "nvd:cpe", + "severity": "Medium", + "urls": [ + "https://bugzilla.redhat.com/show_bug.cgi?id=1643754" + ], + "description": "In ncurses 6.1, there is a NULL pointer dereference at function _nc_parse_entry in parse_entry.c that will lead to a denial of service attack. The product proceeds to the dereference code path even after a \"dubious character `*' in name or alias field\" detection.", + "cvss": null + } + ], + "matchDetails": [ + { + "type": "exact-indirect-match", + "matcher": "dpkg-matcher", + "searchedBy": { + "distro": { + "type": "debian", + "version": "9" + }, + "namespace": "debian:distro:debian:9", + "package": { + "name": "ncurses", + "version": "6.0+20161126-1+deb9u2" + } + }, + "found": { + "versionConstraint": "none (deb)", + "vulnerabilityID": "CVE-2018-19211" + } + } + ], + "artifact": { + "name": "ncurses-bin", + "version": "6.0+20161126-1+deb9u2", + "type": "deb", + "locations": null, + "language": "", + "licenses": [], + "cpes": [ + "cpe:2.3:a:ncurses-bin:ncurses-bin:6.0+20161126-1+deb9u2:*:*:*:*:*:*:*", + "cpe:2.3:a:ncurses-bin:ncurses_bin:6.0+20161126-1+deb9u2:*:*:*:*:*:*:*", + "cpe:2.3:a:ncurses_bin:ncurses-bin:6.0+20161126-1+deb9u2:*:*:*:*:*:*:*", + "cpe:2.3:a:ncurses_bin:ncurses_bin:6.0+20161126-1+deb9u2:*:*:*:*:*:*:*", + "cpe:2.3:a:ncurses:ncurses-bin:6.0+20161126-1+deb9u2:*:*:*:*:*:*:*", + "cpe:2.3:a:ncurses:ncurses_bin:6.0+20161126-1+deb9u2:*:*:*:*:*:*:*" + ], + "purl": "pkg:deb/debian/ncurses-bin@6.0+20161126-1+deb9u2?arch=amd64\u0026upstream=ncurses\u0026distro=debian-9", + "upstreams": [ + { + "name": "ncurses" + } + ], + "metadata": null + } + }, + { + "vulnerability": { + "id": "CVE-2018-20482", + "dataSource": "https://security-tracker.debian.org/tracker/CVE-2018-20482", + "namespace": "debian:distro:debian:9", + "severity": "Medium", + "urls": [ + "https://security-tracker.debian.org/tracker/CVE-2018-20482" + ], + "description": "GNU Tar through 1.30, when --sparse is used, mishandles file shrinkage during read access, which allows local users to cause a denial of service (infinite read loop in sparse_dump_region in sparse.c) by modifying a file that is supposed to be archived by a different user's process (e.g., a system backup running as root).", + "cvss": null, + "fix": { + "versions": [ + "1.29b-1.1+deb9u1" + ], + "state": "fixed" + }, + "advisories": null + }, + "relatedVulnerabilities": [ + { + "id": "CVE-2018-20482", + "dataSource": "https://nvd.nist.gov/vuln/detail/CVE-2018-20482", + "namespace": "nvd:cpe", + "severity": "Medium", + "urls": [ + "http://git.savannah.gnu.org/cgit/tar.git/commit/?id=c15c42ccd1e2377945fd0414eca1a49294bff454", + "http://lists.gnu.org/archive/html/bug-tar/2018-12/msg00023.html", + "http://lists.opensuse.org/opensuse-security-announce/2019-04/msg00077.html", + "http://www.securityfocus.com/bid/106354", + "https://lists.debian.org/debian-lts-announce/2018/12/msg00023.html", + "https://lists.debian.org/debian-lts-announce/2021/11/msg00025.html", + "https://news.ycombinator.com/item?id=18745431", + "https://security.gentoo.org/glsa/201903-05", + "https://twitter.com/thatcks/status/1076166645708668928", + "https://utcc.utoronto.ca/~cks/space/blog/sysadmin/TarFindingTruncateBug" + ], + "description": "GNU Tar through 1.30, when --sparse is used, mishandles file shrinkage during read access, which allows local users to cause a denial of service (infinite read loop in sparse_dump_region in sparse.c) by modifying a file that is supposed to be archived by a different user's process (e.g., a system backup running as root).", + "cvss": null + } + ], + "matchDetails": [ + { + "type": "exact-direct-match", + "matcher": "dpkg-matcher", + "searchedBy": { + "distro": { + "type": "debian", + "version": "9" + }, + "namespace": "debian:distro:debian:9", + "package": { + "name": "tar", + "version": "1.29b-1.1" + } + }, + "found": { + "versionConstraint": "\u003c 1.29b-1.1+deb9u1 (deb)", + "vulnerabilityID": "CVE-2018-20482" + } + } + ], + "artifact": { + "name": "tar", + "version": "1.29b-1.1", + "type": "deb", + "locations": null, + "language": "", + "licenses": [ + "GPL-2.0-only", + "GPL-3.0-only" + ], + "cpes": [ + "cpe:2.3:a:tar:tar:1.29b-1.1:*:*:*:*:*:*:*" + ], + "purl": "pkg:deb/debian/tar@1.29b-1.1?arch=amd64\u0026distro=debian-9", + "upstreams": null, + "metadata": null + } + }, + { + "vulnerability": { + "id": "CVE-2018-20796", + "dataSource": "https://security-tracker.debian.org/tracker/CVE-2018-20796", + "namespace": "debian:distro:debian:9", + "severity": "Negligible", + "urls": [ + "https://security-tracker.debian.org/tracker/CVE-2018-20796" + ], + "description": "In the GNU C Library (aka glibc or libc6) through 2.29, check_dst_limits_calc_pos_1 in posix/regexec.c has Uncontrolled Recursion, as demonstrated by '(\\227|)(\\\\1\\\\1|t1|\\\\\\2537)+' in grep.", + "cvss": null, + "fix": { + "versions": [], + "state": "not-fixed" + }, + "advisories": null + }, + "relatedVulnerabilities": [ + { + "id": "CVE-2018-20796", + "dataSource": "https://nvd.nist.gov/vuln/detail/CVE-2018-20796", + "namespace": "nvd:cpe", + "severity": "High", + "urls": [ + "http://www.securityfocus.com/bid/107160", + "https://debbugs.gnu.org/cgi/bugreport.cgi?bug=34141", + "https://lists.gnu.org/archive/html/bug-gnulib/2019-01/msg00108.html", + "https://security.netapp.com/advisory/ntap-20190315-0002/", + "https://support.f5.com/csp/article/K26346590?utm_source=f5support\u0026amp;utm_medium=RSS" + ], + "description": "In the GNU C Library (aka glibc or libc6) through 2.29, check_dst_limits_calc_pos_1 in posix/regexec.c has Uncontrolled Recursion, as demonstrated by '(\\227|)(\\\\1\\\\1|t1|\\\\\\2537)+' in grep.", + "cvss": null + } + ], + "matchDetails": [ + { + "type": "exact-indirect-match", + "matcher": "dpkg-matcher", + "searchedBy": { + "distro": { + "type": "debian", + "version": "9" + }, + "namespace": "debian:distro:debian:9", + "package": { + "name": "glibc", + "version": "2.24-11+deb9u3" + } + }, + "found": { + "versionConstraint": "none (deb)", + "vulnerabilityID": "CVE-2018-20796" + } + } + ], + "artifact": { + "name": "libc-bin", + "version": "2.24-11+deb9u3", + "type": "deb", + "locations": null, + "language": "", + "licenses": [ + "GPL-2.0-only", + "LGPL-2.1-only" + ], + "cpes": [ + "cpe:2.3:a:libc-bin:libc-bin:2.24-11+deb9u3:*:*:*:*:*:*:*", + "cpe:2.3:a:libc-bin:libc_bin:2.24-11+deb9u3:*:*:*:*:*:*:*", + "cpe:2.3:a:libc_bin:libc-bin:2.24-11+deb9u3:*:*:*:*:*:*:*", + "cpe:2.3:a:libc_bin:libc_bin:2.24-11+deb9u3:*:*:*:*:*:*:*", + "cpe:2.3:a:libc:libc-bin:2.24-11+deb9u3:*:*:*:*:*:*:*", + "cpe:2.3:a:libc:libc_bin:2.24-11+deb9u3:*:*:*:*:*:*:*" + ], + "purl": "pkg:deb/debian/libc-bin@2.24-11+deb9u3?arch=amd64\u0026upstream=glibc\u0026distro=debian-9", + "upstreams": [ + { + "name": "glibc" + } + ], + "metadata": null + } + }, + { + "vulnerability": { + "id": "CVE-2018-20796", + "dataSource": "https://security-tracker.debian.org/tracker/CVE-2018-20796", + "namespace": "debian:distro:debian:9", + "severity": "Negligible", + "urls": [ + "https://security-tracker.debian.org/tracker/CVE-2018-20796" + ], + "description": "In the GNU C Library (aka glibc or libc6) through 2.29, check_dst_limits_calc_pos_1 in posix/regexec.c has Uncontrolled Recursion, as demonstrated by '(\\227|)(\\\\1\\\\1|t1|\\\\\\2537)+' in grep.", + "cvss": null, + "fix": { + "versions": [], + "state": "not-fixed" + }, + "advisories": null + }, + "relatedVulnerabilities": [ + { + "id": "CVE-2018-20796", + "dataSource": "https://nvd.nist.gov/vuln/detail/CVE-2018-20796", + "namespace": "nvd:cpe", + "severity": "High", + "urls": [ + "http://www.securityfocus.com/bid/107160", + "https://debbugs.gnu.org/cgi/bugreport.cgi?bug=34141", + "https://lists.gnu.org/archive/html/bug-gnulib/2019-01/msg00108.html", + "https://security.netapp.com/advisory/ntap-20190315-0002/", + "https://support.f5.com/csp/article/K26346590?utm_source=f5support\u0026amp;utm_medium=RSS" + ], + "description": "In the GNU C Library (aka glibc or libc6) through 2.29, check_dst_limits_calc_pos_1 in posix/regexec.c has Uncontrolled Recursion, as demonstrated by '(\\227|)(\\\\1\\\\1|t1|\\\\\\2537)+' in grep.", + "cvss": null + } + ], + "matchDetails": [ + { + "type": "exact-indirect-match", + "matcher": "dpkg-matcher", + "searchedBy": { + "distro": { + "type": "debian", + "version": "9" + }, + "namespace": "debian:distro:debian:9", + "package": { + "name": "glibc", + "version": "2.24-11+deb9u3" + } + }, + "found": { + "versionConstraint": "none (deb)", + "vulnerabilityID": "CVE-2018-20796" + } + } + ], + "artifact": { + "name": "libc6", + "version": "2.24-11+deb9u3", + "type": "deb", + "locations": null, + "language": "", + "licenses": [ + "GPL-2.0-only", + "LGPL-2.1-only" + ], + "cpes": [ + "cpe:2.3:a:libc6:libc6:2.24-11+deb9u3:*:*:*:*:*:*:*" + ], + "purl": "pkg:deb/debian/libc6@2.24-11+deb9u3?arch=amd64\u0026upstream=glibc\u0026distro=debian-9", + "upstreams": [ + { + "name": "glibc" + } + ], + "metadata": null + } + }, + { + "vulnerability": { + "id": "CVE-2018-20796", + "dataSource": "https://security-tracker.debian.org/tracker/CVE-2018-20796", + "namespace": "debian:distro:debian:9", + "severity": "Negligible", + "urls": [ + "https://security-tracker.debian.org/tracker/CVE-2018-20796" + ], + "description": "In the GNU C Library (aka glibc or libc6) through 2.29, check_dst_limits_calc_pos_1 in posix/regexec.c has Uncontrolled Recursion, as demonstrated by '(\\227|)(\\\\1\\\\1|t1|\\\\\\2537)+' in grep.", + "cvss": null, + "fix": { + "versions": [], + "state": "not-fixed" + }, + "advisories": null + }, + "relatedVulnerabilities": [ + { + "id": "CVE-2018-20796", + "dataSource": "https://nvd.nist.gov/vuln/detail/CVE-2018-20796", + "namespace": "nvd:cpe", + "severity": "High", + "urls": [ + "http://www.securityfocus.com/bid/107160", + "https://debbugs.gnu.org/cgi/bugreport.cgi?bug=34141", + "https://lists.gnu.org/archive/html/bug-gnulib/2019-01/msg00108.html", + "https://security.netapp.com/advisory/ntap-20190315-0002/", + "https://support.f5.com/csp/article/K26346590?utm_source=f5support\u0026amp;utm_medium=RSS" + ], + "description": "In the GNU C Library (aka glibc or libc6) through 2.29, check_dst_limits_calc_pos_1 in posix/regexec.c has Uncontrolled Recursion, as demonstrated by '(\\227|)(\\\\1\\\\1|t1|\\\\\\2537)+' in grep.", + "cvss": null + } + ], + "matchDetails": [ + { + "type": "exact-indirect-match", + "matcher": "dpkg-matcher", + "searchedBy": { + "distro": { + "type": "debian", + "version": "9" + }, + "namespace": "debian:distro:debian:9", + "package": { + "name": "glibc", + "version": "2.24-11+deb9u3" + } + }, + "found": { + "versionConstraint": "none (deb)", + "vulnerabilityID": "CVE-2018-20796" + } + } + ], + "artifact": { + "name": "multiarch-support", + "version": "2.24-11+deb9u3", + "type": "deb", + "locations": null, + "language": "", + "licenses": [ + "GPL-2.0-only", + "LGPL-2.1-only" + ], + "cpes": [ + "cpe:2.3:a:multiarch-support:multiarch-support:2.24-11+deb9u3:*:*:*:*:*:*:*", + "cpe:2.3:a:multiarch-support:multiarch_support:2.24-11+deb9u3:*:*:*:*:*:*:*", + "cpe:2.3:a:multiarch_support:multiarch-support:2.24-11+deb9u3:*:*:*:*:*:*:*", + "cpe:2.3:a:multiarch_support:multiarch_support:2.24-11+deb9u3:*:*:*:*:*:*:*", + "cpe:2.3:a:multiarch:multiarch-support:2.24-11+deb9u3:*:*:*:*:*:*:*", + "cpe:2.3:a:multiarch:multiarch_support:2.24-11+deb9u3:*:*:*:*:*:*:*" + ], + "purl": "pkg:deb/debian/multiarch-support@2.24-11+deb9u3?arch=amd64\u0026upstream=glibc\u0026distro=debian-9", + "upstreams": [ + { + "name": "glibc" + } + ], + "metadata": null + } + }, + { + "vulnerability": { + "id": "CVE-2018-20843", + "dataSource": "https://security-tracker.debian.org/tracker/CVE-2018-20843", + "namespace": "debian:distro:debian:9", + "severity": "High", + "urls": [ + "https://security-tracker.debian.org/tracker/CVE-2018-20843" + ], + "description": "In libexpat in Expat before 2.2.7, XML input including XML names that contain a large number of colons could make the XML parser consume a high amount of RAM and CPU resources while processing (enough to be usable for denial-of-service attacks).", + "cvss": null, + "fix": { + "versions": [ + "2.2.0-2+deb9u2" + ], + "state": "fixed" + }, + "advisories": [ + { + "id": "DSA-4472-1", + "link": "https://security-tracker.debian.org/tracker/DSA-4472-1" + } + ] + }, + "relatedVulnerabilities": [ + { + "id": "CVE-2018-20843", + "dataSource": "https://nvd.nist.gov/vuln/detail/CVE-2018-20843", + "namespace": "nvd:cpe", + "severity": "High", + "urls": [ + "http://lists.opensuse.org/opensuse-security-announce/2019-07/msg00039.html", + "https://bugs.chromium.org/p/oss-fuzz/issues/detail?id=5226", + "https://github.com/libexpat/libexpat/blob/R_2_2_7/expat/Changes", + "https://github.com/libexpat/libexpat/issues/186", + "https://github.com/libexpat/libexpat/pull/262", + "https://github.com/libexpat/libexpat/pull/262/commits/11f8838bf99ea0a6f0b76f9760c43704d00c4ff6", + "https://lists.debian.org/debian-lts-announce/2019/06/msg00028.html", + "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/CEJJSQSG3KSUQY4FPVHZ7ZTT7FORMFVD/", + "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/IDAUGEB3TUP6NEKJDBUBZX7N5OAUOOOK/", + "https://seclists.org/bugtraq/2019/Jun/39", + "https://security.gentoo.org/glsa/201911-08", + "https://security.netapp.com/advisory/ntap-20190703-0001/", + "https://support.f5.com/csp/article/K51011533", + "https://usn.ubuntu.com/4040-1/", + "https://usn.ubuntu.com/4040-2/", + "https://www.debian.org/security/2019/dsa-4472", + "https://www.oracle.com/security-alerts/cpuApr2021.html", + "https://www.oracle.com/security-alerts/cpuapr2020.html", + "https://www.oracle.com/security-alerts/cpuoct2020.html", + "https://www.oracle.com/security-alerts/cpuoct2021.html", + "https://www.tenable.com/security/tns-2021-11" + ], + "description": "In libexpat in Expat before 2.2.7, XML input including XML names that contain a large number of colons could make the XML parser consume a high amount of RAM and CPU resources while processing (enough to be usable for denial-of-service attacks).", + "cvss": null + } + ], + "matchDetails": [ + { + "type": "exact-indirect-match", + "matcher": "dpkg-matcher", + "searchedBy": { + "distro": { + "type": "debian", + "version": "9" + }, + "namespace": "debian:distro:debian:9", + "package": { + "name": "expat", + "version": "2.2.0-2+deb9u1" + } + }, + "found": { + "versionConstraint": "\u003c 2.2.0-2+deb9u2 (deb)", + "vulnerabilityID": "CVE-2018-20843" + } + } + ], + "artifact": { + "name": "libexpat1", + "version": "2.2.0-2+deb9u1", + "type": "deb", + "locations": null, + "language": "", + "licenses": [], + "cpes": [ + "cpe:2.3:a:libexpat1:libexpat1:2.2.0-2+deb9u1:*:*:*:*:*:*:*" + ], + "purl": "pkg:deb/debian/libexpat1@2.2.0-2+deb9u1?arch=amd64\u0026upstream=expat\u0026distro=debian-9", + "upstreams": [ + { + "name": "expat" + } + ], + "metadata": null + } + }, + { + "vulnerability": { + "id": "CVE-2018-25009", + "dataSource": "https://security-tracker.debian.org/tracker/CVE-2018-25009", + "namespace": "debian:distro:debian:9", + "severity": "Critical", + "urls": [ + "https://security-tracker.debian.org/tracker/CVE-2018-25009" + ], + "description": "A flaw was found in libwebp in versions before 1.0.1. An out-of-bounds read was found in function WebPMuxCreateInternal. The highest threat from this vulnerability is to data confidentiality and to the service availability.", + "cvss": null, + "fix": { + "versions": [ + "0.5.2-1+deb9u1" + ], + "state": "fixed" + }, + "advisories": null + }, + "relatedVulnerabilities": [ + { + "id": "CVE-2018-25009", + "dataSource": "https://nvd.nist.gov/vuln/detail/CVE-2018-25009", + "namespace": "nvd:cpe", + "severity": "Critical", + "urls": [ + "https://bugs.chromium.org/p/oss-fuzz/issues/detail?id=9100", + "https://bugzilla.redhat.com/show_bug.cgi?id=1956917", + "https://chromium.googlesource.com/webm/libwebp/+/95fd65070662e01cc9170c4444f5c0859a710097" + ], + "description": "A heap-based buffer overflow was found in libwebp in versions before 1.0.1 in GetLE16().", + "cvss": null + } + ], + "matchDetails": [ + { + "type": "exact-indirect-match", + "matcher": "dpkg-matcher", + "searchedBy": { + "distro": { + "type": "debian", + "version": "9" + }, + "namespace": "debian:distro:debian:9", + "package": { + "name": "libwebp", + "version": "0.5.2-1" + } + }, + "found": { + "versionConstraint": "\u003c 0.5.2-1+deb9u1 (deb)", + "vulnerabilityID": "CVE-2018-25009" + } + } + ], + "artifact": { + "name": "libwebp6", + "version": "0.5.2-1", + "type": "deb", + "locations": null, + "language": "", + "licenses": [ + "Apache-2.0" + ], + "cpes": [ + "cpe:2.3:a:libwebp6:libwebp6:0.5.2-1:*:*:*:*:*:*:*" + ], + "purl": "pkg:deb/debian/libwebp6@0.5.2-1?arch=amd64\u0026upstream=libwebp\u0026distro=debian-9", + "upstreams": [ + { + "name": "libwebp" + } + ], + "metadata": null + } + }, + { + "vulnerability": { + "id": "CVE-2018-25010", + "dataSource": "https://security-tracker.debian.org/tracker/CVE-2018-25010", + "namespace": "debian:distro:debian:9", + "severity": "Critical", + "urls": [ + "https://security-tracker.debian.org/tracker/CVE-2018-25010" + ], + "description": "A flaw was found in libwebp in versions before 1.0.1. An out-of-bounds read was found in function ApplyFilter. The highest threat from this vulnerability is to data confidentiality and to the service availability.", + "cvss": null, + "fix": { + "versions": [ + "0.5.2-1+deb9u1" + ], + "state": "fixed" + }, + "advisories": null + }, + "relatedVulnerabilities": [ + { + "id": "CVE-2018-25010", + "dataSource": "https://nvd.nist.gov/vuln/detail/CVE-2018-25010", + "namespace": "nvd:cpe", + "severity": "Critical", + "urls": [ + "https://bugs.chromium.org/p/oss-fuzz/issues/detail?id=9105", + "https://bugzilla.redhat.com/show_bug.cgi?id=1956918", + "https://chromium.googlesource.com/webm/libwebp/+/1344a2e947c749d231141a295327e5b99b444d63" + ], + "description": "A heap-based buffer overflow was found in libwebp in versions before 1.0.1 in ApplyFilter().", + "cvss": null + } + ], + "matchDetails": [ + { + "type": "exact-indirect-match", + "matcher": "dpkg-matcher", + "searchedBy": { + "distro": { + "type": "debian", + "version": "9" + }, + "namespace": "debian:distro:debian:9", + "package": { + "name": "libwebp", + "version": "0.5.2-1" + } + }, + "found": { + "versionConstraint": "\u003c 0.5.2-1+deb9u1 (deb)", + "vulnerabilityID": "CVE-2018-25010" + } + } + ], + "artifact": { + "name": "libwebp6", + "version": "0.5.2-1", + "type": "deb", + "locations": null, + "language": "", + "licenses": [ + "Apache-2.0" + ], + "cpes": [ + "cpe:2.3:a:libwebp6:libwebp6:0.5.2-1:*:*:*:*:*:*:*" + ], + "purl": "pkg:deb/debian/libwebp6@0.5.2-1?arch=amd64\u0026upstream=libwebp\u0026distro=debian-9", + "upstreams": [ + { + "name": "libwebp" + } + ], + "metadata": null + } + }, + { + "vulnerability": { + "id": "CVE-2018-25011", + "dataSource": "https://security-tracker.debian.org/tracker/CVE-2018-25011", + "namespace": "debian:distro:debian:9", + "severity": "Critical", + "urls": [ + "https://security-tracker.debian.org/tracker/CVE-2018-25011" + ], + "description": "A flaw was found in libwebp in versions before 1.0.1. A heap-based buffer overflow was found in PutLE16(). The highest threat from this vulnerability is to data confidentiality and integrity as well as system availability.", + "cvss": null, + "fix": { + "versions": [ + "0.5.2-1+deb9u1" + ], + "state": "fixed" + }, + "advisories": null + }, + "relatedVulnerabilities": [ + { + "id": "CVE-2018-25011", + "dataSource": "https://nvd.nist.gov/vuln/detail/CVE-2018-25011", + "namespace": "nvd:cpe", + "severity": "Critical", + "urls": [ + "https://bugs.chromium.org/p/oss-fuzz/issues/detail?id=9119", + "https://bugzilla.redhat.com/show_bug.cgi?id=1956919", + "https://chromium.googlesource.com/webm/libwebp/+/v1.0.1", + "https://chromium.googlesource.com/webm/libwebp/+log/be738c6d396fa5a272c1b209be4379a7532debfe..29fb8562c60b5a919a75d904ff7366af423f8ab9?pretty=fuller\u0026n=10000" + ], + "description": "A heap-based buffer overflow was found in libwebp in versions before 1.0.1 in PutLE16().", + "cvss": null + } + ], + "matchDetails": [ + { + "type": "exact-indirect-match", + "matcher": "dpkg-matcher", + "searchedBy": { + "distro": { + "type": "debian", + "version": "9" + }, + "namespace": "debian:distro:debian:9", + "package": { + "name": "libwebp", + "version": "0.5.2-1" + } + }, + "found": { + "versionConstraint": "\u003c 0.5.2-1+deb9u1 (deb)", + "vulnerabilityID": "CVE-2018-25011" + } + } + ], + "artifact": { + "name": "libwebp6", + "version": "0.5.2-1", + "type": "deb", + "locations": null, + "language": "", + "licenses": [ + "Apache-2.0" + ], + "cpes": [ + "cpe:2.3:a:libwebp6:libwebp6:0.5.2-1:*:*:*:*:*:*:*" + ], + "purl": "pkg:deb/debian/libwebp6@0.5.2-1?arch=amd64\u0026upstream=libwebp\u0026distro=debian-9", + "upstreams": [ + { + "name": "libwebp" + } + ], + "metadata": null + } + }, + { + "vulnerability": { + "id": "CVE-2018-25012", + "dataSource": "https://security-tracker.debian.org/tracker/CVE-2018-25012", + "namespace": "debian:distro:debian:9", + "severity": "Critical", + "urls": [ + "https://security-tracker.debian.org/tracker/CVE-2018-25012" + ], + "description": "A flaw was found in libwebp in versions before 1.0.1. An out-of-bounds read was found in function WebPMuxCreateInternal. The highest threat from this vulnerability is to data confidentiality and to the service availability.", + "cvss": null, + "fix": { + "versions": [ + "0.5.2-1+deb9u1" + ], + "state": "fixed" + }, + "advisories": null + }, + "relatedVulnerabilities": [ + { + "id": "CVE-2018-25012", + "dataSource": "https://nvd.nist.gov/vuln/detail/CVE-2018-25012", + "namespace": "nvd:cpe", + "severity": "Critical", + "urls": [ + "https://bugs.chromium.org/p/oss-fuzz/issues/detail?id=9123", + "https://bugzilla.redhat.com/show_bug.cgi?id=1956922", + "https://chromium.googlesource.com/webm/libwebp/+/95fd65070662e01cc9170c4444f5c0859a710097" + ], + "description": "A heap-based buffer overflow was found in libwebp in versions before 1.0.1 in GetLE24().", + "cvss": null + } + ], + "matchDetails": [ + { + "type": "exact-indirect-match", + "matcher": "dpkg-matcher", + "searchedBy": { + "distro": { + "type": "debian", + "version": "9" + }, + "namespace": "debian:distro:debian:9", + "package": { + "name": "libwebp", + "version": "0.5.2-1" + } + }, + "found": { + "versionConstraint": "\u003c 0.5.2-1+deb9u1 (deb)", + "vulnerabilityID": "CVE-2018-25012" + } + } + ], + "artifact": { + "name": "libwebp6", + "version": "0.5.2-1", + "type": "deb", + "locations": null, + "language": "", + "licenses": [ + "Apache-2.0" + ], + "cpes": [ + "cpe:2.3:a:libwebp6:libwebp6:0.5.2-1:*:*:*:*:*:*:*" + ], + "purl": "pkg:deb/debian/libwebp6@0.5.2-1?arch=amd64\u0026upstream=libwebp\u0026distro=debian-9", + "upstreams": [ + { + "name": "libwebp" + } + ], + "metadata": null + } + }, + { + "vulnerability": { + "id": "CVE-2018-25013", + "dataSource": "https://security-tracker.debian.org/tracker/CVE-2018-25013", + "namespace": "debian:distro:debian:9", + "severity": "Critical", + "urls": [ + "https://security-tracker.debian.org/tracker/CVE-2018-25013" + ], + "description": "A flaw was found in libwebp in versions before 1.0.1. An out-of-bounds read was found in function ShiftBytes. The highest threat from this vulnerability is to data confidentiality and to the service availability.", + "cvss": null, + "fix": { + "versions": [ + "0.5.2-1+deb9u1" + ], + "state": "fixed" + }, + "advisories": null + }, + "relatedVulnerabilities": [ + { + "id": "CVE-2018-25013", + "dataSource": "https://nvd.nist.gov/vuln/detail/CVE-2018-25013", + "namespace": "nvd:cpe", + "severity": "Critical", + "urls": [ + "https://bugs.chromium.org/p/oss-fuzz/issues/detail?id=9417", + "https://bugzilla.redhat.com/show_bug.cgi?id=1956926", + "https://chromium.googlesource.com/webm/libwebp/+/907208f97ead639bd521cf355a2f203f462eade6" + ], + "description": "A heap-based buffer overflow was found in libwebp in versions before 1.0.1 in ShiftBytes().", + "cvss": null + } + ], + "matchDetails": [ + { + "type": "exact-indirect-match", + "matcher": "dpkg-matcher", + "searchedBy": { + "distro": { + "type": "debian", + "version": "9" + }, + "namespace": "debian:distro:debian:9", + "package": { + "name": "libwebp", + "version": "0.5.2-1" + } + }, + "found": { + "versionConstraint": "\u003c 0.5.2-1+deb9u1 (deb)", + "vulnerabilityID": "CVE-2018-25013" + } + } + ], + "artifact": { + "name": "libwebp6", + "version": "0.5.2-1", + "type": "deb", + "locations": null, + "language": "", + "licenses": [ + "Apache-2.0" + ], + "cpes": [ + "cpe:2.3:a:libwebp6:libwebp6:0.5.2-1:*:*:*:*:*:*:*" + ], + "purl": "pkg:deb/debian/libwebp6@0.5.2-1?arch=amd64\u0026upstream=libwebp\u0026distro=debian-9", + "upstreams": [ + { + "name": "libwebp" + } + ], + "metadata": null + } + }, + { + "vulnerability": { + "id": "CVE-2018-25014", + "dataSource": "https://security-tracker.debian.org/tracker/CVE-2018-25014", + "namespace": "debian:distro:debian:9", + "severity": "Critical", + "urls": [ + "https://security-tracker.debian.org/tracker/CVE-2018-25014" + ], + "description": "A flaw was found in libwebp in versions before 1.0.1. An unitialized variable is used in function ReadSymbol. The highest threat from this vulnerability is to data confidentiality and integrity as well as system availability.", + "cvss": null, + "fix": { + "versions": [ + "0.5.2-1+deb9u1" + ], + "state": "fixed" + }, + "advisories": null + }, + "relatedVulnerabilities": [ + { + "id": "CVE-2018-25014", + "dataSource": "https://nvd.nist.gov/vuln/detail/CVE-2018-25014", + "namespace": "nvd:cpe", + "severity": "Critical", + "urls": [ + "https://bugs.chromium.org/p/oss-fuzz/issues/detail?id=9496", + "https://bugzilla.redhat.com/show_bug.cgi?id=1956927", + "https://chromium.googlesource.com/webm/libwebp/+log/78ad57a36ad69a9c22874b182d49d64125c380f2..907208f97ead639bd52" + ], + "description": "A use of uninitialized value was found in libwebp in versions before 1.0.1 in ReadSymbol().", + "cvss": null + } + ], + "matchDetails": [ + { + "type": "exact-indirect-match", + "matcher": "dpkg-matcher", + "searchedBy": { + "distro": { + "type": "debian", + "version": "9" + }, + "namespace": "debian:distro:debian:9", + "package": { + "name": "libwebp", + "version": "0.5.2-1" + } + }, + "found": { + "versionConstraint": "\u003c 0.5.2-1+deb9u1 (deb)", + "vulnerabilityID": "CVE-2018-25014" + } + } + ], + "artifact": { + "name": "libwebp6", + "version": "0.5.2-1", + "type": "deb", + "locations": null, + "language": "", + "licenses": [ + "Apache-2.0" + ], + "cpes": [ + "cpe:2.3:a:libwebp6:libwebp6:0.5.2-1:*:*:*:*:*:*:*" + ], + "purl": "pkg:deb/debian/libwebp6@0.5.2-1?arch=amd64\u0026upstream=libwebp\u0026distro=debian-9", + "upstreams": [ + { + "name": "libwebp" + } + ], + "metadata": null + } + }, + { + "vulnerability": { + "id": "CVE-2018-25032", + "dataSource": "https://security-tracker.debian.org/tracker/CVE-2018-25032", + "namespace": "debian:distro:debian:9", + "severity": "High", + "urls": [ + "https://security-tracker.debian.org/tracker/CVE-2018-25032" + ], + "description": "zlib before 1.2.12 allows memory corruption when deflating (i.e., when compressing) if the input has many distant matches.", + "cvss": null, + "fix": { + "versions": [ + "1:1.2.8.dfsg-5+deb9u1" + ], + "state": "fixed" + }, + "advisories": null + }, + "relatedVulnerabilities": [ + { + "id": "CVE-2018-25032", + "dataSource": "https://nvd.nist.gov/vuln/detail/CVE-2018-25032", + "namespace": "nvd:cpe", + "severity": "High", + "urls": [ + "http://seclists.org/fulldisclosure/2022/May/33", + "http://seclists.org/fulldisclosure/2022/May/35", + "http://seclists.org/fulldisclosure/2022/May/38", + "http://www.openwall.com/lists/oss-security/2022/03/25/2", + "http://www.openwall.com/lists/oss-security/2022/03/26/1", + "https://cert-portal.siemens.com/productcert/pdf/ssa-333517.pdf", + "https://github.com/madler/zlib/commit/5c44459c3b28a9bd3283aaceab7c615f8020c531", + "https://github.com/madler/zlib/compare/v1.2.11...v1.2.12", + "https://github.com/madler/zlib/issues/605", + "https://lists.debian.org/debian-lts-announce/2022/04/msg00000.html", + "https://lists.debian.org/debian-lts-announce/2022/05/msg00008.html", + "https://lists.debian.org/debian-lts-announce/2022/09/msg00023.html", + "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/DCZFIJBJTZ7CL5QXBFKTQ22Q26VINRUF/", + "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/DF62MVMH3QUGMBDCB3DY2ERQ6EBHTADB/", + "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/JZZPTWRYQULAOL3AW7RZJNVZ2UONXCV4/", + "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/NS2D2GFPFGOJUL4WQ3DUAY7HF4VWQ77F/", + "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/VOKNP2L734AEL47NRYGVZIKEFOUBQY5Y/", + "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/XOKFMSNQ5D5WGMALBNBXU3GE442V74WU/", + "https://security.gentoo.org/glsa/202210-42", + "https://security.netapp.com/advisory/ntap-20220526-0009/", + "https://security.netapp.com/advisory/ntap-20220729-0004/", + "https://support.apple.com/kb/HT213255", + "https://support.apple.com/kb/HT213256", + "https://support.apple.com/kb/HT213257", + "https://www.debian.org/security/2022/dsa-5111", + "https://www.openwall.com/lists/oss-security/2022/03/24/1", + "https://www.openwall.com/lists/oss-security/2022/03/28/1", + "https://www.openwall.com/lists/oss-security/2022/03/28/3", + "https://www.oracle.com/security-alerts/cpujul2022.html" + ], + "description": "zlib before 1.2.12 allows memory corruption when deflating (i.e., when compressing) if the input has many distant matches.", + "cvss": null + } + ], + "matchDetails": [ + { + "type": "exact-indirect-match", + "matcher": "dpkg-matcher", + "searchedBy": { + "distro": { + "type": "debian", + "version": "9" + }, + "namespace": "debian:distro:debian:9", + "package": { + "name": "zlib", + "version": "1:1.2.8.dfsg-5" + } + }, + "found": { + "versionConstraint": "\u003c 1:1.2.8.dfsg-5+deb9u1 (deb)", + "vulnerabilityID": "CVE-2018-25032" + } + } + ], + "artifact": { + "name": "zlib1g", + "version": "1:1.2.8.dfsg-5", + "type": "deb", + "locations": null, + "language": "", + "licenses": [], + "cpes": [ + "cpe:2.3:a:zlib1g:zlib1g:1:1.2.8.dfsg-5:*:*:*:*:*:*:*" + ], + "purl": "pkg:deb/debian/zlib1g@1:1.2.8.dfsg-5?arch=amd64\u0026upstream=zlib\u0026distro=debian-9", + "upstreams": [ + { + "name": "zlib" + } + ], + "metadata": null + } + }, + { + "vulnerability": { + "id": "CVE-2018-5407", + "dataSource": "https://security-tracker.debian.org/tracker/CVE-2018-5407", + "namespace": "debian:distro:debian:9", + "severity": "Medium", + "urls": [ + "https://security-tracker.debian.org/tracker/CVE-2018-5407" + ], + "description": "Simultaneous Multi-threading (SMT) in processors can enable local users to exploit software vulnerable to timing attacks via a side-channel timing attack on 'port contention'.", + "cvss": null, + "fix": { + "versions": [ + "1.1.0j-1~deb9u1" + ], + "state": "fixed" + }, + "advisories": [ + { + "id": "DSA-4348-1", + "link": "https://security-tracker.debian.org/tracker/DSA-4348-1" + } + ] + }, + "relatedVulnerabilities": [ + { + "id": "CVE-2018-5407", + "dataSource": "https://nvd.nist.gov/vuln/detail/CVE-2018-5407", + "namespace": "nvd:cpe", + "severity": "Medium", + "urls": [ + "http://www.securityfocus.com/bid/105897", + "https://access.redhat.com/errata/RHSA-2019:0483", + "https://access.redhat.com/errata/RHSA-2019:0651", + "https://access.redhat.com/errata/RHSA-2019:0652", + "https://access.redhat.com/errata/RHSA-2019:2125", + "https://access.redhat.com/errata/RHSA-2019:3929", + "https://access.redhat.com/errata/RHSA-2019:3931", + "https://access.redhat.com/errata/RHSA-2019:3932", + "https://access.redhat.com/errata/RHSA-2019:3933", + "https://access.redhat.com/errata/RHSA-2019:3935", + "https://eprint.iacr.org/2018/1060.pdf", + "https://github.com/bbbrumley/portsmash", + "https://lists.debian.org/debian-lts-announce/2018/11/msg00024.html", + "https://nodejs.org/en/blog/vulnerability/november-2018-security-releases/", + "https://security.gentoo.org/glsa/201903-10", + "https://security.netapp.com/advisory/ntap-20181126-0001/", + "https://support.f5.com/csp/article/K49711130?utm_source=f5support\u0026amp;utm_medium=RSS", + "https://usn.ubuntu.com/3840-1/", + "https://www.debian.org/security/2018/dsa-4348", + "https://www.debian.org/security/2018/dsa-4355", + "https://www.exploit-db.com/exploits/45785/", + "https://www.oracle.com/security-alerts/cpuapr2020.html", + "https://www.oracle.com/security-alerts/cpujan2020.html", + "https://www.oracle.com/technetwork/security-advisory/cpuapr2019-5072813.html", + "https://www.oracle.com/technetwork/security-advisory/cpujan2019-5072801.html", + "https://www.oracle.com/technetwork/security-advisory/cpujul2019-5072835.html", + "https://www.tenable.com/security/tns-2018-16", + "https://www.tenable.com/security/tns-2018-17" + ], + "description": "Simultaneous Multi-threading (SMT) in processors can enable local users to exploit software vulnerable to timing attacks via a side-channel timing attack on 'port contention'.", + "cvss": null + } + ], + "matchDetails": [ + { + "type": "exact-indirect-match", + "matcher": "dpkg-matcher", + "searchedBy": { + "distro": { + "type": "debian", + "version": "9" + }, + "namespace": "debian:distro:debian:9", + "package": { + "name": "openssl", + "version": "1.1.0f-3+deb9u2" + } + }, + "found": { + "versionConstraint": "\u003c 1.1.0j-1~deb9u1 (deb)", + "vulnerabilityID": "CVE-2018-5407" + } + } + ], + "artifact": { + "name": "libssl1.1", + "version": "1.1.0f-3+deb9u2", + "type": "deb", + "locations": null, + "language": "", + "licenses": [], + "cpes": [ + "cpe:2.3:a:libssl1.1:libssl1.1:1.1.0f-3+deb9u2:*:*:*:*:*:*:*" + ], + "purl": "pkg:deb/debian/libssl1.1@1.1.0f-3+deb9u2?arch=amd64\u0026upstream=openssl\u0026distro=debian-9", + "upstreams": [ + { + "name": "openssl" + } + ], + "metadata": null + } + }, + { + "vulnerability": { + "id": "CVE-2018-5784", + "dataSource": "https://security-tracker.debian.org/tracker/CVE-2018-5784", + "namespace": "debian:distro:debian:9", + "severity": "Medium", + "urls": [ + "https://security-tracker.debian.org/tracker/CVE-2018-5784" + ], + "description": "In LibTIFF 4.0.9, there is an uncontrolled resource consumption in the TIFFSetDirectory function of tif_dir.c. Remote attackers could leverage this vulnerability to cause a denial of service via a crafted tif file. This occurs because the declared number of directory entries is not validated against the actual number of directory entries.", + "cvss": null, + "fix": { + "versions": [ + "4.0.8-2+deb9u4" + ], + "state": "fixed" + }, + "advisories": [ + { + "id": "DSA-4349-1", + "link": "https://security-tracker.debian.org/tracker/DSA-4349-1" + } + ] + }, + "relatedVulnerabilities": [ + { + "id": "CVE-2018-5784", + "dataSource": "https://nvd.nist.gov/vuln/detail/CVE-2018-5784", + "namespace": "nvd:cpe", + "severity": "Medium", + "urls": [ + "http://bugzilla.maptools.org/show_bug.cgi?id=2772", + "https://gitlab.com/libtiff/libtiff/commit/473851d211cf8805a161820337ca74cc9615d6ef", + "https://lists.debian.org/debian-lts-announce/2018/05/msg00022.html", + "https://lists.debian.org/debian-lts-announce/2018/07/msg00002.html", + "https://usn.ubuntu.com/3602-1/", + "https://usn.ubuntu.com/3606-1/", + "https://www.debian.org/security/2018/dsa-4349" + ], + "description": "In LibTIFF 4.0.9, there is an uncontrolled resource consumption in the TIFFSetDirectory function of tif_dir.c. Remote attackers could leverage this vulnerability to cause a denial of service via a crafted tif file. This occurs because the declared number of directory entries is not validated against the actual number of directory entries.", + "cvss": null + } + ], + "matchDetails": [ + { + "type": "exact-indirect-match", + "matcher": "dpkg-matcher", + "searchedBy": { + "distro": { + "type": "debian", + "version": "9" + }, + "namespace": "debian:distro:debian:9", + "package": { + "name": "tiff", + "version": "4.0.8-2+deb9u2" + } + }, + "found": { + "versionConstraint": "\u003c 4.0.8-2+deb9u4 (deb)", + "vulnerabilityID": "CVE-2018-5784" + } + } + ], + "artifact": { + "name": "libtiff5", + "version": "4.0.8-2+deb9u2", + "type": "deb", + "locations": null, + "language": "", + "licenses": [ + "LicenseRef-Hylafax" + ], + "cpes": [ + "cpe:2.3:a:libtiff5:libtiff5:4.0.8-2+deb9u2:*:*:*:*:*:*:*" + ], + "purl": "pkg:deb/debian/libtiff5@4.0.8-2+deb9u2?arch=amd64\u0026upstream=tiff\u0026distro=debian-9", + "upstreams": [ + { + "name": "tiff" + } + ], + "metadata": null + } + }, + { + "vulnerability": { + "id": "CVE-2018-6485", + "dataSource": "https://security-tracker.debian.org/tracker/CVE-2018-6485", + "namespace": "debian:distro:debian:9", + "severity": "Critical", + "urls": [ + "https://security-tracker.debian.org/tracker/CVE-2018-6485" + ], + "description": "An integer overflow in the implementation of the posix_memalign in memalign functions in the GNU C Library (aka glibc or libc6) 2.26 and earlier could cause these functions to return a pointer to a heap area that is too small, potentially leading to heap corruption.", + "cvss": null, + "fix": { + "versions": [], + "state": "wont-fix" + }, + "advisories": null + }, + "relatedVulnerabilities": [ + { + "id": "CVE-2018-6485", + "dataSource": "https://nvd.nist.gov/vuln/detail/CVE-2018-6485", + "namespace": "nvd:cpe", + "severity": "Critical", + "urls": [ + "http://bugs.debian.org/878159", + "http://www.securityfocus.com/bid/102912", + "https://access.redhat.com/errata/RHBA-2019:0327", + "https://access.redhat.com/errata/RHSA-2018:3092", + "https://security.netapp.com/advisory/ntap-20190404-0003/", + "https://sourceware.org/bugzilla/show_bug.cgi?id=22343", + "https://usn.ubuntu.com/4218-1/", + "https://usn.ubuntu.com/4416-1/", + "https://www.oracle.com/technetwork/security-advisory/cpuapr2019-5072813.html" + ], + "description": "An integer overflow in the implementation of the posix_memalign in memalign functions in the GNU C Library (aka glibc or libc6) 2.26 and earlier could cause these functions to return a pointer to a heap area that is too small, potentially leading to heap corruption.", + "cvss": null + } + ], + "matchDetails": [ + { + "type": "exact-indirect-match", + "matcher": "dpkg-matcher", + "searchedBy": { + "distro": { + "type": "debian", + "version": "9" + }, + "namespace": "debian:distro:debian:9", + "package": { + "name": "glibc", + "version": "2.24-11+deb9u3" + } + }, + "found": { + "versionConstraint": "none (deb)", + "vulnerabilityID": "CVE-2018-6485" + } + } + ], + "artifact": { + "name": "libc-bin", + "version": "2.24-11+deb9u3", + "type": "deb", + "locations": null, + "language": "", + "licenses": [ + "GPL-2.0-only", + "LGPL-2.1-only" + ], + "cpes": [ + "cpe:2.3:a:libc-bin:libc-bin:2.24-11+deb9u3:*:*:*:*:*:*:*", + "cpe:2.3:a:libc-bin:libc_bin:2.24-11+deb9u3:*:*:*:*:*:*:*", + "cpe:2.3:a:libc_bin:libc-bin:2.24-11+deb9u3:*:*:*:*:*:*:*", + "cpe:2.3:a:libc_bin:libc_bin:2.24-11+deb9u3:*:*:*:*:*:*:*", + "cpe:2.3:a:libc:libc-bin:2.24-11+deb9u3:*:*:*:*:*:*:*", + "cpe:2.3:a:libc:libc_bin:2.24-11+deb9u3:*:*:*:*:*:*:*" + ], + "purl": "pkg:deb/debian/libc-bin@2.24-11+deb9u3?arch=amd64\u0026upstream=glibc\u0026distro=debian-9", + "upstreams": [ + { + "name": "glibc" + } + ], + "metadata": null + } + }, + { + "vulnerability": { + "id": "CVE-2018-6485", + "dataSource": "https://security-tracker.debian.org/tracker/CVE-2018-6485", + "namespace": "debian:distro:debian:9", + "severity": "Critical", + "urls": [ + "https://security-tracker.debian.org/tracker/CVE-2018-6485" + ], + "description": "An integer overflow in the implementation of the posix_memalign in memalign functions in the GNU C Library (aka glibc or libc6) 2.26 and earlier could cause these functions to return a pointer to a heap area that is too small, potentially leading to heap corruption.", + "cvss": null, + "fix": { + "versions": [], + "state": "wont-fix" + }, + "advisories": null + }, + "relatedVulnerabilities": [ + { + "id": "CVE-2018-6485", + "dataSource": "https://nvd.nist.gov/vuln/detail/CVE-2018-6485", + "namespace": "nvd:cpe", + "severity": "Critical", + "urls": [ + "http://bugs.debian.org/878159", + "http://www.securityfocus.com/bid/102912", + "https://access.redhat.com/errata/RHBA-2019:0327", + "https://access.redhat.com/errata/RHSA-2018:3092", + "https://security.netapp.com/advisory/ntap-20190404-0003/", + "https://sourceware.org/bugzilla/show_bug.cgi?id=22343", + "https://usn.ubuntu.com/4218-1/", + "https://usn.ubuntu.com/4416-1/", + "https://www.oracle.com/technetwork/security-advisory/cpuapr2019-5072813.html" + ], + "description": "An integer overflow in the implementation of the posix_memalign in memalign functions in the GNU C Library (aka glibc or libc6) 2.26 and earlier could cause these functions to return a pointer to a heap area that is too small, potentially leading to heap corruption.", + "cvss": null + } + ], + "matchDetails": [ + { + "type": "exact-indirect-match", + "matcher": "dpkg-matcher", + "searchedBy": { + "distro": { + "type": "debian", + "version": "9" + }, + "namespace": "debian:distro:debian:9", + "package": { + "name": "glibc", + "version": "2.24-11+deb9u3" + } + }, + "found": { + "versionConstraint": "none (deb)", + "vulnerabilityID": "CVE-2018-6485" + } + } + ], + "artifact": { + "name": "libc6", + "version": "2.24-11+deb9u3", + "type": "deb", + "locations": null, + "language": "", + "licenses": [ + "GPL-2.0-only", + "LGPL-2.1-only" + ], + "cpes": [ + "cpe:2.3:a:libc6:libc6:2.24-11+deb9u3:*:*:*:*:*:*:*" + ], + "purl": "pkg:deb/debian/libc6@2.24-11+deb9u3?arch=amd64\u0026upstream=glibc\u0026distro=debian-9", + "upstreams": [ + { + "name": "glibc" + } + ], + "metadata": null + } + }, + { + "vulnerability": { + "id": "CVE-2018-6485", + "dataSource": "https://security-tracker.debian.org/tracker/CVE-2018-6485", + "namespace": "debian:distro:debian:9", + "severity": "Critical", + "urls": [ + "https://security-tracker.debian.org/tracker/CVE-2018-6485" + ], + "description": "An integer overflow in the implementation of the posix_memalign in memalign functions in the GNU C Library (aka glibc or libc6) 2.26 and earlier could cause these functions to return a pointer to a heap area that is too small, potentially leading to heap corruption.", + "cvss": null, + "fix": { + "versions": [], + "state": "wont-fix" + }, + "advisories": null + }, + "relatedVulnerabilities": [ + { + "id": "CVE-2018-6485", + "dataSource": "https://nvd.nist.gov/vuln/detail/CVE-2018-6485", + "namespace": "nvd:cpe", + "severity": "Critical", + "urls": [ + "http://bugs.debian.org/878159", + "http://www.securityfocus.com/bid/102912", + "https://access.redhat.com/errata/RHBA-2019:0327", + "https://access.redhat.com/errata/RHSA-2018:3092", + "https://security.netapp.com/advisory/ntap-20190404-0003/", + "https://sourceware.org/bugzilla/show_bug.cgi?id=22343", + "https://usn.ubuntu.com/4218-1/", + "https://usn.ubuntu.com/4416-1/", + "https://www.oracle.com/technetwork/security-advisory/cpuapr2019-5072813.html" + ], + "description": "An integer overflow in the implementation of the posix_memalign in memalign functions in the GNU C Library (aka glibc or libc6) 2.26 and earlier could cause these functions to return a pointer to a heap area that is too small, potentially leading to heap corruption.", + "cvss": null + } + ], + "matchDetails": [ + { + "type": "exact-indirect-match", + "matcher": "dpkg-matcher", + "searchedBy": { + "distro": { + "type": "debian", + "version": "9" + }, + "namespace": "debian:distro:debian:9", + "package": { + "name": "glibc", + "version": "2.24-11+deb9u3" + } + }, + "found": { + "versionConstraint": "none (deb)", + "vulnerabilityID": "CVE-2018-6485" + } + } + ], + "artifact": { + "name": "multiarch-support", + "version": "2.24-11+deb9u3", + "type": "deb", + "locations": null, + "language": "", + "licenses": [ + "GPL-2.0-only", + "LGPL-2.1-only" + ], + "cpes": [ + "cpe:2.3:a:multiarch-support:multiarch-support:2.24-11+deb9u3:*:*:*:*:*:*:*", + "cpe:2.3:a:multiarch-support:multiarch_support:2.24-11+deb9u3:*:*:*:*:*:*:*", + "cpe:2.3:a:multiarch_support:multiarch-support:2.24-11+deb9u3:*:*:*:*:*:*:*", + "cpe:2.3:a:multiarch_support:multiarch_support:2.24-11+deb9u3:*:*:*:*:*:*:*", + "cpe:2.3:a:multiarch:multiarch-support:2.24-11+deb9u3:*:*:*:*:*:*:*", + "cpe:2.3:a:multiarch:multiarch_support:2.24-11+deb9u3:*:*:*:*:*:*:*" + ], + "purl": "pkg:deb/debian/multiarch-support@2.24-11+deb9u3?arch=amd64\u0026upstream=glibc\u0026distro=debian-9", + "upstreams": [ + { + "name": "glibc" + } + ], + "metadata": null + } + }, + { + "vulnerability": { + "id": "CVE-2018-6551", + "dataSource": "https://security-tracker.debian.org/tracker/CVE-2018-6551", + "namespace": "debian:distro:debian:9", + "severity": "Critical", + "urls": [ + "https://security-tracker.debian.org/tracker/CVE-2018-6551" + ], + "description": "The malloc implementation in the GNU C Library (aka glibc or libc6), from version 2.24 to 2.26 on powerpc, and only in version 2.26 on i386, did not properly handle malloc calls with arguments close to SIZE_MAX and could return a pointer to a heap region that is smaller than requested, eventually leading to heap corruption.", + "cvss": null, + "fix": { + "versions": [], + "state": "wont-fix" + }, + "advisories": null + }, + "relatedVulnerabilities": [ + { + "id": "CVE-2018-6551", + "dataSource": "https://nvd.nist.gov/vuln/detail/CVE-2018-6551", + "namespace": "nvd:cpe", + "severity": "Critical", + "urls": [ + "https://security.netapp.com/advisory/ntap-20190404-0003/", + "https://sourceware.org/bugzilla/show_bug.cgi?id=22774", + "https://sourceware.org/git/?p=glibc.git;a=commit;h=8e448310d74b283c5cd02b9ed7fb997b47bf9b22" + ], + "description": "The malloc implementation in the GNU C Library (aka glibc or libc6), from version 2.24 to 2.26 on powerpc, and only in version 2.26 on i386, did not properly handle malloc calls with arguments close to SIZE_MAX and could return a pointer to a heap region that is smaller than requested, eventually leading to heap corruption.", + "cvss": null + } + ], + "matchDetails": [ + { + "type": "exact-indirect-match", + "matcher": "dpkg-matcher", + "searchedBy": { + "distro": { + "type": "debian", + "version": "9" + }, + "namespace": "debian:distro:debian:9", + "package": { + "name": "glibc", + "version": "2.24-11+deb9u3" + } + }, + "found": { + "versionConstraint": "none (deb)", + "vulnerabilityID": "CVE-2018-6551" + } + } + ], + "artifact": { + "name": "libc-bin", + "version": "2.24-11+deb9u3", + "type": "deb", + "locations": null, + "language": "", + "licenses": [ + "GPL-2.0-only", + "LGPL-2.1-only" + ], + "cpes": [ + "cpe:2.3:a:libc-bin:libc-bin:2.24-11+deb9u3:*:*:*:*:*:*:*", + "cpe:2.3:a:libc-bin:libc_bin:2.24-11+deb9u3:*:*:*:*:*:*:*", + "cpe:2.3:a:libc_bin:libc-bin:2.24-11+deb9u3:*:*:*:*:*:*:*", + "cpe:2.3:a:libc_bin:libc_bin:2.24-11+deb9u3:*:*:*:*:*:*:*", + "cpe:2.3:a:libc:libc-bin:2.24-11+deb9u3:*:*:*:*:*:*:*", + "cpe:2.3:a:libc:libc_bin:2.24-11+deb9u3:*:*:*:*:*:*:*" + ], + "purl": "pkg:deb/debian/libc-bin@2.24-11+deb9u3?arch=amd64\u0026upstream=glibc\u0026distro=debian-9", + "upstreams": [ + { + "name": "glibc" + } + ], + "metadata": null + } + }, + { + "vulnerability": { + "id": "CVE-2018-6551", + "dataSource": "https://security-tracker.debian.org/tracker/CVE-2018-6551", + "namespace": "debian:distro:debian:9", + "severity": "Critical", + "urls": [ + "https://security-tracker.debian.org/tracker/CVE-2018-6551" + ], + "description": "The malloc implementation in the GNU C Library (aka glibc or libc6), from version 2.24 to 2.26 on powerpc, and only in version 2.26 on i386, did not properly handle malloc calls with arguments close to SIZE_MAX and could return a pointer to a heap region that is smaller than requested, eventually leading to heap corruption.", + "cvss": null, + "fix": { + "versions": [], + "state": "wont-fix" + }, + "advisories": null + }, + "relatedVulnerabilities": [ + { + "id": "CVE-2018-6551", + "dataSource": "https://nvd.nist.gov/vuln/detail/CVE-2018-6551", + "namespace": "nvd:cpe", + "severity": "Critical", + "urls": [ + "https://security.netapp.com/advisory/ntap-20190404-0003/", + "https://sourceware.org/bugzilla/show_bug.cgi?id=22774", + "https://sourceware.org/git/?p=glibc.git;a=commit;h=8e448310d74b283c5cd02b9ed7fb997b47bf9b22" + ], + "description": "The malloc implementation in the GNU C Library (aka glibc or libc6), from version 2.24 to 2.26 on powerpc, and only in version 2.26 on i386, did not properly handle malloc calls with arguments close to SIZE_MAX and could return a pointer to a heap region that is smaller than requested, eventually leading to heap corruption.", + "cvss": null + } + ], + "matchDetails": [ + { + "type": "exact-indirect-match", + "matcher": "dpkg-matcher", + "searchedBy": { + "distro": { + "type": "debian", + "version": "9" + }, + "namespace": "debian:distro:debian:9", + "package": { + "name": "glibc", + "version": "2.24-11+deb9u3" + } + }, + "found": { + "versionConstraint": "none (deb)", + "vulnerabilityID": "CVE-2018-6551" + } + } + ], + "artifact": { + "name": "libc6", + "version": "2.24-11+deb9u3", + "type": "deb", + "locations": null, + "language": "", + "licenses": [ + "GPL-2.0-only", + "LGPL-2.1-only" + ], + "cpes": [ + "cpe:2.3:a:libc6:libc6:2.24-11+deb9u3:*:*:*:*:*:*:*" + ], + "purl": "pkg:deb/debian/libc6@2.24-11+deb9u3?arch=amd64\u0026upstream=glibc\u0026distro=debian-9", + "upstreams": [ + { + "name": "glibc" + } + ], + "metadata": null + } + }, + { + "vulnerability": { + "id": "CVE-2018-6551", + "dataSource": "https://security-tracker.debian.org/tracker/CVE-2018-6551", + "namespace": "debian:distro:debian:9", + "severity": "Critical", + "urls": [ + "https://security-tracker.debian.org/tracker/CVE-2018-6551" + ], + "description": "The malloc implementation in the GNU C Library (aka glibc or libc6), from version 2.24 to 2.26 on powerpc, and only in version 2.26 on i386, did not properly handle malloc calls with arguments close to SIZE_MAX and could return a pointer to a heap region that is smaller than requested, eventually leading to heap corruption.", + "cvss": null, + "fix": { + "versions": [], + "state": "wont-fix" + }, + "advisories": null + }, + "relatedVulnerabilities": [ + { + "id": "CVE-2018-6551", + "dataSource": "https://nvd.nist.gov/vuln/detail/CVE-2018-6551", + "namespace": "nvd:cpe", + "severity": "Critical", + "urls": [ + "https://security.netapp.com/advisory/ntap-20190404-0003/", + "https://sourceware.org/bugzilla/show_bug.cgi?id=22774", + "https://sourceware.org/git/?p=glibc.git;a=commit;h=8e448310d74b283c5cd02b9ed7fb997b47bf9b22" + ], + "description": "The malloc implementation in the GNU C Library (aka glibc or libc6), from version 2.24 to 2.26 on powerpc, and only in version 2.26 on i386, did not properly handle malloc calls with arguments close to SIZE_MAX and could return a pointer to a heap region that is smaller than requested, eventually leading to heap corruption.", + "cvss": null + } + ], + "matchDetails": [ + { + "type": "exact-indirect-match", + "matcher": "dpkg-matcher", + "searchedBy": { + "distro": { + "type": "debian", + "version": "9" + }, + "namespace": "debian:distro:debian:9", + "package": { + "name": "glibc", + "version": "2.24-11+deb9u3" + } + }, + "found": { + "versionConstraint": "none (deb)", + "vulnerabilityID": "CVE-2018-6551" + } + } + ], + "artifact": { + "name": "multiarch-support", + "version": "2.24-11+deb9u3", + "type": "deb", + "locations": null, + "language": "", + "licenses": [ + "GPL-2.0-only", + "LGPL-2.1-only" + ], + "cpes": [ + "cpe:2.3:a:multiarch-support:multiarch-support:2.24-11+deb9u3:*:*:*:*:*:*:*", + "cpe:2.3:a:multiarch-support:multiarch_support:2.24-11+deb9u3:*:*:*:*:*:*:*", + "cpe:2.3:a:multiarch_support:multiarch-support:2.24-11+deb9u3:*:*:*:*:*:*:*", + "cpe:2.3:a:multiarch_support:multiarch_support:2.24-11+deb9u3:*:*:*:*:*:*:*", + "cpe:2.3:a:multiarch:multiarch-support:2.24-11+deb9u3:*:*:*:*:*:*:*", + "cpe:2.3:a:multiarch:multiarch_support:2.24-11+deb9u3:*:*:*:*:*:*:*" + ], + "purl": "pkg:deb/debian/multiarch-support@2.24-11+deb9u3?arch=amd64\u0026upstream=glibc\u0026distro=debian-9", + "upstreams": [ + { + "name": "glibc" + } + ], + "metadata": null + } + }, + { + "vulnerability": { + "id": "CVE-2018-6829", + "dataSource": "https://security-tracker.debian.org/tracker/CVE-2018-6829", + "namespace": "debian:distro:debian:9", + "severity": "Negligible", + "urls": [ + "https://security-tracker.debian.org/tracker/CVE-2018-6829" + ], + "description": "cipher/elgamal.c in Libgcrypt through 1.8.2, when used to encrypt messages directly, improperly encodes plaintexts, which allows attackers to obtain sensitive information by reading ciphertext data (i.e., it does not have semantic security in face of a ciphertext-only attack). The Decisional Diffie-Hellman (DDH) assumption does not hold for Libgcrypt's ElGamal implementation.", + "cvss": null, + "fix": { + "versions": [], + "state": "not-fixed" + }, + "advisories": null + }, + "relatedVulnerabilities": [ + { + "id": "CVE-2018-6829", + "dataSource": "https://nvd.nist.gov/vuln/detail/CVE-2018-6829", + "namespace": "nvd:cpe", + "severity": "High", + "urls": [ + "https://github.com/weikengchen/attack-on-libgcrypt-elgamal", + "https://github.com/weikengchen/attack-on-libgcrypt-elgamal/wiki", + "https://lists.gnupg.org/pipermail/gcrypt-devel/2018-February/004394.html", + "https://www.oracle.com/security-alerts/cpujan2020.html" + ], + "description": "cipher/elgamal.c in Libgcrypt through 1.8.2, when used to encrypt messages directly, improperly encodes plaintexts, which allows attackers to obtain sensitive information by reading ciphertext data (i.e., it does not have semantic security in face of a ciphertext-only attack). The Decisional Diffie-Hellman (DDH) assumption does not hold for Libgcrypt's ElGamal implementation.", + "cvss": null + } + ], + "matchDetails": [ + { + "type": "exact-direct-match", + "matcher": "dpkg-matcher", + "searchedBy": { + "distro": { + "type": "debian", + "version": "9" + }, + "namespace": "debian:distro:debian:9", + "package": { + "name": "libgcrypt20", + "version": "1.7.6-2+deb9u3" + } + }, + "found": { + "versionConstraint": "none (deb)", + "vulnerabilityID": "CVE-2018-6829" + } + } + ], + "artifact": { + "name": "libgcrypt20", + "version": "1.7.6-2+deb9u3", + "type": "deb", + "locations": null, + "language": "", + "licenses": [ + "GPL-2.0-only", + "LicenseRef-LGPL" + ], + "cpes": [ + "cpe:2.3:a:libgcrypt20:libgcrypt20:1.7.6-2+deb9u3:*:*:*:*:*:*:*" + ], + "purl": "pkg:deb/debian/libgcrypt20@1.7.6-2+deb9u3?arch=amd64\u0026distro=debian-9", + "upstreams": null, + "metadata": null + } + }, + { + "vulnerability": { + "id": "CVE-2018-6954", + "dataSource": "https://security-tracker.debian.org/tracker/CVE-2018-6954", + "namespace": "debian:distro:debian:9", + "severity": "Low", + "urls": [ + "https://security-tracker.debian.org/tracker/CVE-2018-6954" + ], + "description": "systemd-tmpfiles in systemd through 237 mishandles symlinks present in non-terminal path components, which allows local users to obtain ownership of arbitrary files via vectors involving creation of a directory and a file under that directory, and later replacing that directory with a symlink. This occurs even if the fs.protected_symlinks sysctl is turned on.", + "cvss": null, + "fix": { + "versions": [], + "state": "wont-fix" + }, + "advisories": null + }, + "relatedVulnerabilities": [ + { + "id": "CVE-2018-6954", + "dataSource": "https://nvd.nist.gov/vuln/detail/CVE-2018-6954", + "namespace": "nvd:cpe", + "severity": "High", + "urls": [ + "http://lists.opensuse.org/opensuse-security-announce/2019-05/msg00062.html", + "https://github.com/systemd/systemd/issues/7986", + "https://lists.apache.org/thread.html/r58af02e294bd07f487e2c64ffc0a29b837db5600e33b6e698b9d696b@%3Cissues.bookkeeper.apache.org%3E", + "https://lists.apache.org/thread.html/rf4c02775860db415b4955778a131c2795223f61cb8c6a450893651e4@%3Cissues.bookkeeper.apache.org%3E", + "https://usn.ubuntu.com/3816-1/", + "https://usn.ubuntu.com/3816-2/" + ], + "description": "systemd-tmpfiles in systemd through 237 mishandles symlinks present in non-terminal path components, which allows local users to obtain ownership of arbitrary files via vectors involving creation of a directory and a file under that directory, and later replacing that directory with a symlink. This occurs even if the fs.protected_symlinks sysctl is turned on.", + "cvss": null + } + ], + "matchDetails": [ + { + "type": "exact-indirect-match", + "matcher": "dpkg-matcher", + "searchedBy": { + "distro": { + "type": "debian", + "version": "9" + }, + "namespace": "debian:distro:debian:9", + "package": { + "name": "systemd", + "version": "232-25+deb9u6" + } + }, + "found": { + "versionConstraint": "none (deb)", + "vulnerabilityID": "CVE-2018-6954" + } + } + ], + "artifact": { + "name": "libsystemd0", + "version": "232-25+deb9u6", + "type": "deb", + "locations": null, + "language": "", + "licenses": [ + "LicenseRef-CC0", + "LicenseRef-Expat", + "GPL-2.0-only", + "GPL-2.0-or-later", + "LGPL-2.1-only", + "LGPL-2.1-or-later", + "LicenseRef-public-domain" + ], + "cpes": [ + "cpe:2.3:a:libsystemd0:libsystemd0:232-25+deb9u6:*:*:*:*:*:*:*" + ], + "purl": "pkg:deb/debian/libsystemd0@232-25+deb9u6?arch=amd64\u0026upstream=systemd\u0026distro=debian-9", + "upstreams": [ + { + "name": "systemd" + } + ], + "metadata": null + } + }, + { + "vulnerability": { + "id": "CVE-2018-6954", + "dataSource": "https://security-tracker.debian.org/tracker/CVE-2018-6954", + "namespace": "debian:distro:debian:9", + "severity": "Low", + "urls": [ + "https://security-tracker.debian.org/tracker/CVE-2018-6954" + ], + "description": "systemd-tmpfiles in systemd through 237 mishandles symlinks present in non-terminal path components, which allows local users to obtain ownership of arbitrary files via vectors involving creation of a directory and a file under that directory, and later replacing that directory with a symlink. This occurs even if the fs.protected_symlinks sysctl is turned on.", + "cvss": null, + "fix": { + "versions": [], + "state": "wont-fix" + }, + "advisories": null + }, + "relatedVulnerabilities": [ + { + "id": "CVE-2018-6954", + "dataSource": "https://nvd.nist.gov/vuln/detail/CVE-2018-6954", + "namespace": "nvd:cpe", + "severity": "High", + "urls": [ + "http://lists.opensuse.org/opensuse-security-announce/2019-05/msg00062.html", + "https://github.com/systemd/systemd/issues/7986", + "https://lists.apache.org/thread.html/r58af02e294bd07f487e2c64ffc0a29b837db5600e33b6e698b9d696b@%3Cissues.bookkeeper.apache.org%3E", + "https://lists.apache.org/thread.html/rf4c02775860db415b4955778a131c2795223f61cb8c6a450893651e4@%3Cissues.bookkeeper.apache.org%3E", + "https://usn.ubuntu.com/3816-1/", + "https://usn.ubuntu.com/3816-2/" + ], + "description": "systemd-tmpfiles in systemd through 237 mishandles symlinks present in non-terminal path components, which allows local users to obtain ownership of arbitrary files via vectors involving creation of a directory and a file under that directory, and later replacing that directory with a symlink. This occurs even if the fs.protected_symlinks sysctl is turned on.", + "cvss": null + } + ], + "matchDetails": [ + { + "type": "exact-indirect-match", + "matcher": "dpkg-matcher", + "searchedBy": { + "distro": { + "type": "debian", + "version": "9" + }, + "namespace": "debian:distro:debian:9", + "package": { + "name": "systemd", + "version": "232-25+deb9u6" + } + }, + "found": { + "versionConstraint": "none (deb)", + "vulnerabilityID": "CVE-2018-6954" + } + } + ], + "artifact": { + "name": "libudev1", + "version": "232-25+deb9u6", + "type": "deb", + "locations": null, + "language": "", + "licenses": [ + "LicenseRef-CC0", + "LicenseRef-Expat", + "GPL-2.0-only", + "GPL-2.0-or-later", + "LGPL-2.1-only", + "LGPL-2.1-or-later", + "LicenseRef-public-domain" + ], + "cpes": [ + "cpe:2.3:a:libudev1:libudev1:232-25+deb9u6:*:*:*:*:*:*:*" + ], + "purl": "pkg:deb/debian/libudev1@232-25+deb9u6?arch=amd64\u0026upstream=systemd\u0026distro=debian-9", + "upstreams": [ + { + "name": "systemd" + } + ], + "metadata": null + } + }, + { + "vulnerability": { + "id": "CVE-2018-7169", + "dataSource": "https://security-tracker.debian.org/tracker/CVE-2018-7169", + "namespace": "debian:distro:debian:9", + "severity": "Low", + "urls": [ + "https://security-tracker.debian.org/tracker/CVE-2018-7169" + ], + "description": "An issue was discovered in shadow 4.5. newgidmap (in shadow-utils) is setuid and allows an unprivileged user to be placed in a user namespace where setgroups(2) is permitted. This allows an attacker to remove themselves from a supplementary group, which may allow access to certain filesystem paths if the administrator has used \"group blacklisting\" (e.g., chmod g-rwx) to restrict access to paths. This flaw effectively reverts a security feature in the kernel (in particular, the /proc/self/setgroups knob) to prevent this sort of privilege escalation.", + "cvss": null, + "fix": { + "versions": [], + "state": "wont-fix" + }, + "advisories": null + }, + "relatedVulnerabilities": [ + { + "id": "CVE-2018-7169", + "dataSource": "https://nvd.nist.gov/vuln/detail/CVE-2018-7169", + "namespace": "nvd:cpe", + "severity": "Medium", + "urls": [ + "https://bugs.launchpad.net/ubuntu/+source/shadow/+bug/1729357", + "https://security.gentoo.org/glsa/201805-09" + ], + "description": "An issue was discovered in shadow 4.5. newgidmap (in shadow-utils) is setuid and allows an unprivileged user to be placed in a user namespace where setgroups(2) is permitted. This allows an attacker to remove themselves from a supplementary group, which may allow access to certain filesystem paths if the administrator has used \"group blacklisting\" (e.g., chmod g-rwx) to restrict access to paths. This flaw effectively reverts a security feature in the kernel (in particular, the /proc/self/setgroups knob) to prevent this sort of privilege escalation.", + "cvss": null + } + ], + "matchDetails": [ + { + "type": "exact-indirect-match", + "matcher": "dpkg-matcher", + "searchedBy": { + "distro": { + "type": "debian", + "version": "9" + }, + "namespace": "debian:distro:debian:9", + "package": { + "name": "shadow", + "version": "1:4.4-4.1" + } + }, + "found": { + "versionConstraint": "none (deb)", + "vulnerabilityID": "CVE-2018-7169" + } + } + ], + "artifact": { + "name": "login", + "version": "1:4.4-4.1", + "type": "deb", + "locations": null, + "language": "", + "licenses": [ + "GPL-2.0-only" + ], + "cpes": [ + "cpe:2.3:a:login:login:1:4.4-4.1:*:*:*:*:*:*:*" + ], + "purl": "pkg:deb/debian/login@1:4.4-4.1?arch=amd64\u0026upstream=shadow\u0026distro=debian-9", + "upstreams": [ + { + "name": "shadow" + } + ], + "metadata": null + } + }, + { + "vulnerability": { + "id": "CVE-2018-7169", + "dataSource": "https://security-tracker.debian.org/tracker/CVE-2018-7169", + "namespace": "debian:distro:debian:9", + "severity": "Low", + "urls": [ + "https://security-tracker.debian.org/tracker/CVE-2018-7169" + ], + "description": "An issue was discovered in shadow 4.5. newgidmap (in shadow-utils) is setuid and allows an unprivileged user to be placed in a user namespace where setgroups(2) is permitted. This allows an attacker to remove themselves from a supplementary group, which may allow access to certain filesystem paths if the administrator has used \"group blacklisting\" (e.g., chmod g-rwx) to restrict access to paths. This flaw effectively reverts a security feature in the kernel (in particular, the /proc/self/setgroups knob) to prevent this sort of privilege escalation.", + "cvss": null, + "fix": { + "versions": [], + "state": "wont-fix" + }, + "advisories": null + }, + "relatedVulnerabilities": [ + { + "id": "CVE-2018-7169", + "dataSource": "https://nvd.nist.gov/vuln/detail/CVE-2018-7169", + "namespace": "nvd:cpe", + "severity": "Medium", + "urls": [ + "https://bugs.launchpad.net/ubuntu/+source/shadow/+bug/1729357", + "https://security.gentoo.org/glsa/201805-09" + ], + "description": "An issue was discovered in shadow 4.5. newgidmap (in shadow-utils) is setuid and allows an unprivileged user to be placed in a user namespace where setgroups(2) is permitted. This allows an attacker to remove themselves from a supplementary group, which may allow access to certain filesystem paths if the administrator has used \"group blacklisting\" (e.g., chmod g-rwx) to restrict access to paths. This flaw effectively reverts a security feature in the kernel (in particular, the /proc/self/setgroups knob) to prevent this sort of privilege escalation.", + "cvss": null + } + ], + "matchDetails": [ + { + "type": "exact-indirect-match", + "matcher": "dpkg-matcher", + "searchedBy": { + "distro": { + "type": "debian", + "version": "9" + }, + "namespace": "debian:distro:debian:9", + "package": { + "name": "shadow", + "version": "1:4.4-4.1" + } + }, + "found": { + "versionConstraint": "none (deb)", + "vulnerabilityID": "CVE-2018-7169" + } + } + ], + "artifact": { + "name": "passwd", + "version": "1:4.4-4.1", + "type": "deb", + "locations": null, + "language": "", + "licenses": [ + "GPL-2.0-only" + ], + "cpes": [ + "cpe:2.3:a:passwd:passwd:1:4.4-4.1:*:*:*:*:*:*:*" + ], + "purl": "pkg:deb/debian/passwd@1:4.4-4.1?arch=amd64\u0026upstream=shadow\u0026distro=debian-9", + "upstreams": [ + { + "name": "shadow" + } + ], + "metadata": null + } + }, + { + "vulnerability": { + "id": "CVE-2018-7456", + "dataSource": "https://security-tracker.debian.org/tracker/CVE-2018-7456", + "namespace": "debian:distro:debian:9", + "severity": "Medium", + "urls": [ + "https://security-tracker.debian.org/tracker/CVE-2018-7456" + ], + "description": "A NULL Pointer Dereference occurs in the function TIFFPrintDirectory in tif_print.c in LibTIFF 3.9.3, 3.9.4, 3.9.5, 3.9.6, 3.9.7, 4.0.0alpha4, 4.0.0alpha5, 4.0.0alpha6, 4.0.0beta7, 4.0.0, 4.0.1, 4.0.2, 4.0.3, 4.0.4, 4.0.4beta, 4.0.5, 4.0.6, 4.0.7, 4.0.8 and 4.0.9 when using the tiffinfo tool to print crafted TIFF information, a different vulnerability than CVE-2017-18013. (This affects an earlier part of the TIFFPrintDirectory function that was not addressed by the CVE-2017-18013 patch.)", + "cvss": null, + "fix": { + "versions": [ + "4.0.8-2+deb9u4" + ], + "state": "fixed" + }, + "advisories": [ + { + "id": "DSA-4349-1", + "link": "https://security-tracker.debian.org/tracker/DSA-4349-1" + } + ] + }, + "relatedVulnerabilities": [ + { + "id": "CVE-2018-7456", + "dataSource": "https://nvd.nist.gov/vuln/detail/CVE-2018-7456", + "namespace": "nvd:cpe", + "severity": "Medium", + "urls": [ + "http://bugzilla.maptools.org/show_bug.cgi?id=2778", + "https://access.redhat.com/errata/RHSA-2019:2051", + "https://access.redhat.com/errata/RHSA-2019:2053", + "https://github.com/xiaoqx/pocs/tree/master/libtiff", + "https://gitlab.com/libtiff/libtiff/commit/be4c85b16e8801a16eec25e80eb9f3dd6a96731b", + "https://lists.debian.org/debian-lts-announce/2018/04/msg00010.html", + "https://lists.debian.org/debian-lts-announce/2018/04/msg00011.html", + "https://lists.debian.org/debian-lts-announce/2018/07/msg00002.html", + "https://usn.ubuntu.com/3864-1/", + "https://www.debian.org/security/2018/dsa-4349" + ], + "description": "A NULL Pointer Dereference occurs in the function TIFFPrintDirectory in tif_print.c in LibTIFF 3.9.3, 3.9.4, 3.9.5, 3.9.6, 3.9.7, 4.0.0alpha4, 4.0.0alpha5, 4.0.0alpha6, 4.0.0beta7, 4.0.0, 4.0.1, 4.0.2, 4.0.3, 4.0.4, 4.0.4beta, 4.0.5, 4.0.6, 4.0.7, 4.0.8 and 4.0.9 when using the tiffinfo tool to print crafted TIFF information, a different vulnerability than CVE-2017-18013. (This affects an earlier part of the TIFFPrintDirectory function that was not addressed by the CVE-2017-18013 patch.)", + "cvss": null + } + ], + "matchDetails": [ + { + "type": "exact-indirect-match", + "matcher": "dpkg-matcher", + "searchedBy": { + "distro": { + "type": "debian", + "version": "9" + }, + "namespace": "debian:distro:debian:9", + "package": { + "name": "tiff", + "version": "4.0.8-2+deb9u2" + } + }, + "found": { + "versionConstraint": "\u003c 4.0.8-2+deb9u4 (deb)", + "vulnerabilityID": "CVE-2018-7456" + } + } + ], + "artifact": { + "name": "libtiff5", + "version": "4.0.8-2+deb9u2", + "type": "deb", + "locations": null, + "language": "", + "licenses": [ + "LicenseRef-Hylafax" + ], + "cpes": [ + "cpe:2.3:a:libtiff5:libtiff5:4.0.8-2+deb9u2:*:*:*:*:*:*:*" + ], + "purl": "pkg:deb/debian/libtiff5@4.0.8-2+deb9u2?arch=amd64\u0026upstream=tiff\u0026distro=debian-9", + "upstreams": [ + { + "name": "tiff" + } + ], + "metadata": null + } + }, + { + "vulnerability": { + "id": "CVE-2018-8905", + "dataSource": "https://security-tracker.debian.org/tracker/CVE-2018-8905", + "namespace": "debian:distro:debian:9", + "severity": "High", + "urls": [ + "https://security-tracker.debian.org/tracker/CVE-2018-8905" + ], + "description": "In LibTIFF 4.0.9, a heap-based buffer overflow occurs in the function LZWDecodeCompat in tif_lzw.c via a crafted TIFF file, as demonstrated by tiff2ps.", + "cvss": null, + "fix": { + "versions": [ + "4.0.8-2+deb9u4" + ], + "state": "fixed" + }, + "advisories": [ + { + "id": "DSA-4349-1", + "link": "https://security-tracker.debian.org/tracker/DSA-4349-1" + } + ] + }, + "relatedVulnerabilities": [ + { + "id": "CVE-2018-8905", + "dataSource": "https://nvd.nist.gov/vuln/detail/CVE-2018-8905", + "namespace": "nvd:cpe", + "severity": "High", + "urls": [ + "http://bugzilla.maptools.org/show_bug.cgi?id=2780", + "https://access.redhat.com/errata/RHSA-2019:2053", + "https://github.com/halfbitteam/POCs/tree/master/libtiff-4.08_tiff2ps_heap_overflow", + "https://gitlab.com/libtiff/libtiff/commit/58a898cb4459055bb488ca815c23b880c242a27d", + "https://lists.debian.org/debian-lts-announce/2018/05/msg00008.html", + "https://lists.debian.org/debian-lts-announce/2018/05/msg00009.html", + "https://lists.debian.org/debian-lts-announce/2018/07/msg00002.html", + "https://usn.ubuntu.com/3864-1/", + "https://www.debian.org/security/2018/dsa-4349" + ], + "description": "In LibTIFF 4.0.9, a heap-based buffer overflow occurs in the function LZWDecodeCompat in tif_lzw.c via a crafted TIFF file, as demonstrated by tiff2ps.", + "cvss": null + } + ], + "matchDetails": [ + { + "type": "exact-indirect-match", + "matcher": "dpkg-matcher", + "searchedBy": { + "distro": { + "type": "debian", + "version": "9" + }, + "namespace": "debian:distro:debian:9", + "package": { + "name": "tiff", + "version": "4.0.8-2+deb9u2" + } + }, + "found": { + "versionConstraint": "\u003c 4.0.8-2+deb9u4 (deb)", + "vulnerabilityID": "CVE-2018-8905" + } + } + ], + "artifact": { + "name": "libtiff5", + "version": "4.0.8-2+deb9u2", + "type": "deb", + "locations": null, + "language": "", + "licenses": [ + "LicenseRef-Hylafax" + ], + "cpes": [ + "cpe:2.3:a:libtiff5:libtiff5:4.0.8-2+deb9u2:*:*:*:*:*:*:*" + ], + "purl": "pkg:deb/debian/libtiff5@4.0.8-2+deb9u2?arch=amd64\u0026upstream=tiff\u0026distro=debian-9", + "upstreams": [ + { + "name": "tiff" + } + ], + "metadata": null + } + }, + { + "vulnerability": { + "id": "CVE-2018-9234", + "dataSource": "https://security-tracker.debian.org/tracker/CVE-2018-9234", + "namespace": "debian:distro:debian:9", + "severity": "Low", + "urls": [ + "https://security-tracker.debian.org/tracker/CVE-2018-9234" + ], + "description": "GnuPG 2.2.4 and 2.2.5 does not enforce a configuration in which key certification requires an offline master Certify key, which results in apparently valid certifications that occurred only with access to a signing subkey.", + "cvss": null, + "fix": { + "versions": [], + "state": "wont-fix" + }, + "advisories": null + }, + "relatedVulnerabilities": [ + { + "id": "CVE-2018-9234", + "dataSource": "https://nvd.nist.gov/vuln/detail/CVE-2018-9234", + "namespace": "nvd:cpe", + "severity": "High", + "urls": [ + "https://dev.gnupg.org/T3844", + "https://usn.ubuntu.com/3675-1/" + ], + "description": "GnuPG 2.2.4 and 2.2.5 does not enforce a configuration in which key certification requires an offline master Certify key, which results in apparently valid certifications that occurred only with access to a signing subkey.", + "cvss": null + } + ], + "matchDetails": [ + { + "type": "exact-indirect-match", + "matcher": "dpkg-matcher", + "searchedBy": { + "distro": { + "type": "debian", + "version": "9" + }, + "namespace": "debian:distro:debian:9", + "package": { + "name": "gnupg2", + "version": "2.1.18-8~deb9u3" + } + }, + "found": { + "versionConstraint": "none (deb)", + "vulnerabilityID": "CVE-2018-9234" + } + } + ], + "artifact": { + "name": "gpgv", + "version": "2.1.18-8~deb9u3", + "type": "deb", + "locations": null, + "language": "", + "licenses": [ + "BSD-3-Clause", + "LicenseRef-Expat", + "GPL-3.0-only", + "GPL-3.0-or-later", + "LGPL-2.1-only", + "LGPL-2.1-or-later", + "LGPL-3.0-only", + "LGPL-3.0-or-later", + "LicenseRef-RFC-Reference", + "LicenseRef-TinySCHEME", + "LicenseRef-permissive" + ], + "cpes": [ + "cpe:2.3:a:gpgv:gpgv:2.1.18-8~deb9u3:*:*:*:*:*:*:*" + ], + "purl": "pkg:deb/debian/gpgv@2.1.18-8~deb9u3?arch=amd64\u0026upstream=gnupg2\u0026distro=debian-9", + "upstreams": [ + { + "name": "gnupg2" + } + ], + "metadata": null + } + }, + { + "vulnerability": { + "id": "CVE-2019-1010022", + "dataSource": "https://security-tracker.debian.org/tracker/CVE-2019-1010022", + "namespace": "debian:distro:debian:9", + "severity": "Negligible", + "urls": [ + "https://security-tracker.debian.org/tracker/CVE-2019-1010022" + ], + "description": "** DISPUTED ** GNU Libc current is affected by: Mitigation bypass. The impact is: Attacker may bypass stack guard protection. The component is: nptl. The attack vector is: Exploit stack buffer overflow vulnerability and use this bypass vulnerability to bypass stack guard. NOTE: Upstream comments indicate \"this is being treated as a non-security bug and no real threat.\"", + "cvss": null, + "fix": { + "versions": [], + "state": "not-fixed" + }, + "advisories": null + }, + "relatedVulnerabilities": [ + { + "id": "CVE-2019-1010022", + "dataSource": "https://nvd.nist.gov/vuln/detail/CVE-2019-1010022", + "namespace": "nvd:cpe", + "severity": "Critical", + "urls": [ + "https://security-tracker.debian.org/tracker/CVE-2019-1010022", + "https://sourceware.org/bugzilla/show_bug.cgi?id=22850", + "https://sourceware.org/bugzilla/show_bug.cgi?id=22850#c3", + "https://ubuntu.com/security/CVE-2019-1010022" + ], + "description": "** DISPUTED ** GNU Libc current is affected by: Mitigation bypass. The impact is: Attacker may bypass stack guard protection. The component is: nptl. The attack vector is: Exploit stack buffer overflow vulnerability and use this bypass vulnerability to bypass stack guard. NOTE: Upstream comments indicate \"this is being treated as a non-security bug and no real threat.\"", + "cvss": null + } + ], + "matchDetails": [ + { + "type": "exact-indirect-match", + "matcher": "dpkg-matcher", + "searchedBy": { + "distro": { + "type": "debian", + "version": "9" + }, + "namespace": "debian:distro:debian:9", + "package": { + "name": "glibc", + "version": "2.24-11+deb9u3" + } + }, + "found": { + "versionConstraint": "none (deb)", + "vulnerabilityID": "CVE-2019-1010022" + } + } + ], + "artifact": { + "name": "libc-bin", + "version": "2.24-11+deb9u3", + "type": "deb", + "locations": null, + "language": "", + "licenses": [ + "GPL-2.0-only", + "LGPL-2.1-only" + ], + "cpes": [ + "cpe:2.3:a:libc-bin:libc-bin:2.24-11+deb9u3:*:*:*:*:*:*:*", + "cpe:2.3:a:libc-bin:libc_bin:2.24-11+deb9u3:*:*:*:*:*:*:*", + "cpe:2.3:a:libc_bin:libc-bin:2.24-11+deb9u3:*:*:*:*:*:*:*", + "cpe:2.3:a:libc_bin:libc_bin:2.24-11+deb9u3:*:*:*:*:*:*:*", + "cpe:2.3:a:libc:libc-bin:2.24-11+deb9u3:*:*:*:*:*:*:*", + "cpe:2.3:a:libc:libc_bin:2.24-11+deb9u3:*:*:*:*:*:*:*" + ], + "purl": "pkg:deb/debian/libc-bin@2.24-11+deb9u3?arch=amd64\u0026upstream=glibc\u0026distro=debian-9", + "upstreams": [ + { + "name": "glibc" + } + ], + "metadata": null + } + }, + { + "vulnerability": { + "id": "CVE-2019-1010022", + "dataSource": "https://security-tracker.debian.org/tracker/CVE-2019-1010022", + "namespace": "debian:distro:debian:9", + "severity": "Negligible", + "urls": [ + "https://security-tracker.debian.org/tracker/CVE-2019-1010022" + ], + "description": "** DISPUTED ** GNU Libc current is affected by: Mitigation bypass. The impact is: Attacker may bypass stack guard protection. The component is: nptl. The attack vector is: Exploit stack buffer overflow vulnerability and use this bypass vulnerability to bypass stack guard. NOTE: Upstream comments indicate \"this is being treated as a non-security bug and no real threat.\"", + "cvss": null, + "fix": { + "versions": [], + "state": "not-fixed" + }, + "advisories": null + }, + "relatedVulnerabilities": [ + { + "id": "CVE-2019-1010022", + "dataSource": "https://nvd.nist.gov/vuln/detail/CVE-2019-1010022", + "namespace": "nvd:cpe", + "severity": "Critical", + "urls": [ + "https://security-tracker.debian.org/tracker/CVE-2019-1010022", + "https://sourceware.org/bugzilla/show_bug.cgi?id=22850", + "https://sourceware.org/bugzilla/show_bug.cgi?id=22850#c3", + "https://ubuntu.com/security/CVE-2019-1010022" + ], + "description": "** DISPUTED ** GNU Libc current is affected by: Mitigation bypass. The impact is: Attacker may bypass stack guard protection. The component is: nptl. The attack vector is: Exploit stack buffer overflow vulnerability and use this bypass vulnerability to bypass stack guard. NOTE: Upstream comments indicate \"this is being treated as a non-security bug and no real threat.\"", + "cvss": null + } + ], + "matchDetails": [ + { + "type": "exact-indirect-match", + "matcher": "dpkg-matcher", + "searchedBy": { + "distro": { + "type": "debian", + "version": "9" + }, + "namespace": "debian:distro:debian:9", + "package": { + "name": "glibc", + "version": "2.24-11+deb9u3" + } + }, + "found": { + "versionConstraint": "none (deb)", + "vulnerabilityID": "CVE-2019-1010022" + } + } + ], + "artifact": { + "name": "libc6", + "version": "2.24-11+deb9u3", + "type": "deb", + "locations": null, + "language": "", + "licenses": [ + "GPL-2.0-only", + "LGPL-2.1-only" + ], + "cpes": [ + "cpe:2.3:a:libc6:libc6:2.24-11+deb9u3:*:*:*:*:*:*:*" + ], + "purl": "pkg:deb/debian/libc6@2.24-11+deb9u3?arch=amd64\u0026upstream=glibc\u0026distro=debian-9", + "upstreams": [ + { + "name": "glibc" + } + ], + "metadata": null + } + }, + { + "vulnerability": { + "id": "CVE-2019-1010022", + "dataSource": "https://security-tracker.debian.org/tracker/CVE-2019-1010022", + "namespace": "debian:distro:debian:9", + "severity": "Negligible", + "urls": [ + "https://security-tracker.debian.org/tracker/CVE-2019-1010022" + ], + "description": "** DISPUTED ** GNU Libc current is affected by: Mitigation bypass. The impact is: Attacker may bypass stack guard protection. The component is: nptl. The attack vector is: Exploit stack buffer overflow vulnerability and use this bypass vulnerability to bypass stack guard. NOTE: Upstream comments indicate \"this is being treated as a non-security bug and no real threat.\"", + "cvss": null, + "fix": { + "versions": [], + "state": "not-fixed" + }, + "advisories": null + }, + "relatedVulnerabilities": [ + { + "id": "CVE-2019-1010022", + "dataSource": "https://nvd.nist.gov/vuln/detail/CVE-2019-1010022", + "namespace": "nvd:cpe", + "severity": "Critical", + "urls": [ + "https://security-tracker.debian.org/tracker/CVE-2019-1010022", + "https://sourceware.org/bugzilla/show_bug.cgi?id=22850", + "https://sourceware.org/bugzilla/show_bug.cgi?id=22850#c3", + "https://ubuntu.com/security/CVE-2019-1010022" + ], + "description": "** DISPUTED ** GNU Libc current is affected by: Mitigation bypass. The impact is: Attacker may bypass stack guard protection. The component is: nptl. The attack vector is: Exploit stack buffer overflow vulnerability and use this bypass vulnerability to bypass stack guard. NOTE: Upstream comments indicate \"this is being treated as a non-security bug and no real threat.\"", + "cvss": null + } + ], + "matchDetails": [ + { + "type": "exact-indirect-match", + "matcher": "dpkg-matcher", + "searchedBy": { + "distro": { + "type": "debian", + "version": "9" + }, + "namespace": "debian:distro:debian:9", + "package": { + "name": "glibc", + "version": "2.24-11+deb9u3" + } + }, + "found": { + "versionConstraint": "none (deb)", + "vulnerabilityID": "CVE-2019-1010022" + } + } + ], + "artifact": { + "name": "multiarch-support", + "version": "2.24-11+deb9u3", + "type": "deb", + "locations": null, + "language": "", + "licenses": [ + "GPL-2.0-only", + "LGPL-2.1-only" + ], + "cpes": [ + "cpe:2.3:a:multiarch-support:multiarch-support:2.24-11+deb9u3:*:*:*:*:*:*:*", + "cpe:2.3:a:multiarch-support:multiarch_support:2.24-11+deb9u3:*:*:*:*:*:*:*", + "cpe:2.3:a:multiarch_support:multiarch-support:2.24-11+deb9u3:*:*:*:*:*:*:*", + "cpe:2.3:a:multiarch_support:multiarch_support:2.24-11+deb9u3:*:*:*:*:*:*:*", + "cpe:2.3:a:multiarch:multiarch-support:2.24-11+deb9u3:*:*:*:*:*:*:*", + "cpe:2.3:a:multiarch:multiarch_support:2.24-11+deb9u3:*:*:*:*:*:*:*" + ], + "purl": "pkg:deb/debian/multiarch-support@2.24-11+deb9u3?arch=amd64\u0026upstream=glibc\u0026distro=debian-9", + "upstreams": [ + { + "name": "glibc" + } + ], + "metadata": null + } + }, + { + "vulnerability": { + "id": "CVE-2019-1010023", + "dataSource": "https://security-tracker.debian.org/tracker/CVE-2019-1010023", + "namespace": "debian:distro:debian:9", + "severity": "Negligible", + "urls": [ + "https://security-tracker.debian.org/tracker/CVE-2019-1010023" + ], + "description": "** DISPUTED ** GNU Libc current is affected by: Re-mapping current loaded library with malicious ELF file. The impact is: In worst case attacker may evaluate privileges. The component is: libld. The attack vector is: Attacker sends 2 ELF files to victim and asks to run ldd on it. ldd execute code. NOTE: Upstream comments indicate \"this is being treated as a non-security bug and no real threat.\"", + "cvss": null, + "fix": { + "versions": [], + "state": "not-fixed" + }, + "advisories": null + }, + "relatedVulnerabilities": [ + { + "id": "CVE-2019-1010023", + "dataSource": "https://nvd.nist.gov/vuln/detail/CVE-2019-1010023", + "namespace": "nvd:cpe", + "severity": "High", + "urls": [ + "http://www.securityfocus.com/bid/109167", + "https://security-tracker.debian.org/tracker/CVE-2019-1010023", + "https://sourceware.org/bugzilla/show_bug.cgi?id=22851", + "https://support.f5.com/csp/article/K11932200?utm_source=f5support\u0026amp;utm_medium=RSS", + "https://ubuntu.com/security/CVE-2019-1010023" + ], + "description": "** DISPUTED ** GNU Libc current is affected by: Re-mapping current loaded library with malicious ELF file. The impact is: In worst case attacker may evaluate privileges. The component is: libld. The attack vector is: Attacker sends 2 ELF files to victim and asks to run ldd on it. ldd execute code. NOTE: Upstream comments indicate \"this is being treated as a non-security bug and no real threat.\"", + "cvss": null + } + ], + "matchDetails": [ + { + "type": "exact-indirect-match", + "matcher": "dpkg-matcher", + "searchedBy": { + "distro": { + "type": "debian", + "version": "9" + }, + "namespace": "debian:distro:debian:9", + "package": { + "name": "glibc", + "version": "2.24-11+deb9u3" + } + }, + "found": { + "versionConstraint": "none (deb)", + "vulnerabilityID": "CVE-2019-1010023" + } + } + ], + "artifact": { + "name": "libc-bin", + "version": "2.24-11+deb9u3", + "type": "deb", + "locations": null, + "language": "", + "licenses": [ + "GPL-2.0-only", + "LGPL-2.1-only" + ], + "cpes": [ + "cpe:2.3:a:libc-bin:libc-bin:2.24-11+deb9u3:*:*:*:*:*:*:*", + "cpe:2.3:a:libc-bin:libc_bin:2.24-11+deb9u3:*:*:*:*:*:*:*", + "cpe:2.3:a:libc_bin:libc-bin:2.24-11+deb9u3:*:*:*:*:*:*:*", + "cpe:2.3:a:libc_bin:libc_bin:2.24-11+deb9u3:*:*:*:*:*:*:*", + "cpe:2.3:a:libc:libc-bin:2.24-11+deb9u3:*:*:*:*:*:*:*", + "cpe:2.3:a:libc:libc_bin:2.24-11+deb9u3:*:*:*:*:*:*:*" + ], + "purl": "pkg:deb/debian/libc-bin@2.24-11+deb9u3?arch=amd64\u0026upstream=glibc\u0026distro=debian-9", + "upstreams": [ + { + "name": "glibc" + } + ], + "metadata": null + } + }, + { + "vulnerability": { + "id": "CVE-2019-1010023", + "dataSource": "https://security-tracker.debian.org/tracker/CVE-2019-1010023", + "namespace": "debian:distro:debian:9", + "severity": "Negligible", + "urls": [ + "https://security-tracker.debian.org/tracker/CVE-2019-1010023" + ], + "description": "** DISPUTED ** GNU Libc current is affected by: Re-mapping current loaded library with malicious ELF file. The impact is: In worst case attacker may evaluate privileges. The component is: libld. The attack vector is: Attacker sends 2 ELF files to victim and asks to run ldd on it. ldd execute code. NOTE: Upstream comments indicate \"this is being treated as a non-security bug and no real threat.\"", + "cvss": null, + "fix": { + "versions": [], + "state": "not-fixed" + }, + "advisories": null + }, + "relatedVulnerabilities": [ + { + "id": "CVE-2019-1010023", + "dataSource": "https://nvd.nist.gov/vuln/detail/CVE-2019-1010023", + "namespace": "nvd:cpe", + "severity": "High", + "urls": [ + "http://www.securityfocus.com/bid/109167", + "https://security-tracker.debian.org/tracker/CVE-2019-1010023", + "https://sourceware.org/bugzilla/show_bug.cgi?id=22851", + "https://support.f5.com/csp/article/K11932200?utm_source=f5support\u0026amp;utm_medium=RSS", + "https://ubuntu.com/security/CVE-2019-1010023" + ], + "description": "** DISPUTED ** GNU Libc current is affected by: Re-mapping current loaded library with malicious ELF file. The impact is: In worst case attacker may evaluate privileges. The component is: libld. The attack vector is: Attacker sends 2 ELF files to victim and asks to run ldd on it. ldd execute code. NOTE: Upstream comments indicate \"this is being treated as a non-security bug and no real threat.\"", + "cvss": null + } + ], + "matchDetails": [ + { + "type": "exact-indirect-match", + "matcher": "dpkg-matcher", + "searchedBy": { + "distro": { + "type": "debian", + "version": "9" + }, + "namespace": "debian:distro:debian:9", + "package": { + "name": "glibc", + "version": "2.24-11+deb9u3" + } + }, + "found": { + "versionConstraint": "none (deb)", + "vulnerabilityID": "CVE-2019-1010023" + } + } + ], + "artifact": { + "name": "libc6", + "version": "2.24-11+deb9u3", + "type": "deb", + "locations": null, + "language": "", + "licenses": [ + "GPL-2.0-only", + "LGPL-2.1-only" + ], + "cpes": [ + "cpe:2.3:a:libc6:libc6:2.24-11+deb9u3:*:*:*:*:*:*:*" + ], + "purl": "pkg:deb/debian/libc6@2.24-11+deb9u3?arch=amd64\u0026upstream=glibc\u0026distro=debian-9", + "upstreams": [ + { + "name": "glibc" + } + ], + "metadata": null + } + }, + { + "vulnerability": { + "id": "CVE-2019-1010023", + "dataSource": "https://security-tracker.debian.org/tracker/CVE-2019-1010023", + "namespace": "debian:distro:debian:9", + "severity": "Negligible", + "urls": [ + "https://security-tracker.debian.org/tracker/CVE-2019-1010023" + ], + "description": "** DISPUTED ** GNU Libc current is affected by: Re-mapping current loaded library with malicious ELF file. The impact is: In worst case attacker may evaluate privileges. The component is: libld. The attack vector is: Attacker sends 2 ELF files to victim and asks to run ldd on it. ldd execute code. NOTE: Upstream comments indicate \"this is being treated as a non-security bug and no real threat.\"", + "cvss": null, + "fix": { + "versions": [], + "state": "not-fixed" + }, + "advisories": null + }, + "relatedVulnerabilities": [ + { + "id": "CVE-2019-1010023", + "dataSource": "https://nvd.nist.gov/vuln/detail/CVE-2019-1010023", + "namespace": "nvd:cpe", + "severity": "High", + "urls": [ + "http://www.securityfocus.com/bid/109167", + "https://security-tracker.debian.org/tracker/CVE-2019-1010023", + "https://sourceware.org/bugzilla/show_bug.cgi?id=22851", + "https://support.f5.com/csp/article/K11932200?utm_source=f5support\u0026amp;utm_medium=RSS", + "https://ubuntu.com/security/CVE-2019-1010023" + ], + "description": "** DISPUTED ** GNU Libc current is affected by: Re-mapping current loaded library with malicious ELF file. The impact is: In worst case attacker may evaluate privileges. The component is: libld. The attack vector is: Attacker sends 2 ELF files to victim and asks to run ldd on it. ldd execute code. NOTE: Upstream comments indicate \"this is being treated as a non-security bug and no real threat.\"", + "cvss": null + } + ], + "matchDetails": [ + { + "type": "exact-indirect-match", + "matcher": "dpkg-matcher", + "searchedBy": { + "distro": { + "type": "debian", + "version": "9" + }, + "namespace": "debian:distro:debian:9", + "package": { + "name": "glibc", + "version": "2.24-11+deb9u3" + } + }, + "found": { + "versionConstraint": "none (deb)", + "vulnerabilityID": "CVE-2019-1010023" + } + } + ], + "artifact": { + "name": "multiarch-support", + "version": "2.24-11+deb9u3", + "type": "deb", + "locations": null, + "language": "", + "licenses": [ + "GPL-2.0-only", + "LGPL-2.1-only" + ], + "cpes": [ + "cpe:2.3:a:multiarch-support:multiarch-support:2.24-11+deb9u3:*:*:*:*:*:*:*", + "cpe:2.3:a:multiarch-support:multiarch_support:2.24-11+deb9u3:*:*:*:*:*:*:*", + "cpe:2.3:a:multiarch_support:multiarch-support:2.24-11+deb9u3:*:*:*:*:*:*:*", + "cpe:2.3:a:multiarch_support:multiarch_support:2.24-11+deb9u3:*:*:*:*:*:*:*", + "cpe:2.3:a:multiarch:multiarch-support:2.24-11+deb9u3:*:*:*:*:*:*:*", + "cpe:2.3:a:multiarch:multiarch_support:2.24-11+deb9u3:*:*:*:*:*:*:*" + ], + "purl": "pkg:deb/debian/multiarch-support@2.24-11+deb9u3?arch=amd64\u0026upstream=glibc\u0026distro=debian-9", + "upstreams": [ + { + "name": "glibc" + } + ], + "metadata": null + } + }, + { + "vulnerability": { + "id": "CVE-2019-1010024", + "dataSource": "https://security-tracker.debian.org/tracker/CVE-2019-1010024", + "namespace": "debian:distro:debian:9", + "severity": "Negligible", + "urls": [ + "https://security-tracker.debian.org/tracker/CVE-2019-1010024" + ], + "description": "** DISPUTED ** GNU Libc current is affected by: Mitigation bypass. The impact is: Attacker may bypass ASLR using cache of thread stack and heap. The component is: glibc. NOTE: Upstream comments indicate \"this is being treated as a non-security bug and no real threat.\"", + "cvss": null, + "fix": { + "versions": [], + "state": "not-fixed" + }, + "advisories": null + }, + "relatedVulnerabilities": [ + { + "id": "CVE-2019-1010024", + "dataSource": "https://nvd.nist.gov/vuln/detail/CVE-2019-1010024", + "namespace": "nvd:cpe", + "severity": "Medium", + "urls": [ + "http://www.securityfocus.com/bid/109162", + "https://security-tracker.debian.org/tracker/CVE-2019-1010024", + "https://sourceware.org/bugzilla/show_bug.cgi?id=22852", + "https://support.f5.com/csp/article/K06046097", + "https://support.f5.com/csp/article/K06046097?utm_source=f5support\u0026amp;utm_medium=RSS", + "https://ubuntu.com/security/CVE-2019-1010024" + ], + "description": "** DISPUTED ** GNU Libc current is affected by: Mitigation bypass. The impact is: Attacker may bypass ASLR using cache of thread stack and heap. The component is: glibc. NOTE: Upstream comments indicate \"this is being treated as a non-security bug and no real threat.\"", + "cvss": null + } + ], + "matchDetails": [ + { + "type": "exact-indirect-match", + "matcher": "dpkg-matcher", + "searchedBy": { + "distro": { + "type": "debian", + "version": "9" + }, + "namespace": "debian:distro:debian:9", + "package": { + "name": "glibc", + "version": "2.24-11+deb9u3" + } + }, + "found": { + "versionConstraint": "none (deb)", + "vulnerabilityID": "CVE-2019-1010024" + } + } + ], + "artifact": { + "name": "libc-bin", + "version": "2.24-11+deb9u3", + "type": "deb", + "locations": null, + "language": "", + "licenses": [ + "GPL-2.0-only", + "LGPL-2.1-only" + ], + "cpes": [ + "cpe:2.3:a:libc-bin:libc-bin:2.24-11+deb9u3:*:*:*:*:*:*:*", + "cpe:2.3:a:libc-bin:libc_bin:2.24-11+deb9u3:*:*:*:*:*:*:*", + "cpe:2.3:a:libc_bin:libc-bin:2.24-11+deb9u3:*:*:*:*:*:*:*", + "cpe:2.3:a:libc_bin:libc_bin:2.24-11+deb9u3:*:*:*:*:*:*:*", + "cpe:2.3:a:libc:libc-bin:2.24-11+deb9u3:*:*:*:*:*:*:*", + "cpe:2.3:a:libc:libc_bin:2.24-11+deb9u3:*:*:*:*:*:*:*" + ], + "purl": "pkg:deb/debian/libc-bin@2.24-11+deb9u3?arch=amd64\u0026upstream=glibc\u0026distro=debian-9", + "upstreams": [ + { + "name": "glibc" + } + ], + "metadata": null + } + }, + { + "vulnerability": { + "id": "CVE-2019-1010024", + "dataSource": "https://security-tracker.debian.org/tracker/CVE-2019-1010024", + "namespace": "debian:distro:debian:9", + "severity": "Negligible", + "urls": [ + "https://security-tracker.debian.org/tracker/CVE-2019-1010024" + ], + "description": "** DISPUTED ** GNU Libc current is affected by: Mitigation bypass. The impact is: Attacker may bypass ASLR using cache of thread stack and heap. The component is: glibc. NOTE: Upstream comments indicate \"this is being treated as a non-security bug and no real threat.\"", + "cvss": null, + "fix": { + "versions": [], + "state": "not-fixed" + }, + "advisories": null + }, + "relatedVulnerabilities": [ + { + "id": "CVE-2019-1010024", + "dataSource": "https://nvd.nist.gov/vuln/detail/CVE-2019-1010024", + "namespace": "nvd:cpe", + "severity": "Medium", + "urls": [ + "http://www.securityfocus.com/bid/109162", + "https://security-tracker.debian.org/tracker/CVE-2019-1010024", + "https://sourceware.org/bugzilla/show_bug.cgi?id=22852", + "https://support.f5.com/csp/article/K06046097", + "https://support.f5.com/csp/article/K06046097?utm_source=f5support\u0026amp;utm_medium=RSS", + "https://ubuntu.com/security/CVE-2019-1010024" + ], + "description": "** DISPUTED ** GNU Libc current is affected by: Mitigation bypass. The impact is: Attacker may bypass ASLR using cache of thread stack and heap. The component is: glibc. NOTE: Upstream comments indicate \"this is being treated as a non-security bug and no real threat.\"", + "cvss": null + } + ], + "matchDetails": [ + { + "type": "exact-indirect-match", + "matcher": "dpkg-matcher", + "searchedBy": { + "distro": { + "type": "debian", + "version": "9" + }, + "namespace": "debian:distro:debian:9", + "package": { + "name": "glibc", + "version": "2.24-11+deb9u3" + } + }, + "found": { + "versionConstraint": "none (deb)", + "vulnerabilityID": "CVE-2019-1010024" + } + } + ], + "artifact": { + "name": "libc6", + "version": "2.24-11+deb9u3", + "type": "deb", + "locations": null, + "language": "", + "licenses": [ + "GPL-2.0-only", + "LGPL-2.1-only" + ], + "cpes": [ + "cpe:2.3:a:libc6:libc6:2.24-11+deb9u3:*:*:*:*:*:*:*" + ], + "purl": "pkg:deb/debian/libc6@2.24-11+deb9u3?arch=amd64\u0026upstream=glibc\u0026distro=debian-9", + "upstreams": [ + { + "name": "glibc" + } + ], + "metadata": null + } + }, + { + "vulnerability": { + "id": "CVE-2019-1010024", + "dataSource": "https://security-tracker.debian.org/tracker/CVE-2019-1010024", + "namespace": "debian:distro:debian:9", + "severity": "Negligible", + "urls": [ + "https://security-tracker.debian.org/tracker/CVE-2019-1010024" + ], + "description": "** DISPUTED ** GNU Libc current is affected by: Mitigation bypass. The impact is: Attacker may bypass ASLR using cache of thread stack and heap. The component is: glibc. NOTE: Upstream comments indicate \"this is being treated as a non-security bug and no real threat.\"", + "cvss": null, + "fix": { + "versions": [], + "state": "not-fixed" + }, + "advisories": null + }, + "relatedVulnerabilities": [ + { + "id": "CVE-2019-1010024", + "dataSource": "https://nvd.nist.gov/vuln/detail/CVE-2019-1010024", + "namespace": "nvd:cpe", + "severity": "Medium", + "urls": [ + "http://www.securityfocus.com/bid/109162", + "https://security-tracker.debian.org/tracker/CVE-2019-1010024", + "https://sourceware.org/bugzilla/show_bug.cgi?id=22852", + "https://support.f5.com/csp/article/K06046097", + "https://support.f5.com/csp/article/K06046097?utm_source=f5support\u0026amp;utm_medium=RSS", + "https://ubuntu.com/security/CVE-2019-1010024" + ], + "description": "** DISPUTED ** GNU Libc current is affected by: Mitigation bypass. The impact is: Attacker may bypass ASLR using cache of thread stack and heap. The component is: glibc. NOTE: Upstream comments indicate \"this is being treated as a non-security bug and no real threat.\"", + "cvss": null + } + ], + "matchDetails": [ + { + "type": "exact-indirect-match", + "matcher": "dpkg-matcher", + "searchedBy": { + "distro": { + "type": "debian", + "version": "9" + }, + "namespace": "debian:distro:debian:9", + "package": { + "name": "glibc", + "version": "2.24-11+deb9u3" + } + }, + "found": { + "versionConstraint": "none (deb)", + "vulnerabilityID": "CVE-2019-1010024" + } + } + ], + "artifact": { + "name": "multiarch-support", + "version": "2.24-11+deb9u3", + "type": "deb", + "locations": null, + "language": "", + "licenses": [ + "GPL-2.0-only", + "LGPL-2.1-only" + ], + "cpes": [ + "cpe:2.3:a:multiarch-support:multiarch-support:2.24-11+deb9u3:*:*:*:*:*:*:*", + "cpe:2.3:a:multiarch-support:multiarch_support:2.24-11+deb9u3:*:*:*:*:*:*:*", + "cpe:2.3:a:multiarch_support:multiarch-support:2.24-11+deb9u3:*:*:*:*:*:*:*", + "cpe:2.3:a:multiarch_support:multiarch_support:2.24-11+deb9u3:*:*:*:*:*:*:*", + "cpe:2.3:a:multiarch:multiarch-support:2.24-11+deb9u3:*:*:*:*:*:*:*", + "cpe:2.3:a:multiarch:multiarch_support:2.24-11+deb9u3:*:*:*:*:*:*:*" + ], + "purl": "pkg:deb/debian/multiarch-support@2.24-11+deb9u3?arch=amd64\u0026upstream=glibc\u0026distro=debian-9", + "upstreams": [ + { + "name": "glibc" + } + ], + "metadata": null + } + }, + { + "vulnerability": { + "id": "CVE-2019-1010025", + "dataSource": "https://security-tracker.debian.org/tracker/CVE-2019-1010025", + "namespace": "debian:distro:debian:9", + "severity": "Negligible", + "urls": [ + "https://security-tracker.debian.org/tracker/CVE-2019-1010025" + ], + "description": "** DISPUTED ** GNU Libc current is affected by: Mitigation bypass. The impact is: Attacker may guess the heap addresses of pthread_created thread. The component is: glibc. NOTE: the vendor's position is \"ASLR bypass itself is not a vulnerability.\"", + "cvss": null, + "fix": { + "versions": [], + "state": "not-fixed" + }, + "advisories": null + }, + "relatedVulnerabilities": [ + { + "id": "CVE-2019-1010025", + "dataSource": "https://nvd.nist.gov/vuln/detail/CVE-2019-1010025", + "namespace": "nvd:cpe", + "severity": "Medium", + "urls": [ + "https://security-tracker.debian.org/tracker/CVE-2019-1010025", + "https://sourceware.org/bugzilla/show_bug.cgi?id=22853", + "https://support.f5.com/csp/article/K06046097", + "https://support.f5.com/csp/article/K06046097?utm_source=f5support\u0026amp;utm_medium=RSS", + "https://ubuntu.com/security/CVE-2019-1010025" + ], + "description": "** DISPUTED ** GNU Libc current is affected by: Mitigation bypass. The impact is: Attacker may guess the heap addresses of pthread_created thread. The component is: glibc. NOTE: the vendor's position is \"ASLR bypass itself is not a vulnerability.\"", + "cvss": null + } + ], + "matchDetails": [ + { + "type": "exact-indirect-match", + "matcher": "dpkg-matcher", + "searchedBy": { + "distro": { + "type": "debian", + "version": "9" + }, + "namespace": "debian:distro:debian:9", + "package": { + "name": "glibc", + "version": "2.24-11+deb9u3" + } + }, + "found": { + "versionConstraint": "none (deb)", + "vulnerabilityID": "CVE-2019-1010025" + } + } + ], + "artifact": { + "name": "libc-bin", + "version": "2.24-11+deb9u3", + "type": "deb", + "locations": null, + "language": "", + "licenses": [ + "GPL-2.0-only", + "LGPL-2.1-only" + ], + "cpes": [ + "cpe:2.3:a:libc-bin:libc-bin:2.24-11+deb9u3:*:*:*:*:*:*:*", + "cpe:2.3:a:libc-bin:libc_bin:2.24-11+deb9u3:*:*:*:*:*:*:*", + "cpe:2.3:a:libc_bin:libc-bin:2.24-11+deb9u3:*:*:*:*:*:*:*", + "cpe:2.3:a:libc_bin:libc_bin:2.24-11+deb9u3:*:*:*:*:*:*:*", + "cpe:2.3:a:libc:libc-bin:2.24-11+deb9u3:*:*:*:*:*:*:*", + "cpe:2.3:a:libc:libc_bin:2.24-11+deb9u3:*:*:*:*:*:*:*" + ], + "purl": "pkg:deb/debian/libc-bin@2.24-11+deb9u3?arch=amd64\u0026upstream=glibc\u0026distro=debian-9", + "upstreams": [ + { + "name": "glibc" + } + ], + "metadata": null + } + }, + { + "vulnerability": { + "id": "CVE-2019-1010025", + "dataSource": "https://security-tracker.debian.org/tracker/CVE-2019-1010025", + "namespace": "debian:distro:debian:9", + "severity": "Negligible", + "urls": [ + "https://security-tracker.debian.org/tracker/CVE-2019-1010025" + ], + "description": "** DISPUTED ** GNU Libc current is affected by: Mitigation bypass. The impact is: Attacker may guess the heap addresses of pthread_created thread. The component is: glibc. NOTE: the vendor's position is \"ASLR bypass itself is not a vulnerability.\"", + "cvss": null, + "fix": { + "versions": [], + "state": "not-fixed" + }, + "advisories": null + }, + "relatedVulnerabilities": [ + { + "id": "CVE-2019-1010025", + "dataSource": "https://nvd.nist.gov/vuln/detail/CVE-2019-1010025", + "namespace": "nvd:cpe", + "severity": "Medium", + "urls": [ + "https://security-tracker.debian.org/tracker/CVE-2019-1010025", + "https://sourceware.org/bugzilla/show_bug.cgi?id=22853", + "https://support.f5.com/csp/article/K06046097", + "https://support.f5.com/csp/article/K06046097?utm_source=f5support\u0026amp;utm_medium=RSS", + "https://ubuntu.com/security/CVE-2019-1010025" + ], + "description": "** DISPUTED ** GNU Libc current is affected by: Mitigation bypass. The impact is: Attacker may guess the heap addresses of pthread_created thread. The component is: glibc. NOTE: the vendor's position is \"ASLR bypass itself is not a vulnerability.\"", + "cvss": null + } + ], + "matchDetails": [ + { + "type": "exact-indirect-match", + "matcher": "dpkg-matcher", + "searchedBy": { + "distro": { + "type": "debian", + "version": "9" + }, + "namespace": "debian:distro:debian:9", + "package": { + "name": "glibc", + "version": "2.24-11+deb9u3" + } + }, + "found": { + "versionConstraint": "none (deb)", + "vulnerabilityID": "CVE-2019-1010025" + } + } + ], + "artifact": { + "name": "libc6", + "version": "2.24-11+deb9u3", + "type": "deb", + "locations": null, + "language": "", + "licenses": [ + "GPL-2.0-only", + "LGPL-2.1-only" + ], + "cpes": [ + "cpe:2.3:a:libc6:libc6:2.24-11+deb9u3:*:*:*:*:*:*:*" + ], + "purl": "pkg:deb/debian/libc6@2.24-11+deb9u3?arch=amd64\u0026upstream=glibc\u0026distro=debian-9", + "upstreams": [ + { + "name": "glibc" + } + ], + "metadata": null + } + }, + { + "vulnerability": { + "id": "CVE-2019-1010025", + "dataSource": "https://security-tracker.debian.org/tracker/CVE-2019-1010025", + "namespace": "debian:distro:debian:9", + "severity": "Negligible", + "urls": [ + "https://security-tracker.debian.org/tracker/CVE-2019-1010025" + ], + "description": "** DISPUTED ** GNU Libc current is affected by: Mitigation bypass. The impact is: Attacker may guess the heap addresses of pthread_created thread. The component is: glibc. NOTE: the vendor's position is \"ASLR bypass itself is not a vulnerability.\"", + "cvss": null, + "fix": { + "versions": [], + "state": "not-fixed" + }, + "advisories": null + }, + "relatedVulnerabilities": [ + { + "id": "CVE-2019-1010025", + "dataSource": "https://nvd.nist.gov/vuln/detail/CVE-2019-1010025", + "namespace": "nvd:cpe", + "severity": "Medium", + "urls": [ + "https://security-tracker.debian.org/tracker/CVE-2019-1010025", + "https://sourceware.org/bugzilla/show_bug.cgi?id=22853", + "https://support.f5.com/csp/article/K06046097", + "https://support.f5.com/csp/article/K06046097?utm_source=f5support\u0026amp;utm_medium=RSS", + "https://ubuntu.com/security/CVE-2019-1010025" + ], + "description": "** DISPUTED ** GNU Libc current is affected by: Mitigation bypass. The impact is: Attacker may guess the heap addresses of pthread_created thread. The component is: glibc. NOTE: the vendor's position is \"ASLR bypass itself is not a vulnerability.\"", + "cvss": null + } + ], + "matchDetails": [ + { + "type": "exact-indirect-match", + "matcher": "dpkg-matcher", + "searchedBy": { + "distro": { + "type": "debian", + "version": "9" + }, + "namespace": "debian:distro:debian:9", + "package": { + "name": "glibc", + "version": "2.24-11+deb9u3" + } + }, + "found": { + "versionConstraint": "none (deb)", + "vulnerabilityID": "CVE-2019-1010025" + } + } + ], + "artifact": { + "name": "multiarch-support", + "version": "2.24-11+deb9u3", + "type": "deb", + "locations": null, + "language": "", + "licenses": [ + "GPL-2.0-only", + "LGPL-2.1-only" + ], + "cpes": [ + "cpe:2.3:a:multiarch-support:multiarch-support:2.24-11+deb9u3:*:*:*:*:*:*:*", + "cpe:2.3:a:multiarch-support:multiarch_support:2.24-11+deb9u3:*:*:*:*:*:*:*", + "cpe:2.3:a:multiarch_support:multiarch-support:2.24-11+deb9u3:*:*:*:*:*:*:*", + "cpe:2.3:a:multiarch_support:multiarch_support:2.24-11+deb9u3:*:*:*:*:*:*:*", + "cpe:2.3:a:multiarch:multiarch-support:2.24-11+deb9u3:*:*:*:*:*:*:*", + "cpe:2.3:a:multiarch:multiarch_support:2.24-11+deb9u3:*:*:*:*:*:*:*" + ], + "purl": "pkg:deb/debian/multiarch-support@2.24-11+deb9u3?arch=amd64\u0026upstream=glibc\u0026distro=debian-9", + "upstreams": [ + { + "name": "glibc" + } + ], + "metadata": null + } + }, + { + "vulnerability": { + "id": "CVE-2019-11038", + "dataSource": "https://security-tracker.debian.org/tracker/CVE-2019-11038", + "namespace": "debian:distro:debian:9", + "severity": "Medium", + "urls": [ + "https://security-tracker.debian.org/tracker/CVE-2019-11038" + ], + "description": "When using the gdImageCreateFromXbm() function in the GD Graphics Library (aka LibGD) 2.2.5, as used in the PHP GD extension in PHP versions 7.1.x below 7.1.30, 7.2.x below 7.2.19 and 7.3.x below 7.3.6, it is possible to supply data that will cause the function to use the value of uninitialized variable. This may lead to disclosing contents of the stack that has been left there by previous code.", + "cvss": null, + "fix": { + "versions": [ + "2.2.4-2+deb9u5" + ], + "state": "fixed" + }, + "advisories": null + }, + "relatedVulnerabilities": [ + { + "id": "CVE-2019-11038", + "dataSource": "https://nvd.nist.gov/vuln/detail/CVE-2019-11038", + "namespace": "nvd:cpe", + "severity": "Medium", + "urls": [ + "http://lists.opensuse.org/opensuse-security-announce/2020-03/msg00020.html", + "https://access.redhat.com/errata/RHSA-2019:2519", + "https://access.redhat.com/errata/RHSA-2019:3299", + "https://bugs.debian.org/cgi-bin/bugreport.cgi?bug=929821", + "https://bugs.php.net/bug.php?id=77973", + "https://bugzilla.redhat.com/show_bug.cgi?id=1724149", + "https://bugzilla.redhat.com/show_bug.cgi?id=1724432", + "https://bugzilla.suse.com/show_bug.cgi?id=1140118", + "https://bugzilla.suse.com/show_bug.cgi?id=1140120", + "https://github.com/libgd/libgd/issues/501", + "https://lists.debian.org/debian-lts-announce/2019/06/msg00003.html", + "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/3CZ2QADQTKRHTGB2AHD7J4QQNDLBEMM6/", + "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/PKSSWFR2WPMUOIB5EN5ZM252NNEPYUTG/", + "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/WAZBVK6XNYEIN7RDQXESSD63QHXPLKWL/", + "https://seclists.org/bugtraq/2019/Sep/38", + "https://usn.ubuntu.com/4316-1/", + "https://usn.ubuntu.com/4316-2/", + "https://www.debian.org/security/2019/dsa-4529" + ], + "description": "When using the gdImageCreateFromXbm() function in the GD Graphics Library (aka LibGD) 2.2.5, as used in the PHP GD extension in PHP versions 7.1.x below 7.1.30, 7.2.x below 7.2.19 and 7.3.x below 7.3.6, it is possible to supply data that will cause the function to use the value of uninitialized variable. This may lead to disclosing contents of the stack that has been left there by previous code.", + "cvss": null + } + ], + "matchDetails": [ + { + "type": "exact-indirect-match", + "matcher": "dpkg-matcher", + "searchedBy": { + "distro": { + "type": "debian", + "version": "9" + }, + "namespace": "debian:distro:debian:9", + "package": { + "name": "libgd2", + "version": "2.2.4-2+deb9u3" + } + }, + "found": { + "versionConstraint": "\u003c 2.2.4-2+deb9u5 (deb)", + "vulnerabilityID": "CVE-2019-11038" + } + } + ], + "artifact": { + "name": "libgd3", + "version": "2.2.4-2+deb9u3", + "type": "deb", + "locations": null, + "language": "", + "licenses": [ + "BSD-3-Clause", + "LicenseRef-GAP-Makefile.in", + "LicenseRef-GAP-configure", + "GD", + "GPL-2.0-only", + "GPL-2.0-or-later", + "HPND", + "MIT", + "LicenseRef-WEBP", + "LicenseRef-XFIG" + ], + "cpes": [ + "cpe:2.3:a:libgd3:libgd3:2.2.4-2+deb9u3:*:*:*:*:*:*:*" + ], + "purl": "pkg:deb/debian/libgd3@2.2.4-2+deb9u3?arch=amd64\u0026upstream=libgd2\u0026distro=debian-9", + "upstreams": [ + { + "name": "libgd2" + } + ], + "metadata": null + } + }, + { + "vulnerability": { + "id": "CVE-2019-11068", + "dataSource": "https://security-tracker.debian.org/tracker/CVE-2019-11068", + "namespace": "debian:distro:debian:9", + "severity": "Critical", + "urls": [ + "https://security-tracker.debian.org/tracker/CVE-2019-11068" + ], + "description": "libxslt through 1.1.33 allows bypass of a protection mechanism because callers of xsltCheckRead and xsltCheckWrite permit access even upon receiving a -1 error code. xsltCheckRead can return -1 for a crafted URL that is not actually invalid and is subsequently loaded.", + "cvss": null, + "fix": { + "versions": [ + "1.1.29-2.1+deb9u1" + ], + "state": "fixed" + }, + "advisories": null + }, + "relatedVulnerabilities": [ + { + "id": "CVE-2019-11068", + "dataSource": "https://nvd.nist.gov/vuln/detail/CVE-2019-11068", + "namespace": "nvd:cpe", + "severity": "Critical", + "urls": [ + "http://lists.opensuse.org/opensuse-security-announce/2019-05/msg00048.html", + "http://lists.opensuse.org/opensuse-security-announce/2019-05/msg00052.html", + "http://lists.opensuse.org/opensuse-security-announce/2019-05/msg00053.html", + "http://lists.opensuse.org/opensuse-security-announce/2019-06/msg00025.html", + "http://lists.opensuse.org/opensuse-security-announce/2019-08/msg00001.html", + "http://www.openwall.com/lists/oss-security/2019/04/22/1", + "http://www.openwall.com/lists/oss-security/2019/04/23/5", + "https://gitlab.gnome.org/GNOME/libxslt/commit/e03553605b45c88f0b4b2980adfbbb8f6fca2fd6", + "https://lists.debian.org/debian-lts-announce/2019/04/msg00016.html", + "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/36TEYN37XCCKN2XUMRTBBW67BPNMSW4K/", + "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/GCOAX2IHUMKCM3ILHTMGLHCDSBTLP2JU/", + "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/SK4YNISS22MJY22YX5I6V2U63QZAUEHA/", + "https://security.netapp.com/advisory/ntap-20191017-0001/", + "https://usn.ubuntu.com/3947-1/", + "https://usn.ubuntu.com/3947-2/", + "https://www.oracle.com/technetwork/security-advisory/cpuoct2019-5072832.html" + ], + "description": "libxslt through 1.1.33 allows bypass of a protection mechanism because callers of xsltCheckRead and xsltCheckWrite permit access even upon receiving a -1 error code. xsltCheckRead can return -1 for a crafted URL that is not actually invalid and is subsequently loaded.", + "cvss": null + } + ], + "matchDetails": [ + { + "type": "exact-indirect-match", + "matcher": "dpkg-matcher", + "searchedBy": { + "distro": { + "type": "debian", + "version": "9" + }, + "namespace": "debian:distro:debian:9", + "package": { + "name": "libxslt", + "version": "1.1.29-2.1" + } + }, + "found": { + "versionConstraint": "\u003c 1.1.29-2.1+deb9u1 (deb)", + "vulnerabilityID": "CVE-2019-11068" + } + } + ], + "artifact": { + "name": "libxslt1.1", + "version": "1.1.29-2.1", + "type": "deb", + "locations": null, + "language": "", + "licenses": [], + "cpes": [ + "cpe:2.3:a:libxslt1.1:libxslt1.1:1.1.29-2.1:*:*:*:*:*:*:*" + ], + "purl": "pkg:deb/debian/libxslt1.1@1.1.29-2.1?arch=amd64\u0026upstream=libxslt\u0026distro=debian-9", + "upstreams": [ + { + "name": "libxslt" + } + ], + "metadata": null + } + }, + { + "vulnerability": { + "id": "CVE-2019-12900", + "dataSource": "https://security-tracker.debian.org/tracker/CVE-2019-12900", + "namespace": "debian:distro:debian:9", + "severity": "Critical", + "urls": [ + "https://security-tracker.debian.org/tracker/CVE-2019-12900" + ], + "description": "BZ2_decompress in decompress.c in bzip2 through 1.0.6 has an out-of-bounds write when there are many selectors.", + "cvss": null, + "fix": { + "versions": [], + "state": "wont-fix" + }, + "advisories": null + }, + "relatedVulnerabilities": [ + { + "id": "CVE-2019-12900", + "dataSource": "https://nvd.nist.gov/vuln/detail/CVE-2019-12900", + "namespace": "nvd:cpe", + "severity": "Critical", + "urls": [ + "http://lists.opensuse.org/opensuse-security-announce/2019-07/msg00040.html", + "http://lists.opensuse.org/opensuse-security-announce/2019-08/msg00050.html", + "http://lists.opensuse.org/opensuse-security-announce/2019-11/msg00078.html", + "http://lists.opensuse.org/opensuse-security-announce/2019-12/msg00000.html", + "http://packetstormsecurity.com/files/153644/Slackware-Security-Advisory-bzip2-Updates.html", + "http://packetstormsecurity.com/files/153957/FreeBSD-Security-Advisory-FreeBSD-SA-19-18.bzip2.html", + "https://gitlab.com/federicomenaquintero/bzip2/commit/74de1e2e6ffc9d51ef9824db71a8ffee5962cdbc", + "https://lists.apache.org/thread.html/ra0adb9653c7de9539b93cc8434143b655f753b9f60580ff260becb2b@%3Cusers.kafka.apache.org%3E", + "https://lists.apache.org/thread.html/rce8cd8c30f60604b580ea01bebda8a671a25c9a1629f409fc24e7774@%3Cuser.flink.apache.org%3E", + "https://lists.apache.org/thread.html/rda98305669476c4d90cc8527c4deda7e449019dd1fe9936b56671dd4@%3Cuser.flink.apache.org%3E", + "https://lists.debian.org/debian-lts-announce/2019/06/msg00021.html", + "https://lists.debian.org/debian-lts-announce/2019/07/msg00014.html", + "https://lists.debian.org/debian-lts-announce/2019/10/msg00012.html", + "https://lists.debian.org/debian-lts-announce/2019/10/msg00018.html", + "https://seclists.org/bugtraq/2019/Aug/4", + "https://seclists.org/bugtraq/2019/Jul/22", + "https://security.FreeBSD.org/advisories/FreeBSD-SA-19:18.bzip2.asc", + "https://support.f5.com/csp/article/K68713584?utm_source=f5support\u0026amp;utm_medium=RSS", + "https://usn.ubuntu.com/4038-1/", + "https://usn.ubuntu.com/4038-2/", + "https://usn.ubuntu.com/4146-1/", + "https://usn.ubuntu.com/4146-2/", + "https://www.oracle.com/security-alerts/cpuoct2020.html" + ], + "description": "BZ2_decompress in decompress.c in bzip2 through 1.0.6 has an out-of-bounds write when there are many selectors.", + "cvss": null + } + ], + "matchDetails": [ + { + "type": "exact-indirect-match", + "matcher": "dpkg-matcher", + "searchedBy": { + "distro": { + "type": "debian", + "version": "9" + }, + "namespace": "debian:distro:debian:9", + "package": { + "name": "bzip2", + "version": "1.0.6-8.1" + } + }, + "found": { + "versionConstraint": "none (deb)", + "vulnerabilityID": "CVE-2019-12900" + } + } + ], + "artifact": { + "name": "libbz2-1.0", + "version": "1.0.6-8.1", + "type": "deb", + "locations": null, + "language": "", + "licenses": [ + "GPL-2.0-only" + ], + "cpes": [ + "cpe:2.3:a:libbz2-1.0:libbz2-1.0:1.0.6-8.1:*:*:*:*:*:*:*", + "cpe:2.3:a:libbz2-1.0:libbz2_1.0:1.0.6-8.1:*:*:*:*:*:*:*", + "cpe:2.3:a:libbz2_1.0:libbz2-1.0:1.0.6-8.1:*:*:*:*:*:*:*", + "cpe:2.3:a:libbz2_1.0:libbz2_1.0:1.0.6-8.1:*:*:*:*:*:*:*", + "cpe:2.3:a:libbz2:libbz2-1.0:1.0.6-8.1:*:*:*:*:*:*:*", + "cpe:2.3:a:libbz2:libbz2_1.0:1.0.6-8.1:*:*:*:*:*:*:*" + ], + "purl": "pkg:deb/debian/libbz2-1.0@1.0.6-8.1?arch=amd64\u0026upstream=bzip2\u0026distro=debian-9", + "upstreams": [ + { + "name": "bzip2" + } + ], + "metadata": null + } + }, + { + "vulnerability": { + "id": "CVE-2019-13117", + "dataSource": "https://security-tracker.debian.org/tracker/CVE-2019-13117", + "namespace": "debian:distro:debian:9", + "severity": "High", + "urls": [ + "https://security-tracker.debian.org/tracker/CVE-2019-13117" + ], + "description": "In numbers.c in libxslt 1.1.33, an xsl:number with certain format strings could lead to a uninitialized read in xsltNumberFormatInsertNumbers. This could allow an attacker to discern whether a byte on the stack contains the characters A, a, I, i, or 0, or any other character.", + "cvss": null, + "fix": { + "versions": [ + "1.1.29-2.1+deb9u1" + ], + "state": "fixed" + }, + "advisories": null + }, + "relatedVulnerabilities": [ + { + "id": "CVE-2019-13117", + "dataSource": "https://nvd.nist.gov/vuln/detail/CVE-2019-13117", + "namespace": "nvd:cpe", + "severity": "High", + "urls": [ + "http://lists.opensuse.org/opensuse-security-announce/2020-05/msg00062.html", + "http://www.openwall.com/lists/oss-security/2019/11/17/2", + "https://bugs.chromium.org/p/oss-fuzz/issues/detail?id=14471", + "https://gitlab.gnome.org/GNOME/libxslt/commit/c5eb6cf3aba0af048596106ed839b4ae17ecbcb1", + "https://lists.apache.org/thread.html/r58af02e294bd07f487e2c64ffc0a29b837db5600e33b6e698b9d696b@%3Cissues.bookkeeper.apache.org%3E", + "https://lists.apache.org/thread.html/rf4c02775860db415b4955778a131c2795223f61cb8c6a450893651e4@%3Cissues.bookkeeper.apache.org%3E", + "https://lists.debian.org/debian-lts-announce/2019/07/msg00020.html", + "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/IOYJKXPQCUNBMMQJWYXOR6QRUJZHEDRZ/", + "https://oss-fuzz.com/testcase-detail/5631739747106816", + "https://security.netapp.com/advisory/ntap-20190806-0004/", + "https://security.netapp.com/advisory/ntap-20200122-0003/", + "https://usn.ubuntu.com/4164-1/", + "https://www.oracle.com/security-alerts/cpujan2020.html" + ], + "description": "In numbers.c in libxslt 1.1.33, an xsl:number with certain format strings could lead to a uninitialized read in xsltNumberFormatInsertNumbers. This could allow an attacker to discern whether a byte on the stack contains the characters A, a, I, i, or 0, or any other character.", + "cvss": null + } + ], + "matchDetails": [ + { + "type": "exact-indirect-match", + "matcher": "dpkg-matcher", + "searchedBy": { + "distro": { + "type": "debian", + "version": "9" + }, + "namespace": "debian:distro:debian:9", + "package": { + "name": "libxslt", + "version": "1.1.29-2.1" + } + }, + "found": { + "versionConstraint": "\u003c 1.1.29-2.1+deb9u1 (deb)", + "vulnerabilityID": "CVE-2019-13117" + } + } + ], + "artifact": { + "name": "libxslt1.1", + "version": "1.1.29-2.1", + "type": "deb", + "locations": null, + "language": "", + "licenses": [], + "cpes": [ + "cpe:2.3:a:libxslt1.1:libxslt1.1:1.1.29-2.1:*:*:*:*:*:*:*" + ], + "purl": "pkg:deb/debian/libxslt1.1@1.1.29-2.1?arch=amd64\u0026upstream=libxslt\u0026distro=debian-9", + "upstreams": [ + { + "name": "libxslt" + } + ], + "metadata": null + } + }, + { + "vulnerability": { + "id": "CVE-2019-13118", + "dataSource": "https://security-tracker.debian.org/tracker/CVE-2019-13118", + "namespace": "debian:distro:debian:9", + "severity": "High", + "urls": [ + "https://security-tracker.debian.org/tracker/CVE-2019-13118" + ], + "description": "In numbers.c in libxslt 1.1.33, a type holding grouping characters of an xsl:number instruction was too narrow and an invalid character/length combination could be passed to xsltNumberFormatDecimal, leading to a read of uninitialized stack data.", + "cvss": null, + "fix": { + "versions": [ + "1.1.29-2.1+deb9u1" + ], + "state": "fixed" + }, + "advisories": null + }, + "relatedVulnerabilities": [ + { + "id": "CVE-2019-13118", + "dataSource": "https://nvd.nist.gov/vuln/detail/CVE-2019-13118", + "namespace": "nvd:cpe", + "severity": "High", + "urls": [ + "http://lists.opensuse.org/opensuse-security-announce/2020-05/msg00062.html", + "http://seclists.org/fulldisclosure/2019/Aug/11", + "http://seclists.org/fulldisclosure/2019/Aug/13", + "http://seclists.org/fulldisclosure/2019/Aug/14", + "http://seclists.org/fulldisclosure/2019/Aug/15", + "http://seclists.org/fulldisclosure/2019/Jul/22", + "http://seclists.org/fulldisclosure/2019/Jul/23", + "http://seclists.org/fulldisclosure/2019/Jul/24", + "http://seclists.org/fulldisclosure/2019/Jul/26", + "http://seclists.org/fulldisclosure/2019/Jul/31", + "http://seclists.org/fulldisclosure/2019/Jul/37", + "http://seclists.org/fulldisclosure/2019/Jul/38", + "http://www.openwall.com/lists/oss-security/2019/11/17/2", + "https://bugs.chromium.org/p/oss-fuzz/issues/detail?id=15069", + "https://gitlab.gnome.org/GNOME/libxslt/commit/6ce8de69330783977dd14f6569419489875fb71b", + "https://lists.apache.org/thread.html/r58af02e294bd07f487e2c64ffc0a29b837db5600e33b6e698b9d696b@%3Cissues.bookkeeper.apache.org%3E", + "https://lists.apache.org/thread.html/rf4c02775860db415b4955778a131c2795223f61cb8c6a450893651e4@%3Cissues.bookkeeper.apache.org%3E", + "https://lists.debian.org/debian-lts-announce/2019/07/msg00020.html", + "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/IOYJKXPQCUNBMMQJWYXOR6QRUJZHEDRZ/", + "https://oss-fuzz.com/testcase-detail/5197371471822848", + "https://seclists.org/bugtraq/2019/Aug/21", + "https://seclists.org/bugtraq/2019/Aug/22", + "https://seclists.org/bugtraq/2019/Aug/23", + "https://seclists.org/bugtraq/2019/Aug/25", + "https://seclists.org/bugtraq/2019/Jul/35", + "https://seclists.org/bugtraq/2019/Jul/36", + "https://seclists.org/bugtraq/2019/Jul/37", + "https://seclists.org/bugtraq/2019/Jul/40", + "https://seclists.org/bugtraq/2019/Jul/41", + "https://seclists.org/bugtraq/2019/Jul/42", + "https://security.netapp.com/advisory/ntap-20190806-0004/", + "https://security.netapp.com/advisory/ntap-20200122-0003/", + "https://support.apple.com/kb/HT210346", + "https://support.apple.com/kb/HT210348", + "https://support.apple.com/kb/HT210351", + "https://support.apple.com/kb/HT210353", + "https://support.apple.com/kb/HT210356", + "https://support.apple.com/kb/HT210357", + "https://support.apple.com/kb/HT210358", + "https://usn.ubuntu.com/4164-1/", + "https://www.oracle.com/security-alerts/cpujan2020.html" + ], + "description": "In numbers.c in libxslt 1.1.33, a type holding grouping characters of an xsl:number instruction was too narrow and an invalid character/length combination could be passed to xsltNumberFormatDecimal, leading to a read of uninitialized stack data.", + "cvss": null + } + ], + "matchDetails": [ + { + "type": "exact-indirect-match", + "matcher": "dpkg-matcher", + "searchedBy": { + "distro": { + "type": "debian", + "version": "9" + }, + "namespace": "debian:distro:debian:9", + "package": { + "name": "libxslt", + "version": "1.1.29-2.1" + } + }, + "found": { + "versionConstraint": "\u003c 1.1.29-2.1+deb9u1 (deb)", + "vulnerabilityID": "CVE-2019-13118" + } + } + ], + "artifact": { + "name": "libxslt1.1", + "version": "1.1.29-2.1", + "type": "deb", + "locations": null, + "language": "", + "licenses": [], + "cpes": [ + "cpe:2.3:a:libxslt1.1:libxslt1.1:1.1.29-2.1:*:*:*:*:*:*:*" + ], + "purl": "pkg:deb/debian/libxslt1.1@1.1.29-2.1?arch=amd64\u0026upstream=libxslt\u0026distro=debian-9", + "upstreams": [ + { + "name": "libxslt" + } + ], + "metadata": null + } + }, + { + "vulnerability": { + "id": "CVE-2019-13627", + "dataSource": "https://security-tracker.debian.org/tracker/CVE-2019-13627", + "namespace": "debian:distro:debian:9", + "severity": "Medium", + "urls": [ + "https://security-tracker.debian.org/tracker/CVE-2019-13627" + ], + "description": "It was discovered that there was a ECDSA timing attack in the libgcrypt20 cryptographic library. Version affected: 1.8.4-5, 1.7.6-2+deb9u3, and 1.6.3-2+deb8u4. Versions fixed: 1.8.5-2 and 1.6.3-2+deb8u7.", + "cvss": null, + "fix": { + "versions": [], + "state": "wont-fix" + }, + "advisories": null + }, + "relatedVulnerabilities": [ + { + "id": "CVE-2019-13627", + "dataSource": "https://nvd.nist.gov/vuln/detail/CVE-2019-13627", + "namespace": "nvd:cpe", + "severity": "Medium", + "urls": [ + "http://lists.opensuse.org/opensuse-security-announce/2019-09/msg00060.html", + "http://lists.opensuse.org/opensuse-security-announce/2020-01/msg00018.html", + "http://www.openwall.com/lists/oss-security/2019/10/02/2", + "https://github.com/gpg/libgcrypt/releases/tag/libgcrypt-1.8.5", + "https://lists.debian.org/debian-lts-announce/2019/09/msg00024.html", + "https://lists.debian.org/debian-lts-announce/2020/01/msg00001.html", + "https://minerva.crocs.fi.muni.cz/", + "https://security-tracker.debian.org/tracker/CVE-2019-13627", + "https://security.gentoo.org/glsa/202003-32", + "https://usn.ubuntu.com/4236-1/", + "https://usn.ubuntu.com/4236-2/", + "https://usn.ubuntu.com/4236-3/" + ], + "description": "It was discovered that there was a ECDSA timing attack in the libgcrypt20 cryptographic library. Version affected: 1.8.4-5, 1.7.6-2+deb9u3, and 1.6.3-2+deb8u4. Versions fixed: 1.8.5-2 and 1.6.3-2+deb8u7.", + "cvss": null + } + ], + "matchDetails": [ + { + "type": "exact-direct-match", + "matcher": "dpkg-matcher", + "searchedBy": { + "distro": { + "type": "debian", + "version": "9" + }, + "namespace": "debian:distro:debian:9", + "package": { + "name": "libgcrypt20", + "version": "1.7.6-2+deb9u3" + } + }, + "found": { + "versionConstraint": "none (deb)", + "vulnerabilityID": "CVE-2019-13627" + } + } + ], + "artifact": { + "name": "libgcrypt20", + "version": "1.7.6-2+deb9u3", + "type": "deb", + "locations": null, + "language": "", + "licenses": [ + "GPL-2.0-only", + "LicenseRef-LGPL" + ], + "cpes": [ + "cpe:2.3:a:libgcrypt20:libgcrypt20:1.7.6-2+deb9u3:*:*:*:*:*:*:*" + ], + "purl": "pkg:deb/debian/libgcrypt20@1.7.6-2+deb9u3?arch=amd64\u0026distro=debian-9", + "upstreams": null, + "metadata": null + } + }, + { + "vulnerability": { + "id": "CVE-2019-14855", + "dataSource": "https://security-tracker.debian.org/tracker/CVE-2019-14855", + "namespace": "debian:distro:debian:9", + "severity": "Low", + "urls": [ + "https://security-tracker.debian.org/tracker/CVE-2019-14855" + ], + "description": "A flaw was found in the way certificate signatures could be forged using collisions found in the SHA-1 algorithm. An attacker could use this weakness to create forged certificate signatures. This issue affects GnuPG versions before 2.2.18.", + "cvss": null, + "fix": { + "versions": [], + "state": "wont-fix" + }, + "advisories": null + }, + "relatedVulnerabilities": [ + { + "id": "CVE-2019-14855", + "dataSource": "https://nvd.nist.gov/vuln/detail/CVE-2019-14855", + "namespace": "nvd:cpe", + "severity": "High", + "urls": [ + "https://bugzilla.redhat.com/show_bug.cgi?id=CVE-2019-14855", + "https://dev.gnupg.org/T4755", + "https://lists.gnupg.org/pipermail/gnupg-announce/2019q4/000442.html", + "https://rwc.iacr.org/2020/slides/Leurent.pdf", + "https://usn.ubuntu.com/4516-1/" + ], + "description": "A flaw was found in the way certificate signatures could be forged using collisions found in the SHA-1 algorithm. An attacker could use this weakness to create forged certificate signatures. This issue affects GnuPG versions before 2.2.18.", + "cvss": null + } + ], + "matchDetails": [ + { + "type": "exact-indirect-match", + "matcher": "dpkg-matcher", + "searchedBy": { + "distro": { + "type": "debian", + "version": "9" + }, + "namespace": "debian:distro:debian:9", + "package": { + "name": "gnupg2", + "version": "2.1.18-8~deb9u3" + } + }, + "found": { + "versionConstraint": "none (deb)", + "vulnerabilityID": "CVE-2019-14855" + } + } + ], + "artifact": { + "name": "gpgv", + "version": "2.1.18-8~deb9u3", + "type": "deb", + "locations": null, + "language": "", + "licenses": [ + "BSD-3-Clause", + "LicenseRef-Expat", + "GPL-3.0-only", + "GPL-3.0-or-later", + "LGPL-2.1-only", + "LGPL-2.1-or-later", + "LGPL-3.0-only", + "LGPL-3.0-or-later", + "LicenseRef-RFC-Reference", + "LicenseRef-TinySCHEME", + "LicenseRef-permissive" + ], + "cpes": [ + "cpe:2.3:a:gpgv:gpgv:2.1.18-8~deb9u3:*:*:*:*:*:*:*" + ], + "purl": "pkg:deb/debian/gpgv@2.1.18-8~deb9u3?arch=amd64\u0026upstream=gnupg2\u0026distro=debian-9", + "upstreams": [ + { + "name": "gnupg2" + } + ], + "metadata": null + } + }, + { + "vulnerability": { + "id": "CVE-2019-14973", + "dataSource": "https://security-tracker.debian.org/tracker/CVE-2019-14973", + "namespace": "debian:distro:debian:9", + "severity": "Medium", + "urls": [ + "https://security-tracker.debian.org/tracker/CVE-2019-14973" + ], + "description": "_TIFFCheckMalloc and _TIFFCheckRealloc in tif_aux.c in LibTIFF through 4.0.10 mishandle Integer Overflow checks because they rely on compiler behavior that is undefined by the applicable C standards. This can, for example, lead to an application crash.", + "cvss": null, + "fix": { + "versions": [ + "4.0.8-2+deb9u5" + ], + "state": "fixed" + }, + "advisories": [ + { + "id": "DSA-4670-1", + "link": "https://security-tracker.debian.org/tracker/DSA-4670-1" + } + ] + }, + "relatedVulnerabilities": [ + { + "id": "CVE-2019-14973", + "dataSource": "https://nvd.nist.gov/vuln/detail/CVE-2019-14973", + "namespace": "nvd:cpe", + "severity": "Medium", + "urls": [ + "http://lists.opensuse.org/opensuse-security-announce/2020-09/msg00102.html", + "http://lists.opensuse.org/opensuse-security-announce/2020-11/msg00023.html", + "http://packetstormsecurity.com/files/155095/Slackware-Security-Advisory-libtiff-Updates.html", + "https://gitlab.com/libtiff/libtiff/merge_requests/90", + "https://lists.debian.org/debian-lts-announce/2019/08/msg00031.html", + "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/63BVT6N5KQPHWOWM4B3I7Z3ODBXUVNPS/", + "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/ADNPG7JJTRRK22GUVTAFH3GJ6WGKUZJB/", + "https://seclists.org/bugtraq/2019/Nov/5", + "https://seclists.org/bugtraq/2020/Jan/32", + "https://www.debian.org/security/2020/dsa-4608", + "https://www.debian.org/security/2020/dsa-4670" + ], + "description": "_TIFFCheckMalloc and _TIFFCheckRealloc in tif_aux.c in LibTIFF through 4.0.10 mishandle Integer Overflow checks because they rely on compiler behavior that is undefined by the applicable C standards. This can, for example, lead to an application crash.", + "cvss": null + } + ], + "matchDetails": [ + { + "type": "exact-indirect-match", + "matcher": "dpkg-matcher", + "searchedBy": { + "distro": { + "type": "debian", + "version": "9" + }, + "namespace": "debian:distro:debian:9", + "package": { + "name": "tiff", + "version": "4.0.8-2+deb9u2" + } + }, + "found": { + "versionConstraint": "\u003c 4.0.8-2+deb9u5 (deb)", + "vulnerabilityID": "CVE-2019-14973" + } + } + ], + "artifact": { + "name": "libtiff5", + "version": "4.0.8-2+deb9u2", + "type": "deb", + "locations": null, + "language": "", + "licenses": [ + "LicenseRef-Hylafax" + ], + "cpes": [ + "cpe:2.3:a:libtiff5:libtiff5:4.0.8-2+deb9u2:*:*:*:*:*:*:*" + ], + "purl": "pkg:deb/debian/libtiff5@4.0.8-2+deb9u2?arch=amd64\u0026upstream=tiff\u0026distro=debian-9", + "upstreams": [ + { + "name": "tiff" + } + ], + "metadata": null + } + }, + { + "vulnerability": { + "id": "CVE-2019-1543", + "dataSource": "https://security-tracker.debian.org/tracker/CVE-2019-1543", + "namespace": "debian:distro:debian:9", + "severity": "High", + "urls": [ + "https://security-tracker.debian.org/tracker/CVE-2019-1543" + ], + "description": "ChaCha20-Poly1305 is an AEAD cipher, and requires a unique nonce input for every encryption operation. RFC 7539 specifies that the nonce value (IV) should be 96 bits (12 bytes). OpenSSL allows a variable nonce length and front pads the nonce with 0 bytes if it is less than 12 bytes. However it also incorrectly allows a nonce to be set of up to 16 bytes. In this case only the last 12 bytes are significant and any additional leading bytes are ignored. It is a requirement of using this cipher that nonce values are unique. Messages encrypted using a reused nonce value are susceptible to serious confidentiality and integrity attacks. If an application changes the default nonce length to be longer than 12 bytes and then makes a change to the leading bytes of the nonce expecting the new value to be a new unique nonce then such an application could inadvertently encrypt messages with a reused nonce. Additionally the ignored bytes in a long nonce are not covered by the integrity guarantee of this cipher. Any application that relies on the integrity of these ignored leading bytes of a long nonce may be further affected. Any OpenSSL internal use of this cipher, including in SSL/TLS, is safe because no such use sets such a long nonce value. However user applications that use this cipher directly and set a non-default nonce length to be longer than 12 bytes may be vulnerable. OpenSSL versions 1.1.1 and 1.1.0 are affected by this issue. Due to the limited scope of affected deployments this has been assessed as low severity and therefore we are not creating new releases at this time. Fixed in OpenSSL 1.1.1c (Affected 1.1.1-1.1.1b). Fixed in OpenSSL 1.1.0k (Affected 1.1.0-1.1.0j).", + "cvss": null, + "fix": { + "versions": [ + "1.1.0k-1~deb9u1" + ], + "state": "fixed" + }, + "advisories": [ + { + "id": "DSA-4475-1", + "link": "https://security-tracker.debian.org/tracker/DSA-4475-1" + } + ] + }, + "relatedVulnerabilities": [ + { + "id": "CVE-2019-1543", + "dataSource": "https://nvd.nist.gov/vuln/detail/CVE-2019-1543", + "namespace": "nvd:cpe", + "severity": "High", + "urls": [ + "http://lists.opensuse.org/opensuse-security-announce/2019-07/msg00056.html", + "https://access.redhat.com/errata/RHSA-2019:3700", + "https://git.openssl.org/gitweb/?p=openssl.git;a=commitdiff;h=ee22257b1418438ebaf54df98af4e24f494d1809", + "https://git.openssl.org/gitweb/?p=openssl.git;a=commitdiff;h=f426625b6ae9a7831010750490a5f0ad689c5ba3", + "https://kc.mcafee.com/corporate/index?page=content\u0026id=SB10365", + "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/Y3IVFGSERAZLNJCK35TEM2R4726XIH3Z/", + "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/ZBEV5QGDRFUZDMNECFXUSN5FMYOZDE4V/", + "https://seclists.org/bugtraq/2019/Jul/3", + "https://www.debian.org/security/2019/dsa-4475", + "https://www.openssl.org/news/secadv/20190306.txt", + "https://www.oracle.com/security-alerts/cpuapr2020.html", + "https://www.oracle.com/technetwork/security-advisory/cpujul2019-5072835.html", + "https://www.oracle.com/technetwork/security-advisory/cpuoct2019-5072832.html" + ], + "description": "ChaCha20-Poly1305 is an AEAD cipher, and requires a unique nonce input for every encryption operation. RFC 7539 specifies that the nonce value (IV) should be 96 bits (12 bytes). OpenSSL allows a variable nonce length and front pads the nonce with 0 bytes if it is less than 12 bytes. However it also incorrectly allows a nonce to be set of up to 16 bytes. In this case only the last 12 bytes are significant and any additional leading bytes are ignored. It is a requirement of using this cipher that nonce values are unique. Messages encrypted using a reused nonce value are susceptible to serious confidentiality and integrity attacks. If an application changes the default nonce length to be longer than 12 bytes and then makes a change to the leading bytes of the nonce expecting the new value to be a new unique nonce then such an application could inadvertently encrypt messages with a reused nonce. Additionally the ignored bytes in a long nonce are not covered by the integrity guarantee of this cipher. Any application that relies on the integrity of these ignored leading bytes of a long nonce may be further affected. Any OpenSSL internal use of this cipher, including in SSL/TLS, is safe because no such use sets such a long nonce value. However user applications that use this cipher directly and set a non-default nonce length to be longer than 12 bytes may be vulnerable. OpenSSL versions 1.1.1 and 1.1.0 are affected by this issue. Due to the limited scope of affected deployments this has been assessed as low severity and therefore we are not creating new releases at this time. Fixed in OpenSSL 1.1.1c (Affected 1.1.1-1.1.1b). Fixed in OpenSSL 1.1.0k (Affected 1.1.0-1.1.0j).", + "cvss": null + } + ], + "matchDetails": [ + { + "type": "exact-indirect-match", + "matcher": "dpkg-matcher", + "searchedBy": { + "distro": { + "type": "debian", + "version": "9" + }, + "namespace": "debian:distro:debian:9", + "package": { + "name": "openssl", + "version": "1.1.0f-3+deb9u2" + } + }, + "found": { + "versionConstraint": "\u003c 1.1.0k-1~deb9u1 (deb)", + "vulnerabilityID": "CVE-2019-1543" + } + } + ], + "artifact": { + "name": "libssl1.1", + "version": "1.1.0f-3+deb9u2", + "type": "deb", + "locations": null, + "language": "", + "licenses": [], + "cpes": [ + "cpe:2.3:a:libssl1.1:libssl1.1:1.1.0f-3+deb9u2:*:*:*:*:*:*:*" + ], + "purl": "pkg:deb/debian/libssl1.1@1.1.0f-3+deb9u2?arch=amd64\u0026upstream=openssl\u0026distro=debian-9", + "upstreams": [ + { + "name": "openssl" + } + ], + "metadata": null + } + }, + { + "vulnerability": { + "id": "CVE-2019-1547", + "dataSource": "https://security-tracker.debian.org/tracker/CVE-2019-1547", + "namespace": "debian:distro:debian:9", + "severity": "Medium", + "urls": [ + "https://security-tracker.debian.org/tracker/CVE-2019-1547" + ], + "description": "Normally in OpenSSL EC groups always have a co-factor present and this is used in side channel resistant code paths. However, in some cases, it is possible to construct a group using explicit parameters (instead of using a named curve). In those cases it is possible that such a group does not have the cofactor present. This can occur even where all the parameters match a known named curve. If such a curve is used then OpenSSL falls back to non-side channel resistant code paths which may result in full key recovery during an ECDSA signature operation. In order to be vulnerable an attacker would have to have the ability to time the creation of a large number of signatures where explicit parameters with no co-factor present are in use by an application using libcrypto. For the avoidance of doubt libssl is not vulnerable because explicit parameters are never used. Fixed in OpenSSL 1.1.1d (Affected 1.1.1-1.1.1c). Fixed in OpenSSL 1.1.0l (Affected 1.1.0-1.1.0k). Fixed in OpenSSL 1.0.2t (Affected 1.0.2-1.0.2s).", + "cvss": null, + "fix": { + "versions": [ + "1.1.0l-1~deb9u1" + ], + "state": "fixed" + }, + "advisories": [ + { + "id": "DSA-4539-1", + "link": "https://security-tracker.debian.org/tracker/DSA-4539-1" + } + ] + }, + "relatedVulnerabilities": [ + { + "id": "CVE-2019-1547", + "dataSource": "https://nvd.nist.gov/vuln/detail/CVE-2019-1547", + "namespace": "nvd:cpe", + "severity": "Medium", + "urls": [ + "http://lists.opensuse.org/opensuse-security-announce/2019-09/msg00054.html", + "http://lists.opensuse.org/opensuse-security-announce/2019-09/msg00072.html", + "http://lists.opensuse.org/opensuse-security-announce/2019-10/msg00012.html", + "http://lists.opensuse.org/opensuse-security-announce/2019-10/msg00016.html", + "http://packetstormsecurity.com/files/154467/Slackware-Security-Advisory-openssl-Updates.html", + "https://arxiv.org/abs/1909.01785", + "https://git.openssl.org/gitweb/?p=openssl.git;a=commitdiff;h=21c856b75d81eff61aa63b4f036bb64a85bf6d46", + "https://git.openssl.org/gitweb/?p=openssl.git;a=commitdiff;h=30c22fa8b1d840036b8e203585738df62a03cec8", + "https://git.openssl.org/gitweb/?p=openssl.git;a=commitdiff;h=7c1709c2da5414f5b6133d00a03fc8c5bf996c7a", + "https://kc.mcafee.com/corporate/index?page=content\u0026id=SB10365", + "https://lists.debian.org/debian-lts-announce/2019/09/msg00026.html", + "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/GY6SNRJP2S7Y42GIIDO3HXPNMDYN2U3A/", + "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/ZN4VVQJ3JDCHGIHV4Y2YTXBYQZ6PWQ7E/", + "https://seclists.org/bugtraq/2019/Oct/0", + "https://seclists.org/bugtraq/2019/Oct/1", + "https://seclists.org/bugtraq/2019/Sep/25", + "https://security.gentoo.org/glsa/201911-04", + "https://security.netapp.com/advisory/ntap-20190919-0002/", + "https://security.netapp.com/advisory/ntap-20200122-0002/", + "https://security.netapp.com/advisory/ntap-20200416-0003/", + "https://support.f5.com/csp/article/K73422160?utm_source=f5support\u0026amp;utm_medium=RSS", + "https://usn.ubuntu.com/4376-1/", + "https://usn.ubuntu.com/4376-2/", + "https://usn.ubuntu.com/4504-1/", + "https://www.debian.org/security/2019/dsa-4539", + "https://www.debian.org/security/2019/dsa-4540", + "https://www.openssl.org/news/secadv/20190910.txt", + "https://www.oracle.com/security-alerts/cpuapr2020.html", + "https://www.oracle.com/security-alerts/cpujan2020.html", + "https://www.oracle.com/security-alerts/cpujul2020.html", + "https://www.oracle.com/security-alerts/cpuoct2020.html", + "https://www.oracle.com/technetwork/security-advisory/cpuoct2019-5072832.html", + "https://www.tenable.com/security/tns-2019-08", + "https://www.tenable.com/security/tns-2019-09" + ], + "description": "Normally in OpenSSL EC groups always have a co-factor present and this is used in side channel resistant code paths. However, in some cases, it is possible to construct a group using explicit parameters (instead of using a named curve). In those cases it is possible that such a group does not have the cofactor present. This can occur even where all the parameters match a known named curve. If such a curve is used then OpenSSL falls back to non-side channel resistant code paths which may result in full key recovery during an ECDSA signature operation. In order to be vulnerable an attacker would have to have the ability to time the creation of a large number of signatures where explicit parameters with no co-factor present are in use by an application using libcrypto. For the avoidance of doubt libssl is not vulnerable because explicit parameters are never used. Fixed in OpenSSL 1.1.1d (Affected 1.1.1-1.1.1c). Fixed in OpenSSL 1.1.0l (Affected 1.1.0-1.1.0k). Fixed in OpenSSL 1.0.2t (Affected 1.0.2-1.0.2s).", + "cvss": null + } + ], + "matchDetails": [ + { + "type": "exact-indirect-match", + "matcher": "dpkg-matcher", + "searchedBy": { + "distro": { + "type": "debian", + "version": "9" + }, + "namespace": "debian:distro:debian:9", + "package": { + "name": "openssl", + "version": "1.1.0f-3+deb9u2" + } + }, + "found": { + "versionConstraint": "\u003c 1.1.0l-1~deb9u1 (deb)", + "vulnerabilityID": "CVE-2019-1547" + } + } + ], + "artifact": { + "name": "libssl1.1", + "version": "1.1.0f-3+deb9u2", + "type": "deb", + "locations": null, + "language": "", + "licenses": [], + "cpes": [ + "cpe:2.3:a:libssl1.1:libssl1.1:1.1.0f-3+deb9u2:*:*:*:*:*:*:*" + ], + "purl": "pkg:deb/debian/libssl1.1@1.1.0f-3+deb9u2?arch=amd64\u0026upstream=openssl\u0026distro=debian-9", + "upstreams": [ + { + "name": "openssl" + } + ], + "metadata": null + } + }, + { + "vulnerability": { + "id": "CVE-2019-1551", + "dataSource": "https://security-tracker.debian.org/tracker/CVE-2019-1551", + "namespace": "debian:distro:debian:9", + "severity": "Medium", + "urls": [ + "https://security-tracker.debian.org/tracker/CVE-2019-1551" + ], + "description": "There is an overflow bug in the x64_64 Montgomery squaring procedure used in exponentiation with 512-bit moduli. No EC algorithms are affected. Analysis suggests that attacks against 2-prime RSA1024, 3-prime RSA1536, and DSA1024 as a result of this defect would be very difficult to perform and are not believed likely. Attacks against DH512 are considered just feasible. However, for an attack the target would have to re-use the DH512 private key, which is not recommended anyway. Also applications directly using the low level API BN_mod_exp may be affected if they use BN_FLG_CONSTTIME. Fixed in OpenSSL 1.1.1e (Affected 1.1.1-1.1.1d). Fixed in OpenSSL 1.0.2u (Affected 1.0.2-1.0.2t).", + "cvss": null, + "fix": { + "versions": [ + "1.1.0l-1~deb9u5" + ], + "state": "fixed" + }, + "advisories": null + }, + "relatedVulnerabilities": [ + { + "id": "CVE-2019-1551", + "dataSource": "https://nvd.nist.gov/vuln/detail/CVE-2019-1551", + "namespace": "nvd:cpe", + "severity": "Medium", + "urls": [ + "http://lists.opensuse.org/opensuse-security-announce/2020-01/msg00030.html", + "http://packetstormsecurity.com/files/155754/Slackware-Security-Advisory-openssl-Updates.html", + "https://git.openssl.org/gitweb/?p=openssl.git;a=commitdiff;h=419102400a2811582a7a3d4a4e317d72e5ce0a8f", + "https://git.openssl.org/gitweb/?p=openssl.git;a=commitdiff;h=f1c5eea8a817075d31e43f5876993c6710238c98", + "https://lists.debian.org/debian-lts-announce/2022/03/msg00023.html", + "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/DDHOAATPWJCXRNFMJ2SASDBBNU5RJONY/", + "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/EXDDAOWSAIEFQNBHWYE6PPYFV4QXGMCD/", + "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/XVEP3LAK4JSPRXFO4QF4GG2IVXADV3SO/", + "https://seclists.org/bugtraq/2019/Dec/39", + "https://seclists.org/bugtraq/2019/Dec/46", + "https://security.gentoo.org/glsa/202004-10", + "https://security.netapp.com/advisory/ntap-20191210-0001/", + "https://usn.ubuntu.com/4376-1/", + "https://usn.ubuntu.com/4504-1/", + "https://www.debian.org/security/2019/dsa-4594", + "https://www.debian.org/security/2021/dsa-4855", + "https://www.openssl.org/news/secadv/20191206.txt", + "https://www.oracle.com/security-alerts/cpuApr2021.html", + "https://www.oracle.com/security-alerts/cpujan2021.html", + "https://www.oracle.com/security-alerts/cpujul2020.html", + "https://www.tenable.com/security/tns-2019-09", + "https://www.tenable.com/security/tns-2020-03", + "https://www.tenable.com/security/tns-2020-11", + "https://www.tenable.com/security/tns-2021-10" + ], + "description": "There is an overflow bug in the x64_64 Montgomery squaring procedure used in exponentiation with 512-bit moduli. No EC algorithms are affected. Analysis suggests that attacks against 2-prime RSA1024, 3-prime RSA1536, and DSA1024 as a result of this defect would be very difficult to perform and are not believed likely. Attacks against DH512 are considered just feasible. However, for an attack the target would have to re-use the DH512 private key, which is not recommended anyway. Also applications directly using the low level API BN_mod_exp may be affected if they use BN_FLG_CONSTTIME. Fixed in OpenSSL 1.1.1e (Affected 1.1.1-1.1.1d). Fixed in OpenSSL 1.0.2u (Affected 1.0.2-1.0.2t).", + "cvss": null + } + ], + "matchDetails": [ + { + "type": "exact-indirect-match", + "matcher": "dpkg-matcher", + "searchedBy": { + "distro": { + "type": "debian", + "version": "9" + }, + "namespace": "debian:distro:debian:9", + "package": { + "name": "openssl", + "version": "1.1.0f-3+deb9u2" + } + }, + "found": { + "versionConstraint": "\u003c 1.1.0l-1~deb9u5 (deb)", + "vulnerabilityID": "CVE-2019-1551" + } + } + ], + "artifact": { + "name": "libssl1.1", + "version": "1.1.0f-3+deb9u2", + "type": "deb", + "locations": null, + "language": "", + "licenses": [], + "cpes": [ + "cpe:2.3:a:libssl1.1:libssl1.1:1.1.0f-3+deb9u2:*:*:*:*:*:*:*" + ], + "purl": "pkg:deb/debian/libssl1.1@1.1.0f-3+deb9u2?arch=amd64\u0026upstream=openssl\u0026distro=debian-9", + "upstreams": [ + { + "name": "openssl" + } + ], + "metadata": null + } + }, + { + "vulnerability": { + "id": "CVE-2019-1563", + "dataSource": "https://security-tracker.debian.org/tracker/CVE-2019-1563", + "namespace": "debian:distro:debian:9", + "severity": "Low", + "urls": [ + "https://security-tracker.debian.org/tracker/CVE-2019-1563" + ], + "description": "In situations where an attacker receives automated notification of the success or failure of a decryption attempt an attacker, after sending a very large number of messages to be decrypted, can recover a CMS/PKCS7 transported encryption key or decrypt any RSA encrypted message that was encrypted with the public RSA key, using a Bleichenbacher padding oracle attack. Applications are not affected if they use a certificate together with the private RSA key to the CMS_decrypt or PKCS7_decrypt functions to select the correct recipient info to decrypt. Fixed in OpenSSL 1.1.1d (Affected 1.1.1-1.1.1c). Fixed in OpenSSL 1.1.0l (Affected 1.1.0-1.1.0k). Fixed in OpenSSL 1.0.2t (Affected 1.0.2-1.0.2s).", + "cvss": null, + "fix": { + "versions": [ + "1.1.0l-1~deb9u1" + ], + "state": "fixed" + }, + "advisories": [ + { + "id": "DSA-4539-1", + "link": "https://security-tracker.debian.org/tracker/DSA-4539-1" + } + ] + }, + "relatedVulnerabilities": [ + { + "id": "CVE-2019-1563", + "dataSource": "https://nvd.nist.gov/vuln/detail/CVE-2019-1563", + "namespace": "nvd:cpe", + "severity": "Low", + "urls": [ + "http://lists.opensuse.org/opensuse-security-announce/2019-09/msg00054.html", + "http://lists.opensuse.org/opensuse-security-announce/2019-09/msg00072.html", + "http://lists.opensuse.org/opensuse-security-announce/2019-10/msg00012.html", + "http://lists.opensuse.org/opensuse-security-announce/2019-10/msg00016.html", + "http://packetstormsecurity.com/files/154467/Slackware-Security-Advisory-openssl-Updates.html", + "https://git.openssl.org/gitweb/?p=openssl.git;a=commitdiff;h=08229ad838c50f644d7e928e2eef147b4308ad64", + "https://git.openssl.org/gitweb/?p=openssl.git;a=commitdiff;h=631f94db0065c78181ca9ba5546ebc8bb3884b97", + "https://git.openssl.org/gitweb/?p=openssl.git;a=commitdiff;h=e21f8cf78a125cd3c8c0d1a1a6c8bb0b901f893f", + "https://kc.mcafee.com/corporate/index?page=content\u0026id=SB10365", + "https://lists.debian.org/debian-lts-announce/2019/09/msg00026.html", + "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/GY6SNRJP2S7Y42GIIDO3HXPNMDYN2U3A/", + "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/ZN4VVQJ3JDCHGIHV4Y2YTXBYQZ6PWQ7E/", + "https://seclists.org/bugtraq/2019/Oct/0", + "https://seclists.org/bugtraq/2019/Oct/1", + "https://seclists.org/bugtraq/2019/Sep/25", + "https://security.gentoo.org/glsa/201911-04", + "https://security.netapp.com/advisory/ntap-20190919-0002/", + "https://support.f5.com/csp/article/K97324400?utm_source=f5support\u0026amp;utm_medium=RSS", + "https://usn.ubuntu.com/4376-1/", + "https://usn.ubuntu.com/4376-2/", + "https://usn.ubuntu.com/4504-1/", + "https://www.debian.org/security/2019/dsa-4539", + "https://www.debian.org/security/2019/dsa-4540", + "https://www.openssl.org/news/secadv/20190910.txt", + "https://www.oracle.com/security-alerts/cpuapr2020.html", + "https://www.oracle.com/security-alerts/cpujan2020.html", + "https://www.oracle.com/security-alerts/cpujul2020.html", + "https://www.oracle.com/security-alerts/cpuoct2020.html", + "https://www.oracle.com/technetwork/security-advisory/cpuoct2019-5072832.html", + "https://www.tenable.com/security/tns-2019-09" + ], + "description": "In situations where an attacker receives automated notification of the success or failure of a decryption attempt an attacker, after sending a very large number of messages to be decrypted, can recover a CMS/PKCS7 transported encryption key or decrypt any RSA encrypted message that was encrypted with the public RSA key, using a Bleichenbacher padding oracle attack. Applications are not affected if they use a certificate together with the private RSA key to the CMS_decrypt or PKCS7_decrypt functions to select the correct recipient info to decrypt. Fixed in OpenSSL 1.1.1d (Affected 1.1.1-1.1.1c). Fixed in OpenSSL 1.1.0l (Affected 1.1.0-1.1.0k). Fixed in OpenSSL 1.0.2t (Affected 1.0.2-1.0.2s).", + "cvss": null + } + ], + "matchDetails": [ + { + "type": "exact-indirect-match", + "matcher": "dpkg-matcher", + "searchedBy": { + "distro": { + "type": "debian", + "version": "9" + }, + "namespace": "debian:distro:debian:9", + "package": { + "name": "openssl", + "version": "1.1.0f-3+deb9u2" + } + }, + "found": { + "versionConstraint": "\u003c 1.1.0l-1~deb9u1 (deb)", + "vulnerabilityID": "CVE-2019-1563" + } + } + ], + "artifact": { + "name": "libssl1.1", + "version": "1.1.0f-3+deb9u2", + "type": "deb", + "locations": null, + "language": "", + "licenses": [], + "cpes": [ + "cpe:2.3:a:libssl1.1:libssl1.1:1.1.0f-3+deb9u2:*:*:*:*:*:*:*" + ], + "purl": "pkg:deb/debian/libssl1.1@1.1.0f-3+deb9u2?arch=amd64\u0026upstream=openssl\u0026distro=debian-9", + "upstreams": [ + { + "name": "openssl" + } + ], + "metadata": null + } + }, + { + "vulnerability": { + "id": "CVE-2019-15903", + "dataSource": "https://security-tracker.debian.org/tracker/CVE-2019-15903", + "namespace": "debian:distro:debian:9", + "severity": "High", + "urls": [ + "https://security-tracker.debian.org/tracker/CVE-2019-15903" + ], + "description": "In libexpat before 2.2.8, crafted XML input could fool the parser into changing from DTD parsing to document parsing too early; a consecutive call to XML_GetCurrentLineNumber (or XML_GetCurrentColumnNumber) then resulted in a heap-based buffer over-read.", + "cvss": null, + "fix": { + "versions": [ + "2.2.0-2+deb9u3" + ], + "state": "fixed" + }, + "advisories": [ + { + "id": "DSA-4530-1", + "link": "https://security-tracker.debian.org/tracker/DSA-4530-1" + } + ] + }, + "relatedVulnerabilities": [ + { + "id": "CVE-2019-15903", + "dataSource": "https://nvd.nist.gov/vuln/detail/CVE-2019-15903", + "namespace": "nvd:cpe", + "severity": "High", + "urls": [ + "http://lists.opensuse.org/opensuse-security-announce/2019-09/msg00080.html", + "http://lists.opensuse.org/opensuse-security-announce/2019-09/msg00081.html", + "http://lists.opensuse.org/opensuse-security-announce/2019-11/msg00000.html", + "http://lists.opensuse.org/opensuse-security-announce/2019-11/msg00002.html", + "http://lists.opensuse.org/opensuse-security-announce/2019-11/msg00003.html", + "http://lists.opensuse.org/opensuse-security-announce/2019-11/msg00013.html", + "http://lists.opensuse.org/opensuse-security-announce/2019-11/msg00016.html", + "http://lists.opensuse.org/opensuse-security-announce/2019-11/msg00017.html", + "http://lists.opensuse.org/opensuse-security-announce/2019-11/msg00018.html", + "http://lists.opensuse.org/opensuse-security-announce/2019-11/msg00019.html", + "http://lists.opensuse.org/opensuse-security-announce/2020-01/msg00008.html", + "http://lists.opensuse.org/opensuse-security-announce/2020-01/msg00040.html", + "http://packetstormsecurity.com/files/154503/Slackware-Security-Advisory-expat-Updates.html", + "http://packetstormsecurity.com/files/154927/Slackware-Security-Advisory-python-Updates.html", + "http://packetstormsecurity.com/files/154947/Slackware-Security-Advisory-mozilla-firefox-Updates.html", + "http://seclists.org/fulldisclosure/2019/Dec/23", + "http://seclists.org/fulldisclosure/2019/Dec/26", + "http://seclists.org/fulldisclosure/2019/Dec/27", + "http://seclists.org/fulldisclosure/2019/Dec/30", + "https://access.redhat.com/errata/RHSA-2019:3210", + "https://access.redhat.com/errata/RHSA-2019:3237", + "https://access.redhat.com/errata/RHSA-2019:3756", + "https://github.com/libexpat/libexpat/commit/c20b758c332d9a13afbbb276d30db1d183a85d43", + "https://github.com/libexpat/libexpat/issues/317", + "https://github.com/libexpat/libexpat/issues/342", + "https://github.com/libexpat/libexpat/pull/318", + "https://lists.debian.org/debian-lts-announce/2019/11/msg00006.html", + "https://lists.debian.org/debian-lts-announce/2019/11/msg00017.html", + "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/A4TZKPJFTURRLXIGLB34WVKQ5HGY6JJA/", + "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/BDUTI5TVQWIGGQXPEVI4T2ENHFSBMIBP/", + "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/S26LGXXQ7YF2BP3RGOWELBFKM6BHF6UG/", + "https://seclists.org/bugtraq/2019/Dec/17", + "https://seclists.org/bugtraq/2019/Dec/21", + "https://seclists.org/bugtraq/2019/Dec/23", + "https://seclists.org/bugtraq/2019/Nov/1", + "https://seclists.org/bugtraq/2019/Nov/24", + "https://seclists.org/bugtraq/2019/Oct/29", + "https://seclists.org/bugtraq/2019/Sep/30", + "https://seclists.org/bugtraq/2019/Sep/37", + "https://security.gentoo.org/glsa/201911-08", + "https://security.netapp.com/advisory/ntap-20190926-0004/", + "https://support.apple.com/kb/HT210785", + "https://support.apple.com/kb/HT210788", + "https://support.apple.com/kb/HT210789", + "https://support.apple.com/kb/HT210790", + "https://support.apple.com/kb/HT210793", + "https://support.apple.com/kb/HT210794", + "https://support.apple.com/kb/HT210795", + "https://usn.ubuntu.com/4132-1/", + "https://usn.ubuntu.com/4132-2/", + "https://usn.ubuntu.com/4165-1/", + "https://usn.ubuntu.com/4202-1/", + "https://usn.ubuntu.com/4335-1/", + "https://www.debian.org/security/2019/dsa-4530", + "https://www.debian.org/security/2019/dsa-4549", + "https://www.debian.org/security/2019/dsa-4571", + "https://www.oracle.com/security-alerts/cpuapr2020.html", + "https://www.oracle.com/security-alerts/cpuoct2020.html", + "https://www.tenable.com/security/tns-2021-11" + ], + "description": "In libexpat before 2.2.8, crafted XML input could fool the parser into changing from DTD parsing to document parsing too early; a consecutive call to XML_GetCurrentLineNumber (or XML_GetCurrentColumnNumber) then resulted in a heap-based buffer over-read.", + "cvss": null + } + ], + "matchDetails": [ + { + "type": "exact-indirect-match", + "matcher": "dpkg-matcher", + "searchedBy": { + "distro": { + "type": "debian", + "version": "9" + }, + "namespace": "debian:distro:debian:9", + "package": { + "name": "expat", + "version": "2.2.0-2+deb9u1" + } + }, + "found": { + "versionConstraint": "\u003c 2.2.0-2+deb9u3 (deb)", + "vulnerabilityID": "CVE-2019-15903" + } + } + ], + "artifact": { + "name": "libexpat1", + "version": "2.2.0-2+deb9u1", + "type": "deb", + "locations": null, + "language": "", + "licenses": [], + "cpes": [ + "cpe:2.3:a:libexpat1:libexpat1:2.2.0-2+deb9u1:*:*:*:*:*:*:*" + ], + "purl": "pkg:deb/debian/libexpat1@2.2.0-2+deb9u1?arch=amd64\u0026upstream=expat\u0026distro=debian-9", + "upstreams": [ + { + "name": "expat" + } + ], + "metadata": null + } + }, + { + "vulnerability": { + "id": "CVE-2019-17543", + "dataSource": "https://security-tracker.debian.org/tracker/CVE-2019-17543", + "namespace": "debian:distro:debian:9", + "severity": "Low", + "urls": [ + "https://security-tracker.debian.org/tracker/CVE-2019-17543" + ], + "description": "LZ4 before 1.9.2 has a heap-based buffer overflow in LZ4_write32 (related to LZ4_compress_destSize), affecting applications that call LZ4_compress_fast with a large input. (This issue can also lead to data corruption.) NOTE: the vendor states \"only a few specific / uncommon usages of the API are at risk.\"", + "cvss": null, + "fix": { + "versions": [], + "state": "wont-fix" + }, + "advisories": null + }, + "relatedVulnerabilities": [ + { + "id": "CVE-2019-17543", + "dataSource": "https://nvd.nist.gov/vuln/detail/CVE-2019-17543", + "namespace": "nvd:cpe", + "severity": "High", + "urls": [ + "http://lists.opensuse.org/opensuse-security-announce/2019-10/msg00069.html", + "http://lists.opensuse.org/opensuse-security-announce/2019-10/msg00070.html", + "https://bugs.chromium.org/p/oss-fuzz/issues/detail?id=15941", + "https://github.com/lz4/lz4/compare/v1.9.1...v1.9.2", + "https://github.com/lz4/lz4/issues/801", + "https://github.com/lz4/lz4/pull/756", + "https://github.com/lz4/lz4/pull/760", + "https://lists.apache.org/thread.html/25015588b770d67470b7ba7ea49a305d6735dd7f00eabe7d50ec1e17@%3Cissues.arrow.apache.org%3E", + "https://lists.apache.org/thread.html/543302d55e2d2da4311994e9b0debdc676bf3fd05e1a2be3407aa2d6@%3Cissues.arrow.apache.org%3E", + "https://lists.apache.org/thread.html/793012683dc0fa6819b7c2560e6cf990811014c40c7d75412099c357@%3Cissues.arrow.apache.org%3E", + "https://lists.apache.org/thread.html/9ff0606d16be2ab6a81619e1c9e23c3e251756638e36272c8c8b7fa3@%3Cissues.arrow.apache.org%3E", + "https://lists.apache.org/thread.html/f0038c4fab2ee25aee849ebeff6b33b3aa89e07ccfb06b5c87b36316@%3Cissues.arrow.apache.org%3E", + "https://lists.apache.org/thread.html/f506bc371d4a068d5d84d7361293568f61167d3a1c3e91f0def2d7d3@%3Cdev.arrow.apache.org%3E", + "https://lists.apache.org/thread.html/r0fb226357e7988a241b06b93bab065bcea2eb38658b382e485960e26@%3Cissues.kudu.apache.org%3E", + "https://lists.apache.org/thread.html/r4068ba81066792f2b4d208b39c4c4713c5d4c79bd8cb6c1904af5720@%3Cissues.kudu.apache.org%3E", + "https://lists.apache.org/thread.html/r7bc72200f94298bc9a0e35637f388deb53467ca4b2e2ad1ff66d8960@%3Cissues.kudu.apache.org%3E", + "https://security.netapp.com/advisory/ntap-20210723-0001/", + "https://www.oracle.com//security-alerts/cpujul2021.html", + "https://www.oracle.com/security-alerts/cpuoct2020.html" + ], + "description": "LZ4 before 1.9.2 has a heap-based buffer overflow in LZ4_write32 (related to LZ4_compress_destSize), affecting applications that call LZ4_compress_fast with a large input. (This issue can also lead to data corruption.) NOTE: the vendor states \"only a few specific / uncommon usages of the API are at risk.\"", + "cvss": null + } + ], + "matchDetails": [ + { + "type": "exact-indirect-match", + "matcher": "dpkg-matcher", + "searchedBy": { + "distro": { + "type": "debian", + "version": "9" + }, + "namespace": "debian:distro:debian:9", + "package": { + "name": "lz4", + "version": "0.0~r131-2" + } + }, + "found": { + "versionConstraint": "none (deb)", + "vulnerabilityID": "CVE-2019-17543" + } + } + ], + "artifact": { + "name": "liblz4-1", + "version": "0.0~r131-2+b1", + "type": "deb", + "locations": null, + "language": "", + "licenses": [ + "BSD-2-Clause", + "GPL-2.0-only", + "GPL-2.0-or-later" + ], + "cpes": [ + "cpe:2.3:a:liblz4-1:liblz4-1:0.0~r131-2+b1:*:*:*:*:*:*:*", + "cpe:2.3:a:liblz4-1:liblz4_1:0.0~r131-2+b1:*:*:*:*:*:*:*", + "cpe:2.3:a:liblz4_1:liblz4-1:0.0~r131-2+b1:*:*:*:*:*:*:*", + "cpe:2.3:a:liblz4_1:liblz4_1:0.0~r131-2+b1:*:*:*:*:*:*:*", + "cpe:2.3:a:liblz4:liblz4-1:0.0~r131-2+b1:*:*:*:*:*:*:*", + "cpe:2.3:a:liblz4:liblz4_1:0.0~r131-2+b1:*:*:*:*:*:*:*" + ], + "purl": "pkg:deb/debian/liblz4-1@0.0~r131-2+b1?arch=amd64\u0026upstream=lz4%400.0~r131-2\u0026distro=debian-9", + "upstreams": [ + { + "name": "lz4", + "version": "0.0~r131-2" + } + ], + "metadata": null + } + }, + { + "vulnerability": { + "id": "CVE-2019-17546", + "dataSource": "https://security-tracker.debian.org/tracker/CVE-2019-17546", + "namespace": "debian:distro:debian:9", + "severity": "High", + "urls": [ + "https://security-tracker.debian.org/tracker/CVE-2019-17546" + ], + "description": "tif_getimage.c in LibTIFF through 4.0.10, as used in GDAL through 3.0.1 and other products, has an integer overflow that potentially causes a heap-based buffer overflow via a crafted RGBA image, related to a \"Negative-size-param\" condition.", + "cvss": null, + "fix": { + "versions": [ + "4.0.8-2+deb9u5" + ], + "state": "fixed" + }, + "advisories": [ + { + "id": "DSA-4670-1", + "link": "https://security-tracker.debian.org/tracker/DSA-4670-1" + } + ] + }, + "relatedVulnerabilities": [ + { + "id": "CVE-2019-17546", + "dataSource": "https://nvd.nist.gov/vuln/detail/CVE-2019-17546", + "namespace": "nvd:cpe", + "severity": "High", + "urls": [ + "https://bugs.chromium.org/p/oss-fuzz/issues/detail?id=16443", + "https://github.com/OSGeo/gdal/commit/21674033ee246f698887604c7af7ba1962a40ddf", + "https://gitlab.com/libtiff/libtiff/commit/4bb584a35f87af42d6cf09d15e9ce8909a839145", + "https://lists.debian.org/debian-lts-announce/2019/11/msg00027.html", + "https://lists.debian.org/debian-lts-announce/2020/03/msg00020.html", + "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/LM5ZW7E3IEW7LT2BPJP7D3RN6OUOE3MX/", + "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/M3S4WNIMZ7XSLY2LD5FPRPZMGNUBVKOG/", + "https://seclists.org/bugtraq/2020/Jan/32", + "https://security.gentoo.org/glsa/202003-25", + "https://www.debian.org/security/2020/dsa-4608", + "https://www.debian.org/security/2020/dsa-4670" + ], + "description": "tif_getimage.c in LibTIFF through 4.0.10, as used in GDAL through 3.0.1 and other products, has an integer overflow that potentially causes a heap-based buffer overflow via a crafted RGBA image, related to a \"Negative-size-param\" condition.", + "cvss": null + } + ], + "matchDetails": [ + { + "type": "exact-indirect-match", + "matcher": "dpkg-matcher", + "searchedBy": { + "distro": { + "type": "debian", + "version": "9" + }, + "namespace": "debian:distro:debian:9", + "package": { + "name": "tiff", + "version": "4.0.8-2+deb9u2" + } + }, + "found": { + "versionConstraint": "\u003c 4.0.8-2+deb9u5 (deb)", + "vulnerabilityID": "CVE-2019-17546" + } + } + ], + "artifact": { + "name": "libtiff5", + "version": "4.0.8-2+deb9u2", + "type": "deb", + "locations": null, + "language": "", + "licenses": [ + "LicenseRef-Hylafax" + ], + "cpes": [ + "cpe:2.3:a:libtiff5:libtiff5:4.0.8-2+deb9u2:*:*:*:*:*:*:*" + ], + "purl": "pkg:deb/debian/libtiff5@4.0.8-2+deb9u2?arch=amd64\u0026upstream=tiff\u0026distro=debian-9", + "upstreams": [ + { + "name": "tiff" + } + ], + "metadata": null + } + }, + { + "vulnerability": { + "id": "CVE-2019-17594", + "dataSource": "https://security-tracker.debian.org/tracker/CVE-2019-17594", + "namespace": "debian:distro:debian:9", + "severity": "Low", + "urls": [ + "https://security-tracker.debian.org/tracker/CVE-2019-17594" + ], + "description": "There is a heap-based buffer over-read in the _nc_find_entry function in tinfo/comp_hash.c in the terminfo library in ncurses before 6.1-20191012.", + "cvss": null, + "fix": { + "versions": [], + "state": "wont-fix" + }, + "advisories": null + }, + "relatedVulnerabilities": [ + { + "id": "CVE-2019-17594", + "dataSource": "https://nvd.nist.gov/vuln/detail/CVE-2019-17594", + "namespace": "nvd:cpe", + "severity": "Medium", + "urls": [ + "http://lists.opensuse.org/opensuse-security-announce/2019-11/msg00059.html", + "http://lists.opensuse.org/opensuse-security-announce/2019-11/msg00061.html", + "https://lists.gnu.org/archive/html/bug-ncurses/2019-10/msg00017.html", + "https://lists.gnu.org/archive/html/bug-ncurses/2019-10/msg00045.html", + "https://security.gentoo.org/glsa/202101-28" + ], + "description": "There is a heap-based buffer over-read in the _nc_find_entry function in tinfo/comp_hash.c in the terminfo library in ncurses before 6.1-20191012.", + "cvss": null + } + ], + "matchDetails": [ + { + "type": "exact-indirect-match", + "matcher": "dpkg-matcher", + "searchedBy": { + "distro": { + "type": "debian", + "version": "9" + }, + "namespace": "debian:distro:debian:9", + "package": { + "name": "ncurses", + "version": "6.0+20161126-1+deb9u2" + } + }, + "found": { + "versionConstraint": "none (deb)", + "vulnerabilityID": "CVE-2019-17594" + } + } + ], + "artifact": { + "name": "libncurses5", + "version": "6.0+20161126-1+deb9u2", + "type": "deb", + "locations": null, + "language": "", + "licenses": [], + "cpes": [ + "cpe:2.3:a:libncurses5:libncurses5:6.0+20161126-1+deb9u2:*:*:*:*:*:*:*" + ], + "purl": "pkg:deb/debian/libncurses5@6.0+20161126-1+deb9u2?arch=amd64\u0026upstream=ncurses\u0026distro=debian-9", + "upstreams": [ + { + "name": "ncurses" + } + ], + "metadata": null + } + }, + { + "vulnerability": { + "id": "CVE-2019-17594", + "dataSource": "https://security-tracker.debian.org/tracker/CVE-2019-17594", + "namespace": "debian:distro:debian:9", + "severity": "Low", + "urls": [ + "https://security-tracker.debian.org/tracker/CVE-2019-17594" + ], + "description": "There is a heap-based buffer over-read in the _nc_find_entry function in tinfo/comp_hash.c in the terminfo library in ncurses before 6.1-20191012.", + "cvss": null, + "fix": { + "versions": [], + "state": "wont-fix" + }, + "advisories": null + }, + "relatedVulnerabilities": [ + { + "id": "CVE-2019-17594", + "dataSource": "https://nvd.nist.gov/vuln/detail/CVE-2019-17594", + "namespace": "nvd:cpe", + "severity": "Medium", + "urls": [ + "http://lists.opensuse.org/opensuse-security-announce/2019-11/msg00059.html", + "http://lists.opensuse.org/opensuse-security-announce/2019-11/msg00061.html", + "https://lists.gnu.org/archive/html/bug-ncurses/2019-10/msg00017.html", + "https://lists.gnu.org/archive/html/bug-ncurses/2019-10/msg00045.html", + "https://security.gentoo.org/glsa/202101-28" + ], + "description": "There is a heap-based buffer over-read in the _nc_find_entry function in tinfo/comp_hash.c in the terminfo library in ncurses before 6.1-20191012.", + "cvss": null + } + ], + "matchDetails": [ + { + "type": "exact-indirect-match", + "matcher": "dpkg-matcher", + "searchedBy": { + "distro": { + "type": "debian", + "version": "9" + }, + "namespace": "debian:distro:debian:9", + "package": { + "name": "ncurses", + "version": "6.0+20161126-1+deb9u2" + } + }, + "found": { + "versionConstraint": "none (deb)", + "vulnerabilityID": "CVE-2019-17594" + } + } + ], + "artifact": { + "name": "libncursesw5", + "version": "6.0+20161126-1+deb9u2", + "type": "deb", + "locations": null, + "language": "", + "licenses": [], + "cpes": [ + "cpe:2.3:a:libncursesw5:libncursesw5:6.0+20161126-1+deb9u2:*:*:*:*:*:*:*" + ], + "purl": "pkg:deb/debian/libncursesw5@6.0+20161126-1+deb9u2?arch=amd64\u0026upstream=ncurses\u0026distro=debian-9", + "upstreams": [ + { + "name": "ncurses" + } + ], + "metadata": null + } + }, + { + "vulnerability": { + "id": "CVE-2019-17594", + "dataSource": "https://security-tracker.debian.org/tracker/CVE-2019-17594", + "namespace": "debian:distro:debian:9", + "severity": "Low", + "urls": [ + "https://security-tracker.debian.org/tracker/CVE-2019-17594" + ], + "description": "There is a heap-based buffer over-read in the _nc_find_entry function in tinfo/comp_hash.c in the terminfo library in ncurses before 6.1-20191012.", + "cvss": null, + "fix": { + "versions": [], + "state": "wont-fix" + }, + "advisories": null + }, + "relatedVulnerabilities": [ + { + "id": "CVE-2019-17594", + "dataSource": "https://nvd.nist.gov/vuln/detail/CVE-2019-17594", + "namespace": "nvd:cpe", + "severity": "Medium", + "urls": [ + "http://lists.opensuse.org/opensuse-security-announce/2019-11/msg00059.html", + "http://lists.opensuse.org/opensuse-security-announce/2019-11/msg00061.html", + "https://lists.gnu.org/archive/html/bug-ncurses/2019-10/msg00017.html", + "https://lists.gnu.org/archive/html/bug-ncurses/2019-10/msg00045.html", + "https://security.gentoo.org/glsa/202101-28" + ], + "description": "There is a heap-based buffer over-read in the _nc_find_entry function in tinfo/comp_hash.c in the terminfo library in ncurses before 6.1-20191012.", + "cvss": null + } + ], + "matchDetails": [ + { + "type": "exact-indirect-match", + "matcher": "dpkg-matcher", + "searchedBy": { + "distro": { + "type": "debian", + "version": "9" + }, + "namespace": "debian:distro:debian:9", + "package": { + "name": "ncurses", + "version": "6.0+20161126-1+deb9u2" + } + }, + "found": { + "versionConstraint": "none (deb)", + "vulnerabilityID": "CVE-2019-17594" + } + } + ], + "artifact": { + "name": "libtinfo5", + "version": "6.0+20161126-1+deb9u2", + "type": "deb", + "locations": null, + "language": "", + "licenses": [], + "cpes": [ + "cpe:2.3:a:libtinfo5:libtinfo5:6.0+20161126-1+deb9u2:*:*:*:*:*:*:*" + ], + "purl": "pkg:deb/debian/libtinfo5@6.0+20161126-1+deb9u2?arch=amd64\u0026upstream=ncurses\u0026distro=debian-9", + "upstreams": [ + { + "name": "ncurses" + } + ], + "metadata": null + } + }, + { + "vulnerability": { + "id": "CVE-2019-17594", + "dataSource": "https://security-tracker.debian.org/tracker/CVE-2019-17594", + "namespace": "debian:distro:debian:9", + "severity": "Low", + "urls": [ + "https://security-tracker.debian.org/tracker/CVE-2019-17594" + ], + "description": "There is a heap-based buffer over-read in the _nc_find_entry function in tinfo/comp_hash.c in the terminfo library in ncurses before 6.1-20191012.", + "cvss": null, + "fix": { + "versions": [], + "state": "wont-fix" + }, + "advisories": null + }, + "relatedVulnerabilities": [ + { + "id": "CVE-2019-17594", + "dataSource": "https://nvd.nist.gov/vuln/detail/CVE-2019-17594", + "namespace": "nvd:cpe", + "severity": "Medium", + "urls": [ + "http://lists.opensuse.org/opensuse-security-announce/2019-11/msg00059.html", + "http://lists.opensuse.org/opensuse-security-announce/2019-11/msg00061.html", + "https://lists.gnu.org/archive/html/bug-ncurses/2019-10/msg00017.html", + "https://lists.gnu.org/archive/html/bug-ncurses/2019-10/msg00045.html", + "https://security.gentoo.org/glsa/202101-28" + ], + "description": "There is a heap-based buffer over-read in the _nc_find_entry function in tinfo/comp_hash.c in the terminfo library in ncurses before 6.1-20191012.", + "cvss": null + } + ], + "matchDetails": [ + { + "type": "exact-indirect-match", + "matcher": "dpkg-matcher", + "searchedBy": { + "distro": { + "type": "debian", + "version": "9" + }, + "namespace": "debian:distro:debian:9", + "package": { + "name": "ncurses", + "version": "6.0+20161126-1+deb9u2" + } + }, + "found": { + "versionConstraint": "none (deb)", + "vulnerabilityID": "CVE-2019-17594" + } + } + ], + "artifact": { + "name": "ncurses-base", + "version": "6.0+20161126-1+deb9u2", + "type": "deb", + "locations": null, + "language": "", + "licenses": [], + "cpes": [ + "cpe:2.3:a:ncurses-base:ncurses-base:6.0+20161126-1+deb9u2:*:*:*:*:*:*:*", + "cpe:2.3:a:ncurses-base:ncurses_base:6.0+20161126-1+deb9u2:*:*:*:*:*:*:*", + "cpe:2.3:a:ncurses_base:ncurses-base:6.0+20161126-1+deb9u2:*:*:*:*:*:*:*", + "cpe:2.3:a:ncurses_base:ncurses_base:6.0+20161126-1+deb9u2:*:*:*:*:*:*:*", + "cpe:2.3:a:ncurses:ncurses-base:6.0+20161126-1+deb9u2:*:*:*:*:*:*:*", + "cpe:2.3:a:ncurses:ncurses_base:6.0+20161126-1+deb9u2:*:*:*:*:*:*:*" + ], + "purl": "pkg:deb/debian/ncurses-base@6.0+20161126-1+deb9u2?arch=all\u0026upstream=ncurses\u0026distro=debian-9", + "upstreams": [ + { + "name": "ncurses" + } + ], + "metadata": null + } + }, + { + "vulnerability": { + "id": "CVE-2019-17594", + "dataSource": "https://security-tracker.debian.org/tracker/CVE-2019-17594", + "namespace": "debian:distro:debian:9", + "severity": "Low", + "urls": [ + "https://security-tracker.debian.org/tracker/CVE-2019-17594" + ], + "description": "There is a heap-based buffer over-read in the _nc_find_entry function in tinfo/comp_hash.c in the terminfo library in ncurses before 6.1-20191012.", + "cvss": null, + "fix": { + "versions": [], + "state": "wont-fix" + }, + "advisories": null + }, + "relatedVulnerabilities": [ + { + "id": "CVE-2019-17594", + "dataSource": "https://nvd.nist.gov/vuln/detail/CVE-2019-17594", + "namespace": "nvd:cpe", + "severity": "Medium", + "urls": [ + "http://lists.opensuse.org/opensuse-security-announce/2019-11/msg00059.html", + "http://lists.opensuse.org/opensuse-security-announce/2019-11/msg00061.html", + "https://lists.gnu.org/archive/html/bug-ncurses/2019-10/msg00017.html", + "https://lists.gnu.org/archive/html/bug-ncurses/2019-10/msg00045.html", + "https://security.gentoo.org/glsa/202101-28" + ], + "description": "There is a heap-based buffer over-read in the _nc_find_entry function in tinfo/comp_hash.c in the terminfo library in ncurses before 6.1-20191012.", + "cvss": null + } + ], + "matchDetails": [ + { + "type": "exact-indirect-match", + "matcher": "dpkg-matcher", + "searchedBy": { + "distro": { + "type": "debian", + "version": "9" + }, + "namespace": "debian:distro:debian:9", + "package": { + "name": "ncurses", + "version": "6.0+20161126-1+deb9u2" + } + }, + "found": { + "versionConstraint": "none (deb)", + "vulnerabilityID": "CVE-2019-17594" + } + } + ], + "artifact": { + "name": "ncurses-bin", + "version": "6.0+20161126-1+deb9u2", + "type": "deb", + "locations": null, + "language": "", + "licenses": [], + "cpes": [ + "cpe:2.3:a:ncurses-bin:ncurses-bin:6.0+20161126-1+deb9u2:*:*:*:*:*:*:*", + "cpe:2.3:a:ncurses-bin:ncurses_bin:6.0+20161126-1+deb9u2:*:*:*:*:*:*:*", + "cpe:2.3:a:ncurses_bin:ncurses-bin:6.0+20161126-1+deb9u2:*:*:*:*:*:*:*", + "cpe:2.3:a:ncurses_bin:ncurses_bin:6.0+20161126-1+deb9u2:*:*:*:*:*:*:*", + "cpe:2.3:a:ncurses:ncurses-bin:6.0+20161126-1+deb9u2:*:*:*:*:*:*:*", + "cpe:2.3:a:ncurses:ncurses_bin:6.0+20161126-1+deb9u2:*:*:*:*:*:*:*" + ], + "purl": "pkg:deb/debian/ncurses-bin@6.0+20161126-1+deb9u2?arch=amd64\u0026upstream=ncurses\u0026distro=debian-9", + "upstreams": [ + { + "name": "ncurses" + } + ], + "metadata": null + } + }, + { + "vulnerability": { + "id": "CVE-2019-17595", + "dataSource": "https://security-tracker.debian.org/tracker/CVE-2019-17595", + "namespace": "debian:distro:debian:9", + "severity": "Low", + "urls": [ + "https://security-tracker.debian.org/tracker/CVE-2019-17595" + ], + "description": "There is a heap-based buffer over-read in the fmt_entry function in tinfo/comp_hash.c in the terminfo library in ncurses before 6.1-20191012.", + "cvss": null, + "fix": { + "versions": [], + "state": "wont-fix" + }, + "advisories": null + }, + "relatedVulnerabilities": [ + { + "id": "CVE-2019-17595", + "dataSource": "https://nvd.nist.gov/vuln/detail/CVE-2019-17595", + "namespace": "nvd:cpe", + "severity": "Medium", + "urls": [ + "http://lists.opensuse.org/opensuse-security-announce/2019-11/msg00059.html", + "http://lists.opensuse.org/opensuse-security-announce/2019-11/msg00061.html", + "https://lists.gnu.org/archive/html/bug-ncurses/2019-10/msg00013.html", + "https://lists.gnu.org/archive/html/bug-ncurses/2019-10/msg00045.html", + "https://security.gentoo.org/glsa/202101-28" + ], + "description": "There is a heap-based buffer over-read in the fmt_entry function in tinfo/comp_hash.c in the terminfo library in ncurses before 6.1-20191012.", + "cvss": null + } + ], + "matchDetails": [ + { + "type": "exact-indirect-match", + "matcher": "dpkg-matcher", + "searchedBy": { + "distro": { + "type": "debian", + "version": "9" + }, + "namespace": "debian:distro:debian:9", + "package": { + "name": "ncurses", + "version": "6.0+20161126-1+deb9u2" + } + }, + "found": { + "versionConstraint": "none (deb)", + "vulnerabilityID": "CVE-2019-17595" + } + } + ], + "artifact": { + "name": "libncurses5", + "version": "6.0+20161126-1+deb9u2", + "type": "deb", + "locations": null, + "language": "", + "licenses": [], + "cpes": [ + "cpe:2.3:a:libncurses5:libncurses5:6.0+20161126-1+deb9u2:*:*:*:*:*:*:*" + ], + "purl": "pkg:deb/debian/libncurses5@6.0+20161126-1+deb9u2?arch=amd64\u0026upstream=ncurses\u0026distro=debian-9", + "upstreams": [ + { + "name": "ncurses" + } + ], + "metadata": null + } + }, + { + "vulnerability": { + "id": "CVE-2019-17595", + "dataSource": "https://security-tracker.debian.org/tracker/CVE-2019-17595", + "namespace": "debian:distro:debian:9", + "severity": "Low", + "urls": [ + "https://security-tracker.debian.org/tracker/CVE-2019-17595" + ], + "description": "There is a heap-based buffer over-read in the fmt_entry function in tinfo/comp_hash.c in the terminfo library in ncurses before 6.1-20191012.", + "cvss": null, + "fix": { + "versions": [], + "state": "wont-fix" + }, + "advisories": null + }, + "relatedVulnerabilities": [ + { + "id": "CVE-2019-17595", + "dataSource": "https://nvd.nist.gov/vuln/detail/CVE-2019-17595", + "namespace": "nvd:cpe", + "severity": "Medium", + "urls": [ + "http://lists.opensuse.org/opensuse-security-announce/2019-11/msg00059.html", + "http://lists.opensuse.org/opensuse-security-announce/2019-11/msg00061.html", + "https://lists.gnu.org/archive/html/bug-ncurses/2019-10/msg00013.html", + "https://lists.gnu.org/archive/html/bug-ncurses/2019-10/msg00045.html", + "https://security.gentoo.org/glsa/202101-28" + ], + "description": "There is a heap-based buffer over-read in the fmt_entry function in tinfo/comp_hash.c in the terminfo library in ncurses before 6.1-20191012.", + "cvss": null + } + ], + "matchDetails": [ + { + "type": "exact-indirect-match", + "matcher": "dpkg-matcher", + "searchedBy": { + "distro": { + "type": "debian", + "version": "9" + }, + "namespace": "debian:distro:debian:9", + "package": { + "name": "ncurses", + "version": "6.0+20161126-1+deb9u2" + } + }, + "found": { + "versionConstraint": "none (deb)", + "vulnerabilityID": "CVE-2019-17595" + } + } + ], + "artifact": { + "name": "libncursesw5", + "version": "6.0+20161126-1+deb9u2", + "type": "deb", + "locations": null, + "language": "", + "licenses": [], + "cpes": [ + "cpe:2.3:a:libncursesw5:libncursesw5:6.0+20161126-1+deb9u2:*:*:*:*:*:*:*" + ], + "purl": "pkg:deb/debian/libncursesw5@6.0+20161126-1+deb9u2?arch=amd64\u0026upstream=ncurses\u0026distro=debian-9", + "upstreams": [ + { + "name": "ncurses" + } + ], + "metadata": null + } + }, + { + "vulnerability": { + "id": "CVE-2019-17595", + "dataSource": "https://security-tracker.debian.org/tracker/CVE-2019-17595", + "namespace": "debian:distro:debian:9", + "severity": "Low", + "urls": [ + "https://security-tracker.debian.org/tracker/CVE-2019-17595" + ], + "description": "There is a heap-based buffer over-read in the fmt_entry function in tinfo/comp_hash.c in the terminfo library in ncurses before 6.1-20191012.", + "cvss": null, + "fix": { + "versions": [], + "state": "wont-fix" + }, + "advisories": null + }, + "relatedVulnerabilities": [ + { + "id": "CVE-2019-17595", + "dataSource": "https://nvd.nist.gov/vuln/detail/CVE-2019-17595", + "namespace": "nvd:cpe", + "severity": "Medium", + "urls": [ + "http://lists.opensuse.org/opensuse-security-announce/2019-11/msg00059.html", + "http://lists.opensuse.org/opensuse-security-announce/2019-11/msg00061.html", + "https://lists.gnu.org/archive/html/bug-ncurses/2019-10/msg00013.html", + "https://lists.gnu.org/archive/html/bug-ncurses/2019-10/msg00045.html", + "https://security.gentoo.org/glsa/202101-28" + ], + "description": "There is a heap-based buffer over-read in the fmt_entry function in tinfo/comp_hash.c in the terminfo library in ncurses before 6.1-20191012.", + "cvss": null + } + ], + "matchDetails": [ + { + "type": "exact-indirect-match", + "matcher": "dpkg-matcher", + "searchedBy": { + "distro": { + "type": "debian", + "version": "9" + }, + "namespace": "debian:distro:debian:9", + "package": { + "name": "ncurses", + "version": "6.0+20161126-1+deb9u2" + } + }, + "found": { + "versionConstraint": "none (deb)", + "vulnerabilityID": "CVE-2019-17595" + } + } + ], + "artifact": { + "name": "libtinfo5", + "version": "6.0+20161126-1+deb9u2", + "type": "deb", + "locations": null, + "language": "", + "licenses": [], + "cpes": [ + "cpe:2.3:a:libtinfo5:libtinfo5:6.0+20161126-1+deb9u2:*:*:*:*:*:*:*" + ], + "purl": "pkg:deb/debian/libtinfo5@6.0+20161126-1+deb9u2?arch=amd64\u0026upstream=ncurses\u0026distro=debian-9", + "upstreams": [ + { + "name": "ncurses" + } + ], + "metadata": null + } + }, + { + "vulnerability": { + "id": "CVE-2019-17595", + "dataSource": "https://security-tracker.debian.org/tracker/CVE-2019-17595", + "namespace": "debian:distro:debian:9", + "severity": "Low", + "urls": [ + "https://security-tracker.debian.org/tracker/CVE-2019-17595" + ], + "description": "There is a heap-based buffer over-read in the fmt_entry function in tinfo/comp_hash.c in the terminfo library in ncurses before 6.1-20191012.", + "cvss": null, + "fix": { + "versions": [], + "state": "wont-fix" + }, + "advisories": null + }, + "relatedVulnerabilities": [ + { + "id": "CVE-2019-17595", + "dataSource": "https://nvd.nist.gov/vuln/detail/CVE-2019-17595", + "namespace": "nvd:cpe", + "severity": "Medium", + "urls": [ + "http://lists.opensuse.org/opensuse-security-announce/2019-11/msg00059.html", + "http://lists.opensuse.org/opensuse-security-announce/2019-11/msg00061.html", + "https://lists.gnu.org/archive/html/bug-ncurses/2019-10/msg00013.html", + "https://lists.gnu.org/archive/html/bug-ncurses/2019-10/msg00045.html", + "https://security.gentoo.org/glsa/202101-28" + ], + "description": "There is a heap-based buffer over-read in the fmt_entry function in tinfo/comp_hash.c in the terminfo library in ncurses before 6.1-20191012.", + "cvss": null + } + ], + "matchDetails": [ + { + "type": "exact-indirect-match", + "matcher": "dpkg-matcher", + "searchedBy": { + "distro": { + "type": "debian", + "version": "9" + }, + "namespace": "debian:distro:debian:9", + "package": { + "name": "ncurses", + "version": "6.0+20161126-1+deb9u2" + } + }, + "found": { + "versionConstraint": "none (deb)", + "vulnerabilityID": "CVE-2019-17595" + } + } + ], + "artifact": { + "name": "ncurses-base", + "version": "6.0+20161126-1+deb9u2", + "type": "deb", + "locations": null, + "language": "", + "licenses": [], + "cpes": [ + "cpe:2.3:a:ncurses-base:ncurses-base:6.0+20161126-1+deb9u2:*:*:*:*:*:*:*", + "cpe:2.3:a:ncurses-base:ncurses_base:6.0+20161126-1+deb9u2:*:*:*:*:*:*:*", + "cpe:2.3:a:ncurses_base:ncurses-base:6.0+20161126-1+deb9u2:*:*:*:*:*:*:*", + "cpe:2.3:a:ncurses_base:ncurses_base:6.0+20161126-1+deb9u2:*:*:*:*:*:*:*", + "cpe:2.3:a:ncurses:ncurses-base:6.0+20161126-1+deb9u2:*:*:*:*:*:*:*", + "cpe:2.3:a:ncurses:ncurses_base:6.0+20161126-1+deb9u2:*:*:*:*:*:*:*" + ], + "purl": "pkg:deb/debian/ncurses-base@6.0+20161126-1+deb9u2?arch=all\u0026upstream=ncurses\u0026distro=debian-9", + "upstreams": [ + { + "name": "ncurses" + } + ], + "metadata": null + } + }, + { + "vulnerability": { + "id": "CVE-2019-17595", + "dataSource": "https://security-tracker.debian.org/tracker/CVE-2019-17595", + "namespace": "debian:distro:debian:9", + "severity": "Low", + "urls": [ + "https://security-tracker.debian.org/tracker/CVE-2019-17595" + ], + "description": "There is a heap-based buffer over-read in the fmt_entry function in tinfo/comp_hash.c in the terminfo library in ncurses before 6.1-20191012.", + "cvss": null, + "fix": { + "versions": [], + "state": "wont-fix" + }, + "advisories": null + }, + "relatedVulnerabilities": [ + { + "id": "CVE-2019-17595", + "dataSource": "https://nvd.nist.gov/vuln/detail/CVE-2019-17595", + "namespace": "nvd:cpe", + "severity": "Medium", + "urls": [ + "http://lists.opensuse.org/opensuse-security-announce/2019-11/msg00059.html", + "http://lists.opensuse.org/opensuse-security-announce/2019-11/msg00061.html", + "https://lists.gnu.org/archive/html/bug-ncurses/2019-10/msg00013.html", + "https://lists.gnu.org/archive/html/bug-ncurses/2019-10/msg00045.html", + "https://security.gentoo.org/glsa/202101-28" + ], + "description": "There is a heap-based buffer over-read in the fmt_entry function in tinfo/comp_hash.c in the terminfo library in ncurses before 6.1-20191012.", + "cvss": null + } + ], + "matchDetails": [ + { + "type": "exact-indirect-match", + "matcher": "dpkg-matcher", + "searchedBy": { + "distro": { + "type": "debian", + "version": "9" + }, + "namespace": "debian:distro:debian:9", + "package": { + "name": "ncurses", + "version": "6.0+20161126-1+deb9u2" + } + }, + "found": { + "versionConstraint": "none (deb)", + "vulnerabilityID": "CVE-2019-17595" + } + } + ], + "artifact": { + "name": "ncurses-bin", + "version": "6.0+20161126-1+deb9u2", + "type": "deb", + "locations": null, + "language": "", + "licenses": [], + "cpes": [ + "cpe:2.3:a:ncurses-bin:ncurses-bin:6.0+20161126-1+deb9u2:*:*:*:*:*:*:*", + "cpe:2.3:a:ncurses-bin:ncurses_bin:6.0+20161126-1+deb9u2:*:*:*:*:*:*:*", + "cpe:2.3:a:ncurses_bin:ncurses-bin:6.0+20161126-1+deb9u2:*:*:*:*:*:*:*", + "cpe:2.3:a:ncurses_bin:ncurses_bin:6.0+20161126-1+deb9u2:*:*:*:*:*:*:*", + "cpe:2.3:a:ncurses:ncurses-bin:6.0+20161126-1+deb9u2:*:*:*:*:*:*:*", + "cpe:2.3:a:ncurses:ncurses_bin:6.0+20161126-1+deb9u2:*:*:*:*:*:*:*" + ], + "purl": "pkg:deb/debian/ncurses-bin@6.0+20161126-1+deb9u2?arch=amd64\u0026upstream=ncurses\u0026distro=debian-9", + "upstreams": [ + { + "name": "ncurses" + } + ], + "metadata": null + } + }, + { + "vulnerability": { + "id": "CVE-2019-18197", + "dataSource": "https://security-tracker.debian.org/tracker/CVE-2019-18197", + "namespace": "debian:distro:debian:9", + "severity": "High", + "urls": [ + "https://security-tracker.debian.org/tracker/CVE-2019-18197" + ], + "description": "In xsltCopyText in transform.c in libxslt 1.1.33, a pointer variable isn't reset under certain circumstances. If the relevant memory area happened to be freed and reused in a certain way, a bounds check could fail and memory outside a buffer could be written to, or uninitialized data could be disclosed.", + "cvss": null, + "fix": { + "versions": [ + "1.1.29-2.1+deb9u2" + ], + "state": "fixed" + }, + "advisories": null + }, + "relatedVulnerabilities": [ + { + "id": "CVE-2019-18197", + "dataSource": "https://nvd.nist.gov/vuln/detail/CVE-2019-18197", + "namespace": "nvd:cpe", + "severity": "High", + "urls": [ + "http://lists.opensuse.org/opensuse-security-announce/2020-02/msg00010.html", + "http://lists.opensuse.org/opensuse-security-announce/2020-02/msg00015.html", + "http://lists.opensuse.org/opensuse-security-announce/2020-02/msg00025.html", + "http://lists.opensuse.org/opensuse-security-announce/2020-05/msg00062.html", + "http://www.openwall.com/lists/oss-security/2019/11/17/2", + "https://access.redhat.com/errata/RHSA-2020:0514", + "https://bugs.chromium.org/p/oss-fuzz/issues/detail?id=15746", + "https://bugs.chromium.org/p/oss-fuzz/issues/detail?id=15768", + "https://bugs.chromium.org/p/oss-fuzz/issues/detail?id=15914", + "https://gitlab.gnome.org/GNOME/libxslt/commit/2232473733b7313d67de8836ea3b29eec6e8e285", + "https://lists.debian.org/debian-lts-announce/2019/10/msg00037.html", + "https://security.netapp.com/advisory/ntap-20191031-0004/", + "https://security.netapp.com/advisory/ntap-20200416-0004/", + "https://usn.ubuntu.com/4164-1/", + "https://www.oracle.com/security-alerts/cpuapr2020.html" + ], + "description": "In xsltCopyText in transform.c in libxslt 1.1.33, a pointer variable isn't reset under certain circumstances. If the relevant memory area happened to be freed and reused in a certain way, a bounds check could fail and memory outside a buffer could be written to, or uninitialized data could be disclosed.", + "cvss": null + } + ], + "matchDetails": [ + { + "type": "exact-indirect-match", + "matcher": "dpkg-matcher", + "searchedBy": { + "distro": { + "type": "debian", + "version": "9" + }, + "namespace": "debian:distro:debian:9", + "package": { + "name": "libxslt", + "version": "1.1.29-2.1" + } + }, + "found": { + "versionConstraint": "\u003c 1.1.29-2.1+deb9u2 (deb)", + "vulnerabilityID": "CVE-2019-18197" + } + } + ], + "artifact": { + "name": "libxslt1.1", + "version": "1.1.29-2.1", + "type": "deb", + "locations": null, + "language": "", + "licenses": [], + "cpes": [ + "cpe:2.3:a:libxslt1.1:libxslt1.1:1.1.29-2.1:*:*:*:*:*:*:*" + ], + "purl": "pkg:deb/debian/libxslt1.1@1.1.29-2.1?arch=amd64\u0026upstream=libxslt\u0026distro=debian-9", + "upstreams": [ + { + "name": "libxslt" + } + ], + "metadata": null + } + }, + { + "vulnerability": { + "id": "CVE-2019-18276", + "dataSource": "https://security-tracker.debian.org/tracker/CVE-2019-18276", + "namespace": "debian:distro:debian:9", + "severity": "Negligible", + "urls": [ + "https://security-tracker.debian.org/tracker/CVE-2019-18276" + ], + "description": "An issue was discovered in disable_priv_mode in shell.c in GNU Bash through 5.0 patch 11. By default, if Bash is run with its effective UID not equal to its real UID, it will drop privileges by setting its effective UID to its real UID. However, it does so incorrectly. On Linux and other systems that support \"saved UID\" functionality, the saved UID is not dropped. An attacker with command execution in the shell can use \"enable -f\" for runtime loading of a new builtin, which can be a shared object that calls setuid() and therefore regains privileges. However, binaries running with an effective UID of 0 are unaffected.", + "cvss": null, + "fix": { + "versions": [], + "state": "not-fixed" + }, + "advisories": null + }, + "relatedVulnerabilities": [ + { + "id": "CVE-2019-18276", + "dataSource": "https://nvd.nist.gov/vuln/detail/CVE-2019-18276", + "namespace": "nvd:cpe", + "severity": "High", + "urls": [ + "http://packetstormsecurity.com/files/155498/Bash-5.0-Patch-11-Privilege-Escalation.html", + "https://github.com/bminor/bash/commit/951bdaad7a18cc0dc1036bba86b18b90874d39ff", + "https://lists.apache.org/thread.html/rf9fa47ab66495c78bb4120b0754dd9531ca2ff0430f6685ac9b07772@%3Cdev.mina.apache.org%3E", + "https://security.gentoo.org/glsa/202105-34", + "https://security.netapp.com/advisory/ntap-20200430-0003/", + "https://www.oracle.com/security-alerts/cpuapr2022.html", + "https://www.youtube.com/watch?v=-wGtxJ8opa8" + ], + "description": "An issue was discovered in disable_priv_mode in shell.c in GNU Bash through 5.0 patch 11. By default, if Bash is run with its effective UID not equal to its real UID, it will drop privileges by setting its effective UID to its real UID. However, it does so incorrectly. On Linux and other systems that support \"saved UID\" functionality, the saved UID is not dropped. An attacker with command execution in the shell can use \"enable -f\" for runtime loading of a new builtin, which can be a shared object that calls setuid() and therefore regains privileges. However, binaries running with an effective UID of 0 are unaffected.", + "cvss": null + } + ], + "matchDetails": [ + { + "type": "exact-direct-match", + "matcher": "dpkg-matcher", + "searchedBy": { + "distro": { + "type": "debian", + "version": "9" + }, + "namespace": "debian:distro:debian:9", + "package": { + "name": "bash", + "version": "4.4-5" + } + }, + "found": { + "versionConstraint": "none (deb)", + "vulnerabilityID": "CVE-2019-18276" + } + } + ], + "artifact": { + "name": "bash", + "version": "4.4-5", + "type": "deb", + "locations": null, + "language": "", + "licenses": [ + "GPL-3.0-only" + ], + "cpes": [ + "cpe:2.3:a:bash:bash:4.4-5:*:*:*:*:*:*:*" + ], + "purl": "pkg:deb/debian/bash@4.4-5?arch=amd64\u0026distro=debian-9", + "upstreams": null, + "metadata": null + } + }, + { + "vulnerability": { + "id": "CVE-2019-19126", + "dataSource": "https://security-tracker.debian.org/tracker/CVE-2019-19126", + "namespace": "debian:distro:debian:9", + "severity": "Low", + "urls": [ + "https://security-tracker.debian.org/tracker/CVE-2019-19126" + ], + "description": "On the x86-64 architecture, the GNU C Library (aka glibc) before 2.31 fails to ignore the LD_PREFER_MAP_32BIT_EXEC environment variable during program execution after a security transition, allowing local attackers to restrict the possible mapping addresses for loaded libraries and thus bypass ASLR for a setuid program.", + "cvss": null, + "fix": { + "versions": [], + "state": "wont-fix" + }, + "advisories": null + }, + "relatedVulnerabilities": [ + { + "id": "CVE-2019-19126", + "dataSource": "https://nvd.nist.gov/vuln/detail/CVE-2019-19126", + "namespace": "nvd:cpe", + "severity": "Low", + "urls": [ + "https://lists.debian.org/debian-lts-announce/2022/10/msg00021.html", + "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/4FQ5LC6JOYSOYFPRUZ4S45KL6IP3RPPZ/", + "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/ZFJ5E7NWOL6ROE5QVICHKIOUGCPFJVUH/", + "https://sourceware.org/bugzilla/show_bug.cgi?id=25204", + "https://usn.ubuntu.com/4416-1/" + ], + "description": "On the x86-64 architecture, the GNU C Library (aka glibc) before 2.31 fails to ignore the LD_PREFER_MAP_32BIT_EXEC environment variable during program execution after a security transition, allowing local attackers to restrict the possible mapping addresses for loaded libraries and thus bypass ASLR for a setuid program.", + "cvss": null + } + ], + "matchDetails": [ + { + "type": "exact-indirect-match", + "matcher": "dpkg-matcher", + "searchedBy": { + "distro": { + "type": "debian", + "version": "9" + }, + "namespace": "debian:distro:debian:9", + "package": { + "name": "glibc", + "version": "2.24-11+deb9u3" + } + }, + "found": { + "versionConstraint": "none (deb)", + "vulnerabilityID": "CVE-2019-19126" + } + } + ], + "artifact": { + "name": "libc-bin", + "version": "2.24-11+deb9u3", + "type": "deb", + "locations": null, + "language": "", + "licenses": [ + "GPL-2.0-only", + "LGPL-2.1-only" + ], + "cpes": [ + "cpe:2.3:a:libc-bin:libc-bin:2.24-11+deb9u3:*:*:*:*:*:*:*", + "cpe:2.3:a:libc-bin:libc_bin:2.24-11+deb9u3:*:*:*:*:*:*:*", + "cpe:2.3:a:libc_bin:libc-bin:2.24-11+deb9u3:*:*:*:*:*:*:*", + "cpe:2.3:a:libc_bin:libc_bin:2.24-11+deb9u3:*:*:*:*:*:*:*", + "cpe:2.3:a:libc:libc-bin:2.24-11+deb9u3:*:*:*:*:*:*:*", + "cpe:2.3:a:libc:libc_bin:2.24-11+deb9u3:*:*:*:*:*:*:*" + ], + "purl": "pkg:deb/debian/libc-bin@2.24-11+deb9u3?arch=amd64\u0026upstream=glibc\u0026distro=debian-9", + "upstreams": [ + { + "name": "glibc" + } + ], + "metadata": null + } + }, + { + "vulnerability": { + "id": "CVE-2019-19126", + "dataSource": "https://security-tracker.debian.org/tracker/CVE-2019-19126", + "namespace": "debian:distro:debian:9", + "severity": "Low", + "urls": [ + "https://security-tracker.debian.org/tracker/CVE-2019-19126" + ], + "description": "On the x86-64 architecture, the GNU C Library (aka glibc) before 2.31 fails to ignore the LD_PREFER_MAP_32BIT_EXEC environment variable during program execution after a security transition, allowing local attackers to restrict the possible mapping addresses for loaded libraries and thus bypass ASLR for a setuid program.", + "cvss": null, + "fix": { + "versions": [], + "state": "wont-fix" + }, + "advisories": null + }, + "relatedVulnerabilities": [ + { + "id": "CVE-2019-19126", + "dataSource": "https://nvd.nist.gov/vuln/detail/CVE-2019-19126", + "namespace": "nvd:cpe", + "severity": "Low", + "urls": [ + "https://lists.debian.org/debian-lts-announce/2022/10/msg00021.html", + "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/4FQ5LC6JOYSOYFPRUZ4S45KL6IP3RPPZ/", + "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/ZFJ5E7NWOL6ROE5QVICHKIOUGCPFJVUH/", + "https://sourceware.org/bugzilla/show_bug.cgi?id=25204", + "https://usn.ubuntu.com/4416-1/" + ], + "description": "On the x86-64 architecture, the GNU C Library (aka glibc) before 2.31 fails to ignore the LD_PREFER_MAP_32BIT_EXEC environment variable during program execution after a security transition, allowing local attackers to restrict the possible mapping addresses for loaded libraries and thus bypass ASLR for a setuid program.", + "cvss": null + } + ], + "matchDetails": [ + { + "type": "exact-indirect-match", + "matcher": "dpkg-matcher", + "searchedBy": { + "distro": { + "type": "debian", + "version": "9" + }, + "namespace": "debian:distro:debian:9", + "package": { + "name": "glibc", + "version": "2.24-11+deb9u3" + } + }, + "found": { + "versionConstraint": "none (deb)", + "vulnerabilityID": "CVE-2019-19126" + } + } + ], + "artifact": { + "name": "libc6", + "version": "2.24-11+deb9u3", + "type": "deb", + "locations": null, + "language": "", + "licenses": [ + "GPL-2.0-only", + "LGPL-2.1-only" + ], + "cpes": [ + "cpe:2.3:a:libc6:libc6:2.24-11+deb9u3:*:*:*:*:*:*:*" + ], + "purl": "pkg:deb/debian/libc6@2.24-11+deb9u3?arch=amd64\u0026upstream=glibc\u0026distro=debian-9", + "upstreams": [ + { + "name": "glibc" + } + ], + "metadata": null + } + }, + { + "vulnerability": { + "id": "CVE-2019-19126", + "dataSource": "https://security-tracker.debian.org/tracker/CVE-2019-19126", + "namespace": "debian:distro:debian:9", + "severity": "Low", + "urls": [ + "https://security-tracker.debian.org/tracker/CVE-2019-19126" + ], + "description": "On the x86-64 architecture, the GNU C Library (aka glibc) before 2.31 fails to ignore the LD_PREFER_MAP_32BIT_EXEC environment variable during program execution after a security transition, allowing local attackers to restrict the possible mapping addresses for loaded libraries and thus bypass ASLR for a setuid program.", + "cvss": null, + "fix": { + "versions": [], + "state": "wont-fix" + }, + "advisories": null + }, + "relatedVulnerabilities": [ + { + "id": "CVE-2019-19126", + "dataSource": "https://nvd.nist.gov/vuln/detail/CVE-2019-19126", + "namespace": "nvd:cpe", + "severity": "Low", + "urls": [ + "https://lists.debian.org/debian-lts-announce/2022/10/msg00021.html", + "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/4FQ5LC6JOYSOYFPRUZ4S45KL6IP3RPPZ/", + "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/ZFJ5E7NWOL6ROE5QVICHKIOUGCPFJVUH/", + "https://sourceware.org/bugzilla/show_bug.cgi?id=25204", + "https://usn.ubuntu.com/4416-1/" + ], + "description": "On the x86-64 architecture, the GNU C Library (aka glibc) before 2.31 fails to ignore the LD_PREFER_MAP_32BIT_EXEC environment variable during program execution after a security transition, allowing local attackers to restrict the possible mapping addresses for loaded libraries and thus bypass ASLR for a setuid program.", + "cvss": null + } + ], + "matchDetails": [ + { + "type": "exact-indirect-match", + "matcher": "dpkg-matcher", + "searchedBy": { + "distro": { + "type": "debian", + "version": "9" + }, + "namespace": "debian:distro:debian:9", + "package": { + "name": "glibc", + "version": "2.24-11+deb9u3" + } + }, + "found": { + "versionConstraint": "none (deb)", + "vulnerabilityID": "CVE-2019-19126" + } + } + ], + "artifact": { + "name": "multiarch-support", + "version": "2.24-11+deb9u3", + "type": "deb", + "locations": null, + "language": "", + "licenses": [ + "GPL-2.0-only", + "LGPL-2.1-only" + ], + "cpes": [ + "cpe:2.3:a:multiarch-support:multiarch-support:2.24-11+deb9u3:*:*:*:*:*:*:*", + "cpe:2.3:a:multiarch-support:multiarch_support:2.24-11+deb9u3:*:*:*:*:*:*:*", + "cpe:2.3:a:multiarch_support:multiarch-support:2.24-11+deb9u3:*:*:*:*:*:*:*", + "cpe:2.3:a:multiarch_support:multiarch_support:2.24-11+deb9u3:*:*:*:*:*:*:*", + "cpe:2.3:a:multiarch:multiarch-support:2.24-11+deb9u3:*:*:*:*:*:*:*", + "cpe:2.3:a:multiarch:multiarch_support:2.24-11+deb9u3:*:*:*:*:*:*:*" + ], + "purl": "pkg:deb/debian/multiarch-support@2.24-11+deb9u3?arch=amd64\u0026upstream=glibc\u0026distro=debian-9", + "upstreams": [ + { + "name": "glibc" + } + ], + "metadata": null + } + }, + { + "vulnerability": { + "id": "CVE-2019-19882", + "dataSource": "https://security-tracker.debian.org/tracker/CVE-2019-19882", + "namespace": "debian:distro:debian:9", + "severity": "Negligible", + "urls": [ + "https://security-tracker.debian.org/tracker/CVE-2019-19882" + ], + "description": "shadow 4.8, in certain circumstances affecting at least Gentoo, Arch Linux, and Void Linux, allows local users to obtain root access because setuid programs are misconfigured. Specifically, this affects shadow 4.8 when compiled using --with-libpam but without explicitly passing --disable-account-tools-setuid, and without a PAM configuration suitable for use with setuid account management tools. This combination leads to account management tools (groupadd, groupdel, groupmod, useradd, userdel, usermod) that can easily be used by unprivileged local users to escalate privileges to root in multiple ways. This issue became much more relevant in approximately December 2019 when an unrelated bug was fixed (i.e., the chmod calls to suidusbins were fixed in the upstream Makefile which is now included in the release version 4.8).", + "cvss": null, + "fix": { + "versions": [], + "state": "not-fixed" + }, + "advisories": null + }, + "relatedVulnerabilities": [ + { + "id": "CVE-2019-19882", + "dataSource": "https://nvd.nist.gov/vuln/detail/CVE-2019-19882", + "namespace": "nvd:cpe", + "severity": "High", + "urls": [ + "https://bugs.archlinux.org/task/64836", + "https://bugs.gentoo.org/702252", + "https://github.com/shadow-maint/shadow/commit/edf7547ad5aa650be868cf2dac58944773c12d75", + "https://github.com/shadow-maint/shadow/pull/199", + "https://github.com/void-linux/void-packages/pull/17580", + "https://security.gentoo.org/glsa/202008-09" + ], + "description": "shadow 4.8, in certain circumstances affecting at least Gentoo, Arch Linux, and Void Linux, allows local users to obtain root access because setuid programs are misconfigured. Specifically, this affects shadow 4.8 when compiled using --with-libpam but without explicitly passing --disable-account-tools-setuid, and without a PAM configuration suitable for use with setuid account management tools. This combination leads to account management tools (groupadd, groupdel, groupmod, useradd, userdel, usermod) that can easily be used by unprivileged local users to escalate privileges to root in multiple ways. This issue became much more relevant in approximately December 2019 when an unrelated bug was fixed (i.e., the chmod calls to suidusbins were fixed in the upstream Makefile which is now included in the release version 4.8).", + "cvss": null + } + ], + "matchDetails": [ + { + "type": "exact-indirect-match", + "matcher": "dpkg-matcher", + "searchedBy": { + "distro": { + "type": "debian", + "version": "9" + }, + "namespace": "debian:distro:debian:9", + "package": { + "name": "shadow", + "version": "1:4.4-4.1" + } + }, + "found": { + "versionConstraint": "none (deb)", + "vulnerabilityID": "CVE-2019-19882" + } + } + ], + "artifact": { + "name": "login", + "version": "1:4.4-4.1", + "type": "deb", + "locations": null, + "language": "", + "licenses": [ + "GPL-2.0-only" + ], + "cpes": [ + "cpe:2.3:a:login:login:1:4.4-4.1:*:*:*:*:*:*:*" + ], + "purl": "pkg:deb/debian/login@1:4.4-4.1?arch=amd64\u0026upstream=shadow\u0026distro=debian-9", + "upstreams": [ + { + "name": "shadow" + } + ], + "metadata": null + } + }, + { + "vulnerability": { + "id": "CVE-2019-19882", + "dataSource": "https://security-tracker.debian.org/tracker/CVE-2019-19882", + "namespace": "debian:distro:debian:9", + "severity": "Negligible", + "urls": [ + "https://security-tracker.debian.org/tracker/CVE-2019-19882" + ], + "description": "shadow 4.8, in certain circumstances affecting at least Gentoo, Arch Linux, and Void Linux, allows local users to obtain root access because setuid programs are misconfigured. Specifically, this affects shadow 4.8 when compiled using --with-libpam but without explicitly passing --disable-account-tools-setuid, and without a PAM configuration suitable for use with setuid account management tools. This combination leads to account management tools (groupadd, groupdel, groupmod, useradd, userdel, usermod) that can easily be used by unprivileged local users to escalate privileges to root in multiple ways. This issue became much more relevant in approximately December 2019 when an unrelated bug was fixed (i.e., the chmod calls to suidusbins were fixed in the upstream Makefile which is now included in the release version 4.8).", + "cvss": null, + "fix": { + "versions": [], + "state": "not-fixed" + }, + "advisories": null + }, + "relatedVulnerabilities": [ + { + "id": "CVE-2019-19882", + "dataSource": "https://nvd.nist.gov/vuln/detail/CVE-2019-19882", + "namespace": "nvd:cpe", + "severity": "High", + "urls": [ + "https://bugs.archlinux.org/task/64836", + "https://bugs.gentoo.org/702252", + "https://github.com/shadow-maint/shadow/commit/edf7547ad5aa650be868cf2dac58944773c12d75", + "https://github.com/shadow-maint/shadow/pull/199", + "https://github.com/void-linux/void-packages/pull/17580", + "https://security.gentoo.org/glsa/202008-09" + ], + "description": "shadow 4.8, in certain circumstances affecting at least Gentoo, Arch Linux, and Void Linux, allows local users to obtain root access because setuid programs are misconfigured. Specifically, this affects shadow 4.8 when compiled using --with-libpam but without explicitly passing --disable-account-tools-setuid, and without a PAM configuration suitable for use with setuid account management tools. This combination leads to account management tools (groupadd, groupdel, groupmod, useradd, userdel, usermod) that can easily be used by unprivileged local users to escalate privileges to root in multiple ways. This issue became much more relevant in approximately December 2019 when an unrelated bug was fixed (i.e., the chmod calls to suidusbins were fixed in the upstream Makefile which is now included in the release version 4.8).", + "cvss": null + } + ], + "matchDetails": [ + { + "type": "exact-indirect-match", + "matcher": "dpkg-matcher", + "searchedBy": { + "distro": { + "type": "debian", + "version": "9" + }, + "namespace": "debian:distro:debian:9", + "package": { + "name": "shadow", + "version": "1:4.4-4.1" + } + }, + "found": { + "versionConstraint": "none (deb)", + "vulnerabilityID": "CVE-2019-19882" + } + } + ], + "artifact": { + "name": "passwd", + "version": "1:4.4-4.1", + "type": "deb", + "locations": null, + "language": "", + "licenses": [ + "GPL-2.0-only" + ], + "cpes": [ + "cpe:2.3:a:passwd:passwd:1:4.4-4.1:*:*:*:*:*:*:*" + ], + "purl": "pkg:deb/debian/passwd@1:4.4-4.1?arch=amd64\u0026upstream=shadow\u0026distro=debian-9", + "upstreams": [ + { + "name": "shadow" + } + ], + "metadata": null + } + }, + { + "vulnerability": { + "id": "CVE-2019-19956", + "dataSource": "https://security-tracker.debian.org/tracker/CVE-2019-19956", + "namespace": "debian:distro:debian:9", + "severity": "High", + "urls": [ + "https://security-tracker.debian.org/tracker/CVE-2019-19956" + ], + "description": "xmlParseBalancedChunkMemoryRecover in parser.c in libxml2 before 2.9.10 has a memory leak related to newDoc-\u003eoldNs.", + "cvss": null, + "fix": { + "versions": [ + "2.9.4+dfsg1-2.2+deb9u3" + ], + "state": "fixed" + }, + "advisories": null + }, + "relatedVulnerabilities": [ + { + "id": "CVE-2019-19956", + "dataSource": "https://nvd.nist.gov/vuln/detail/CVE-2019-19956", + "namespace": "nvd:cpe", + "severity": "High", + "urls": [ + "http://lists.opensuse.org/opensuse-security-announce/2020-05/msg00047.html", + "http://lists.opensuse.org/opensuse-security-announce/2020-06/msg00005.html", + "https://cert-portal.siemens.com/productcert/pdf/ssa-292794.pdf", + "https://gitlab.gnome.org/GNOME/libxml2/commit/5a02583c7e683896d84878bd90641d8d9b0d0549", + "https://lists.debian.org/debian-lts-announce/2019/12/msg00032.html", + "https://lists.debian.org/debian-lts-announce/2020/09/msg00009.html", + "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/5R55ZR52RMBX24TQTWHCIWKJVRV6YAWI/", + "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/JDPF3AAVKUAKDYFMFKSIQSVVS3EEFPQH/", + "https://security.netapp.com/advisory/ntap-20200114-0002/", + "https://us-cert.cisa.gov/ics/advisories/icsa-21-103-08", + "https://usn.ubuntu.com/4274-1/", + "https://www.oracle.com/security-alerts/cpujul2020.html" + ], + "description": "xmlParseBalancedChunkMemoryRecover in parser.c in libxml2 before 2.9.10 has a memory leak related to newDoc-\u003eoldNs.", + "cvss": null + } + ], + "matchDetails": [ + { + "type": "exact-direct-match", + "matcher": "dpkg-matcher", + "searchedBy": { + "distro": { + "type": "debian", + "version": "9" + }, + "namespace": "debian:distro:debian:9", + "package": { + "name": "libxml2", + "version": "2.9.4+dfsg1-2.2+deb9u2" + } + }, + "found": { + "versionConstraint": "\u003c 2.9.4+dfsg1-2.2+deb9u3 (deb)", + "vulnerabilityID": "CVE-2019-19956" + } + } + ], + "artifact": { + "name": "libxml2", + "version": "2.9.4+dfsg1-2.2+deb9u2", + "type": "deb", + "locations": null, + "language": "", + "licenses": [], + "cpes": [ + "cpe:2.3:a:libxml2:libxml2:2.9.4+dfsg1-2.2+deb9u2:*:*:*:*:*:*:*" + ], + "purl": "pkg:deb/debian/libxml2@2.9.4+dfsg1-2.2+deb9u2?arch=amd64\u0026distro=debian-9", + "upstreams": null, + "metadata": null + } + }, + { + "vulnerability": { + "id": "CVE-2019-20367", + "dataSource": "https://security-tracker.debian.org/tracker/CVE-2019-20367", + "namespace": "debian:distro:debian:9", + "severity": "Critical", + "urls": [ + "https://security-tracker.debian.org/tracker/CVE-2019-20367" + ], + "description": "nlist.c in libbsd before 0.10.0 has an out-of-bounds read during a comparison for a symbol name from the string table (strtab).", + "cvss": null, + "fix": { + "versions": [ + "0.8.3-1+deb9u1" + ], + "state": "fixed" + }, + "advisories": null + }, + "relatedVulnerabilities": [ + { + "id": "CVE-2019-20367", + "dataSource": "https://nvd.nist.gov/vuln/detail/CVE-2019-20367", + "namespace": "nvd:cpe", + "severity": "Critical", + "urls": [ + "http://lists.opensuse.org/opensuse-security-announce/2020-05/msg00043.html", + "https://gitlab.freedesktop.org/libbsd/libbsd/commit/9d917aad37778a9f4a96ba358415f077f3f36f3b", + "https://lists.apache.org/thread.html/r0e913668380f59bcbd14fdd8ae8d24f95f99995e290cd18a7822c6e5@%3Cdev.tomee.apache.org%3E", + "https://lists.apache.org/thread.html/ra781e51cf1ec40381c98cddc073b3576fb56c3978f4564d2fa431550@%3Cdev.tomee.apache.org%3E", + "https://lists.debian.org/debian-lts-announce/2021/02/msg00027.html", + "https://lists.freedesktop.org/archives/libbsd/2019-August/000229.html", + "https://usn.ubuntu.com/4243-1/" + ], + "description": "nlist.c in libbsd before 0.10.0 has an out-of-bounds read during a comparison for a symbol name from the string table (strtab).", + "cvss": null + } + ], + "matchDetails": [ + { + "type": "exact-indirect-match", + "matcher": "dpkg-matcher", + "searchedBy": { + "distro": { + "type": "debian", + "version": "9" + }, + "namespace": "debian:distro:debian:9", + "package": { + "name": "libbsd", + "version": "0.8.3-1" + } + }, + "found": { + "versionConstraint": "\u003c 0.8.3-1+deb9u1 (deb)", + "vulnerabilityID": "CVE-2019-20367" + } + } + ], + "artifact": { + "name": "libbsd0", + "version": "0.8.3-1", + "type": "deb", + "locations": null, + "language": "", + "licenses": [ + "BSD-2-Clause", + "BSD-2-Clause", + "LicenseRef-BSD-2-clause-author", + "LicenseRef-BSD-2-clause-verbatim", + "BSD-3-Clause", + "LicenseRef-BSD-3-clause-Peter-Wemm", + "LicenseRef-BSD-3-clause-Regents", + "LicenseRef-BSD-4-clause-Christopher-G-Demetriou", + "LicenseRef-BSD-4-clause-Niels-Provos", + "LicenseRef-BSD-5-clause-Peter-Wemm", + "Beerware", + "LicenseRef-Expat", + "ISC", + "LicenseRef-ISC-Original", + "LicenseRef-public-domain", + "LicenseRef-public-domain-Colin-Plumb" + ], + "cpes": [ + "cpe:2.3:a:libbsd0:libbsd0:0.8.3-1:*:*:*:*:*:*:*" + ], + "purl": "pkg:deb/debian/libbsd0@0.8.3-1?arch=amd64\u0026upstream=libbsd\u0026distro=debian-9", + "upstreams": [ + { + "name": "libbsd" + } + ], + "metadata": null + } + }, + { + "vulnerability": { + "id": "CVE-2019-20386", + "dataSource": "https://security-tracker.debian.org/tracker/CVE-2019-20386", + "namespace": "debian:distro:debian:9", + "severity": "Negligible", + "urls": [ + "https://security-tracker.debian.org/tracker/CVE-2019-20386" + ], + "description": "An issue was discovered in button_open in login/logind-button.c in systemd before 243. When executing the udevadm trigger command, a memory leak may occur.", + "cvss": null, + "fix": { + "versions": [], + "state": "not-fixed" + }, + "advisories": null + }, + "relatedVulnerabilities": [ + { + "id": "CVE-2019-20386", + "dataSource": "https://nvd.nist.gov/vuln/detail/CVE-2019-20386", + "namespace": "nvd:cpe", + "severity": "Low", + "urls": [ + "http://lists.opensuse.org/opensuse-security-announce/2020-02/msg00014.html", + "https://github.com/systemd/systemd/commit/b2774a3ae692113e1f47a336a6c09bac9cfb49ad", + "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/HZPCOMW5X6IZZXASCDD2CNW2DLF3YADC/", + "https://security.netapp.com/advisory/ntap-20200210-0002/", + "https://usn.ubuntu.com/4269-1/" + ], + "description": "An issue was discovered in button_open in login/logind-button.c in systemd before 243. When executing the udevadm trigger command, a memory leak may occur.", + "cvss": null + } + ], + "matchDetails": [ + { + "type": "exact-indirect-match", + "matcher": "dpkg-matcher", + "searchedBy": { + "distro": { + "type": "debian", + "version": "9" + }, + "namespace": "debian:distro:debian:9", + "package": { + "name": "systemd", + "version": "232-25+deb9u6" + } + }, + "found": { + "versionConstraint": "none (deb)", + "vulnerabilityID": "CVE-2019-20386" + } + } + ], + "artifact": { + "name": "libsystemd0", + "version": "232-25+deb9u6", + "type": "deb", + "locations": null, + "language": "", + "licenses": [ + "LicenseRef-CC0", + "LicenseRef-Expat", + "GPL-2.0-only", + "GPL-2.0-or-later", + "LGPL-2.1-only", + "LGPL-2.1-or-later", + "LicenseRef-public-domain" + ], + "cpes": [ + "cpe:2.3:a:libsystemd0:libsystemd0:232-25+deb9u6:*:*:*:*:*:*:*" + ], + "purl": "pkg:deb/debian/libsystemd0@232-25+deb9u6?arch=amd64\u0026upstream=systemd\u0026distro=debian-9", + "upstreams": [ + { + "name": "systemd" + } + ], + "metadata": null + } + }, + { + "vulnerability": { + "id": "CVE-2019-20386", + "dataSource": "https://security-tracker.debian.org/tracker/CVE-2019-20386", + "namespace": "debian:distro:debian:9", + "severity": "Negligible", + "urls": [ + "https://security-tracker.debian.org/tracker/CVE-2019-20386" + ], + "description": "An issue was discovered in button_open in login/logind-button.c in systemd before 243. When executing the udevadm trigger command, a memory leak may occur.", + "cvss": null, + "fix": { + "versions": [], + "state": "not-fixed" + }, + "advisories": null + }, + "relatedVulnerabilities": [ + { + "id": "CVE-2019-20386", + "dataSource": "https://nvd.nist.gov/vuln/detail/CVE-2019-20386", + "namespace": "nvd:cpe", + "severity": "Low", + "urls": [ + "http://lists.opensuse.org/opensuse-security-announce/2020-02/msg00014.html", + "https://github.com/systemd/systemd/commit/b2774a3ae692113e1f47a336a6c09bac9cfb49ad", + "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/HZPCOMW5X6IZZXASCDD2CNW2DLF3YADC/", + "https://security.netapp.com/advisory/ntap-20200210-0002/", + "https://usn.ubuntu.com/4269-1/" + ], + "description": "An issue was discovered in button_open in login/logind-button.c in systemd before 243. When executing the udevadm trigger command, a memory leak may occur.", + "cvss": null + } + ], + "matchDetails": [ + { + "type": "exact-indirect-match", + "matcher": "dpkg-matcher", + "searchedBy": { + "distro": { + "type": "debian", + "version": "9" + }, + "namespace": "debian:distro:debian:9", + "package": { + "name": "systemd", + "version": "232-25+deb9u6" + } + }, + "found": { + "versionConstraint": "none (deb)", + "vulnerabilityID": "CVE-2019-20386" + } + } + ], + "artifact": { + "name": "libudev1", + "version": "232-25+deb9u6", + "type": "deb", + "locations": null, + "language": "", + "licenses": [ + "LicenseRef-CC0", + "LicenseRef-Expat", + "GPL-2.0-only", + "GPL-2.0-or-later", + "LGPL-2.1-only", + "LGPL-2.1-or-later", + "LicenseRef-public-domain" + ], + "cpes": [ + "cpe:2.3:a:libudev1:libudev1:232-25+deb9u6:*:*:*:*:*:*:*" + ], + "purl": "pkg:deb/debian/libudev1@232-25+deb9u6?arch=amd64\u0026upstream=systemd\u0026distro=debian-9", + "upstreams": [ + { + "name": "systemd" + } + ], + "metadata": null + } + }, + { + "vulnerability": { + "id": "CVE-2019-20388", + "dataSource": "https://security-tracker.debian.org/tracker/CVE-2019-20388", + "namespace": "debian:distro:debian:9", + "severity": "High", + "urls": [ + "https://security-tracker.debian.org/tracker/CVE-2019-20388" + ], + "description": "xmlSchemaPreRun in xmlschemas.c in libxml2 2.9.10 allows an xmlSchemaValidateStream memory leak.", + "cvss": null, + "fix": { + "versions": [ + "2.9.4+dfsg1-2.2+deb9u3" + ], + "state": "fixed" + }, + "advisories": null + }, + "relatedVulnerabilities": [ + { + "id": "CVE-2019-20388", + "dataSource": "https://nvd.nist.gov/vuln/detail/CVE-2019-20388", + "namespace": "nvd:cpe", + "severity": "High", + "urls": [ + "http://lists.opensuse.org/opensuse-security-announce/2020-05/msg00047.html", + "https://gitlab.gnome.org/GNOME/libxml2/merge_requests/68", + "https://lists.debian.org/debian-lts-announce/2020/09/msg00009.html", + "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/545SPOI3ZPPNPX4TFRIVE4JVRTJRKULL/", + "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/5R55ZR52RMBX24TQTWHCIWKJVRV6YAWI/", + "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/JDPF3AAVKUAKDYFMFKSIQSVVS3EEFPQH/", + "https://security.gentoo.org/glsa/202010-04", + "https://security.netapp.com/advisory/ntap-20200702-0005/", + "https://www.oracle.com/security-alerts/cpuapr2022.html", + "https://www.oracle.com/security-alerts/cpujul2020.html", + "https://www.oracle.com/security-alerts/cpujul2022.html", + "https://www.oracle.com/security-alerts/cpuoct2021.html" + ], + "description": "xmlSchemaPreRun in xmlschemas.c in libxml2 2.9.10 allows an xmlSchemaValidateStream memory leak.", + "cvss": null + } + ], + "matchDetails": [ + { + "type": "exact-direct-match", + "matcher": "dpkg-matcher", + "searchedBy": { + "distro": { + "type": "debian", + "version": "9" + }, + "namespace": "debian:distro:debian:9", + "package": { + "name": "libxml2", + "version": "2.9.4+dfsg1-2.2+deb9u2" + } + }, + "found": { + "versionConstraint": "\u003c 2.9.4+dfsg1-2.2+deb9u3 (deb)", + "vulnerabilityID": "CVE-2019-20388" + } + } + ], + "artifact": { + "name": "libxml2", + "version": "2.9.4+dfsg1-2.2+deb9u2", + "type": "deb", + "locations": null, + "language": "", + "licenses": [], + "cpes": [ + "cpe:2.3:a:libxml2:libxml2:2.9.4+dfsg1-2.2+deb9u2:*:*:*:*:*:*:*" + ], + "purl": "pkg:deb/debian/libxml2@2.9.4+dfsg1-2.2+deb9u2?arch=amd64\u0026distro=debian-9", + "upstreams": null, + "metadata": null + } + }, + { + "vulnerability": { + "id": "CVE-2019-20838", + "dataSource": "https://security-tracker.debian.org/tracker/CVE-2019-20838", + "namespace": "debian:distro:debian:9", + "severity": "Negligible", + "urls": [ + "https://security-tracker.debian.org/tracker/CVE-2019-20838" + ], + "description": "libpcre in PCRE before 8.43 allows a subject buffer over-read in JIT when UTF is disabled, and \\X or \\R has more than one fixed quantifier, a related issue to CVE-2019-20454.", + "cvss": null, + "fix": { + "versions": [], + "state": "not-fixed" + }, + "advisories": null + }, + "relatedVulnerabilities": [ + { + "id": "CVE-2019-20838", + "dataSource": "https://nvd.nist.gov/vuln/detail/CVE-2019-20838", + "namespace": "nvd:cpe", + "severity": "High", + "urls": [ + "http://seclists.org/fulldisclosure/2020/Dec/32", + "http://seclists.org/fulldisclosure/2021/Feb/14", + "https://bugs.gentoo.org/717920", + "https://lists.apache.org/thread.html/rf9fa47ab66495c78bb4120b0754dd9531ca2ff0430f6685ac9b07772@%3Cdev.mina.apache.org%3E", + "https://support.apple.com/kb/HT211931", + "https://support.apple.com/kb/HT212147", + "https://www.pcre.org/original/changelog.txt" + ], + "description": "libpcre in PCRE before 8.43 allows a subject buffer over-read in JIT when UTF is disabled, and \\X or \\R has more than one fixed quantifier, a related issue to CVE-2019-20454.", + "cvss": null + } + ], + "matchDetails": [ + { + "type": "exact-indirect-match", + "matcher": "dpkg-matcher", + "searchedBy": { + "distro": { + "type": "debian", + "version": "9" + }, + "namespace": "debian:distro:debian:9", + "package": { + "name": "pcre3", + "version": "2:8.39-3" + } + }, + "found": { + "versionConstraint": "none (deb)", + "vulnerabilityID": "CVE-2019-20838" + } + } + ], + "artifact": { + "name": "libpcre3", + "version": "2:8.39-3", + "type": "deb", + "locations": null, + "language": "", + "licenses": [], + "cpes": [ + "cpe:2.3:a:libpcre3:libpcre3:2:8.39-3:*:*:*:*:*:*:*" + ], + "purl": "pkg:deb/debian/libpcre3@2:8.39-3?arch=amd64\u0026upstream=pcre3\u0026distro=debian-9", + "upstreams": [ + { + "name": "pcre3" + } + ], + "metadata": null + } + }, + { + "vulnerability": { + "id": "CVE-2019-2201", + "dataSource": "https://security-tracker.debian.org/tracker/CVE-2019-2201", + "namespace": "debian:distro:debian:9", + "severity": "High", + "urls": [ + "https://security-tracker.debian.org/tracker/CVE-2019-2201" + ], + "description": "In generate_jsimd_ycc_rgb_convert_neon of jsimd_arm64_neon.S, there is a possible out of bounds write due to a missing bounds check. This could lead to remote code execution in an unprivileged process with no additional execution privileges needed. User interaction is needed for exploitation.Product: AndroidVersions: Android-8.0 Android-8.1 Android-9 Android-10Android ID: A-120551338", + "cvss": null, + "fix": { + "versions": [ + "1:1.5.1-2+deb9u2" + ], + "state": "fixed" + }, + "advisories": null + }, + "relatedVulnerabilities": [ + { + "id": "CVE-2019-2201", + "dataSource": "https://nvd.nist.gov/vuln/detail/CVE-2019-2201", + "namespace": "nvd:cpe", + "severity": "High", + "urls": [ + "http://lists.opensuse.org/opensuse-security-announce/2019-11/msg00047.html", + "http://lists.opensuse.org/opensuse-security-announce/2019-11/msg00048.html", + "https://lists.apache.org/thread.html/rc800763a88775ac9abb83b3402bcd0913d41ac65fdfc759af38f2280@%3Ccommits.mxnet.apache.org%3E", + "https://lists.debian.org/debian-lts-announce/2022/05/msg00048.html", + "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/Y4QPASQPZO644STRFTLOD35RIRGWWRNI/", + "https://security.gentoo.org/glsa/202003-23", + "https://source.android.com/security/bulletin/2019-11-01", + "https://usn.ubuntu.com/4190-1/" + ], + "description": "In generate_jsimd_ycc_rgb_convert_neon of jsimd_arm64_neon.S, there is a possible out of bounds write due to a missing bounds check. This could lead to remote code execution in an unprivileged process with no additional execution privileges needed. User interaction is needed for exploitation.Product: AndroidVersions: Android-8.0 Android-8.1 Android-9 Android-10Android ID: A-120551338", + "cvss": null + } + ], + "matchDetails": [ + { + "type": "exact-indirect-match", + "matcher": "dpkg-matcher", + "searchedBy": { + "distro": { + "type": "debian", + "version": "9" + }, + "namespace": "debian:distro:debian:9", + "package": { + "name": "libjpeg-turbo", + "version": "1:1.5.1-2" + } + }, + "found": { + "versionConstraint": "\u003c 1:1.5.1-2+deb9u2 (deb)", + "vulnerabilityID": "CVE-2019-2201" + } + } + ], + "artifact": { + "name": "libjpeg62-turbo", + "version": "1:1.5.1-2", + "type": "deb", + "locations": null, + "language": "", + "licenses": [ + "LicenseRef-BSD-3", + "LicenseRef-BSD-BY-LC-NE", + "LicenseRef-Expat" + ], + "cpes": [ + "cpe:2.3:a:libjpeg62-turbo:libjpeg62-turbo:1:1.5.1-2:*:*:*:*:*:*:*", + "cpe:2.3:a:libjpeg62-turbo:libjpeg62_turbo:1:1.5.1-2:*:*:*:*:*:*:*", + "cpe:2.3:a:libjpeg62_turbo:libjpeg62-turbo:1:1.5.1-2:*:*:*:*:*:*:*", + "cpe:2.3:a:libjpeg62_turbo:libjpeg62_turbo:1:1.5.1-2:*:*:*:*:*:*:*", + "cpe:2.3:a:libjpeg62:libjpeg62-turbo:1:1.5.1-2:*:*:*:*:*:*:*", + "cpe:2.3:a:libjpeg62:libjpeg62_turbo:1:1.5.1-2:*:*:*:*:*:*:*" + ], + "purl": "pkg:deb/debian/libjpeg62-turbo@1:1.5.1-2?arch=amd64\u0026upstream=libjpeg-turbo\u0026distro=debian-9", + "upstreams": [ + { + "name": "libjpeg-turbo" + } + ], + "metadata": null + } + }, + { + "vulnerability": { + "id": "CVE-2019-25013", + "dataSource": "https://security-tracker.debian.org/tracker/CVE-2019-25013", + "namespace": "debian:distro:debian:9", + "severity": "Medium", + "urls": [ + "https://security-tracker.debian.org/tracker/CVE-2019-25013" + ], + "description": "The iconv feature in the GNU C Library (aka glibc or libc6) through 2.32, when processing invalid multi-byte input sequences in the EUC-KR encoding, may have a buffer over-read.", + "cvss": null, + "fix": { + "versions": [], + "state": "wont-fix" + }, + "advisories": null + }, + "relatedVulnerabilities": [ + { + "id": "CVE-2019-25013", + "dataSource": "https://nvd.nist.gov/vuln/detail/CVE-2019-25013", + "namespace": "nvd:cpe", + "severity": "Medium", + "urls": [ + "https://lists.apache.org/thread.html/r32d767ac804e9b8aad4355bb85960a6a1385eab7afff549a5e98660f@%3Cjira.kafka.apache.org%3E", + "https://lists.apache.org/thread.html/r448bb851cc8e6e3f93f3c28c70032b37062625d81214744474ac49e7@%3Cdev.kafka.apache.org%3E", + "https://lists.apache.org/thread.html/r4806a391091e082bdea17266452ca656ebc176e51bb3932733b3a0a2@%3Cjira.kafka.apache.org%3E", + "https://lists.apache.org/thread.html/r499e4f96d0b5109ef083f2feccd33c51650c1b7d7068aa3bd47efca9@%3Cjira.kafka.apache.org%3E", + "https://lists.apache.org/thread.html/r5af4430421bb6f9973294691a7904bbd260937e9eef96b20556f43ff@%3Cjira.kafka.apache.org%3E", + "https://lists.apache.org/thread.html/r750eee18542bc02bd8350861c424ee60a9b9b225568fa09436a37ece@%3Cissues.zookeeper.apache.org%3E", + "https://lists.apache.org/thread.html/r7a2e94adfe0a2f0a1d42e4927e8c32ecac97d37db9cb68095fe9ddbc@%3Cdev.zookeeper.apache.org%3E", + "https://lists.apache.org/thread.html/rd2354f9ccce41e494fbadcbc5ad87218de6ec0fff8a7b54c8462226c@%3Cissues.zookeeper.apache.org%3E", + "https://lists.apache.org/thread.html/rf9fa47ab66495c78bb4120b0754dd9531ca2ff0430f6685ac9b07772@%3Cdev.mina.apache.org%3E", + "https://lists.debian.org/debian-lts-announce/2022/10/msg00021.html", + "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/4Y6TX47P47KABSFOL26FLDNVCWXDKDEZ/", + "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/TVCUNLQ3HXGS4VPUQKWTJGRAW2KTFGXS/", + "https://security.gentoo.org/glsa/202107-07", + "https://security.netapp.com/advisory/ntap-20210205-0004/", + "https://sourceware.org/bugzilla/show_bug.cgi?id=24973", + "https://sourceware.org/git/?p=glibc.git;a=commit;h=ee7a3144c9922808181009b7b3e50e852fb4999b", + "https://www.oracle.com/security-alerts/cpuapr2022.html" + ], + "description": "The iconv feature in the GNU C Library (aka glibc or libc6) through 2.32, when processing invalid multi-byte input sequences in the EUC-KR encoding, may have a buffer over-read.", + "cvss": null + } + ], + "matchDetails": [ + { + "type": "exact-indirect-match", + "matcher": "dpkg-matcher", + "searchedBy": { + "distro": { + "type": "debian", + "version": "9" + }, + "namespace": "debian:distro:debian:9", + "package": { + "name": "glibc", + "version": "2.24-11+deb9u3" + } + }, + "found": { + "versionConstraint": "none (deb)", + "vulnerabilityID": "CVE-2019-25013" + } + } + ], + "artifact": { + "name": "libc-bin", + "version": "2.24-11+deb9u3", + "type": "deb", + "locations": null, + "language": "", + "licenses": [ + "GPL-2.0-only", + "LGPL-2.1-only" + ], + "cpes": [ + "cpe:2.3:a:libc-bin:libc-bin:2.24-11+deb9u3:*:*:*:*:*:*:*", + "cpe:2.3:a:libc-bin:libc_bin:2.24-11+deb9u3:*:*:*:*:*:*:*", + "cpe:2.3:a:libc_bin:libc-bin:2.24-11+deb9u3:*:*:*:*:*:*:*", + "cpe:2.3:a:libc_bin:libc_bin:2.24-11+deb9u3:*:*:*:*:*:*:*", + "cpe:2.3:a:libc:libc-bin:2.24-11+deb9u3:*:*:*:*:*:*:*", + "cpe:2.3:a:libc:libc_bin:2.24-11+deb9u3:*:*:*:*:*:*:*" + ], + "purl": "pkg:deb/debian/libc-bin@2.24-11+deb9u3?arch=amd64\u0026upstream=glibc\u0026distro=debian-9", + "upstreams": [ + { + "name": "glibc" + } + ], + "metadata": null + } + }, + { + "vulnerability": { + "id": "CVE-2019-25013", + "dataSource": "https://security-tracker.debian.org/tracker/CVE-2019-25013", + "namespace": "debian:distro:debian:9", + "severity": "Medium", + "urls": [ + "https://security-tracker.debian.org/tracker/CVE-2019-25013" + ], + "description": "The iconv feature in the GNU C Library (aka glibc or libc6) through 2.32, when processing invalid multi-byte input sequences in the EUC-KR encoding, may have a buffer over-read.", + "cvss": null, + "fix": { + "versions": [], + "state": "wont-fix" + }, + "advisories": null + }, + "relatedVulnerabilities": [ + { + "id": "CVE-2019-25013", + "dataSource": "https://nvd.nist.gov/vuln/detail/CVE-2019-25013", + "namespace": "nvd:cpe", + "severity": "Medium", + "urls": [ + "https://lists.apache.org/thread.html/r32d767ac804e9b8aad4355bb85960a6a1385eab7afff549a5e98660f@%3Cjira.kafka.apache.org%3E", + "https://lists.apache.org/thread.html/r448bb851cc8e6e3f93f3c28c70032b37062625d81214744474ac49e7@%3Cdev.kafka.apache.org%3E", + "https://lists.apache.org/thread.html/r4806a391091e082bdea17266452ca656ebc176e51bb3932733b3a0a2@%3Cjira.kafka.apache.org%3E", + "https://lists.apache.org/thread.html/r499e4f96d0b5109ef083f2feccd33c51650c1b7d7068aa3bd47efca9@%3Cjira.kafka.apache.org%3E", + "https://lists.apache.org/thread.html/r5af4430421bb6f9973294691a7904bbd260937e9eef96b20556f43ff@%3Cjira.kafka.apache.org%3E", + "https://lists.apache.org/thread.html/r750eee18542bc02bd8350861c424ee60a9b9b225568fa09436a37ece@%3Cissues.zookeeper.apache.org%3E", + "https://lists.apache.org/thread.html/r7a2e94adfe0a2f0a1d42e4927e8c32ecac97d37db9cb68095fe9ddbc@%3Cdev.zookeeper.apache.org%3E", + "https://lists.apache.org/thread.html/rd2354f9ccce41e494fbadcbc5ad87218de6ec0fff8a7b54c8462226c@%3Cissues.zookeeper.apache.org%3E", + "https://lists.apache.org/thread.html/rf9fa47ab66495c78bb4120b0754dd9531ca2ff0430f6685ac9b07772@%3Cdev.mina.apache.org%3E", + "https://lists.debian.org/debian-lts-announce/2022/10/msg00021.html", + "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/4Y6TX47P47KABSFOL26FLDNVCWXDKDEZ/", + "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/TVCUNLQ3HXGS4VPUQKWTJGRAW2KTFGXS/", + "https://security.gentoo.org/glsa/202107-07", + "https://security.netapp.com/advisory/ntap-20210205-0004/", + "https://sourceware.org/bugzilla/show_bug.cgi?id=24973", + "https://sourceware.org/git/?p=glibc.git;a=commit;h=ee7a3144c9922808181009b7b3e50e852fb4999b", + "https://www.oracle.com/security-alerts/cpuapr2022.html" + ], + "description": "The iconv feature in the GNU C Library (aka glibc or libc6) through 2.32, when processing invalid multi-byte input sequences in the EUC-KR encoding, may have a buffer over-read.", + "cvss": null + } + ], + "matchDetails": [ + { + "type": "exact-indirect-match", + "matcher": "dpkg-matcher", + "searchedBy": { + "distro": { + "type": "debian", + "version": "9" + }, + "namespace": "debian:distro:debian:9", + "package": { + "name": "glibc", + "version": "2.24-11+deb9u3" + } + }, + "found": { + "versionConstraint": "none (deb)", + "vulnerabilityID": "CVE-2019-25013" + } + } + ], + "artifact": { + "name": "libc6", + "version": "2.24-11+deb9u3", + "type": "deb", + "locations": null, + "language": "", + "licenses": [ + "GPL-2.0-only", + "LGPL-2.1-only" + ], + "cpes": [ + "cpe:2.3:a:libc6:libc6:2.24-11+deb9u3:*:*:*:*:*:*:*" + ], + "purl": "pkg:deb/debian/libc6@2.24-11+deb9u3?arch=amd64\u0026upstream=glibc\u0026distro=debian-9", + "upstreams": [ + { + "name": "glibc" + } + ], + "metadata": null + } + }, + { + "vulnerability": { + "id": "CVE-2019-25013", + "dataSource": "https://security-tracker.debian.org/tracker/CVE-2019-25013", + "namespace": "debian:distro:debian:9", + "severity": "Medium", + "urls": [ + "https://security-tracker.debian.org/tracker/CVE-2019-25013" + ], + "description": "The iconv feature in the GNU C Library (aka glibc or libc6) through 2.32, when processing invalid multi-byte input sequences in the EUC-KR encoding, may have a buffer over-read.", + "cvss": null, + "fix": { + "versions": [], + "state": "wont-fix" + }, + "advisories": null + }, + "relatedVulnerabilities": [ + { + "id": "CVE-2019-25013", + "dataSource": "https://nvd.nist.gov/vuln/detail/CVE-2019-25013", + "namespace": "nvd:cpe", + "severity": "Medium", + "urls": [ + "https://lists.apache.org/thread.html/r32d767ac804e9b8aad4355bb85960a6a1385eab7afff549a5e98660f@%3Cjira.kafka.apache.org%3E", + "https://lists.apache.org/thread.html/r448bb851cc8e6e3f93f3c28c70032b37062625d81214744474ac49e7@%3Cdev.kafka.apache.org%3E", + "https://lists.apache.org/thread.html/r4806a391091e082bdea17266452ca656ebc176e51bb3932733b3a0a2@%3Cjira.kafka.apache.org%3E", + "https://lists.apache.org/thread.html/r499e4f96d0b5109ef083f2feccd33c51650c1b7d7068aa3bd47efca9@%3Cjira.kafka.apache.org%3E", + "https://lists.apache.org/thread.html/r5af4430421bb6f9973294691a7904bbd260937e9eef96b20556f43ff@%3Cjira.kafka.apache.org%3E", + "https://lists.apache.org/thread.html/r750eee18542bc02bd8350861c424ee60a9b9b225568fa09436a37ece@%3Cissues.zookeeper.apache.org%3E", + "https://lists.apache.org/thread.html/r7a2e94adfe0a2f0a1d42e4927e8c32ecac97d37db9cb68095fe9ddbc@%3Cdev.zookeeper.apache.org%3E", + "https://lists.apache.org/thread.html/rd2354f9ccce41e494fbadcbc5ad87218de6ec0fff8a7b54c8462226c@%3Cissues.zookeeper.apache.org%3E", + "https://lists.apache.org/thread.html/rf9fa47ab66495c78bb4120b0754dd9531ca2ff0430f6685ac9b07772@%3Cdev.mina.apache.org%3E", + "https://lists.debian.org/debian-lts-announce/2022/10/msg00021.html", + "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/4Y6TX47P47KABSFOL26FLDNVCWXDKDEZ/", + "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/TVCUNLQ3HXGS4VPUQKWTJGRAW2KTFGXS/", + "https://security.gentoo.org/glsa/202107-07", + "https://security.netapp.com/advisory/ntap-20210205-0004/", + "https://sourceware.org/bugzilla/show_bug.cgi?id=24973", + "https://sourceware.org/git/?p=glibc.git;a=commit;h=ee7a3144c9922808181009b7b3e50e852fb4999b", + "https://www.oracle.com/security-alerts/cpuapr2022.html" + ], + "description": "The iconv feature in the GNU C Library (aka glibc or libc6) through 2.32, when processing invalid multi-byte input sequences in the EUC-KR encoding, may have a buffer over-read.", + "cvss": null + } + ], + "matchDetails": [ + { + "type": "exact-indirect-match", + "matcher": "dpkg-matcher", + "searchedBy": { + "distro": { + "type": "debian", + "version": "9" + }, + "namespace": "debian:distro:debian:9", + "package": { + "name": "glibc", + "version": "2.24-11+deb9u3" + } + }, + "found": { + "versionConstraint": "none (deb)", + "vulnerabilityID": "CVE-2019-25013" + } + } + ], + "artifact": { + "name": "multiarch-support", + "version": "2.24-11+deb9u3", + "type": "deb", + "locations": null, + "language": "", + "licenses": [ + "GPL-2.0-only", + "LGPL-2.1-only" + ], + "cpes": [ + "cpe:2.3:a:multiarch-support:multiarch-support:2.24-11+deb9u3:*:*:*:*:*:*:*", + "cpe:2.3:a:multiarch-support:multiarch_support:2.24-11+deb9u3:*:*:*:*:*:*:*", + "cpe:2.3:a:multiarch_support:multiarch-support:2.24-11+deb9u3:*:*:*:*:*:*:*", + "cpe:2.3:a:multiarch_support:multiarch_support:2.24-11+deb9u3:*:*:*:*:*:*:*", + "cpe:2.3:a:multiarch:multiarch-support:2.24-11+deb9u3:*:*:*:*:*:*:*", + "cpe:2.3:a:multiarch:multiarch_support:2.24-11+deb9u3:*:*:*:*:*:*:*" + ], + "purl": "pkg:deb/debian/multiarch-support@2.24-11+deb9u3?arch=amd64\u0026upstream=glibc\u0026distro=debian-9", + "upstreams": [ + { + "name": "glibc" + } + ], + "metadata": null + } + }, + { + "vulnerability": { + "id": "CVE-2019-3462", + "dataSource": "https://security-tracker.debian.org/tracker/CVE-2019-3462", + "namespace": "debian:distro:debian:9", + "severity": "High", + "urls": [ + "https://security-tracker.debian.org/tracker/CVE-2019-3462" + ], + "description": "Incorrect sanitation of the 302 redirect field in HTTP transport method of apt versions 1.4.8 and earlier can lead to content injection by a MITM attacker, potentially leading to remote code execution on the target machine.", + "cvss": null, + "fix": { + "versions": [ + "1.4.9" + ], + "state": "fixed" + }, + "advisories": [ + { + "id": "DSA-4371-1", + "link": "https://security-tracker.debian.org/tracker/DSA-4371-1" + } + ] + }, + "relatedVulnerabilities": [ + { + "id": "CVE-2019-3462", + "dataSource": "https://nvd.nist.gov/vuln/detail/CVE-2019-3462", + "namespace": "nvd:cpe", + "severity": "High", + "urls": [ + "http://www.securityfocus.com/bid/106690", + "https://lists.apache.org/thread.html/8338a0f605bdbb3a6098bb76f666a95fc2b2f53f37fa1ecc89f1146f@%3Cdevnull.infra.apache.org%3E", + "https://lists.debian.org/debian-lts-announce/2019/01/msg00013.html", + "https://lists.debian.org/debian-lts-announce/2019/01/msg00014.html", + "https://security.netapp.com/advisory/ntap-20190125-0002/", + "https://usn.ubuntu.com/3863-1/", + "https://usn.ubuntu.com/3863-2/", + "https://www.debian.org/security/2019/dsa-4371" + ], + "description": "Incorrect sanitation of the 302 redirect field in HTTP transport method of apt versions 1.4.8 and earlier can lead to content injection by a MITM attacker, potentially leading to remote code execution on the target machine.", + "cvss": null + } + ], + "matchDetails": [ + { + "type": "exact-direct-match", + "matcher": "dpkg-matcher", + "searchedBy": { + "distro": { + "type": "debian", + "version": "9" + }, + "namespace": "debian:distro:debian:9", + "package": { + "name": "apt", + "version": "1.4.8" + } + }, + "found": { + "versionConstraint": "\u003c 1.4.9 (deb)", + "vulnerabilityID": "CVE-2019-3462" + } + } + ], + "artifact": { + "name": "apt", + "version": "1.4.8", + "type": "deb", + "locations": null, + "language": "", + "licenses": [ + "GPL-2.0-only", + "LicenseRef-GPLv2-" + ], + "cpes": [ + "cpe:2.3:a:apt:apt:1.4.8:*:*:*:*:*:*:*" + ], + "purl": "pkg:deb/debian/apt@1.4.8?arch=amd64\u0026distro=debian-9", + "upstreams": null, + "metadata": null + } + }, + { + "vulnerability": { + "id": "CVE-2019-3462", + "dataSource": "https://security-tracker.debian.org/tracker/CVE-2019-3462", + "namespace": "debian:distro:debian:9", + "severity": "High", + "urls": [ + "https://security-tracker.debian.org/tracker/CVE-2019-3462" + ], + "description": "Incorrect sanitation of the 302 redirect field in HTTP transport method of apt versions 1.4.8 and earlier can lead to content injection by a MITM attacker, potentially leading to remote code execution on the target machine.", + "cvss": null, + "fix": { + "versions": [ + "1.4.9" + ], + "state": "fixed" + }, + "advisories": [ + { + "id": "DSA-4371-1", + "link": "https://security-tracker.debian.org/tracker/DSA-4371-1" + } + ] + }, + "relatedVulnerabilities": [ + { + "id": "CVE-2019-3462", + "dataSource": "https://nvd.nist.gov/vuln/detail/CVE-2019-3462", + "namespace": "nvd:cpe", + "severity": "High", + "urls": [ + "http://www.securityfocus.com/bid/106690", + "https://lists.apache.org/thread.html/8338a0f605bdbb3a6098bb76f666a95fc2b2f53f37fa1ecc89f1146f@%3Cdevnull.infra.apache.org%3E", + "https://lists.debian.org/debian-lts-announce/2019/01/msg00013.html", + "https://lists.debian.org/debian-lts-announce/2019/01/msg00014.html", + "https://security.netapp.com/advisory/ntap-20190125-0002/", + "https://usn.ubuntu.com/3863-1/", + "https://usn.ubuntu.com/3863-2/", + "https://www.debian.org/security/2019/dsa-4371" + ], + "description": "Incorrect sanitation of the 302 redirect field in HTTP transport method of apt versions 1.4.8 and earlier can lead to content injection by a MITM attacker, potentially leading to remote code execution on the target machine.", + "cvss": null + } + ], + "matchDetails": [ + { + "type": "exact-indirect-match", + "matcher": "dpkg-matcher", + "searchedBy": { + "distro": { + "type": "debian", + "version": "9" + }, + "namespace": "debian:distro:debian:9", + "package": { + "name": "apt", + "version": "1.4.8" + } + }, + "found": { + "versionConstraint": "\u003c 1.4.9 (deb)", + "vulnerabilityID": "CVE-2019-3462" + } + } + ], + "artifact": { + "name": "libapt-pkg5.0", + "version": "1.4.8", + "type": "deb", + "locations": null, + "language": "", + "licenses": [ + "GPL-2.0-only", + "LicenseRef-GPLv2-" + ], + "cpes": [ + "cpe:2.3:a:libapt-pkg5.0:libapt-pkg5.0:1.4.8:*:*:*:*:*:*:*", + "cpe:2.3:a:libapt-pkg5.0:libapt_pkg5.0:1.4.8:*:*:*:*:*:*:*", + "cpe:2.3:a:libapt_pkg5.0:libapt-pkg5.0:1.4.8:*:*:*:*:*:*:*", + "cpe:2.3:a:libapt_pkg5.0:libapt_pkg5.0:1.4.8:*:*:*:*:*:*:*", + "cpe:2.3:a:libapt:libapt-pkg5.0:1.4.8:*:*:*:*:*:*:*", + "cpe:2.3:a:libapt:libapt_pkg5.0:1.4.8:*:*:*:*:*:*:*" + ], + "purl": "pkg:deb/debian/libapt-pkg5.0@1.4.8?arch=amd64\u0026upstream=apt\u0026distro=debian-9", + "upstreams": [ + { + "name": "apt" + } + ], + "metadata": null + } + }, + { + "vulnerability": { + "id": "CVE-2019-3815", + "dataSource": "https://security-tracker.debian.org/tracker/CVE-2019-3815", + "namespace": "debian:distro:debian:9", + "severity": "Low", + "urls": [ + "https://security-tracker.debian.org/tracker/CVE-2019-3815" + ], + "description": "A memory leak was discovered in the backport of fixes for CVE-2018-16864 in Red Hat Enterprise Linux. Function dispatch_message_real() in journald-server.c does not free the memory allocated by set_iovec_field_free() to store the `_CMDLINE=` entry. A local attacker may use this flaw to make systemd-journald crash. This issue only affects versions shipped with Red Hat Enterprise since v219-62.2.", + "cvss": null, + "fix": { + "versions": [ + "232-25+deb9u8" + ], + "state": "fixed" + }, + "advisories": null + }, + "relatedVulnerabilities": [ + { + "id": "CVE-2019-3815", + "dataSource": "https://nvd.nist.gov/vuln/detail/CVE-2019-3815", + "namespace": "nvd:cpe", + "severity": "Low", + "urls": [ + "http://www.securityfocus.com/bid/106632", + "https://access.redhat.com/errata/RHBA-2019:0327", + "https://access.redhat.com/errata/RHSA-2019:0201", + "https://bugzilla.redhat.com/show_bug.cgi?id=CVE-2019-3815", + "https://lists.debian.org/debian-lts-announce/2019/03/msg00013.html" + ], + "description": "A memory leak was discovered in the backport of fixes for CVE-2018-16864 in Red Hat Enterprise Linux. Function dispatch_message_real() in journald-server.c does not free the memory allocated by set_iovec_field_free() to store the `_CMDLINE=` entry. A local attacker may use this flaw to make systemd-journald crash. This issue only affects versions shipped with Red Hat Enterprise since v219-62.2.", + "cvss": null + } + ], + "matchDetails": [ + { + "type": "exact-indirect-match", + "matcher": "dpkg-matcher", + "searchedBy": { + "distro": { + "type": "debian", + "version": "9" + }, + "namespace": "debian:distro:debian:9", + "package": { + "name": "systemd", + "version": "232-25+deb9u6" + } + }, + "found": { + "versionConstraint": "\u003c 232-25+deb9u8 (deb)", + "vulnerabilityID": "CVE-2019-3815" + } + } + ], + "artifact": { + "name": "libsystemd0", + "version": "232-25+deb9u6", + "type": "deb", + "locations": null, + "language": "", + "licenses": [ + "LicenseRef-CC0", + "LicenseRef-Expat", + "GPL-2.0-only", + "GPL-2.0-or-later", + "LGPL-2.1-only", + "LGPL-2.1-or-later", + "LicenseRef-public-domain" + ], + "cpes": [ + "cpe:2.3:a:libsystemd0:libsystemd0:232-25+deb9u6:*:*:*:*:*:*:*" + ], + "purl": "pkg:deb/debian/libsystemd0@232-25+deb9u6?arch=amd64\u0026upstream=systemd\u0026distro=debian-9", + "upstreams": [ + { + "name": "systemd" + } + ], + "metadata": null + } + }, + { + "vulnerability": { + "id": "CVE-2019-3815", + "dataSource": "https://security-tracker.debian.org/tracker/CVE-2019-3815", + "namespace": "debian:distro:debian:9", + "severity": "Low", + "urls": [ + "https://security-tracker.debian.org/tracker/CVE-2019-3815" + ], + "description": "A memory leak was discovered in the backport of fixes for CVE-2018-16864 in Red Hat Enterprise Linux. Function dispatch_message_real() in journald-server.c does not free the memory allocated by set_iovec_field_free() to store the `_CMDLINE=` entry. A local attacker may use this flaw to make systemd-journald crash. This issue only affects versions shipped with Red Hat Enterprise since v219-62.2.", + "cvss": null, + "fix": { + "versions": [ + "232-25+deb9u8" + ], + "state": "fixed" + }, + "advisories": null + }, + "relatedVulnerabilities": [ + { + "id": "CVE-2019-3815", + "dataSource": "https://nvd.nist.gov/vuln/detail/CVE-2019-3815", + "namespace": "nvd:cpe", + "severity": "Low", + "urls": [ + "http://www.securityfocus.com/bid/106632", + "https://access.redhat.com/errata/RHBA-2019:0327", + "https://access.redhat.com/errata/RHSA-2019:0201", + "https://bugzilla.redhat.com/show_bug.cgi?id=CVE-2019-3815", + "https://lists.debian.org/debian-lts-announce/2019/03/msg00013.html" + ], + "description": "A memory leak was discovered in the backport of fixes for CVE-2018-16864 in Red Hat Enterprise Linux. Function dispatch_message_real() in journald-server.c does not free the memory allocated by set_iovec_field_free() to store the `_CMDLINE=` entry. A local attacker may use this flaw to make systemd-journald crash. This issue only affects versions shipped with Red Hat Enterprise since v219-62.2.", + "cvss": null + } + ], + "matchDetails": [ + { + "type": "exact-indirect-match", + "matcher": "dpkg-matcher", + "searchedBy": { + "distro": { + "type": "debian", + "version": "9" + }, + "namespace": "debian:distro:debian:9", + "package": { + "name": "systemd", + "version": "232-25+deb9u6" + } + }, + "found": { + "versionConstraint": "\u003c 232-25+deb9u8 (deb)", + "vulnerabilityID": "CVE-2019-3815" + } + } + ], + "artifact": { + "name": "libudev1", + "version": "232-25+deb9u6", + "type": "deb", + "locations": null, + "language": "", + "licenses": [ + "LicenseRef-CC0", + "LicenseRef-Expat", + "GPL-2.0-only", + "GPL-2.0-or-later", + "LGPL-2.1-only", + "LGPL-2.1-or-later", + "LicenseRef-public-domain" + ], + "cpes": [ + "cpe:2.3:a:libudev1:libudev1:232-25+deb9u6:*:*:*:*:*:*:*" + ], + "purl": "pkg:deb/debian/libudev1@232-25+deb9u6?arch=amd64\u0026upstream=systemd\u0026distro=debian-9", + "upstreams": [ + { + "name": "systemd" + } + ], + "metadata": null + } + }, + { + "vulnerability": { + "id": "CVE-2019-3842", + "dataSource": "https://security-tracker.debian.org/tracker/CVE-2019-3842", + "namespace": "debian:distro:debian:9", + "severity": "High", + "urls": [ + "https://security-tracker.debian.org/tracker/CVE-2019-3842" + ], + "description": "In systemd before v242-rc4, it was discovered that pam_systemd does not properly sanitize the environment before using the XDG_SEAT variable. It is possible for an attacker, in some particular configurations, to set a XDG_SEAT environment variable which allows for commands to be checked against polkit policies using the \"allow_active\" element rather than \"allow_any\".", + "cvss": null, + "fix": { + "versions": [ + "232-25+deb9u11" + ], + "state": "fixed" + }, + "advisories": [ + { + "id": "DSA-4428-1", + "link": "https://security-tracker.debian.org/tracker/DSA-4428-1" + } + ] + }, + "relatedVulnerabilities": [ + { + "id": "CVE-2019-3842", + "dataSource": "https://nvd.nist.gov/vuln/detail/CVE-2019-3842", + "namespace": "nvd:cpe", + "severity": "High", + "urls": [ + "http://lists.opensuse.org/opensuse-security-announce/2019-05/msg00062.html", + "http://packetstormsecurity.com/files/152610/systemd-Seat-Verification-Active-Session-Spoofing.html", + "https://bugzilla.redhat.com/show_bug.cgi?id=CVE-2019-3842", + "https://lists.apache.org/thread.html/r58af02e294bd07f487e2c64ffc0a29b837db5600e33b6e698b9d696b@%3Cissues.bookkeeper.apache.org%3E", + "https://lists.apache.org/thread.html/rf4c02775860db415b4955778a131c2795223f61cb8c6a450893651e4@%3Cissues.bookkeeper.apache.org%3E", + "https://lists.debian.org/debian-lts-announce/2019/04/msg00022.html", + "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/STR36RJE4ZZIORMDXRERVBHMPRNRTHAC/", + "https://www.exploit-db.com/exploits/46743/" + ], + "description": "In systemd before v242-rc4, it was discovered that pam_systemd does not properly sanitize the environment before using the XDG_SEAT variable. It is possible for an attacker, in some particular configurations, to set a XDG_SEAT environment variable which allows for commands to be checked against polkit policies using the \"allow_active\" element rather than \"allow_any\".", + "cvss": null + } + ], + "matchDetails": [ + { + "type": "exact-indirect-match", + "matcher": "dpkg-matcher", + "searchedBy": { + "distro": { + "type": "debian", + "version": "9" + }, + "namespace": "debian:distro:debian:9", + "package": { + "name": "systemd", + "version": "232-25+deb9u6" + } + }, + "found": { + "versionConstraint": "\u003c 232-25+deb9u11 (deb)", + "vulnerabilityID": "CVE-2019-3842" + } + } + ], + "artifact": { + "name": "libsystemd0", + "version": "232-25+deb9u6", + "type": "deb", + "locations": null, + "language": "", + "licenses": [ + "LicenseRef-CC0", + "LicenseRef-Expat", + "GPL-2.0-only", + "GPL-2.0-or-later", + "LGPL-2.1-only", + "LGPL-2.1-or-later", + "LicenseRef-public-domain" + ], + "cpes": [ + "cpe:2.3:a:libsystemd0:libsystemd0:232-25+deb9u6:*:*:*:*:*:*:*" + ], + "purl": "pkg:deb/debian/libsystemd0@232-25+deb9u6?arch=amd64\u0026upstream=systemd\u0026distro=debian-9", + "upstreams": [ + { + "name": "systemd" + } + ], + "metadata": null + } + }, + { + "vulnerability": { + "id": "CVE-2019-3842", + "dataSource": "https://security-tracker.debian.org/tracker/CVE-2019-3842", + "namespace": "debian:distro:debian:9", + "severity": "High", + "urls": [ + "https://security-tracker.debian.org/tracker/CVE-2019-3842" + ], + "description": "In systemd before v242-rc4, it was discovered that pam_systemd does not properly sanitize the environment before using the XDG_SEAT variable. It is possible for an attacker, in some particular configurations, to set a XDG_SEAT environment variable which allows for commands to be checked against polkit policies using the \"allow_active\" element rather than \"allow_any\".", + "cvss": null, + "fix": { + "versions": [ + "232-25+deb9u11" + ], + "state": "fixed" + }, + "advisories": [ + { + "id": "DSA-4428-1", + "link": "https://security-tracker.debian.org/tracker/DSA-4428-1" + } + ] + }, + "relatedVulnerabilities": [ + { + "id": "CVE-2019-3842", + "dataSource": "https://nvd.nist.gov/vuln/detail/CVE-2019-3842", + "namespace": "nvd:cpe", + "severity": "High", + "urls": [ + "http://lists.opensuse.org/opensuse-security-announce/2019-05/msg00062.html", + "http://packetstormsecurity.com/files/152610/systemd-Seat-Verification-Active-Session-Spoofing.html", + "https://bugzilla.redhat.com/show_bug.cgi?id=CVE-2019-3842", + "https://lists.apache.org/thread.html/r58af02e294bd07f487e2c64ffc0a29b837db5600e33b6e698b9d696b@%3Cissues.bookkeeper.apache.org%3E", + "https://lists.apache.org/thread.html/rf4c02775860db415b4955778a131c2795223f61cb8c6a450893651e4@%3Cissues.bookkeeper.apache.org%3E", + "https://lists.debian.org/debian-lts-announce/2019/04/msg00022.html", + "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/STR36RJE4ZZIORMDXRERVBHMPRNRTHAC/", + "https://www.exploit-db.com/exploits/46743/" + ], + "description": "In systemd before v242-rc4, it was discovered that pam_systemd does not properly sanitize the environment before using the XDG_SEAT variable. It is possible for an attacker, in some particular configurations, to set a XDG_SEAT environment variable which allows for commands to be checked against polkit policies using the \"allow_active\" element rather than \"allow_any\".", + "cvss": null + } + ], + "matchDetails": [ + { + "type": "exact-indirect-match", + "matcher": "dpkg-matcher", + "searchedBy": { + "distro": { + "type": "debian", + "version": "9" + }, + "namespace": "debian:distro:debian:9", + "package": { + "name": "systemd", + "version": "232-25+deb9u6" + } + }, + "found": { + "versionConstraint": "\u003c 232-25+deb9u11 (deb)", + "vulnerabilityID": "CVE-2019-3842" + } + } + ], + "artifact": { + "name": "libudev1", + "version": "232-25+deb9u6", + "type": "deb", + "locations": null, + "language": "", + "licenses": [ + "LicenseRef-CC0", + "LicenseRef-Expat", + "GPL-2.0-only", + "GPL-2.0-or-later", + "LGPL-2.1-only", + "LGPL-2.1-or-later", + "LicenseRef-public-domain" + ], + "cpes": [ + "cpe:2.3:a:libudev1:libudev1:232-25+deb9u6:*:*:*:*:*:*:*" + ], + "purl": "pkg:deb/debian/libudev1@232-25+deb9u6?arch=amd64\u0026upstream=systemd\u0026distro=debian-9", + "upstreams": [ + { + "name": "systemd" + } + ], + "metadata": null + } + }, + { + "vulnerability": { + "id": "CVE-2019-3843", + "dataSource": "https://security-tracker.debian.org/tracker/CVE-2019-3843", + "namespace": "debian:distro:debian:9", + "severity": "High", + "urls": [ + "https://security-tracker.debian.org/tracker/CVE-2019-3843" + ], + "description": "It was discovered that a systemd service that uses DynamicUser property can create a SUID/SGID binary that would be allowed to run as the transient service UID/GID even after the service is terminated. A local attacker may use this flaw to access resources that will be owned by a potentially different service in the future, when the UID/GID will be recycled.", + "cvss": null, + "fix": { + "versions": [], + "state": "wont-fix" + }, + "advisories": null + }, + "relatedVulnerabilities": [ + { + "id": "CVE-2019-3843", + "dataSource": "https://nvd.nist.gov/vuln/detail/CVE-2019-3843", + "namespace": "nvd:cpe", + "severity": "High", + "urls": [ + "http://www.securityfocus.com/bid/108116", + "https://bugzilla.redhat.com/show_bug.cgi?id=CVE-2019-3843", + "https://lists.apache.org/thread.html/r58af02e294bd07f487e2c64ffc0a29b837db5600e33b6e698b9d696b@%3Cissues.bookkeeper.apache.org%3E", + "https://lists.apache.org/thread.html/rf4c02775860db415b4955778a131c2795223f61cb8c6a450893651e4@%3Cissues.bookkeeper.apache.org%3E", + "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/5JXQAKSTMABZ46EVCRMW62DHWYHTTFES/", + "https://security.netapp.com/advisory/ntap-20190619-0002/", + "https://usn.ubuntu.com/4269-1/" + ], + "description": "It was discovered that a systemd service that uses DynamicUser property can create a SUID/SGID binary that would be allowed to run as the transient service UID/GID even after the service is terminated. A local attacker may use this flaw to access resources that will be owned by a potentially different service in the future, when the UID/GID will be recycled.", + "cvss": null + } + ], + "matchDetails": [ + { + "type": "exact-indirect-match", + "matcher": "dpkg-matcher", + "searchedBy": { + "distro": { + "type": "debian", + "version": "9" + }, + "namespace": "debian:distro:debian:9", + "package": { + "name": "systemd", + "version": "232-25+deb9u6" + } + }, + "found": { + "versionConstraint": "none (deb)", + "vulnerabilityID": "CVE-2019-3843" + } + } + ], + "artifact": { + "name": "libsystemd0", + "version": "232-25+deb9u6", + "type": "deb", + "locations": null, + "language": "", + "licenses": [ + "LicenseRef-CC0", + "LicenseRef-Expat", + "GPL-2.0-only", + "GPL-2.0-or-later", + "LGPL-2.1-only", + "LGPL-2.1-or-later", + "LicenseRef-public-domain" + ], + "cpes": [ + "cpe:2.3:a:libsystemd0:libsystemd0:232-25+deb9u6:*:*:*:*:*:*:*" + ], + "purl": "pkg:deb/debian/libsystemd0@232-25+deb9u6?arch=amd64\u0026upstream=systemd\u0026distro=debian-9", + "upstreams": [ + { + "name": "systemd" + } + ], + "metadata": null + } + }, + { + "vulnerability": { + "id": "CVE-2019-3843", + "dataSource": "https://security-tracker.debian.org/tracker/CVE-2019-3843", + "namespace": "debian:distro:debian:9", + "severity": "High", + "urls": [ + "https://security-tracker.debian.org/tracker/CVE-2019-3843" + ], + "description": "It was discovered that a systemd service that uses DynamicUser property can create a SUID/SGID binary that would be allowed to run as the transient service UID/GID even after the service is terminated. A local attacker may use this flaw to access resources that will be owned by a potentially different service in the future, when the UID/GID will be recycled.", + "cvss": null, + "fix": { + "versions": [], + "state": "wont-fix" + }, + "advisories": null + }, + "relatedVulnerabilities": [ + { + "id": "CVE-2019-3843", + "dataSource": "https://nvd.nist.gov/vuln/detail/CVE-2019-3843", + "namespace": "nvd:cpe", + "severity": "High", + "urls": [ + "http://www.securityfocus.com/bid/108116", + "https://bugzilla.redhat.com/show_bug.cgi?id=CVE-2019-3843", + "https://lists.apache.org/thread.html/r58af02e294bd07f487e2c64ffc0a29b837db5600e33b6e698b9d696b@%3Cissues.bookkeeper.apache.org%3E", + "https://lists.apache.org/thread.html/rf4c02775860db415b4955778a131c2795223f61cb8c6a450893651e4@%3Cissues.bookkeeper.apache.org%3E", + "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/5JXQAKSTMABZ46EVCRMW62DHWYHTTFES/", + "https://security.netapp.com/advisory/ntap-20190619-0002/", + "https://usn.ubuntu.com/4269-1/" + ], + "description": "It was discovered that a systemd service that uses DynamicUser property can create a SUID/SGID binary that would be allowed to run as the transient service UID/GID even after the service is terminated. A local attacker may use this flaw to access resources that will be owned by a potentially different service in the future, when the UID/GID will be recycled.", + "cvss": null + } + ], + "matchDetails": [ + { + "type": "exact-indirect-match", + "matcher": "dpkg-matcher", + "searchedBy": { + "distro": { + "type": "debian", + "version": "9" + }, + "namespace": "debian:distro:debian:9", + "package": { + "name": "systemd", + "version": "232-25+deb9u6" + } + }, + "found": { + "versionConstraint": "none (deb)", + "vulnerabilityID": "CVE-2019-3843" + } + } + ], + "artifact": { + "name": "libudev1", + "version": "232-25+deb9u6", + "type": "deb", + "locations": null, + "language": "", + "licenses": [ + "LicenseRef-CC0", + "LicenseRef-Expat", + "GPL-2.0-only", + "GPL-2.0-or-later", + "LGPL-2.1-only", + "LGPL-2.1-or-later", + "LicenseRef-public-domain" + ], + "cpes": [ + "cpe:2.3:a:libudev1:libudev1:232-25+deb9u6:*:*:*:*:*:*:*" + ], + "purl": "pkg:deb/debian/libudev1@232-25+deb9u6?arch=amd64\u0026upstream=systemd\u0026distro=debian-9", + "upstreams": [ + { + "name": "systemd" + } + ], + "metadata": null + } + }, + { + "vulnerability": { + "id": "CVE-2019-3844", + "dataSource": "https://security-tracker.debian.org/tracker/CVE-2019-3844", + "namespace": "debian:distro:debian:9", + "severity": "High", + "urls": [ + "https://security-tracker.debian.org/tracker/CVE-2019-3844" + ], + "description": "It was discovered that a systemd service that uses DynamicUser property can get new privileges through the execution of SUID binaries, which would allow to create binaries owned by the service transient group with the setgid bit set. A local attacker may use this flaw to access resources that will be owned by a potentially different service in the future, when the GID will be recycled.", + "cvss": null, + "fix": { + "versions": [], + "state": "wont-fix" + }, + "advisories": null + }, + "relatedVulnerabilities": [ + { + "id": "CVE-2019-3844", + "dataSource": "https://nvd.nist.gov/vuln/detail/CVE-2019-3844", + "namespace": "nvd:cpe", + "severity": "High", + "urls": [ + "http://www.securityfocus.com/bid/108096", + "https://bugzilla.redhat.com/show_bug.cgi?id=CVE-2019-3844", + "https://lists.apache.org/thread.html/r58af02e294bd07f487e2c64ffc0a29b837db5600e33b6e698b9d696b@%3Cissues.bookkeeper.apache.org%3E", + "https://lists.apache.org/thread.html/rf4c02775860db415b4955778a131c2795223f61cb8c6a450893651e4@%3Cissues.bookkeeper.apache.org%3E", + "https://security.netapp.com/advisory/ntap-20190619-0002/", + "https://usn.ubuntu.com/4269-1/" + ], + "description": "It was discovered that a systemd service that uses DynamicUser property can get new privileges through the execution of SUID binaries, which would allow to create binaries owned by the service transient group with the setgid bit set. A local attacker may use this flaw to access resources that will be owned by a potentially different service in the future, when the GID will be recycled.", + "cvss": null + } + ], + "matchDetails": [ + { + "type": "exact-indirect-match", + "matcher": "dpkg-matcher", + "searchedBy": { + "distro": { + "type": "debian", + "version": "9" + }, + "namespace": "debian:distro:debian:9", + "package": { + "name": "systemd", + "version": "232-25+deb9u6" + } + }, + "found": { + "versionConstraint": "none (deb)", + "vulnerabilityID": "CVE-2019-3844" + } + } + ], + "artifact": { + "name": "libsystemd0", + "version": "232-25+deb9u6", + "type": "deb", + "locations": null, + "language": "", + "licenses": [ + "LicenseRef-CC0", + "LicenseRef-Expat", + "GPL-2.0-only", + "GPL-2.0-or-later", + "LGPL-2.1-only", + "LGPL-2.1-or-later", + "LicenseRef-public-domain" + ], + "cpes": [ + "cpe:2.3:a:libsystemd0:libsystemd0:232-25+deb9u6:*:*:*:*:*:*:*" + ], + "purl": "pkg:deb/debian/libsystemd0@232-25+deb9u6?arch=amd64\u0026upstream=systemd\u0026distro=debian-9", + "upstreams": [ + { + "name": "systemd" + } + ], + "metadata": null + } + }, + { + "vulnerability": { + "id": "CVE-2019-3844", + "dataSource": "https://security-tracker.debian.org/tracker/CVE-2019-3844", + "namespace": "debian:distro:debian:9", + "severity": "High", + "urls": [ + "https://security-tracker.debian.org/tracker/CVE-2019-3844" + ], + "description": "It was discovered that a systemd service that uses DynamicUser property can get new privileges through the execution of SUID binaries, which would allow to create binaries owned by the service transient group with the setgid bit set. A local attacker may use this flaw to access resources that will be owned by a potentially different service in the future, when the GID will be recycled.", + "cvss": null, + "fix": { + "versions": [], + "state": "wont-fix" + }, + "advisories": null + }, + "relatedVulnerabilities": [ + { + "id": "CVE-2019-3844", + "dataSource": "https://nvd.nist.gov/vuln/detail/CVE-2019-3844", + "namespace": "nvd:cpe", + "severity": "High", + "urls": [ + "http://www.securityfocus.com/bid/108096", + "https://bugzilla.redhat.com/show_bug.cgi?id=CVE-2019-3844", + "https://lists.apache.org/thread.html/r58af02e294bd07f487e2c64ffc0a29b837db5600e33b6e698b9d696b@%3Cissues.bookkeeper.apache.org%3E", + "https://lists.apache.org/thread.html/rf4c02775860db415b4955778a131c2795223f61cb8c6a450893651e4@%3Cissues.bookkeeper.apache.org%3E", + "https://security.netapp.com/advisory/ntap-20190619-0002/", + "https://usn.ubuntu.com/4269-1/" + ], + "description": "It was discovered that a systemd service that uses DynamicUser property can get new privileges through the execution of SUID binaries, which would allow to create binaries owned by the service transient group with the setgid bit set. A local attacker may use this flaw to access resources that will be owned by a potentially different service in the future, when the GID will be recycled.", + "cvss": null + } + ], + "matchDetails": [ + { + "type": "exact-indirect-match", + "matcher": "dpkg-matcher", + "searchedBy": { + "distro": { + "type": "debian", + "version": "9" + }, + "namespace": "debian:distro:debian:9", + "package": { + "name": "systemd", + "version": "232-25+deb9u6" + } + }, + "found": { + "versionConstraint": "none (deb)", + "vulnerabilityID": "CVE-2019-3844" + } + } + ], + "artifact": { + "name": "libudev1", + "version": "232-25+deb9u6", + "type": "deb", + "locations": null, + "language": "", + "licenses": [ + "LicenseRef-CC0", + "LicenseRef-Expat", + "GPL-2.0-only", + "GPL-2.0-or-later", + "LGPL-2.1-only", + "LGPL-2.1-or-later", + "LicenseRef-public-domain" + ], + "cpes": [ + "cpe:2.3:a:libudev1:libudev1:232-25+deb9u6:*:*:*:*:*:*:*" + ], + "purl": "pkg:deb/debian/libudev1@232-25+deb9u6?arch=amd64\u0026upstream=systemd\u0026distro=debian-9", + "upstreams": [ + { + "name": "systemd" + } + ], + "metadata": null + } + }, + { + "vulnerability": { + "id": "CVE-2019-5094", + "dataSource": "https://security-tracker.debian.org/tracker/CVE-2019-5094", + "namespace": "debian:distro:debian:9", + "severity": "Medium", + "urls": [ + "https://security-tracker.debian.org/tracker/CVE-2019-5094" + ], + "description": "An exploitable code execution vulnerability exists in the quota file functionality of E2fsprogs 1.45.3. A specially crafted ext4 partition can cause an out-of-bounds write on the heap, resulting in code execution. An attacker can corrupt a partition to trigger this vulnerability.", + "cvss": null, + "fix": { + "versions": [ + "1.43.4-2+deb9u1" + ], + "state": "fixed" + }, + "advisories": [ + { + "id": "DSA-4535-1", + "link": "https://security-tracker.debian.org/tracker/DSA-4535-1" + } + ] + }, + "relatedVulnerabilities": [ + { + "id": "CVE-2019-5094", + "dataSource": "https://nvd.nist.gov/vuln/detail/CVE-2019-5094", + "namespace": "nvd:cpe", + "severity": "Medium", + "urls": [ + "https://lists.debian.org/debian-lts-announce/2019/09/msg00029.html", + "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/2AKETJ6BREDUHRWQTV35SPGG5C6H7KSI/", + "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/6DOBCYQKCTTWXBLMUPJ5TX3FY7JNCOKY/", + "https://seclists.org/bugtraq/2019/Sep/58", + "https://security.gentoo.org/glsa/202003-05", + "https://security.netapp.com/advisory/ntap-20200115-0002/", + "https://talosintelligence.com/vulnerability_reports/TALOS-2019-0887", + "https://usn.ubuntu.com/4142-1/", + "https://usn.ubuntu.com/4142-2/", + "https://www.debian.org/security/2019/dsa-4535" + ], + "description": "An exploitable code execution vulnerability exists in the quota file functionality of E2fsprogs 1.45.3. A specially crafted ext4 partition can cause an out-of-bounds write on the heap, resulting in code execution. An attacker can corrupt a partition to trigger this vulnerability.", + "cvss": null + } + ], + "matchDetails": [ + { + "type": "exact-indirect-match", + "matcher": "dpkg-matcher", + "searchedBy": { + "distro": { + "type": "debian", + "version": "9" + }, + "namespace": "debian:distro:debian:9", + "package": { + "name": "e2fsprogs", + "version": "1.43.4-2" + } + }, + "found": { + "versionConstraint": "\u003c 1.43.4-2+deb9u1 (deb)", + "vulnerabilityID": "CVE-2019-5094" + } + } + ], + "artifact": { + "name": "e2fslibs", + "version": "1.43.4-2", + "type": "deb", + "locations": null, + "language": "", + "licenses": [ + "GPL-2.0-only", + "LGPL-2.0-only" + ], + "cpes": [ + "cpe:2.3:a:e2fslibs:e2fslibs:1.43.4-2:*:*:*:*:*:*:*" + ], + "purl": "pkg:deb/debian/e2fslibs@1.43.4-2?arch=amd64\u0026upstream=e2fsprogs\u0026distro=debian-9", + "upstreams": [ + { + "name": "e2fsprogs" + } + ], + "metadata": null + } + }, + { + "vulnerability": { + "id": "CVE-2019-5094", + "dataSource": "https://security-tracker.debian.org/tracker/CVE-2019-5094", + "namespace": "debian:distro:debian:9", + "severity": "Medium", + "urls": [ + "https://security-tracker.debian.org/tracker/CVE-2019-5094" + ], + "description": "An exploitable code execution vulnerability exists in the quota file functionality of E2fsprogs 1.45.3. A specially crafted ext4 partition can cause an out-of-bounds write on the heap, resulting in code execution. An attacker can corrupt a partition to trigger this vulnerability.", + "cvss": null, + "fix": { + "versions": [ + "1.43.4-2+deb9u1" + ], + "state": "fixed" + }, + "advisories": [ + { + "id": "DSA-4535-1", + "link": "https://security-tracker.debian.org/tracker/DSA-4535-1" + } + ] + }, + "relatedVulnerabilities": [ + { + "id": "CVE-2019-5094", + "dataSource": "https://nvd.nist.gov/vuln/detail/CVE-2019-5094", + "namespace": "nvd:cpe", + "severity": "Medium", + "urls": [ + "https://lists.debian.org/debian-lts-announce/2019/09/msg00029.html", + "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/2AKETJ6BREDUHRWQTV35SPGG5C6H7KSI/", + "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/6DOBCYQKCTTWXBLMUPJ5TX3FY7JNCOKY/", + "https://seclists.org/bugtraq/2019/Sep/58", + "https://security.gentoo.org/glsa/202003-05", + "https://security.netapp.com/advisory/ntap-20200115-0002/", + "https://talosintelligence.com/vulnerability_reports/TALOS-2019-0887", + "https://usn.ubuntu.com/4142-1/", + "https://usn.ubuntu.com/4142-2/", + "https://www.debian.org/security/2019/dsa-4535" + ], + "description": "An exploitable code execution vulnerability exists in the quota file functionality of E2fsprogs 1.45.3. A specially crafted ext4 partition can cause an out-of-bounds write on the heap, resulting in code execution. An attacker can corrupt a partition to trigger this vulnerability.", + "cvss": null + } + ], + "matchDetails": [ + { + "type": "exact-direct-match", + "matcher": "dpkg-matcher", + "searchedBy": { + "distro": { + "type": "debian", + "version": "9" + }, + "namespace": "debian:distro:debian:9", + "package": { + "name": "e2fsprogs", + "version": "1.43.4-2" + } + }, + "found": { + "versionConstraint": "\u003c 1.43.4-2+deb9u1 (deb)", + "vulnerabilityID": "CVE-2019-5094" + } + } + ], + "artifact": { + "name": "e2fsprogs", + "version": "1.43.4-2", + "type": "deb", + "locations": null, + "language": "", + "licenses": [ + "GPL-2.0-only", + "LGPL-2.0-only" + ], + "cpes": [ + "cpe:2.3:a:e2fsprogs:e2fsprogs:1.43.4-2:*:*:*:*:*:*:*" + ], + "purl": "pkg:deb/debian/e2fsprogs@1.43.4-2?arch=amd64\u0026distro=debian-9", + "upstreams": null, + "metadata": null + } + }, + { + "vulnerability": { + "id": "CVE-2019-5094", + "dataSource": "https://security-tracker.debian.org/tracker/CVE-2019-5094", + "namespace": "debian:distro:debian:9", + "severity": "Medium", + "urls": [ + "https://security-tracker.debian.org/tracker/CVE-2019-5094" + ], + "description": "An exploitable code execution vulnerability exists in the quota file functionality of E2fsprogs 1.45.3. A specially crafted ext4 partition can cause an out-of-bounds write on the heap, resulting in code execution. An attacker can corrupt a partition to trigger this vulnerability.", + "cvss": null, + "fix": { + "versions": [ + "1.43.4-2+deb9u1" + ], + "state": "fixed" + }, + "advisories": [ + { + "id": "DSA-4535-1", + "link": "https://security-tracker.debian.org/tracker/DSA-4535-1" + } + ] + }, + "relatedVulnerabilities": [ + { + "id": "CVE-2019-5094", + "dataSource": "https://nvd.nist.gov/vuln/detail/CVE-2019-5094", + "namespace": "nvd:cpe", + "severity": "Medium", + "urls": [ + "https://lists.debian.org/debian-lts-announce/2019/09/msg00029.html", + "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/2AKETJ6BREDUHRWQTV35SPGG5C6H7KSI/", + "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/6DOBCYQKCTTWXBLMUPJ5TX3FY7JNCOKY/", + "https://seclists.org/bugtraq/2019/Sep/58", + "https://security.gentoo.org/glsa/202003-05", + "https://security.netapp.com/advisory/ntap-20200115-0002/", + "https://talosintelligence.com/vulnerability_reports/TALOS-2019-0887", + "https://usn.ubuntu.com/4142-1/", + "https://usn.ubuntu.com/4142-2/", + "https://www.debian.org/security/2019/dsa-4535" + ], + "description": "An exploitable code execution vulnerability exists in the quota file functionality of E2fsprogs 1.45.3. A specially crafted ext4 partition can cause an out-of-bounds write on the heap, resulting in code execution. An attacker can corrupt a partition to trigger this vulnerability.", + "cvss": null + } + ], + "matchDetails": [ + { + "type": "exact-indirect-match", + "matcher": "dpkg-matcher", + "searchedBy": { + "distro": { + "type": "debian", + "version": "9" + }, + "namespace": "debian:distro:debian:9", + "package": { + "name": "e2fsprogs", + "version": "1.43.4-2" + } + }, + "found": { + "versionConstraint": "\u003c 1.43.4-2+deb9u1 (deb)", + "vulnerabilityID": "CVE-2019-5094" + } + } + ], + "artifact": { + "name": "libcomerr2", + "version": "1.43.4-2", + "type": "deb", + "locations": null, + "language": "", + "licenses": [], + "cpes": [ + "cpe:2.3:a:libcomerr2:libcomerr2:1.43.4-2:*:*:*:*:*:*:*" + ], + "purl": "pkg:deb/debian/libcomerr2@1.43.4-2?arch=amd64\u0026upstream=e2fsprogs\u0026distro=debian-9", + "upstreams": [ + { + "name": "e2fsprogs" + } + ], + "metadata": null + } + }, + { + "vulnerability": { + "id": "CVE-2019-5094", + "dataSource": "https://security-tracker.debian.org/tracker/CVE-2019-5094", + "namespace": "debian:distro:debian:9", + "severity": "Medium", + "urls": [ + "https://security-tracker.debian.org/tracker/CVE-2019-5094" + ], + "description": "An exploitable code execution vulnerability exists in the quota file functionality of E2fsprogs 1.45.3. A specially crafted ext4 partition can cause an out-of-bounds write on the heap, resulting in code execution. An attacker can corrupt a partition to trigger this vulnerability.", + "cvss": null, + "fix": { + "versions": [ + "1.43.4-2+deb9u1" + ], + "state": "fixed" + }, + "advisories": [ + { + "id": "DSA-4535-1", + "link": "https://security-tracker.debian.org/tracker/DSA-4535-1" + } + ] + }, + "relatedVulnerabilities": [ + { + "id": "CVE-2019-5094", + "dataSource": "https://nvd.nist.gov/vuln/detail/CVE-2019-5094", + "namespace": "nvd:cpe", + "severity": "Medium", + "urls": [ + "https://lists.debian.org/debian-lts-announce/2019/09/msg00029.html", + "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/2AKETJ6BREDUHRWQTV35SPGG5C6H7KSI/", + "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/6DOBCYQKCTTWXBLMUPJ5TX3FY7JNCOKY/", + "https://seclists.org/bugtraq/2019/Sep/58", + "https://security.gentoo.org/glsa/202003-05", + "https://security.netapp.com/advisory/ntap-20200115-0002/", + "https://talosintelligence.com/vulnerability_reports/TALOS-2019-0887", + "https://usn.ubuntu.com/4142-1/", + "https://usn.ubuntu.com/4142-2/", + "https://www.debian.org/security/2019/dsa-4535" + ], + "description": "An exploitable code execution vulnerability exists in the quota file functionality of E2fsprogs 1.45.3. A specially crafted ext4 partition can cause an out-of-bounds write on the heap, resulting in code execution. An attacker can corrupt a partition to trigger this vulnerability.", + "cvss": null + } + ], + "matchDetails": [ + { + "type": "exact-indirect-match", + "matcher": "dpkg-matcher", + "searchedBy": { + "distro": { + "type": "debian", + "version": "9" + }, + "namespace": "debian:distro:debian:9", + "package": { + "name": "e2fsprogs", + "version": "1.43.4-2" + } + }, + "found": { + "versionConstraint": "\u003c 1.43.4-2+deb9u1 (deb)", + "vulnerabilityID": "CVE-2019-5094" + } + } + ], + "artifact": { + "name": "libss2", + "version": "1.43.4-2", + "type": "deb", + "locations": null, + "language": "", + "licenses": [], + "cpes": [ + "cpe:2.3:a:libss2:libss2:1.43.4-2:*:*:*:*:*:*:*" + ], + "purl": "pkg:deb/debian/libss2@1.43.4-2?arch=amd64\u0026upstream=e2fsprogs\u0026distro=debian-9", + "upstreams": [ + { + "name": "e2fsprogs" + } + ], + "metadata": null + } + }, + { + "vulnerability": { + "id": "CVE-2019-5188", + "dataSource": "https://security-tracker.debian.org/tracker/CVE-2019-5188", + "namespace": "debian:distro:debian:9", + "severity": "Medium", + "urls": [ + "https://security-tracker.debian.org/tracker/CVE-2019-5188" + ], + "description": "A code execution vulnerability exists in the directory rehashing functionality of E2fsprogs e2fsck 1.45.4. A specially crafted ext4 directory can cause an out-of-bounds write on the stack, resulting in code execution. An attacker can corrupt a partition to trigger this vulnerability.", + "cvss": null, + "fix": { + "versions": [ + "1.43.4-2+deb9u2" + ], + "state": "fixed" + }, + "advisories": null + }, + "relatedVulnerabilities": [ + { + "id": "CVE-2019-5188", + "dataSource": "https://nvd.nist.gov/vuln/detail/CVE-2019-5188", + "namespace": "nvd:cpe", + "severity": "Medium", + "urls": [ + "http://lists.opensuse.org/opensuse-security-announce/2020-02/msg00004.html", + "https://lists.debian.org/debian-lts-announce/2020/03/msg00030.html", + "https://lists.debian.org/debian-lts-announce/2020/07/msg00021.html", + "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/2AKETJ6BREDUHRWQTV35SPGG5C6H7KSI/", + "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/6DOBCYQKCTTWXBLMUPJ5TX3FY7JNCOKY/", + "https://security.netapp.com/advisory/ntap-20220506-0001/", + "https://talosintelligence.com/vulnerability_reports/TALOS-2019-0973", + "https://usn.ubuntu.com/4249-1/" + ], + "description": "A code execution vulnerability exists in the directory rehashing functionality of E2fsprogs e2fsck 1.45.4. A specially crafted ext4 directory can cause an out-of-bounds write on the stack, resulting in code execution. An attacker can corrupt a partition to trigger this vulnerability.", + "cvss": null + } + ], + "matchDetails": [ + { + "type": "exact-indirect-match", + "matcher": "dpkg-matcher", + "searchedBy": { + "distro": { + "type": "debian", + "version": "9" + }, + "namespace": "debian:distro:debian:9", + "package": { + "name": "e2fsprogs", + "version": "1.43.4-2" + } + }, + "found": { + "versionConstraint": "\u003c 1.43.4-2+deb9u2 (deb)", + "vulnerabilityID": "CVE-2019-5188" + } + } + ], + "artifact": { + "name": "e2fslibs", + "version": "1.43.4-2", + "type": "deb", + "locations": null, + "language": "", + "licenses": [ + "GPL-2.0-only", + "LGPL-2.0-only" + ], + "cpes": [ + "cpe:2.3:a:e2fslibs:e2fslibs:1.43.4-2:*:*:*:*:*:*:*" + ], + "purl": "pkg:deb/debian/e2fslibs@1.43.4-2?arch=amd64\u0026upstream=e2fsprogs\u0026distro=debian-9", + "upstreams": [ + { + "name": "e2fsprogs" + } + ], + "metadata": null + } + }, + { + "vulnerability": { + "id": "CVE-2019-5188", + "dataSource": "https://security-tracker.debian.org/tracker/CVE-2019-5188", + "namespace": "debian:distro:debian:9", + "severity": "Medium", + "urls": [ + "https://security-tracker.debian.org/tracker/CVE-2019-5188" + ], + "description": "A code execution vulnerability exists in the directory rehashing functionality of E2fsprogs e2fsck 1.45.4. A specially crafted ext4 directory can cause an out-of-bounds write on the stack, resulting in code execution. An attacker can corrupt a partition to trigger this vulnerability.", + "cvss": null, + "fix": { + "versions": [ + "1.43.4-2+deb9u2" + ], + "state": "fixed" + }, + "advisories": null + }, + "relatedVulnerabilities": [ + { + "id": "CVE-2019-5188", + "dataSource": "https://nvd.nist.gov/vuln/detail/CVE-2019-5188", + "namespace": "nvd:cpe", + "severity": "Medium", + "urls": [ + "http://lists.opensuse.org/opensuse-security-announce/2020-02/msg00004.html", + "https://lists.debian.org/debian-lts-announce/2020/03/msg00030.html", + "https://lists.debian.org/debian-lts-announce/2020/07/msg00021.html", + "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/2AKETJ6BREDUHRWQTV35SPGG5C6H7KSI/", + "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/6DOBCYQKCTTWXBLMUPJ5TX3FY7JNCOKY/", + "https://security.netapp.com/advisory/ntap-20220506-0001/", + "https://talosintelligence.com/vulnerability_reports/TALOS-2019-0973", + "https://usn.ubuntu.com/4249-1/" + ], + "description": "A code execution vulnerability exists in the directory rehashing functionality of E2fsprogs e2fsck 1.45.4. A specially crafted ext4 directory can cause an out-of-bounds write on the stack, resulting in code execution. An attacker can corrupt a partition to trigger this vulnerability.", + "cvss": null + } + ], + "matchDetails": [ + { + "type": "exact-direct-match", + "matcher": "dpkg-matcher", + "searchedBy": { + "distro": { + "type": "debian", + "version": "9" + }, + "namespace": "debian:distro:debian:9", + "package": { + "name": "e2fsprogs", + "version": "1.43.4-2" + } + }, + "found": { + "versionConstraint": "\u003c 1.43.4-2+deb9u2 (deb)", + "vulnerabilityID": "CVE-2019-5188" + } + } + ], + "artifact": { + "name": "e2fsprogs", + "version": "1.43.4-2", + "type": "deb", + "locations": null, + "language": "", + "licenses": [ + "GPL-2.0-only", + "LGPL-2.0-only" + ], + "cpes": [ + "cpe:2.3:a:e2fsprogs:e2fsprogs:1.43.4-2:*:*:*:*:*:*:*" + ], + "purl": "pkg:deb/debian/e2fsprogs@1.43.4-2?arch=amd64\u0026distro=debian-9", + "upstreams": null, + "metadata": null + } + }, + { + "vulnerability": { + "id": "CVE-2019-5188", + "dataSource": "https://security-tracker.debian.org/tracker/CVE-2019-5188", + "namespace": "debian:distro:debian:9", + "severity": "Medium", + "urls": [ + "https://security-tracker.debian.org/tracker/CVE-2019-5188" + ], + "description": "A code execution vulnerability exists in the directory rehashing functionality of E2fsprogs e2fsck 1.45.4. A specially crafted ext4 directory can cause an out-of-bounds write on the stack, resulting in code execution. An attacker can corrupt a partition to trigger this vulnerability.", + "cvss": null, + "fix": { + "versions": [ + "1.43.4-2+deb9u2" + ], + "state": "fixed" + }, + "advisories": null + }, + "relatedVulnerabilities": [ + { + "id": "CVE-2019-5188", + "dataSource": "https://nvd.nist.gov/vuln/detail/CVE-2019-5188", + "namespace": "nvd:cpe", + "severity": "Medium", + "urls": [ + "http://lists.opensuse.org/opensuse-security-announce/2020-02/msg00004.html", + "https://lists.debian.org/debian-lts-announce/2020/03/msg00030.html", + "https://lists.debian.org/debian-lts-announce/2020/07/msg00021.html", + "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/2AKETJ6BREDUHRWQTV35SPGG5C6H7KSI/", + "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/6DOBCYQKCTTWXBLMUPJ5TX3FY7JNCOKY/", + "https://security.netapp.com/advisory/ntap-20220506-0001/", + "https://talosintelligence.com/vulnerability_reports/TALOS-2019-0973", + "https://usn.ubuntu.com/4249-1/" + ], + "description": "A code execution vulnerability exists in the directory rehashing functionality of E2fsprogs e2fsck 1.45.4. A specially crafted ext4 directory can cause an out-of-bounds write on the stack, resulting in code execution. An attacker can corrupt a partition to trigger this vulnerability.", + "cvss": null + } + ], + "matchDetails": [ + { + "type": "exact-indirect-match", + "matcher": "dpkg-matcher", + "searchedBy": { + "distro": { + "type": "debian", + "version": "9" + }, + "namespace": "debian:distro:debian:9", + "package": { + "name": "e2fsprogs", + "version": "1.43.4-2" + } + }, + "found": { + "versionConstraint": "\u003c 1.43.4-2+deb9u2 (deb)", + "vulnerabilityID": "CVE-2019-5188" + } + } + ], + "artifact": { + "name": "libcomerr2", + "version": "1.43.4-2", + "type": "deb", + "locations": null, + "language": "", + "licenses": [], + "cpes": [ + "cpe:2.3:a:libcomerr2:libcomerr2:1.43.4-2:*:*:*:*:*:*:*" + ], + "purl": "pkg:deb/debian/libcomerr2@1.43.4-2?arch=amd64\u0026upstream=e2fsprogs\u0026distro=debian-9", + "upstreams": [ + { + "name": "e2fsprogs" + } + ], + "metadata": null + } + }, + { + "vulnerability": { + "id": "CVE-2019-5188", + "dataSource": "https://security-tracker.debian.org/tracker/CVE-2019-5188", + "namespace": "debian:distro:debian:9", + "severity": "Medium", + "urls": [ + "https://security-tracker.debian.org/tracker/CVE-2019-5188" + ], + "description": "A code execution vulnerability exists in the directory rehashing functionality of E2fsprogs e2fsck 1.45.4. A specially crafted ext4 directory can cause an out-of-bounds write on the stack, resulting in code execution. An attacker can corrupt a partition to trigger this vulnerability.", + "cvss": null, + "fix": { + "versions": [ + "1.43.4-2+deb9u2" + ], + "state": "fixed" + }, + "advisories": null + }, + "relatedVulnerabilities": [ + { + "id": "CVE-2019-5188", + "dataSource": "https://nvd.nist.gov/vuln/detail/CVE-2019-5188", + "namespace": "nvd:cpe", + "severity": "Medium", + "urls": [ + "http://lists.opensuse.org/opensuse-security-announce/2020-02/msg00004.html", + "https://lists.debian.org/debian-lts-announce/2020/03/msg00030.html", + "https://lists.debian.org/debian-lts-announce/2020/07/msg00021.html", + "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/2AKETJ6BREDUHRWQTV35SPGG5C6H7KSI/", + "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/6DOBCYQKCTTWXBLMUPJ5TX3FY7JNCOKY/", + "https://security.netapp.com/advisory/ntap-20220506-0001/", + "https://talosintelligence.com/vulnerability_reports/TALOS-2019-0973", + "https://usn.ubuntu.com/4249-1/" + ], + "description": "A code execution vulnerability exists in the directory rehashing functionality of E2fsprogs e2fsck 1.45.4. A specially crafted ext4 directory can cause an out-of-bounds write on the stack, resulting in code execution. An attacker can corrupt a partition to trigger this vulnerability.", + "cvss": null + } + ], + "matchDetails": [ + { + "type": "exact-indirect-match", + "matcher": "dpkg-matcher", + "searchedBy": { + "distro": { + "type": "debian", + "version": "9" + }, + "namespace": "debian:distro:debian:9", + "package": { + "name": "e2fsprogs", + "version": "1.43.4-2" + } + }, + "found": { + "versionConstraint": "\u003c 1.43.4-2+deb9u2 (deb)", + "vulnerabilityID": "CVE-2019-5188" + } + } + ], + "artifact": { + "name": "libss2", + "version": "1.43.4-2", + "type": "deb", + "locations": null, + "language": "", + "licenses": [], + "cpes": [ + "cpe:2.3:a:libss2:libss2:1.43.4-2:*:*:*:*:*:*:*" + ], + "purl": "pkg:deb/debian/libss2@1.43.4-2?arch=amd64\u0026upstream=e2fsprogs\u0026distro=debian-9", + "upstreams": [ + { + "name": "e2fsprogs" + } + ], + "metadata": null + } + }, + { + "vulnerability": { + "id": "CVE-2019-6128", + "dataSource": "https://security-tracker.debian.org/tracker/CVE-2019-6128", + "namespace": "debian:distro:debian:9", + "severity": "Negligible", + "urls": [ + "https://security-tracker.debian.org/tracker/CVE-2019-6128" + ], + "description": "The TIFFFdOpen function in tif_unix.c in LibTIFF 4.0.10 has a memory leak, as demonstrated by pal2rgb.", + "cvss": null, + "fix": { + "versions": [], + "state": "not-fixed" + }, + "advisories": null + }, + "relatedVulnerabilities": [ + { + "id": "CVE-2019-6128", + "dataSource": "https://nvd.nist.gov/vuln/detail/CVE-2019-6128", + "namespace": "nvd:cpe", + "severity": "High", + "urls": [ + "http://bugzilla.maptools.org/show_bug.cgi?id=2836", + "http://lists.opensuse.org/opensuse-security-announce/2019-04/msg00041.html", + "http://packetstormsecurity.com/files/155095/Slackware-Security-Advisory-libtiff-Updates.html", + "https://gitlab.com/libtiff/libtiff/commit/0c74a9f49b8d7a36b17b54a7428b3526d20f88a8", + "https://lists.debian.org/debian-lts-announce/2019/11/msg00027.html", + "https://seclists.org/bugtraq/2019/Nov/5", + "https://security.gentoo.org/glsa/202003-25", + "https://usn.ubuntu.com/3906-1/", + "https://usn.ubuntu.com/3906-2/" + ], + "description": "The TIFFFdOpen function in tif_unix.c in LibTIFF 4.0.10 has a memory leak, as demonstrated by pal2rgb.", + "cvss": null + } + ], + "matchDetails": [ + { + "type": "exact-indirect-match", + "matcher": "dpkg-matcher", + "searchedBy": { + "distro": { + "type": "debian", + "version": "9" + }, + "namespace": "debian:distro:debian:9", + "package": { + "name": "tiff", + "version": "4.0.8-2+deb9u2" + } + }, + "found": { + "versionConstraint": "none (deb)", + "vulnerabilityID": "CVE-2019-6128" + } + } + ], + "artifact": { + "name": "libtiff5", + "version": "4.0.8-2+deb9u2", + "type": "deb", + "locations": null, + "language": "", + "licenses": [ + "LicenseRef-Hylafax" + ], + "cpes": [ + "cpe:2.3:a:libtiff5:libtiff5:4.0.8-2+deb9u2:*:*:*:*:*:*:*" + ], + "purl": "pkg:deb/debian/libtiff5@4.0.8-2+deb9u2?arch=amd64\u0026upstream=tiff\u0026distro=debian-9", + "upstreams": [ + { + "name": "tiff" + } + ], + "metadata": null + } + }, + { + "vulnerability": { + "id": "CVE-2019-6129", + "dataSource": "https://security-tracker.debian.org/tracker/CVE-2019-6129", + "namespace": "debian:distro:debian:9", + "severity": "Negligible", + "urls": [ + "https://security-tracker.debian.org/tracker/CVE-2019-6129" + ], + "description": "** DISPUTED ** png_create_info_struct in png.c in libpng 1.6.36 has a memory leak, as demonstrated by pngcp. NOTE: a third party has stated \"I don't think it is libpng's job to free this buffer.\"", + "cvss": null, + "fix": { + "versions": [], + "state": "not-fixed" + }, + "advisories": null + }, + "relatedVulnerabilities": [ + { + "id": "CVE-2019-6129", + "dataSource": "https://nvd.nist.gov/vuln/detail/CVE-2019-6129", + "namespace": "nvd:cpe", + "severity": "Medium", + "urls": [ + "https://github.com/glennrp/libpng/issues/269", + "https://www.oracle.com/technetwork/security-advisory/cpujul2019-5072835.html" + ], + "description": "** DISPUTED ** png_create_info_struct in png.c in libpng 1.6.36 has a memory leak, as demonstrated by pngcp. NOTE: a third party has stated \"I don't think it is libpng's job to free this buffer.\"", + "cvss": null + } + ], + "matchDetails": [ + { + "type": "exact-indirect-match", + "matcher": "dpkg-matcher", + "searchedBy": { + "distro": { + "type": "debian", + "version": "9" + }, + "namespace": "debian:distro:debian:9", + "package": { + "name": "libpng1.6", + "version": "1.6.28-1" + } + }, + "found": { + "versionConstraint": "none (deb)", + "vulnerabilityID": "CVE-2019-6129" + } + } + ], + "artifact": { + "name": "libpng16-16", + "version": "1.6.28-1", + "type": "deb", + "locations": null, + "language": "", + "licenses": [ + "LicenseRef-BSD-like-with-advertising-clause", + "GPL-2.0-only", + "GPL-2.0-or-later", + "LicenseRef-expat", + "Libpng" + ], + "cpes": [ + "cpe:2.3:a:libpng16-16:libpng16-16:1.6.28-1:*:*:*:*:*:*:*", + "cpe:2.3:a:libpng16-16:libpng16_16:1.6.28-1:*:*:*:*:*:*:*", + "cpe:2.3:a:libpng16_16:libpng16-16:1.6.28-1:*:*:*:*:*:*:*", + "cpe:2.3:a:libpng16_16:libpng16_16:1.6.28-1:*:*:*:*:*:*:*", + "cpe:2.3:a:libpng16:libpng16-16:1.6.28-1:*:*:*:*:*:*:*", + "cpe:2.3:a:libpng16:libpng16_16:1.6.28-1:*:*:*:*:*:*:*" + ], + "purl": "pkg:deb/debian/libpng16-16@1.6.28-1?arch=amd64\u0026upstream=libpng1.6\u0026distro=debian-9", + "upstreams": [ + { + "name": "libpng1.6" + } + ], + "metadata": null + } + }, + { + "vulnerability": { + "id": "CVE-2019-6454", + "dataSource": "https://security-tracker.debian.org/tracker/CVE-2019-6454", + "namespace": "debian:distro:debian:9", + "severity": "Medium", + "urls": [ + "https://security-tracker.debian.org/tracker/CVE-2019-6454" + ], + "description": "An issue was discovered in sd-bus in systemd 239. bus_process_object() in libsystemd/sd-bus/bus-objects.c allocates a variable-length stack buffer for temporarily storing the object path of incoming D-Bus messages. An unprivileged local user can exploit this by sending a specially crafted message to PID1, causing the stack pointer to jump over the stack guard pages into an unmapped memory region and trigger a denial of service (systemd PID1 crash and kernel panic).", + "cvss": null, + "fix": { + "versions": [ + "232-25+deb9u9" + ], + "state": "fixed" + }, + "advisories": [ + { + "id": "DSA-4393-1", + "link": "https://security-tracker.debian.org/tracker/DSA-4393-1" + } + ] + }, + "relatedVulnerabilities": [ + { + "id": "CVE-2019-6454", + "dataSource": "https://nvd.nist.gov/vuln/detail/CVE-2019-6454", + "namespace": "nvd:cpe", + "severity": "Medium", + "urls": [ + "http://lists.opensuse.org/opensuse-security-announce/2019-02/msg00070.html", + "http://lists.opensuse.org/opensuse-security-announce/2019-05/msg00062.html", + "http://www.openwall.com/lists/oss-security/2019/02/18/3", + "http://www.openwall.com/lists/oss-security/2019/02/19/1", + "http://www.openwall.com/lists/oss-security/2021/07/20/2", + "http://www.securityfocus.com/bid/107081", + "https://access.redhat.com/errata/RHSA-2019:0368", + "https://access.redhat.com/errata/RHSA-2019:0990", + "https://access.redhat.com/errata/RHSA-2019:1322", + "https://access.redhat.com/errata/RHSA-2019:1502", + "https://access.redhat.com/errata/RHSA-2019:2805", + "https://github.com/systemd/systemd/commits/master/src/libsystemd/sd-bus/bus-objects.c", + "https://kc.mcafee.com/corporate/index?page=content\u0026id=SB10278", + "https://lists.debian.org/debian-lts-announce/2019/02/msg00031.html", + "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/N67IOBOTDOMVNQJ5QRU2MXLEECXPGNVJ/", + "https://security.netapp.com/advisory/ntap-20190327-0004/", + "https://usn.ubuntu.com/3891-1/", + "https://www.debian.org/security/2019/dsa-4393" + ], + "description": "An issue was discovered in sd-bus in systemd 239. bus_process_object() in libsystemd/sd-bus/bus-objects.c allocates a variable-length stack buffer for temporarily storing the object path of incoming D-Bus messages. An unprivileged local user can exploit this by sending a specially crafted message to PID1, causing the stack pointer to jump over the stack guard pages into an unmapped memory region and trigger a denial of service (systemd PID1 crash and kernel panic).", + "cvss": null + } + ], + "matchDetails": [ + { + "type": "exact-indirect-match", + "matcher": "dpkg-matcher", + "searchedBy": { + "distro": { + "type": "debian", + "version": "9" + }, + "namespace": "debian:distro:debian:9", + "package": { + "name": "systemd", + "version": "232-25+deb9u6" + } + }, + "found": { + "versionConstraint": "\u003c 232-25+deb9u9 (deb)", + "vulnerabilityID": "CVE-2019-6454" + } + } + ], + "artifact": { + "name": "libsystemd0", + "version": "232-25+deb9u6", + "type": "deb", + "locations": null, + "language": "", + "licenses": [ + "LicenseRef-CC0", + "LicenseRef-Expat", + "GPL-2.0-only", + "GPL-2.0-or-later", + "LGPL-2.1-only", + "LGPL-2.1-or-later", + "LicenseRef-public-domain" + ], + "cpes": [ + "cpe:2.3:a:libsystemd0:libsystemd0:232-25+deb9u6:*:*:*:*:*:*:*" + ], + "purl": "pkg:deb/debian/libsystemd0@232-25+deb9u6?arch=amd64\u0026upstream=systemd\u0026distro=debian-9", + "upstreams": [ + { + "name": "systemd" + } + ], + "metadata": null + } + }, + { + "vulnerability": { + "id": "CVE-2019-6454", + "dataSource": "https://security-tracker.debian.org/tracker/CVE-2019-6454", + "namespace": "debian:distro:debian:9", + "severity": "Medium", + "urls": [ + "https://security-tracker.debian.org/tracker/CVE-2019-6454" + ], + "description": "An issue was discovered in sd-bus in systemd 239. bus_process_object() in libsystemd/sd-bus/bus-objects.c allocates a variable-length stack buffer for temporarily storing the object path of incoming D-Bus messages. An unprivileged local user can exploit this by sending a specially crafted message to PID1, causing the stack pointer to jump over the stack guard pages into an unmapped memory region and trigger a denial of service (systemd PID1 crash and kernel panic).", + "cvss": null, + "fix": { + "versions": [ + "232-25+deb9u9" + ], + "state": "fixed" + }, + "advisories": [ + { + "id": "DSA-4393-1", + "link": "https://security-tracker.debian.org/tracker/DSA-4393-1" + } + ] + }, + "relatedVulnerabilities": [ + { + "id": "CVE-2019-6454", + "dataSource": "https://nvd.nist.gov/vuln/detail/CVE-2019-6454", + "namespace": "nvd:cpe", + "severity": "Medium", + "urls": [ + "http://lists.opensuse.org/opensuse-security-announce/2019-02/msg00070.html", + "http://lists.opensuse.org/opensuse-security-announce/2019-05/msg00062.html", + "http://www.openwall.com/lists/oss-security/2019/02/18/3", + "http://www.openwall.com/lists/oss-security/2019/02/19/1", + "http://www.openwall.com/lists/oss-security/2021/07/20/2", + "http://www.securityfocus.com/bid/107081", + "https://access.redhat.com/errata/RHSA-2019:0368", + "https://access.redhat.com/errata/RHSA-2019:0990", + "https://access.redhat.com/errata/RHSA-2019:1322", + "https://access.redhat.com/errata/RHSA-2019:1502", + "https://access.redhat.com/errata/RHSA-2019:2805", + "https://github.com/systemd/systemd/commits/master/src/libsystemd/sd-bus/bus-objects.c", + "https://kc.mcafee.com/corporate/index?page=content\u0026id=SB10278", + "https://lists.debian.org/debian-lts-announce/2019/02/msg00031.html", + "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/N67IOBOTDOMVNQJ5QRU2MXLEECXPGNVJ/", + "https://security.netapp.com/advisory/ntap-20190327-0004/", + "https://usn.ubuntu.com/3891-1/", + "https://www.debian.org/security/2019/dsa-4393" + ], + "description": "An issue was discovered in sd-bus in systemd 239. bus_process_object() in libsystemd/sd-bus/bus-objects.c allocates a variable-length stack buffer for temporarily storing the object path of incoming D-Bus messages. An unprivileged local user can exploit this by sending a specially crafted message to PID1, causing the stack pointer to jump over the stack guard pages into an unmapped memory region and trigger a denial of service (systemd PID1 crash and kernel panic).", + "cvss": null + } + ], + "matchDetails": [ + { + "type": "exact-indirect-match", + "matcher": "dpkg-matcher", + "searchedBy": { + "distro": { + "type": "debian", + "version": "9" + }, + "namespace": "debian:distro:debian:9", + "package": { + "name": "systemd", + "version": "232-25+deb9u6" + } + }, + "found": { + "versionConstraint": "\u003c 232-25+deb9u9 (deb)", + "vulnerabilityID": "CVE-2019-6454" + } + } + ], + "artifact": { + "name": "libudev1", + "version": "232-25+deb9u6", + "type": "deb", + "locations": null, + "language": "", + "licenses": [ + "LicenseRef-CC0", + "LicenseRef-Expat", + "GPL-2.0-only", + "GPL-2.0-or-later", + "LGPL-2.1-only", + "LGPL-2.1-or-later", + "LicenseRef-public-domain" + ], + "cpes": [ + "cpe:2.3:a:libudev1:libudev1:232-25+deb9u6:*:*:*:*:*:*:*" + ], + "purl": "pkg:deb/debian/libudev1@232-25+deb9u6?arch=amd64\u0026upstream=systemd\u0026distro=debian-9", + "upstreams": [ + { + "name": "systemd" + } + ], + "metadata": null + } + }, + { + "vulnerability": { + "id": "CVE-2019-6488", + "dataSource": "https://security-tracker.debian.org/tracker/CVE-2019-6488", + "namespace": "debian:distro:debian:9", + "severity": "Negligible", + "urls": [ + "https://security-tracker.debian.org/tracker/CVE-2019-6488" + ], + "description": "The string component in the GNU C Library (aka glibc or libc6) through 2.28, when running on the x32 architecture, incorrectly attempts to use a 64-bit register for size_t in assembly codes, which can lead to a segmentation fault or possibly unspecified other impact, as demonstrated by a crash in __memmove_avx_unaligned_erms in sysdeps/x86_64/multiarch/memmove-vec-unaligned-erms.S during a memcpy.", + "cvss": null, + "fix": { + "versions": [], + "state": "not-fixed" + }, + "advisories": null + }, + "relatedVulnerabilities": [ + { + "id": "CVE-2019-6488", + "dataSource": "https://nvd.nist.gov/vuln/detail/CVE-2019-6488", + "namespace": "nvd:cpe", + "severity": "High", + "urls": [ + "http://www.securityfocus.com/bid/106671", + "https://security.gentoo.org/glsa/202006-04", + "https://sourceware.org/bugzilla/show_bug.cgi?id=24097" + ], + "description": "The string component in the GNU C Library (aka glibc or libc6) through 2.28, when running on the x32 architecture, incorrectly attempts to use a 64-bit register for size_t in assembly codes, which can lead to a segmentation fault or possibly unspecified other impact, as demonstrated by a crash in __memmove_avx_unaligned_erms in sysdeps/x86_64/multiarch/memmove-vec-unaligned-erms.S during a memcpy.", + "cvss": null + } + ], + "matchDetails": [ + { + "type": "exact-indirect-match", + "matcher": "dpkg-matcher", + "searchedBy": { + "distro": { + "type": "debian", + "version": "9" + }, + "namespace": "debian:distro:debian:9", + "package": { + "name": "glibc", + "version": "2.24-11+deb9u3" + } + }, + "found": { + "versionConstraint": "none (deb)", + "vulnerabilityID": "CVE-2019-6488" + } + } + ], + "artifact": { + "name": "libc-bin", + "version": "2.24-11+deb9u3", + "type": "deb", + "locations": null, + "language": "", + "licenses": [ + "GPL-2.0-only", + "LGPL-2.1-only" + ], + "cpes": [ + "cpe:2.3:a:libc-bin:libc-bin:2.24-11+deb9u3:*:*:*:*:*:*:*", + "cpe:2.3:a:libc-bin:libc_bin:2.24-11+deb9u3:*:*:*:*:*:*:*", + "cpe:2.3:a:libc_bin:libc-bin:2.24-11+deb9u3:*:*:*:*:*:*:*", + "cpe:2.3:a:libc_bin:libc_bin:2.24-11+deb9u3:*:*:*:*:*:*:*", + "cpe:2.3:a:libc:libc-bin:2.24-11+deb9u3:*:*:*:*:*:*:*", + "cpe:2.3:a:libc:libc_bin:2.24-11+deb9u3:*:*:*:*:*:*:*" + ], + "purl": "pkg:deb/debian/libc-bin@2.24-11+deb9u3?arch=amd64\u0026upstream=glibc\u0026distro=debian-9", + "upstreams": [ + { + "name": "glibc" + } + ], + "metadata": null + } + }, + { + "vulnerability": { + "id": "CVE-2019-6488", + "dataSource": "https://security-tracker.debian.org/tracker/CVE-2019-6488", + "namespace": "debian:distro:debian:9", + "severity": "Negligible", + "urls": [ + "https://security-tracker.debian.org/tracker/CVE-2019-6488" + ], + "description": "The string component in the GNU C Library (aka glibc or libc6) through 2.28, when running on the x32 architecture, incorrectly attempts to use a 64-bit register for size_t in assembly codes, which can lead to a segmentation fault or possibly unspecified other impact, as demonstrated by a crash in __memmove_avx_unaligned_erms in sysdeps/x86_64/multiarch/memmove-vec-unaligned-erms.S during a memcpy.", + "cvss": null, + "fix": { + "versions": [], + "state": "not-fixed" + }, + "advisories": null + }, + "relatedVulnerabilities": [ + { + "id": "CVE-2019-6488", + "dataSource": "https://nvd.nist.gov/vuln/detail/CVE-2019-6488", + "namespace": "nvd:cpe", + "severity": "High", + "urls": [ + "http://www.securityfocus.com/bid/106671", + "https://security.gentoo.org/glsa/202006-04", + "https://sourceware.org/bugzilla/show_bug.cgi?id=24097" + ], + "description": "The string component in the GNU C Library (aka glibc or libc6) through 2.28, when running on the x32 architecture, incorrectly attempts to use a 64-bit register for size_t in assembly codes, which can lead to a segmentation fault or possibly unspecified other impact, as demonstrated by a crash in __memmove_avx_unaligned_erms in sysdeps/x86_64/multiarch/memmove-vec-unaligned-erms.S during a memcpy.", + "cvss": null + } + ], + "matchDetails": [ + { + "type": "exact-indirect-match", + "matcher": "dpkg-matcher", + "searchedBy": { + "distro": { + "type": "debian", + "version": "9" + }, + "namespace": "debian:distro:debian:9", + "package": { + "name": "glibc", + "version": "2.24-11+deb9u3" + } + }, + "found": { + "versionConstraint": "none (deb)", + "vulnerabilityID": "CVE-2019-6488" + } + } + ], + "artifact": { + "name": "libc6", + "version": "2.24-11+deb9u3", + "type": "deb", + "locations": null, + "language": "", + "licenses": [ + "GPL-2.0-only", + "LGPL-2.1-only" + ], + "cpes": [ + "cpe:2.3:a:libc6:libc6:2.24-11+deb9u3:*:*:*:*:*:*:*" + ], + "purl": "pkg:deb/debian/libc6@2.24-11+deb9u3?arch=amd64\u0026upstream=glibc\u0026distro=debian-9", + "upstreams": [ + { + "name": "glibc" + } + ], + "metadata": null + } + }, + { + "vulnerability": { + "id": "CVE-2019-6488", + "dataSource": "https://security-tracker.debian.org/tracker/CVE-2019-6488", + "namespace": "debian:distro:debian:9", + "severity": "Negligible", + "urls": [ + "https://security-tracker.debian.org/tracker/CVE-2019-6488" + ], + "description": "The string component in the GNU C Library (aka glibc or libc6) through 2.28, when running on the x32 architecture, incorrectly attempts to use a 64-bit register for size_t in assembly codes, which can lead to a segmentation fault or possibly unspecified other impact, as demonstrated by a crash in __memmove_avx_unaligned_erms in sysdeps/x86_64/multiarch/memmove-vec-unaligned-erms.S during a memcpy.", + "cvss": null, + "fix": { + "versions": [], + "state": "not-fixed" + }, + "advisories": null + }, + "relatedVulnerabilities": [ + { + "id": "CVE-2019-6488", + "dataSource": "https://nvd.nist.gov/vuln/detail/CVE-2019-6488", + "namespace": "nvd:cpe", + "severity": "High", + "urls": [ + "http://www.securityfocus.com/bid/106671", + "https://security.gentoo.org/glsa/202006-04", + "https://sourceware.org/bugzilla/show_bug.cgi?id=24097" + ], + "description": "The string component in the GNU C Library (aka glibc or libc6) through 2.28, when running on the x32 architecture, incorrectly attempts to use a 64-bit register for size_t in assembly codes, which can lead to a segmentation fault or possibly unspecified other impact, as demonstrated by a crash in __memmove_avx_unaligned_erms in sysdeps/x86_64/multiarch/memmove-vec-unaligned-erms.S during a memcpy.", + "cvss": null + } + ], + "matchDetails": [ + { + "type": "exact-indirect-match", + "matcher": "dpkg-matcher", + "searchedBy": { + "distro": { + "type": "debian", + "version": "9" + }, + "namespace": "debian:distro:debian:9", + "package": { + "name": "glibc", + "version": "2.24-11+deb9u3" + } + }, + "found": { + "versionConstraint": "none (deb)", + "vulnerabilityID": "CVE-2019-6488" + } + } + ], + "artifact": { + "name": "multiarch-support", + "version": "2.24-11+deb9u3", + "type": "deb", + "locations": null, + "language": "", + "licenses": [ + "GPL-2.0-only", + "LGPL-2.1-only" + ], + "cpes": [ + "cpe:2.3:a:multiarch-support:multiarch-support:2.24-11+deb9u3:*:*:*:*:*:*:*", + "cpe:2.3:a:multiarch-support:multiarch_support:2.24-11+deb9u3:*:*:*:*:*:*:*", + "cpe:2.3:a:multiarch_support:multiarch-support:2.24-11+deb9u3:*:*:*:*:*:*:*", + "cpe:2.3:a:multiarch_support:multiarch_support:2.24-11+deb9u3:*:*:*:*:*:*:*", + "cpe:2.3:a:multiarch:multiarch-support:2.24-11+deb9u3:*:*:*:*:*:*:*", + "cpe:2.3:a:multiarch:multiarch_support:2.24-11+deb9u3:*:*:*:*:*:*:*" + ], + "purl": "pkg:deb/debian/multiarch-support@2.24-11+deb9u3?arch=amd64\u0026upstream=glibc\u0026distro=debian-9", + "upstreams": [ + { + "name": "glibc" + } + ], + "metadata": null + } + }, + { + "vulnerability": { + "id": "CVE-2019-6977", + "dataSource": "https://security-tracker.debian.org/tracker/CVE-2019-6977", + "namespace": "debian:distro:debian:9", + "severity": "High", + "urls": [ + "https://security-tracker.debian.org/tracker/CVE-2019-6977" + ], + "description": "gdImageColorMatch in gd_color_match.c in the GD Graphics Library (aka LibGD) 2.2.5, as used in the imagecolormatch function in PHP before 5.6.40, 7.x before 7.1.26, 7.2.x before 7.2.14, and 7.3.x before 7.3.1, has a heap-based buffer overflow. This can be exploited by an attacker who is able to trigger imagecolormatch calls with crafted image data.", + "cvss": null, + "fix": { + "versions": [ + "2.2.4-2+deb9u4" + ], + "state": "fixed" + }, + "advisories": [ + { + "id": "DSA-4384-1", + "link": "https://security-tracker.debian.org/tracker/DSA-4384-1" + } + ] + }, + "relatedVulnerabilities": [ + { + "id": "CVE-2019-6977", + "dataSource": "https://nvd.nist.gov/vuln/detail/CVE-2019-6977", + "namespace": "nvd:cpe", + "severity": "High", + "urls": [ + "http://lists.opensuse.org/opensuse-security-announce/2019-04/msg00025.html", + "http://lists.opensuse.org/opensuse-security-announce/2019-04/msg00031.html", + "http://packetstormsecurity.com/files/152459/PHP-7.2-imagecolormatch-Out-Of-Band-Heap-Write.html", + "http://php.net/ChangeLog-5.php", + "http://php.net/ChangeLog-7.php", + "http://www.securityfocus.com/bid/106731", + "https://access.redhat.com/errata/RHSA-2019:2519", + "https://access.redhat.com/errata/RHSA-2019:3299", + "https://bugs.php.net/bug.php?id=77270", + "https://lists.debian.org/debian-lts-announce/2019/01/msg00028.html", + "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/3CZ2QADQTKRHTGB2AHD7J4QQNDLBEMM6/", + "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/3WRUPZVT2MWFUEMVGTRAGDOBHLNMGK5R/", + "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/TEYUUOW75YD3DENIPYMO263E6NL2NFHI/", + "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/TTXSLRZI5BCQT3H5KALG3DHUWUMNPDX2/", + "https://security.gentoo.org/glsa/201903-18", + "https://security.netapp.com/advisory/ntap-20190315-0003/", + "https://usn.ubuntu.com/3900-1/", + "https://www.debian.org/security/2019/dsa-4384", + "https://www.exploit-db.com/exploits/46677/" + ], + "description": "gdImageColorMatch in gd_color_match.c in the GD Graphics Library (aka LibGD) 2.2.5, as used in the imagecolormatch function in PHP before 5.6.40, 7.x before 7.1.26, 7.2.x before 7.2.14, and 7.3.x before 7.3.1, has a heap-based buffer overflow. This can be exploited by an attacker who is able to trigger imagecolormatch calls with crafted image data.", + "cvss": null + } + ], + "matchDetails": [ + { + "type": "exact-indirect-match", + "matcher": "dpkg-matcher", + "searchedBy": { + "distro": { + "type": "debian", + "version": "9" + }, + "namespace": "debian:distro:debian:9", + "package": { + "name": "libgd2", + "version": "2.2.4-2+deb9u3" + } + }, + "found": { + "versionConstraint": "\u003c 2.2.4-2+deb9u4 (deb)", + "vulnerabilityID": "CVE-2019-6977" + } + } + ], + "artifact": { + "name": "libgd3", + "version": "2.2.4-2+deb9u3", + "type": "deb", + "locations": null, + "language": "", + "licenses": [ + "BSD-3-Clause", + "LicenseRef-GAP-Makefile.in", + "LicenseRef-GAP-configure", + "GD", + "GPL-2.0-only", + "GPL-2.0-or-later", + "HPND", + "MIT", + "LicenseRef-WEBP", + "LicenseRef-XFIG" + ], + "cpes": [ + "cpe:2.3:a:libgd3:libgd3:2.2.4-2+deb9u3:*:*:*:*:*:*:*" + ], + "purl": "pkg:deb/debian/libgd3@2.2.4-2+deb9u3?arch=amd64\u0026upstream=libgd2\u0026distro=debian-9", + "upstreams": [ + { + "name": "libgd2" + } + ], + "metadata": null + } + }, + { + "vulnerability": { + "id": "CVE-2019-6978", + "dataSource": "https://security-tracker.debian.org/tracker/CVE-2019-6978", + "namespace": "debian:distro:debian:9", + "severity": "Critical", + "urls": [ + "https://security-tracker.debian.org/tracker/CVE-2019-6978" + ], + "description": "The GD Graphics Library (aka LibGD) 2.2.5 has a double free in the gdImage*Ptr() functions in gd_gif_out.c, gd_jpeg.c, and gd_wbmp.c. NOTE: PHP is unaffected.", + "cvss": null, + "fix": { + "versions": [ + "2.2.4-2+deb9u4" + ], + "state": "fixed" + }, + "advisories": [ + { + "id": "DSA-4384-1", + "link": "https://security-tracker.debian.org/tracker/DSA-4384-1" + } + ] + }, + "relatedVulnerabilities": [ + { + "id": "CVE-2019-6978", + "dataSource": "https://nvd.nist.gov/vuln/detail/CVE-2019-6978", + "namespace": "nvd:cpe", + "severity": "Critical", + "urls": [ + "http://lists.opensuse.org/opensuse-security-announce/2019-04/msg00025.html", + "http://lists.opensuse.org/opensuse-security-announce/2019-04/msg00031.html", + "https://access.redhat.com/errata/RHSA-2019:2722", + "https://github.com/libgd/libgd/commit/553702980ae89c83f2d6e254d62cf82e204956d0", + "https://github.com/libgd/libgd/issues/492", + "https://github.com/php/php-src/commit/089f7c0bc28d399b0420aa6ef058e4c1c120b2ae", + "https://lists.debian.org/debian-lts-announce/2019/01/msg00028.html", + "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/3CZ2QADQTKRHTGB2AHD7J4QQNDLBEMM6/", + "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/3WRUPZVT2MWFUEMVGTRAGDOBHLNMGK5R/", + "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/TEYUUOW75YD3DENIPYMO263E6NL2NFHI/", + "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/TTXSLRZI5BCQT3H5KALG3DHUWUMNPDX2/", + "https://security.gentoo.org/glsa/201903-18", + "https://usn.ubuntu.com/3900-1/", + "https://www.debian.org/security/2019/dsa-4384" + ], + "description": "The GD Graphics Library (aka LibGD) 2.2.5 has a double free in the gdImage*Ptr() functions in gd_gif_out.c, gd_jpeg.c, and gd_wbmp.c. NOTE: PHP is unaffected.", + "cvss": null + } + ], + "matchDetails": [ + { + "type": "exact-indirect-match", + "matcher": "dpkg-matcher", + "searchedBy": { + "distro": { + "type": "debian", + "version": "9" + }, + "namespace": "debian:distro:debian:9", + "package": { + "name": "libgd2", + "version": "2.2.4-2+deb9u3" + } + }, + "found": { + "versionConstraint": "\u003c 2.2.4-2+deb9u4 (deb)", + "vulnerabilityID": "CVE-2019-6978" + } + } + ], + "artifact": { + "name": "libgd3", + "version": "2.2.4-2+deb9u3", + "type": "deb", + "locations": null, + "language": "", + "licenses": [ + "BSD-3-Clause", + "LicenseRef-GAP-Makefile.in", + "LicenseRef-GAP-configure", + "GD", + "GPL-2.0-only", + "GPL-2.0-or-later", + "HPND", + "MIT", + "LicenseRef-WEBP", + "LicenseRef-XFIG" + ], + "cpes": [ + "cpe:2.3:a:libgd3:libgd3:2.2.4-2+deb9u3:*:*:*:*:*:*:*" + ], + "purl": "pkg:deb/debian/libgd3@2.2.4-2+deb9u3?arch=amd64\u0026upstream=libgd2\u0026distro=debian-9", + "upstreams": [ + { + "name": "libgd2" + } + ], + "metadata": null + } + }, + { + "vulnerability": { + "id": "CVE-2019-7309", + "dataSource": "https://security-tracker.debian.org/tracker/CVE-2019-7309", + "namespace": "debian:distro:debian:9", + "severity": "Negligible", + "urls": [ + "https://security-tracker.debian.org/tracker/CVE-2019-7309" + ], + "description": "In the GNU C Library (aka glibc or libc6) through 2.29, the memcmp function for the x32 architecture can incorrectly return zero (indicating that the inputs are equal) because the RDX most significant bit is mishandled.", + "cvss": null, + "fix": { + "versions": [], + "state": "not-fixed" + }, + "advisories": null + }, + "relatedVulnerabilities": [ + { + "id": "CVE-2019-7309", + "dataSource": "https://nvd.nist.gov/vuln/detail/CVE-2019-7309", + "namespace": "nvd:cpe", + "severity": "Medium", + "urls": [ + "http://www.securityfocus.com/bid/106835", + "https://security.gentoo.org/glsa/202006-04", + "https://sourceware.org/bugzilla/show_bug.cgi?id=24155", + "https://sourceware.org/ml/libc-alpha/2019-02/msg00041.html" + ], + "description": "In the GNU C Library (aka glibc or libc6) through 2.29, the memcmp function for the x32 architecture can incorrectly return zero (indicating that the inputs are equal) because the RDX most significant bit is mishandled.", + "cvss": null + } + ], + "matchDetails": [ + { + "type": "exact-indirect-match", + "matcher": "dpkg-matcher", + "searchedBy": { + "distro": { + "type": "debian", + "version": "9" + }, + "namespace": "debian:distro:debian:9", + "package": { + "name": "glibc", + "version": "2.24-11+deb9u3" + } + }, + "found": { + "versionConstraint": "none (deb)", + "vulnerabilityID": "CVE-2019-7309" + } + } + ], + "artifact": { + "name": "libc-bin", + "version": "2.24-11+deb9u3", + "type": "deb", + "locations": null, + "language": "", + "licenses": [ + "GPL-2.0-only", + "LGPL-2.1-only" + ], + "cpes": [ + "cpe:2.3:a:libc-bin:libc-bin:2.24-11+deb9u3:*:*:*:*:*:*:*", + "cpe:2.3:a:libc-bin:libc_bin:2.24-11+deb9u3:*:*:*:*:*:*:*", + "cpe:2.3:a:libc_bin:libc-bin:2.24-11+deb9u3:*:*:*:*:*:*:*", + "cpe:2.3:a:libc_bin:libc_bin:2.24-11+deb9u3:*:*:*:*:*:*:*", + "cpe:2.3:a:libc:libc-bin:2.24-11+deb9u3:*:*:*:*:*:*:*", + "cpe:2.3:a:libc:libc_bin:2.24-11+deb9u3:*:*:*:*:*:*:*" + ], + "purl": "pkg:deb/debian/libc-bin@2.24-11+deb9u3?arch=amd64\u0026upstream=glibc\u0026distro=debian-9", + "upstreams": [ + { + "name": "glibc" + } + ], + "metadata": null + } + }, + { + "vulnerability": { + "id": "CVE-2019-7309", + "dataSource": "https://security-tracker.debian.org/tracker/CVE-2019-7309", + "namespace": "debian:distro:debian:9", + "severity": "Negligible", + "urls": [ + "https://security-tracker.debian.org/tracker/CVE-2019-7309" + ], + "description": "In the GNU C Library (aka glibc or libc6) through 2.29, the memcmp function for the x32 architecture can incorrectly return zero (indicating that the inputs are equal) because the RDX most significant bit is mishandled.", + "cvss": null, + "fix": { + "versions": [], + "state": "not-fixed" + }, + "advisories": null + }, + "relatedVulnerabilities": [ + { + "id": "CVE-2019-7309", + "dataSource": "https://nvd.nist.gov/vuln/detail/CVE-2019-7309", + "namespace": "nvd:cpe", + "severity": "Medium", + "urls": [ + "http://www.securityfocus.com/bid/106835", + "https://security.gentoo.org/glsa/202006-04", + "https://sourceware.org/bugzilla/show_bug.cgi?id=24155", + "https://sourceware.org/ml/libc-alpha/2019-02/msg00041.html" + ], + "description": "In the GNU C Library (aka glibc or libc6) through 2.29, the memcmp function for the x32 architecture can incorrectly return zero (indicating that the inputs are equal) because the RDX most significant bit is mishandled.", + "cvss": null + } + ], + "matchDetails": [ + { + "type": "exact-indirect-match", + "matcher": "dpkg-matcher", + "searchedBy": { + "distro": { + "type": "debian", + "version": "9" + }, + "namespace": "debian:distro:debian:9", + "package": { + "name": "glibc", + "version": "2.24-11+deb9u3" + } + }, + "found": { + "versionConstraint": "none (deb)", + "vulnerabilityID": "CVE-2019-7309" + } + } + ], + "artifact": { + "name": "libc6", + "version": "2.24-11+deb9u3", + "type": "deb", + "locations": null, + "language": "", + "licenses": [ + "GPL-2.0-only", + "LGPL-2.1-only" + ], + "cpes": [ + "cpe:2.3:a:libc6:libc6:2.24-11+deb9u3:*:*:*:*:*:*:*" + ], + "purl": "pkg:deb/debian/libc6@2.24-11+deb9u3?arch=amd64\u0026upstream=glibc\u0026distro=debian-9", + "upstreams": [ + { + "name": "glibc" + } + ], + "metadata": null + } + }, + { + "vulnerability": { + "id": "CVE-2019-7309", + "dataSource": "https://security-tracker.debian.org/tracker/CVE-2019-7309", + "namespace": "debian:distro:debian:9", + "severity": "Negligible", + "urls": [ + "https://security-tracker.debian.org/tracker/CVE-2019-7309" + ], + "description": "In the GNU C Library (aka glibc or libc6) through 2.29, the memcmp function for the x32 architecture can incorrectly return zero (indicating that the inputs are equal) because the RDX most significant bit is mishandled.", + "cvss": null, + "fix": { + "versions": [], + "state": "not-fixed" + }, + "advisories": null + }, + "relatedVulnerabilities": [ + { + "id": "CVE-2019-7309", + "dataSource": "https://nvd.nist.gov/vuln/detail/CVE-2019-7309", + "namespace": "nvd:cpe", + "severity": "Medium", + "urls": [ + "http://www.securityfocus.com/bid/106835", + "https://security.gentoo.org/glsa/202006-04", + "https://sourceware.org/bugzilla/show_bug.cgi?id=24155", + "https://sourceware.org/ml/libc-alpha/2019-02/msg00041.html" + ], + "description": "In the GNU C Library (aka glibc or libc6) through 2.29, the memcmp function for the x32 architecture can incorrectly return zero (indicating that the inputs are equal) because the RDX most significant bit is mishandled.", + "cvss": null + } + ], + "matchDetails": [ + { + "type": "exact-indirect-match", + "matcher": "dpkg-matcher", + "searchedBy": { + "distro": { + "type": "debian", + "version": "9" + }, + "namespace": "debian:distro:debian:9", + "package": { + "name": "glibc", + "version": "2.24-11+deb9u3" + } + }, + "found": { + "versionConstraint": "none (deb)", + "vulnerabilityID": "CVE-2019-7309" + } + } + ], + "artifact": { + "name": "multiarch-support", + "version": "2.24-11+deb9u3", + "type": "deb", + "locations": null, + "language": "", + "licenses": [ + "GPL-2.0-only", + "LGPL-2.1-only" + ], + "cpes": [ + "cpe:2.3:a:multiarch-support:multiarch-support:2.24-11+deb9u3:*:*:*:*:*:*:*", + "cpe:2.3:a:multiarch-support:multiarch_support:2.24-11+deb9u3:*:*:*:*:*:*:*", + "cpe:2.3:a:multiarch_support:multiarch-support:2.24-11+deb9u3:*:*:*:*:*:*:*", + "cpe:2.3:a:multiarch_support:multiarch_support:2.24-11+deb9u3:*:*:*:*:*:*:*", + "cpe:2.3:a:multiarch:multiarch-support:2.24-11+deb9u3:*:*:*:*:*:*:*", + "cpe:2.3:a:multiarch:multiarch_support:2.24-11+deb9u3:*:*:*:*:*:*:*" + ], + "purl": "pkg:deb/debian/multiarch-support@2.24-11+deb9u3?arch=amd64\u0026upstream=glibc\u0026distro=debian-9", + "upstreams": [ + { + "name": "glibc" + } + ], + "metadata": null + } + }, + { + "vulnerability": { + "id": "CVE-2019-7317", + "dataSource": "https://security-tracker.debian.org/tracker/CVE-2019-7317", + "namespace": "debian:distro:debian:9", + "severity": "Medium", + "urls": [ + "https://security-tracker.debian.org/tracker/CVE-2019-7317" + ], + "description": "png_image_free in png.c in libpng 1.6.x before 1.6.37 has a use-after-free because png_image_free_function is called under png_safe_execute.", + "cvss": null, + "fix": { + "versions": [ + "1.6.28-1+deb9u1" + ], + "state": "fixed" + }, + "advisories": [ + { + "id": "DSA-4435-1", + "link": "https://security-tracker.debian.org/tracker/DSA-4435-1" + } + ] + }, + "relatedVulnerabilities": [ + { + "id": "CVE-2019-7317", + "dataSource": "https://nvd.nist.gov/vuln/detail/CVE-2019-7317", + "namespace": "nvd:cpe", + "severity": "Medium", + "urls": [ + "http://lists.opensuse.org/opensuse-security-announce/2019-06/msg00002.html", + "http://lists.opensuse.org/opensuse-security-announce/2019-06/msg00029.html", + "http://lists.opensuse.org/opensuse-security-announce/2019-06/msg00084.html", + "http://lists.opensuse.org/opensuse-security-announce/2019-08/msg00038.html", + "http://lists.opensuse.org/opensuse-security-announce/2019-08/msg00044.html", + "http://packetstormsecurity.com/files/152561/Slackware-Security-Advisory-libpng-Updates.html", + "http://www.securityfocus.com/bid/108098", + "https://access.redhat.com/errata/RHSA-2019:1265", + "https://access.redhat.com/errata/RHSA-2019:1267", + "https://access.redhat.com/errata/RHSA-2019:1269", + "https://access.redhat.com/errata/RHSA-2019:1308", + "https://access.redhat.com/errata/RHSA-2019:1309", + "https://access.redhat.com/errata/RHSA-2019:1310", + "https://access.redhat.com/errata/RHSA-2019:2494", + "https://access.redhat.com/errata/RHSA-2019:2495", + "https://access.redhat.com/errata/RHSA-2019:2585", + "https://access.redhat.com/errata/RHSA-2019:2590", + "https://access.redhat.com/errata/RHSA-2019:2592", + "https://access.redhat.com/errata/RHSA-2019:2737", + "https://bugs.chromium.org/p/oss-fuzz/issues/detail?id=12803", + "https://github.com/glennrp/libpng/issues/275", + "https://lists.debian.org/debian-lts-announce/2019/05/msg00032.html", + "https://lists.debian.org/debian-lts-announce/2019/05/msg00038.html", + "https://seclists.org/bugtraq/2019/Apr/30", + "https://seclists.org/bugtraq/2019/Apr/36", + "https://seclists.org/bugtraq/2019/May/56", + "https://seclists.org/bugtraq/2019/May/59", + "https://seclists.org/bugtraq/2019/May/67", + "https://security.gentoo.org/glsa/201908-02", + "https://security.netapp.com/advisory/ntap-20190719-0005/", + "https://support.hpe.com/hpsc/doc/public/display?docLocale=en_US\u0026docId=emr_na-hpesbst03977en_us", + "https://usn.ubuntu.com/3962-1/", + "https://usn.ubuntu.com/3991-1/", + "https://usn.ubuntu.com/3997-1/", + "https://usn.ubuntu.com/4080-1/", + "https://usn.ubuntu.com/4083-1/", + "https://www.debian.org/security/2019/dsa-4435", + "https://www.debian.org/security/2019/dsa-4448", + "https://www.debian.org/security/2019/dsa-4451", + "https://www.oracle.com/security-alerts/cpuApr2021.html", + "https://www.oracle.com/security-alerts/cpuoct2021.html", + "https://www.oracle.com/technetwork/security-advisory/cpujul2019-5072835.html" + ], + "description": "png_image_free in png.c in libpng 1.6.x before 1.6.37 has a use-after-free because png_image_free_function is called under png_safe_execute.", + "cvss": null + } + ], + "matchDetails": [ + { + "type": "exact-indirect-match", + "matcher": "dpkg-matcher", + "searchedBy": { + "distro": { + "type": "debian", + "version": "9" + }, + "namespace": "debian:distro:debian:9", + "package": { + "name": "libpng1.6", + "version": "1.6.28-1" + } + }, + "found": { + "versionConstraint": "\u003c 1.6.28-1+deb9u1 (deb)", + "vulnerabilityID": "CVE-2019-7317" + } + } + ], + "artifact": { + "name": "libpng16-16", + "version": "1.6.28-1", + "type": "deb", + "locations": null, + "language": "", + "licenses": [ + "LicenseRef-BSD-like-with-advertising-clause", + "GPL-2.0-only", + "GPL-2.0-or-later", + "LicenseRef-expat", + "Libpng" + ], + "cpes": [ + "cpe:2.3:a:libpng16-16:libpng16-16:1.6.28-1:*:*:*:*:*:*:*", + "cpe:2.3:a:libpng16-16:libpng16_16:1.6.28-1:*:*:*:*:*:*:*", + "cpe:2.3:a:libpng16_16:libpng16-16:1.6.28-1:*:*:*:*:*:*:*", + "cpe:2.3:a:libpng16_16:libpng16_16:1.6.28-1:*:*:*:*:*:*:*", + "cpe:2.3:a:libpng16:libpng16-16:1.6.28-1:*:*:*:*:*:*:*", + "cpe:2.3:a:libpng16:libpng16_16:1.6.28-1:*:*:*:*:*:*:*" + ], + "purl": "pkg:deb/debian/libpng16-16@1.6.28-1?arch=amd64\u0026upstream=libpng1.6\u0026distro=debian-9", + "upstreams": [ + { + "name": "libpng1.6" + } + ], + "metadata": null + } + }, + { + "vulnerability": { + "id": "CVE-2019-7663", + "dataSource": "https://security-tracker.debian.org/tracker/CVE-2019-7663", + "namespace": "debian:distro:debian:9", + "severity": "Medium", + "urls": [ + "https://security-tracker.debian.org/tracker/CVE-2019-7663" + ], + "description": "An Invalid Address dereference was discovered in TIFFWriteDirectoryTagTransferfunction in libtiff/tif_dirwrite.c in LibTIFF 4.0.10, affecting the cpSeparateBufToContigBuf function in tiffcp.c. Remote attackers could leverage this vulnerability to cause a denial-of-service via a crafted tiff file. This is different from CVE-2018-12900.", + "cvss": null, + "fix": { + "versions": [ + "4.0.8-2+deb9u5" + ], + "state": "fixed" + }, + "advisories": [ + { + "id": "DSA-4670-1", + "link": "https://security-tracker.debian.org/tracker/DSA-4670-1" + } + ] + }, + "relatedVulnerabilities": [ + { + "id": "CVE-2019-7663", + "dataSource": "https://nvd.nist.gov/vuln/detail/CVE-2019-7663", + "namespace": "nvd:cpe", + "severity": "Medium", + "urls": [ + "http://bugzilla.maptools.org/show_bug.cgi?id=2833", + "http://lists.opensuse.org/opensuse-security-announce/2019-04/msg00041.html", + "https://gitlab.com/libtiff/libtiff/commit/802d3cbf3043be5dce5317e140ccb1c17a6a2d39", + "https://lists.debian.org/debian-lts-announce/2019/02/msg00026.html", + "https://security.gentoo.org/glsa/202003-25", + "https://usn.ubuntu.com/3906-1/", + "https://usn.ubuntu.com/3906-2/", + "https://www.debian.org/security/2020/dsa-4670" + ], + "description": "An Invalid Address dereference was discovered in TIFFWriteDirectoryTagTransferfunction in libtiff/tif_dirwrite.c in LibTIFF 4.0.10, affecting the cpSeparateBufToContigBuf function in tiffcp.c. Remote attackers could leverage this vulnerability to cause a denial-of-service via a crafted tiff file. This is different from CVE-2018-12900.", + "cvss": null + } + ], + "matchDetails": [ + { + "type": "exact-indirect-match", + "matcher": "dpkg-matcher", + "searchedBy": { + "distro": { + "type": "debian", + "version": "9" + }, + "namespace": "debian:distro:debian:9", + "package": { + "name": "tiff", + "version": "4.0.8-2+deb9u2" + } + }, + "found": { + "versionConstraint": "\u003c 4.0.8-2+deb9u5 (deb)", + "vulnerabilityID": "CVE-2019-7663" + } + } + ], + "artifact": { + "name": "libtiff5", + "version": "4.0.8-2+deb9u2", + "type": "deb", + "locations": null, + "language": "", + "licenses": [ + "LicenseRef-Hylafax" + ], + "cpes": [ + "cpe:2.3:a:libtiff5:libtiff5:4.0.8-2+deb9u2:*:*:*:*:*:*:*" + ], + "purl": "pkg:deb/debian/libtiff5@4.0.8-2+deb9u2?arch=amd64\u0026upstream=tiff\u0026distro=debian-9", + "upstreams": [ + { + "name": "tiff" + } + ], + "metadata": null + } + }, + { + "vulnerability": { + "id": "CVE-2019-8457", + "dataSource": "https://security-tracker.debian.org/tracker/CVE-2019-8457", + "namespace": "debian:distro:debian:9", + "severity": "Critical", + "urls": [ + "https://security-tracker.debian.org/tracker/CVE-2019-8457" + ], + "description": "SQLite3 from 3.6.0 to and including 3.27.2 is vulnerable to heap out-of-bound read in the rtreenode() function when handling invalid rtree tables.", + "cvss": null, + "fix": { + "versions": [], + "state": "wont-fix" + }, + "advisories": null + }, + "relatedVulnerabilities": [ + { + "id": "CVE-2019-8457", + "dataSource": "https://nvd.nist.gov/vuln/detail/CVE-2019-8457", + "namespace": "nvd:cpe", + "severity": "Critical", + "urls": [ + "http://lists.opensuse.org/opensuse-security-announce/2019-06/msg00074.html", + "https://kc.mcafee.com/corporate/index?page=content\u0026id=SB10365", + "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/OPKYSWCOM3CL66RI76TYVIG6TJ263RXH/", + "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/SJPFGA45DI4F5MCF2OAACGH3HQOF4G3M/", + "https://security.netapp.com/advisory/ntap-20190606-0002/", + "https://usn.ubuntu.com/4004-1/", + "https://usn.ubuntu.com/4004-2/", + "https://usn.ubuntu.com/4019-1/", + "https://usn.ubuntu.com/4019-2/", + "https://www.oracle.com/security-alerts/cpuapr2020.html", + "https://www.oracle.com/security-alerts/cpujan2020.html", + "https://www.oracle.com/security-alerts/cpujul2020.html", + "https://www.oracle.com/technetwork/security-advisory/cpuoct2019-5072832.html", + "https://www.sqlite.org/releaselog/3_28_0.html", + "https://www.sqlite.org/src/info/90acdbfce9c08858" + ], + "description": "SQLite3 from 3.6.0 to and including 3.27.2 is vulnerable to heap out-of-bound read in the rtreenode() function when handling invalid rtree tables.", + "cvss": null + } + ], + "matchDetails": [ + { + "type": "exact-indirect-match", + "matcher": "dpkg-matcher", + "searchedBy": { + "distro": { + "type": "debian", + "version": "9" + }, + "namespace": "debian:distro:debian:9", + "package": { + "name": "db5.3", + "version": "5.3.28-12+deb9u1" + } + }, + "found": { + "versionConstraint": "none (deb)", + "vulnerabilityID": "CVE-2019-8457" + } + } + ], + "artifact": { + "name": "libdb5.3", + "version": "5.3.28-12+deb9u1", + "type": "deb", + "locations": null, + "language": "", + "licenses": [], + "cpes": [ + "cpe:2.3:a:libdb5.3:libdb5.3:5.3.28-12+deb9u1:*:*:*:*:*:*:*" + ], + "purl": "pkg:deb/debian/libdb5.3@5.3.28-12+deb9u1?arch=amd64\u0026upstream=db5.3\u0026distro=debian-9", + "upstreams": [ + { + "name": "db5.3" + } + ], + "metadata": null + } + }, + { + "vulnerability": { + "id": "CVE-2019-9169", + "dataSource": "https://security-tracker.debian.org/tracker/CVE-2019-9169", + "namespace": "debian:distro:debian:9", + "severity": "Critical", + "urls": [ + "https://security-tracker.debian.org/tracker/CVE-2019-9169" + ], + "description": "In the GNU C Library (aka glibc or libc6) through 2.29, proceed_next_node in posix/regexec.c has a heap-based buffer over-read via an attempted case-insensitive regular-expression match.", + "cvss": null, + "fix": { + "versions": [], + "state": "wont-fix" + }, + "advisories": null + }, + "relatedVulnerabilities": [ + { + "id": "CVE-2019-9169", + "dataSource": "https://nvd.nist.gov/vuln/detail/CVE-2019-9169", + "namespace": "nvd:cpe", + "severity": "Critical", + "urls": [ + "http://www.securityfocus.com/bid/107160", + "https://debbugs.gnu.org/cgi/bugreport.cgi?bug=34140", + "https://debbugs.gnu.org/cgi/bugreport.cgi?bug=34142", + "https://kc.mcafee.com/corporate/index?page=content\u0026id=SB10278", + "https://security.gentoo.org/glsa/202006-04", + "https://security.netapp.com/advisory/ntap-20190315-0002/", + "https://sourceware.org/bugzilla/show_bug.cgi?id=24114", + "https://sourceware.org/git/gitweb.cgi?p=glibc.git;a=commit;h=583dd860d5b833037175247230a328f0050dbfe9", + "https://support.f5.com/csp/article/K54823184", + "https://usn.ubuntu.com/4416-1/", + "https://www.oracle.com/security-alerts/cpuapr2022.html" + ], + "description": "In the GNU C Library (aka glibc or libc6) through 2.29, proceed_next_node in posix/regexec.c has a heap-based buffer over-read via an attempted case-insensitive regular-expression match.", + "cvss": null + } + ], + "matchDetails": [ + { + "type": "exact-indirect-match", + "matcher": "dpkg-matcher", + "searchedBy": { + "distro": { + "type": "debian", + "version": "9" + }, + "namespace": "debian:distro:debian:9", + "package": { + "name": "glibc", + "version": "2.24-11+deb9u3" + } + }, + "found": { + "versionConstraint": "none (deb)", + "vulnerabilityID": "CVE-2019-9169" + } + } + ], + "artifact": { + "name": "libc-bin", + "version": "2.24-11+deb9u3", + "type": "deb", + "locations": null, + "language": "", + "licenses": [ + "GPL-2.0-only", + "LGPL-2.1-only" + ], + "cpes": [ + "cpe:2.3:a:libc-bin:libc-bin:2.24-11+deb9u3:*:*:*:*:*:*:*", + "cpe:2.3:a:libc-bin:libc_bin:2.24-11+deb9u3:*:*:*:*:*:*:*", + "cpe:2.3:a:libc_bin:libc-bin:2.24-11+deb9u3:*:*:*:*:*:*:*", + "cpe:2.3:a:libc_bin:libc_bin:2.24-11+deb9u3:*:*:*:*:*:*:*", + "cpe:2.3:a:libc:libc-bin:2.24-11+deb9u3:*:*:*:*:*:*:*", + "cpe:2.3:a:libc:libc_bin:2.24-11+deb9u3:*:*:*:*:*:*:*" + ], + "purl": "pkg:deb/debian/libc-bin@2.24-11+deb9u3?arch=amd64\u0026upstream=glibc\u0026distro=debian-9", + "upstreams": [ + { + "name": "glibc" + } + ], + "metadata": null + } + }, + { + "vulnerability": { + "id": "CVE-2019-9169", + "dataSource": "https://security-tracker.debian.org/tracker/CVE-2019-9169", + "namespace": "debian:distro:debian:9", + "severity": "Critical", + "urls": [ + "https://security-tracker.debian.org/tracker/CVE-2019-9169" + ], + "description": "In the GNU C Library (aka glibc or libc6) through 2.29, proceed_next_node in posix/regexec.c has a heap-based buffer over-read via an attempted case-insensitive regular-expression match.", + "cvss": null, + "fix": { + "versions": [], + "state": "wont-fix" + }, + "advisories": null + }, + "relatedVulnerabilities": [ + { + "id": "CVE-2019-9169", + "dataSource": "https://nvd.nist.gov/vuln/detail/CVE-2019-9169", + "namespace": "nvd:cpe", + "severity": "Critical", + "urls": [ + "http://www.securityfocus.com/bid/107160", + "https://debbugs.gnu.org/cgi/bugreport.cgi?bug=34140", + "https://debbugs.gnu.org/cgi/bugreport.cgi?bug=34142", + "https://kc.mcafee.com/corporate/index?page=content\u0026id=SB10278", + "https://security.gentoo.org/glsa/202006-04", + "https://security.netapp.com/advisory/ntap-20190315-0002/", + "https://sourceware.org/bugzilla/show_bug.cgi?id=24114", + "https://sourceware.org/git/gitweb.cgi?p=glibc.git;a=commit;h=583dd860d5b833037175247230a328f0050dbfe9", + "https://support.f5.com/csp/article/K54823184", + "https://usn.ubuntu.com/4416-1/", + "https://www.oracle.com/security-alerts/cpuapr2022.html" + ], + "description": "In the GNU C Library (aka glibc or libc6) through 2.29, proceed_next_node in posix/regexec.c has a heap-based buffer over-read via an attempted case-insensitive regular-expression match.", + "cvss": null + } + ], + "matchDetails": [ + { + "type": "exact-indirect-match", + "matcher": "dpkg-matcher", + "searchedBy": { + "distro": { + "type": "debian", + "version": "9" + }, + "namespace": "debian:distro:debian:9", + "package": { + "name": "glibc", + "version": "2.24-11+deb9u3" + } + }, + "found": { + "versionConstraint": "none (deb)", + "vulnerabilityID": "CVE-2019-9169" + } + } + ], + "artifact": { + "name": "libc6", + "version": "2.24-11+deb9u3", + "type": "deb", + "locations": null, + "language": "", + "licenses": [ + "GPL-2.0-only", + "LGPL-2.1-only" + ], + "cpes": [ + "cpe:2.3:a:libc6:libc6:2.24-11+deb9u3:*:*:*:*:*:*:*" + ], + "purl": "pkg:deb/debian/libc6@2.24-11+deb9u3?arch=amd64\u0026upstream=glibc\u0026distro=debian-9", + "upstreams": [ + { + "name": "glibc" + } + ], + "metadata": null + } + }, + { + "vulnerability": { + "id": "CVE-2019-9169", + "dataSource": "https://security-tracker.debian.org/tracker/CVE-2019-9169", + "namespace": "debian:distro:debian:9", + "severity": "Critical", + "urls": [ + "https://security-tracker.debian.org/tracker/CVE-2019-9169" + ], + "description": "In the GNU C Library (aka glibc or libc6) through 2.29, proceed_next_node in posix/regexec.c has a heap-based buffer over-read via an attempted case-insensitive regular-expression match.", + "cvss": null, + "fix": { + "versions": [], + "state": "wont-fix" + }, + "advisories": null + }, + "relatedVulnerabilities": [ + { + "id": "CVE-2019-9169", + "dataSource": "https://nvd.nist.gov/vuln/detail/CVE-2019-9169", + "namespace": "nvd:cpe", + "severity": "Critical", + "urls": [ + "http://www.securityfocus.com/bid/107160", + "https://debbugs.gnu.org/cgi/bugreport.cgi?bug=34140", + "https://debbugs.gnu.org/cgi/bugreport.cgi?bug=34142", + "https://kc.mcafee.com/corporate/index?page=content\u0026id=SB10278", + "https://security.gentoo.org/glsa/202006-04", + "https://security.netapp.com/advisory/ntap-20190315-0002/", + "https://sourceware.org/bugzilla/show_bug.cgi?id=24114", + "https://sourceware.org/git/gitweb.cgi?p=glibc.git;a=commit;h=583dd860d5b833037175247230a328f0050dbfe9", + "https://support.f5.com/csp/article/K54823184", + "https://usn.ubuntu.com/4416-1/", + "https://www.oracle.com/security-alerts/cpuapr2022.html" + ], + "description": "In the GNU C Library (aka glibc or libc6) through 2.29, proceed_next_node in posix/regexec.c has a heap-based buffer over-read via an attempted case-insensitive regular-expression match.", + "cvss": null + } + ], + "matchDetails": [ + { + "type": "exact-indirect-match", + "matcher": "dpkg-matcher", + "searchedBy": { + "distro": { + "type": "debian", + "version": "9" + }, + "namespace": "debian:distro:debian:9", + "package": { + "name": "glibc", + "version": "2.24-11+deb9u3" + } + }, + "found": { + "versionConstraint": "none (deb)", + "vulnerabilityID": "CVE-2019-9169" + } + } + ], + "artifact": { + "name": "multiarch-support", + "version": "2.24-11+deb9u3", + "type": "deb", + "locations": null, + "language": "", + "licenses": [ + "GPL-2.0-only", + "LGPL-2.1-only" + ], + "cpes": [ + "cpe:2.3:a:multiarch-support:multiarch-support:2.24-11+deb9u3:*:*:*:*:*:*:*", + "cpe:2.3:a:multiarch-support:multiarch_support:2.24-11+deb9u3:*:*:*:*:*:*:*", + "cpe:2.3:a:multiarch_support:multiarch-support:2.24-11+deb9u3:*:*:*:*:*:*:*", + "cpe:2.3:a:multiarch_support:multiarch_support:2.24-11+deb9u3:*:*:*:*:*:*:*", + "cpe:2.3:a:multiarch:multiarch-support:2.24-11+deb9u3:*:*:*:*:*:*:*", + "cpe:2.3:a:multiarch:multiarch_support:2.24-11+deb9u3:*:*:*:*:*:*:*" + ], + "purl": "pkg:deb/debian/multiarch-support@2.24-11+deb9u3?arch=amd64\u0026upstream=glibc\u0026distro=debian-9", + "upstreams": [ + { + "name": "glibc" + } + ], + "metadata": null + } + }, + { + "vulnerability": { + "id": "CVE-2019-9192", + "dataSource": "https://security-tracker.debian.org/tracker/CVE-2019-9192", + "namespace": "debian:distro:debian:9", + "severity": "Negligible", + "urls": [ + "https://security-tracker.debian.org/tracker/CVE-2019-9192" + ], + "description": "** DISPUTED ** In the GNU C Library (aka glibc or libc6) through 2.29, check_dst_limits_calc_pos_1 in posix/regexec.c has Uncontrolled Recursion, as demonstrated by '(|)(\\\\1\\\\1)*' in grep, a different issue than CVE-2018-20796. NOTE: the software maintainer disputes that this is a vulnerability because the behavior occurs only with a crafted pattern.", + "cvss": null, + "fix": { + "versions": [], + "state": "not-fixed" + }, + "advisories": null + }, + "relatedVulnerabilities": [ + { + "id": "CVE-2019-9192", + "dataSource": "https://nvd.nist.gov/vuln/detail/CVE-2019-9192", + "namespace": "nvd:cpe", + "severity": "High", + "urls": [ + "https://sourceware.org/bugzilla/show_bug.cgi?id=24269", + "https://support.f5.com/csp/article/K26346590?utm_source=f5support\u0026amp;utm_medium=RSS" + ], + "description": "** DISPUTED ** In the GNU C Library (aka glibc or libc6) through 2.29, check_dst_limits_calc_pos_1 in posix/regexec.c has Uncontrolled Recursion, as demonstrated by '(|)(\\\\1\\\\1)*' in grep, a different issue than CVE-2018-20796. NOTE: the software maintainer disputes that this is a vulnerability because the behavior occurs only with a crafted pattern.", + "cvss": null + } + ], + "matchDetails": [ + { + "type": "exact-indirect-match", + "matcher": "dpkg-matcher", + "searchedBy": { + "distro": { + "type": "debian", + "version": "9" + }, + "namespace": "debian:distro:debian:9", + "package": { + "name": "glibc", + "version": "2.24-11+deb9u3" + } + }, + "found": { + "versionConstraint": "none (deb)", + "vulnerabilityID": "CVE-2019-9192" + } + } + ], + "artifact": { + "name": "libc-bin", + "version": "2.24-11+deb9u3", + "type": "deb", + "locations": null, + "language": "", + "licenses": [ + "GPL-2.0-only", + "LGPL-2.1-only" + ], + "cpes": [ + "cpe:2.3:a:libc-bin:libc-bin:2.24-11+deb9u3:*:*:*:*:*:*:*", + "cpe:2.3:a:libc-bin:libc_bin:2.24-11+deb9u3:*:*:*:*:*:*:*", + "cpe:2.3:a:libc_bin:libc-bin:2.24-11+deb9u3:*:*:*:*:*:*:*", + "cpe:2.3:a:libc_bin:libc_bin:2.24-11+deb9u3:*:*:*:*:*:*:*", + "cpe:2.3:a:libc:libc-bin:2.24-11+deb9u3:*:*:*:*:*:*:*", + "cpe:2.3:a:libc:libc_bin:2.24-11+deb9u3:*:*:*:*:*:*:*" + ], + "purl": "pkg:deb/debian/libc-bin@2.24-11+deb9u3?arch=amd64\u0026upstream=glibc\u0026distro=debian-9", + "upstreams": [ + { + "name": "glibc" + } + ], + "metadata": null + } + }, + { + "vulnerability": { + "id": "CVE-2019-9192", + "dataSource": "https://security-tracker.debian.org/tracker/CVE-2019-9192", + "namespace": "debian:distro:debian:9", + "severity": "Negligible", + "urls": [ + "https://security-tracker.debian.org/tracker/CVE-2019-9192" + ], + "description": "** DISPUTED ** In the GNU C Library (aka glibc or libc6) through 2.29, check_dst_limits_calc_pos_1 in posix/regexec.c has Uncontrolled Recursion, as demonstrated by '(|)(\\\\1\\\\1)*' in grep, a different issue than CVE-2018-20796. NOTE: the software maintainer disputes that this is a vulnerability because the behavior occurs only with a crafted pattern.", + "cvss": null, + "fix": { + "versions": [], + "state": "not-fixed" + }, + "advisories": null + }, + "relatedVulnerabilities": [ + { + "id": "CVE-2019-9192", + "dataSource": "https://nvd.nist.gov/vuln/detail/CVE-2019-9192", + "namespace": "nvd:cpe", + "severity": "High", + "urls": [ + "https://sourceware.org/bugzilla/show_bug.cgi?id=24269", + "https://support.f5.com/csp/article/K26346590?utm_source=f5support\u0026amp;utm_medium=RSS" + ], + "description": "** DISPUTED ** In the GNU C Library (aka glibc or libc6) through 2.29, check_dst_limits_calc_pos_1 in posix/regexec.c has Uncontrolled Recursion, as demonstrated by '(|)(\\\\1\\\\1)*' in grep, a different issue than CVE-2018-20796. NOTE: the software maintainer disputes that this is a vulnerability because the behavior occurs only with a crafted pattern.", + "cvss": null + } + ], + "matchDetails": [ + { + "type": "exact-indirect-match", + "matcher": "dpkg-matcher", + "searchedBy": { + "distro": { + "type": "debian", + "version": "9" + }, + "namespace": "debian:distro:debian:9", + "package": { + "name": "glibc", + "version": "2.24-11+deb9u3" + } + }, + "found": { + "versionConstraint": "none (deb)", + "vulnerabilityID": "CVE-2019-9192" + } + } + ], + "artifact": { + "name": "libc6", + "version": "2.24-11+deb9u3", + "type": "deb", + "locations": null, + "language": "", + "licenses": [ + "GPL-2.0-only", + "LGPL-2.1-only" + ], + "cpes": [ + "cpe:2.3:a:libc6:libc6:2.24-11+deb9u3:*:*:*:*:*:*:*" + ], + "purl": "pkg:deb/debian/libc6@2.24-11+deb9u3?arch=amd64\u0026upstream=glibc\u0026distro=debian-9", + "upstreams": [ + { + "name": "glibc" + } + ], + "metadata": null + } + }, + { + "vulnerability": { + "id": "CVE-2019-9192", + "dataSource": "https://security-tracker.debian.org/tracker/CVE-2019-9192", + "namespace": "debian:distro:debian:9", + "severity": "Negligible", + "urls": [ + "https://security-tracker.debian.org/tracker/CVE-2019-9192" + ], + "description": "** DISPUTED ** In the GNU C Library (aka glibc or libc6) through 2.29, check_dst_limits_calc_pos_1 in posix/regexec.c has Uncontrolled Recursion, as demonstrated by '(|)(\\\\1\\\\1)*' in grep, a different issue than CVE-2018-20796. NOTE: the software maintainer disputes that this is a vulnerability because the behavior occurs only with a crafted pattern.", + "cvss": null, + "fix": { + "versions": [], + "state": "not-fixed" + }, + "advisories": null + }, + "relatedVulnerabilities": [ + { + "id": "CVE-2019-9192", + "dataSource": "https://nvd.nist.gov/vuln/detail/CVE-2019-9192", + "namespace": "nvd:cpe", + "severity": "High", + "urls": [ + "https://sourceware.org/bugzilla/show_bug.cgi?id=24269", + "https://support.f5.com/csp/article/K26346590?utm_source=f5support\u0026amp;utm_medium=RSS" + ], + "description": "** DISPUTED ** In the GNU C Library (aka glibc or libc6) through 2.29, check_dst_limits_calc_pos_1 in posix/regexec.c has Uncontrolled Recursion, as demonstrated by '(|)(\\\\1\\\\1)*' in grep, a different issue than CVE-2018-20796. NOTE: the software maintainer disputes that this is a vulnerability because the behavior occurs only with a crafted pattern.", + "cvss": null + } + ], + "matchDetails": [ + { + "type": "exact-indirect-match", + "matcher": "dpkg-matcher", + "searchedBy": { + "distro": { + "type": "debian", + "version": "9" + }, + "namespace": "debian:distro:debian:9", + "package": { + "name": "glibc", + "version": "2.24-11+deb9u3" + } + }, + "found": { + "versionConstraint": "none (deb)", + "vulnerabilityID": "CVE-2019-9192" + } + } + ], + "artifact": { + "name": "multiarch-support", + "version": "2.24-11+deb9u3", + "type": "deb", + "locations": null, + "language": "", + "licenses": [ + "GPL-2.0-only", + "LGPL-2.1-only" + ], + "cpes": [ + "cpe:2.3:a:multiarch-support:multiarch-support:2.24-11+deb9u3:*:*:*:*:*:*:*", + "cpe:2.3:a:multiarch-support:multiarch_support:2.24-11+deb9u3:*:*:*:*:*:*:*", + "cpe:2.3:a:multiarch_support:multiarch-support:2.24-11+deb9u3:*:*:*:*:*:*:*", + "cpe:2.3:a:multiarch_support:multiarch_support:2.24-11+deb9u3:*:*:*:*:*:*:*", + "cpe:2.3:a:multiarch:multiarch-support:2.24-11+deb9u3:*:*:*:*:*:*:*", + "cpe:2.3:a:multiarch:multiarch_support:2.24-11+deb9u3:*:*:*:*:*:*:*" + ], + "purl": "pkg:deb/debian/multiarch-support@2.24-11+deb9u3?arch=amd64\u0026upstream=glibc\u0026distro=debian-9", + "upstreams": [ + { + "name": "glibc" + } + ], + "metadata": null + } + }, + { + "vulnerability": { + "id": "CVE-2019-9923", + "dataSource": "https://security-tracker.debian.org/tracker/CVE-2019-9923", + "namespace": "debian:distro:debian:9", + "severity": "Negligible", + "urls": [ + "https://security-tracker.debian.org/tracker/CVE-2019-9923" + ], + "description": "pax_decode_header in sparse.c in GNU Tar before 1.32 had a NULL pointer dereference when parsing certain archives that have malformed extended headers.", + "cvss": null, + "fix": { + "versions": [], + "state": "not-fixed" + }, + "advisories": null + }, + "relatedVulnerabilities": [ + { + "id": "CVE-2019-9923", + "dataSource": "https://nvd.nist.gov/vuln/detail/CVE-2019-9923", + "namespace": "nvd:cpe", + "severity": "High", + "urls": [ + "http://git.savannah.gnu.org/cgit/tar.git/commit/?id=cb07844454d8cc9fb21f53ace75975f91185a120", + "http://lists.opensuse.org/opensuse-security-announce/2019-04/msg00077.html", + "http://savannah.gnu.org/bugs/?55369", + "https://bugs.launchpad.net/ubuntu/+source/tar/+bug/1810241", + "https://lists.apache.org/thread.html/r58af02e294bd07f487e2c64ffc0a29b837db5600e33b6e698b9d696b@%3Cissues.bookkeeper.apache.org%3E", + "https://lists.apache.org/thread.html/rf4c02775860db415b4955778a131c2795223f61cb8c6a450893651e4@%3Cissues.bookkeeper.apache.org%3E" + ], + "description": "pax_decode_header in sparse.c in GNU Tar before 1.32 had a NULL pointer dereference when parsing certain archives that have malformed extended headers.", + "cvss": null + } + ], + "matchDetails": [ + { + "type": "exact-direct-match", + "matcher": "dpkg-matcher", + "searchedBy": { + "distro": { + "type": "debian", + "version": "9" + }, + "namespace": "debian:distro:debian:9", + "package": { + "name": "tar", + "version": "1.29b-1.1" + } + }, + "found": { + "versionConstraint": "none (deb)", + "vulnerabilityID": "CVE-2019-9923" + } + } + ], + "artifact": { + "name": "tar", + "version": "1.29b-1.1", + "type": "deb", + "locations": null, + "language": "", + "licenses": [ + "GPL-2.0-only", + "GPL-3.0-only" + ], + "cpes": [ + "cpe:2.3:a:tar:tar:1.29b-1.1:*:*:*:*:*:*:*" + ], + "purl": "pkg:deb/debian/tar@1.29b-1.1?arch=amd64\u0026distro=debian-9", + "upstreams": null, + "metadata": null + } + }, + { + "vulnerability": { + "id": "CVE-2020-10029", + "dataSource": "https://security-tracker.debian.org/tracker/CVE-2020-10029", + "namespace": "debian:distro:debian:9", + "severity": "Medium", + "urls": [ + "https://security-tracker.debian.org/tracker/CVE-2020-10029" + ], + "description": "The GNU C Library (aka glibc or libc6) before 2.32 could overflow an on-stack buffer during range reduction if an input to an 80-bit long double function contains a non-canonical bit pattern, a seen when passing a 0x5d414141414141410000 value to sinl on x86 targets. This is related to sysdeps/ieee754/ldbl-96/e_rem_pio2l.c.", + "cvss": null, + "fix": { + "versions": [], + "state": "wont-fix" + }, + "advisories": null + }, + "relatedVulnerabilities": [ + { + "id": "CVE-2020-10029", + "dataSource": "https://nvd.nist.gov/vuln/detail/CVE-2020-10029", + "namespace": "nvd:cpe", + "severity": "Medium", + "urls": [ + "http://lists.opensuse.org/opensuse-security-announce/2020-03/msg00033.html", + "https://lists.debian.org/debian-lts-announce/2022/10/msg00021.html", + "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/23N76M3EDP2GIW4GOIQRYTKRE7PPBRB2/", + "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/JZTFUD5VH2GU3YOXA2KBQSBIDZRDWNZ3/", + "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/VU5JJGENOK7K4X5RYAA5PL647C6HD22E/", + "https://security.gentoo.org/glsa/202006-04", + "https://security.netapp.com/advisory/ntap-20200327-0003/", + "https://sourceware.org/bugzilla/show_bug.cgi?id=25487", + "https://sourceware.org/git/gitweb.cgi?p=glibc.git;a=commit;h=9333498794cde1d5cca518badf79533a24114b6f", + "https://usn.ubuntu.com/4416-1/" + ], + "description": "The GNU C Library (aka glibc or libc6) before 2.32 could overflow an on-stack buffer during range reduction if an input to an 80-bit long double function contains a non-canonical bit pattern, a seen when passing a 0x5d414141414141410000 value to sinl on x86 targets. This is related to sysdeps/ieee754/ldbl-96/e_rem_pio2l.c.", + "cvss": null + } + ], + "matchDetails": [ + { + "type": "exact-indirect-match", + "matcher": "dpkg-matcher", + "searchedBy": { + "distro": { + "type": "debian", + "version": "9" + }, + "namespace": "debian:distro:debian:9", + "package": { + "name": "glibc", + "version": "2.24-11+deb9u3" + } + }, + "found": { + "versionConstraint": "none (deb)", + "vulnerabilityID": "CVE-2020-10029" + } + } + ], + "artifact": { + "name": "libc-bin", + "version": "2.24-11+deb9u3", + "type": "deb", + "locations": null, + "language": "", + "licenses": [ + "GPL-2.0-only", + "LGPL-2.1-only" + ], + "cpes": [ + "cpe:2.3:a:libc-bin:libc-bin:2.24-11+deb9u3:*:*:*:*:*:*:*", + "cpe:2.3:a:libc-bin:libc_bin:2.24-11+deb9u3:*:*:*:*:*:*:*", + "cpe:2.3:a:libc_bin:libc-bin:2.24-11+deb9u3:*:*:*:*:*:*:*", + "cpe:2.3:a:libc_bin:libc_bin:2.24-11+deb9u3:*:*:*:*:*:*:*", + "cpe:2.3:a:libc:libc-bin:2.24-11+deb9u3:*:*:*:*:*:*:*", + "cpe:2.3:a:libc:libc_bin:2.24-11+deb9u3:*:*:*:*:*:*:*" + ], + "purl": "pkg:deb/debian/libc-bin@2.24-11+deb9u3?arch=amd64\u0026upstream=glibc\u0026distro=debian-9", + "upstreams": [ + { + "name": "glibc" + } + ], + "metadata": null + } + }, + { + "vulnerability": { + "id": "CVE-2020-10029", + "dataSource": "https://security-tracker.debian.org/tracker/CVE-2020-10029", + "namespace": "debian:distro:debian:9", + "severity": "Medium", + "urls": [ + "https://security-tracker.debian.org/tracker/CVE-2020-10029" + ], + "description": "The GNU C Library (aka glibc or libc6) before 2.32 could overflow an on-stack buffer during range reduction if an input to an 80-bit long double function contains a non-canonical bit pattern, a seen when passing a 0x5d414141414141410000 value to sinl on x86 targets. This is related to sysdeps/ieee754/ldbl-96/e_rem_pio2l.c.", + "cvss": null, + "fix": { + "versions": [], + "state": "wont-fix" + }, + "advisories": null + }, + "relatedVulnerabilities": [ + { + "id": "CVE-2020-10029", + "dataSource": "https://nvd.nist.gov/vuln/detail/CVE-2020-10029", + "namespace": "nvd:cpe", + "severity": "Medium", + "urls": [ + "http://lists.opensuse.org/opensuse-security-announce/2020-03/msg00033.html", + "https://lists.debian.org/debian-lts-announce/2022/10/msg00021.html", + "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/23N76M3EDP2GIW4GOIQRYTKRE7PPBRB2/", + "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/JZTFUD5VH2GU3YOXA2KBQSBIDZRDWNZ3/", + "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/VU5JJGENOK7K4X5RYAA5PL647C6HD22E/", + "https://security.gentoo.org/glsa/202006-04", + "https://security.netapp.com/advisory/ntap-20200327-0003/", + "https://sourceware.org/bugzilla/show_bug.cgi?id=25487", + "https://sourceware.org/git/gitweb.cgi?p=glibc.git;a=commit;h=9333498794cde1d5cca518badf79533a24114b6f", + "https://usn.ubuntu.com/4416-1/" + ], + "description": "The GNU C Library (aka glibc or libc6) before 2.32 could overflow an on-stack buffer during range reduction if an input to an 80-bit long double function contains a non-canonical bit pattern, a seen when passing a 0x5d414141414141410000 value to sinl on x86 targets. This is related to sysdeps/ieee754/ldbl-96/e_rem_pio2l.c.", + "cvss": null + } + ], + "matchDetails": [ + { + "type": "exact-indirect-match", + "matcher": "dpkg-matcher", + "searchedBy": { + "distro": { + "type": "debian", + "version": "9" + }, + "namespace": "debian:distro:debian:9", + "package": { + "name": "glibc", + "version": "2.24-11+deb9u3" + } + }, + "found": { + "versionConstraint": "none (deb)", + "vulnerabilityID": "CVE-2020-10029" + } + } + ], + "artifact": { + "name": "libc6", + "version": "2.24-11+deb9u3", + "type": "deb", + "locations": null, + "language": "", + "licenses": [ + "GPL-2.0-only", + "LGPL-2.1-only" + ], + "cpes": [ + "cpe:2.3:a:libc6:libc6:2.24-11+deb9u3:*:*:*:*:*:*:*" + ], + "purl": "pkg:deb/debian/libc6@2.24-11+deb9u3?arch=amd64\u0026upstream=glibc\u0026distro=debian-9", + "upstreams": [ + { + "name": "glibc" + } + ], + "metadata": null + } + }, + { + "vulnerability": { + "id": "CVE-2020-10029", + "dataSource": "https://security-tracker.debian.org/tracker/CVE-2020-10029", + "namespace": "debian:distro:debian:9", + "severity": "Medium", + "urls": [ + "https://security-tracker.debian.org/tracker/CVE-2020-10029" + ], + "description": "The GNU C Library (aka glibc or libc6) before 2.32 could overflow an on-stack buffer during range reduction if an input to an 80-bit long double function contains a non-canonical bit pattern, a seen when passing a 0x5d414141414141410000 value to sinl on x86 targets. This is related to sysdeps/ieee754/ldbl-96/e_rem_pio2l.c.", + "cvss": null, + "fix": { + "versions": [], + "state": "wont-fix" + }, + "advisories": null + }, + "relatedVulnerabilities": [ + { + "id": "CVE-2020-10029", + "dataSource": "https://nvd.nist.gov/vuln/detail/CVE-2020-10029", + "namespace": "nvd:cpe", + "severity": "Medium", + "urls": [ + "http://lists.opensuse.org/opensuse-security-announce/2020-03/msg00033.html", + "https://lists.debian.org/debian-lts-announce/2022/10/msg00021.html", + "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/23N76M3EDP2GIW4GOIQRYTKRE7PPBRB2/", + "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/JZTFUD5VH2GU3YOXA2KBQSBIDZRDWNZ3/", + "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/VU5JJGENOK7K4X5RYAA5PL647C6HD22E/", + "https://security.gentoo.org/glsa/202006-04", + "https://security.netapp.com/advisory/ntap-20200327-0003/", + "https://sourceware.org/bugzilla/show_bug.cgi?id=25487", + "https://sourceware.org/git/gitweb.cgi?p=glibc.git;a=commit;h=9333498794cde1d5cca518badf79533a24114b6f", + "https://usn.ubuntu.com/4416-1/" + ], + "description": "The GNU C Library (aka glibc or libc6) before 2.32 could overflow an on-stack buffer during range reduction if an input to an 80-bit long double function contains a non-canonical bit pattern, a seen when passing a 0x5d414141414141410000 value to sinl on x86 targets. This is related to sysdeps/ieee754/ldbl-96/e_rem_pio2l.c.", + "cvss": null + } + ], + "matchDetails": [ + { + "type": "exact-indirect-match", + "matcher": "dpkg-matcher", + "searchedBy": { + "distro": { + "type": "debian", + "version": "9" + }, + "namespace": "debian:distro:debian:9", + "package": { + "name": "glibc", + "version": "2.24-11+deb9u3" + } + }, + "found": { + "versionConstraint": "none (deb)", + "vulnerabilityID": "CVE-2020-10029" + } + } + ], + "artifact": { + "name": "multiarch-support", + "version": "2.24-11+deb9u3", + "type": "deb", + "locations": null, + "language": "", + "licenses": [ + "GPL-2.0-only", + "LGPL-2.1-only" + ], + "cpes": [ + "cpe:2.3:a:multiarch-support:multiarch-support:2.24-11+deb9u3:*:*:*:*:*:*:*", + "cpe:2.3:a:multiarch-support:multiarch_support:2.24-11+deb9u3:*:*:*:*:*:*:*", + "cpe:2.3:a:multiarch_support:multiarch-support:2.24-11+deb9u3:*:*:*:*:*:*:*", + "cpe:2.3:a:multiarch_support:multiarch_support:2.24-11+deb9u3:*:*:*:*:*:*:*", + "cpe:2.3:a:multiarch:multiarch-support:2.24-11+deb9u3:*:*:*:*:*:*:*", + "cpe:2.3:a:multiarch:multiarch_support:2.24-11+deb9u3:*:*:*:*:*:*:*" + ], + "purl": "pkg:deb/debian/multiarch-support@2.24-11+deb9u3?arch=amd64\u0026upstream=glibc\u0026distro=debian-9", + "upstreams": [ + { + "name": "glibc" + } + ], + "metadata": null + } + }, + { + "vulnerability": { + "id": "CVE-2020-10531", + "dataSource": "https://security-tracker.debian.org/tracker/CVE-2020-10531", + "namespace": "debian:distro:debian:9", + "severity": "High", + "urls": [ + "https://security-tracker.debian.org/tracker/CVE-2020-10531" + ], + "description": "An issue was discovered in International Components for Unicode (ICU) for C/C++ through 66.1. An integer overflow, leading to a heap-based buffer overflow, exists in the UnicodeString::doAppend() function in common/unistr.cpp.", + "cvss": null, + "fix": { + "versions": [ + "57.1-6+deb9u4" + ], + "state": "fixed" + }, + "advisories": [ + { + "id": "DSA-4646-1", + "link": "https://security-tracker.debian.org/tracker/DSA-4646-1" + } + ] + }, + "relatedVulnerabilities": [ + { + "id": "CVE-2020-10531", + "dataSource": "https://nvd.nist.gov/vuln/detail/CVE-2020-10531", + "namespace": "nvd:cpe", + "severity": "High", + "urls": [ + "http://lists.opensuse.org/opensuse-security-announce/2020-04/msg00004.html", + "https://access.redhat.com/errata/RHSA-2020:0738", + "https://bugs.chromium.org/p/chromium/issues/detail?id=1044570", + "https://chromereleases.googleblog.com/2020/02/stable-channel-update-for-desktop_24.html", + "https://chromium.googlesource.com/chromium/deps/icu/+/9f4020916eb1f28f3666f018fdcbe6c9a37f0e08", + "https://github.com/unicode-org/icu/commit/b7d08bc04a4296982fcef8b6b8a354a9e4e7afca", + "https://github.com/unicode-org/icu/pull/971", + "https://lists.debian.org/debian-lts-announce/2020/03/msg00024.html", + "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/4OOYAMJVLLCLXDTHW3V5UXNULZBBK4O6/", + "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/6IOHSO6BUKC6I66J5PZOMAGFVJ66ZS57/", + "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/X3B5RWJQD5LA45MYLLR55KZJOJ5NVZGP/", + "https://security.gentoo.org/glsa/202003-15", + "https://unicode-org.atlassian.net/browse/ICU-20958", + "https://usn.ubuntu.com/4305-1/", + "https://www.debian.org/security/2020/dsa-4646", + "https://www.oracle.com//security-alerts/cpujul2021.html", + "https://www.oracle.com/security-alerts/cpuapr2022.html", + "https://www.oracle.com/security-alerts/cpujan2021.html" + ], + "description": "An issue was discovered in International Components for Unicode (ICU) for C/C++ through 66.1. An integer overflow, leading to a heap-based buffer overflow, exists in the UnicodeString::doAppend() function in common/unistr.cpp.", + "cvss": null + } + ], + "matchDetails": [ + { + "type": "exact-indirect-match", + "matcher": "dpkg-matcher", + "searchedBy": { + "distro": { + "type": "debian", + "version": "9" + }, + "namespace": "debian:distro:debian:9", + "package": { + "name": "icu", + "version": "57.1-6+deb9u2" + } + }, + "found": { + "versionConstraint": "\u003c 57.1-6+deb9u4 (deb)", + "vulnerabilityID": "CVE-2020-10531" + } + } + ], + "artifact": { + "name": "libicu57", + "version": "57.1-6+deb9u2", + "type": "deb", + "locations": null, + "language": "", + "licenses": [], + "cpes": [ + "cpe:2.3:a:libicu57:libicu57:57.1-6+deb9u2:*:*:*:*:*:*:*" + ], + "purl": "pkg:deb/debian/libicu57@57.1-6+deb9u2?arch=amd64\u0026upstream=icu\u0026distro=debian-9", + "upstreams": [ + { + "name": "icu" + } + ], + "metadata": null + } + }, + { + "vulnerability": { + "id": "CVE-2020-10543", + "dataSource": "https://security-tracker.debian.org/tracker/CVE-2020-10543", + "namespace": "debian:distro:debian:9", + "severity": "High", + "urls": [ + "https://security-tracker.debian.org/tracker/CVE-2020-10543" + ], + "description": "Perl before 5.30.3 on 32-bit platforms allows a heap-based buffer overflow because nested regular expression quantifiers have an integer overflow.", + "cvss": null, + "fix": { + "versions": [ + "5.24.1-3+deb9u7" + ], + "state": "fixed" + }, + "advisories": null + }, + "relatedVulnerabilities": [ + { + "id": "CVE-2020-10543", + "dataSource": "https://nvd.nist.gov/vuln/detail/CVE-2020-10543", + "namespace": "nvd:cpe", + "severity": "High", + "urls": [ + "http://lists.opensuse.org/opensuse-security-announce/2020-06/msg00044.html", + "https://github.com/Perl/perl5/blob/blead/pod/perl5303delta.pod", + "https://github.com/Perl/perl5/compare/v5.30.2...v5.30.3", + "https://github.com/perl/perl5/commit/897d1f7fd515b828e4b198d8b8bef76c6faf03ed", + "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/IN3TTBO5KSGWE5IRIKDJ5JSQRH7ANNXE/", + "https://security.gentoo.org/glsa/202006-03", + "https://security.netapp.com/advisory/ntap-20200611-0001/", + "https://www.oracle.com//security-alerts/cpujul2021.html", + "https://www.oracle.com/security-alerts/cpuApr2021.html", + "https://www.oracle.com/security-alerts/cpuapr2022.html", + "https://www.oracle.com/security-alerts/cpujan2021.html", + "https://www.oracle.com/security-alerts/cpujan2022.html", + "https://www.oracle.com/security-alerts/cpuoct2020.html", + "https://www.oracle.com/security-alerts/cpuoct2021.html" + ], + "description": "Perl before 5.30.3 on 32-bit platforms allows a heap-based buffer overflow because nested regular expression quantifiers have an integer overflow.", + "cvss": null + } + ], + "matchDetails": [ + { + "type": "exact-indirect-match", + "matcher": "dpkg-matcher", + "searchedBy": { + "distro": { + "type": "debian", + "version": "9" + }, + "namespace": "debian:distro:debian:9", + "package": { + "name": "perl", + "version": "5.24.1-3+deb9u4" + } + }, + "found": { + "versionConstraint": "\u003c 5.24.1-3+deb9u7 (deb)", + "vulnerabilityID": "CVE-2020-10543" + } + } + ], + "artifact": { + "name": "perl-base", + "version": "5.24.1-3+deb9u4", + "type": "deb", + "locations": null, + "language": "", + "licenses": [ + "LicenseRef-Artistic", + "Artistic-2.0", + "BSD-3-Clause", + "LicenseRef-BSD-3-clause-GENERIC", + "LicenseRef-BSD-3-clause-with-weird-numbering", + "LicenseRef-BSD-4-clause-POWERDOG", + "LicenseRef-BZIP", + "LicenseRef-DONT-CHANGE-THE-GPL", + "LicenseRef-Expat", + "GPL-1.0-only", + "GPL-1.0-or-later", + "GPL-2.0-only", + "GPL-2.0-or-later", + "LicenseRef-GPL-3--WITH-BISON-EXCEPTION", + "LicenseRef-HSIEH-BSD", + "LicenseRef-HSIEH-DERIVATIVE", + "LGPL-2.1-only", + "LicenseRef-REGCOMP", + "LicenseRef-REGCOMP-", + "LicenseRef-RRA-KEEP-THIS-NOTICE", + "LicenseRef-S2P", + "LicenseRef-SDBM-PUBLIC-DOMAIN", + "LicenseRef-TEXT-TABS", + "LicenseRef-Unicode", + "Zlib" + ], + "cpes": [ + "cpe:2.3:a:perl-base:perl-base:5.24.1-3+deb9u4:*:*:*:*:*:*:*", + "cpe:2.3:a:perl-base:perl_base:5.24.1-3+deb9u4:*:*:*:*:*:*:*", + "cpe:2.3:a:perl_base:perl-base:5.24.1-3+deb9u4:*:*:*:*:*:*:*", + "cpe:2.3:a:perl_base:perl_base:5.24.1-3+deb9u4:*:*:*:*:*:*:*", + "cpe:2.3:a:perl:perl-base:5.24.1-3+deb9u4:*:*:*:*:*:*:*", + "cpe:2.3:a:perl:perl_base:5.24.1-3+deb9u4:*:*:*:*:*:*:*" + ], + "purl": "pkg:deb/debian/perl-base@5.24.1-3+deb9u4?arch=amd64\u0026upstream=perl\u0026distro=debian-9", + "upstreams": [ + { + "name": "perl" + } + ], + "metadata": null + } + }, + { + "vulnerability": { + "id": "CVE-2020-10878", + "dataSource": "https://security-tracker.debian.org/tracker/CVE-2020-10878", + "namespace": "debian:distro:debian:9", + "severity": "High", + "urls": [ + "https://security-tracker.debian.org/tracker/CVE-2020-10878" + ], + "description": "Perl before 5.30.3 has an integer overflow related to mishandling of a \"PL_regkind[OP(n)] == NOTHING\" situation. A crafted regular expression could lead to malformed bytecode with a possibility of instruction injection.", + "cvss": null, + "fix": { + "versions": [ + "5.24.1-3+deb9u7" + ], + "state": "fixed" + }, + "advisories": null + }, + "relatedVulnerabilities": [ + { + "id": "CVE-2020-10878", + "dataSource": "https://nvd.nist.gov/vuln/detail/CVE-2020-10878", + "namespace": "nvd:cpe", + "severity": "High", + "urls": [ + "http://lists.opensuse.org/opensuse-security-announce/2020-06/msg00044.html", + "https://github.com/Perl/perl5/blob/blead/pod/perl5303delta.pod", + "https://github.com/Perl/perl5/compare/v5.30.2...v5.30.3", + "https://github.com/perl/perl5/commit/0a320d753fe7fca03df259a4dfd8e641e51edaa8", + "https://github.com/perl/perl5/commit/3295b48defa0f8570114877b063fe546dd348b3c", + "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/IN3TTBO5KSGWE5IRIKDJ5JSQRH7ANNXE/", + "https://security.gentoo.org/glsa/202006-03", + "https://security.netapp.com/advisory/ntap-20200611-0001/", + "https://www.oracle.com//security-alerts/cpujul2021.html", + "https://www.oracle.com/security-alerts/cpuApr2021.html", + "https://www.oracle.com/security-alerts/cpuapr2022.html", + "https://www.oracle.com/security-alerts/cpujan2021.html", + "https://www.oracle.com/security-alerts/cpujan2022.html", + "https://www.oracle.com/security-alerts/cpuoct2020.html", + "https://www.oracle.com/security-alerts/cpuoct2021.html" + ], + "description": "Perl before 5.30.3 has an integer overflow related to mishandling of a \"PL_regkind[OP(n)] == NOTHING\" situation. A crafted regular expression could lead to malformed bytecode with a possibility of instruction injection.", + "cvss": null + } + ], + "matchDetails": [ + { + "type": "exact-indirect-match", + "matcher": "dpkg-matcher", + "searchedBy": { + "distro": { + "type": "debian", + "version": "9" + }, + "namespace": "debian:distro:debian:9", + "package": { + "name": "perl", + "version": "5.24.1-3+deb9u4" + } + }, + "found": { + "versionConstraint": "\u003c 5.24.1-3+deb9u7 (deb)", + "vulnerabilityID": "CVE-2020-10878" + } + } + ], + "artifact": { + "name": "perl-base", + "version": "5.24.1-3+deb9u4", + "type": "deb", + "locations": null, + "language": "", + "licenses": [ + "LicenseRef-Artistic", + "Artistic-2.0", + "BSD-3-Clause", + "LicenseRef-BSD-3-clause-GENERIC", + "LicenseRef-BSD-3-clause-with-weird-numbering", + "LicenseRef-BSD-4-clause-POWERDOG", + "LicenseRef-BZIP", + "LicenseRef-DONT-CHANGE-THE-GPL", + "LicenseRef-Expat", + "GPL-1.0-only", + "GPL-1.0-or-later", + "GPL-2.0-only", + "GPL-2.0-or-later", + "LicenseRef-GPL-3--WITH-BISON-EXCEPTION", + "LicenseRef-HSIEH-BSD", + "LicenseRef-HSIEH-DERIVATIVE", + "LGPL-2.1-only", + "LicenseRef-REGCOMP", + "LicenseRef-REGCOMP-", + "LicenseRef-RRA-KEEP-THIS-NOTICE", + "LicenseRef-S2P", + "LicenseRef-SDBM-PUBLIC-DOMAIN", + "LicenseRef-TEXT-TABS", + "LicenseRef-Unicode", + "Zlib" + ], + "cpes": [ + "cpe:2.3:a:perl-base:perl-base:5.24.1-3+deb9u4:*:*:*:*:*:*:*", + "cpe:2.3:a:perl-base:perl_base:5.24.1-3+deb9u4:*:*:*:*:*:*:*", + "cpe:2.3:a:perl_base:perl-base:5.24.1-3+deb9u4:*:*:*:*:*:*:*", + "cpe:2.3:a:perl_base:perl_base:5.24.1-3+deb9u4:*:*:*:*:*:*:*", + "cpe:2.3:a:perl:perl-base:5.24.1-3+deb9u4:*:*:*:*:*:*:*", + "cpe:2.3:a:perl:perl_base:5.24.1-3+deb9u4:*:*:*:*:*:*:*" + ], + "purl": "pkg:deb/debian/perl-base@5.24.1-3+deb9u4?arch=amd64\u0026upstream=perl\u0026distro=debian-9", + "upstreams": [ + { + "name": "perl" + } + ], + "metadata": null + } + }, + { + "vulnerability": { + "id": "CVE-2020-12723", + "dataSource": "https://security-tracker.debian.org/tracker/CVE-2020-12723", + "namespace": "debian:distro:debian:9", + "severity": "High", + "urls": [ + "https://security-tracker.debian.org/tracker/CVE-2020-12723" + ], + "description": "regcomp.c in Perl before 5.30.3 allows a buffer overflow via a crafted regular expression because of recursive S_study_chunk calls.", + "cvss": null, + "fix": { + "versions": [ + "5.24.1-3+deb9u7" + ], + "state": "fixed" + }, + "advisories": null + }, + "relatedVulnerabilities": [ + { + "id": "CVE-2020-12723", + "dataSource": "https://nvd.nist.gov/vuln/detail/CVE-2020-12723", + "namespace": "nvd:cpe", + "severity": "High", + "urls": [ + "http://lists.opensuse.org/opensuse-security-announce/2020-06/msg00044.html", + "https://github.com/Perl/perl5/blob/blead/pod/perl5303delta.pod", + "https://github.com/Perl/perl5/compare/v5.30.2...v5.30.3", + "https://github.com/Perl/perl5/issues/16947", + "https://github.com/Perl/perl5/issues/17743", + "https://github.com/perl/perl5/commit/66bbb51b93253a3f87d11c2695cfb7bdb782184a", + "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/IN3TTBO5KSGWE5IRIKDJ5JSQRH7ANNXE/", + "https://security.gentoo.org/glsa/202006-03", + "https://security.netapp.com/advisory/ntap-20200611-0001/", + "https://www.oracle.com//security-alerts/cpujul2021.html", + "https://www.oracle.com/security-alerts/cpuApr2021.html", + "https://www.oracle.com/security-alerts/cpuapr2022.html", + "https://www.oracle.com/security-alerts/cpujan2021.html", + "https://www.oracle.com/security-alerts/cpujan2022.html", + "https://www.oracle.com/security-alerts/cpuoct2020.html", + "https://www.oracle.com/security-alerts/cpuoct2021.html" + ], + "description": "regcomp.c in Perl before 5.30.3 allows a buffer overflow via a crafted regular expression because of recursive S_study_chunk calls.", + "cvss": null + } + ], + "matchDetails": [ + { + "type": "exact-indirect-match", + "matcher": "dpkg-matcher", + "searchedBy": { + "distro": { + "type": "debian", + "version": "9" + }, + "namespace": "debian:distro:debian:9", + "package": { + "name": "perl", + "version": "5.24.1-3+deb9u4" + } + }, + "found": { + "versionConstraint": "\u003c 5.24.1-3+deb9u7 (deb)", + "vulnerabilityID": "CVE-2020-12723" + } + } + ], + "artifact": { + "name": "perl-base", + "version": "5.24.1-3+deb9u4", + "type": "deb", + "locations": null, + "language": "", + "licenses": [ + "LicenseRef-Artistic", + "Artistic-2.0", + "BSD-3-Clause", + "LicenseRef-BSD-3-clause-GENERIC", + "LicenseRef-BSD-3-clause-with-weird-numbering", + "LicenseRef-BSD-4-clause-POWERDOG", + "LicenseRef-BZIP", + "LicenseRef-DONT-CHANGE-THE-GPL", + "LicenseRef-Expat", + "GPL-1.0-only", + "GPL-1.0-or-later", + "GPL-2.0-only", + "GPL-2.0-or-later", + "LicenseRef-GPL-3--WITH-BISON-EXCEPTION", + "LicenseRef-HSIEH-BSD", + "LicenseRef-HSIEH-DERIVATIVE", + "LGPL-2.1-only", + "LicenseRef-REGCOMP", + "LicenseRef-REGCOMP-", + "LicenseRef-RRA-KEEP-THIS-NOTICE", + "LicenseRef-S2P", + "LicenseRef-SDBM-PUBLIC-DOMAIN", + "LicenseRef-TEXT-TABS", + "LicenseRef-Unicode", + "Zlib" + ], + "cpes": [ + "cpe:2.3:a:perl-base:perl-base:5.24.1-3+deb9u4:*:*:*:*:*:*:*", + "cpe:2.3:a:perl-base:perl_base:5.24.1-3+deb9u4:*:*:*:*:*:*:*", + "cpe:2.3:a:perl_base:perl-base:5.24.1-3+deb9u4:*:*:*:*:*:*:*", + "cpe:2.3:a:perl_base:perl_base:5.24.1-3+deb9u4:*:*:*:*:*:*:*", + "cpe:2.3:a:perl:perl-base:5.24.1-3+deb9u4:*:*:*:*:*:*:*", + "cpe:2.3:a:perl:perl_base:5.24.1-3+deb9u4:*:*:*:*:*:*:*" + ], + "purl": "pkg:deb/debian/perl-base@5.24.1-3+deb9u4?arch=amd64\u0026upstream=perl\u0026distro=debian-9", + "upstreams": [ + { + "name": "perl" + } + ], + "metadata": null + } + }, + { + "vulnerability": { + "id": "CVE-2020-13529", + "dataSource": "https://security-tracker.debian.org/tracker/CVE-2020-13529", + "namespace": "debian:distro:debian:9", + "severity": "Negligible", + "urls": [ + "https://security-tracker.debian.org/tracker/CVE-2020-13529" + ], + "description": "An exploitable denial-of-service vulnerability exists in Systemd 245. A specially crafted DHCP FORCERENEW packet can cause a server running the DHCP client to be vulnerable to a DHCP ACK spoofing attack. An attacker can forge a pair of FORCERENEW and DCHP ACK packets to reconfigure the server.", + "cvss": null, + "fix": { + "versions": [], + "state": "not-fixed" + }, + "advisories": null + }, + "relatedVulnerabilities": [ + { + "id": "CVE-2020-13529", + "dataSource": "https://nvd.nist.gov/vuln/detail/CVE-2020-13529", + "namespace": "nvd:cpe", + "severity": "Medium", + "urls": [ + "http://www.openwall.com/lists/oss-security/2021/08/04/2", + "http://www.openwall.com/lists/oss-security/2021/08/17/3", + "http://www.openwall.com/lists/oss-security/2021/09/07/3", + "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/42TMJVNYRY65B4QCJICBYOEIVZV3KUYI/", + "https://security.gentoo.org/glsa/202107-48", + "https://security.netapp.com/advisory/ntap-20210625-0005/", + "https://talosintelligence.com/vulnerability_reports/TALOS-2020-1142" + ], + "description": "An exploitable denial-of-service vulnerability exists in Systemd 245. A specially crafted DHCP FORCERENEW packet can cause a server running the DHCP client to be vulnerable to a DHCP ACK spoofing attack. An attacker can forge a pair of FORCERENEW and DCHP ACK packets to reconfigure the server.", + "cvss": null + } + ], + "matchDetails": [ + { + "type": "exact-indirect-match", + "matcher": "dpkg-matcher", + "searchedBy": { + "distro": { + "type": "debian", + "version": "9" + }, + "namespace": "debian:distro:debian:9", + "package": { + "name": "systemd", + "version": "232-25+deb9u6" + } + }, + "found": { + "versionConstraint": "none (deb)", + "vulnerabilityID": "CVE-2020-13529" + } + } + ], + "artifact": { + "name": "libsystemd0", + "version": "232-25+deb9u6", + "type": "deb", + "locations": null, + "language": "", + "licenses": [ + "LicenseRef-CC0", + "LicenseRef-Expat", + "GPL-2.0-only", + "GPL-2.0-or-later", + "LGPL-2.1-only", + "LGPL-2.1-or-later", + "LicenseRef-public-domain" + ], + "cpes": [ + "cpe:2.3:a:libsystemd0:libsystemd0:232-25+deb9u6:*:*:*:*:*:*:*" + ], + "purl": "pkg:deb/debian/libsystemd0@232-25+deb9u6?arch=amd64\u0026upstream=systemd\u0026distro=debian-9", + "upstreams": [ + { + "name": "systemd" + } + ], + "metadata": null + } + }, + { + "vulnerability": { + "id": "CVE-2020-13529", + "dataSource": "https://security-tracker.debian.org/tracker/CVE-2020-13529", + "namespace": "debian:distro:debian:9", + "severity": "Negligible", + "urls": [ + "https://security-tracker.debian.org/tracker/CVE-2020-13529" + ], + "description": "An exploitable denial-of-service vulnerability exists in Systemd 245. A specially crafted DHCP FORCERENEW packet can cause a server running the DHCP client to be vulnerable to a DHCP ACK spoofing attack. An attacker can forge a pair of FORCERENEW and DCHP ACK packets to reconfigure the server.", + "cvss": null, + "fix": { + "versions": [], + "state": "not-fixed" + }, + "advisories": null + }, + "relatedVulnerabilities": [ + { + "id": "CVE-2020-13529", + "dataSource": "https://nvd.nist.gov/vuln/detail/CVE-2020-13529", + "namespace": "nvd:cpe", + "severity": "Medium", + "urls": [ + "http://www.openwall.com/lists/oss-security/2021/08/04/2", + "http://www.openwall.com/lists/oss-security/2021/08/17/3", + "http://www.openwall.com/lists/oss-security/2021/09/07/3", + "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/42TMJVNYRY65B4QCJICBYOEIVZV3KUYI/", + "https://security.gentoo.org/glsa/202107-48", + "https://security.netapp.com/advisory/ntap-20210625-0005/", + "https://talosintelligence.com/vulnerability_reports/TALOS-2020-1142" + ], + "description": "An exploitable denial-of-service vulnerability exists in Systemd 245. A specially crafted DHCP FORCERENEW packet can cause a server running the DHCP client to be vulnerable to a DHCP ACK spoofing attack. An attacker can forge a pair of FORCERENEW and DCHP ACK packets to reconfigure the server.", + "cvss": null + } + ], + "matchDetails": [ + { + "type": "exact-indirect-match", + "matcher": "dpkg-matcher", + "searchedBy": { + "distro": { + "type": "debian", + "version": "9" + }, + "namespace": "debian:distro:debian:9", + "package": { + "name": "systemd", + "version": "232-25+deb9u6" + } + }, + "found": { + "versionConstraint": "none (deb)", + "vulnerabilityID": "CVE-2020-13529" + } + } + ], + "artifact": { + "name": "libudev1", + "version": "232-25+deb9u6", + "type": "deb", + "locations": null, + "language": "", + "licenses": [ + "LicenseRef-CC0", + "LicenseRef-Expat", + "GPL-2.0-only", + "GPL-2.0-or-later", + "LGPL-2.1-only", + "LGPL-2.1-or-later", + "LicenseRef-public-domain" + ], + "cpes": [ + "cpe:2.3:a:libudev1:libudev1:232-25+deb9u6:*:*:*:*:*:*:*" + ], + "purl": "pkg:deb/debian/libudev1@232-25+deb9u6?arch=amd64\u0026upstream=systemd\u0026distro=debian-9", + "upstreams": [ + { + "name": "systemd" + } + ], + "metadata": null + } + }, + { + "vulnerability": { + "id": "CVE-2020-13776", + "dataSource": "https://security-tracker.debian.org/tracker/CVE-2020-13776", + "namespace": "debian:distro:debian:9", + "severity": "Negligible", + "urls": [ + "https://security-tracker.debian.org/tracker/CVE-2020-13776" + ], + "description": "systemd through v245 mishandles numerical usernames such as ones composed of decimal digits or 0x followed by hex digits, as demonstrated by use of root privileges when privileges of the 0x0 user account were intended. NOTE: this issue exists because of an incomplete fix for CVE-2017-1000082.", + "cvss": null, + "fix": { + "versions": [], + "state": "not-fixed" + }, + "advisories": null + }, + "relatedVulnerabilities": [ + { + "id": "CVE-2020-13776", + "dataSource": "https://nvd.nist.gov/vuln/detail/CVE-2020-13776", + "namespace": "nvd:cpe", + "severity": "Medium", + "urls": [ + "https://github.com/systemd/systemd/issues/15985", + "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/IYGLFEKG45EYBJ7TPQMLWROWPTZBEU63/", + "https://security.netapp.com/advisory/ntap-20200611-0003/" + ], + "description": "systemd through v245 mishandles numerical usernames such as ones composed of decimal digits or 0x followed by hex digits, as demonstrated by use of root privileges when privileges of the 0x0 user account were intended. NOTE: this issue exists because of an incomplete fix for CVE-2017-1000082.", + "cvss": null + } + ], + "matchDetails": [ + { + "type": "exact-indirect-match", + "matcher": "dpkg-matcher", + "searchedBy": { + "distro": { + "type": "debian", + "version": "9" + }, + "namespace": "debian:distro:debian:9", + "package": { + "name": "systemd", + "version": "232-25+deb9u6" + } + }, + "found": { + "versionConstraint": "none (deb)", + "vulnerabilityID": "CVE-2020-13776" + } + } + ], + "artifact": { + "name": "libsystemd0", + "version": "232-25+deb9u6", + "type": "deb", + "locations": null, + "language": "", + "licenses": [ + "LicenseRef-CC0", + "LicenseRef-Expat", + "GPL-2.0-only", + "GPL-2.0-or-later", + "LGPL-2.1-only", + "LGPL-2.1-or-later", + "LicenseRef-public-domain" + ], + "cpes": [ + "cpe:2.3:a:libsystemd0:libsystemd0:232-25+deb9u6:*:*:*:*:*:*:*" + ], + "purl": "pkg:deb/debian/libsystemd0@232-25+deb9u6?arch=amd64\u0026upstream=systemd\u0026distro=debian-9", + "upstreams": [ + { + "name": "systemd" + } + ], + "metadata": null + } + }, + { + "vulnerability": { + "id": "CVE-2020-13776", + "dataSource": "https://security-tracker.debian.org/tracker/CVE-2020-13776", + "namespace": "debian:distro:debian:9", + "severity": "Negligible", + "urls": [ + "https://security-tracker.debian.org/tracker/CVE-2020-13776" + ], + "description": "systemd through v245 mishandles numerical usernames such as ones composed of decimal digits or 0x followed by hex digits, as demonstrated by use of root privileges when privileges of the 0x0 user account were intended. NOTE: this issue exists because of an incomplete fix for CVE-2017-1000082.", + "cvss": null, + "fix": { + "versions": [], + "state": "not-fixed" + }, + "advisories": null + }, + "relatedVulnerabilities": [ + { + "id": "CVE-2020-13776", + "dataSource": "https://nvd.nist.gov/vuln/detail/CVE-2020-13776", + "namespace": "nvd:cpe", + "severity": "Medium", + "urls": [ + "https://github.com/systemd/systemd/issues/15985", + "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/IYGLFEKG45EYBJ7TPQMLWROWPTZBEU63/", + "https://security.netapp.com/advisory/ntap-20200611-0003/" + ], + "description": "systemd through v245 mishandles numerical usernames such as ones composed of decimal digits or 0x followed by hex digits, as demonstrated by use of root privileges when privileges of the 0x0 user account were intended. NOTE: this issue exists because of an incomplete fix for CVE-2017-1000082.", + "cvss": null + } + ], + "matchDetails": [ + { + "type": "exact-indirect-match", + "matcher": "dpkg-matcher", + "searchedBy": { + "distro": { + "type": "debian", + "version": "9" + }, + "namespace": "debian:distro:debian:9", + "package": { + "name": "systemd", + "version": "232-25+deb9u6" + } + }, + "found": { + "versionConstraint": "none (deb)", + "vulnerabilityID": "CVE-2020-13776" + } + } + ], + "artifact": { + "name": "libudev1", + "version": "232-25+deb9u6", + "type": "deb", + "locations": null, + "language": "", + "licenses": [ + "LicenseRef-CC0", + "LicenseRef-Expat", + "GPL-2.0-only", + "GPL-2.0-or-later", + "LGPL-2.1-only", + "LGPL-2.1-or-later", + "LicenseRef-public-domain" + ], + "cpes": [ + "cpe:2.3:a:libudev1:libudev1:232-25+deb9u6:*:*:*:*:*:*:*" + ], + "purl": "pkg:deb/debian/libudev1@232-25+deb9u6?arch=amd64\u0026upstream=systemd\u0026distro=debian-9", + "upstreams": [ + { + "name": "systemd" + } + ], + "metadata": null + } + }, + { + "vulnerability": { + "id": "CVE-2020-13790", + "dataSource": "https://security-tracker.debian.org/tracker/CVE-2020-13790", + "namespace": "debian:distro:debian:9", + "severity": "High", + "urls": [ + "https://security-tracker.debian.org/tracker/CVE-2020-13790" + ], + "description": "libjpeg-turbo 2.0.4, and mozjpeg 4.0.0, has a heap-based buffer over-read in get_rgb_row() in rdppm.c via a malformed PPM input file.", + "cvss": null, + "fix": { + "versions": [ + "1:1.5.1-2+deb9u1" + ], + "state": "fixed" + }, + "advisories": null + }, + "relatedVulnerabilities": [ + { + "id": "CVE-2020-13790", + "dataSource": "https://nvd.nist.gov/vuln/detail/CVE-2020-13790", + "namespace": "nvd:cpe", + "severity": "High", + "urls": [ + "http://lists.opensuse.org/opensuse-security-announce/2020-09/msg00031.html", + "http://lists.opensuse.org/opensuse-security-announce/2020-09/msg00062.html", + "https://github.com/libjpeg-turbo/libjpeg-turbo/commit/3de15e0c344d11d4b90f4a47136467053eb2d09a", + "https://github.com/libjpeg-turbo/libjpeg-turbo/issues/433", + "https://lists.debian.org/debian-lts-announce/2020/07/msg00033.html", + "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/P4D6KNUY7YANSPH7SVQ44PJKSABFKAUB/", + "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/U6563YHSVZK24MPJXGJVK3CQG7JVWZGK/", + "https://security.gentoo.org/glsa/202010-03", + "https://usn.ubuntu.com/4386-1/" + ], + "description": "libjpeg-turbo 2.0.4, and mozjpeg 4.0.0, has a heap-based buffer over-read in get_rgb_row() in rdppm.c via a malformed PPM input file.", + "cvss": null + } + ], + "matchDetails": [ + { + "type": "exact-indirect-match", + "matcher": "dpkg-matcher", + "searchedBy": { + "distro": { + "type": "debian", + "version": "9" + }, + "namespace": "debian:distro:debian:9", + "package": { + "name": "libjpeg-turbo", + "version": "1:1.5.1-2" + } + }, + "found": { + "versionConstraint": "\u003c 1:1.5.1-2+deb9u1 (deb)", + "vulnerabilityID": "CVE-2020-13790" + } + } + ], + "artifact": { + "name": "libjpeg62-turbo", + "version": "1:1.5.1-2", + "type": "deb", + "locations": null, + "language": "", + "licenses": [ + "LicenseRef-BSD-3", + "LicenseRef-BSD-BY-LC-NE", + "LicenseRef-Expat" + ], + "cpes": [ + "cpe:2.3:a:libjpeg62-turbo:libjpeg62-turbo:1:1.5.1-2:*:*:*:*:*:*:*", + "cpe:2.3:a:libjpeg62-turbo:libjpeg62_turbo:1:1.5.1-2:*:*:*:*:*:*:*", + "cpe:2.3:a:libjpeg62_turbo:libjpeg62-turbo:1:1.5.1-2:*:*:*:*:*:*:*", + "cpe:2.3:a:libjpeg62_turbo:libjpeg62_turbo:1:1.5.1-2:*:*:*:*:*:*:*", + "cpe:2.3:a:libjpeg62:libjpeg62-turbo:1:1.5.1-2:*:*:*:*:*:*:*", + "cpe:2.3:a:libjpeg62:libjpeg62_turbo:1:1.5.1-2:*:*:*:*:*:*:*" + ], + "purl": "pkg:deb/debian/libjpeg62-turbo@1:1.5.1-2?arch=amd64\u0026upstream=libjpeg-turbo\u0026distro=debian-9", + "upstreams": [ + { + "name": "libjpeg-turbo" + } + ], + "metadata": null + } + }, + { + "vulnerability": { + "id": "CVE-2020-14152", + "dataSource": "https://security-tracker.debian.org/tracker/CVE-2020-14152", + "namespace": "debian:distro:debian:9", + "severity": "High", + "urls": [ + "https://security-tracker.debian.org/tracker/CVE-2020-14152" + ], + "description": "In IJG JPEG (aka libjpeg) before 9d, jpeg_mem_available() in jmemnobs.c in djpeg does not honor the max_memory_to_use setting, possibly causing excessive memory consumption.", + "cvss": null, + "fix": { + "versions": [ + "1:1.5.1-2+deb9u1" + ], + "state": "fixed" + }, + "advisories": null + }, + "relatedVulnerabilities": [ + { + "id": "CVE-2020-14152", + "dataSource": "https://nvd.nist.gov/vuln/detail/CVE-2020-14152", + "namespace": "nvd:cpe", + "severity": "High", + "urls": [ + "http://www.ijg.org/files/jpegsrc.v9d.tar.gz", + "https://bugs.gentoo.org/727908", + "https://lists.debian.org/debian-lts-announce/2020/07/msg00033.html" + ], + "description": "In IJG JPEG (aka libjpeg) before 9d, jpeg_mem_available() in jmemnobs.c in djpeg does not honor the max_memory_to_use setting, possibly causing excessive memory consumption.", + "cvss": null + } + ], + "matchDetails": [ + { + "type": "exact-indirect-match", + "matcher": "dpkg-matcher", + "searchedBy": { + "distro": { + "type": "debian", + "version": "9" + }, + "namespace": "debian:distro:debian:9", + "package": { + "name": "libjpeg-turbo", + "version": "1:1.5.1-2" + } + }, + "found": { + "versionConstraint": "\u003c 1:1.5.1-2+deb9u1 (deb)", + "vulnerabilityID": "CVE-2020-14152" + } + } + ], + "artifact": { + "name": "libjpeg62-turbo", + "version": "1:1.5.1-2", + "type": "deb", + "locations": null, + "language": "", + "licenses": [ + "LicenseRef-BSD-3", + "LicenseRef-BSD-BY-LC-NE", + "LicenseRef-Expat" + ], + "cpes": [ + "cpe:2.3:a:libjpeg62-turbo:libjpeg62-turbo:1:1.5.1-2:*:*:*:*:*:*:*", + "cpe:2.3:a:libjpeg62-turbo:libjpeg62_turbo:1:1.5.1-2:*:*:*:*:*:*:*", + "cpe:2.3:a:libjpeg62_turbo:libjpeg62-turbo:1:1.5.1-2:*:*:*:*:*:*:*", + "cpe:2.3:a:libjpeg62_turbo:libjpeg62_turbo:1:1.5.1-2:*:*:*:*:*:*:*", + "cpe:2.3:a:libjpeg62:libjpeg62-turbo:1:1.5.1-2:*:*:*:*:*:*:*", + "cpe:2.3:a:libjpeg62:libjpeg62_turbo:1:1.5.1-2:*:*:*:*:*:*:*" + ], + "purl": "pkg:deb/debian/libjpeg62-turbo@1:1.5.1-2?arch=amd64\u0026upstream=libjpeg-turbo\u0026distro=debian-9", + "upstreams": [ + { + "name": "libjpeg-turbo" + } + ], + "metadata": null + } + }, + { + "vulnerability": { + "id": "CVE-2020-14155", + "dataSource": "https://security-tracker.debian.org/tracker/CVE-2020-14155", + "namespace": "debian:distro:debian:9", + "severity": "Medium", + "urls": [ + "https://security-tracker.debian.org/tracker/CVE-2020-14155" + ], + "description": "libpcre in PCRE before 8.44 allows an integer overflow via a large number after a (?C substring.", + "cvss": null, + "fix": { + "versions": [], + "state": "wont-fix" + }, + "advisories": null + }, + "relatedVulnerabilities": [ + { + "id": "CVE-2020-14155", + "dataSource": "https://nvd.nist.gov/vuln/detail/CVE-2020-14155", + "namespace": "nvd:cpe", + "severity": "Medium", + "urls": [ + "http://seclists.org/fulldisclosure/2020/Dec/32", + "http://seclists.org/fulldisclosure/2021/Feb/14", + "https://about.gitlab.com/releases/2020/07/01/security-release-13-1-2-release/", + "https://bugs.gentoo.org/717920", + "https://lists.apache.org/thread.html/rf9fa47ab66495c78bb4120b0754dd9531ca2ff0430f6685ac9b07772@%3Cdev.mina.apache.org%3E", + "https://security.netapp.com/advisory/ntap-20221028-0010/", + "https://support.apple.com/kb/HT211931", + "https://support.apple.com/kb/HT212147", + "https://www.oracle.com/security-alerts/cpuapr2022.html", + "https://www.pcre.org/original/changelog.txt" + ], + "description": "libpcre in PCRE before 8.44 allows an integer overflow via a large number after a (?C substring.", + "cvss": null + } + ], + "matchDetails": [ + { + "type": "exact-indirect-match", + "matcher": "dpkg-matcher", + "searchedBy": { + "distro": { + "type": "debian", + "version": "9" + }, + "namespace": "debian:distro:debian:9", + "package": { + "name": "pcre3", + "version": "2:8.39-3" + } + }, + "found": { + "versionConstraint": "none (deb)", + "vulnerabilityID": "CVE-2020-14155" + } + } + ], + "artifact": { + "name": "libpcre3", + "version": "2:8.39-3", + "type": "deb", + "locations": null, + "language": "", + "licenses": [], + "cpes": [ + "cpe:2.3:a:libpcre3:libpcre3:2:8.39-3:*:*:*:*:*:*:*" + ], + "purl": "pkg:deb/debian/libpcre3@2:8.39-3?arch=amd64\u0026upstream=pcre3\u0026distro=debian-9", + "upstreams": [ + { + "name": "pcre3" + } + ], + "metadata": null + } + }, + { + "vulnerability": { + "id": "CVE-2020-14344", + "dataSource": "https://security-tracker.debian.org/tracker/CVE-2020-14344", + "namespace": "debian:distro:debian:9", + "severity": "Medium", + "urls": [ + "https://security-tracker.debian.org/tracker/CVE-2020-14344" + ], + "description": "An integer overflow leading to a heap-buffer overflow was found in The X Input Method (XIM) client was implemented in libX11 before version 1.6.10. As per upstream this is security relevant when setuid programs call XIM client functions while running with elevated privileges. No such programs are shipped with Red Hat Enterprise Linux.", + "cvss": null, + "fix": { + "versions": [ + "2:1.6.4-3+deb9u2" + ], + "state": "fixed" + }, + "advisories": null + }, + "relatedVulnerabilities": [ + { + "id": "CVE-2020-14344", + "dataSource": "https://nvd.nist.gov/vuln/detail/CVE-2020-14344", + "namespace": "nvd:cpe", + "severity": "Medium", + "urls": [ + "http://lists.opensuse.org/opensuse-security-announce/2020-08/msg00014.html", + "http://lists.opensuse.org/opensuse-security-announce/2020-08/msg00015.html", + "http://lists.opensuse.org/opensuse-security-announce/2020-08/msg00024.html", + "http://lists.opensuse.org/opensuse-security-announce/2020-08/msg00031.html", + "https://bugzilla.redhat.com/show_bug.cgi?id=CVE-2020-14344", + "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/4VDDSAYV7XGNRCXE7HCU23645MG74OFF/", + "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/7AVXCQOSCAPKYYHFIJAZ6E2C7LJBTLXF/", + "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/XY4H2SIEF2362AMNX5ZKWAELGU7LKFJB/", + "https://lists.x.org/archives/xorg-announce/2020-July/003050.html", + "https://security.gentoo.org/glsa/202008-18", + "https://usn.ubuntu.com/4487-1/", + "https://usn.ubuntu.com/4487-2/", + "https://www.openwall.com/lists/oss-security/2020/07/31/1" + ], + "description": "An integer overflow leading to a heap-buffer overflow was found in The X Input Method (XIM) client was implemented in libX11 before version 1.6.10. As per upstream this is security relevant when setuid programs call XIM client functions while running with elevated privileges. No such programs are shipped with Red Hat Enterprise Linux.", + "cvss": null + } + ], + "matchDetails": [ + { + "type": "exact-indirect-match", + "matcher": "dpkg-matcher", + "searchedBy": { + "distro": { + "type": "debian", + "version": "9" + }, + "namespace": "debian:distro:debian:9", + "package": { + "name": "libx11", + "version": "2:1.6.4-3+deb9u1" + } + }, + "found": { + "versionConstraint": "\u003c 2:1.6.4-3+deb9u2 (deb)", + "vulnerabilityID": "CVE-2020-14344" + } + } + ], + "artifact": { + "name": "libx11-6", + "version": "2:1.6.4-3+deb9u1", + "type": "deb", + "locations": null, + "language": "", + "licenses": [], + "cpes": [ + "cpe:2.3:a:libx11-6:libx11-6:2:1.6.4-3+deb9u1:*:*:*:*:*:*:*", + "cpe:2.3:a:libx11-6:libx11_6:2:1.6.4-3+deb9u1:*:*:*:*:*:*:*", + "cpe:2.3:a:libx11_6:libx11-6:2:1.6.4-3+deb9u1:*:*:*:*:*:*:*", + "cpe:2.3:a:libx11_6:libx11_6:2:1.6.4-3+deb9u1:*:*:*:*:*:*:*", + "cpe:2.3:a:libx11:libx11-6:2:1.6.4-3+deb9u1:*:*:*:*:*:*:*", + "cpe:2.3:a:libx11:libx11_6:2:1.6.4-3+deb9u1:*:*:*:*:*:*:*" + ], + "purl": "pkg:deb/debian/libx11-6@2:1.6.4-3+deb9u1?arch=amd64\u0026upstream=libx11\u0026distro=debian-9", + "upstreams": [ + { + "name": "libx11" + } + ], + "metadata": null + } + }, + { + "vulnerability": { + "id": "CVE-2020-14344", + "dataSource": "https://security-tracker.debian.org/tracker/CVE-2020-14344", + "namespace": "debian:distro:debian:9", + "severity": "Medium", + "urls": [ + "https://security-tracker.debian.org/tracker/CVE-2020-14344" + ], + "description": "An integer overflow leading to a heap-buffer overflow was found in The X Input Method (XIM) client was implemented in libX11 before version 1.6.10. As per upstream this is security relevant when setuid programs call XIM client functions while running with elevated privileges. No such programs are shipped with Red Hat Enterprise Linux.", + "cvss": null, + "fix": { + "versions": [ + "2:1.6.4-3+deb9u2" + ], + "state": "fixed" + }, + "advisories": null + }, + "relatedVulnerabilities": [ + { + "id": "CVE-2020-14344", + "dataSource": "https://nvd.nist.gov/vuln/detail/CVE-2020-14344", + "namespace": "nvd:cpe", + "severity": "Medium", + "urls": [ + "http://lists.opensuse.org/opensuse-security-announce/2020-08/msg00014.html", + "http://lists.opensuse.org/opensuse-security-announce/2020-08/msg00015.html", + "http://lists.opensuse.org/opensuse-security-announce/2020-08/msg00024.html", + "http://lists.opensuse.org/opensuse-security-announce/2020-08/msg00031.html", + "https://bugzilla.redhat.com/show_bug.cgi?id=CVE-2020-14344", + "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/4VDDSAYV7XGNRCXE7HCU23645MG74OFF/", + "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/7AVXCQOSCAPKYYHFIJAZ6E2C7LJBTLXF/", + "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/XY4H2SIEF2362AMNX5ZKWAELGU7LKFJB/", + "https://lists.x.org/archives/xorg-announce/2020-July/003050.html", + "https://security.gentoo.org/glsa/202008-18", + "https://usn.ubuntu.com/4487-1/", + "https://usn.ubuntu.com/4487-2/", + "https://www.openwall.com/lists/oss-security/2020/07/31/1" + ], + "description": "An integer overflow leading to a heap-buffer overflow was found in The X Input Method (XIM) client was implemented in libX11 before version 1.6.10. As per upstream this is security relevant when setuid programs call XIM client functions while running with elevated privileges. No such programs are shipped with Red Hat Enterprise Linux.", + "cvss": null + } + ], + "matchDetails": [ + { + "type": "exact-indirect-match", + "matcher": "dpkg-matcher", + "searchedBy": { + "distro": { + "type": "debian", + "version": "9" + }, + "namespace": "debian:distro:debian:9", + "package": { + "name": "libx11", + "version": "2:1.6.4-3+deb9u1" + } + }, + "found": { + "versionConstraint": "\u003c 2:1.6.4-3+deb9u2 (deb)", + "vulnerabilityID": "CVE-2020-14344" + } + } + ], + "artifact": { + "name": "libx11-data", + "version": "2:1.6.4-3+deb9u1", + "type": "deb", + "locations": null, + "language": "", + "licenses": [], + "cpes": [ + "cpe:2.3:a:libx11-data:libx11-data:2:1.6.4-3+deb9u1:*:*:*:*:*:*:*", + "cpe:2.3:a:libx11-data:libx11_data:2:1.6.4-3+deb9u1:*:*:*:*:*:*:*", + "cpe:2.3:a:libx11_data:libx11-data:2:1.6.4-3+deb9u1:*:*:*:*:*:*:*", + "cpe:2.3:a:libx11_data:libx11_data:2:1.6.4-3+deb9u1:*:*:*:*:*:*:*", + "cpe:2.3:a:libx11:libx11-data:2:1.6.4-3+deb9u1:*:*:*:*:*:*:*", + "cpe:2.3:a:libx11:libx11_data:2:1.6.4-3+deb9u1:*:*:*:*:*:*:*" + ], + "purl": "pkg:deb/debian/libx11-data@2:1.6.4-3+deb9u1?arch=all\u0026upstream=libx11\u0026distro=debian-9", + "upstreams": [ + { + "name": "libx11" + } + ], + "metadata": null + } + }, + { + "vulnerability": { + "id": "CVE-2020-14363", + "dataSource": "https://security-tracker.debian.org/tracker/CVE-2020-14363", + "namespace": "debian:distro:debian:9", + "severity": "High", + "urls": [ + "https://security-tracker.debian.org/tracker/CVE-2020-14363" + ], + "description": "An integer overflow vulnerability leading to a double-free was found in libX11. This flaw allows a local privileged attacker to cause an application compiled with libX11 to crash, or in some cases, result in arbitrary code execution. The highest threat from this flaw is to confidentiality, integrity as well as system availability.", + "cvss": null, + "fix": { + "versions": [ + "2:1.6.4-3+deb9u3" + ], + "state": "fixed" + }, + "advisories": null + }, + "relatedVulnerabilities": [ + { + "id": "CVE-2020-14363", + "dataSource": "https://nvd.nist.gov/vuln/detail/CVE-2020-14363", + "namespace": "nvd:cpe", + "severity": "High", + "urls": [ + "https://bugzilla.redhat.com/show_bug.cgi?id=CVE-2020-14363", + "https://github.com/Ruia-ruia/Exploits/blob/master/DFX11details.txt", + "https://github.com/Ruia-ruia/Exploits/blob/master/x11doublefree.sh", + "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/7AVXCQOSCAPKYYHFIJAZ6E2C7LJBTLXF/", + "https://lists.x.org/archives/xorg-announce/2020-August/003056.html", + "https://usn.ubuntu.com/4487-2/" + ], + "description": "An integer overflow vulnerability leading to a double-free was found in libX11. This flaw allows a local privileged attacker to cause an application compiled with libX11 to crash, or in some cases, result in arbitrary code execution. The highest threat from this flaw is to confidentiality, integrity as well as system availability.", + "cvss": null + } + ], + "matchDetails": [ + { + "type": "exact-indirect-match", + "matcher": "dpkg-matcher", + "searchedBy": { + "distro": { + "type": "debian", + "version": "9" + }, + "namespace": "debian:distro:debian:9", + "package": { + "name": "libx11", + "version": "2:1.6.4-3+deb9u1" + } + }, + "found": { + "versionConstraint": "\u003c 2:1.6.4-3+deb9u3 (deb)", + "vulnerabilityID": "CVE-2020-14363" + } + } + ], + "artifact": { + "name": "libx11-6", + "version": "2:1.6.4-3+deb9u1", + "type": "deb", + "locations": null, + "language": "", + "licenses": [], + "cpes": [ + "cpe:2.3:a:libx11-6:libx11-6:2:1.6.4-3+deb9u1:*:*:*:*:*:*:*", + "cpe:2.3:a:libx11-6:libx11_6:2:1.6.4-3+deb9u1:*:*:*:*:*:*:*", + "cpe:2.3:a:libx11_6:libx11-6:2:1.6.4-3+deb9u1:*:*:*:*:*:*:*", + "cpe:2.3:a:libx11_6:libx11_6:2:1.6.4-3+deb9u1:*:*:*:*:*:*:*", + "cpe:2.3:a:libx11:libx11-6:2:1.6.4-3+deb9u1:*:*:*:*:*:*:*", + "cpe:2.3:a:libx11:libx11_6:2:1.6.4-3+deb9u1:*:*:*:*:*:*:*" + ], + "purl": "pkg:deb/debian/libx11-6@2:1.6.4-3+deb9u1?arch=amd64\u0026upstream=libx11\u0026distro=debian-9", + "upstreams": [ + { + "name": "libx11" + } + ], + "metadata": null + } + }, + { + "vulnerability": { + "id": "CVE-2020-14363", + "dataSource": "https://security-tracker.debian.org/tracker/CVE-2020-14363", + "namespace": "debian:distro:debian:9", + "severity": "High", + "urls": [ + "https://security-tracker.debian.org/tracker/CVE-2020-14363" + ], + "description": "An integer overflow vulnerability leading to a double-free was found in libX11. This flaw allows a local privileged attacker to cause an application compiled with libX11 to crash, or in some cases, result in arbitrary code execution. The highest threat from this flaw is to confidentiality, integrity as well as system availability.", + "cvss": null, + "fix": { + "versions": [ + "2:1.6.4-3+deb9u3" + ], + "state": "fixed" + }, + "advisories": null + }, + "relatedVulnerabilities": [ + { + "id": "CVE-2020-14363", + "dataSource": "https://nvd.nist.gov/vuln/detail/CVE-2020-14363", + "namespace": "nvd:cpe", + "severity": "High", + "urls": [ + "https://bugzilla.redhat.com/show_bug.cgi?id=CVE-2020-14363", + "https://github.com/Ruia-ruia/Exploits/blob/master/DFX11details.txt", + "https://github.com/Ruia-ruia/Exploits/blob/master/x11doublefree.sh", + "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/7AVXCQOSCAPKYYHFIJAZ6E2C7LJBTLXF/", + "https://lists.x.org/archives/xorg-announce/2020-August/003056.html", + "https://usn.ubuntu.com/4487-2/" + ], + "description": "An integer overflow vulnerability leading to a double-free was found in libX11. This flaw allows a local privileged attacker to cause an application compiled with libX11 to crash, or in some cases, result in arbitrary code execution. The highest threat from this flaw is to confidentiality, integrity as well as system availability.", + "cvss": null + } + ], + "matchDetails": [ + { + "type": "exact-indirect-match", + "matcher": "dpkg-matcher", + "searchedBy": { + "distro": { + "type": "debian", + "version": "9" + }, + "namespace": "debian:distro:debian:9", + "package": { + "name": "libx11", + "version": "2:1.6.4-3+deb9u1" + } + }, + "found": { + "versionConstraint": "\u003c 2:1.6.4-3+deb9u3 (deb)", + "vulnerabilityID": "CVE-2020-14363" + } + } + ], + "artifact": { + "name": "libx11-data", + "version": "2:1.6.4-3+deb9u1", + "type": "deb", + "locations": null, + "language": "", + "licenses": [], + "cpes": [ + "cpe:2.3:a:libx11-data:libx11-data:2:1.6.4-3+deb9u1:*:*:*:*:*:*:*", + "cpe:2.3:a:libx11-data:libx11_data:2:1.6.4-3+deb9u1:*:*:*:*:*:*:*", + "cpe:2.3:a:libx11_data:libx11-data:2:1.6.4-3+deb9u1:*:*:*:*:*:*:*", + "cpe:2.3:a:libx11_data:libx11_data:2:1.6.4-3+deb9u1:*:*:*:*:*:*:*", + "cpe:2.3:a:libx11:libx11-data:2:1.6.4-3+deb9u1:*:*:*:*:*:*:*", + "cpe:2.3:a:libx11:libx11_data:2:1.6.4-3+deb9u1:*:*:*:*:*:*:*" + ], + "purl": "pkg:deb/debian/libx11-data@2:1.6.4-3+deb9u1?arch=all\u0026upstream=libx11\u0026distro=debian-9", + "upstreams": [ + { + "name": "libx11" + } + ], + "metadata": null + } + }, + { + "vulnerability": { + "id": "CVE-2020-15999", + "dataSource": "https://security-tracker.debian.org/tracker/CVE-2020-15999", + "namespace": "debian:distro:debian:9", + "severity": "Medium", + "urls": [ + "https://security-tracker.debian.org/tracker/CVE-2020-15999" + ], + "description": "Heap buffer overflow in Freetype in Google Chrome prior to 86.0.4240.111 allowed a remote attacker to potentially exploit heap corruption via a crafted HTML page.", + "cvss": null, + "fix": { + "versions": [ + "2.6.3-3.2+deb9u2" + ], + "state": "fixed" + }, + "advisories": null + }, + "relatedVulnerabilities": [ + { + "id": "CVE-2020-15999", + "dataSource": "https://nvd.nist.gov/vuln/detail/CVE-2020-15999", + "namespace": "nvd:cpe", + "severity": "Medium", + "urls": [ + "http://lists.opensuse.org/opensuse-security-announce/2020-11/msg00016.html", + "http://seclists.org/fulldisclosure/2020/Nov/33", + "https://chromereleases.googleblog.com/2020/10/stable-channel-update-for-desktop_20.html", + "https://crbug.com/1139963", + "https://googleprojectzero.blogspot.com/p/rca-cve-2020-15999.html", + "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/J3QVIGAAJ4D62YEJAJJWMCCBCOQ6TVL7/", + "https://security.gentoo.org/glsa/202011-12", + "https://security.gentoo.org/glsa/202012-04", + "https://www.debian.org/security/2021/dsa-4824" + ], + "description": "Heap buffer overflow in Freetype in Google Chrome prior to 86.0.4240.111 allowed a remote attacker to potentially exploit heap corruption via a crafted HTML page.", + "cvss": null + } + ], + "matchDetails": [ + { + "type": "exact-indirect-match", + "matcher": "dpkg-matcher", + "searchedBy": { + "distro": { + "type": "debian", + "version": "9" + }, + "namespace": "debian:distro:debian:9", + "package": { + "name": "freetype", + "version": "2.6.3-3.2" + } + }, + "found": { + "versionConstraint": "\u003c 2.6.3-3.2+deb9u2 (deb)", + "vulnerabilityID": "CVE-2020-15999" + } + } + ], + "artifact": { + "name": "libfreetype6", + "version": "2.6.3-3.2", + "type": "deb", + "locations": null, + "language": "", + "licenses": [ + "BSD-2-Clause", + "BSD-3-Clause", + "LicenseRef-Catharon-OSL", + "FTL", + "GPL-2.0-only", + "GPL-2.0-or-later", + "LicenseRef-GZip", + "LicenseRef-OpenGroup-BSD-like" + ], + "cpes": [ + "cpe:2.3:a:libfreetype6:libfreetype6:2.6.3-3.2:*:*:*:*:*:*:*" + ], + "purl": "pkg:deb/debian/libfreetype6@2.6.3-3.2?arch=amd64\u0026upstream=freetype\u0026distro=debian-9", + "upstreams": [ + { + "name": "freetype" + } + ], + "metadata": null + } + }, + { + "vulnerability": { + "id": "CVE-2020-16156", + "dataSource": "https://security-tracker.debian.org/tracker/CVE-2020-16156", + "namespace": "debian:distro:debian:9", + "severity": "High", + "urls": [ + "https://security-tracker.debian.org/tracker/CVE-2020-16156" + ], + "description": "CPAN 2.28 allows Signature Verification Bypass.", + "cvss": null, + "fix": { + "versions": [], + "state": "wont-fix" + }, + "advisories": null + }, + "relatedVulnerabilities": [ + { + "id": "CVE-2020-16156", + "dataSource": "https://nvd.nist.gov/vuln/detail/CVE-2020-16156", + "namespace": "nvd:cpe", + "severity": "High", + "urls": [ + "http://blogs.perl.org/users/neilb/2021/11/addressing-cpan-vulnerabilities-related-to-checksums.html", + "https://blog.hackeriet.no/cpan-signature-verification-vulnerabilities/", + "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/SD6RYOJII7HRJ6WVORFNVTYNOFY5JDXN/", + "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/SZ32AJIV4RHJMLWLU5QULGKMMIHYOMDC/", + "https://metacpan.org/pod/distribution/CPAN/scripts/cpan" + ], + "description": "CPAN 2.28 allows Signature Verification Bypass.", + "cvss": null + } + ], + "matchDetails": [ + { + "type": "exact-indirect-match", + "matcher": "dpkg-matcher", + "searchedBy": { + "distro": { + "type": "debian", + "version": "9" + }, + "namespace": "debian:distro:debian:9", + "package": { + "name": "perl", + "version": "5.24.1-3+deb9u4" + } + }, + "found": { + "versionConstraint": "none (deb)", + "vulnerabilityID": "CVE-2020-16156" + } + } + ], + "artifact": { + "name": "perl-base", + "version": "5.24.1-3+deb9u4", + "type": "deb", + "locations": null, + "language": "", + "licenses": [ + "LicenseRef-Artistic", + "Artistic-2.0", + "BSD-3-Clause", + "LicenseRef-BSD-3-clause-GENERIC", + "LicenseRef-BSD-3-clause-with-weird-numbering", + "LicenseRef-BSD-4-clause-POWERDOG", + "LicenseRef-BZIP", + "LicenseRef-DONT-CHANGE-THE-GPL", + "LicenseRef-Expat", + "GPL-1.0-only", + "GPL-1.0-or-later", + "GPL-2.0-only", + "GPL-2.0-or-later", + "LicenseRef-GPL-3--WITH-BISON-EXCEPTION", + "LicenseRef-HSIEH-BSD", + "LicenseRef-HSIEH-DERIVATIVE", + "LGPL-2.1-only", + "LicenseRef-REGCOMP", + "LicenseRef-REGCOMP-", + "LicenseRef-RRA-KEEP-THIS-NOTICE", + "LicenseRef-S2P", + "LicenseRef-SDBM-PUBLIC-DOMAIN", + "LicenseRef-TEXT-TABS", + "LicenseRef-Unicode", + "Zlib" + ], + "cpes": [ + "cpe:2.3:a:perl-base:perl-base:5.24.1-3+deb9u4:*:*:*:*:*:*:*", + "cpe:2.3:a:perl-base:perl_base:5.24.1-3+deb9u4:*:*:*:*:*:*:*", + "cpe:2.3:a:perl_base:perl-base:5.24.1-3+deb9u4:*:*:*:*:*:*:*", + "cpe:2.3:a:perl_base:perl_base:5.24.1-3+deb9u4:*:*:*:*:*:*:*", + "cpe:2.3:a:perl:perl-base:5.24.1-3+deb9u4:*:*:*:*:*:*:*", + "cpe:2.3:a:perl:perl_base:5.24.1-3+deb9u4:*:*:*:*:*:*:*" + ], + "purl": "pkg:deb/debian/perl-base@5.24.1-3+deb9u4?arch=amd64\u0026upstream=perl\u0026distro=debian-9", + "upstreams": [ + { + "name": "perl" + } + ], + "metadata": null + } + }, + { + "vulnerability": { + "id": "CVE-2020-1712", + "dataSource": "https://security-tracker.debian.org/tracker/CVE-2020-1712", + "namespace": "debian:distro:debian:9", + "severity": "High", + "urls": [ + "https://security-tracker.debian.org/tracker/CVE-2020-1712" + ], + "description": "A heap use-after-free vulnerability was found in systemd before version v245-rc1, where asynchronous Polkit queries are performed while handling dbus messages. A local unprivileged attacker can abuse this flaw to crash systemd services or potentially execute code and elevate their privileges, by sending specially crafted dbus messages.", + "cvss": null, + "fix": { + "versions": [ + "232-25+deb9u14" + ], + "state": "fixed" + }, + "advisories": null + }, + "relatedVulnerabilities": [ + { + "id": "CVE-2020-1712", + "dataSource": "https://nvd.nist.gov/vuln/detail/CVE-2020-1712", + "namespace": "nvd:cpe", + "severity": "High", + "urls": [ + "https://bugzilla.redhat.com/show_bug.cgi?id=CVE-2020-1712", + "https://github.com/systemd/systemd/commit/1068447e6954dc6ce52f099ed174c442cb89ed54", + "https://github.com/systemd/systemd/commit/637486261528e8aa3da9f26a4487dc254f4b7abb", + "https://github.com/systemd/systemd/commit/bc130b6858327b382b07b3985cf48e2aa9016b2d", + "https://github.com/systemd/systemd/commit/ea0d0ede03c6f18dbc5036c5e9cccf97e415ccc2", + "https://lists.debian.org/debian-lts-announce/2022/06/msg00025.html", + "https://www.openwall.com/lists/oss-security/2020/02/05/1" + ], + "description": "A heap use-after-free vulnerability was found in systemd before version v245-rc1, where asynchronous Polkit queries are performed while handling dbus messages. A local unprivileged attacker can abuse this flaw to crash systemd services or potentially execute code and elevate their privileges, by sending specially crafted dbus messages.", + "cvss": null + } + ], + "matchDetails": [ + { + "type": "exact-indirect-match", + "matcher": "dpkg-matcher", + "searchedBy": { + "distro": { + "type": "debian", + "version": "9" + }, + "namespace": "debian:distro:debian:9", + "package": { + "name": "systemd", + "version": "232-25+deb9u6" + } + }, + "found": { + "versionConstraint": "\u003c 232-25+deb9u14 (deb)", + "vulnerabilityID": "CVE-2020-1712" + } + } + ], + "artifact": { + "name": "libsystemd0", + "version": "232-25+deb9u6", + "type": "deb", + "locations": null, + "language": "", + "licenses": [ + "LicenseRef-CC0", + "LicenseRef-Expat", + "GPL-2.0-only", + "GPL-2.0-or-later", + "LGPL-2.1-only", + "LGPL-2.1-or-later", + "LicenseRef-public-domain" + ], + "cpes": [ + "cpe:2.3:a:libsystemd0:libsystemd0:232-25+deb9u6:*:*:*:*:*:*:*" + ], + "purl": "pkg:deb/debian/libsystemd0@232-25+deb9u6?arch=amd64\u0026upstream=systemd\u0026distro=debian-9", + "upstreams": [ + { + "name": "systemd" + } + ], + "metadata": null + } + }, + { + "vulnerability": { + "id": "CVE-2020-1712", + "dataSource": "https://security-tracker.debian.org/tracker/CVE-2020-1712", + "namespace": "debian:distro:debian:9", + "severity": "High", + "urls": [ + "https://security-tracker.debian.org/tracker/CVE-2020-1712" + ], + "description": "A heap use-after-free vulnerability was found in systemd before version v245-rc1, where asynchronous Polkit queries are performed while handling dbus messages. A local unprivileged attacker can abuse this flaw to crash systemd services or potentially execute code and elevate their privileges, by sending specially crafted dbus messages.", + "cvss": null, + "fix": { + "versions": [ + "232-25+deb9u14" + ], + "state": "fixed" + }, + "advisories": null + }, + "relatedVulnerabilities": [ + { + "id": "CVE-2020-1712", + "dataSource": "https://nvd.nist.gov/vuln/detail/CVE-2020-1712", + "namespace": "nvd:cpe", + "severity": "High", + "urls": [ + "https://bugzilla.redhat.com/show_bug.cgi?id=CVE-2020-1712", + "https://github.com/systemd/systemd/commit/1068447e6954dc6ce52f099ed174c442cb89ed54", + "https://github.com/systemd/systemd/commit/637486261528e8aa3da9f26a4487dc254f4b7abb", + "https://github.com/systemd/systemd/commit/bc130b6858327b382b07b3985cf48e2aa9016b2d", + "https://github.com/systemd/systemd/commit/ea0d0ede03c6f18dbc5036c5e9cccf97e415ccc2", + "https://lists.debian.org/debian-lts-announce/2022/06/msg00025.html", + "https://www.openwall.com/lists/oss-security/2020/02/05/1" + ], + "description": "A heap use-after-free vulnerability was found in systemd before version v245-rc1, where asynchronous Polkit queries are performed while handling dbus messages. A local unprivileged attacker can abuse this flaw to crash systemd services or potentially execute code and elevate their privileges, by sending specially crafted dbus messages.", + "cvss": null + } + ], + "matchDetails": [ + { + "type": "exact-indirect-match", + "matcher": "dpkg-matcher", + "searchedBy": { + "distro": { + "type": "debian", + "version": "9" + }, + "namespace": "debian:distro:debian:9", + "package": { + "name": "systemd", + "version": "232-25+deb9u6" + } + }, + "found": { + "versionConstraint": "\u003c 232-25+deb9u14 (deb)", + "vulnerabilityID": "CVE-2020-1712" + } + } + ], + "artifact": { + "name": "libudev1", + "version": "232-25+deb9u6", + "type": "deb", + "locations": null, + "language": "", + "licenses": [ + "LicenseRef-CC0", + "LicenseRef-Expat", + "GPL-2.0-only", + "GPL-2.0-or-later", + "LGPL-2.1-only", + "LGPL-2.1-or-later", + "LicenseRef-public-domain" + ], + "cpes": [ + "cpe:2.3:a:libudev1:libudev1:232-25+deb9u6:*:*:*:*:*:*:*" + ], + "purl": "pkg:deb/debian/libudev1@232-25+deb9u6?arch=amd64\u0026upstream=systemd\u0026distro=debian-9", + "upstreams": [ + { + "name": "systemd" + } + ], + "metadata": null + } + }, + { + "vulnerability": { + "id": "CVE-2020-1751", + "dataSource": "https://security-tracker.debian.org/tracker/CVE-2020-1751", + "namespace": "debian:distro:debian:9", + "severity": "High", + "urls": [ + "https://security-tracker.debian.org/tracker/CVE-2020-1751" + ], + "description": "An out-of-bounds write vulnerability was found in glibc before 2.31 when handling signal trampolines on PowerPC. Specifically, the backtrace function did not properly check the array bounds when storing the frame address, resulting in a denial of service or potential code execution. The highest threat from this vulnerability is to system availability.", + "cvss": null, + "fix": { + "versions": [], + "state": "wont-fix" + }, + "advisories": null + }, + "relatedVulnerabilities": [ + { + "id": "CVE-2020-1751", + "dataSource": "https://nvd.nist.gov/vuln/detail/CVE-2020-1751", + "namespace": "nvd:cpe", + "severity": "High", + "urls": [ + "https://bugzilla.redhat.com/show_bug.cgi?id=CVE-2020-1751", + "https://security.gentoo.org/glsa/202006-04", + "https://security.netapp.com/advisory/ntap-20200430-0002/", + "https://sourceware.org/bugzilla/show_bug.cgi?id=25423", + "https://usn.ubuntu.com/4416-1/" + ], + "description": "An out-of-bounds write vulnerability was found in glibc before 2.31 when handling signal trampolines on PowerPC. Specifically, the backtrace function did not properly check the array bounds when storing the frame address, resulting in a denial of service or potential code execution. The highest threat from this vulnerability is to system availability.", + "cvss": null + } + ], + "matchDetails": [ + { + "type": "exact-indirect-match", + "matcher": "dpkg-matcher", + "searchedBy": { + "distro": { + "type": "debian", + "version": "9" + }, + "namespace": "debian:distro:debian:9", + "package": { + "name": "glibc", + "version": "2.24-11+deb9u3" + } + }, + "found": { + "versionConstraint": "none (deb)", + "vulnerabilityID": "CVE-2020-1751" + } + } + ], + "artifact": { + "name": "libc-bin", + "version": "2.24-11+deb9u3", + "type": "deb", + "locations": null, + "language": "", + "licenses": [ + "GPL-2.0-only", + "LGPL-2.1-only" + ], + "cpes": [ + "cpe:2.3:a:libc-bin:libc-bin:2.24-11+deb9u3:*:*:*:*:*:*:*", + "cpe:2.3:a:libc-bin:libc_bin:2.24-11+deb9u3:*:*:*:*:*:*:*", + "cpe:2.3:a:libc_bin:libc-bin:2.24-11+deb9u3:*:*:*:*:*:*:*", + "cpe:2.3:a:libc_bin:libc_bin:2.24-11+deb9u3:*:*:*:*:*:*:*", + "cpe:2.3:a:libc:libc-bin:2.24-11+deb9u3:*:*:*:*:*:*:*", + "cpe:2.3:a:libc:libc_bin:2.24-11+deb9u3:*:*:*:*:*:*:*" + ], + "purl": "pkg:deb/debian/libc-bin@2.24-11+deb9u3?arch=amd64\u0026upstream=glibc\u0026distro=debian-9", + "upstreams": [ + { + "name": "glibc" + } + ], + "metadata": null + } + }, + { + "vulnerability": { + "id": "CVE-2020-1751", + "dataSource": "https://security-tracker.debian.org/tracker/CVE-2020-1751", + "namespace": "debian:distro:debian:9", + "severity": "High", + "urls": [ + "https://security-tracker.debian.org/tracker/CVE-2020-1751" + ], + "description": "An out-of-bounds write vulnerability was found in glibc before 2.31 when handling signal trampolines on PowerPC. Specifically, the backtrace function did not properly check the array bounds when storing the frame address, resulting in a denial of service or potential code execution. The highest threat from this vulnerability is to system availability.", + "cvss": null, + "fix": { + "versions": [], + "state": "wont-fix" + }, + "advisories": null + }, + "relatedVulnerabilities": [ + { + "id": "CVE-2020-1751", + "dataSource": "https://nvd.nist.gov/vuln/detail/CVE-2020-1751", + "namespace": "nvd:cpe", + "severity": "High", + "urls": [ + "https://bugzilla.redhat.com/show_bug.cgi?id=CVE-2020-1751", + "https://security.gentoo.org/glsa/202006-04", + "https://security.netapp.com/advisory/ntap-20200430-0002/", + "https://sourceware.org/bugzilla/show_bug.cgi?id=25423", + "https://usn.ubuntu.com/4416-1/" + ], + "description": "An out-of-bounds write vulnerability was found in glibc before 2.31 when handling signal trampolines on PowerPC. Specifically, the backtrace function did not properly check the array bounds when storing the frame address, resulting in a denial of service or potential code execution. The highest threat from this vulnerability is to system availability.", + "cvss": null + } + ], + "matchDetails": [ + { + "type": "exact-indirect-match", + "matcher": "dpkg-matcher", + "searchedBy": { + "distro": { + "type": "debian", + "version": "9" + }, + "namespace": "debian:distro:debian:9", + "package": { + "name": "glibc", + "version": "2.24-11+deb9u3" + } + }, + "found": { + "versionConstraint": "none (deb)", + "vulnerabilityID": "CVE-2020-1751" + } + } + ], + "artifact": { + "name": "libc6", + "version": "2.24-11+deb9u3", + "type": "deb", + "locations": null, + "language": "", + "licenses": [ + "GPL-2.0-only", + "LGPL-2.1-only" + ], + "cpes": [ + "cpe:2.3:a:libc6:libc6:2.24-11+deb9u3:*:*:*:*:*:*:*" + ], + "purl": "pkg:deb/debian/libc6@2.24-11+deb9u3?arch=amd64\u0026upstream=glibc\u0026distro=debian-9", + "upstreams": [ + { + "name": "glibc" + } + ], + "metadata": null + } + }, + { + "vulnerability": { + "id": "CVE-2020-1751", + "dataSource": "https://security-tracker.debian.org/tracker/CVE-2020-1751", + "namespace": "debian:distro:debian:9", + "severity": "High", + "urls": [ + "https://security-tracker.debian.org/tracker/CVE-2020-1751" + ], + "description": "An out-of-bounds write vulnerability was found in glibc before 2.31 when handling signal trampolines on PowerPC. Specifically, the backtrace function did not properly check the array bounds when storing the frame address, resulting in a denial of service or potential code execution. The highest threat from this vulnerability is to system availability.", + "cvss": null, + "fix": { + "versions": [], + "state": "wont-fix" + }, + "advisories": null + }, + "relatedVulnerabilities": [ + { + "id": "CVE-2020-1751", + "dataSource": "https://nvd.nist.gov/vuln/detail/CVE-2020-1751", + "namespace": "nvd:cpe", + "severity": "High", + "urls": [ + "https://bugzilla.redhat.com/show_bug.cgi?id=CVE-2020-1751", + "https://security.gentoo.org/glsa/202006-04", + "https://security.netapp.com/advisory/ntap-20200430-0002/", + "https://sourceware.org/bugzilla/show_bug.cgi?id=25423", + "https://usn.ubuntu.com/4416-1/" + ], + "description": "An out-of-bounds write vulnerability was found in glibc before 2.31 when handling signal trampolines on PowerPC. Specifically, the backtrace function did not properly check the array bounds when storing the frame address, resulting in a denial of service or potential code execution. The highest threat from this vulnerability is to system availability.", + "cvss": null + } + ], + "matchDetails": [ + { + "type": "exact-indirect-match", + "matcher": "dpkg-matcher", + "searchedBy": { + "distro": { + "type": "debian", + "version": "9" + }, + "namespace": "debian:distro:debian:9", + "package": { + "name": "glibc", + "version": "2.24-11+deb9u3" + } + }, + "found": { + "versionConstraint": "none (deb)", + "vulnerabilityID": "CVE-2020-1751" + } + } + ], + "artifact": { + "name": "multiarch-support", + "version": "2.24-11+deb9u3", + "type": "deb", + "locations": null, + "language": "", + "licenses": [ + "GPL-2.0-only", + "LGPL-2.1-only" + ], + "cpes": [ + "cpe:2.3:a:multiarch-support:multiarch-support:2.24-11+deb9u3:*:*:*:*:*:*:*", + "cpe:2.3:a:multiarch-support:multiarch_support:2.24-11+deb9u3:*:*:*:*:*:*:*", + "cpe:2.3:a:multiarch_support:multiarch-support:2.24-11+deb9u3:*:*:*:*:*:*:*", + "cpe:2.3:a:multiarch_support:multiarch_support:2.24-11+deb9u3:*:*:*:*:*:*:*", + "cpe:2.3:a:multiarch:multiarch-support:2.24-11+deb9u3:*:*:*:*:*:*:*", + "cpe:2.3:a:multiarch:multiarch_support:2.24-11+deb9u3:*:*:*:*:*:*:*" + ], + "purl": "pkg:deb/debian/multiarch-support@2.24-11+deb9u3?arch=amd64\u0026upstream=glibc\u0026distro=debian-9", + "upstreams": [ + { + "name": "glibc" + } + ], + "metadata": null + } + }, + { + "vulnerability": { + "id": "CVE-2020-1752", + "dataSource": "https://security-tracker.debian.org/tracker/CVE-2020-1752", + "namespace": "debian:distro:debian:9", + "severity": "High", + "urls": [ + "https://security-tracker.debian.org/tracker/CVE-2020-1752" + ], + "description": "A use-after-free vulnerability introduced in glibc upstream version 2.14 was found in the way the tilde expansion was carried out. Directory paths containing an initial tilde followed by a valid username were affected by this issue. A local attacker could exploit this flaw by creating a specially crafted path that, when processed by the glob function, would potentially lead to arbitrary code execution. This was fixed in version 2.32.", + "cvss": null, + "fix": { + "versions": [], + "state": "wont-fix" + }, + "advisories": null + }, + "relatedVulnerabilities": [ + { + "id": "CVE-2020-1752", + "dataSource": "https://nvd.nist.gov/vuln/detail/CVE-2020-1752", + "namespace": "nvd:cpe", + "severity": "High", + "urls": [ + "https://bugzilla.redhat.com/show_bug.cgi?id=CVE-2020-1752", + "https://lists.apache.org/thread.html/r58af02e294bd07f487e2c64ffc0a29b837db5600e33b6e698b9d696b@%3Cissues.bookkeeper.apache.org%3E", + "https://lists.apache.org/thread.html/rf4c02775860db415b4955778a131c2795223f61cb8c6a450893651e4@%3Cissues.bookkeeper.apache.org%3E", + "https://lists.debian.org/debian-lts-announce/2022/10/msg00021.html", + "https://security.gentoo.org/glsa/202101-20", + "https://security.netapp.com/advisory/ntap-20200511-0005/", + "https://sourceware.org/bugzilla/show_bug.cgi?id=25414", + "https://sourceware.org/git/gitweb.cgi?p=glibc.git;h=ddc650e9b3dc916eab417ce9f79e67337b05035c", + "https://usn.ubuntu.com/4416-1/" + ], + "description": "A use-after-free vulnerability introduced in glibc upstream version 2.14 was found in the way the tilde expansion was carried out. Directory paths containing an initial tilde followed by a valid username were affected by this issue. A local attacker could exploit this flaw by creating a specially crafted path that, when processed by the glob function, would potentially lead to arbitrary code execution. This was fixed in version 2.32.", + "cvss": null + } + ], + "matchDetails": [ + { + "type": "exact-indirect-match", + "matcher": "dpkg-matcher", + "searchedBy": { + "distro": { + "type": "debian", + "version": "9" + }, + "namespace": "debian:distro:debian:9", + "package": { + "name": "glibc", + "version": "2.24-11+deb9u3" + } + }, + "found": { + "versionConstraint": "none (deb)", + "vulnerabilityID": "CVE-2020-1752" + } + } + ], + "artifact": { + "name": "libc-bin", + "version": "2.24-11+deb9u3", + "type": "deb", + "locations": null, + "language": "", + "licenses": [ + "GPL-2.0-only", + "LGPL-2.1-only" + ], + "cpes": [ + "cpe:2.3:a:libc-bin:libc-bin:2.24-11+deb9u3:*:*:*:*:*:*:*", + "cpe:2.3:a:libc-bin:libc_bin:2.24-11+deb9u3:*:*:*:*:*:*:*", + "cpe:2.3:a:libc_bin:libc-bin:2.24-11+deb9u3:*:*:*:*:*:*:*", + "cpe:2.3:a:libc_bin:libc_bin:2.24-11+deb9u3:*:*:*:*:*:*:*", + "cpe:2.3:a:libc:libc-bin:2.24-11+deb9u3:*:*:*:*:*:*:*", + "cpe:2.3:a:libc:libc_bin:2.24-11+deb9u3:*:*:*:*:*:*:*" + ], + "purl": "pkg:deb/debian/libc-bin@2.24-11+deb9u3?arch=amd64\u0026upstream=glibc\u0026distro=debian-9", + "upstreams": [ + { + "name": "glibc" + } + ], + "metadata": null + } + }, + { + "vulnerability": { + "id": "CVE-2020-1752", + "dataSource": "https://security-tracker.debian.org/tracker/CVE-2020-1752", + "namespace": "debian:distro:debian:9", + "severity": "High", + "urls": [ + "https://security-tracker.debian.org/tracker/CVE-2020-1752" + ], + "description": "A use-after-free vulnerability introduced in glibc upstream version 2.14 was found in the way the tilde expansion was carried out. Directory paths containing an initial tilde followed by a valid username were affected by this issue. A local attacker could exploit this flaw by creating a specially crafted path that, when processed by the glob function, would potentially lead to arbitrary code execution. This was fixed in version 2.32.", + "cvss": null, + "fix": { + "versions": [], + "state": "wont-fix" + }, + "advisories": null + }, + "relatedVulnerabilities": [ + { + "id": "CVE-2020-1752", + "dataSource": "https://nvd.nist.gov/vuln/detail/CVE-2020-1752", + "namespace": "nvd:cpe", + "severity": "High", + "urls": [ + "https://bugzilla.redhat.com/show_bug.cgi?id=CVE-2020-1752", + "https://lists.apache.org/thread.html/r58af02e294bd07f487e2c64ffc0a29b837db5600e33b6e698b9d696b@%3Cissues.bookkeeper.apache.org%3E", + "https://lists.apache.org/thread.html/rf4c02775860db415b4955778a131c2795223f61cb8c6a450893651e4@%3Cissues.bookkeeper.apache.org%3E", + "https://lists.debian.org/debian-lts-announce/2022/10/msg00021.html", + "https://security.gentoo.org/glsa/202101-20", + "https://security.netapp.com/advisory/ntap-20200511-0005/", + "https://sourceware.org/bugzilla/show_bug.cgi?id=25414", + "https://sourceware.org/git/gitweb.cgi?p=glibc.git;h=ddc650e9b3dc916eab417ce9f79e67337b05035c", + "https://usn.ubuntu.com/4416-1/" + ], + "description": "A use-after-free vulnerability introduced in glibc upstream version 2.14 was found in the way the tilde expansion was carried out. Directory paths containing an initial tilde followed by a valid username were affected by this issue. A local attacker could exploit this flaw by creating a specially crafted path that, when processed by the glob function, would potentially lead to arbitrary code execution. This was fixed in version 2.32.", + "cvss": null + } + ], + "matchDetails": [ + { + "type": "exact-indirect-match", + "matcher": "dpkg-matcher", + "searchedBy": { + "distro": { + "type": "debian", + "version": "9" + }, + "namespace": "debian:distro:debian:9", + "package": { + "name": "glibc", + "version": "2.24-11+deb9u3" + } + }, + "found": { + "versionConstraint": "none (deb)", + "vulnerabilityID": "CVE-2020-1752" + } + } + ], + "artifact": { + "name": "libc6", + "version": "2.24-11+deb9u3", + "type": "deb", + "locations": null, + "language": "", + "licenses": [ + "GPL-2.0-only", + "LGPL-2.1-only" + ], + "cpes": [ + "cpe:2.3:a:libc6:libc6:2.24-11+deb9u3:*:*:*:*:*:*:*" + ], + "purl": "pkg:deb/debian/libc6@2.24-11+deb9u3?arch=amd64\u0026upstream=glibc\u0026distro=debian-9", + "upstreams": [ + { + "name": "glibc" + } + ], + "metadata": null + } + }, + { + "vulnerability": { + "id": "CVE-2020-1752", + "dataSource": "https://security-tracker.debian.org/tracker/CVE-2020-1752", + "namespace": "debian:distro:debian:9", + "severity": "High", + "urls": [ + "https://security-tracker.debian.org/tracker/CVE-2020-1752" + ], + "description": "A use-after-free vulnerability introduced in glibc upstream version 2.14 was found in the way the tilde expansion was carried out. Directory paths containing an initial tilde followed by a valid username were affected by this issue. A local attacker could exploit this flaw by creating a specially crafted path that, when processed by the glob function, would potentially lead to arbitrary code execution. This was fixed in version 2.32.", + "cvss": null, + "fix": { + "versions": [], + "state": "wont-fix" + }, + "advisories": null + }, + "relatedVulnerabilities": [ + { + "id": "CVE-2020-1752", + "dataSource": "https://nvd.nist.gov/vuln/detail/CVE-2020-1752", + "namespace": "nvd:cpe", + "severity": "High", + "urls": [ + "https://bugzilla.redhat.com/show_bug.cgi?id=CVE-2020-1752", + "https://lists.apache.org/thread.html/r58af02e294bd07f487e2c64ffc0a29b837db5600e33b6e698b9d696b@%3Cissues.bookkeeper.apache.org%3E", + "https://lists.apache.org/thread.html/rf4c02775860db415b4955778a131c2795223f61cb8c6a450893651e4@%3Cissues.bookkeeper.apache.org%3E", + "https://lists.debian.org/debian-lts-announce/2022/10/msg00021.html", + "https://security.gentoo.org/glsa/202101-20", + "https://security.netapp.com/advisory/ntap-20200511-0005/", + "https://sourceware.org/bugzilla/show_bug.cgi?id=25414", + "https://sourceware.org/git/gitweb.cgi?p=glibc.git;h=ddc650e9b3dc916eab417ce9f79e67337b05035c", + "https://usn.ubuntu.com/4416-1/" + ], + "description": "A use-after-free vulnerability introduced in glibc upstream version 2.14 was found in the way the tilde expansion was carried out. Directory paths containing an initial tilde followed by a valid username were affected by this issue. A local attacker could exploit this flaw by creating a specially crafted path that, when processed by the glob function, would potentially lead to arbitrary code execution. This was fixed in version 2.32.", + "cvss": null + } + ], + "matchDetails": [ + { + "type": "exact-indirect-match", + "matcher": "dpkg-matcher", + "searchedBy": { + "distro": { + "type": "debian", + "version": "9" + }, + "namespace": "debian:distro:debian:9", + "package": { + "name": "glibc", + "version": "2.24-11+deb9u3" + } + }, + "found": { + "versionConstraint": "none (deb)", + "vulnerabilityID": "CVE-2020-1752" + } + } + ], + "artifact": { + "name": "multiarch-support", + "version": "2.24-11+deb9u3", + "type": "deb", + "locations": null, + "language": "", + "licenses": [ + "GPL-2.0-only", + "LGPL-2.1-only" + ], + "cpes": [ + "cpe:2.3:a:multiarch-support:multiarch-support:2.24-11+deb9u3:*:*:*:*:*:*:*", + "cpe:2.3:a:multiarch-support:multiarch_support:2.24-11+deb9u3:*:*:*:*:*:*:*", + "cpe:2.3:a:multiarch_support:multiarch-support:2.24-11+deb9u3:*:*:*:*:*:*:*", + "cpe:2.3:a:multiarch_support:multiarch_support:2.24-11+deb9u3:*:*:*:*:*:*:*", + "cpe:2.3:a:multiarch:multiarch-support:2.24-11+deb9u3:*:*:*:*:*:*:*", + "cpe:2.3:a:multiarch:multiarch_support:2.24-11+deb9u3:*:*:*:*:*:*:*" + ], + "purl": "pkg:deb/debian/multiarch-support@2.24-11+deb9u3?arch=amd64\u0026upstream=glibc\u0026distro=debian-9", + "upstreams": [ + { + "name": "glibc" + } + ], + "metadata": null + } + }, + { + "vulnerability": { + "id": "CVE-2020-17541", + "dataSource": "https://security-tracker.debian.org/tracker/CVE-2020-17541", + "namespace": "debian:distro:debian:9", + "severity": "Negligible", + "urls": [ + "https://security-tracker.debian.org/tracker/CVE-2020-17541" + ], + "description": "Libjpeg-turbo all version have a stack-based buffer overflow in the \"transform\" component. A remote attacker can send a malformed jpeg file to the service and cause arbitrary code execution or denial of service of the target service.", + "cvss": null, + "fix": { + "versions": [], + "state": "not-fixed" + }, + "advisories": null + }, + "relatedVulnerabilities": [ + { + "id": "CVE-2020-17541", + "dataSource": "https://nvd.nist.gov/vuln/detail/CVE-2020-17541", + "namespace": "nvd:cpe", + "severity": "High", + "urls": [ + "https://cwe.mitre.org/data/definitions/121.html", + "https://github.com/libjpeg-turbo/libjpeg-turbo/issues/392" + ], + "description": "Libjpeg-turbo all version have a stack-based buffer overflow in the \"transform\" component. A remote attacker can send a malformed jpeg file to the service and cause arbitrary code execution or denial of service of the target service.", + "cvss": null + } + ], + "matchDetails": [ + { + "type": "exact-indirect-match", + "matcher": "dpkg-matcher", + "searchedBy": { + "distro": { + "type": "debian", + "version": "9" + }, + "namespace": "debian:distro:debian:9", + "package": { + "name": "libjpeg-turbo", + "version": "1:1.5.1-2" + } + }, + "found": { + "versionConstraint": "none (deb)", + "vulnerabilityID": "CVE-2020-17541" + } + } + ], + "artifact": { + "name": "libjpeg62-turbo", + "version": "1:1.5.1-2", + "type": "deb", + "locations": null, + "language": "", + "licenses": [ + "LicenseRef-BSD-3", + "LicenseRef-BSD-BY-LC-NE", + "LicenseRef-Expat" + ], + "cpes": [ + "cpe:2.3:a:libjpeg62-turbo:libjpeg62-turbo:1:1.5.1-2:*:*:*:*:*:*:*", + "cpe:2.3:a:libjpeg62-turbo:libjpeg62_turbo:1:1.5.1-2:*:*:*:*:*:*:*", + "cpe:2.3:a:libjpeg62_turbo:libjpeg62-turbo:1:1.5.1-2:*:*:*:*:*:*:*", + "cpe:2.3:a:libjpeg62_turbo:libjpeg62_turbo:1:1.5.1-2:*:*:*:*:*:*:*", + "cpe:2.3:a:libjpeg62:libjpeg62-turbo:1:1.5.1-2:*:*:*:*:*:*:*", + "cpe:2.3:a:libjpeg62:libjpeg62_turbo:1:1.5.1-2:*:*:*:*:*:*:*" + ], + "purl": "pkg:deb/debian/libjpeg62-turbo@1:1.5.1-2?arch=amd64\u0026upstream=libjpeg-turbo\u0026distro=debian-9", + "upstreams": [ + { + "name": "libjpeg-turbo" + } + ], + "metadata": null + } + }, + { + "vulnerability": { + "id": "CVE-2020-19131", + "dataSource": "https://security-tracker.debian.org/tracker/CVE-2020-19131", + "namespace": "debian:distro:debian:9", + "severity": "High", + "urls": [ + "https://security-tracker.debian.org/tracker/CVE-2020-19131" + ], + "description": "Buffer Overflow in LibTiff v4.0.10 allows attackers to cause a denial of service via the \"invertImage()\" function in the component \"tiffcrop\".", + "cvss": null, + "fix": { + "versions": [ + "4.0.8-2+deb9u7" + ], + "state": "fixed" + }, + "advisories": null + }, + "relatedVulnerabilities": [ + { + "id": "CVE-2020-19131", + "dataSource": "https://nvd.nist.gov/vuln/detail/CVE-2020-19131", + "namespace": "nvd:cpe", + "severity": "High", + "urls": [ + "http://blog.topsec.com.cn/%E5%A4%A9%E8%9E%8D%E4%BF%A1%E5%85%B3%E4%BA%8Elibtiff%E4%B8%ADinvertimage%E5%87%BD%E6%95%B0%E5%A0%86%E6%BA%A2%E5%87%BA%E6%BC%8F%E6%B4%9E%E7%9A%84%E5%88%86%E6%9E%90/", + "http://bugzilla.maptools.org/show_bug.cgi?id=2831", + "https://lists.debian.org/debian-lts-announce/2021/10/msg00004.html" + ], + "description": "Buffer Overflow in LibTiff v4.0.10 allows attackers to cause a denial of service via the \"invertImage()\" function in the component \"tiffcrop\".", + "cvss": null + } + ], + "matchDetails": [ + { + "type": "exact-indirect-match", + "matcher": "dpkg-matcher", + "searchedBy": { + "distro": { + "type": "debian", + "version": "9" + }, + "namespace": "debian:distro:debian:9", + "package": { + "name": "tiff", + "version": "4.0.8-2+deb9u2" + } + }, + "found": { + "versionConstraint": "\u003c 4.0.8-2+deb9u7 (deb)", + "vulnerabilityID": "CVE-2020-19131" + } + } + ], + "artifact": { + "name": "libtiff5", + "version": "4.0.8-2+deb9u2", + "type": "deb", + "locations": null, + "language": "", + "licenses": [ + "LicenseRef-Hylafax" + ], + "cpes": [ + "cpe:2.3:a:libtiff5:libtiff5:4.0.8-2+deb9u2:*:*:*:*:*:*:*" + ], + "purl": "pkg:deb/debian/libtiff5@4.0.8-2+deb9u2?arch=amd64\u0026upstream=tiff\u0026distro=debian-9", + "upstreams": [ + { + "name": "tiff" + } + ], + "metadata": null + } + }, + { + "vulnerability": { + "id": "CVE-2020-19144", + "dataSource": "https://security-tracker.debian.org/tracker/CVE-2020-19144", + "namespace": "debian:distro:debian:9", + "severity": "Medium", + "urls": [ + "https://security-tracker.debian.org/tracker/CVE-2020-19144" + ], + "description": "Buffer Overflow in LibTiff v4.0.10 allows attackers to cause a denial of service via the 'in _TIFFmemcpy' funtion in the component 'tif_unix.c'.", + "cvss": null, + "fix": { + "versions": [ + "4.0.8-2+deb9u7" + ], + "state": "fixed" + }, + "advisories": null + }, + "relatedVulnerabilities": [ + { + "id": "CVE-2020-19144", + "dataSource": "https://nvd.nist.gov/vuln/detail/CVE-2020-19144", + "namespace": "nvd:cpe", + "severity": "Medium", + "urls": [ + "http://bugzilla.maptools.org/show_bug.cgi?id=2852", + "https://gitlab.com/libtiff/libtiff/-/issues/159", + "https://lists.debian.org/debian-lts-announce/2021/10/msg00004.html", + "https://security.netapp.com/advisory/ntap-20211004-0005/" + ], + "description": "Buffer Overflow in LibTiff v4.0.10 allows attackers to cause a denial of service via the 'in _TIFFmemcpy' funtion in the component 'tif_unix.c'.", + "cvss": null + } + ], + "matchDetails": [ + { + "type": "exact-indirect-match", + "matcher": "dpkg-matcher", + "searchedBy": { + "distro": { + "type": "debian", + "version": "9" + }, + "namespace": "debian:distro:debian:9", + "package": { + "name": "tiff", + "version": "4.0.8-2+deb9u2" + } + }, + "found": { + "versionConstraint": "\u003c 4.0.8-2+deb9u7 (deb)", + "vulnerabilityID": "CVE-2020-19144" + } + } + ], + "artifact": { + "name": "libtiff5", + "version": "4.0.8-2+deb9u2", + "type": "deb", + "locations": null, + "language": "", + "licenses": [ + "LicenseRef-Hylafax" + ], + "cpes": [ + "cpe:2.3:a:libtiff5:libtiff5:4.0.8-2+deb9u2:*:*:*:*:*:*:*" + ], + "purl": "pkg:deb/debian/libtiff5@4.0.8-2+deb9u2?arch=amd64\u0026upstream=tiff\u0026distro=debian-9", + "upstreams": [ + { + "name": "tiff" + } + ], + "metadata": null + } + }, + { + "vulnerability": { + "id": "CVE-2020-1971", + "dataSource": "https://security-tracker.debian.org/tracker/CVE-2020-1971", + "namespace": "debian:distro:debian:9", + "severity": "Medium", + "urls": [ + "https://security-tracker.debian.org/tracker/CVE-2020-1971" + ], + "description": "The X.509 GeneralName type is a generic type for representing different types of names. One of those name types is known as EDIPartyName. OpenSSL provides a function GENERAL_NAME_cmp which compares different instances of a GENERAL_NAME to see if they are equal or not. This function behaves incorrectly when both GENERAL_NAMEs contain an EDIPARTYNAME. A NULL pointer dereference and a crash may occur leading to a possible denial of service attack. OpenSSL itself uses the GENERAL_NAME_cmp function for two purposes: 1) Comparing CRL distribution point names between an available CRL and a CRL distribution point embedded in an X509 certificate 2) When verifying that a timestamp response token signer matches the timestamp authority name (exposed via the API functions TS_RESP_verify_response and TS_RESP_verify_token) If an attacker can control both items being compared then that attacker could trigger a crash. For example if the attacker can trick a client or server into checking a malicious certificate against a malicious CRL then this may occur. Note that some applications automatically download CRLs based on a URL embedded in a certificate. This checking happens prior to the signatures on the certificate and CRL being verified. OpenSSL's s_server, s_client and verify tools have support for the \"-crl_download\" option which implements automatic CRL downloading and this attack has been demonstrated to work against those tools. Note that an unrelated bug means that affected versions of OpenSSL cannot parse or construct correct encodings of EDIPARTYNAME. However it is possible to construct a malformed EDIPARTYNAME that OpenSSL's parser will accept and hence trigger this attack. All OpenSSL 1.1.1 and 1.0.2 versions are affected by this issue. Other OpenSSL releases are out of support and have not been checked. Fixed in OpenSSL 1.1.1i (Affected 1.1.1-1.1.1h). Fixed in OpenSSL 1.0.2x (Affected 1.0.2-1.0.2w).", + "cvss": null, + "fix": { + "versions": [ + "1.1.0l-1~deb9u2" + ], + "state": "fixed" + }, + "advisories": null + }, + "relatedVulnerabilities": [ + { + "id": "CVE-2020-1971", + "dataSource": "https://nvd.nist.gov/vuln/detail/CVE-2020-1971", + "namespace": "nvd:cpe", + "severity": "Medium", + "urls": [ + "http://www.openwall.com/lists/oss-security/2021/09/14/2", + "https://cert-portal.siemens.com/productcert/pdf/ssa-389290.pdf", + "https://git.openssl.org/gitweb/?p=openssl.git;a=commitdiff;h=2154ab83e14ede338d2ede9bbe5cdfce5d5a6c9e", + "https://git.openssl.org/gitweb/?p=openssl.git;a=commitdiff;h=f960d81215ebf3f65e03d4d5d857fb9b666d6920", + "https://kb.pulsesecure.net/articles/Pulse_Security_Advisories/SA44676", + "https://lists.apache.org/thread.html/r63c6f2dd363d9b514d0a4bcf624580616a679898cc14c109a49b750c@%3Cdev.tomcat.apache.org%3E", + "https://lists.apache.org/thread.html/rbb769f771711fb274e0a4acb1b5911c8aab544a6ac5e8c12d40c5143@%3Ccommits.pulsar.apache.org%3E", + "https://lists.debian.org/debian-lts-announce/2020/12/msg00020.html", + "https://lists.debian.org/debian-lts-announce/2020/12/msg00021.html", + "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/DGSI34Y5LQ5RYXN4M2I5ZQT65LFVDOUU/", + "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/PWPSSZNZOBJU2YR6Z4TGHXKYW3YP5QG7/", + "https://security.FreeBSD.org/advisories/FreeBSD-SA-20:33.openssl.asc", + "https://security.gentoo.org/glsa/202012-13", + "https://security.netapp.com/advisory/ntap-20201218-0005/", + "https://security.netapp.com/advisory/ntap-20210513-0002/", + "https://www.debian.org/security/2020/dsa-4807", + "https://www.openssl.org/news/secadv/20201208.txt", + "https://www.oracle.com//security-alerts/cpujul2021.html", + "https://www.oracle.com/security-alerts/cpuApr2021.html", + "https://www.oracle.com/security-alerts/cpuapr2022.html", + "https://www.oracle.com/security-alerts/cpujan2021.html", + "https://www.oracle.com/security-alerts/cpuoct2021.html", + "https://www.tenable.com/security/tns-2020-11", + "https://www.tenable.com/security/tns-2021-09", + "https://www.tenable.com/security/tns-2021-10" + ], + "description": "The X.509 GeneralName type is a generic type for representing different types of names. One of those name types is known as EDIPartyName. OpenSSL provides a function GENERAL_NAME_cmp which compares different instances of a GENERAL_NAME to see if they are equal or not. This function behaves incorrectly when both GENERAL_NAMEs contain an EDIPARTYNAME. A NULL pointer dereference and a crash may occur leading to a possible denial of service attack. OpenSSL itself uses the GENERAL_NAME_cmp function for two purposes: 1) Comparing CRL distribution point names between an available CRL and a CRL distribution point embedded in an X509 certificate 2) When verifying that a timestamp response token signer matches the timestamp authority name (exposed via the API functions TS_RESP_verify_response and TS_RESP_verify_token) If an attacker can control both items being compared then that attacker could trigger a crash. For example if the attacker can trick a client or server into checking a malicious certificate against a malicious CRL then this may occur. Note that some applications automatically download CRLs based on a URL embedded in a certificate. This checking happens prior to the signatures on the certificate and CRL being verified. OpenSSL's s_server, s_client and verify tools have support for the \"-crl_download\" option which implements automatic CRL downloading and this attack has been demonstrated to work against those tools. Note that an unrelated bug means that affected versions of OpenSSL cannot parse or construct correct encodings of EDIPARTYNAME. However it is possible to construct a malformed EDIPARTYNAME that OpenSSL's parser will accept and hence trigger this attack. All OpenSSL 1.1.1 and 1.0.2 versions are affected by this issue. Other OpenSSL releases are out of support and have not been checked. Fixed in OpenSSL 1.1.1i (Affected 1.1.1-1.1.1h). Fixed in OpenSSL 1.0.2x (Affected 1.0.2-1.0.2w).", + "cvss": null + } + ], + "matchDetails": [ + { + "type": "exact-indirect-match", + "matcher": "dpkg-matcher", + "searchedBy": { + "distro": { + "type": "debian", + "version": "9" + }, + "namespace": "debian:distro:debian:9", + "package": { + "name": "openssl", + "version": "1.1.0f-3+deb9u2" + } + }, + "found": { + "versionConstraint": "\u003c 1.1.0l-1~deb9u2 (deb)", + "vulnerabilityID": "CVE-2020-1971" + } + } + ], + "artifact": { + "name": "libssl1.1", + "version": "1.1.0f-3+deb9u2", + "type": "deb", + "locations": null, + "language": "", + "licenses": [], + "cpes": [ + "cpe:2.3:a:libssl1.1:libssl1.1:1.1.0f-3+deb9u2:*:*:*:*:*:*:*" + ], + "purl": "pkg:deb/debian/libssl1.1@1.1.0f-3+deb9u2?arch=amd64\u0026upstream=openssl\u0026distro=debian-9", + "upstreams": [ + { + "name": "openssl" + } + ], + "metadata": null + } + }, + { + "vulnerability": { + "id": "CVE-2020-21913", + "dataSource": "https://security-tracker.debian.org/tracker/CVE-2020-21913", + "namespace": "debian:distro:debian:9", + "severity": "Medium", + "urls": [ + "https://security-tracker.debian.org/tracker/CVE-2020-21913" + ], + "description": "International Components for Unicode (ICU-20850) v66.1 was discovered to contain a use after free bug in the pkg_createWithAssemblyCode function in the file tools/pkgdata/pkgdata.cpp.", + "cvss": null, + "fix": { + "versions": [ + "57.1-6+deb9u5" + ], + "state": "fixed" + }, + "advisories": null + }, + "relatedVulnerabilities": [ + { + "id": "CVE-2020-21913", + "dataSource": "https://nvd.nist.gov/vuln/detail/CVE-2020-21913", + "namespace": "nvd:cpe", + "severity": "Medium", + "urls": [ + "https://github.com/unicode-org/icu/pull/886", + "https://lists.debian.org/debian-lts-announce/2021/10/msg00008.html", + "https://unicode-org.atlassian.net/browse/ICU-20850", + "https://www.debian.org/security/2021/dsa-5014" + ], + "description": "International Components for Unicode (ICU-20850) v66.1 was discovered to contain a use after free bug in the pkg_createWithAssemblyCode function in the file tools/pkgdata/pkgdata.cpp.", + "cvss": null + } + ], + "matchDetails": [ + { + "type": "exact-indirect-match", + "matcher": "dpkg-matcher", + "searchedBy": { + "distro": { + "type": "debian", + "version": "9" + }, + "namespace": "debian:distro:debian:9", + "package": { + "name": "icu", + "version": "57.1-6+deb9u2" + } + }, + "found": { + "versionConstraint": "\u003c 57.1-6+deb9u5 (deb)", + "vulnerabilityID": "CVE-2020-21913" + } + } + ], + "artifact": { + "name": "libicu57", + "version": "57.1-6+deb9u2", + "type": "deb", + "locations": null, + "language": "", + "licenses": [], + "cpes": [ + "cpe:2.3:a:libicu57:libicu57:57.1-6+deb9u2:*:*:*:*:*:*:*" + ], + "purl": "pkg:deb/debian/libicu57@57.1-6+deb9u2?arch=amd64\u0026upstream=icu\u0026distro=debian-9", + "upstreams": [ + { + "name": "icu" + } + ], + "metadata": null + } + }, + { + "vulnerability": { + "id": "CVE-2020-24977", + "dataSource": "https://security-tracker.debian.org/tracker/CVE-2020-24977", + "namespace": "debian:distro:debian:9", + "severity": "Medium", + "urls": [ + "https://security-tracker.debian.org/tracker/CVE-2020-24977" + ], + "description": "GNOME project libxml2 v2.9.10 has a global buffer over-read vulnerability in xmlEncodeEntitiesInternal at libxml2/entities.c. The issue has been fixed in commit 50f06b3e.", + "cvss": null, + "fix": { + "versions": [ + "2.9.4+dfsg1-2.2+deb9u3" + ], + "state": "fixed" + }, + "advisories": null + }, + "relatedVulnerabilities": [ + { + "id": "CVE-2020-24977", + "dataSource": "https://nvd.nist.gov/vuln/detail/CVE-2020-24977", + "namespace": "nvd:cpe", + "severity": "Medium", + "urls": [ + "http://lists.opensuse.org/opensuse-security-announce/2020-09/msg00036.html", + "http://lists.opensuse.org/opensuse-security-announce/2020-09/msg00061.html", + "https://gitlab.gnome.org/GNOME/libxml2/-/commit/50f06b3efb638efb0abd95dc62dca05ae67882c2", + "https://gitlab.gnome.org/GNOME/libxml2/-/issues/178", + "https://lists.apache.org/thread.html/rf9fa47ab66495c78bb4120b0754dd9531ca2ff0430f6685ac9b07772@%3Cdev.mina.apache.org%3E", + "https://lists.debian.org/debian-lts-announce/2020/09/msg00009.html", + "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/2NQ5GTDYOVH26PBCPYXXMGW5ZZXWMGZC/", + "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/5KTUAGDLEHTH6HU66HBFAFTSQ3OKRAN3/", + "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/674LQPJO2P2XTBTREFR5LOZMBTZ4PZAY/", + "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/7KQXOHIE3MNY3VQXEN7LDQUJNIHOVHAW/", + "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/ENEHQIBMSI6TZVS35Y6I4FCTYUQDLJVP/", + "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/H3IQ7OQXBKWD3YP7HO6KCNOMLE5ZO2IR/", + "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/J3ICASXZI2UQYFJAOQWHSTNWGED3VXOE/", + "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/JCHXIWR5DHYO3RSO7RAHEC6VJKXD2EH2/", + "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/O7MEWYKIKMV2SKMGH4IDWVU3ZGJXBCPQ/", + "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/RIQAMBA2IJUTQG5VOP5LZVIZRNCKXHEQ/", + "https://security.gentoo.org/glsa/202107-05", + "https://security.netapp.com/advisory/ntap-20200924-0001/", + "https://www.oracle.com/security-alerts/cpuapr2022.html", + "https://www.oracle.com/security-alerts/cpujul2022.html", + "https://www.oracle.com/security-alerts/cpuoct2021.html" + ], + "description": "GNOME project libxml2 v2.9.10 has a global buffer over-read vulnerability in xmlEncodeEntitiesInternal at libxml2/entities.c. The issue has been fixed in commit 50f06b3e.", + "cvss": null + } + ], + "matchDetails": [ + { + "type": "exact-direct-match", + "matcher": "dpkg-matcher", + "searchedBy": { + "distro": { + "type": "debian", + "version": "9" + }, + "namespace": "debian:distro:debian:9", + "package": { + "name": "libxml2", + "version": "2.9.4+dfsg1-2.2+deb9u2" + } + }, + "found": { + "versionConstraint": "\u003c 2.9.4+dfsg1-2.2+deb9u3 (deb)", + "vulnerabilityID": "CVE-2020-24977" + } + } + ], + "artifact": { + "name": "libxml2", + "version": "2.9.4+dfsg1-2.2+deb9u2", + "type": "deb", + "locations": null, + "language": "", + "licenses": [], + "cpes": [ + "cpe:2.3:a:libxml2:libxml2:2.9.4+dfsg1-2.2+deb9u2:*:*:*:*:*:*:*" + ], + "purl": "pkg:deb/debian/libxml2@2.9.4+dfsg1-2.2+deb9u2?arch=amd64\u0026distro=debian-9", + "upstreams": null, + "metadata": null + } + }, + { + "vulnerability": { + "id": "CVE-2020-27350", + "dataSource": "https://security-tracker.debian.org/tracker/CVE-2020-27350", + "namespace": "debian:distro:debian:9", + "severity": "Medium", + "urls": [ + "https://security-tracker.debian.org/tracker/CVE-2020-27350" + ], + "description": "APT had several integer overflows and underflows while parsing .deb packages, aka GHSL-2020-168 GHSL-2020-169, in files apt-pkg/contrib/extracttar.cc, apt-pkg/deb/debfile.cc, and apt-pkg/contrib/arfile.cc. This issue affects: apt 1.2.32ubuntu0 versions prior to 1.2.32ubuntu0.2; 1.6.12ubuntu0 versions prior to 1.6.12ubuntu0.2; 2.0.2ubuntu0 versions prior to 2.0.2ubuntu0.2; 2.1.10ubuntu0 versions prior to 2.1.10ubuntu0.1;", + "cvss": null, + "fix": { + "versions": [ + "1.4.11" + ], + "state": "fixed" + }, + "advisories": null + }, + "relatedVulnerabilities": [ + { + "id": "CVE-2020-27350", + "dataSource": "https://nvd.nist.gov/vuln/detail/CVE-2020-27350", + "namespace": "nvd:cpe", + "severity": "Medium", + "urls": [ + "https://bugs.launchpad.net/bugs/1899193", + "https://security.netapp.com/advisory/ntap-20210108-0005/", + "https://usn.ubuntu.com/usn/usn-4667-1", + "https://www.debian.org/security/2020/dsa-4808" + ], + "description": "APT had several integer overflows and underflows while parsing .deb packages, aka GHSL-2020-168 GHSL-2020-169, in files apt-pkg/contrib/extracttar.cc, apt-pkg/deb/debfile.cc, and apt-pkg/contrib/arfile.cc. This issue affects: apt 1.2.32ubuntu0 versions prior to 1.2.32ubuntu0.2; 1.6.12ubuntu0 versions prior to 1.6.12ubuntu0.2; 2.0.2ubuntu0 versions prior to 2.0.2ubuntu0.2; 2.1.10ubuntu0 versions prior to 2.1.10ubuntu0.1;", + "cvss": null + } + ], + "matchDetails": [ + { + "type": "exact-direct-match", + "matcher": "dpkg-matcher", + "searchedBy": { + "distro": { + "type": "debian", + "version": "9" + }, + "namespace": "debian:distro:debian:9", + "package": { + "name": "apt", + "version": "1.4.8" + } + }, + "found": { + "versionConstraint": "\u003c 1.4.11 (deb)", + "vulnerabilityID": "CVE-2020-27350" + } + } + ], + "artifact": { + "name": "apt", + "version": "1.4.8", + "type": "deb", + "locations": null, + "language": "", + "licenses": [ + "GPL-2.0-only", + "LicenseRef-GPLv2-" + ], + "cpes": [ + "cpe:2.3:a:apt:apt:1.4.8:*:*:*:*:*:*:*" + ], + "purl": "pkg:deb/debian/apt@1.4.8?arch=amd64\u0026distro=debian-9", + "upstreams": null, + "metadata": null + } + }, + { + "vulnerability": { + "id": "CVE-2020-27350", + "dataSource": "https://security-tracker.debian.org/tracker/CVE-2020-27350", + "namespace": "debian:distro:debian:9", + "severity": "Medium", + "urls": [ + "https://security-tracker.debian.org/tracker/CVE-2020-27350" + ], + "description": "APT had several integer overflows and underflows while parsing .deb packages, aka GHSL-2020-168 GHSL-2020-169, in files apt-pkg/contrib/extracttar.cc, apt-pkg/deb/debfile.cc, and apt-pkg/contrib/arfile.cc. This issue affects: apt 1.2.32ubuntu0 versions prior to 1.2.32ubuntu0.2; 1.6.12ubuntu0 versions prior to 1.6.12ubuntu0.2; 2.0.2ubuntu0 versions prior to 2.0.2ubuntu0.2; 2.1.10ubuntu0 versions prior to 2.1.10ubuntu0.1;", + "cvss": null, + "fix": { + "versions": [ + "1.4.11" + ], + "state": "fixed" + }, + "advisories": null + }, + "relatedVulnerabilities": [ + { + "id": "CVE-2020-27350", + "dataSource": "https://nvd.nist.gov/vuln/detail/CVE-2020-27350", + "namespace": "nvd:cpe", + "severity": "Medium", + "urls": [ + "https://bugs.launchpad.net/bugs/1899193", + "https://security.netapp.com/advisory/ntap-20210108-0005/", + "https://usn.ubuntu.com/usn/usn-4667-1", + "https://www.debian.org/security/2020/dsa-4808" + ], + "description": "APT had several integer overflows and underflows while parsing .deb packages, aka GHSL-2020-168 GHSL-2020-169, in files apt-pkg/contrib/extracttar.cc, apt-pkg/deb/debfile.cc, and apt-pkg/contrib/arfile.cc. This issue affects: apt 1.2.32ubuntu0 versions prior to 1.2.32ubuntu0.2; 1.6.12ubuntu0 versions prior to 1.6.12ubuntu0.2; 2.0.2ubuntu0 versions prior to 2.0.2ubuntu0.2; 2.1.10ubuntu0 versions prior to 2.1.10ubuntu0.1;", + "cvss": null + } + ], + "matchDetails": [ + { + "type": "exact-indirect-match", + "matcher": "dpkg-matcher", + "searchedBy": { + "distro": { + "type": "debian", + "version": "9" + }, + "namespace": "debian:distro:debian:9", + "package": { + "name": "apt", + "version": "1.4.8" + } + }, + "found": { + "versionConstraint": "\u003c 1.4.11 (deb)", + "vulnerabilityID": "CVE-2020-27350" + } + } + ], + "artifact": { + "name": "libapt-pkg5.0", + "version": "1.4.8", + "type": "deb", + "locations": null, + "language": "", + "licenses": [ + "GPL-2.0-only", + "LicenseRef-GPLv2-" + ], + "cpes": [ + "cpe:2.3:a:libapt-pkg5.0:libapt-pkg5.0:1.4.8:*:*:*:*:*:*:*", + "cpe:2.3:a:libapt-pkg5.0:libapt_pkg5.0:1.4.8:*:*:*:*:*:*:*", + "cpe:2.3:a:libapt_pkg5.0:libapt-pkg5.0:1.4.8:*:*:*:*:*:*:*", + "cpe:2.3:a:libapt_pkg5.0:libapt_pkg5.0:1.4.8:*:*:*:*:*:*:*", + "cpe:2.3:a:libapt:libapt-pkg5.0:1.4.8:*:*:*:*:*:*:*", + "cpe:2.3:a:libapt:libapt_pkg5.0:1.4.8:*:*:*:*:*:*:*" + ], + "purl": "pkg:deb/debian/libapt-pkg5.0@1.4.8?arch=amd64\u0026upstream=apt\u0026distro=debian-9", + "upstreams": [ + { + "name": "apt" + } + ], + "metadata": null + } + }, + { + "vulnerability": { + "id": "CVE-2020-27618", + "dataSource": "https://security-tracker.debian.org/tracker/CVE-2020-27618", + "namespace": "debian:distro:debian:9", + "severity": "Medium", + "urls": [ + "https://security-tracker.debian.org/tracker/CVE-2020-27618" + ], + "description": "The iconv function in the GNU C Library (aka glibc or libc6) 2.32 and earlier, when processing invalid multi-byte input sequences in IBM1364, IBM1371, IBM1388, IBM1390, and IBM1399 encodings, fails to advance the input state, which could lead to an infinite loop in applications, resulting in a denial of service, a different vulnerability from CVE-2016-10228.", + "cvss": null, + "fix": { + "versions": [], + "state": "wont-fix" + }, + "advisories": null + }, + "relatedVulnerabilities": [ + { + "id": "CVE-2020-27618", + "dataSource": "https://nvd.nist.gov/vuln/detail/CVE-2020-27618", + "namespace": "nvd:cpe", + "severity": "Medium", + "urls": [ + "https://lists.debian.org/debian-lts-announce/2022/10/msg00021.html", + "https://security.gentoo.org/glsa/202107-07", + "https://security.netapp.com/advisory/ntap-20210401-0006/", + "https://sourceware.org/bugzilla/show_bug.cgi?id=19519#c21", + "https://sourceware.org/bugzilla/show_bug.cgi?id=26224", + "https://www.oracle.com/security-alerts/cpuapr2022.html", + "https://www.oracle.com/security-alerts/cpujan2022.html" + ], + "description": "The iconv function in the GNU C Library (aka glibc or libc6) 2.32 and earlier, when processing invalid multi-byte input sequences in IBM1364, IBM1371, IBM1388, IBM1390, and IBM1399 encodings, fails to advance the input state, which could lead to an infinite loop in applications, resulting in a denial of service, a different vulnerability from CVE-2016-10228.", + "cvss": null + } + ], + "matchDetails": [ + { + "type": "exact-indirect-match", + "matcher": "dpkg-matcher", + "searchedBy": { + "distro": { + "type": "debian", + "version": "9" + }, + "namespace": "debian:distro:debian:9", + "package": { + "name": "glibc", + "version": "2.24-11+deb9u3" + } + }, + "found": { + "versionConstraint": "none (deb)", + "vulnerabilityID": "CVE-2020-27618" + } + } + ], + "artifact": { + "name": "libc-bin", + "version": "2.24-11+deb9u3", + "type": "deb", + "locations": null, + "language": "", + "licenses": [ + "GPL-2.0-only", + "LGPL-2.1-only" + ], + "cpes": [ + "cpe:2.3:a:libc-bin:libc-bin:2.24-11+deb9u3:*:*:*:*:*:*:*", + "cpe:2.3:a:libc-bin:libc_bin:2.24-11+deb9u3:*:*:*:*:*:*:*", + "cpe:2.3:a:libc_bin:libc-bin:2.24-11+deb9u3:*:*:*:*:*:*:*", + "cpe:2.3:a:libc_bin:libc_bin:2.24-11+deb9u3:*:*:*:*:*:*:*", + "cpe:2.3:a:libc:libc-bin:2.24-11+deb9u3:*:*:*:*:*:*:*", + "cpe:2.3:a:libc:libc_bin:2.24-11+deb9u3:*:*:*:*:*:*:*" + ], + "purl": "pkg:deb/debian/libc-bin@2.24-11+deb9u3?arch=amd64\u0026upstream=glibc\u0026distro=debian-9", + "upstreams": [ + { + "name": "glibc" + } + ], + "metadata": null + } + }, + { + "vulnerability": { + "id": "CVE-2020-27618", + "dataSource": "https://security-tracker.debian.org/tracker/CVE-2020-27618", + "namespace": "debian:distro:debian:9", + "severity": "Medium", + "urls": [ + "https://security-tracker.debian.org/tracker/CVE-2020-27618" + ], + "description": "The iconv function in the GNU C Library (aka glibc or libc6) 2.32 and earlier, when processing invalid multi-byte input sequences in IBM1364, IBM1371, IBM1388, IBM1390, and IBM1399 encodings, fails to advance the input state, which could lead to an infinite loop in applications, resulting in a denial of service, a different vulnerability from CVE-2016-10228.", + "cvss": null, + "fix": { + "versions": [], + "state": "wont-fix" + }, + "advisories": null + }, + "relatedVulnerabilities": [ + { + "id": "CVE-2020-27618", + "dataSource": "https://nvd.nist.gov/vuln/detail/CVE-2020-27618", + "namespace": "nvd:cpe", + "severity": "Medium", + "urls": [ + "https://lists.debian.org/debian-lts-announce/2022/10/msg00021.html", + "https://security.gentoo.org/glsa/202107-07", + "https://security.netapp.com/advisory/ntap-20210401-0006/", + "https://sourceware.org/bugzilla/show_bug.cgi?id=19519#c21", + "https://sourceware.org/bugzilla/show_bug.cgi?id=26224", + "https://www.oracle.com/security-alerts/cpuapr2022.html", + "https://www.oracle.com/security-alerts/cpujan2022.html" + ], + "description": "The iconv function in the GNU C Library (aka glibc or libc6) 2.32 and earlier, when processing invalid multi-byte input sequences in IBM1364, IBM1371, IBM1388, IBM1390, and IBM1399 encodings, fails to advance the input state, which could lead to an infinite loop in applications, resulting in a denial of service, a different vulnerability from CVE-2016-10228.", + "cvss": null + } + ], + "matchDetails": [ + { + "type": "exact-indirect-match", + "matcher": "dpkg-matcher", + "searchedBy": { + "distro": { + "type": "debian", + "version": "9" + }, + "namespace": "debian:distro:debian:9", + "package": { + "name": "glibc", + "version": "2.24-11+deb9u3" + } + }, + "found": { + "versionConstraint": "none (deb)", + "vulnerabilityID": "CVE-2020-27618" + } + } + ], + "artifact": { + "name": "libc6", + "version": "2.24-11+deb9u3", + "type": "deb", + "locations": null, + "language": "", + "licenses": [ + "GPL-2.0-only", + "LGPL-2.1-only" + ], + "cpes": [ + "cpe:2.3:a:libc6:libc6:2.24-11+deb9u3:*:*:*:*:*:*:*" + ], + "purl": "pkg:deb/debian/libc6@2.24-11+deb9u3?arch=amd64\u0026upstream=glibc\u0026distro=debian-9", + "upstreams": [ + { + "name": "glibc" + } + ], + "metadata": null + } + }, + { + "vulnerability": { + "id": "CVE-2020-27618", + "dataSource": "https://security-tracker.debian.org/tracker/CVE-2020-27618", + "namespace": "debian:distro:debian:9", + "severity": "Medium", + "urls": [ + "https://security-tracker.debian.org/tracker/CVE-2020-27618" + ], + "description": "The iconv function in the GNU C Library (aka glibc or libc6) 2.32 and earlier, when processing invalid multi-byte input sequences in IBM1364, IBM1371, IBM1388, IBM1390, and IBM1399 encodings, fails to advance the input state, which could lead to an infinite loop in applications, resulting in a denial of service, a different vulnerability from CVE-2016-10228.", + "cvss": null, + "fix": { + "versions": [], + "state": "wont-fix" + }, + "advisories": null + }, + "relatedVulnerabilities": [ + { + "id": "CVE-2020-27618", + "dataSource": "https://nvd.nist.gov/vuln/detail/CVE-2020-27618", + "namespace": "nvd:cpe", + "severity": "Medium", + "urls": [ + "https://lists.debian.org/debian-lts-announce/2022/10/msg00021.html", + "https://security.gentoo.org/glsa/202107-07", + "https://security.netapp.com/advisory/ntap-20210401-0006/", + "https://sourceware.org/bugzilla/show_bug.cgi?id=19519#c21", + "https://sourceware.org/bugzilla/show_bug.cgi?id=26224", + "https://www.oracle.com/security-alerts/cpuapr2022.html", + "https://www.oracle.com/security-alerts/cpujan2022.html" + ], + "description": "The iconv function in the GNU C Library (aka glibc or libc6) 2.32 and earlier, when processing invalid multi-byte input sequences in IBM1364, IBM1371, IBM1388, IBM1390, and IBM1399 encodings, fails to advance the input state, which could lead to an infinite loop in applications, resulting in a denial of service, a different vulnerability from CVE-2016-10228.", + "cvss": null + } + ], + "matchDetails": [ + { + "type": "exact-indirect-match", + "matcher": "dpkg-matcher", + "searchedBy": { + "distro": { + "type": "debian", + "version": "9" + }, + "namespace": "debian:distro:debian:9", + "package": { + "name": "glibc", + "version": "2.24-11+deb9u3" + } + }, + "found": { + "versionConstraint": "none (deb)", + "vulnerabilityID": "CVE-2020-27618" + } + } + ], + "artifact": { + "name": "multiarch-support", + "version": "2.24-11+deb9u3", + "type": "deb", + "locations": null, + "language": "", + "licenses": [ + "GPL-2.0-only", + "LGPL-2.1-only" + ], + "cpes": [ + "cpe:2.3:a:multiarch-support:multiarch-support:2.24-11+deb9u3:*:*:*:*:*:*:*", + "cpe:2.3:a:multiarch-support:multiarch_support:2.24-11+deb9u3:*:*:*:*:*:*:*", + "cpe:2.3:a:multiarch_support:multiarch-support:2.24-11+deb9u3:*:*:*:*:*:*:*", + "cpe:2.3:a:multiarch_support:multiarch_support:2.24-11+deb9u3:*:*:*:*:*:*:*", + "cpe:2.3:a:multiarch:multiarch-support:2.24-11+deb9u3:*:*:*:*:*:*:*", + "cpe:2.3:a:multiarch:multiarch_support:2.24-11+deb9u3:*:*:*:*:*:*:*" + ], + "purl": "pkg:deb/debian/multiarch-support@2.24-11+deb9u3?arch=amd64\u0026upstream=glibc\u0026distro=debian-9", + "upstreams": [ + { + "name": "glibc" + } + ], + "metadata": null + } + }, + { + "vulnerability": { + "id": "CVE-2020-35521", + "dataSource": "https://security-tracker.debian.org/tracker/CVE-2020-35521", + "namespace": "debian:distro:debian:9", + "severity": "Negligible", + "urls": [ + "https://security-tracker.debian.org/tracker/CVE-2020-35521" + ], + "description": "A flaw was found in libtiff. Due to a memory allocation failure in tif_read.c, a crafted TIFF file can lead to an abort, resulting in denial of service.", + "cvss": null, + "fix": { + "versions": [], + "state": "not-fixed" + }, + "advisories": null + }, + "relatedVulnerabilities": [ + { + "id": "CVE-2020-35521", + "dataSource": "https://nvd.nist.gov/vuln/detail/CVE-2020-35521", + "namespace": "nvd:cpe", + "severity": "Medium", + "urls": [ + "https://bugzilla.redhat.com/show_bug.cgi?id=1932034", + "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/BMHBYFMX3D5VGR6Y3RXTTH3Q4NF4E6IG/", + "https://security.gentoo.org/glsa/202104-06", + "https://security.netapp.com/advisory/ntap-20210521-0009/" + ], + "description": "A flaw was found in libtiff. Due to a memory allocation failure in tif_read.c, a crafted TIFF file can lead to an abort, resulting in denial of service.", + "cvss": null + } + ], + "matchDetails": [ + { + "type": "exact-indirect-match", + "matcher": "dpkg-matcher", + "searchedBy": { + "distro": { + "type": "debian", + "version": "9" + }, + "namespace": "debian:distro:debian:9", + "package": { + "name": "tiff", + "version": "4.0.8-2+deb9u2" + } + }, + "found": { + "versionConstraint": "none (deb)", + "vulnerabilityID": "CVE-2020-35521" + } + } + ], + "artifact": { + "name": "libtiff5", + "version": "4.0.8-2+deb9u2", + "type": "deb", + "locations": null, + "language": "", + "licenses": [ + "LicenseRef-Hylafax" + ], + "cpes": [ + "cpe:2.3:a:libtiff5:libtiff5:4.0.8-2+deb9u2:*:*:*:*:*:*:*" + ], + "purl": "pkg:deb/debian/libtiff5@4.0.8-2+deb9u2?arch=amd64\u0026upstream=tiff\u0026distro=debian-9", + "upstreams": [ + { + "name": "tiff" + } + ], + "metadata": null + } + }, + { + "vulnerability": { + "id": "CVE-2020-35522", + "dataSource": "https://security-tracker.debian.org/tracker/CVE-2020-35522", + "namespace": "debian:distro:debian:9", + "severity": "Negligible", + "urls": [ + "https://security-tracker.debian.org/tracker/CVE-2020-35522" + ], + "description": "In LibTIFF, there is a memory malloc failure in tif_pixarlog.c. A crafted TIFF document can lead to an abort, resulting in a remote denial of service attack.", + "cvss": null, + "fix": { + "versions": [], + "state": "not-fixed" + }, + "advisories": null + }, + "relatedVulnerabilities": [ + { + "id": "CVE-2020-35522", + "dataSource": "https://nvd.nist.gov/vuln/detail/CVE-2020-35522", + "namespace": "nvd:cpe", + "severity": "Medium", + "urls": [ + "https://bugzilla.redhat.com/show_bug.cgi?id=1932037", + "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/BMHBYFMX3D5VGR6Y3RXTTH3Q4NF4E6IG/", + "https://security.gentoo.org/glsa/202104-06", + "https://security.netapp.com/advisory/ntap-20210521-0009/" + ], + "description": "In LibTIFF, there is a memory malloc failure in tif_pixarlog.c. A crafted TIFF document can lead to an abort, resulting in a remote denial of service attack.", + "cvss": null + } + ], + "matchDetails": [ + { + "type": "exact-indirect-match", + "matcher": "dpkg-matcher", + "searchedBy": { + "distro": { + "type": "debian", + "version": "9" + }, + "namespace": "debian:distro:debian:9", + "package": { + "name": "tiff", + "version": "4.0.8-2+deb9u2" + } + }, + "found": { + "versionConstraint": "none (deb)", + "vulnerabilityID": "CVE-2020-35522" + } + } + ], + "artifact": { + "name": "libtiff5", + "version": "4.0.8-2+deb9u2", + "type": "deb", + "locations": null, + "language": "", + "licenses": [ + "LicenseRef-Hylafax" + ], + "cpes": [ + "cpe:2.3:a:libtiff5:libtiff5:4.0.8-2+deb9u2:*:*:*:*:*:*:*" + ], + "purl": "pkg:deb/debian/libtiff5@4.0.8-2+deb9u2?arch=amd64\u0026upstream=tiff\u0026distro=debian-9", + "upstreams": [ + { + "name": "tiff" + } + ], + "metadata": null + } + }, + { + "vulnerability": { + "id": "CVE-2020-35523", + "dataSource": "https://security-tracker.debian.org/tracker/CVE-2020-35523", + "namespace": "debian:distro:debian:9", + "severity": "High", + "urls": [ + "https://security-tracker.debian.org/tracker/CVE-2020-35523" + ], + "description": "An integer overflow flaw was found in libtiff that exists in the tif_getimage.c file. This flaw allows an attacker to inject and execute arbitrary code when a user opens a crafted TIFF file. The highest threat from this vulnerability is to confidentiality, integrity, as well as system availability.", + "cvss": null, + "fix": { + "versions": [ + "4.0.8-2+deb9u6" + ], + "state": "fixed" + }, + "advisories": null + }, + "relatedVulnerabilities": [ + { + "id": "CVE-2020-35523", + "dataSource": "https://nvd.nist.gov/vuln/detail/CVE-2020-35523", + "namespace": "nvd:cpe", + "severity": "High", + "urls": [ + "https://bugzilla.redhat.com/show_bug.cgi?id=1932040", + "https://gitlab.com/libtiff/libtiff/-/commit/c8d613ef497058fe653c467fc84c70a62a4a71b2", + "https://gitlab.com/libtiff/libtiff/-/merge_requests/160", + "https://lists.debian.org/debian-lts-announce/2021/06/msg00023.html", + "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/BMHBYFMX3D5VGR6Y3RXTTH3Q4NF4E6IG/", + "https://security.gentoo.org/glsa/202104-06", + "https://security.netapp.com/advisory/ntap-20210521-0009/", + "https://www.debian.org/security/2021/dsa-4869" + ], + "description": "An integer overflow flaw was found in libtiff that exists in the tif_getimage.c file. This flaw allows an attacker to inject and execute arbitrary code when a user opens a crafted TIFF file. The highest threat from this vulnerability is to confidentiality, integrity, as well as system availability.", + "cvss": null + } + ], + "matchDetails": [ + { + "type": "exact-indirect-match", + "matcher": "dpkg-matcher", + "searchedBy": { + "distro": { + "type": "debian", + "version": "9" + }, + "namespace": "debian:distro:debian:9", + "package": { + "name": "tiff", + "version": "4.0.8-2+deb9u2" + } + }, + "found": { + "versionConstraint": "\u003c 4.0.8-2+deb9u6 (deb)", + "vulnerabilityID": "CVE-2020-35523" + } + } + ], + "artifact": { + "name": "libtiff5", + "version": "4.0.8-2+deb9u2", + "type": "deb", + "locations": null, + "language": "", + "licenses": [ + "LicenseRef-Hylafax" + ], + "cpes": [ + "cpe:2.3:a:libtiff5:libtiff5:4.0.8-2+deb9u2:*:*:*:*:*:*:*" + ], + "purl": "pkg:deb/debian/libtiff5@4.0.8-2+deb9u2?arch=amd64\u0026upstream=tiff\u0026distro=debian-9", + "upstreams": [ + { + "name": "tiff" + } + ], + "metadata": null + } + }, + { + "vulnerability": { + "id": "CVE-2020-35524", + "dataSource": "https://security-tracker.debian.org/tracker/CVE-2020-35524", + "namespace": "debian:distro:debian:9", + "severity": "High", + "urls": [ + "https://security-tracker.debian.org/tracker/CVE-2020-35524" + ], + "description": "A heap-based buffer overflow flaw was found in libtiff in the handling of TIFF images in libtiff's TIFF2PDF tool. A specially crafted TIFF file can lead to arbitrary code execution. The highest threat from this vulnerability is to confidentiality, integrity, as well as system availability.", + "cvss": null, + "fix": { + "versions": [ + "4.0.8-2+deb9u6" + ], + "state": "fixed" + }, + "advisories": null + }, + "relatedVulnerabilities": [ + { + "id": "CVE-2020-35524", + "dataSource": "https://nvd.nist.gov/vuln/detail/CVE-2020-35524", + "namespace": "nvd:cpe", + "severity": "High", + "urls": [ + "https://bugzilla.redhat.com/show_bug.cgi?id=1932044", + "https://gitlab.com/libtiff/libtiff/-/merge_requests/159", + "https://gitlab.com/rzkn/libtiff/-/commit/7be2e452ddcf6d7abca88f41d3761e6edab72b22", + "https://lists.debian.org/debian-lts-announce/2021/06/msg00023.html", + "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/BMHBYFMX3D5VGR6Y3RXTTH3Q4NF4E6IG/", + "https://security.gentoo.org/glsa/202104-06", + "https://security.netapp.com/advisory/ntap-20210521-0009/", + "https://www.debian.org/security/2021/dsa-4869" + ], + "description": "A heap-based buffer overflow flaw was found in libtiff in the handling of TIFF images in libtiff's TIFF2PDF tool. A specially crafted TIFF file can lead to arbitrary code execution. The highest threat from this vulnerability is to confidentiality, integrity, as well as system availability.", + "cvss": null + } + ], + "matchDetails": [ + { + "type": "exact-indirect-match", + "matcher": "dpkg-matcher", + "searchedBy": { + "distro": { + "type": "debian", + "version": "9" + }, + "namespace": "debian:distro:debian:9", + "package": { + "name": "tiff", + "version": "4.0.8-2+deb9u2" + } + }, + "found": { + "versionConstraint": "\u003c 4.0.8-2+deb9u6 (deb)", + "vulnerabilityID": "CVE-2020-35524" + } + } + ], + "artifact": { + "name": "libtiff5", + "version": "4.0.8-2+deb9u2", + "type": "deb", + "locations": null, + "language": "", + "licenses": [ + "LicenseRef-Hylafax" + ], + "cpes": [ + "cpe:2.3:a:libtiff5:libtiff5:4.0.8-2+deb9u2:*:*:*:*:*:*:*" + ], + "purl": "pkg:deb/debian/libtiff5@4.0.8-2+deb9u2?arch=amd64\u0026upstream=tiff\u0026distro=debian-9", + "upstreams": [ + { + "name": "tiff" + } + ], + "metadata": null + } + }, + { + "vulnerability": { + "id": "CVE-2020-36309", + "dataSource": "https://security-tracker.debian.org/tracker/CVE-2020-36309", + "namespace": "debian:distro:debian:9", + "severity": "Medium", + "urls": [ + "https://security-tracker.debian.org/tracker/CVE-2020-36309" + ], + "description": "ngx_http_lua_module (aka lua-nginx-module) before 0.10.16 in OpenResty allows unsafe characters in an argument when using the API to mutate a URI, or a request or response header.", + "cvss": null, + "fix": { + "versions": [], + "state": "wont-fix" + }, + "advisories": null + }, + "relatedVulnerabilities": [ + { + "id": "CVE-2020-36309", + "dataSource": "https://nvd.nist.gov/vuln/detail/CVE-2020-36309", + "namespace": "nvd:cpe", + "severity": "Medium", + "urls": [ + "https://github.com/openresty/lua-nginx-module/compare/v0.10.15...v0.10.16", + "https://github.com/openresty/lua-nginx-module/pull/1654", + "https://news.ycombinator.com/item?id=26712562", + "https://security.netapp.com/advisory/ntap-20210507-0005/" + ], + "description": "ngx_http_lua_module (aka lua-nginx-module) before 0.10.16 in OpenResty allows unsafe characters in an argument when using the API to mutate a URI, or a request or response header.", + "cvss": null + } + ], + "matchDetails": [ + { + "type": "exact-direct-match", + "matcher": "dpkg-matcher", + "searchedBy": { + "distro": { + "type": "debian", + "version": "9" + }, + "namespace": "debian:distro:debian:9", + "package": { + "name": "nginx", + "version": "1.14.1-1~stretch" + } + }, + "found": { + "versionConstraint": "none (deb)", + "vulnerabilityID": "CVE-2020-36309" + } + } + ], + "artifact": { + "name": "nginx", + "version": "1.14.1-1~stretch", + "type": "deb", + "locations": null, + "language": "", + "licenses": [], + "cpes": [ + "cpe:2.3:a:nginx:nginx:1.14.1-1~stretch:*:*:*:*:*:*:*" + ], + "purl": "pkg:deb/debian/nginx@1.14.1-1~stretch?arch=amd64\u0026distro=debian-9", + "upstreams": null, + "metadata": null + } + }, + { + "vulnerability": { + "id": "CVE-2020-36328", + "dataSource": "https://security-tracker.debian.org/tracker/CVE-2020-36328", + "namespace": "debian:distro:debian:9", + "severity": "Critical", + "urls": [ + "https://security-tracker.debian.org/tracker/CVE-2020-36328" + ], + "description": "A flaw was found in libwebp in versions before 1.0.1. A heap-based buffer overflow in function WebPDecodeRGBInto is possible due to an invalid check for buffer size. The highest threat from this vulnerability is to data confidentiality and integrity as well as system availability.", + "cvss": null, + "fix": { + "versions": [ + "0.5.2-1+deb9u1" + ], + "state": "fixed" + }, + "advisories": null + }, + "relatedVulnerabilities": [ + { + "id": "CVE-2020-36328", + "dataSource": "https://nvd.nist.gov/vuln/detail/CVE-2020-36328", + "namespace": "nvd:cpe", + "severity": "Critical", + "urls": [ + "http://seclists.org/fulldisclosure/2021/Jul/54", + "https://bugzilla.redhat.com/show_bug.cgi?id=1956829", + "https://lists.debian.org/debian-lts-announce/2021/06/msg00005.html", + "https://lists.debian.org/debian-lts-announce/2021/06/msg00006.html", + "https://security.netapp.com/advisory/ntap-20211112-0001/", + "https://support.apple.com/kb/HT212601", + "https://www.debian.org/security/2021/dsa-4930" + ], + "description": "A flaw was found in libwebp in versions before 1.0.1. A heap-based buffer overflow in function WebPDecodeRGBInto is possible due to an invalid check for buffer size. The highest threat from this vulnerability is to data confidentiality and integrity as well as system availability.", + "cvss": null + } + ], + "matchDetails": [ + { + "type": "exact-indirect-match", + "matcher": "dpkg-matcher", + "searchedBy": { + "distro": { + "type": "debian", + "version": "9" + }, + "namespace": "debian:distro:debian:9", + "package": { + "name": "libwebp", + "version": "0.5.2-1" + } + }, + "found": { + "versionConstraint": "\u003c 0.5.2-1+deb9u1 (deb)", + "vulnerabilityID": "CVE-2020-36328" + } + } + ], + "artifact": { + "name": "libwebp6", + "version": "0.5.2-1", + "type": "deb", + "locations": null, + "language": "", + "licenses": [ + "Apache-2.0" + ], + "cpes": [ + "cpe:2.3:a:libwebp6:libwebp6:0.5.2-1:*:*:*:*:*:*:*" + ], + "purl": "pkg:deb/debian/libwebp6@0.5.2-1?arch=amd64\u0026upstream=libwebp\u0026distro=debian-9", + "upstreams": [ + { + "name": "libwebp" + } + ], + "metadata": null + } + }, + { + "vulnerability": { + "id": "CVE-2020-36329", + "dataSource": "https://security-tracker.debian.org/tracker/CVE-2020-36329", + "namespace": "debian:distro:debian:9", + "severity": "Critical", + "urls": [ + "https://security-tracker.debian.org/tracker/CVE-2020-36329" + ], + "description": "A flaw was found in libwebp in versions before 1.0.1. A use-after-free was found due to a thread being killed too early. The highest threat from this vulnerability is to data confidentiality and integrity as well as system availability.", + "cvss": null, + "fix": { + "versions": [ + "0.5.2-1+deb9u1" + ], + "state": "fixed" + }, + "advisories": null + }, + "relatedVulnerabilities": [ + { + "id": "CVE-2020-36329", + "dataSource": "https://nvd.nist.gov/vuln/detail/CVE-2020-36329", + "namespace": "nvd:cpe", + "severity": "Critical", + "urls": [ + "http://seclists.org/fulldisclosure/2021/Jul/54", + "https://bugzilla.redhat.com/show_bug.cgi?id=1956843", + "https://lists.debian.org/debian-lts-announce/2021/06/msg00005.html", + "https://lists.debian.org/debian-lts-announce/2021/06/msg00006.html", + "https://security.netapp.com/advisory/ntap-20211112-0001/", + "https://support.apple.com/kb/HT212601", + "https://www.debian.org/security/2021/dsa-4930" + ], + "description": "A flaw was found in libwebp in versions before 1.0.1. A use-after-free was found due to a thread being killed too early. The highest threat from this vulnerability is to data confidentiality and integrity as well as system availability.", + "cvss": null + } + ], + "matchDetails": [ + { + "type": "exact-indirect-match", + "matcher": "dpkg-matcher", + "searchedBy": { + "distro": { + "type": "debian", + "version": "9" + }, + "namespace": "debian:distro:debian:9", + "package": { + "name": "libwebp", + "version": "0.5.2-1" + } + }, + "found": { + "versionConstraint": "\u003c 0.5.2-1+deb9u1 (deb)", + "vulnerabilityID": "CVE-2020-36329" + } + } + ], + "artifact": { + "name": "libwebp6", + "version": "0.5.2-1", + "type": "deb", + "locations": null, + "language": "", + "licenses": [ + "Apache-2.0" + ], + "cpes": [ + "cpe:2.3:a:libwebp6:libwebp6:0.5.2-1:*:*:*:*:*:*:*" + ], + "purl": "pkg:deb/debian/libwebp6@0.5.2-1?arch=amd64\u0026upstream=libwebp\u0026distro=debian-9", + "upstreams": [ + { + "name": "libwebp" + } + ], + "metadata": null + } + }, + { + "vulnerability": { + "id": "CVE-2020-36330", + "dataSource": "https://security-tracker.debian.org/tracker/CVE-2020-36330", + "namespace": "debian:distro:debian:9", + "severity": "Critical", + "urls": [ + "https://security-tracker.debian.org/tracker/CVE-2020-36330" + ], + "description": "A flaw was found in libwebp in versions before 1.0.1. An out-of-bounds read was found in function ChunkVerifyAndAssign. The highest threat from this vulnerability is to data confidentiality and to the service availability.", + "cvss": null, + "fix": { + "versions": [ + "0.5.2-1+deb9u1" + ], + "state": "fixed" + }, + "advisories": null + }, + "relatedVulnerabilities": [ + { + "id": "CVE-2020-36330", + "dataSource": "https://nvd.nist.gov/vuln/detail/CVE-2020-36330", + "namespace": "nvd:cpe", + "severity": "Critical", + "urls": [ + "http://seclists.org/fulldisclosure/2021/Jul/54", + "https://bugzilla.redhat.com/show_bug.cgi?id=1956853", + "https://lists.debian.org/debian-lts-announce/2021/06/msg00005.html", + "https://lists.debian.org/debian-lts-announce/2021/06/msg00006.html", + "https://security.netapp.com/advisory/ntap-20211104-0004/", + "https://support.apple.com/kb/HT212601", + "https://www.debian.org/security/2021/dsa-4930" + ], + "description": "A flaw was found in libwebp in versions before 1.0.1. An out-of-bounds read was found in function ChunkVerifyAndAssign. The highest threat from this vulnerability is to data confidentiality and to the service availability.", + "cvss": null + } + ], + "matchDetails": [ + { + "type": "exact-indirect-match", + "matcher": "dpkg-matcher", + "searchedBy": { + "distro": { + "type": "debian", + "version": "9" + }, + "namespace": "debian:distro:debian:9", + "package": { + "name": "libwebp", + "version": "0.5.2-1" + } + }, + "found": { + "versionConstraint": "\u003c 0.5.2-1+deb9u1 (deb)", + "vulnerabilityID": "CVE-2020-36330" + } + } + ], + "artifact": { + "name": "libwebp6", + "version": "0.5.2-1", + "type": "deb", + "locations": null, + "language": "", + "licenses": [ + "Apache-2.0" + ], + "cpes": [ + "cpe:2.3:a:libwebp6:libwebp6:0.5.2-1:*:*:*:*:*:*:*" + ], + "purl": "pkg:deb/debian/libwebp6@0.5.2-1?arch=amd64\u0026upstream=libwebp\u0026distro=debian-9", + "upstreams": [ + { + "name": "libwebp" + } + ], + "metadata": null + } + }, + { + "vulnerability": { + "id": "CVE-2020-36331", + "dataSource": "https://security-tracker.debian.org/tracker/CVE-2020-36331", + "namespace": "debian:distro:debian:9", + "severity": "Critical", + "urls": [ + "https://security-tracker.debian.org/tracker/CVE-2020-36331" + ], + "description": "A flaw was found in libwebp in versions before 1.0.1. An out-of-bounds read was found in function ChunkAssignData. The highest threat from this vulnerability is to data confidentiality and to the service availability.", + "cvss": null, + "fix": { + "versions": [ + "0.5.2-1+deb9u1" + ], + "state": "fixed" + }, + "advisories": null + }, + "relatedVulnerabilities": [ + { + "id": "CVE-2020-36331", + "dataSource": "https://nvd.nist.gov/vuln/detail/CVE-2020-36331", + "namespace": "nvd:cpe", + "severity": "Critical", + "urls": [ + "http://seclists.org/fulldisclosure/2021/Jul/54", + "https://bugzilla.redhat.com/show_bug.cgi?id=1956856", + "https://lists.debian.org/debian-lts-announce/2021/06/msg00005.html", + "https://lists.debian.org/debian-lts-announce/2021/06/msg00006.html", + "https://security.netapp.com/advisory/ntap-20211112-0001/", + "https://support.apple.com/kb/HT212601", + "https://www.debian.org/security/2021/dsa-4930" + ], + "description": "A flaw was found in libwebp in versions before 1.0.1. An out-of-bounds read was found in function ChunkAssignData. The highest threat from this vulnerability is to data confidentiality and to the service availability.", + "cvss": null + } + ], + "matchDetails": [ + { + "type": "exact-indirect-match", + "matcher": "dpkg-matcher", + "searchedBy": { + "distro": { + "type": "debian", + "version": "9" + }, + "namespace": "debian:distro:debian:9", + "package": { + "name": "libwebp", + "version": "0.5.2-1" + } + }, + "found": { + "versionConstraint": "\u003c 0.5.2-1+deb9u1 (deb)", + "vulnerabilityID": "CVE-2020-36331" + } + } + ], + "artifact": { + "name": "libwebp6", + "version": "0.5.2-1", + "type": "deb", + "locations": null, + "language": "", + "licenses": [ + "Apache-2.0" + ], + "cpes": [ + "cpe:2.3:a:libwebp6:libwebp6:0.5.2-1:*:*:*:*:*:*:*" + ], + "purl": "pkg:deb/debian/libwebp6@0.5.2-1?arch=amd64\u0026upstream=libwebp\u0026distro=debian-9", + "upstreams": [ + { + "name": "libwebp" + } + ], + "metadata": null + } + }, + { + "vulnerability": { + "id": "CVE-2020-36332", + "dataSource": "https://security-tracker.debian.org/tracker/CVE-2020-36332", + "namespace": "debian:distro:debian:9", + "severity": "High", + "urls": [ + "https://security-tracker.debian.org/tracker/CVE-2020-36332" + ], + "description": "A flaw was found in libwebp in versions before 1.0.1. When reading a file libwebp allocates an excessive amount of memory. The highest threat from this vulnerability is to the service availability.", + "cvss": null, + "fix": { + "versions": [], + "state": "wont-fix" + }, + "advisories": null + }, + "relatedVulnerabilities": [ + { + "id": "CVE-2020-36332", + "dataSource": "https://nvd.nist.gov/vuln/detail/CVE-2020-36332", + "namespace": "nvd:cpe", + "severity": "High", + "urls": [ + "https://bugzilla.redhat.com/show_bug.cgi?id=1956868", + "https://security.netapp.com/advisory/ntap-20211104-0004/", + "https://www.debian.org/security/2021/dsa-4930" + ], + "description": "A flaw was found in libwebp in versions before 1.0.1. When reading a file libwebp allocates an excessive amount of memory. The highest threat from this vulnerability is to the service availability.", + "cvss": null + } + ], + "matchDetails": [ + { + "type": "exact-indirect-match", + "matcher": "dpkg-matcher", + "searchedBy": { + "distro": { + "type": "debian", + "version": "9" + }, + "namespace": "debian:distro:debian:9", + "package": { + "name": "libwebp", + "version": "0.5.2-1" + } + }, + "found": { + "versionConstraint": "none (deb)", + "vulnerabilityID": "CVE-2020-36332" + } + } + ], + "artifact": { + "name": "libwebp6", + "version": "0.5.2-1", + "type": "deb", + "locations": null, + "language": "", + "licenses": [ + "Apache-2.0" + ], + "cpes": [ + "cpe:2.3:a:libwebp6:libwebp6:0.5.2-1:*:*:*:*:*:*:*" + ], + "purl": "pkg:deb/debian/libwebp6@0.5.2-1?arch=amd64\u0026upstream=libwebp\u0026distro=debian-9", + "upstreams": [ + { + "name": "libwebp" + } + ], + "metadata": null + } + }, + { + "vulnerability": { + "id": "CVE-2020-3810", + "dataSource": "https://security-tracker.debian.org/tracker/CVE-2020-3810", + "namespace": "debian:distro:debian:9", + "severity": "Medium", + "urls": [ + "https://security-tracker.debian.org/tracker/CVE-2020-3810" + ], + "description": "Missing input validation in the ar/tar implementations of APT before version 2.1.2 could result in denial of service when processing specially crafted deb files.", + "cvss": null, + "fix": { + "versions": [ + "1.4.10" + ], + "state": "fixed" + }, + "advisories": [ + { + "id": "DSA-4685-1", + "link": "https://security-tracker.debian.org/tracker/DSA-4685-1" + } + ] + }, + "relatedVulnerabilities": [ + { + "id": "CVE-2020-3810", + "dataSource": "https://nvd.nist.gov/vuln/detail/CVE-2020-3810", + "namespace": "nvd:cpe", + "severity": "Medium", + "urls": [ + "https://bugs.launchpad.net/bugs/1878177", + "https://github.com/Debian/apt/issues/111", + "https://lists.debian.org/debian-security-announce/2020/msg00089.html", + "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/U4PEH357MZM2SUGKETMEHMSGQS652QHH/", + "https://salsa.debian.org/apt-team/apt/-/commit/dceb1e49e4b8e4dadaf056be34088b415939cda6", + "https://tracker.debian.org/news/1144109/accepted-apt-212-source-into-unstable/", + "https://usn.ubuntu.com/4359-1/", + "https://usn.ubuntu.com/4359-2/" + ], + "description": "Missing input validation in the ar/tar implementations of APT before version 2.1.2 could result in denial of service when processing specially crafted deb files.", + "cvss": null + } + ], + "matchDetails": [ + { + "type": "exact-direct-match", + "matcher": "dpkg-matcher", + "searchedBy": { + "distro": { + "type": "debian", + "version": "9" + }, + "namespace": "debian:distro:debian:9", + "package": { + "name": "apt", + "version": "1.4.8" + } + }, + "found": { + "versionConstraint": "\u003c 1.4.10 (deb)", + "vulnerabilityID": "CVE-2020-3810" + } + } + ], + "artifact": { + "name": "apt", + "version": "1.4.8", + "type": "deb", + "locations": null, + "language": "", + "licenses": [ + "GPL-2.0-only", + "LicenseRef-GPLv2-" + ], + "cpes": [ + "cpe:2.3:a:apt:apt:1.4.8:*:*:*:*:*:*:*" + ], + "purl": "pkg:deb/debian/apt@1.4.8?arch=amd64\u0026distro=debian-9", + "upstreams": null, + "metadata": null + } + }, + { + "vulnerability": { + "id": "CVE-2020-3810", + "dataSource": "https://security-tracker.debian.org/tracker/CVE-2020-3810", + "namespace": "debian:distro:debian:9", + "severity": "Medium", + "urls": [ + "https://security-tracker.debian.org/tracker/CVE-2020-3810" + ], + "description": "Missing input validation in the ar/tar implementations of APT before version 2.1.2 could result in denial of service when processing specially crafted deb files.", + "cvss": null, + "fix": { + "versions": [ + "1.4.10" + ], + "state": "fixed" + }, + "advisories": [ + { + "id": "DSA-4685-1", + "link": "https://security-tracker.debian.org/tracker/DSA-4685-1" + } + ] + }, + "relatedVulnerabilities": [ + { + "id": "CVE-2020-3810", + "dataSource": "https://nvd.nist.gov/vuln/detail/CVE-2020-3810", + "namespace": "nvd:cpe", + "severity": "Medium", + "urls": [ + "https://bugs.launchpad.net/bugs/1878177", + "https://github.com/Debian/apt/issues/111", + "https://lists.debian.org/debian-security-announce/2020/msg00089.html", + "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/U4PEH357MZM2SUGKETMEHMSGQS652QHH/", + "https://salsa.debian.org/apt-team/apt/-/commit/dceb1e49e4b8e4dadaf056be34088b415939cda6", + "https://tracker.debian.org/news/1144109/accepted-apt-212-source-into-unstable/", + "https://usn.ubuntu.com/4359-1/", + "https://usn.ubuntu.com/4359-2/" + ], + "description": "Missing input validation in the ar/tar implementations of APT before version 2.1.2 could result in denial of service when processing specially crafted deb files.", + "cvss": null + } + ], + "matchDetails": [ + { + "type": "exact-indirect-match", + "matcher": "dpkg-matcher", + "searchedBy": { + "distro": { + "type": "debian", + "version": "9" + }, + "namespace": "debian:distro:debian:9", + "package": { + "name": "apt", + "version": "1.4.8" + } + }, + "found": { + "versionConstraint": "\u003c 1.4.10 (deb)", + "vulnerabilityID": "CVE-2020-3810" + } + } + ], + "artifact": { + "name": "libapt-pkg5.0", + "version": "1.4.8", + "type": "deb", + "locations": null, + "language": "", + "licenses": [ + "GPL-2.0-only", + "LicenseRef-GPLv2-" + ], + "cpes": [ + "cpe:2.3:a:libapt-pkg5.0:libapt-pkg5.0:1.4.8:*:*:*:*:*:*:*", + "cpe:2.3:a:libapt-pkg5.0:libapt_pkg5.0:1.4.8:*:*:*:*:*:*:*", + "cpe:2.3:a:libapt_pkg5.0:libapt-pkg5.0:1.4.8:*:*:*:*:*:*:*", + "cpe:2.3:a:libapt_pkg5.0:libapt_pkg5.0:1.4.8:*:*:*:*:*:*:*", + "cpe:2.3:a:libapt:libapt-pkg5.0:1.4.8:*:*:*:*:*:*:*", + "cpe:2.3:a:libapt:libapt_pkg5.0:1.4.8:*:*:*:*:*:*:*" + ], + "purl": "pkg:deb/debian/libapt-pkg5.0@1.4.8?arch=amd64\u0026upstream=apt\u0026distro=debian-9", + "upstreams": [ + { + "name": "apt" + } + ], + "metadata": null + } + }, + { + "vulnerability": { + "id": "CVE-2020-6096", + "dataSource": "https://security-tracker.debian.org/tracker/CVE-2020-6096", + "namespace": "debian:distro:debian:9", + "severity": "Low", + "urls": [ + "https://security-tracker.debian.org/tracker/CVE-2020-6096" + ], + "description": "An exploitable signed comparison vulnerability exists in the ARMv7 memcpy() implementation of GNU glibc 2.30.9000. Calling memcpy() (on ARMv7 targets that utilize the GNU glibc implementation) with a negative value for the 'num' parameter results in a signed comparison vulnerability. If an attacker underflows the 'num' parameter to memcpy(), this vulnerability could lead to undefined behavior such as writing to out-of-bounds memory and potentially remote code execution. Furthermore, this memcpy() implementation allows for program execution to continue in scenarios where a segmentation fault or crash should have occurred. The dangers occur in that subsequent execution and iterations of this code will be executed with this corrupted data.", + "cvss": null, + "fix": { + "versions": [], + "state": "wont-fix" + }, + "advisories": null + }, + "relatedVulnerabilities": [ + { + "id": "CVE-2020-6096", + "dataSource": "https://nvd.nist.gov/vuln/detail/CVE-2020-6096", + "namespace": "nvd:cpe", + "severity": "High", + "urls": [ + "https://lists.apache.org/thread.html/rf9fa47ab66495c78bb4120b0754dd9531ca2ff0430f6685ac9b07772@%3Cdev.mina.apache.org%3E", + "https://lists.debian.org/debian-lts-announce/2022/10/msg00021.html", + "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/SPYXTDOOB4PQGTYAMZAZNJIB3FF6YQXI/", + "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/URXOIA2LDUKHQXK4BE55BQBRI6ZZG3Y6/", + "https://security.gentoo.org/glsa/202101-20", + "https://sourceware.org/bugzilla/show_bug.cgi?id=25620", + "https://www.talosintelligence.com/vulnerability_reports/TALOS-2020-1019" + ], + "description": "An exploitable signed comparison vulnerability exists in the ARMv7 memcpy() implementation of GNU glibc 2.30.9000. Calling memcpy() (on ARMv7 targets that utilize the GNU glibc implementation) with a negative value for the 'num' parameter results in a signed comparison vulnerability. If an attacker underflows the 'num' parameter to memcpy(), this vulnerability could lead to undefined behavior such as writing to out-of-bounds memory and potentially remote code execution. Furthermore, this memcpy() implementation allows for program execution to continue in scenarios where a segmentation fault or crash should have occurred. The dangers occur in that subsequent execution and iterations of this code will be executed with this corrupted data.", + "cvss": null + } + ], + "matchDetails": [ + { + "type": "exact-indirect-match", + "matcher": "dpkg-matcher", + "searchedBy": { + "distro": { + "type": "debian", + "version": "9" + }, + "namespace": "debian:distro:debian:9", + "package": { + "name": "glibc", + "version": "2.24-11+deb9u3" + } + }, + "found": { + "versionConstraint": "none (deb)", + "vulnerabilityID": "CVE-2020-6096" + } + } + ], + "artifact": { + "name": "libc-bin", + "version": "2.24-11+deb9u3", + "type": "deb", + "locations": null, + "language": "", + "licenses": [ + "GPL-2.0-only", + "LGPL-2.1-only" + ], + "cpes": [ + "cpe:2.3:a:libc-bin:libc-bin:2.24-11+deb9u3:*:*:*:*:*:*:*", + "cpe:2.3:a:libc-bin:libc_bin:2.24-11+deb9u3:*:*:*:*:*:*:*", + "cpe:2.3:a:libc_bin:libc-bin:2.24-11+deb9u3:*:*:*:*:*:*:*", + "cpe:2.3:a:libc_bin:libc_bin:2.24-11+deb9u3:*:*:*:*:*:*:*", + "cpe:2.3:a:libc:libc-bin:2.24-11+deb9u3:*:*:*:*:*:*:*", + "cpe:2.3:a:libc:libc_bin:2.24-11+deb9u3:*:*:*:*:*:*:*" + ], + "purl": "pkg:deb/debian/libc-bin@2.24-11+deb9u3?arch=amd64\u0026upstream=glibc\u0026distro=debian-9", + "upstreams": [ + { + "name": "glibc" + } + ], + "metadata": null + } + }, + { + "vulnerability": { + "id": "CVE-2020-6096", + "dataSource": "https://security-tracker.debian.org/tracker/CVE-2020-6096", + "namespace": "debian:distro:debian:9", + "severity": "Low", + "urls": [ + "https://security-tracker.debian.org/tracker/CVE-2020-6096" + ], + "description": "An exploitable signed comparison vulnerability exists in the ARMv7 memcpy() implementation of GNU glibc 2.30.9000. Calling memcpy() (on ARMv7 targets that utilize the GNU glibc implementation) with a negative value for the 'num' parameter results in a signed comparison vulnerability. If an attacker underflows the 'num' parameter to memcpy(), this vulnerability could lead to undefined behavior such as writing to out-of-bounds memory and potentially remote code execution. Furthermore, this memcpy() implementation allows for program execution to continue in scenarios where a segmentation fault or crash should have occurred. The dangers occur in that subsequent execution and iterations of this code will be executed with this corrupted data.", + "cvss": null, + "fix": { + "versions": [], + "state": "wont-fix" + }, + "advisories": null + }, + "relatedVulnerabilities": [ + { + "id": "CVE-2020-6096", + "dataSource": "https://nvd.nist.gov/vuln/detail/CVE-2020-6096", + "namespace": "nvd:cpe", + "severity": "High", + "urls": [ + "https://lists.apache.org/thread.html/rf9fa47ab66495c78bb4120b0754dd9531ca2ff0430f6685ac9b07772@%3Cdev.mina.apache.org%3E", + "https://lists.debian.org/debian-lts-announce/2022/10/msg00021.html", + "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/SPYXTDOOB4PQGTYAMZAZNJIB3FF6YQXI/", + "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/URXOIA2LDUKHQXK4BE55BQBRI6ZZG3Y6/", + "https://security.gentoo.org/glsa/202101-20", + "https://sourceware.org/bugzilla/show_bug.cgi?id=25620", + "https://www.talosintelligence.com/vulnerability_reports/TALOS-2020-1019" + ], + "description": "An exploitable signed comparison vulnerability exists in the ARMv7 memcpy() implementation of GNU glibc 2.30.9000. Calling memcpy() (on ARMv7 targets that utilize the GNU glibc implementation) with a negative value for the 'num' parameter results in a signed comparison vulnerability. If an attacker underflows the 'num' parameter to memcpy(), this vulnerability could lead to undefined behavior such as writing to out-of-bounds memory and potentially remote code execution. Furthermore, this memcpy() implementation allows for program execution to continue in scenarios where a segmentation fault or crash should have occurred. The dangers occur in that subsequent execution and iterations of this code will be executed with this corrupted data.", + "cvss": null + } + ], + "matchDetails": [ + { + "type": "exact-indirect-match", + "matcher": "dpkg-matcher", + "searchedBy": { + "distro": { + "type": "debian", + "version": "9" + }, + "namespace": "debian:distro:debian:9", + "package": { + "name": "glibc", + "version": "2.24-11+deb9u3" + } + }, + "found": { + "versionConstraint": "none (deb)", + "vulnerabilityID": "CVE-2020-6096" + } + } + ], + "artifact": { + "name": "libc6", + "version": "2.24-11+deb9u3", + "type": "deb", + "locations": null, + "language": "", + "licenses": [ + "GPL-2.0-only", + "LGPL-2.1-only" + ], + "cpes": [ + "cpe:2.3:a:libc6:libc6:2.24-11+deb9u3:*:*:*:*:*:*:*" + ], + "purl": "pkg:deb/debian/libc6@2.24-11+deb9u3?arch=amd64\u0026upstream=glibc\u0026distro=debian-9", + "upstreams": [ + { + "name": "glibc" + } + ], + "metadata": null + } + }, + { + "vulnerability": { + "id": "CVE-2020-6096", + "dataSource": "https://security-tracker.debian.org/tracker/CVE-2020-6096", + "namespace": "debian:distro:debian:9", + "severity": "Low", + "urls": [ + "https://security-tracker.debian.org/tracker/CVE-2020-6096" + ], + "description": "An exploitable signed comparison vulnerability exists in the ARMv7 memcpy() implementation of GNU glibc 2.30.9000. Calling memcpy() (on ARMv7 targets that utilize the GNU glibc implementation) with a negative value for the 'num' parameter results in a signed comparison vulnerability. If an attacker underflows the 'num' parameter to memcpy(), this vulnerability could lead to undefined behavior such as writing to out-of-bounds memory and potentially remote code execution. Furthermore, this memcpy() implementation allows for program execution to continue in scenarios where a segmentation fault or crash should have occurred. The dangers occur in that subsequent execution and iterations of this code will be executed with this corrupted data.", + "cvss": null, + "fix": { + "versions": [], + "state": "wont-fix" + }, + "advisories": null + }, + "relatedVulnerabilities": [ + { + "id": "CVE-2020-6096", + "dataSource": "https://nvd.nist.gov/vuln/detail/CVE-2020-6096", + "namespace": "nvd:cpe", + "severity": "High", + "urls": [ + "https://lists.apache.org/thread.html/rf9fa47ab66495c78bb4120b0754dd9531ca2ff0430f6685ac9b07772@%3Cdev.mina.apache.org%3E", + "https://lists.debian.org/debian-lts-announce/2022/10/msg00021.html", + "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/SPYXTDOOB4PQGTYAMZAZNJIB3FF6YQXI/", + "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/URXOIA2LDUKHQXK4BE55BQBRI6ZZG3Y6/", + "https://security.gentoo.org/glsa/202101-20", + "https://sourceware.org/bugzilla/show_bug.cgi?id=25620", + "https://www.talosintelligence.com/vulnerability_reports/TALOS-2020-1019" + ], + "description": "An exploitable signed comparison vulnerability exists in the ARMv7 memcpy() implementation of GNU glibc 2.30.9000. Calling memcpy() (on ARMv7 targets that utilize the GNU glibc implementation) with a negative value for the 'num' parameter results in a signed comparison vulnerability. If an attacker underflows the 'num' parameter to memcpy(), this vulnerability could lead to undefined behavior such as writing to out-of-bounds memory and potentially remote code execution. Furthermore, this memcpy() implementation allows for program execution to continue in scenarios where a segmentation fault or crash should have occurred. The dangers occur in that subsequent execution and iterations of this code will be executed with this corrupted data.", + "cvss": null + } + ], + "matchDetails": [ + { + "type": "exact-indirect-match", + "matcher": "dpkg-matcher", + "searchedBy": { + "distro": { + "type": "debian", + "version": "9" + }, + "namespace": "debian:distro:debian:9", + "package": { + "name": "glibc", + "version": "2.24-11+deb9u3" + } + }, + "found": { + "versionConstraint": "none (deb)", + "vulnerabilityID": "CVE-2020-6096" + } + } + ], + "artifact": { + "name": "multiarch-support", + "version": "2.24-11+deb9u3", + "type": "deb", + "locations": null, + "language": "", + "licenses": [ + "GPL-2.0-only", + "LGPL-2.1-only" + ], + "cpes": [ + "cpe:2.3:a:multiarch-support:multiarch-support:2.24-11+deb9u3:*:*:*:*:*:*:*", + "cpe:2.3:a:multiarch-support:multiarch_support:2.24-11+deb9u3:*:*:*:*:*:*:*", + "cpe:2.3:a:multiarch_support:multiarch-support:2.24-11+deb9u3:*:*:*:*:*:*:*", + "cpe:2.3:a:multiarch_support:multiarch_support:2.24-11+deb9u3:*:*:*:*:*:*:*", + "cpe:2.3:a:multiarch:multiarch-support:2.24-11+deb9u3:*:*:*:*:*:*:*", + "cpe:2.3:a:multiarch:multiarch_support:2.24-11+deb9u3:*:*:*:*:*:*:*" + ], + "purl": "pkg:deb/debian/multiarch-support@2.24-11+deb9u3?arch=amd64\u0026upstream=glibc\u0026distro=debian-9", + "upstreams": [ + { + "name": "glibc" + } + ], + "metadata": null + } + }, + { + "vulnerability": { + "id": "CVE-2020-7595", + "dataSource": "https://security-tracker.debian.org/tracker/CVE-2020-7595", + "namespace": "debian:distro:debian:9", + "severity": "High", + "urls": [ + "https://security-tracker.debian.org/tracker/CVE-2020-7595" + ], + "description": "xmlStringLenDecodeEntities in parser.c in libxml2 2.9.10 has an infinite loop in a certain end-of-file situation.", + "cvss": null, + "fix": { + "versions": [ + "2.9.4+dfsg1-2.2+deb9u3" + ], + "state": "fixed" + }, + "advisories": null + }, + "relatedVulnerabilities": [ + { + "id": "CVE-2020-7595", + "dataSource": "https://nvd.nist.gov/vuln/detail/CVE-2020-7595", + "namespace": "nvd:cpe", + "severity": "High", + "urls": [ + "http://lists.opensuse.org/opensuse-security-announce/2020-05/msg00047.html", + "https://cert-portal.siemens.com/productcert/pdf/ssa-292794.pdf", + "https://gitlab.gnome.org/GNOME/libxml2/commit/0e1a49c89076", + "https://lists.debian.org/debian-lts-announce/2020/09/msg00009.html", + "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/545SPOI3ZPPNPX4TFRIVE4JVRTJRKULL/", + "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/5R55ZR52RMBX24TQTWHCIWKJVRV6YAWI/", + "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/JDPF3AAVKUAKDYFMFKSIQSVVS3EEFPQH/", + "https://security.gentoo.org/glsa/202010-04", + "https://security.netapp.com/advisory/ntap-20200702-0005/", + "https://us-cert.cisa.gov/ics/advisories/icsa-21-103-08", + "https://usn.ubuntu.com/4274-1/", + "https://www.oracle.com/security-alerts/cpuapr2022.html", + "https://www.oracle.com/security-alerts/cpujul2020.html", + "https://www.oracle.com/security-alerts/cpujul2022.html", + "https://www.oracle.com/security-alerts/cpuoct2021.html" + ], + "description": "xmlStringLenDecodeEntities in parser.c in libxml2 2.9.10 has an infinite loop in a certain end-of-file situation.", + "cvss": null + } + ], + "matchDetails": [ + { + "type": "exact-direct-match", + "matcher": "dpkg-matcher", + "searchedBy": { + "distro": { + "type": "debian", + "version": "9" + }, + "namespace": "debian:distro:debian:9", + "package": { + "name": "libxml2", + "version": "2.9.4+dfsg1-2.2+deb9u2" + } + }, + "found": { + "versionConstraint": "\u003c 2.9.4+dfsg1-2.2+deb9u3 (deb)", + "vulnerabilityID": "CVE-2020-7595" + } + } + ], + "artifact": { + "name": "libxml2", + "version": "2.9.4+dfsg1-2.2+deb9u2", + "type": "deb", + "locations": null, + "language": "", + "licenses": [], + "cpes": [ + "cpe:2.3:a:libxml2:libxml2:2.9.4+dfsg1-2.2+deb9u2:*:*:*:*:*:*:*" + ], + "purl": "pkg:deb/debian/libxml2@2.9.4+dfsg1-2.2+deb9u2?arch=amd64\u0026distro=debian-9", + "upstreams": null, + "metadata": null + } + }, + { + "vulnerability": { + "id": "CVE-2021-20193", + "dataSource": "https://security-tracker.debian.org/tracker/CVE-2021-20193", + "namespace": "debian:distro:debian:9", + "severity": "Negligible", + "urls": [ + "https://security-tracker.debian.org/tracker/CVE-2021-20193" + ], + "description": "A flaw was found in the src/list.c of tar 1.33 and earlier. This flaw allows an attacker who can submit a crafted input file to tar to cause uncontrolled consumption of memory. The highest threat from this vulnerability is to system availability.", + "cvss": null, + "fix": { + "versions": [], + "state": "not-fixed" + }, + "advisories": null + }, + "relatedVulnerabilities": [ + { + "id": "CVE-2021-20193", + "dataSource": "https://nvd.nist.gov/vuln/detail/CVE-2021-20193", + "namespace": "nvd:cpe", + "severity": "Medium", + "urls": [ + "https://bugzilla.redhat.com/show_bug.cgi?id=1917565", + "https://git.savannah.gnu.org/cgit/tar.git/commit/?id=d9d4435692150fa8ff68e1b1a473d187cc3fd777", + "https://savannah.gnu.org/bugs/?59897", + "https://security.gentoo.org/glsa/202105-29" + ], + "description": "A flaw was found in the src/list.c of tar 1.33 and earlier. This flaw allows an attacker who can submit a crafted input file to tar to cause uncontrolled consumption of memory. The highest threat from this vulnerability is to system availability.", + "cvss": null + } + ], + "matchDetails": [ + { + "type": "exact-direct-match", + "matcher": "dpkg-matcher", + "searchedBy": { + "distro": { + "type": "debian", + "version": "9" + }, + "namespace": "debian:distro:debian:9", + "package": { + "name": "tar", + "version": "1.29b-1.1" + } + }, + "found": { + "versionConstraint": "none (deb)", + "vulnerabilityID": "CVE-2021-20193" + } + } + ], + "artifact": { + "name": "tar", + "version": "1.29b-1.1", + "type": "deb", + "locations": null, + "language": "", + "licenses": [ + "GPL-2.0-only", + "GPL-3.0-only" + ], + "cpes": [ + "cpe:2.3:a:tar:tar:1.29b-1.1:*:*:*:*:*:*:*" + ], + "purl": "pkg:deb/debian/tar@1.29b-1.1?arch=amd64\u0026distro=debian-9", + "upstreams": null, + "metadata": null + } + }, + { + "vulnerability": { + "id": "CVE-2021-23840", + "dataSource": "https://security-tracker.debian.org/tracker/CVE-2021-23840", + "namespace": "debian:distro:debian:9", + "severity": "High", + "urls": [ + "https://security-tracker.debian.org/tracker/CVE-2021-23840" + ], + "description": "Calls to EVP_CipherUpdate, EVP_EncryptUpdate and EVP_DecryptUpdate may overflow the output length argument in some cases where the input length is close to the maximum permissable length for an integer on the platform. In such cases the return value from the function call will be 1 (indicating success), but the output length value will be negative. This could cause applications to behave incorrectly or crash. OpenSSL versions 1.1.1i and below are affected by this issue. Users of these versions should upgrade to OpenSSL 1.1.1j. OpenSSL versions 1.0.2x and below are affected by this issue. However OpenSSL 1.0.2 is out of support and no longer receiving public updates. Premium support customers of OpenSSL 1.0.2 should upgrade to 1.0.2y. Other users should upgrade to 1.1.1j. Fixed in OpenSSL 1.1.1j (Affected 1.1.1-1.1.1i). Fixed in OpenSSL 1.0.2y (Affected 1.0.2-1.0.2x).", + "cvss": null, + "fix": { + "versions": [ + "1.1.0l-1~deb9u3" + ], + "state": "fixed" + }, + "advisories": null + }, + "relatedVulnerabilities": [ + { + "id": "CVE-2021-23840", + "dataSource": "https://nvd.nist.gov/vuln/detail/CVE-2021-23840", + "namespace": "nvd:cpe", + "severity": "High", + "urls": [ + "https://cert-portal.siemens.com/productcert/pdf/ssa-389290.pdf", + "https://git.openssl.org/gitweb/?p=openssl.git;a=commitdiff;h=6a51b9e1d0cf0bf8515f7201b68fb0a3482b3dc1", + "https://git.openssl.org/gitweb/?p=openssl.git;a=commitdiff;h=9b1129239f3ebb1d1c98ce9ed41d5c9476c47cb2", + "https://kb.pulsesecure.net/articles/Pulse_Security_Advisories/SA44846", + "https://kc.mcafee.com/corporate/index?page=content\u0026id=SB10366", + "https://lists.apache.org/thread.html/r58af02e294bd07f487e2c64ffc0a29b837db5600e33b6e698b9d696b@%3Cissues.bookkeeper.apache.org%3E", + "https://lists.apache.org/thread.html/rf4c02775860db415b4955778a131c2795223f61cb8c6a450893651e4@%3Cissues.bookkeeper.apache.org%3E", + "https://security.gentoo.org/glsa/202103-03", + "https://security.netapp.com/advisory/ntap-20210219-0009/", + "https://www.debian.org/security/2021/dsa-4855", + "https://www.openssl.org/news/secadv/20210216.txt", + "https://www.oracle.com//security-alerts/cpujul2021.html", + "https://www.oracle.com/security-alerts/cpuApr2021.html", + "https://www.oracle.com/security-alerts/cpuapr2022.html", + "https://www.oracle.com/security-alerts/cpujan2022.html", + "https://www.oracle.com/security-alerts/cpuoct2021.html", + "https://www.tenable.com/security/tns-2021-03", + "https://www.tenable.com/security/tns-2021-09", + "https://www.tenable.com/security/tns-2021-10" + ], + "description": "Calls to EVP_CipherUpdate, EVP_EncryptUpdate and EVP_DecryptUpdate may overflow the output length argument in some cases where the input length is close to the maximum permissable length for an integer on the platform. In such cases the return value from the function call will be 1 (indicating success), but the output length value will be negative. This could cause applications to behave incorrectly or crash. OpenSSL versions 1.1.1i and below are affected by this issue. Users of these versions should upgrade to OpenSSL 1.1.1j. OpenSSL versions 1.0.2x and below are affected by this issue. However OpenSSL 1.0.2 is out of support and no longer receiving public updates. Premium support customers of OpenSSL 1.0.2 should upgrade to 1.0.2y. Other users should upgrade to 1.1.1j. Fixed in OpenSSL 1.1.1j (Affected 1.1.1-1.1.1i). Fixed in OpenSSL 1.0.2y (Affected 1.0.2-1.0.2x).", + "cvss": null + } + ], + "matchDetails": [ + { + "type": "exact-indirect-match", + "matcher": "dpkg-matcher", + "searchedBy": { + "distro": { + "type": "debian", + "version": "9" + }, + "namespace": "debian:distro:debian:9", + "package": { + "name": "openssl", + "version": "1.1.0f-3+deb9u2" + } + }, + "found": { + "versionConstraint": "\u003c 1.1.0l-1~deb9u3 (deb)", + "vulnerabilityID": "CVE-2021-23840" + } + } + ], + "artifact": { + "name": "libssl1.1", + "version": "1.1.0f-3+deb9u2", + "type": "deb", + "locations": null, + "language": "", + "licenses": [], + "cpes": [ + "cpe:2.3:a:libssl1.1:libssl1.1:1.1.0f-3+deb9u2:*:*:*:*:*:*:*" + ], + "purl": "pkg:deb/debian/libssl1.1@1.1.0f-3+deb9u2?arch=amd64\u0026upstream=openssl\u0026distro=debian-9", + "upstreams": [ + { + "name": "openssl" + } + ], + "metadata": null + } + }, + { + "vulnerability": { + "id": "CVE-2021-23841", + "dataSource": "https://security-tracker.debian.org/tracker/CVE-2021-23841", + "namespace": "debian:distro:debian:9", + "severity": "Medium", + "urls": [ + "https://security-tracker.debian.org/tracker/CVE-2021-23841" + ], + "description": "The OpenSSL public API function X509_issuer_and_serial_hash() attempts to create a unique hash value based on the issuer and serial number data contained within an X509 certificate. However it fails to correctly handle any errors that may occur while parsing the issuer field (which might occur if the issuer field is maliciously constructed). This may subsequently result in a NULL pointer deref and a crash leading to a potential denial of service attack. The function X509_issuer_and_serial_hash() is never directly called by OpenSSL itself so applications are only vulnerable if they use this function directly and they use it on certificates that may have been obtained from untrusted sources. OpenSSL versions 1.1.1i and below are affected by this issue. Users of these versions should upgrade to OpenSSL 1.1.1j. OpenSSL versions 1.0.2x and below are affected by this issue. However OpenSSL 1.0.2 is out of support and no longer receiving public updates. Premium support customers of OpenSSL 1.0.2 should upgrade to 1.0.2y. Other users should upgrade to 1.1.1j. Fixed in OpenSSL 1.1.1j (Affected 1.1.1-1.1.1i). Fixed in OpenSSL 1.0.2y (Affected 1.0.2-1.0.2x).", + "cvss": null, + "fix": { + "versions": [ + "1.1.0l-1~deb9u3" + ], + "state": "fixed" + }, + "advisories": null + }, + "relatedVulnerabilities": [ + { + "id": "CVE-2021-23841", + "dataSource": "https://nvd.nist.gov/vuln/detail/CVE-2021-23841", + "namespace": "nvd:cpe", + "severity": "Medium", + "urls": [ + "http://seclists.org/fulldisclosure/2021/May/67", + "http://seclists.org/fulldisclosure/2021/May/68", + "http://seclists.org/fulldisclosure/2021/May/70", + "https://cert-portal.siemens.com/productcert/pdf/ssa-637483.pdf", + "https://git.openssl.org/gitweb/?p=openssl.git;a=commitdiff;h=122a19ab48091c657f7cb1fb3af9fc07bd557bbf", + "https://git.openssl.org/gitweb/?p=openssl.git;a=commitdiff;h=8252ee4d90f3f2004d3d0aeeed003ad49c9a7807", + "https://kb.pulsesecure.net/articles/Pulse_Security_Advisories/SA44846", + "https://security.gentoo.org/glsa/202103-03", + "https://security.netapp.com/advisory/ntap-20210219-0009/", + "https://security.netapp.com/advisory/ntap-20210513-0002/", + "https://support.apple.com/kb/HT212528", + "https://support.apple.com/kb/HT212529", + "https://support.apple.com/kb/HT212534", + "https://www.debian.org/security/2021/dsa-4855", + "https://www.openssl.org/news/secadv/20210216.txt", + "https://www.oracle.com//security-alerts/cpujul2021.html", + "https://www.oracle.com/security-alerts/cpuApr2021.html", + "https://www.oracle.com/security-alerts/cpuapr2022.html", + "https://www.oracle.com/security-alerts/cpuoct2021.html", + "https://www.tenable.com/security/tns-2021-03", + "https://www.tenable.com/security/tns-2021-09" + ], + "description": "The OpenSSL public API function X509_issuer_and_serial_hash() attempts to create a unique hash value based on the issuer and serial number data contained within an X509 certificate. However it fails to correctly handle any errors that may occur while parsing the issuer field (which might occur if the issuer field is maliciously constructed). This may subsequently result in a NULL pointer deref and a crash leading to a potential denial of service attack. The function X509_issuer_and_serial_hash() is never directly called by OpenSSL itself so applications are only vulnerable if they use this function directly and they use it on certificates that may have been obtained from untrusted sources. OpenSSL versions 1.1.1i and below are affected by this issue. Users of these versions should upgrade to OpenSSL 1.1.1j. OpenSSL versions 1.0.2x and below are affected by this issue. However OpenSSL 1.0.2 is out of support and no longer receiving public updates. Premium support customers of OpenSSL 1.0.2 should upgrade to 1.0.2y. Other users should upgrade to 1.1.1j. Fixed in OpenSSL 1.1.1j (Affected 1.1.1-1.1.1i). Fixed in OpenSSL 1.0.2y (Affected 1.0.2-1.0.2x).", + "cvss": null + } + ], + "matchDetails": [ + { + "type": "exact-indirect-match", + "matcher": "dpkg-matcher", + "searchedBy": { + "distro": { + "type": "debian", + "version": "9" + }, + "namespace": "debian:distro:debian:9", + "package": { + "name": "openssl", + "version": "1.1.0f-3+deb9u2" + } + }, + "found": { + "versionConstraint": "\u003c 1.1.0l-1~deb9u3 (deb)", + "vulnerabilityID": "CVE-2021-23841" + } + } + ], + "artifact": { + "name": "libssl1.1", + "version": "1.1.0f-3+deb9u2", + "type": "deb", + "locations": null, + "language": "", + "licenses": [], + "cpes": [ + "cpe:2.3:a:libssl1.1:libssl1.1:1.1.0f-3+deb9u2:*:*:*:*:*:*:*" + ], + "purl": "pkg:deb/debian/libssl1.1@1.1.0f-3+deb9u2?arch=amd64\u0026upstream=openssl\u0026distro=debian-9", + "upstreams": [ + { + "name": "openssl" + } + ], + "metadata": null + } + }, + { + "vulnerability": { + "id": "CVE-2021-27645", + "dataSource": "https://security-tracker.debian.org/tracker/CVE-2021-27645", + "namespace": "debian:distro:debian:9", + "severity": "Low", + "urls": [ + "https://security-tracker.debian.org/tracker/CVE-2021-27645" + ], + "description": "The nameserver caching daemon (nscd) in the GNU C Library (aka glibc or libc6) 2.29 through 2.33, when processing a request for netgroup lookup, may crash due to a double-free, potentially resulting in degraded service or Denial of Service on the local system. This is related to netgroupcache.c.", + "cvss": null, + "fix": { + "versions": [], + "state": "wont-fix" + }, + "advisories": null + }, + "relatedVulnerabilities": [ + { + "id": "CVE-2021-27645", + "dataSource": "https://nvd.nist.gov/vuln/detail/CVE-2021-27645", + "namespace": "nvd:cpe", + "severity": "Low", + "urls": [ + "https://lists.debian.org/debian-lts-announce/2022/10/msg00021.html", + "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/7LZNT6KTMCCWPWXEOGSHD3YLYZKUGMH5/", + "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/I7TS26LIZSOBLGJEZMJX4PXT5BQDE2WS/", + "https://security.gentoo.org/glsa/202107-07", + "https://sourceware.org/bugzilla/show_bug.cgi?id=27462" + ], + "description": "The nameserver caching daemon (nscd) in the GNU C Library (aka glibc or libc6) 2.29 through 2.33, when processing a request for netgroup lookup, may crash due to a double-free, potentially resulting in degraded service or Denial of Service on the local system. This is related to netgroupcache.c.", + "cvss": null + } + ], + "matchDetails": [ + { + "type": "exact-indirect-match", + "matcher": "dpkg-matcher", + "searchedBy": { + "distro": { + "type": "debian", + "version": "9" + }, + "namespace": "debian:distro:debian:9", + "package": { + "name": "glibc", + "version": "2.24-11+deb9u3" + } + }, + "found": { + "versionConstraint": "none (deb)", + "vulnerabilityID": "CVE-2021-27645" + } + } + ], + "artifact": { + "name": "libc-bin", + "version": "2.24-11+deb9u3", + "type": "deb", + "locations": null, + "language": "", + "licenses": [ + "GPL-2.0-only", + "LGPL-2.1-only" + ], + "cpes": [ + "cpe:2.3:a:libc-bin:libc-bin:2.24-11+deb9u3:*:*:*:*:*:*:*", + "cpe:2.3:a:libc-bin:libc_bin:2.24-11+deb9u3:*:*:*:*:*:*:*", + "cpe:2.3:a:libc_bin:libc-bin:2.24-11+deb9u3:*:*:*:*:*:*:*", + "cpe:2.3:a:libc_bin:libc_bin:2.24-11+deb9u3:*:*:*:*:*:*:*", + "cpe:2.3:a:libc:libc-bin:2.24-11+deb9u3:*:*:*:*:*:*:*", + "cpe:2.3:a:libc:libc_bin:2.24-11+deb9u3:*:*:*:*:*:*:*" + ], + "purl": "pkg:deb/debian/libc-bin@2.24-11+deb9u3?arch=amd64\u0026upstream=glibc\u0026distro=debian-9", + "upstreams": [ + { + "name": "glibc" + } + ], + "metadata": null + } + }, + { + "vulnerability": { + "id": "CVE-2021-27645", + "dataSource": "https://security-tracker.debian.org/tracker/CVE-2021-27645", + "namespace": "debian:distro:debian:9", + "severity": "Low", + "urls": [ + "https://security-tracker.debian.org/tracker/CVE-2021-27645" + ], + "description": "The nameserver caching daemon (nscd) in the GNU C Library (aka glibc or libc6) 2.29 through 2.33, when processing a request for netgroup lookup, may crash due to a double-free, potentially resulting in degraded service or Denial of Service on the local system. This is related to netgroupcache.c.", + "cvss": null, + "fix": { + "versions": [], + "state": "wont-fix" + }, + "advisories": null + }, + "relatedVulnerabilities": [ + { + "id": "CVE-2021-27645", + "dataSource": "https://nvd.nist.gov/vuln/detail/CVE-2021-27645", + "namespace": "nvd:cpe", + "severity": "Low", + "urls": [ + "https://lists.debian.org/debian-lts-announce/2022/10/msg00021.html", + "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/7LZNT6KTMCCWPWXEOGSHD3YLYZKUGMH5/", + "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/I7TS26LIZSOBLGJEZMJX4PXT5BQDE2WS/", + "https://security.gentoo.org/glsa/202107-07", + "https://sourceware.org/bugzilla/show_bug.cgi?id=27462" + ], + "description": "The nameserver caching daemon (nscd) in the GNU C Library (aka glibc or libc6) 2.29 through 2.33, when processing a request for netgroup lookup, may crash due to a double-free, potentially resulting in degraded service or Denial of Service on the local system. This is related to netgroupcache.c.", + "cvss": null + } + ], + "matchDetails": [ + { + "type": "exact-indirect-match", + "matcher": "dpkg-matcher", + "searchedBy": { + "distro": { + "type": "debian", + "version": "9" + }, + "namespace": "debian:distro:debian:9", + "package": { + "name": "glibc", + "version": "2.24-11+deb9u3" + } + }, + "found": { + "versionConstraint": "none (deb)", + "vulnerabilityID": "CVE-2021-27645" + } + } + ], + "artifact": { + "name": "libc6", + "version": "2.24-11+deb9u3", + "type": "deb", + "locations": null, + "language": "", + "licenses": [ + "GPL-2.0-only", + "LGPL-2.1-only" + ], + "cpes": [ + "cpe:2.3:a:libc6:libc6:2.24-11+deb9u3:*:*:*:*:*:*:*" + ], + "purl": "pkg:deb/debian/libc6@2.24-11+deb9u3?arch=amd64\u0026upstream=glibc\u0026distro=debian-9", + "upstreams": [ + { + "name": "glibc" + } + ], + "metadata": null + } + }, + { + "vulnerability": { + "id": "CVE-2021-27645", + "dataSource": "https://security-tracker.debian.org/tracker/CVE-2021-27645", + "namespace": "debian:distro:debian:9", + "severity": "Low", + "urls": [ + "https://security-tracker.debian.org/tracker/CVE-2021-27645" + ], + "description": "The nameserver caching daemon (nscd) in the GNU C Library (aka glibc or libc6) 2.29 through 2.33, when processing a request for netgroup lookup, may crash due to a double-free, potentially resulting in degraded service or Denial of Service on the local system. This is related to netgroupcache.c.", + "cvss": null, + "fix": { + "versions": [], + "state": "wont-fix" + }, + "advisories": null + }, + "relatedVulnerabilities": [ + { + "id": "CVE-2021-27645", + "dataSource": "https://nvd.nist.gov/vuln/detail/CVE-2021-27645", + "namespace": "nvd:cpe", + "severity": "Low", + "urls": [ + "https://lists.debian.org/debian-lts-announce/2022/10/msg00021.html", + "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/7LZNT6KTMCCWPWXEOGSHD3YLYZKUGMH5/", + "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/I7TS26LIZSOBLGJEZMJX4PXT5BQDE2WS/", + "https://security.gentoo.org/glsa/202107-07", + "https://sourceware.org/bugzilla/show_bug.cgi?id=27462" + ], + "description": "The nameserver caching daemon (nscd) in the GNU C Library (aka glibc or libc6) 2.29 through 2.33, when processing a request for netgroup lookup, may crash due to a double-free, potentially resulting in degraded service or Denial of Service on the local system. This is related to netgroupcache.c.", + "cvss": null + } + ], + "matchDetails": [ + { + "type": "exact-indirect-match", + "matcher": "dpkg-matcher", + "searchedBy": { + "distro": { + "type": "debian", + "version": "9" + }, + "namespace": "debian:distro:debian:9", + "package": { + "name": "glibc", + "version": "2.24-11+deb9u3" + } + }, + "found": { + "versionConstraint": "none (deb)", + "vulnerabilityID": "CVE-2021-27645" + } + } + ], + "artifact": { + "name": "multiarch-support", + "version": "2.24-11+deb9u3", + "type": "deb", + "locations": null, + "language": "", + "licenses": [ + "GPL-2.0-only", + "LGPL-2.1-only" + ], + "cpes": [ + "cpe:2.3:a:multiarch-support:multiarch-support:2.24-11+deb9u3:*:*:*:*:*:*:*", + "cpe:2.3:a:multiarch-support:multiarch_support:2.24-11+deb9u3:*:*:*:*:*:*:*", + "cpe:2.3:a:multiarch_support:multiarch-support:2.24-11+deb9u3:*:*:*:*:*:*:*", + "cpe:2.3:a:multiarch_support:multiarch_support:2.24-11+deb9u3:*:*:*:*:*:*:*", + "cpe:2.3:a:multiarch:multiarch-support:2.24-11+deb9u3:*:*:*:*:*:*:*", + "cpe:2.3:a:multiarch:multiarch_support:2.24-11+deb9u3:*:*:*:*:*:*:*" + ], + "purl": "pkg:deb/debian/multiarch-support@2.24-11+deb9u3?arch=amd64\u0026upstream=glibc\u0026distro=debian-9", + "upstreams": [ + { + "name": "glibc" + } + ], + "metadata": null + } + }, + { + "vulnerability": { + "id": "CVE-2021-31535", + "dataSource": "https://security-tracker.debian.org/tracker/CVE-2021-31535", + "namespace": "debian:distro:debian:9", + "severity": "Critical", + "urls": [ + "https://security-tracker.debian.org/tracker/CVE-2021-31535" + ], + "description": "LookupCol.c in X.Org X through X11R7.7 and libX11 before 1.7.1 might allow remote attackers to execute arbitrary code. The libX11 XLookupColor request (intended for server-side color lookup) contains a flaw allowing a client to send color-name requests with a name longer than the maximum size allowed by the protocol (and also longer than the maximum packet size for normal-sized packets). The user-controlled data exceeding the maximum size is then interpreted by the server as additional X protocol requests and executed, e.g., to disable X server authorization completely. For example, if the victim encounters malicious terminal control sequences for color codes, then the attacker may be able to take full control of the running graphical session.", + "cvss": null, + "fix": { + "versions": [ + "2:1.6.4-3+deb9u4" + ], + "state": "fixed" + }, + "advisories": null + }, + "relatedVulnerabilities": [ + { + "id": "CVE-2021-31535", + "dataSource": "https://nvd.nist.gov/vuln/detail/CVE-2021-31535", + "namespace": "nvd:cpe", + "severity": "Critical", + "urls": [ + "http://packetstormsecurity.com/files/162737/libX11-Insufficient-Length-Check-Injection.html", + "http://seclists.org/fulldisclosure/2021/May/52", + "http://www.openwall.com/lists/oss-security/2021/05/18/2", + "https://gitlab.freedesktop.org/xorg/lib/libx11/-/commit/8d2e02ae650f00c4a53deb625211a0527126c605", + "https://lists.apache.org/thread.html/r61db8e7dcb56dc000a5387a88f7a473bacec5ee01b9ff3f55308aacc@%3Cdev.kafka.apache.org%3E", + "https://lists.apache.org/thread.html/r61db8e7dcb56dc000a5387a88f7a473bacec5ee01b9ff3f55308aacc@%3Cusers.kafka.apache.org%3E", + "https://lists.apache.org/thread.html/rbf4ce74b0d1fa9810dec50ba3ace0caeea677af7c27a97111c06ccb7@%3Cdev.kafka.apache.org%3E", + "https://lists.apache.org/thread.html/rbf4ce74b0d1fa9810dec50ba3ace0caeea677af7c27a97111c06ccb7@%3Cusers.kafka.apache.org%3E", + "https://lists.debian.org/debian-lts-announce/2021/05/msg00021.html", + "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/TEOT4RLB76RVPJQKGGTIKTBIOLHX2NR6/", + "https://lists.freedesktop.org/archives/xorg/", + "https://lists.x.org/archives/xorg-announce/2021-May/003088.html", + "https://security.gentoo.org/glsa/202105-16", + "https://security.netapp.com/advisory/ntap-20210813-0001/", + "https://unparalleled.eu/blog/2021/20210518-using-xterm-to-navigate-the-huge-color-space/", + "https://unparalleled.eu/publications/2021/advisory-unpar-2021-1.txt", + "https://www.debian.org/security/2021/dsa-4920", + "https://www.openwall.com/lists/oss-security/2021/05/18/2", + "https://www.openwall.com/lists/oss-security/2021/05/18/3" + ], + "description": "LookupCol.c in X.Org X through X11R7.7 and libX11 before 1.7.1 might allow remote attackers to execute arbitrary code. The libX11 XLookupColor request (intended for server-side color lookup) contains a flaw allowing a client to send color-name requests with a name longer than the maximum size allowed by the protocol (and also longer than the maximum packet size for normal-sized packets). The user-controlled data exceeding the maximum size is then interpreted by the server as additional X protocol requests and executed, e.g., to disable X server authorization completely. For example, if the victim encounters malicious terminal control sequences for color codes, then the attacker may be able to take full control of the running graphical session.", + "cvss": null + } + ], + "matchDetails": [ + { + "type": "exact-indirect-match", + "matcher": "dpkg-matcher", + "searchedBy": { + "distro": { + "type": "debian", + "version": "9" + }, + "namespace": "debian:distro:debian:9", + "package": { + "name": "libx11", + "version": "2:1.6.4-3+deb9u1" + } + }, + "found": { + "versionConstraint": "\u003c 2:1.6.4-3+deb9u4 (deb)", + "vulnerabilityID": "CVE-2021-31535" + } + } + ], + "artifact": { + "name": "libx11-6", + "version": "2:1.6.4-3+deb9u1", + "type": "deb", + "locations": null, + "language": "", + "licenses": [], + "cpes": [ + "cpe:2.3:a:libx11-6:libx11-6:2:1.6.4-3+deb9u1:*:*:*:*:*:*:*", + "cpe:2.3:a:libx11-6:libx11_6:2:1.6.4-3+deb9u1:*:*:*:*:*:*:*", + "cpe:2.3:a:libx11_6:libx11-6:2:1.6.4-3+deb9u1:*:*:*:*:*:*:*", + "cpe:2.3:a:libx11_6:libx11_6:2:1.6.4-3+deb9u1:*:*:*:*:*:*:*", + "cpe:2.3:a:libx11:libx11-6:2:1.6.4-3+deb9u1:*:*:*:*:*:*:*", + "cpe:2.3:a:libx11:libx11_6:2:1.6.4-3+deb9u1:*:*:*:*:*:*:*" + ], + "purl": "pkg:deb/debian/libx11-6@2:1.6.4-3+deb9u1?arch=amd64\u0026upstream=libx11\u0026distro=debian-9", + "upstreams": [ + { + "name": "libx11" + } + ], + "metadata": null + } + }, + { + "vulnerability": { + "id": "CVE-2021-31535", + "dataSource": "https://security-tracker.debian.org/tracker/CVE-2021-31535", + "namespace": "debian:distro:debian:9", + "severity": "Critical", + "urls": [ + "https://security-tracker.debian.org/tracker/CVE-2021-31535" + ], + "description": "LookupCol.c in X.Org X through X11R7.7 and libX11 before 1.7.1 might allow remote attackers to execute arbitrary code. The libX11 XLookupColor request (intended for server-side color lookup) contains a flaw allowing a client to send color-name requests with a name longer than the maximum size allowed by the protocol (and also longer than the maximum packet size for normal-sized packets). The user-controlled data exceeding the maximum size is then interpreted by the server as additional X protocol requests and executed, e.g., to disable X server authorization completely. For example, if the victim encounters malicious terminal control sequences for color codes, then the attacker may be able to take full control of the running graphical session.", + "cvss": null, + "fix": { + "versions": [ + "2:1.6.4-3+deb9u4" + ], + "state": "fixed" + }, + "advisories": null + }, + "relatedVulnerabilities": [ + { + "id": "CVE-2021-31535", + "dataSource": "https://nvd.nist.gov/vuln/detail/CVE-2021-31535", + "namespace": "nvd:cpe", + "severity": "Critical", + "urls": [ + "http://packetstormsecurity.com/files/162737/libX11-Insufficient-Length-Check-Injection.html", + "http://seclists.org/fulldisclosure/2021/May/52", + "http://www.openwall.com/lists/oss-security/2021/05/18/2", + "https://gitlab.freedesktop.org/xorg/lib/libx11/-/commit/8d2e02ae650f00c4a53deb625211a0527126c605", + "https://lists.apache.org/thread.html/r61db8e7dcb56dc000a5387a88f7a473bacec5ee01b9ff3f55308aacc@%3Cdev.kafka.apache.org%3E", + "https://lists.apache.org/thread.html/r61db8e7dcb56dc000a5387a88f7a473bacec5ee01b9ff3f55308aacc@%3Cusers.kafka.apache.org%3E", + "https://lists.apache.org/thread.html/rbf4ce74b0d1fa9810dec50ba3ace0caeea677af7c27a97111c06ccb7@%3Cdev.kafka.apache.org%3E", + "https://lists.apache.org/thread.html/rbf4ce74b0d1fa9810dec50ba3ace0caeea677af7c27a97111c06ccb7@%3Cusers.kafka.apache.org%3E", + "https://lists.debian.org/debian-lts-announce/2021/05/msg00021.html", + "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/TEOT4RLB76RVPJQKGGTIKTBIOLHX2NR6/", + "https://lists.freedesktop.org/archives/xorg/", + "https://lists.x.org/archives/xorg-announce/2021-May/003088.html", + "https://security.gentoo.org/glsa/202105-16", + "https://security.netapp.com/advisory/ntap-20210813-0001/", + "https://unparalleled.eu/blog/2021/20210518-using-xterm-to-navigate-the-huge-color-space/", + "https://unparalleled.eu/publications/2021/advisory-unpar-2021-1.txt", + "https://www.debian.org/security/2021/dsa-4920", + "https://www.openwall.com/lists/oss-security/2021/05/18/2", + "https://www.openwall.com/lists/oss-security/2021/05/18/3" + ], + "description": "LookupCol.c in X.Org X through X11R7.7 and libX11 before 1.7.1 might allow remote attackers to execute arbitrary code. The libX11 XLookupColor request (intended for server-side color lookup) contains a flaw allowing a client to send color-name requests with a name longer than the maximum size allowed by the protocol (and also longer than the maximum packet size for normal-sized packets). The user-controlled data exceeding the maximum size is then interpreted by the server as additional X protocol requests and executed, e.g., to disable X server authorization completely. For example, if the victim encounters malicious terminal control sequences for color codes, then the attacker may be able to take full control of the running graphical session.", + "cvss": null + } + ], + "matchDetails": [ + { + "type": "exact-indirect-match", + "matcher": "dpkg-matcher", + "searchedBy": { + "distro": { + "type": "debian", + "version": "9" + }, + "namespace": "debian:distro:debian:9", + "package": { + "name": "libx11", + "version": "2:1.6.4-3+deb9u1" + } + }, + "found": { + "versionConstraint": "\u003c 2:1.6.4-3+deb9u4 (deb)", + "vulnerabilityID": "CVE-2021-31535" + } + } + ], + "artifact": { + "name": "libx11-data", + "version": "2:1.6.4-3+deb9u1", + "type": "deb", + "locations": null, + "language": "", + "licenses": [], + "cpes": [ + "cpe:2.3:a:libx11-data:libx11-data:2:1.6.4-3+deb9u1:*:*:*:*:*:*:*", + "cpe:2.3:a:libx11-data:libx11_data:2:1.6.4-3+deb9u1:*:*:*:*:*:*:*", + "cpe:2.3:a:libx11_data:libx11-data:2:1.6.4-3+deb9u1:*:*:*:*:*:*:*", + "cpe:2.3:a:libx11_data:libx11_data:2:1.6.4-3+deb9u1:*:*:*:*:*:*:*", + "cpe:2.3:a:libx11:libx11-data:2:1.6.4-3+deb9u1:*:*:*:*:*:*:*", + "cpe:2.3:a:libx11:libx11_data:2:1.6.4-3+deb9u1:*:*:*:*:*:*:*" + ], + "purl": "pkg:deb/debian/libx11-data@2:1.6.4-3+deb9u1?arch=all\u0026upstream=libx11\u0026distro=debian-9", + "upstreams": [ + { + "name": "libx11" + } + ], + "metadata": null + } + }, + { + "vulnerability": { + "id": "CVE-2021-3326", + "dataSource": "https://security-tracker.debian.org/tracker/CVE-2021-3326", + "namespace": "debian:distro:debian:9", + "severity": "High", + "urls": [ + "https://security-tracker.debian.org/tracker/CVE-2021-3326" + ], + "description": "The iconv function in the GNU C Library (aka glibc or libc6) 2.32 and earlier, when processing invalid input sequences in the ISO-2022-JP-3 encoding, fails an assertion in the code path and aborts the program, potentially resulting in a denial of service.", + "cvss": null, + "fix": { + "versions": [], + "state": "wont-fix" + }, + "advisories": null + }, + "relatedVulnerabilities": [ + { + "id": "CVE-2021-3326", + "dataSource": "https://nvd.nist.gov/vuln/detail/CVE-2021-3326", + "namespace": "nvd:cpe", + "severity": "High", + "urls": [ + "http://www.openwall.com/lists/oss-security/2021/01/28/2", + "https://lists.debian.org/debian-lts-announce/2022/10/msg00021.html", + "https://security.gentoo.org/glsa/202107-07", + "https://security.netapp.com/advisory/ntap-20210304-0007/", + "https://sourceware.org/bugzilla/show_bug.cgi?id=27256", + "https://sourceware.org/git/?p=glibc.git;a=commit;h=7d88c6142c6efc160c0ee5e4f85cde382c072888", + "https://www.oracle.com/security-alerts/cpuapr2022.html", + "https://www.oracle.com/security-alerts/cpujan2022.html" + ], + "description": "The iconv function in the GNU C Library (aka glibc or libc6) 2.32 and earlier, when processing invalid input sequences in the ISO-2022-JP-3 encoding, fails an assertion in the code path and aborts the program, potentially resulting in a denial of service.", + "cvss": null + } + ], + "matchDetails": [ + { + "type": "exact-indirect-match", + "matcher": "dpkg-matcher", + "searchedBy": { + "distro": { + "type": "debian", + "version": "9" + }, + "namespace": "debian:distro:debian:9", + "package": { + "name": "glibc", + "version": "2.24-11+deb9u3" + } + }, + "found": { + "versionConstraint": "none (deb)", + "vulnerabilityID": "CVE-2021-3326" + } + } + ], + "artifact": { + "name": "libc-bin", + "version": "2.24-11+deb9u3", + "type": "deb", + "locations": null, + "language": "", + "licenses": [ + "GPL-2.0-only", + "LGPL-2.1-only" + ], + "cpes": [ + "cpe:2.3:a:libc-bin:libc-bin:2.24-11+deb9u3:*:*:*:*:*:*:*", + "cpe:2.3:a:libc-bin:libc_bin:2.24-11+deb9u3:*:*:*:*:*:*:*", + "cpe:2.3:a:libc_bin:libc-bin:2.24-11+deb9u3:*:*:*:*:*:*:*", + "cpe:2.3:a:libc_bin:libc_bin:2.24-11+deb9u3:*:*:*:*:*:*:*", + "cpe:2.3:a:libc:libc-bin:2.24-11+deb9u3:*:*:*:*:*:*:*", + "cpe:2.3:a:libc:libc_bin:2.24-11+deb9u3:*:*:*:*:*:*:*" + ], + "purl": "pkg:deb/debian/libc-bin@2.24-11+deb9u3?arch=amd64\u0026upstream=glibc\u0026distro=debian-9", + "upstreams": [ + { + "name": "glibc" + } + ], + "metadata": null + } + }, + { + "vulnerability": { + "id": "CVE-2021-3326", + "dataSource": "https://security-tracker.debian.org/tracker/CVE-2021-3326", + "namespace": "debian:distro:debian:9", + "severity": "High", + "urls": [ + "https://security-tracker.debian.org/tracker/CVE-2021-3326" + ], + "description": "The iconv function in the GNU C Library (aka glibc or libc6) 2.32 and earlier, when processing invalid input sequences in the ISO-2022-JP-3 encoding, fails an assertion in the code path and aborts the program, potentially resulting in a denial of service.", + "cvss": null, + "fix": { + "versions": [], + "state": "wont-fix" + }, + "advisories": null + }, + "relatedVulnerabilities": [ + { + "id": "CVE-2021-3326", + "dataSource": "https://nvd.nist.gov/vuln/detail/CVE-2021-3326", + "namespace": "nvd:cpe", + "severity": "High", + "urls": [ + "http://www.openwall.com/lists/oss-security/2021/01/28/2", + "https://lists.debian.org/debian-lts-announce/2022/10/msg00021.html", + "https://security.gentoo.org/glsa/202107-07", + "https://security.netapp.com/advisory/ntap-20210304-0007/", + "https://sourceware.org/bugzilla/show_bug.cgi?id=27256", + "https://sourceware.org/git/?p=glibc.git;a=commit;h=7d88c6142c6efc160c0ee5e4f85cde382c072888", + "https://www.oracle.com/security-alerts/cpuapr2022.html", + "https://www.oracle.com/security-alerts/cpujan2022.html" + ], + "description": "The iconv function in the GNU C Library (aka glibc or libc6) 2.32 and earlier, when processing invalid input sequences in the ISO-2022-JP-3 encoding, fails an assertion in the code path and aborts the program, potentially resulting in a denial of service.", + "cvss": null + } + ], + "matchDetails": [ + { + "type": "exact-indirect-match", + "matcher": "dpkg-matcher", + "searchedBy": { + "distro": { + "type": "debian", + "version": "9" + }, + "namespace": "debian:distro:debian:9", + "package": { + "name": "glibc", + "version": "2.24-11+deb9u3" + } + }, + "found": { + "versionConstraint": "none (deb)", + "vulnerabilityID": "CVE-2021-3326" + } + } + ], + "artifact": { + "name": "libc6", + "version": "2.24-11+deb9u3", + "type": "deb", + "locations": null, + "language": "", + "licenses": [ + "GPL-2.0-only", + "LGPL-2.1-only" + ], + "cpes": [ + "cpe:2.3:a:libc6:libc6:2.24-11+deb9u3:*:*:*:*:*:*:*" + ], + "purl": "pkg:deb/debian/libc6@2.24-11+deb9u3?arch=amd64\u0026upstream=glibc\u0026distro=debian-9", + "upstreams": [ + { + "name": "glibc" + } + ], + "metadata": null + } + }, + { + "vulnerability": { + "id": "CVE-2021-3326", + "dataSource": "https://security-tracker.debian.org/tracker/CVE-2021-3326", + "namespace": "debian:distro:debian:9", + "severity": "High", + "urls": [ + "https://security-tracker.debian.org/tracker/CVE-2021-3326" + ], + "description": "The iconv function in the GNU C Library (aka glibc or libc6) 2.32 and earlier, when processing invalid input sequences in the ISO-2022-JP-3 encoding, fails an assertion in the code path and aborts the program, potentially resulting in a denial of service.", + "cvss": null, + "fix": { + "versions": [], + "state": "wont-fix" + }, + "advisories": null + }, + "relatedVulnerabilities": [ + { + "id": "CVE-2021-3326", + "dataSource": "https://nvd.nist.gov/vuln/detail/CVE-2021-3326", + "namespace": "nvd:cpe", + "severity": "High", + "urls": [ + "http://www.openwall.com/lists/oss-security/2021/01/28/2", + "https://lists.debian.org/debian-lts-announce/2022/10/msg00021.html", + "https://security.gentoo.org/glsa/202107-07", + "https://security.netapp.com/advisory/ntap-20210304-0007/", + "https://sourceware.org/bugzilla/show_bug.cgi?id=27256", + "https://sourceware.org/git/?p=glibc.git;a=commit;h=7d88c6142c6efc160c0ee5e4f85cde382c072888", + "https://www.oracle.com/security-alerts/cpuapr2022.html", + "https://www.oracle.com/security-alerts/cpujan2022.html" + ], + "description": "The iconv function in the GNU C Library (aka glibc or libc6) 2.32 and earlier, when processing invalid input sequences in the ISO-2022-JP-3 encoding, fails an assertion in the code path and aborts the program, potentially resulting in a denial of service.", + "cvss": null + } + ], + "matchDetails": [ + { + "type": "exact-indirect-match", + "matcher": "dpkg-matcher", + "searchedBy": { + "distro": { + "type": "debian", + "version": "9" + }, + "namespace": "debian:distro:debian:9", + "package": { + "name": "glibc", + "version": "2.24-11+deb9u3" + } + }, + "found": { + "versionConstraint": "none (deb)", + "vulnerabilityID": "CVE-2021-3326" + } + } + ], + "artifact": { + "name": "multiarch-support", + "version": "2.24-11+deb9u3", + "type": "deb", + "locations": null, + "language": "", + "licenses": [ + "GPL-2.0-only", + "LGPL-2.1-only" + ], + "cpes": [ + "cpe:2.3:a:multiarch-support:multiarch-support:2.24-11+deb9u3:*:*:*:*:*:*:*", + "cpe:2.3:a:multiarch-support:multiarch_support:2.24-11+deb9u3:*:*:*:*:*:*:*", + "cpe:2.3:a:multiarch_support:multiarch-support:2.24-11+deb9u3:*:*:*:*:*:*:*", + "cpe:2.3:a:multiarch_support:multiarch_support:2.24-11+deb9u3:*:*:*:*:*:*:*", + "cpe:2.3:a:multiarch:multiarch-support:2.24-11+deb9u3:*:*:*:*:*:*:*", + "cpe:2.3:a:multiarch:multiarch_support:2.24-11+deb9u3:*:*:*:*:*:*:*" + ], + "purl": "pkg:deb/debian/multiarch-support@2.24-11+deb9u3?arch=amd64\u0026upstream=glibc\u0026distro=debian-9", + "upstreams": [ + { + "name": "glibc" + } + ], + "metadata": null + } + }, + { + "vulnerability": { + "id": "CVE-2021-33560", + "dataSource": "https://security-tracker.debian.org/tracker/CVE-2021-33560", + "namespace": "debian:distro:debian:9", + "severity": "High", + "urls": [ + "https://security-tracker.debian.org/tracker/CVE-2021-33560" + ], + "description": "Libgcrypt before 1.8.8 and 1.9.x before 1.9.3 mishandles ElGamal encryption because it lacks exponent blinding to address a side-channel attack against mpi_powm, and the window size is not chosen appropriately. This, for example, affects use of ElGamal in OpenPGP.", + "cvss": null, + "fix": { + "versions": [], + "state": "wont-fix" + }, + "advisories": null + }, + "relatedVulnerabilities": [ + { + "id": "CVE-2021-33560", + "dataSource": "https://nvd.nist.gov/vuln/detail/CVE-2021-33560", + "namespace": "nvd:cpe", + "severity": "High", + "urls": [ + "https://dev.gnupg.org/T5305", + "https://dev.gnupg.org/T5328", + "https://dev.gnupg.org/T5466", + "https://dev.gnupg.org/rCe8b7f10be275bcedb5fc05ed4837a89bfd605c61", + "https://lists.debian.org/debian-lts-announce/2021/06/msg00021.html", + "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/BKKTOIGFW2SGN3DO2UHHVZ7MJSYN4AAB/", + "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/R7OAPCUGPF3VLA7QAJUQSL255D4ITVTL/", + "https://security.gentoo.org/glsa/202210-13", + "https://www.oracle.com/security-alerts/cpuapr2022.html", + "https://www.oracle.com/security-alerts/cpujan2022.html", + "https://www.oracle.com/security-alerts/cpujul2022.html", + "https://www.oracle.com/security-alerts/cpuoct2021.html" + ], + "description": "Libgcrypt before 1.8.8 and 1.9.x before 1.9.3 mishandles ElGamal encryption because it lacks exponent blinding to address a side-channel attack against mpi_powm, and the window size is not chosen appropriately. This, for example, affects use of ElGamal in OpenPGP.", + "cvss": null + } + ], + "matchDetails": [ + { + "type": "exact-direct-match", + "matcher": "dpkg-matcher", + "searchedBy": { + "distro": { + "type": "debian", + "version": "9" + }, + "namespace": "debian:distro:debian:9", + "package": { + "name": "libgcrypt20", + "version": "1.7.6-2+deb9u3" + } + }, + "found": { + "versionConstraint": "none (deb)", + "vulnerabilityID": "CVE-2021-33560" + } + } + ], + "artifact": { + "name": "libgcrypt20", + "version": "1.7.6-2+deb9u3", + "type": "deb", + "locations": null, + "language": "", + "licenses": [ + "GPL-2.0-only", + "LicenseRef-LGPL" + ], + "cpes": [ + "cpe:2.3:a:libgcrypt20:libgcrypt20:1.7.6-2+deb9u3:*:*:*:*:*:*:*" + ], + "purl": "pkg:deb/debian/libgcrypt20@1.7.6-2+deb9u3?arch=amd64\u0026distro=debian-9", + "upstreams": null, + "metadata": null + } + }, + { + "vulnerability": { + "id": "CVE-2021-33574", + "dataSource": "https://security-tracker.debian.org/tracker/CVE-2021-33574", + "namespace": "debian:distro:debian:9", + "severity": "Critical", + "urls": [ + "https://security-tracker.debian.org/tracker/CVE-2021-33574" + ], + "description": "The mq_notify function in the GNU C Library (aka glibc) versions 2.32 and 2.33 has a use-after-free. It may use the notification thread attributes object (passed through its struct sigevent parameter) after it has been freed by the caller, leading to a denial of service (application crash) or possibly unspecified other impact.", + "cvss": null, + "fix": { + "versions": [], + "state": "wont-fix" + }, + "advisories": null + }, + "relatedVulnerabilities": [ + { + "id": "CVE-2021-33574", + "dataSource": "https://nvd.nist.gov/vuln/detail/CVE-2021-33574", + "namespace": "nvd:cpe", + "severity": "Critical", + "urls": [ + "https://lists.debian.org/debian-lts-announce/2022/10/msg00021.html", + "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/KJYYIMDDYOHTP2PORLABTOHYQYYREZDD/", + "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/RBUUWUGXVILQXVWEOU7N42ICHPJNAEUP/", + "https://security.gentoo.org/glsa/202107-07", + "https://security.netapp.com/advisory/ntap-20210629-0005/", + "https://sourceware.org/bugzilla/show_bug.cgi?id=27896", + "https://sourceware.org/bugzilla/show_bug.cgi?id=27896#c1" + ], + "description": "The mq_notify function in the GNU C Library (aka glibc) versions 2.32 and 2.33 has a use-after-free. It may use the notification thread attributes object (passed through its struct sigevent parameter) after it has been freed by the caller, leading to a denial of service (application crash) or possibly unspecified other impact.", + "cvss": null + } + ], + "matchDetails": [ + { + "type": "exact-indirect-match", + "matcher": "dpkg-matcher", + "searchedBy": { + "distro": { + "type": "debian", + "version": "9" + }, + "namespace": "debian:distro:debian:9", + "package": { + "name": "glibc", + "version": "2.24-11+deb9u3" + } + }, + "found": { + "versionConstraint": "none (deb)", + "vulnerabilityID": "CVE-2021-33574" + } + } + ], + "artifact": { + "name": "libc-bin", + "version": "2.24-11+deb9u3", + "type": "deb", + "locations": null, + "language": "", + "licenses": [ + "GPL-2.0-only", + "LGPL-2.1-only" + ], + "cpes": [ + "cpe:2.3:a:libc-bin:libc-bin:2.24-11+deb9u3:*:*:*:*:*:*:*", + "cpe:2.3:a:libc-bin:libc_bin:2.24-11+deb9u3:*:*:*:*:*:*:*", + "cpe:2.3:a:libc_bin:libc-bin:2.24-11+deb9u3:*:*:*:*:*:*:*", + "cpe:2.3:a:libc_bin:libc_bin:2.24-11+deb9u3:*:*:*:*:*:*:*", + "cpe:2.3:a:libc:libc-bin:2.24-11+deb9u3:*:*:*:*:*:*:*", + "cpe:2.3:a:libc:libc_bin:2.24-11+deb9u3:*:*:*:*:*:*:*" + ], + "purl": "pkg:deb/debian/libc-bin@2.24-11+deb9u3?arch=amd64\u0026upstream=glibc\u0026distro=debian-9", + "upstreams": [ + { + "name": "glibc" + } + ], + "metadata": null + } + }, + { + "vulnerability": { + "id": "CVE-2021-33574", + "dataSource": "https://security-tracker.debian.org/tracker/CVE-2021-33574", + "namespace": "debian:distro:debian:9", + "severity": "Critical", + "urls": [ + "https://security-tracker.debian.org/tracker/CVE-2021-33574" + ], + "description": "The mq_notify function in the GNU C Library (aka glibc) versions 2.32 and 2.33 has a use-after-free. It may use the notification thread attributes object (passed through its struct sigevent parameter) after it has been freed by the caller, leading to a denial of service (application crash) or possibly unspecified other impact.", + "cvss": null, + "fix": { + "versions": [], + "state": "wont-fix" + }, + "advisories": null + }, + "relatedVulnerabilities": [ + { + "id": "CVE-2021-33574", + "dataSource": "https://nvd.nist.gov/vuln/detail/CVE-2021-33574", + "namespace": "nvd:cpe", + "severity": "Critical", + "urls": [ + "https://lists.debian.org/debian-lts-announce/2022/10/msg00021.html", + "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/KJYYIMDDYOHTP2PORLABTOHYQYYREZDD/", + "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/RBUUWUGXVILQXVWEOU7N42ICHPJNAEUP/", + "https://security.gentoo.org/glsa/202107-07", + "https://security.netapp.com/advisory/ntap-20210629-0005/", + "https://sourceware.org/bugzilla/show_bug.cgi?id=27896", + "https://sourceware.org/bugzilla/show_bug.cgi?id=27896#c1" + ], + "description": "The mq_notify function in the GNU C Library (aka glibc) versions 2.32 and 2.33 has a use-after-free. It may use the notification thread attributes object (passed through its struct sigevent parameter) after it has been freed by the caller, leading to a denial of service (application crash) or possibly unspecified other impact.", + "cvss": null + } + ], + "matchDetails": [ + { + "type": "exact-indirect-match", + "matcher": "dpkg-matcher", + "searchedBy": { + "distro": { + "type": "debian", + "version": "9" + }, + "namespace": "debian:distro:debian:9", + "package": { + "name": "glibc", + "version": "2.24-11+deb9u3" + } + }, + "found": { + "versionConstraint": "none (deb)", + "vulnerabilityID": "CVE-2021-33574" + } + } + ], + "artifact": { + "name": "libc6", + "version": "2.24-11+deb9u3", + "type": "deb", + "locations": null, + "language": "", + "licenses": [ + "GPL-2.0-only", + "LGPL-2.1-only" + ], + "cpes": [ + "cpe:2.3:a:libc6:libc6:2.24-11+deb9u3:*:*:*:*:*:*:*" + ], + "purl": "pkg:deb/debian/libc6@2.24-11+deb9u3?arch=amd64\u0026upstream=glibc\u0026distro=debian-9", + "upstreams": [ + { + "name": "glibc" + } + ], + "metadata": null + } + }, + { + "vulnerability": { + "id": "CVE-2021-33574", + "dataSource": "https://security-tracker.debian.org/tracker/CVE-2021-33574", + "namespace": "debian:distro:debian:9", + "severity": "Critical", + "urls": [ + "https://security-tracker.debian.org/tracker/CVE-2021-33574" + ], + "description": "The mq_notify function in the GNU C Library (aka glibc) versions 2.32 and 2.33 has a use-after-free. It may use the notification thread attributes object (passed through its struct sigevent parameter) after it has been freed by the caller, leading to a denial of service (application crash) or possibly unspecified other impact.", + "cvss": null, + "fix": { + "versions": [], + "state": "wont-fix" + }, + "advisories": null + }, + "relatedVulnerabilities": [ + { + "id": "CVE-2021-33574", + "dataSource": "https://nvd.nist.gov/vuln/detail/CVE-2021-33574", + "namespace": "nvd:cpe", + "severity": "Critical", + "urls": [ + "https://lists.debian.org/debian-lts-announce/2022/10/msg00021.html", + "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/KJYYIMDDYOHTP2PORLABTOHYQYYREZDD/", + "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/RBUUWUGXVILQXVWEOU7N42ICHPJNAEUP/", + "https://security.gentoo.org/glsa/202107-07", + "https://security.netapp.com/advisory/ntap-20210629-0005/", + "https://sourceware.org/bugzilla/show_bug.cgi?id=27896", + "https://sourceware.org/bugzilla/show_bug.cgi?id=27896#c1" + ], + "description": "The mq_notify function in the GNU C Library (aka glibc) versions 2.32 and 2.33 has a use-after-free. It may use the notification thread attributes object (passed through its struct sigevent parameter) after it has been freed by the caller, leading to a denial of service (application crash) or possibly unspecified other impact.", + "cvss": null + } + ], + "matchDetails": [ + { + "type": "exact-indirect-match", + "matcher": "dpkg-matcher", + "searchedBy": { + "distro": { + "type": "debian", + "version": "9" + }, + "namespace": "debian:distro:debian:9", + "package": { + "name": "glibc", + "version": "2.24-11+deb9u3" + } + }, + "found": { + "versionConstraint": "none (deb)", + "vulnerabilityID": "CVE-2021-33574" + } + } + ], + "artifact": { + "name": "multiarch-support", + "version": "2.24-11+deb9u3", + "type": "deb", + "locations": null, + "language": "", + "licenses": [ + "GPL-2.0-only", + "LGPL-2.1-only" + ], + "cpes": [ + "cpe:2.3:a:multiarch-support:multiarch-support:2.24-11+deb9u3:*:*:*:*:*:*:*", + "cpe:2.3:a:multiarch-support:multiarch_support:2.24-11+deb9u3:*:*:*:*:*:*:*", + "cpe:2.3:a:multiarch_support:multiarch-support:2.24-11+deb9u3:*:*:*:*:*:*:*", + "cpe:2.3:a:multiarch_support:multiarch_support:2.24-11+deb9u3:*:*:*:*:*:*:*", + "cpe:2.3:a:multiarch:multiarch-support:2.24-11+deb9u3:*:*:*:*:*:*:*", + "cpe:2.3:a:multiarch:multiarch_support:2.24-11+deb9u3:*:*:*:*:*:*:*" + ], + "purl": "pkg:deb/debian/multiarch-support@2.24-11+deb9u3?arch=amd64\u0026upstream=glibc\u0026distro=debian-9", + "upstreams": [ + { + "name": "glibc" + } + ], + "metadata": null + } + }, + { + "vulnerability": { + "id": "CVE-2021-33910", + "dataSource": "https://security-tracker.debian.org/tracker/CVE-2021-33910", + "namespace": "debian:distro:debian:9", + "severity": "Medium", + "urls": [ + "https://security-tracker.debian.org/tracker/CVE-2021-33910" + ], + "description": "basic/unit-name.c in systemd prior to 246.15, 247.8, 248.5, and 249.1 has a Memory Allocation with an Excessive Size Value (involving strdupa and alloca for a pathname controlled by a local attacker) that results in an operating system crash.", + "cvss": null, + "fix": { + "versions": [ + "232-25+deb9u13" + ], + "state": "fixed" + }, + "advisories": null + }, + "relatedVulnerabilities": [ + { + "id": "CVE-2021-33910", + "dataSource": "https://nvd.nist.gov/vuln/detail/CVE-2021-33910", + "namespace": "nvd:cpe", + "severity": "Medium", + "urls": [ + "http://packetstormsecurity.com/files/163621/Sequoia-A-Deep-Root-In-Linuxs-Filesystem-Layer.html", + "http://www.openwall.com/lists/oss-security/2021/08/04/2", + "http://www.openwall.com/lists/oss-security/2021/08/17/3", + "http://www.openwall.com/lists/oss-security/2021/09/07/3", + "https://cert-portal.siemens.com/productcert/pdf/ssa-222547.pdf", + "https://github.com/systemd/systemd-stable/commit/4a1c5f34bd3e1daed4490e9d97918e504d19733b", + "https://github.com/systemd/systemd-stable/commit/764b74113e36ac5219a4b82a05f311b5a92136ce", + "https://github.com/systemd/systemd-stable/commit/b00674347337b7531c92fdb65590ab253bb57538", + "https://github.com/systemd/systemd-stable/commit/cfd14c65374027b34dbbc4f0551456c5dc2d1f61", + "https://github.com/systemd/systemd/commit/b34a4f0e6729de292cb3b0c03c1d48f246ad896b", + "https://github.com/systemd/systemd/pull/20256/commits/441e0115646d54f080e5c3bb0ba477c892861ab9", + "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/2LSDMHAKI4LGFOCSPXNVVSEWQFAVFWR7/", + "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/42TMJVNYRY65B4QCJICBYOEIVZV3KUYI/", + "https://security.gentoo.org/glsa/202107-48", + "https://security.netapp.com/advisory/ntap-20211104-0008/", + "https://www.debian.org/security/2021/dsa-4942", + "https://www.openwall.com/lists/oss-security/2021/07/20/2" + ], + "description": "basic/unit-name.c in systemd prior to 246.15, 247.8, 248.5, and 249.1 has a Memory Allocation with an Excessive Size Value (involving strdupa and alloca for a pathname controlled by a local attacker) that results in an operating system crash.", + "cvss": null + } + ], + "matchDetails": [ + { + "type": "exact-indirect-match", + "matcher": "dpkg-matcher", + "searchedBy": { + "distro": { + "type": "debian", + "version": "9" + }, + "namespace": "debian:distro:debian:9", + "package": { + "name": "systemd", + "version": "232-25+deb9u6" + } + }, + "found": { + "versionConstraint": "\u003c 232-25+deb9u13 (deb)", + "vulnerabilityID": "CVE-2021-33910" + } + } + ], + "artifact": { + "name": "libsystemd0", + "version": "232-25+deb9u6", + "type": "deb", + "locations": null, + "language": "", + "licenses": [ + "LicenseRef-CC0", + "LicenseRef-Expat", + "GPL-2.0-only", + "GPL-2.0-or-later", + "LGPL-2.1-only", + "LGPL-2.1-or-later", + "LicenseRef-public-domain" + ], + "cpes": [ + "cpe:2.3:a:libsystemd0:libsystemd0:232-25+deb9u6:*:*:*:*:*:*:*" + ], + "purl": "pkg:deb/debian/libsystemd0@232-25+deb9u6?arch=amd64\u0026upstream=systemd\u0026distro=debian-9", + "upstreams": [ + { + "name": "systemd" + } + ], + "metadata": null + } + }, + { + "vulnerability": { + "id": "CVE-2021-33910", + "dataSource": "https://security-tracker.debian.org/tracker/CVE-2021-33910", + "namespace": "debian:distro:debian:9", + "severity": "Medium", + "urls": [ + "https://security-tracker.debian.org/tracker/CVE-2021-33910" + ], + "description": "basic/unit-name.c in systemd prior to 246.15, 247.8, 248.5, and 249.1 has a Memory Allocation with an Excessive Size Value (involving strdupa and alloca for a pathname controlled by a local attacker) that results in an operating system crash.", + "cvss": null, + "fix": { + "versions": [ + "232-25+deb9u13" + ], + "state": "fixed" + }, + "advisories": null + }, + "relatedVulnerabilities": [ + { + "id": "CVE-2021-33910", + "dataSource": "https://nvd.nist.gov/vuln/detail/CVE-2021-33910", + "namespace": "nvd:cpe", + "severity": "Medium", + "urls": [ + "http://packetstormsecurity.com/files/163621/Sequoia-A-Deep-Root-In-Linuxs-Filesystem-Layer.html", + "http://www.openwall.com/lists/oss-security/2021/08/04/2", + "http://www.openwall.com/lists/oss-security/2021/08/17/3", + "http://www.openwall.com/lists/oss-security/2021/09/07/3", + "https://cert-portal.siemens.com/productcert/pdf/ssa-222547.pdf", + "https://github.com/systemd/systemd-stable/commit/4a1c5f34bd3e1daed4490e9d97918e504d19733b", + "https://github.com/systemd/systemd-stable/commit/764b74113e36ac5219a4b82a05f311b5a92136ce", + "https://github.com/systemd/systemd-stable/commit/b00674347337b7531c92fdb65590ab253bb57538", + "https://github.com/systemd/systemd-stable/commit/cfd14c65374027b34dbbc4f0551456c5dc2d1f61", + "https://github.com/systemd/systemd/commit/b34a4f0e6729de292cb3b0c03c1d48f246ad896b", + "https://github.com/systemd/systemd/pull/20256/commits/441e0115646d54f080e5c3bb0ba477c892861ab9", + "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/2LSDMHAKI4LGFOCSPXNVVSEWQFAVFWR7/", + "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/42TMJVNYRY65B4QCJICBYOEIVZV3KUYI/", + "https://security.gentoo.org/glsa/202107-48", + "https://security.netapp.com/advisory/ntap-20211104-0008/", + "https://www.debian.org/security/2021/dsa-4942", + "https://www.openwall.com/lists/oss-security/2021/07/20/2" + ], + "description": "basic/unit-name.c in systemd prior to 246.15, 247.8, 248.5, and 249.1 has a Memory Allocation with an Excessive Size Value (involving strdupa and alloca for a pathname controlled by a local attacker) that results in an operating system crash.", + "cvss": null + } + ], + "matchDetails": [ + { + "type": "exact-indirect-match", + "matcher": "dpkg-matcher", + "searchedBy": { + "distro": { + "type": "debian", + "version": "9" + }, + "namespace": "debian:distro:debian:9", + "package": { + "name": "systemd", + "version": "232-25+deb9u6" + } + }, + "found": { + "versionConstraint": "\u003c 232-25+deb9u13 (deb)", + "vulnerabilityID": "CVE-2021-33910" + } + } + ], + "artifact": { + "name": "libudev1", + "version": "232-25+deb9u6", + "type": "deb", + "locations": null, + "language": "", + "licenses": [ + "LicenseRef-CC0", + "LicenseRef-Expat", + "GPL-2.0-only", + "GPL-2.0-or-later", + "LGPL-2.1-only", + "LGPL-2.1-or-later", + "LicenseRef-public-domain" + ], + "cpes": [ + "cpe:2.3:a:libudev1:libudev1:232-25+deb9u6:*:*:*:*:*:*:*" + ], + "purl": "pkg:deb/debian/libudev1@232-25+deb9u6?arch=amd64\u0026upstream=systemd\u0026distro=debian-9", + "upstreams": [ + { + "name": "systemd" + } + ], + "metadata": null + } + }, + { + "vulnerability": { + "id": "CVE-2021-3516", + "dataSource": "https://security-tracker.debian.org/tracker/CVE-2021-3516", + "namespace": "debian:distro:debian:9", + "severity": "High", + "urls": [ + "https://security-tracker.debian.org/tracker/CVE-2021-3516" + ], + "description": "There's a flaw in libxml2's xmllint in versions before 2.9.11. An attacker who is able to submit a crafted file to be processed by xmllint could trigger a use-after-free. The greatest impact of this flaw is to confidentiality, integrity, and availability.", + "cvss": null, + "fix": { + "versions": [ + "2.9.4+dfsg1-2.2+deb9u4" + ], + "state": "fixed" + }, + "advisories": null + }, + "relatedVulnerabilities": [ + { + "id": "CVE-2021-3516", + "dataSource": "https://nvd.nist.gov/vuln/detail/CVE-2021-3516", + "namespace": "nvd:cpe", + "severity": "High", + "urls": [ + "https://bugzilla.redhat.com/show_bug.cgi?id=1954225", + "https://gitlab.gnome.org/GNOME/libxml2/-/commit/1358d157d0bd83be1dfe356a69213df9fac0b539", + "https://gitlab.gnome.org/GNOME/libxml2/-/issues/230", + "https://lists.debian.org/debian-lts-announce/2021/05/msg00008.html", + "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/BZOMV5J4PMZAORVT64BKLV6YIZAFDGX6/", + "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/QVM4UJ3376I6ZVOYMHBNX4GY3NIV52WV/", + "https://security.gentoo.org/glsa/202107-05", + "https://security.netapp.com/advisory/ntap-20210716-0005/", + "https://www.oracle.com/security-alerts/cpujan2022.html" + ], + "description": "There's a flaw in libxml2's xmllint in versions before 2.9.11. An attacker who is able to submit a crafted file to be processed by xmllint could trigger a use-after-free. The greatest impact of this flaw is to confidentiality, integrity, and availability.", + "cvss": null + } + ], + "matchDetails": [ + { + "type": "exact-direct-match", + "matcher": "dpkg-matcher", + "searchedBy": { + "distro": { + "type": "debian", + "version": "9" + }, + "namespace": "debian:distro:debian:9", + "package": { + "name": "libxml2", + "version": "2.9.4+dfsg1-2.2+deb9u2" + } + }, + "found": { + "versionConstraint": "\u003c 2.9.4+dfsg1-2.2+deb9u4 (deb)", + "vulnerabilityID": "CVE-2021-3516" + } + } + ], + "artifact": { + "name": "libxml2", + "version": "2.9.4+dfsg1-2.2+deb9u2", + "type": "deb", + "locations": null, + "language": "", + "licenses": [], + "cpes": [ + "cpe:2.3:a:libxml2:libxml2:2.9.4+dfsg1-2.2+deb9u2:*:*:*:*:*:*:*" + ], + "purl": "pkg:deb/debian/libxml2@2.9.4+dfsg1-2.2+deb9u2?arch=amd64\u0026distro=debian-9", + "upstreams": null, + "metadata": null + } + }, + { + "vulnerability": { + "id": "CVE-2021-3517", + "dataSource": "https://security-tracker.debian.org/tracker/CVE-2021-3517", + "namespace": "debian:distro:debian:9", + "severity": "High", + "urls": [ + "https://security-tracker.debian.org/tracker/CVE-2021-3517" + ], + "description": "There is a flaw in the xml entity encoding functionality of libxml2 in versions before 2.9.11. An attacker who is able to supply a crafted file to be processed by an application linked with the affected functionality of libxml2 could trigger an out-of-bounds read. The most likely impact of this flaw is to application availability, with some potential impact to confidentiality and integrity if an attacker is able to use memory information to further exploit the application.", + "cvss": null, + "fix": { + "versions": [ + "2.9.4+dfsg1-2.2+deb9u4" + ], + "state": "fixed" + }, + "advisories": null + }, + "relatedVulnerabilities": [ + { + "id": "CVE-2021-3517", + "dataSource": "https://nvd.nist.gov/vuln/detail/CVE-2021-3517", + "namespace": "nvd:cpe", + "severity": "High", + "urls": [ + "https://bugzilla.redhat.com/show_bug.cgi?id=1954232", + "https://lists.apache.org/thread.html/r58af02e294bd07f487e2c64ffc0a29b837db5600e33b6e698b9d696b@%3Cissues.bookkeeper.apache.org%3E", + "https://lists.apache.org/thread.html/rf4c02775860db415b4955778a131c2795223f61cb8c6a450893651e4@%3Cissues.bookkeeper.apache.org%3E", + "https://lists.debian.org/debian-lts-announce/2021/05/msg00008.html", + "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/BZOMV5J4PMZAORVT64BKLV6YIZAFDGX6/", + "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/QVM4UJ3376I6ZVOYMHBNX4GY3NIV52WV/", + "https://security.gentoo.org/glsa/202107-05", + "https://security.netapp.com/advisory/ntap-20210625-0002/", + "https://security.netapp.com/advisory/ntap-20211022-0004/", + "https://www.oracle.com/security-alerts/cpuapr2022.html", + "https://www.oracle.com/security-alerts/cpujan2022.html", + "https://www.oracle.com/security-alerts/cpujul2022.html", + "https://www.oracle.com/security-alerts/cpuoct2021.html" + ], + "description": "There is a flaw in the xml entity encoding functionality of libxml2 in versions before 2.9.11. An attacker who is able to supply a crafted file to be processed by an application linked with the affected functionality of libxml2 could trigger an out-of-bounds read. The most likely impact of this flaw is to application availability, with some potential impact to confidentiality and integrity if an attacker is able to use memory information to further exploit the application.", + "cvss": null + } + ], + "matchDetails": [ + { + "type": "exact-direct-match", + "matcher": "dpkg-matcher", + "searchedBy": { + "distro": { + "type": "debian", + "version": "9" + }, + "namespace": "debian:distro:debian:9", + "package": { + "name": "libxml2", + "version": "2.9.4+dfsg1-2.2+deb9u2" + } + }, + "found": { + "versionConstraint": "\u003c 2.9.4+dfsg1-2.2+deb9u4 (deb)", + "vulnerabilityID": "CVE-2021-3517" + } + } + ], + "artifact": { + "name": "libxml2", + "version": "2.9.4+dfsg1-2.2+deb9u2", + "type": "deb", + "locations": null, + "language": "", + "licenses": [], + "cpes": [ + "cpe:2.3:a:libxml2:libxml2:2.9.4+dfsg1-2.2+deb9u2:*:*:*:*:*:*:*" + ], + "purl": "pkg:deb/debian/libxml2@2.9.4+dfsg1-2.2+deb9u2?arch=amd64\u0026distro=debian-9", + "upstreams": null, + "metadata": null + } + }, + { + "vulnerability": { + "id": "CVE-2021-3518", + "dataSource": "https://security-tracker.debian.org/tracker/CVE-2021-3518", + "namespace": "debian:distro:debian:9", + "severity": "High", + "urls": [ + "https://security-tracker.debian.org/tracker/CVE-2021-3518" + ], + "description": "There's a flaw in libxml2 in versions before 2.9.11. An attacker who is able to submit a crafted file to be processed by an application linked with libxml2 could trigger a use-after-free. The greatest impact from this flaw is to confidentiality, integrity, and availability.", + "cvss": null, + "fix": { + "versions": [ + "2.9.4+dfsg1-2.2+deb9u4" + ], + "state": "fixed" + }, + "advisories": null + }, + "relatedVulnerabilities": [ + { + "id": "CVE-2021-3518", + "dataSource": "https://nvd.nist.gov/vuln/detail/CVE-2021-3518", + "namespace": "nvd:cpe", + "severity": "High", + "urls": [ + "http://seclists.org/fulldisclosure/2021/Jul/54", + "http://seclists.org/fulldisclosure/2021/Jul/55", + "http://seclists.org/fulldisclosure/2021/Jul/58", + "http://seclists.org/fulldisclosure/2021/Jul/59", + "https://bugzilla.redhat.com/show_bug.cgi?id=1954242", + "https://lists.apache.org/thread.html/r58af02e294bd07f487e2c64ffc0a29b837db5600e33b6e698b9d696b@%3Cissues.bookkeeper.apache.org%3E", + "https://lists.apache.org/thread.html/rf4c02775860db415b4955778a131c2795223f61cb8c6a450893651e4@%3Cissues.bookkeeper.apache.org%3E", + "https://lists.debian.org/debian-lts-announce/2021/05/msg00008.html", + "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/BZOMV5J4PMZAORVT64BKLV6YIZAFDGX6/", + "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/QVM4UJ3376I6ZVOYMHBNX4GY3NIV52WV/", + "https://security.gentoo.org/glsa/202107-05", + "https://security.netapp.com/advisory/ntap-20210625-0002/", + "https://support.apple.com/kb/HT212601", + "https://support.apple.com/kb/HT212602", + "https://support.apple.com/kb/HT212604", + "https://support.apple.com/kb/HT212605", + "https://www.oracle.com/security-alerts/cpuapr2022.html", + "https://www.oracle.com/security-alerts/cpujul2022.html", + "https://www.oracle.com/security-alerts/cpuoct2021.html" + ], + "description": "There's a flaw in libxml2 in versions before 2.9.11. An attacker who is able to submit a crafted file to be processed by an application linked with libxml2 could trigger a use-after-free. The greatest impact from this flaw is to confidentiality, integrity, and availability.", + "cvss": null + } + ], + "matchDetails": [ + { + "type": "exact-direct-match", + "matcher": "dpkg-matcher", + "searchedBy": { + "distro": { + "type": "debian", + "version": "9" + }, + "namespace": "debian:distro:debian:9", + "package": { + "name": "libxml2", + "version": "2.9.4+dfsg1-2.2+deb9u2" + } + }, + "found": { + "versionConstraint": "\u003c 2.9.4+dfsg1-2.2+deb9u4 (deb)", + "vulnerabilityID": "CVE-2021-3518" + } + } + ], + "artifact": { + "name": "libxml2", + "version": "2.9.4+dfsg1-2.2+deb9u2", + "type": "deb", + "locations": null, + "language": "", + "licenses": [], + "cpes": [ + "cpe:2.3:a:libxml2:libxml2:2.9.4+dfsg1-2.2+deb9u2:*:*:*:*:*:*:*" + ], + "purl": "pkg:deb/debian/libxml2@2.9.4+dfsg1-2.2+deb9u2?arch=amd64\u0026distro=debian-9", + "upstreams": null, + "metadata": null + } + }, + { + "vulnerability": { + "id": "CVE-2021-3520", + "dataSource": "https://security-tracker.debian.org/tracker/CVE-2021-3520", + "namespace": "debian:distro:debian:9", + "severity": "Critical", + "urls": [ + "https://security-tracker.debian.org/tracker/CVE-2021-3520" + ], + "description": "There's a flaw in lz4. An attacker who submits a crafted file to an application linked with lz4 may be able to trigger an integer overflow, leading to calling of memmove() on a negative size argument, causing an out-of-bounds write and/or a crash. The greatest impact of this flaw is to availability, with some potential impact to confidentiality and integrity as well.", + "cvss": null, + "fix": { + "versions": [ + "0.0~r131-2+deb9u1" + ], + "state": "fixed" + }, + "advisories": null + }, + "relatedVulnerabilities": [ + { + "id": "CVE-2021-3520", + "dataSource": "https://nvd.nist.gov/vuln/detail/CVE-2021-3520", + "namespace": "nvd:cpe", + "severity": "Critical", + "urls": [ + "https://bugzilla.redhat.com/show_bug.cgi?id=1954559", + "https://security.netapp.com/advisory/ntap-20211104-0005/", + "https://www.oracle.com//security-alerts/cpujul2021.html", + "https://www.oracle.com/security-alerts/cpuapr2022.html", + "https://www.oracle.com/security-alerts/cpuoct2021.html" + ], + "description": "There's a flaw in lz4. An attacker who submits a crafted file to an application linked with lz4 may be able to trigger an integer overflow, leading to calling of memmove() on a negative size argument, causing an out-of-bounds write and/or a crash. The greatest impact of this flaw is to availability, with some potential impact to confidentiality and integrity as well.", + "cvss": null + } + ], + "matchDetails": [ + { + "type": "exact-indirect-match", + "matcher": "dpkg-matcher", + "searchedBy": { + "distro": { + "type": "debian", + "version": "9" + }, + "namespace": "debian:distro:debian:9", + "package": { + "name": "lz4", + "version": "0.0~r131-2" + } + }, + "found": { + "versionConstraint": "\u003c 0.0~r131-2+deb9u1 (deb)", + "vulnerabilityID": "CVE-2021-3520" + } + } + ], + "artifact": { + "name": "liblz4-1", + "version": "0.0~r131-2+b1", + "type": "deb", + "locations": null, + "language": "", + "licenses": [ + "BSD-2-Clause", + "GPL-2.0-only", + "GPL-2.0-or-later" + ], + "cpes": [ + "cpe:2.3:a:liblz4-1:liblz4-1:0.0~r131-2+b1:*:*:*:*:*:*:*", + "cpe:2.3:a:liblz4-1:liblz4_1:0.0~r131-2+b1:*:*:*:*:*:*:*", + "cpe:2.3:a:liblz4_1:liblz4-1:0.0~r131-2+b1:*:*:*:*:*:*:*", + "cpe:2.3:a:liblz4_1:liblz4_1:0.0~r131-2+b1:*:*:*:*:*:*:*", + "cpe:2.3:a:liblz4:liblz4-1:0.0~r131-2+b1:*:*:*:*:*:*:*", + "cpe:2.3:a:liblz4:liblz4_1:0.0~r131-2+b1:*:*:*:*:*:*:*" + ], + "purl": "pkg:deb/debian/liblz4-1@0.0~r131-2+b1?arch=amd64\u0026upstream=lz4%400.0~r131-2\u0026distro=debian-9", + "upstreams": [ + { + "name": "lz4", + "version": "0.0~r131-2" + } + ], + "metadata": null + } + }, + { + "vulnerability": { + "id": "CVE-2021-3537", + "dataSource": "https://security-tracker.debian.org/tracker/CVE-2021-3537", + "namespace": "debian:distro:debian:9", + "severity": "Medium", + "urls": [ + "https://security-tracker.debian.org/tracker/CVE-2021-3537" + ], + "description": "A vulnerability found in libxml2 in versions before 2.9.11 shows that it did not propagate errors while parsing XML mixed content, causing a NULL dereference. If an untrusted XML document was parsed in recovery mode and post-validated, the flaw could be used to crash the application. The highest threat from this vulnerability is to system availability.", + "cvss": null, + "fix": { + "versions": [ + "2.9.4+dfsg1-2.2+deb9u4" + ], + "state": "fixed" + }, + "advisories": null + }, + "relatedVulnerabilities": [ + { + "id": "CVE-2021-3537", + "dataSource": "https://nvd.nist.gov/vuln/detail/CVE-2021-3537", + "namespace": "nvd:cpe", + "severity": "Medium", + "urls": [ + "https://bugzilla.redhat.com/show_bug.cgi?id=1956522", + "https://lists.debian.org/debian-lts-announce/2021/05/msg00008.html", + "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/BZOMV5J4PMZAORVT64BKLV6YIZAFDGX6/", + "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/QVM4UJ3376I6ZVOYMHBNX4GY3NIV52WV/", + "https://security.gentoo.org/glsa/202107-05", + "https://security.netapp.com/advisory/ntap-20210625-0002/", + "https://www.oracle.com/security-alerts/cpuapr2022.html", + "https://www.oracle.com/security-alerts/cpujul2022.html", + "https://www.oracle.com/security-alerts/cpuoct2021.html" + ], + "description": "A vulnerability found in libxml2 in versions before 2.9.11 shows that it did not propagate errors while parsing XML mixed content, causing a NULL dereference. If an untrusted XML document was parsed in recovery mode and post-validated, the flaw could be used to crash the application. The highest threat from this vulnerability is to system availability.", + "cvss": null + } + ], + "matchDetails": [ + { + "type": "exact-direct-match", + "matcher": "dpkg-matcher", + "searchedBy": { + "distro": { + "type": "debian", + "version": "9" + }, + "namespace": "debian:distro:debian:9", + "package": { + "name": "libxml2", + "version": "2.9.4+dfsg1-2.2+deb9u2" + } + }, + "found": { + "versionConstraint": "\u003c 2.9.4+dfsg1-2.2+deb9u4 (deb)", + "vulnerabilityID": "CVE-2021-3537" + } + } + ], + "artifact": { + "name": "libxml2", + "version": "2.9.4+dfsg1-2.2+deb9u2", + "type": "deb", + "locations": null, + "language": "", + "licenses": [], + "cpes": [ + "cpe:2.3:a:libxml2:libxml2:2.9.4+dfsg1-2.2+deb9u2:*:*:*:*:*:*:*" + ], + "purl": "pkg:deb/debian/libxml2@2.9.4+dfsg1-2.2+deb9u2?arch=amd64\u0026distro=debian-9", + "upstreams": null, + "metadata": null + } + }, + { + "vulnerability": { + "id": "CVE-2021-3541", + "dataSource": "https://security-tracker.debian.org/tracker/CVE-2021-3541", + "namespace": "debian:distro:debian:9", + "severity": "Medium", + "urls": [ + "https://security-tracker.debian.org/tracker/CVE-2021-3541" + ], + "description": "A flaw was found in libxml2. Exponential entity expansion attack its possible bypassing all existing protection mechanisms and leading to denial of service.", + "cvss": null, + "fix": { + "versions": [ + "2.9.4+dfsg1-2.2+deb9u5" + ], + "state": "fixed" + }, + "advisories": null + }, + "relatedVulnerabilities": [ + { + "id": "CVE-2021-3541", + "dataSource": "https://nvd.nist.gov/vuln/detail/CVE-2021-3541", + "namespace": "nvd:cpe", + "severity": "Medium", + "urls": [ + "https://bugzilla.redhat.com/show_bug.cgi?id=1950515", + "https://security.netapp.com/advisory/ntap-20210805-0007/", + "https://www.oracle.com/security-alerts/cpujan2022.html" + ], + "description": "A flaw was found in libxml2. Exponential entity expansion attack its possible bypassing all existing protection mechanisms and leading to denial of service.", + "cvss": null + } + ], + "matchDetails": [ + { + "type": "exact-direct-match", + "matcher": "dpkg-matcher", + "searchedBy": { + "distro": { + "type": "debian", + "version": "9" + }, + "namespace": "debian:distro:debian:9", + "package": { + "name": "libxml2", + "version": "2.9.4+dfsg1-2.2+deb9u2" + } + }, + "found": { + "versionConstraint": "\u003c 2.9.4+dfsg1-2.2+deb9u5 (deb)", + "vulnerabilityID": "CVE-2021-3541" + } + } + ], + "artifact": { + "name": "libxml2", + "version": "2.9.4+dfsg1-2.2+deb9u2", + "type": "deb", + "locations": null, + "language": "", + "licenses": [], + "cpes": [ + "cpe:2.3:a:libxml2:libxml2:2.9.4+dfsg1-2.2+deb9u2:*:*:*:*:*:*:*" + ], + "purl": "pkg:deb/debian/libxml2@2.9.4+dfsg1-2.2+deb9u2?arch=amd64\u0026distro=debian-9", + "upstreams": null, + "metadata": null + } + }, + { + "vulnerability": { + "id": "CVE-2021-35942", + "dataSource": "https://security-tracker.debian.org/tracker/CVE-2021-35942", + "namespace": "debian:distro:debian:9", + "severity": "Critical", + "urls": [ + "https://security-tracker.debian.org/tracker/CVE-2021-35942" + ], + "description": "The wordexp function in the GNU C Library (aka glibc) through 2.33 may crash or read arbitrary memory in parse_param (in posix/wordexp.c) when called with an untrusted, crafted pattern, potentially resulting in a denial of service or disclosure of information. This occurs because atoi was used but strtoul should have been used to ensure correct calculations.", + "cvss": null, + "fix": { + "versions": [], + "state": "wont-fix" + }, + "advisories": null + }, + "relatedVulnerabilities": [ + { + "id": "CVE-2021-35942", + "dataSource": "https://nvd.nist.gov/vuln/detail/CVE-2021-35942", + "namespace": "nvd:cpe", + "severity": "Critical", + "urls": [ + "https://lists.debian.org/debian-lts-announce/2022/10/msg00021.html", + "https://security.gentoo.org/glsa/202208-24", + "https://security.netapp.com/advisory/ntap-20210827-0005/", + "https://sourceware.org/bugzilla/show_bug.cgi?id=28011", + "https://sourceware.org/git/?p=glibc.git;a=commit;h=5adda61f62b77384718b4c0d8336ade8f2b4b35c", + "https://sourceware.org/glibc/wiki/Security%20Exceptions" + ], + "description": "The wordexp function in the GNU C Library (aka glibc) through 2.33 may crash or read arbitrary memory in parse_param (in posix/wordexp.c) when called with an untrusted, crafted pattern, potentially resulting in a denial of service or disclosure of information. This occurs because atoi was used but strtoul should have been used to ensure correct calculations.", + "cvss": null + } + ], + "matchDetails": [ + { + "type": "exact-indirect-match", + "matcher": "dpkg-matcher", + "searchedBy": { + "distro": { + "type": "debian", + "version": "9" + }, + "namespace": "debian:distro:debian:9", + "package": { + "name": "glibc", + "version": "2.24-11+deb9u3" + } + }, + "found": { + "versionConstraint": "none (deb)", + "vulnerabilityID": "CVE-2021-35942" + } + } + ], + "artifact": { + "name": "libc-bin", + "version": "2.24-11+deb9u3", + "type": "deb", + "locations": null, + "language": "", + "licenses": [ + "GPL-2.0-only", + "LGPL-2.1-only" + ], + "cpes": [ + "cpe:2.3:a:libc-bin:libc-bin:2.24-11+deb9u3:*:*:*:*:*:*:*", + "cpe:2.3:a:libc-bin:libc_bin:2.24-11+deb9u3:*:*:*:*:*:*:*", + "cpe:2.3:a:libc_bin:libc-bin:2.24-11+deb9u3:*:*:*:*:*:*:*", + "cpe:2.3:a:libc_bin:libc_bin:2.24-11+deb9u3:*:*:*:*:*:*:*", + "cpe:2.3:a:libc:libc-bin:2.24-11+deb9u3:*:*:*:*:*:*:*", + "cpe:2.3:a:libc:libc_bin:2.24-11+deb9u3:*:*:*:*:*:*:*" + ], + "purl": "pkg:deb/debian/libc-bin@2.24-11+deb9u3?arch=amd64\u0026upstream=glibc\u0026distro=debian-9", + "upstreams": [ + { + "name": "glibc" + } + ], + "metadata": null + } + }, + { + "vulnerability": { + "id": "CVE-2021-35942", + "dataSource": "https://security-tracker.debian.org/tracker/CVE-2021-35942", + "namespace": "debian:distro:debian:9", + "severity": "Critical", + "urls": [ + "https://security-tracker.debian.org/tracker/CVE-2021-35942" + ], + "description": "The wordexp function in the GNU C Library (aka glibc) through 2.33 may crash or read arbitrary memory in parse_param (in posix/wordexp.c) when called with an untrusted, crafted pattern, potentially resulting in a denial of service or disclosure of information. This occurs because atoi was used but strtoul should have been used to ensure correct calculations.", + "cvss": null, + "fix": { + "versions": [], + "state": "wont-fix" + }, + "advisories": null + }, + "relatedVulnerabilities": [ + { + "id": "CVE-2021-35942", + "dataSource": "https://nvd.nist.gov/vuln/detail/CVE-2021-35942", + "namespace": "nvd:cpe", + "severity": "Critical", + "urls": [ + "https://lists.debian.org/debian-lts-announce/2022/10/msg00021.html", + "https://security.gentoo.org/glsa/202208-24", + "https://security.netapp.com/advisory/ntap-20210827-0005/", + "https://sourceware.org/bugzilla/show_bug.cgi?id=28011", + "https://sourceware.org/git/?p=glibc.git;a=commit;h=5adda61f62b77384718b4c0d8336ade8f2b4b35c", + "https://sourceware.org/glibc/wiki/Security%20Exceptions" + ], + "description": "The wordexp function in the GNU C Library (aka glibc) through 2.33 may crash or read arbitrary memory in parse_param (in posix/wordexp.c) when called with an untrusted, crafted pattern, potentially resulting in a denial of service or disclosure of information. This occurs because atoi was used but strtoul should have been used to ensure correct calculations.", + "cvss": null + } + ], + "matchDetails": [ + { + "type": "exact-indirect-match", + "matcher": "dpkg-matcher", + "searchedBy": { + "distro": { + "type": "debian", + "version": "9" + }, + "namespace": "debian:distro:debian:9", + "package": { + "name": "glibc", + "version": "2.24-11+deb9u3" + } + }, + "found": { + "versionConstraint": "none (deb)", + "vulnerabilityID": "CVE-2021-35942" + } + } + ], + "artifact": { + "name": "libc6", + "version": "2.24-11+deb9u3", + "type": "deb", + "locations": null, + "language": "", + "licenses": [ + "GPL-2.0-only", + "LGPL-2.1-only" + ], + "cpes": [ + "cpe:2.3:a:libc6:libc6:2.24-11+deb9u3:*:*:*:*:*:*:*" + ], + "purl": "pkg:deb/debian/libc6@2.24-11+deb9u3?arch=amd64\u0026upstream=glibc\u0026distro=debian-9", + "upstreams": [ + { + "name": "glibc" + } + ], + "metadata": null + } + }, + { + "vulnerability": { + "id": "CVE-2021-35942", + "dataSource": "https://security-tracker.debian.org/tracker/CVE-2021-35942", + "namespace": "debian:distro:debian:9", + "severity": "Critical", + "urls": [ + "https://security-tracker.debian.org/tracker/CVE-2021-35942" + ], + "description": "The wordexp function in the GNU C Library (aka glibc) through 2.33 may crash or read arbitrary memory in parse_param (in posix/wordexp.c) when called with an untrusted, crafted pattern, potentially resulting in a denial of service or disclosure of information. This occurs because atoi was used but strtoul should have been used to ensure correct calculations.", + "cvss": null, + "fix": { + "versions": [], + "state": "wont-fix" + }, + "advisories": null + }, + "relatedVulnerabilities": [ + { + "id": "CVE-2021-35942", + "dataSource": "https://nvd.nist.gov/vuln/detail/CVE-2021-35942", + "namespace": "nvd:cpe", + "severity": "Critical", + "urls": [ + "https://lists.debian.org/debian-lts-announce/2022/10/msg00021.html", + "https://security.gentoo.org/glsa/202208-24", + "https://security.netapp.com/advisory/ntap-20210827-0005/", + "https://sourceware.org/bugzilla/show_bug.cgi?id=28011", + "https://sourceware.org/git/?p=glibc.git;a=commit;h=5adda61f62b77384718b4c0d8336ade8f2b4b35c", + "https://sourceware.org/glibc/wiki/Security%20Exceptions" + ], + "description": "The wordexp function in the GNU C Library (aka glibc) through 2.33 may crash or read arbitrary memory in parse_param (in posix/wordexp.c) when called with an untrusted, crafted pattern, potentially resulting in a denial of service or disclosure of information. This occurs because atoi was used but strtoul should have been used to ensure correct calculations.", + "cvss": null + } + ], + "matchDetails": [ + { + "type": "exact-indirect-match", + "matcher": "dpkg-matcher", + "searchedBy": { + "distro": { + "type": "debian", + "version": "9" + }, + "namespace": "debian:distro:debian:9", + "package": { + "name": "glibc", + "version": "2.24-11+deb9u3" + } + }, + "found": { + "versionConstraint": "none (deb)", + "vulnerabilityID": "CVE-2021-35942" + } + } + ], + "artifact": { + "name": "multiarch-support", + "version": "2.24-11+deb9u3", + "type": "deb", + "locations": null, + "language": "", + "licenses": [ + "GPL-2.0-only", + "LGPL-2.1-only" + ], + "cpes": [ + "cpe:2.3:a:multiarch-support:multiarch-support:2.24-11+deb9u3:*:*:*:*:*:*:*", + "cpe:2.3:a:multiarch-support:multiarch_support:2.24-11+deb9u3:*:*:*:*:*:*:*", + "cpe:2.3:a:multiarch_support:multiarch-support:2.24-11+deb9u3:*:*:*:*:*:*:*", + "cpe:2.3:a:multiarch_support:multiarch_support:2.24-11+deb9u3:*:*:*:*:*:*:*", + "cpe:2.3:a:multiarch:multiarch-support:2.24-11+deb9u3:*:*:*:*:*:*:*", + "cpe:2.3:a:multiarch:multiarch_support:2.24-11+deb9u3:*:*:*:*:*:*:*" + ], + "purl": "pkg:deb/debian/multiarch-support@2.24-11+deb9u3?arch=amd64\u0026upstream=glibc\u0026distro=debian-9", + "upstreams": [ + { + "name": "glibc" + } + ], + "metadata": null + } + }, + { + "vulnerability": { + "id": "CVE-2021-36084", + "dataSource": "https://security-tracker.debian.org/tracker/CVE-2021-36084", + "namespace": "debian:distro:debian:9", + "severity": "Low", + "urls": [ + "https://security-tracker.debian.org/tracker/CVE-2021-36084" + ], + "description": "The CIL compiler in SELinux 3.2 has a use-after-free in __cil_verify_classperms (called from __cil_verify_classpermission and __cil_pre_verify_helper).", + "cvss": null, + "fix": { + "versions": [], + "state": "wont-fix" + }, + "advisories": null + }, + "relatedVulnerabilities": [ + { + "id": "CVE-2021-36084", + "dataSource": "https://nvd.nist.gov/vuln/detail/CVE-2021-36084", + "namespace": "nvd:cpe", + "severity": "Low", + "urls": [ + "https://bugs.chromium.org/p/oss-fuzz/issues/detail?id=31065", + "https://github.com/SELinuxProject/selinux/commit/f34d3d30c8325e4847a6b696fe7a3936a8a361f3", + "https://github.com/google/oss-fuzz-vulns/blob/main/vulns/selinux/OSV-2021-417.yaml", + "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/U7ZYR3PIJ75N6U2IONJWCKZ5L2NKJTGR/" + ], + "description": "The CIL compiler in SELinux 3.2 has a use-after-free in __cil_verify_classperms (called from __cil_verify_classpermission and __cil_pre_verify_helper).", + "cvss": null + } + ], + "matchDetails": [ + { + "type": "exact-indirect-match", + "matcher": "dpkg-matcher", + "searchedBy": { + "distro": { + "type": "debian", + "version": "9" + }, + "namespace": "debian:distro:debian:9", + "package": { + "name": "libsepol", + "version": "2.6-2" + } + }, + "found": { + "versionConstraint": "none (deb)", + "vulnerabilityID": "CVE-2021-36084" + } + } + ], + "artifact": { + "name": "libsepol1", + "version": "2.6-2", + "type": "deb", + "locations": null, + "language": "", + "licenses": [ + "LicenseRef-GPL", + "LicenseRef-LGPL" + ], + "cpes": [ + "cpe:2.3:a:libsepol1:libsepol1:2.6-2:*:*:*:*:*:*:*" + ], + "purl": "pkg:deb/debian/libsepol1@2.6-2?arch=amd64\u0026upstream=libsepol\u0026distro=debian-9", + "upstreams": [ + { + "name": "libsepol" + } + ], + "metadata": null + } + }, + { + "vulnerability": { + "id": "CVE-2021-36085", + "dataSource": "https://security-tracker.debian.org/tracker/CVE-2021-36085", + "namespace": "debian:distro:debian:9", + "severity": "Low", + "urls": [ + "https://security-tracker.debian.org/tracker/CVE-2021-36085" + ], + "description": "The CIL compiler in SELinux 3.2 has a use-after-free in __cil_verify_classperms (called from __verify_map_perm_classperms and hashtab_map).", + "cvss": null, + "fix": { + "versions": [], + "state": "wont-fix" + }, + "advisories": null + }, + "relatedVulnerabilities": [ + { + "id": "CVE-2021-36085", + "dataSource": "https://nvd.nist.gov/vuln/detail/CVE-2021-36085", + "namespace": "nvd:cpe", + "severity": "Low", + "urls": [ + "https://bugs.chromium.org/p/oss-fuzz/issues/detail?id=31124", + "https://github.com/SELinuxProject/selinux/commit/2d35fcc7e9e976a2346b1de20e54f8663e8a6cba", + "https://github.com/google/oss-fuzz-vulns/blob/main/vulns/selinux/OSV-2021-421.yaml", + "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/U7ZYR3PIJ75N6U2IONJWCKZ5L2NKJTGR/" + ], + "description": "The CIL compiler in SELinux 3.2 has a use-after-free in __cil_verify_classperms (called from __verify_map_perm_classperms and hashtab_map).", + "cvss": null + } + ], + "matchDetails": [ + { + "type": "exact-indirect-match", + "matcher": "dpkg-matcher", + "searchedBy": { + "distro": { + "type": "debian", + "version": "9" + }, + "namespace": "debian:distro:debian:9", + "package": { + "name": "libsepol", + "version": "2.6-2" + } + }, + "found": { + "versionConstraint": "none (deb)", + "vulnerabilityID": "CVE-2021-36085" + } + } + ], + "artifact": { + "name": "libsepol1", + "version": "2.6-2", + "type": "deb", + "locations": null, + "language": "", + "licenses": [ + "LicenseRef-GPL", + "LicenseRef-LGPL" + ], + "cpes": [ + "cpe:2.3:a:libsepol1:libsepol1:2.6-2:*:*:*:*:*:*:*" + ], + "purl": "pkg:deb/debian/libsepol1@2.6-2?arch=amd64\u0026upstream=libsepol\u0026distro=debian-9", + "upstreams": [ + { + "name": "libsepol" + } + ], + "metadata": null + } + }, + { + "vulnerability": { + "id": "CVE-2021-36086", + "dataSource": "https://security-tracker.debian.org/tracker/CVE-2021-36086", + "namespace": "debian:distro:debian:9", + "severity": "Low", + "urls": [ + "https://security-tracker.debian.org/tracker/CVE-2021-36086" + ], + "description": "The CIL compiler in SELinux 3.2 has a use-after-free in cil_reset_classpermission (called from cil_reset_classperms_set and cil_reset_classperms_list).", + "cvss": null, + "fix": { + "versions": [], + "state": "wont-fix" + }, + "advisories": null + }, + "relatedVulnerabilities": [ + { + "id": "CVE-2021-36086", + "dataSource": "https://nvd.nist.gov/vuln/detail/CVE-2021-36086", + "namespace": "nvd:cpe", + "severity": "Low", + "urls": [ + "https://bugs.chromium.org/p/oss-fuzz/issues/detail?id=32177", + "https://github.com/SELinuxProject/selinux/commit/c49a8ea09501ad66e799ea41b8154b6770fec2c8", + "https://github.com/google/oss-fuzz-vulns/blob/main/vulns/selinux/OSV-2021-536.yaml", + "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/U7ZYR3PIJ75N6U2IONJWCKZ5L2NKJTGR/" + ], + "description": "The CIL compiler in SELinux 3.2 has a use-after-free in cil_reset_classpermission (called from cil_reset_classperms_set and cil_reset_classperms_list).", + "cvss": null + } + ], + "matchDetails": [ + { + "type": "exact-indirect-match", + "matcher": "dpkg-matcher", + "searchedBy": { + "distro": { + "type": "debian", + "version": "9" + }, + "namespace": "debian:distro:debian:9", + "package": { + "name": "libsepol", + "version": "2.6-2" + } + }, + "found": { + "versionConstraint": "none (deb)", + "vulnerabilityID": "CVE-2021-36086" + } + } + ], + "artifact": { + "name": "libsepol1", + "version": "2.6-2", + "type": "deb", + "locations": null, + "language": "", + "licenses": [ + "LicenseRef-GPL", + "LicenseRef-LGPL" + ], + "cpes": [ + "cpe:2.3:a:libsepol1:libsepol1:2.6-2:*:*:*:*:*:*:*" + ], + "purl": "pkg:deb/debian/libsepol1@2.6-2?arch=amd64\u0026upstream=libsepol\u0026distro=debian-9", + "upstreams": [ + { + "name": "libsepol" + } + ], + "metadata": null + } + }, + { + "vulnerability": { + "id": "CVE-2021-36087", + "dataSource": "https://security-tracker.debian.org/tracker/CVE-2021-36087", + "namespace": "debian:distro:debian:9", + "severity": "Low", + "urls": [ + "https://security-tracker.debian.org/tracker/CVE-2021-36087" + ], + "description": "The CIL compiler in SELinux 3.2 has a heap-based buffer over-read in ebitmap_match_any (called indirectly from cil_check_neverallow). This occurs because there is sometimes a lack of checks for invalid statements in an optional block.", + "cvss": null, + "fix": { + "versions": [], + "state": "wont-fix" + }, + "advisories": null + }, + "relatedVulnerabilities": [ + { + "id": "CVE-2021-36087", + "dataSource": "https://nvd.nist.gov/vuln/detail/CVE-2021-36087", + "namespace": "nvd:cpe", + "severity": "Low", + "urls": [ + "https://bugs.chromium.org/p/oss-fuzz/issues/detail?id=32675", + "https://github.com/SELinuxProject/selinux/commit/340f0eb7f3673e8aacaf0a96cbfcd4d12a405521", + "https://github.com/google/oss-fuzz-vulns/blob/main/vulns/selinux/OSV-2021-585.yaml", + "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/U7ZYR3PIJ75N6U2IONJWCKZ5L2NKJTGR/", + "https://lore.kernel.org/selinux/CAEN2sdqJKHvDzPnxS-J8grU8fSf32DDtx=kyh84OsCq_Vm+yaQ@mail.gmail.com/T/" + ], + "description": "The CIL compiler in SELinux 3.2 has a heap-based buffer over-read in ebitmap_match_any (called indirectly from cil_check_neverallow). This occurs because there is sometimes a lack of checks for invalid statements in an optional block.", + "cvss": null + } + ], + "matchDetails": [ + { + "type": "exact-indirect-match", + "matcher": "dpkg-matcher", + "searchedBy": { + "distro": { + "type": "debian", + "version": "9" + }, + "namespace": "debian:distro:debian:9", + "package": { + "name": "libsepol", + "version": "2.6-2" + } + }, + "found": { + "versionConstraint": "none (deb)", + "vulnerabilityID": "CVE-2021-36087" + } + } + ], + "artifact": { + "name": "libsepol1", + "version": "2.6-2", + "type": "deb", + "locations": null, + "language": "", + "licenses": [ + "LicenseRef-GPL", + "LicenseRef-LGPL" + ], + "cpes": [ + "cpe:2.3:a:libsepol1:libsepol1:2.6-2:*:*:*:*:*:*:*" + ], + "purl": "pkg:deb/debian/libsepol1@2.6-2?arch=amd64\u0026upstream=libsepol\u0026distro=debian-9", + "upstreams": [ + { + "name": "libsepol" + } + ], + "metadata": null + } + }, + { + "vulnerability": { + "id": "CVE-2021-3618", + "dataSource": "https://security-tracker.debian.org/tracker/CVE-2021-3618", + "namespace": "debian:distro:debian:9", + "severity": "High", + "urls": [ + "https://security-tracker.debian.org/tracker/CVE-2021-3618" + ], + "description": "ALPACA is an application layer protocol content confusion attack, exploiting TLS servers implementing different protocols but using compatible certificates, such as multi-domain or wildcard certificates. A MiTM attacker having access to victim's traffic at the TCP/IP layer can redirect traffic from one subdomain to another, resulting in a valid TLS session. This breaks the authentication of TLS and cross-protocol attacks may be possible where the behavior of one protocol service may compromise the other at the application layer.", + "cvss": null, + "fix": { + "versions": [], + "state": "wont-fix" + }, + "advisories": null + }, + "relatedVulnerabilities": [ + { + "id": "CVE-2021-3618", + "dataSource": "https://nvd.nist.gov/vuln/detail/CVE-2021-3618", + "namespace": "nvd:cpe", + "severity": "High", + "urls": [ + "https://alpaca-attack.com/", + "https://bugzilla.redhat.com/show_bug.cgi?id=1975623", + "https://lists.debian.org/debian-lts-announce/2022/11/msg00031.html" + ], + "description": "ALPACA is an application layer protocol content confusion attack, exploiting TLS servers implementing different protocols but using compatible certificates, such as multi-domain or wildcard certificates. A MiTM attacker having access to victim's traffic at the TCP/IP layer can redirect traffic from one subdomain to another, resulting in a valid TLS session. This breaks the authentication of TLS and cross-protocol attacks may be possible where the behavior of one protocol service may compromise the other at the application layer.", + "cvss": null + } + ], + "matchDetails": [ + { + "type": "exact-direct-match", + "matcher": "dpkg-matcher", + "searchedBy": { + "distro": { + "type": "debian", + "version": "9" + }, + "namespace": "debian:distro:debian:9", + "package": { + "name": "nginx", + "version": "1.14.1-1~stretch" + } + }, + "found": { + "versionConstraint": "none (deb)", + "vulnerabilityID": "CVE-2021-3618" + } + } + ], + "artifact": { + "name": "nginx", + "version": "1.14.1-1~stretch", + "type": "deb", + "locations": null, + "language": "", + "licenses": [], + "cpes": [ + "cpe:2.3:a:nginx:nginx:1.14.1-1~stretch:*:*:*:*:*:*:*" + ], + "purl": "pkg:deb/debian/nginx@1.14.1-1~stretch?arch=amd64\u0026distro=debian-9", + "upstreams": null, + "metadata": null + } + }, + { + "vulnerability": { + "id": "CVE-2021-3712", + "dataSource": "https://security-tracker.debian.org/tracker/CVE-2021-3712", + "namespace": "debian:distro:debian:9", + "severity": "High", + "urls": [ + "https://security-tracker.debian.org/tracker/CVE-2021-3712" + ], + "description": "ASN.1 strings are represented internally within OpenSSL as an ASN1_STRING structure which contains a buffer holding the string data and a field holding the buffer length. This contrasts with normal C strings which are repesented as a buffer for the string data which is terminated with a NUL (0) byte. Although not a strict requirement, ASN.1 strings that are parsed using OpenSSL's own \"d2i\" functions (and other similar parsing functions) as well as any string whose value has been set with the ASN1_STRING_set() function will additionally NUL terminate the byte array in the ASN1_STRING structure. However, it is possible for applications to directly construct valid ASN1_STRING structures which do not NUL terminate the byte array by directly setting the \"data\" and \"length\" fields in the ASN1_STRING array. This can also happen by using the ASN1_STRING_set0() function. Numerous OpenSSL functions that print ASN.1 data have been found to assume that the ASN1_STRING byte array will be NUL terminated, even though this is not guaranteed for strings that have been directly constructed. Where an application requests an ASN.1 structure to be printed, and where that ASN.1 structure contains ASN1_STRINGs that have been directly constructed by the application without NUL terminating the \"data\" field, then a read buffer overrun can occur. The same thing can also occur during name constraints processing of certificates (for example if a certificate has been directly constructed by the application instead of loading it via the OpenSSL parsing functions, and the certificate contains non NUL terminated ASN1_STRING structures). It can also occur in the X509_get1_email(), X509_REQ_get1_email() and X509_get1_ocsp() functions. If a malicious actor can cause an application to directly construct an ASN1_STRING and then process it through one of the affected OpenSSL functions then this issue could be hit. This might result in a crash (causing a Denial of Service attack). It could also result in the disclosure of private memory contents (such as private keys, or sensitive plaintext). Fixed in OpenSSL 1.1.1l (Affected 1.1.1-1.1.1k). Fixed in OpenSSL 1.0.2za (Affected 1.0.2-1.0.2y).", + "cvss": null, + "fix": { + "versions": [ + "1.1.0l-1~deb9u4" + ], + "state": "fixed" + }, + "advisories": null + }, + "relatedVulnerabilities": [ + { + "id": "CVE-2021-3712", + "dataSource": "https://nvd.nist.gov/vuln/detail/CVE-2021-3712", + "namespace": "nvd:cpe", + "severity": "High", + "urls": [ + "http://www.openwall.com/lists/oss-security/2021/08/26/2", + "https://cert-portal.siemens.com/productcert/pdf/ssa-244969.pdf", + "https://cert-portal.siemens.com/productcert/pdf/ssa-389290.pdf", + "https://git.openssl.org/gitweb/?p=openssl.git;a=commitdiff;h=94d23fcff9b2a7a8368dfe52214d5c2569882c11", + "https://git.openssl.org/gitweb/?p=openssl.git;a=commitdiff;h=ccb0a11145ee72b042d10593a64eaf9e8a55ec12", + "https://kc.mcafee.com/corporate/index?page=content\u0026id=SB10366", + "https://lists.apache.org/thread.html/r18995de860f0e63635f3008fd2a6aca82394249476d21691e7c59c9e@%3Cdev.tomcat.apache.org%3E", + "https://lists.apache.org/thread.html/rad5d9f83f0d11fb3f8bb148d179b8a9ad7c6a17f18d70e5805a713d1@%3Cdev.tomcat.apache.org%3E", + "https://lists.debian.org/debian-lts-announce/2021/09/msg00014.html", + "https://lists.debian.org/debian-lts-announce/2021/09/msg00021.html", + "https://security.gentoo.org/glsa/202209-02", + "https://security.gentoo.org/glsa/202210-02", + "https://security.netapp.com/advisory/ntap-20210827-0010/", + "https://www.debian.org/security/2021/dsa-4963", + "https://www.openssl.org/news/secadv/20210824.txt", + "https://www.oracle.com/security-alerts/cpuapr2022.html", + "https://www.oracle.com/security-alerts/cpujan2022.html", + "https://www.oracle.com/security-alerts/cpuoct2021.html", + "https://www.tenable.com/security/tns-2021-16", + "https://www.tenable.com/security/tns-2022-02" + ], + "description": "ASN.1 strings are represented internally within OpenSSL as an ASN1_STRING structure which contains a buffer holding the string data and a field holding the buffer length. This contrasts with normal C strings which are repesented as a buffer for the string data which is terminated with a NUL (0) byte. Although not a strict requirement, ASN.1 strings that are parsed using OpenSSL's own \"d2i\" functions (and other similar parsing functions) as well as any string whose value has been set with the ASN1_STRING_set() function will additionally NUL terminate the byte array in the ASN1_STRING structure. However, it is possible for applications to directly construct valid ASN1_STRING structures which do not NUL terminate the byte array by directly setting the \"data\" and \"length\" fields in the ASN1_STRING array. This can also happen by using the ASN1_STRING_set0() function. Numerous OpenSSL functions that print ASN.1 data have been found to assume that the ASN1_STRING byte array will be NUL terminated, even though this is not guaranteed for strings that have been directly constructed. Where an application requests an ASN.1 structure to be printed, and where that ASN.1 structure contains ASN1_STRINGs that have been directly constructed by the application without NUL terminating the \"data\" field, then a read buffer overrun can occur. The same thing can also occur during name constraints processing of certificates (for example if a certificate has been directly constructed by the application instead of loading it via the OpenSSL parsing functions, and the certificate contains non NUL terminated ASN1_STRING structures). It can also occur in the X509_get1_email(), X509_REQ_get1_email() and X509_get1_ocsp() functions. If a malicious actor can cause an application to directly construct an ASN1_STRING and then process it through one of the affected OpenSSL functions then this issue could be hit. This might result in a crash (causing a Denial of Service attack). It could also result in the disclosure of private memory contents (such as private keys, or sensitive plaintext). Fixed in OpenSSL 1.1.1l (Affected 1.1.1-1.1.1k). Fixed in OpenSSL 1.0.2za (Affected 1.0.2-1.0.2y).", + "cvss": null + } + ], + "matchDetails": [ + { + "type": "exact-indirect-match", + "matcher": "dpkg-matcher", + "searchedBy": { + "distro": { + "type": "debian", + "version": "9" + }, + "namespace": "debian:distro:debian:9", + "package": { + "name": "openssl", + "version": "1.1.0f-3+deb9u2" + } + }, + "found": { + "versionConstraint": "\u003c 1.1.0l-1~deb9u4 (deb)", + "vulnerabilityID": "CVE-2021-3712" + } + } + ], + "artifact": { + "name": "libssl1.1", + "version": "1.1.0f-3+deb9u2", + "type": "deb", + "locations": null, + "language": "", + "licenses": [], + "cpes": [ + "cpe:2.3:a:libssl1.1:libssl1.1:1.1.0f-3+deb9u2:*:*:*:*:*:*:*" + ], + "purl": "pkg:deb/debian/libssl1.1@1.1.0f-3+deb9u2?arch=amd64\u0026upstream=openssl\u0026distro=debian-9", + "upstreams": [ + { + "name": "openssl" + } + ], + "metadata": null + } + }, + { + "vulnerability": { + "id": "CVE-2021-37600", + "dataSource": "https://security-tracker.debian.org/tracker/CVE-2021-37600", + "namespace": "debian:distro:debian:9", + "severity": "Low", + "urls": [ + "https://security-tracker.debian.org/tracker/CVE-2021-37600" + ], + "description": "** DISPUTED ** An integer overflow in util-linux through 2.37.1 can potentially cause a buffer overflow if an attacker were able to use system resources in a way that leads to a large number in the /proc/sysvipc/sem file. NOTE: this is unexploitable in GNU C Library environments, and possibly in all realistic environments.", + "cvss": null, + "fix": { + "versions": [], + "state": "wont-fix" + }, + "advisories": null + }, + "relatedVulnerabilities": [ + { + "id": "CVE-2021-37600", + "dataSource": "https://nvd.nist.gov/vuln/detail/CVE-2021-37600", + "namespace": "nvd:cpe", + "severity": "Medium", + "urls": [ + "https://github.com/karelzak/util-linux/commit/1c9143d0c1f979c3daf10e1c37b5b1e916c22a1c", + "https://github.com/karelzak/util-linux/issues/1395", + "https://security.netapp.com/advisory/ntap-20210902-0002/" + ], + "description": "** DISPUTED ** An integer overflow in util-linux through 2.37.1 can potentially cause a buffer overflow if an attacker were able to use system resources in a way that leads to a large number in the /proc/sysvipc/sem file. NOTE: this is unexploitable in GNU C Library environments, and possibly in all realistic environments.", + "cvss": null + } + ], + "matchDetails": [ + { + "type": "exact-indirect-match", + "matcher": "dpkg-matcher", + "searchedBy": { + "distro": { + "type": "debian", + "version": "9" + }, + "namespace": "debian:distro:debian:9", + "package": { + "name": "util-linux", + "version": "2.29.2-1+deb9u1" + } + }, + "found": { + "versionConstraint": "none (deb)", + "vulnerabilityID": "CVE-2021-37600" + } + } + ], + "artifact": { + "name": "bsdutils", + "version": "1:2.29.2-1+deb9u1", + "type": "deb", + "locations": null, + "language": "", + "licenses": [ + "BSD-2-Clause", + "BSD-3-Clause", + "BSD-4-Clause", + "GPL-2.0-only", + "GPL-2.0-or-later", + "GPL-3.0-only", + "GPL-3.0-or-later", + "LicenseRef-LGPL", + "LGPL-2.0-only", + "LGPL-2.0-or-later", + "LGPL-2.1-only", + "LGPL-2.1-or-later", + "LGPL-3.0-only", + "LGPL-3.0-or-later", + "MIT", + "LicenseRef-public-domain" + ], + "cpes": [ + "cpe:2.3:a:bsdutils:bsdutils:1:2.29.2-1+deb9u1:*:*:*:*:*:*:*" + ], + "purl": "pkg:deb/debian/bsdutils@1:2.29.2-1+deb9u1?arch=amd64\u0026upstream=util-linux%402.29.2-1+deb9u1\u0026distro=debian-9", + "upstreams": [ + { + "name": "util-linux", + "version": "2.29.2-1+deb9u1" + } + ], + "metadata": null + } + }, + { + "vulnerability": { + "id": "CVE-2021-37600", + "dataSource": "https://security-tracker.debian.org/tracker/CVE-2021-37600", + "namespace": "debian:distro:debian:9", + "severity": "Low", + "urls": [ + "https://security-tracker.debian.org/tracker/CVE-2021-37600" + ], + "description": "** DISPUTED ** An integer overflow in util-linux through 2.37.1 can potentially cause a buffer overflow if an attacker were able to use system resources in a way that leads to a large number in the /proc/sysvipc/sem file. NOTE: this is unexploitable in GNU C Library environments, and possibly in all realistic environments.", + "cvss": null, + "fix": { + "versions": [], + "state": "wont-fix" + }, + "advisories": null + }, + "relatedVulnerabilities": [ + { + "id": "CVE-2021-37600", + "dataSource": "https://nvd.nist.gov/vuln/detail/CVE-2021-37600", + "namespace": "nvd:cpe", + "severity": "Medium", + "urls": [ + "https://github.com/karelzak/util-linux/commit/1c9143d0c1f979c3daf10e1c37b5b1e916c22a1c", + "https://github.com/karelzak/util-linux/issues/1395", + "https://security.netapp.com/advisory/ntap-20210902-0002/" + ], + "description": "** DISPUTED ** An integer overflow in util-linux through 2.37.1 can potentially cause a buffer overflow if an attacker were able to use system resources in a way that leads to a large number in the /proc/sysvipc/sem file. NOTE: this is unexploitable in GNU C Library environments, and possibly in all realistic environments.", + "cvss": null + } + ], + "matchDetails": [ + { + "type": "exact-indirect-match", + "matcher": "dpkg-matcher", + "searchedBy": { + "distro": { + "type": "debian", + "version": "9" + }, + "namespace": "debian:distro:debian:9", + "package": { + "name": "util-linux", + "version": "2.29.2-1+deb9u1" + } + }, + "found": { + "versionConstraint": "none (deb)", + "vulnerabilityID": "CVE-2021-37600" + } + } + ], + "artifact": { + "name": "libblkid1", + "version": "2.29.2-1+deb9u1", + "type": "deb", + "locations": null, + "language": "", + "licenses": [ + "BSD-2-Clause", + "BSD-3-Clause", + "BSD-4-Clause", + "GPL-2.0-only", + "GPL-2.0-or-later", + "GPL-3.0-only", + "GPL-3.0-or-later", + "LicenseRef-LGPL", + "LGPL-2.0-only", + "LGPL-2.0-or-later", + "LGPL-2.1-only", + "LGPL-2.1-or-later", + "LGPL-3.0-only", + "LGPL-3.0-or-later", + "MIT", + "LicenseRef-public-domain" + ], + "cpes": [ + "cpe:2.3:a:libblkid1:libblkid1:2.29.2-1+deb9u1:*:*:*:*:*:*:*" + ], + "purl": "pkg:deb/debian/libblkid1@2.29.2-1+deb9u1?arch=amd64\u0026upstream=util-linux\u0026distro=debian-9", + "upstreams": [ + { + "name": "util-linux" + } + ], + "metadata": null + } + }, + { + "vulnerability": { + "id": "CVE-2021-37600", + "dataSource": "https://security-tracker.debian.org/tracker/CVE-2021-37600", + "namespace": "debian:distro:debian:9", + "severity": "Low", + "urls": [ + "https://security-tracker.debian.org/tracker/CVE-2021-37600" + ], + "description": "** DISPUTED ** An integer overflow in util-linux through 2.37.1 can potentially cause a buffer overflow if an attacker were able to use system resources in a way that leads to a large number in the /proc/sysvipc/sem file. NOTE: this is unexploitable in GNU C Library environments, and possibly in all realistic environments.", + "cvss": null, + "fix": { + "versions": [], + "state": "wont-fix" + }, + "advisories": null + }, + "relatedVulnerabilities": [ + { + "id": "CVE-2021-37600", + "dataSource": "https://nvd.nist.gov/vuln/detail/CVE-2021-37600", + "namespace": "nvd:cpe", + "severity": "Medium", + "urls": [ + "https://github.com/karelzak/util-linux/commit/1c9143d0c1f979c3daf10e1c37b5b1e916c22a1c", + "https://github.com/karelzak/util-linux/issues/1395", + "https://security.netapp.com/advisory/ntap-20210902-0002/" + ], + "description": "** DISPUTED ** An integer overflow in util-linux through 2.37.1 can potentially cause a buffer overflow if an attacker were able to use system resources in a way that leads to a large number in the /proc/sysvipc/sem file. NOTE: this is unexploitable in GNU C Library environments, and possibly in all realistic environments.", + "cvss": null + } + ], + "matchDetails": [ + { + "type": "exact-indirect-match", + "matcher": "dpkg-matcher", + "searchedBy": { + "distro": { + "type": "debian", + "version": "9" + }, + "namespace": "debian:distro:debian:9", + "package": { + "name": "util-linux", + "version": "2.29.2-1+deb9u1" + } + }, + "found": { + "versionConstraint": "none (deb)", + "vulnerabilityID": "CVE-2021-37600" + } + } + ], + "artifact": { + "name": "libfdisk1", + "version": "2.29.2-1+deb9u1", + "type": "deb", + "locations": null, + "language": "", + "licenses": [ + "BSD-2-Clause", + "BSD-3-Clause", + "BSD-4-Clause", + "GPL-2.0-only", + "GPL-2.0-or-later", + "GPL-3.0-only", + "GPL-3.0-or-later", + "LicenseRef-LGPL", + "LGPL-2.0-only", + "LGPL-2.0-or-later", + "LGPL-2.1-only", + "LGPL-2.1-or-later", + "LGPL-3.0-only", + "LGPL-3.0-or-later", + "MIT", + "LicenseRef-public-domain" + ], + "cpes": [ + "cpe:2.3:a:libfdisk1:libfdisk1:2.29.2-1+deb9u1:*:*:*:*:*:*:*" + ], + "purl": "pkg:deb/debian/libfdisk1@2.29.2-1+deb9u1?arch=amd64\u0026upstream=util-linux\u0026distro=debian-9", + "upstreams": [ + { + "name": "util-linux" + } + ], + "metadata": null + } + }, + { + "vulnerability": { + "id": "CVE-2021-37600", + "dataSource": "https://security-tracker.debian.org/tracker/CVE-2021-37600", + "namespace": "debian:distro:debian:9", + "severity": "Low", + "urls": [ + "https://security-tracker.debian.org/tracker/CVE-2021-37600" + ], + "description": "** DISPUTED ** An integer overflow in util-linux through 2.37.1 can potentially cause a buffer overflow if an attacker were able to use system resources in a way that leads to a large number in the /proc/sysvipc/sem file. NOTE: this is unexploitable in GNU C Library environments, and possibly in all realistic environments.", + "cvss": null, + "fix": { + "versions": [], + "state": "wont-fix" + }, + "advisories": null + }, + "relatedVulnerabilities": [ + { + "id": "CVE-2021-37600", + "dataSource": "https://nvd.nist.gov/vuln/detail/CVE-2021-37600", + "namespace": "nvd:cpe", + "severity": "Medium", + "urls": [ + "https://github.com/karelzak/util-linux/commit/1c9143d0c1f979c3daf10e1c37b5b1e916c22a1c", + "https://github.com/karelzak/util-linux/issues/1395", + "https://security.netapp.com/advisory/ntap-20210902-0002/" + ], + "description": "** DISPUTED ** An integer overflow in util-linux through 2.37.1 can potentially cause a buffer overflow if an attacker were able to use system resources in a way that leads to a large number in the /proc/sysvipc/sem file. NOTE: this is unexploitable in GNU C Library environments, and possibly in all realistic environments.", + "cvss": null + } + ], + "matchDetails": [ + { + "type": "exact-indirect-match", + "matcher": "dpkg-matcher", + "searchedBy": { + "distro": { + "type": "debian", + "version": "9" + }, + "namespace": "debian:distro:debian:9", + "package": { + "name": "util-linux", + "version": "2.29.2-1+deb9u1" + } + }, + "found": { + "versionConstraint": "none (deb)", + "vulnerabilityID": "CVE-2021-37600" + } + } + ], + "artifact": { + "name": "libmount1", + "version": "2.29.2-1+deb9u1", + "type": "deb", + "locations": null, + "language": "", + "licenses": [ + "BSD-2-Clause", + "BSD-3-Clause", + "BSD-4-Clause", + "GPL-2.0-only", + "GPL-2.0-or-later", + "GPL-3.0-only", + "GPL-3.0-or-later", + "LicenseRef-LGPL", + "LGPL-2.0-only", + "LGPL-2.0-or-later", + "LGPL-2.1-only", + "LGPL-2.1-or-later", + "LGPL-3.0-only", + "LGPL-3.0-or-later", + "MIT", + "LicenseRef-public-domain" + ], + "cpes": [ + "cpe:2.3:a:libmount1:libmount1:2.29.2-1+deb9u1:*:*:*:*:*:*:*" + ], + "purl": "pkg:deb/debian/libmount1@2.29.2-1+deb9u1?arch=amd64\u0026upstream=util-linux\u0026distro=debian-9", + "upstreams": [ + { + "name": "util-linux" + } + ], + "metadata": null + } + }, + { + "vulnerability": { + "id": "CVE-2021-37600", + "dataSource": "https://security-tracker.debian.org/tracker/CVE-2021-37600", + "namespace": "debian:distro:debian:9", + "severity": "Low", + "urls": [ + "https://security-tracker.debian.org/tracker/CVE-2021-37600" + ], + "description": "** DISPUTED ** An integer overflow in util-linux through 2.37.1 can potentially cause a buffer overflow if an attacker were able to use system resources in a way that leads to a large number in the /proc/sysvipc/sem file. NOTE: this is unexploitable in GNU C Library environments, and possibly in all realistic environments.", + "cvss": null, + "fix": { + "versions": [], + "state": "wont-fix" + }, + "advisories": null + }, + "relatedVulnerabilities": [ + { + "id": "CVE-2021-37600", + "dataSource": "https://nvd.nist.gov/vuln/detail/CVE-2021-37600", + "namespace": "nvd:cpe", + "severity": "Medium", + "urls": [ + "https://github.com/karelzak/util-linux/commit/1c9143d0c1f979c3daf10e1c37b5b1e916c22a1c", + "https://github.com/karelzak/util-linux/issues/1395", + "https://security.netapp.com/advisory/ntap-20210902-0002/" + ], + "description": "** DISPUTED ** An integer overflow in util-linux through 2.37.1 can potentially cause a buffer overflow if an attacker were able to use system resources in a way that leads to a large number in the /proc/sysvipc/sem file. NOTE: this is unexploitable in GNU C Library environments, and possibly in all realistic environments.", + "cvss": null + } + ], + "matchDetails": [ + { + "type": "exact-indirect-match", + "matcher": "dpkg-matcher", + "searchedBy": { + "distro": { + "type": "debian", + "version": "9" + }, + "namespace": "debian:distro:debian:9", + "package": { + "name": "util-linux", + "version": "2.29.2-1+deb9u1" + } + }, + "found": { + "versionConstraint": "none (deb)", + "vulnerabilityID": "CVE-2021-37600" + } + } + ], + "artifact": { + "name": "libsmartcols1", + "version": "2.29.2-1+deb9u1", + "type": "deb", + "locations": null, + "language": "", + "licenses": [ + "BSD-2-Clause", + "BSD-3-Clause", + "BSD-4-Clause", + "GPL-2.0-only", + "GPL-2.0-or-later", + "GPL-3.0-only", + "GPL-3.0-or-later", + "LicenseRef-LGPL", + "LGPL-2.0-only", + "LGPL-2.0-or-later", + "LGPL-2.1-only", + "LGPL-2.1-or-later", + "LGPL-3.0-only", + "LGPL-3.0-or-later", + "MIT", + "LicenseRef-public-domain" + ], + "cpes": [ + "cpe:2.3:a:libsmartcols1:libsmartcols1:2.29.2-1+deb9u1:*:*:*:*:*:*:*" + ], + "purl": "pkg:deb/debian/libsmartcols1@2.29.2-1+deb9u1?arch=amd64\u0026upstream=util-linux\u0026distro=debian-9", + "upstreams": [ + { + "name": "util-linux" + } + ], + "metadata": null + } + }, + { + "vulnerability": { + "id": "CVE-2021-37600", + "dataSource": "https://security-tracker.debian.org/tracker/CVE-2021-37600", + "namespace": "debian:distro:debian:9", + "severity": "Low", + "urls": [ + "https://security-tracker.debian.org/tracker/CVE-2021-37600" + ], + "description": "** DISPUTED ** An integer overflow in util-linux through 2.37.1 can potentially cause a buffer overflow if an attacker were able to use system resources in a way that leads to a large number in the /proc/sysvipc/sem file. NOTE: this is unexploitable in GNU C Library environments, and possibly in all realistic environments.", + "cvss": null, + "fix": { + "versions": [], + "state": "wont-fix" + }, + "advisories": null + }, + "relatedVulnerabilities": [ + { + "id": "CVE-2021-37600", + "dataSource": "https://nvd.nist.gov/vuln/detail/CVE-2021-37600", + "namespace": "nvd:cpe", + "severity": "Medium", + "urls": [ + "https://github.com/karelzak/util-linux/commit/1c9143d0c1f979c3daf10e1c37b5b1e916c22a1c", + "https://github.com/karelzak/util-linux/issues/1395", + "https://security.netapp.com/advisory/ntap-20210902-0002/" + ], + "description": "** DISPUTED ** An integer overflow in util-linux through 2.37.1 can potentially cause a buffer overflow if an attacker were able to use system resources in a way that leads to a large number in the /proc/sysvipc/sem file. NOTE: this is unexploitable in GNU C Library environments, and possibly in all realistic environments.", + "cvss": null + } + ], + "matchDetails": [ + { + "type": "exact-indirect-match", + "matcher": "dpkg-matcher", + "searchedBy": { + "distro": { + "type": "debian", + "version": "9" + }, + "namespace": "debian:distro:debian:9", + "package": { + "name": "util-linux", + "version": "2.29.2-1+deb9u1" + } + }, + "found": { + "versionConstraint": "none (deb)", + "vulnerabilityID": "CVE-2021-37600" + } + } + ], + "artifact": { + "name": "libuuid1", + "version": "2.29.2-1+deb9u1", + "type": "deb", + "locations": null, + "language": "", + "licenses": [ + "BSD-2-Clause", + "BSD-3-Clause", + "BSD-4-Clause", + "GPL-2.0-only", + "GPL-2.0-or-later", + "GPL-3.0-only", + "GPL-3.0-or-later", + "LicenseRef-LGPL", + "LGPL-2.0-only", + "LGPL-2.0-or-later", + "LGPL-2.1-only", + "LGPL-2.1-or-later", + "LGPL-3.0-only", + "LGPL-3.0-or-later", + "MIT", + "LicenseRef-public-domain" + ], + "cpes": [ + "cpe:2.3:a:libuuid1:libuuid1:2.29.2-1+deb9u1:*:*:*:*:*:*:*" + ], + "purl": "pkg:deb/debian/libuuid1@2.29.2-1+deb9u1?arch=amd64\u0026upstream=util-linux\u0026distro=debian-9", + "upstreams": [ + { + "name": "util-linux" + } + ], + "metadata": null + } + }, + { + "vulnerability": { + "id": "CVE-2021-37600", + "dataSource": "https://security-tracker.debian.org/tracker/CVE-2021-37600", + "namespace": "debian:distro:debian:9", + "severity": "Low", + "urls": [ + "https://security-tracker.debian.org/tracker/CVE-2021-37600" + ], + "description": "** DISPUTED ** An integer overflow in util-linux through 2.37.1 can potentially cause a buffer overflow if an attacker were able to use system resources in a way that leads to a large number in the /proc/sysvipc/sem file. NOTE: this is unexploitable in GNU C Library environments, and possibly in all realistic environments.", + "cvss": null, + "fix": { + "versions": [], + "state": "wont-fix" + }, + "advisories": null + }, + "relatedVulnerabilities": [ + { + "id": "CVE-2021-37600", + "dataSource": "https://nvd.nist.gov/vuln/detail/CVE-2021-37600", + "namespace": "nvd:cpe", + "severity": "Medium", + "urls": [ + "https://github.com/karelzak/util-linux/commit/1c9143d0c1f979c3daf10e1c37b5b1e916c22a1c", + "https://github.com/karelzak/util-linux/issues/1395", + "https://security.netapp.com/advisory/ntap-20210902-0002/" + ], + "description": "** DISPUTED ** An integer overflow in util-linux through 2.37.1 can potentially cause a buffer overflow if an attacker were able to use system resources in a way that leads to a large number in the /proc/sysvipc/sem file. NOTE: this is unexploitable in GNU C Library environments, and possibly in all realistic environments.", + "cvss": null + } + ], + "matchDetails": [ + { + "type": "exact-indirect-match", + "matcher": "dpkg-matcher", + "searchedBy": { + "distro": { + "type": "debian", + "version": "9" + }, + "namespace": "debian:distro:debian:9", + "package": { + "name": "util-linux", + "version": "2.29.2-1+deb9u1" + } + }, + "found": { + "versionConstraint": "none (deb)", + "vulnerabilityID": "CVE-2021-37600" + } + } + ], + "artifact": { + "name": "mount", + "version": "2.29.2-1+deb9u1", + "type": "deb", + "locations": null, + "language": "", + "licenses": [ + "BSD-2-Clause", + "BSD-3-Clause", + "BSD-4-Clause", + "GPL-2.0-only", + "GPL-2.0-or-later", + "GPL-3.0-only", + "GPL-3.0-or-later", + "LicenseRef-LGPL", + "LGPL-2.0-only", + "LGPL-2.0-or-later", + "LGPL-2.1-only", + "LGPL-2.1-or-later", + "LGPL-3.0-only", + "LGPL-3.0-or-later", + "MIT", + "LicenseRef-public-domain" + ], + "cpes": [ + "cpe:2.3:a:mount:mount:2.29.2-1+deb9u1:*:*:*:*:*:*:*" + ], + "purl": "pkg:deb/debian/mount@2.29.2-1+deb9u1?arch=amd64\u0026upstream=util-linux\u0026distro=debian-9", + "upstreams": [ + { + "name": "util-linux" + } + ], + "metadata": null + } + }, + { + "vulnerability": { + "id": "CVE-2021-37600", + "dataSource": "https://security-tracker.debian.org/tracker/CVE-2021-37600", + "namespace": "debian:distro:debian:9", + "severity": "Low", + "urls": [ + "https://security-tracker.debian.org/tracker/CVE-2021-37600" + ], + "description": "** DISPUTED ** An integer overflow in util-linux through 2.37.1 can potentially cause a buffer overflow if an attacker were able to use system resources in a way that leads to a large number in the /proc/sysvipc/sem file. NOTE: this is unexploitable in GNU C Library environments, and possibly in all realistic environments.", + "cvss": null, + "fix": { + "versions": [], + "state": "wont-fix" + }, + "advisories": null + }, + "relatedVulnerabilities": [ + { + "id": "CVE-2021-37600", + "dataSource": "https://nvd.nist.gov/vuln/detail/CVE-2021-37600", + "namespace": "nvd:cpe", + "severity": "Medium", + "urls": [ + "https://github.com/karelzak/util-linux/commit/1c9143d0c1f979c3daf10e1c37b5b1e916c22a1c", + "https://github.com/karelzak/util-linux/issues/1395", + "https://security.netapp.com/advisory/ntap-20210902-0002/" + ], + "description": "** DISPUTED ** An integer overflow in util-linux through 2.37.1 can potentially cause a buffer overflow if an attacker were able to use system resources in a way that leads to a large number in the /proc/sysvipc/sem file. NOTE: this is unexploitable in GNU C Library environments, and possibly in all realistic environments.", + "cvss": null + } + ], + "matchDetails": [ + { + "type": "exact-direct-match", + "matcher": "dpkg-matcher", + "searchedBy": { + "distro": { + "type": "debian", + "version": "9" + }, + "namespace": "debian:distro:debian:9", + "package": { + "name": "util-linux", + "version": "2.29.2-1+deb9u1" + } + }, + "found": { + "versionConstraint": "none (deb)", + "vulnerabilityID": "CVE-2021-37600" + } + } + ], + "artifact": { + "name": "util-linux", + "version": "2.29.2-1+deb9u1", + "type": "deb", + "locations": null, + "language": "", + "licenses": [ + "BSD-2-Clause", + "BSD-3-Clause", + "BSD-4-Clause", + "GPL-2.0-only", + "GPL-2.0-or-later", + "GPL-3.0-only", + "GPL-3.0-or-later", + "LicenseRef-LGPL", + "LGPL-2.0-only", + "LGPL-2.0-or-later", + "LGPL-2.1-only", + "LGPL-2.1-or-later", + "LGPL-3.0-only", + "LGPL-3.0-or-later", + "MIT", + "LicenseRef-public-domain" + ], + "cpes": [ + "cpe:2.3:a:util-linux:util-linux:2.29.2-1+deb9u1:*:*:*:*:*:*:*", + "cpe:2.3:a:util-linux:util_linux:2.29.2-1+deb9u1:*:*:*:*:*:*:*", + "cpe:2.3:a:util_linux:util-linux:2.29.2-1+deb9u1:*:*:*:*:*:*:*", + "cpe:2.3:a:util_linux:util_linux:2.29.2-1+deb9u1:*:*:*:*:*:*:*", + "cpe:2.3:a:util:util-linux:2.29.2-1+deb9u1:*:*:*:*:*:*:*", + "cpe:2.3:a:util:util_linux:2.29.2-1+deb9u1:*:*:*:*:*:*:*" + ], + "purl": "pkg:deb/debian/util-linux@2.29.2-1+deb9u1?arch=amd64\u0026distro=debian-9", + "upstreams": null, + "metadata": null + } + }, + { + "vulnerability": { + "id": "CVE-2021-38115", + "dataSource": "https://security-tracker.debian.org/tracker/CVE-2021-38115", + "namespace": "debian:distro:debian:9", + "severity": "Medium", + "urls": [ + "https://security-tracker.debian.org/tracker/CVE-2021-38115" + ], + "description": "read_header_tga in gd_tga.c in the GD Graphics Library (aka LibGD) through 2.3.2 allows remote attackers to cause a denial of service (out-of-bounds read) via a crafted TGA file.", + "cvss": null, + "fix": { + "versions": [], + "state": "wont-fix" + }, + "advisories": null + }, + "relatedVulnerabilities": [ + { + "id": "CVE-2021-38115", + "dataSource": "https://nvd.nist.gov/vuln/detail/CVE-2021-38115", + "namespace": "nvd:cpe", + "severity": "Medium", + "urls": [ + "https://github.com/libgd/libgd/issues/697", + "https://github.com/libgd/libgd/pull/711/commits/8b111b2b4a4842179be66db68d84dda91a246032" + ], + "description": "read_header_tga in gd_tga.c in the GD Graphics Library (aka LibGD) through 2.3.2 allows remote attackers to cause a denial of service (out-of-bounds read) via a crafted TGA file.", + "cvss": null + } + ], + "matchDetails": [ + { + "type": "exact-indirect-match", + "matcher": "dpkg-matcher", + "searchedBy": { + "distro": { + "type": "debian", + "version": "9" + }, + "namespace": "debian:distro:debian:9", + "package": { + "name": "libgd2", + "version": "2.2.4-2+deb9u3" + } + }, + "found": { + "versionConstraint": "none (deb)", + "vulnerabilityID": "CVE-2021-38115" + } + } + ], + "artifact": { + "name": "libgd3", + "version": "2.2.4-2+deb9u3", + "type": "deb", + "locations": null, + "language": "", + "licenses": [ + "BSD-3-Clause", + "LicenseRef-GAP-Makefile.in", + "LicenseRef-GAP-configure", + "GD", + "GPL-2.0-only", + "GPL-2.0-or-later", + "HPND", + "MIT", + "LicenseRef-WEBP", + "LicenseRef-XFIG" + ], + "cpes": [ + "cpe:2.3:a:libgd3:libgd3:2.2.4-2+deb9u3:*:*:*:*:*:*:*" + ], + "purl": "pkg:deb/debian/libgd3@2.2.4-2+deb9u3?arch=amd64\u0026upstream=libgd2\u0026distro=debian-9", + "upstreams": [ + { + "name": "libgd2" + } + ], + "metadata": null + } + }, + { + "vulnerability": { + "id": "CVE-2021-39537", + "dataSource": "https://security-tracker.debian.org/tracker/CVE-2021-39537", + "namespace": "debian:distro:debian:9", + "severity": "Negligible", + "urls": [ + "https://security-tracker.debian.org/tracker/CVE-2021-39537" + ], + "description": "An issue was discovered in ncurses through v6.2-1. _nc_captoinfo in captoinfo.c has a heap-based buffer overflow.", + "cvss": null, + "fix": { + "versions": [], + "state": "not-fixed" + }, + "advisories": null + }, + "relatedVulnerabilities": [ + { + "id": "CVE-2021-39537", + "dataSource": "https://nvd.nist.gov/vuln/detail/CVE-2021-39537", + "namespace": "nvd:cpe", + "severity": "High", + "urls": [ + "http://cvsweb.netbsd.org/bsdweb.cgi/pkgsrc/devel/ncurses/patches/patch-ncurses_tinfo_captoinfo.c?rev=1.1\u0026content-type=text/x-cvsweb-markup", + "http://seclists.org/fulldisclosure/2022/Oct/28", + "http://seclists.org/fulldisclosure/2022/Oct/41", + "http://seclists.org/fulldisclosure/2022/Oct/43", + "http://seclists.org/fulldisclosure/2022/Oct/45", + "https://lists.gnu.org/archive/html/bug-ncurses/2020-08/msg00006.html", + "https://lists.gnu.org/archive/html/bug-ncurses/2021-10/msg00023.html", + "https://support.apple.com/kb/HT213443", + "https://support.apple.com/kb/HT213444", + "https://support.apple.com/kb/HT213488" + ], + "description": "An issue was discovered in ncurses through v6.2-1. _nc_captoinfo in captoinfo.c has a heap-based buffer overflow.", + "cvss": null + } + ], + "matchDetails": [ + { + "type": "exact-indirect-match", + "matcher": "dpkg-matcher", + "searchedBy": { + "distro": { + "type": "debian", + "version": "9" + }, + "namespace": "debian:distro:debian:9", + "package": { + "name": "ncurses", + "version": "6.0+20161126-1+deb9u2" + } + }, + "found": { + "versionConstraint": "none (deb)", + "vulnerabilityID": "CVE-2021-39537" + } + } + ], + "artifact": { + "name": "libncurses5", + "version": "6.0+20161126-1+deb9u2", + "type": "deb", + "locations": null, + "language": "", + "licenses": [], + "cpes": [ + "cpe:2.3:a:libncurses5:libncurses5:6.0+20161126-1+deb9u2:*:*:*:*:*:*:*" + ], + "purl": "pkg:deb/debian/libncurses5@6.0+20161126-1+deb9u2?arch=amd64\u0026upstream=ncurses\u0026distro=debian-9", + "upstreams": [ + { + "name": "ncurses" + } + ], + "metadata": null + } + }, + { + "vulnerability": { + "id": "CVE-2021-39537", + "dataSource": "https://security-tracker.debian.org/tracker/CVE-2021-39537", + "namespace": "debian:distro:debian:9", + "severity": "Negligible", + "urls": [ + "https://security-tracker.debian.org/tracker/CVE-2021-39537" + ], + "description": "An issue was discovered in ncurses through v6.2-1. _nc_captoinfo in captoinfo.c has a heap-based buffer overflow.", + "cvss": null, + "fix": { + "versions": [], + "state": "not-fixed" + }, + "advisories": null + }, + "relatedVulnerabilities": [ + { + "id": "CVE-2021-39537", + "dataSource": "https://nvd.nist.gov/vuln/detail/CVE-2021-39537", + "namespace": "nvd:cpe", + "severity": "High", + "urls": [ + "http://cvsweb.netbsd.org/bsdweb.cgi/pkgsrc/devel/ncurses/patches/patch-ncurses_tinfo_captoinfo.c?rev=1.1\u0026content-type=text/x-cvsweb-markup", + "http://seclists.org/fulldisclosure/2022/Oct/28", + "http://seclists.org/fulldisclosure/2022/Oct/41", + "http://seclists.org/fulldisclosure/2022/Oct/43", + "http://seclists.org/fulldisclosure/2022/Oct/45", + "https://lists.gnu.org/archive/html/bug-ncurses/2020-08/msg00006.html", + "https://lists.gnu.org/archive/html/bug-ncurses/2021-10/msg00023.html", + "https://support.apple.com/kb/HT213443", + "https://support.apple.com/kb/HT213444", + "https://support.apple.com/kb/HT213488" + ], + "description": "An issue was discovered in ncurses through v6.2-1. _nc_captoinfo in captoinfo.c has a heap-based buffer overflow.", + "cvss": null + } + ], + "matchDetails": [ + { + "type": "exact-indirect-match", + "matcher": "dpkg-matcher", + "searchedBy": { + "distro": { + "type": "debian", + "version": "9" + }, + "namespace": "debian:distro:debian:9", + "package": { + "name": "ncurses", + "version": "6.0+20161126-1+deb9u2" + } + }, + "found": { + "versionConstraint": "none (deb)", + "vulnerabilityID": "CVE-2021-39537" + } + } + ], + "artifact": { + "name": "libncursesw5", + "version": "6.0+20161126-1+deb9u2", + "type": "deb", + "locations": null, + "language": "", + "licenses": [], + "cpes": [ + "cpe:2.3:a:libncursesw5:libncursesw5:6.0+20161126-1+deb9u2:*:*:*:*:*:*:*" + ], + "purl": "pkg:deb/debian/libncursesw5@6.0+20161126-1+deb9u2?arch=amd64\u0026upstream=ncurses\u0026distro=debian-9", + "upstreams": [ + { + "name": "ncurses" + } + ], + "metadata": null + } + }, + { + "vulnerability": { + "id": "CVE-2021-39537", + "dataSource": "https://security-tracker.debian.org/tracker/CVE-2021-39537", + "namespace": "debian:distro:debian:9", + "severity": "Negligible", + "urls": [ + "https://security-tracker.debian.org/tracker/CVE-2021-39537" + ], + "description": "An issue was discovered in ncurses through v6.2-1. _nc_captoinfo in captoinfo.c has a heap-based buffer overflow.", + "cvss": null, + "fix": { + "versions": [], + "state": "not-fixed" + }, + "advisories": null + }, + "relatedVulnerabilities": [ + { + "id": "CVE-2021-39537", + "dataSource": "https://nvd.nist.gov/vuln/detail/CVE-2021-39537", + "namespace": "nvd:cpe", + "severity": "High", + "urls": [ + "http://cvsweb.netbsd.org/bsdweb.cgi/pkgsrc/devel/ncurses/patches/patch-ncurses_tinfo_captoinfo.c?rev=1.1\u0026content-type=text/x-cvsweb-markup", + "http://seclists.org/fulldisclosure/2022/Oct/28", + "http://seclists.org/fulldisclosure/2022/Oct/41", + "http://seclists.org/fulldisclosure/2022/Oct/43", + "http://seclists.org/fulldisclosure/2022/Oct/45", + "https://lists.gnu.org/archive/html/bug-ncurses/2020-08/msg00006.html", + "https://lists.gnu.org/archive/html/bug-ncurses/2021-10/msg00023.html", + "https://support.apple.com/kb/HT213443", + "https://support.apple.com/kb/HT213444", + "https://support.apple.com/kb/HT213488" + ], + "description": "An issue was discovered in ncurses through v6.2-1. _nc_captoinfo in captoinfo.c has a heap-based buffer overflow.", + "cvss": null + } + ], + "matchDetails": [ + { + "type": "exact-indirect-match", + "matcher": "dpkg-matcher", + "searchedBy": { + "distro": { + "type": "debian", + "version": "9" + }, + "namespace": "debian:distro:debian:9", + "package": { + "name": "ncurses", + "version": "6.0+20161126-1+deb9u2" + } + }, + "found": { + "versionConstraint": "none (deb)", + "vulnerabilityID": "CVE-2021-39537" + } + } + ], + "artifact": { + "name": "libtinfo5", + "version": "6.0+20161126-1+deb9u2", + "type": "deb", + "locations": null, + "language": "", + "licenses": [], + "cpes": [ + "cpe:2.3:a:libtinfo5:libtinfo5:6.0+20161126-1+deb9u2:*:*:*:*:*:*:*" + ], + "purl": "pkg:deb/debian/libtinfo5@6.0+20161126-1+deb9u2?arch=amd64\u0026upstream=ncurses\u0026distro=debian-9", + "upstreams": [ + { + "name": "ncurses" + } + ], + "metadata": null + } + }, + { + "vulnerability": { + "id": "CVE-2021-39537", + "dataSource": "https://security-tracker.debian.org/tracker/CVE-2021-39537", + "namespace": "debian:distro:debian:9", + "severity": "Negligible", + "urls": [ + "https://security-tracker.debian.org/tracker/CVE-2021-39537" + ], + "description": "An issue was discovered in ncurses through v6.2-1. _nc_captoinfo in captoinfo.c has a heap-based buffer overflow.", + "cvss": null, + "fix": { + "versions": [], + "state": "not-fixed" + }, + "advisories": null + }, + "relatedVulnerabilities": [ + { + "id": "CVE-2021-39537", + "dataSource": "https://nvd.nist.gov/vuln/detail/CVE-2021-39537", + "namespace": "nvd:cpe", + "severity": "High", + "urls": [ + "http://cvsweb.netbsd.org/bsdweb.cgi/pkgsrc/devel/ncurses/patches/patch-ncurses_tinfo_captoinfo.c?rev=1.1\u0026content-type=text/x-cvsweb-markup", + "http://seclists.org/fulldisclosure/2022/Oct/28", + "http://seclists.org/fulldisclosure/2022/Oct/41", + "http://seclists.org/fulldisclosure/2022/Oct/43", + "http://seclists.org/fulldisclosure/2022/Oct/45", + "https://lists.gnu.org/archive/html/bug-ncurses/2020-08/msg00006.html", + "https://lists.gnu.org/archive/html/bug-ncurses/2021-10/msg00023.html", + "https://support.apple.com/kb/HT213443", + "https://support.apple.com/kb/HT213444", + "https://support.apple.com/kb/HT213488" + ], + "description": "An issue was discovered in ncurses through v6.2-1. _nc_captoinfo in captoinfo.c has a heap-based buffer overflow.", + "cvss": null + } + ], + "matchDetails": [ + { + "type": "exact-indirect-match", + "matcher": "dpkg-matcher", + "searchedBy": { + "distro": { + "type": "debian", + "version": "9" + }, + "namespace": "debian:distro:debian:9", + "package": { + "name": "ncurses", + "version": "6.0+20161126-1+deb9u2" + } + }, + "found": { + "versionConstraint": "none (deb)", + "vulnerabilityID": "CVE-2021-39537" + } + } + ], + "artifact": { + "name": "ncurses-base", + "version": "6.0+20161126-1+deb9u2", + "type": "deb", + "locations": null, + "language": "", + "licenses": [], + "cpes": [ + "cpe:2.3:a:ncurses-base:ncurses-base:6.0+20161126-1+deb9u2:*:*:*:*:*:*:*", + "cpe:2.3:a:ncurses-base:ncurses_base:6.0+20161126-1+deb9u2:*:*:*:*:*:*:*", + "cpe:2.3:a:ncurses_base:ncurses-base:6.0+20161126-1+deb9u2:*:*:*:*:*:*:*", + "cpe:2.3:a:ncurses_base:ncurses_base:6.0+20161126-1+deb9u2:*:*:*:*:*:*:*", + "cpe:2.3:a:ncurses:ncurses-base:6.0+20161126-1+deb9u2:*:*:*:*:*:*:*", + "cpe:2.3:a:ncurses:ncurses_base:6.0+20161126-1+deb9u2:*:*:*:*:*:*:*" + ], + "purl": "pkg:deb/debian/ncurses-base@6.0+20161126-1+deb9u2?arch=all\u0026upstream=ncurses\u0026distro=debian-9", + "upstreams": [ + { + "name": "ncurses" + } + ], + "metadata": null + } + }, + { + "vulnerability": { + "id": "CVE-2021-39537", + "dataSource": "https://security-tracker.debian.org/tracker/CVE-2021-39537", + "namespace": "debian:distro:debian:9", + "severity": "Negligible", + "urls": [ + "https://security-tracker.debian.org/tracker/CVE-2021-39537" + ], + "description": "An issue was discovered in ncurses through v6.2-1. _nc_captoinfo in captoinfo.c has a heap-based buffer overflow.", + "cvss": null, + "fix": { + "versions": [], + "state": "not-fixed" + }, + "advisories": null + }, + "relatedVulnerabilities": [ + { + "id": "CVE-2021-39537", + "dataSource": "https://nvd.nist.gov/vuln/detail/CVE-2021-39537", + "namespace": "nvd:cpe", + "severity": "High", + "urls": [ + "http://cvsweb.netbsd.org/bsdweb.cgi/pkgsrc/devel/ncurses/patches/patch-ncurses_tinfo_captoinfo.c?rev=1.1\u0026content-type=text/x-cvsweb-markup", + "http://seclists.org/fulldisclosure/2022/Oct/28", + "http://seclists.org/fulldisclosure/2022/Oct/41", + "http://seclists.org/fulldisclosure/2022/Oct/43", + "http://seclists.org/fulldisclosure/2022/Oct/45", + "https://lists.gnu.org/archive/html/bug-ncurses/2020-08/msg00006.html", + "https://lists.gnu.org/archive/html/bug-ncurses/2021-10/msg00023.html", + "https://support.apple.com/kb/HT213443", + "https://support.apple.com/kb/HT213444", + "https://support.apple.com/kb/HT213488" + ], + "description": "An issue was discovered in ncurses through v6.2-1. _nc_captoinfo in captoinfo.c has a heap-based buffer overflow.", + "cvss": null + } + ], + "matchDetails": [ + { + "type": "exact-indirect-match", + "matcher": "dpkg-matcher", + "searchedBy": { + "distro": { + "type": "debian", + "version": "9" + }, + "namespace": "debian:distro:debian:9", + "package": { + "name": "ncurses", + "version": "6.0+20161126-1+deb9u2" + } + }, + "found": { + "versionConstraint": "none (deb)", + "vulnerabilityID": "CVE-2021-39537" + } + } + ], + "artifact": { + "name": "ncurses-bin", + "version": "6.0+20161126-1+deb9u2", + "type": "deb", + "locations": null, + "language": "", + "licenses": [], + "cpes": [ + "cpe:2.3:a:ncurses-bin:ncurses-bin:6.0+20161126-1+deb9u2:*:*:*:*:*:*:*", + "cpe:2.3:a:ncurses-bin:ncurses_bin:6.0+20161126-1+deb9u2:*:*:*:*:*:*:*", + "cpe:2.3:a:ncurses_bin:ncurses-bin:6.0+20161126-1+deb9u2:*:*:*:*:*:*:*", + "cpe:2.3:a:ncurses_bin:ncurses_bin:6.0+20161126-1+deb9u2:*:*:*:*:*:*:*", + "cpe:2.3:a:ncurses:ncurses-bin:6.0+20161126-1+deb9u2:*:*:*:*:*:*:*", + "cpe:2.3:a:ncurses:ncurses_bin:6.0+20161126-1+deb9u2:*:*:*:*:*:*:*" + ], + "purl": "pkg:deb/debian/ncurses-bin@6.0+20161126-1+deb9u2?arch=amd64\u0026upstream=ncurses\u0026distro=debian-9", + "upstreams": [ + { + "name": "ncurses" + } + ], + "metadata": null + } + }, + { + "vulnerability": { + "id": "CVE-2021-3997", + "dataSource": "https://security-tracker.debian.org/tracker/CVE-2021-3997", + "namespace": "debian:distro:debian:9", + "severity": "Medium", + "urls": [ + "https://security-tracker.debian.org/tracker/CVE-2021-3997" + ], + "cvss": null, + "fix": { + "versions": [], + "state": "wont-fix" + }, + "advisories": null + }, + "relatedVulnerabilities": [ + { + "id": "CVE-2021-3997", + "dataSource": "https://nvd.nist.gov/vuln/detail/CVE-2021-3997", + "namespace": "nvd:cpe", + "severity": "Medium", + "urls": [ + "https://access.redhat.com/security/cve/CVE-2021-3997", + "https://bugzilla.redhat.com/show_bug.cgi?id=2024639", + "https://github.com/systemd/systemd/commit/5b1cf7a9be37e20133c0208005274ce4a5b5c6a1", + "https://www.openwall.com/lists/oss-security/2022/01/10/2" + ], + "description": "A flaw was found in systemd. An uncontrolled recursion in systemd-tmpfiles may lead to a denial of service at boot time when too many nested directories are created in /tmp.", + "cvss": null + } + ], + "matchDetails": [ + { + "type": "exact-indirect-match", + "matcher": "dpkg-matcher", + "searchedBy": { + "distro": { + "type": "debian", + "version": "9" + }, + "namespace": "debian:distro:debian:9", + "package": { + "name": "systemd", + "version": "232-25+deb9u6" + } + }, + "found": { + "versionConstraint": "none (deb)", + "vulnerabilityID": "CVE-2021-3997" + } + } + ], + "artifact": { + "name": "libsystemd0", + "version": "232-25+deb9u6", + "type": "deb", + "locations": null, + "language": "", + "licenses": [ + "LicenseRef-CC0", + "LicenseRef-Expat", + "GPL-2.0-only", + "GPL-2.0-or-later", + "LGPL-2.1-only", + "LGPL-2.1-or-later", + "LicenseRef-public-domain" + ], + "cpes": [ + "cpe:2.3:a:libsystemd0:libsystemd0:232-25+deb9u6:*:*:*:*:*:*:*" + ], + "purl": "pkg:deb/debian/libsystemd0@232-25+deb9u6?arch=amd64\u0026upstream=systemd\u0026distro=debian-9", + "upstreams": [ + { + "name": "systemd" + } + ], + "metadata": null + } + }, + { + "vulnerability": { + "id": "CVE-2021-3997", + "dataSource": "https://security-tracker.debian.org/tracker/CVE-2021-3997", + "namespace": "debian:distro:debian:9", + "severity": "Medium", + "urls": [ + "https://security-tracker.debian.org/tracker/CVE-2021-3997" + ], + "cvss": null, + "fix": { + "versions": [], + "state": "wont-fix" + }, + "advisories": null + }, + "relatedVulnerabilities": [ + { + "id": "CVE-2021-3997", + "dataSource": "https://nvd.nist.gov/vuln/detail/CVE-2021-3997", + "namespace": "nvd:cpe", + "severity": "Medium", + "urls": [ + "https://access.redhat.com/security/cve/CVE-2021-3997", + "https://bugzilla.redhat.com/show_bug.cgi?id=2024639", + "https://github.com/systemd/systemd/commit/5b1cf7a9be37e20133c0208005274ce4a5b5c6a1", + "https://www.openwall.com/lists/oss-security/2022/01/10/2" + ], + "description": "A flaw was found in systemd. An uncontrolled recursion in systemd-tmpfiles may lead to a denial of service at boot time when too many nested directories are created in /tmp.", + "cvss": null + } + ], + "matchDetails": [ + { + "type": "exact-indirect-match", + "matcher": "dpkg-matcher", + "searchedBy": { + "distro": { + "type": "debian", + "version": "9" + }, + "namespace": "debian:distro:debian:9", + "package": { + "name": "systemd", + "version": "232-25+deb9u6" + } + }, + "found": { + "versionConstraint": "none (deb)", + "vulnerabilityID": "CVE-2021-3997" + } + } + ], + "artifact": { + "name": "libudev1", + "version": "232-25+deb9u6", + "type": "deb", + "locations": null, + "language": "", + "licenses": [ + "LicenseRef-CC0", + "LicenseRef-Expat", + "GPL-2.0-only", + "GPL-2.0-or-later", + "LGPL-2.1-only", + "LGPL-2.1-or-later", + "LicenseRef-public-domain" + ], + "cpes": [ + "cpe:2.3:a:libudev1:libudev1:232-25+deb9u6:*:*:*:*:*:*:*" + ], + "purl": "pkg:deb/debian/libudev1@232-25+deb9u6?arch=amd64\u0026upstream=systemd\u0026distro=debian-9", + "upstreams": [ + { + "name": "systemd" + } + ], + "metadata": null + } + }, + { + "vulnerability": { + "id": "CVE-2021-3999", + "dataSource": "https://security-tracker.debian.org/tracker/CVE-2021-3999", + "namespace": "debian:distro:debian:9", + "severity": "High", + "urls": [ + "https://security-tracker.debian.org/tracker/CVE-2021-3999" + ], + "cvss": null, + "fix": { + "versions": [], + "state": "wont-fix" + }, + "advisories": null + }, + "relatedVulnerabilities": [ + { + "id": "CVE-2021-3999", + "dataSource": "https://nvd.nist.gov/vuln/detail/CVE-2021-3999", + "namespace": "nvd:cpe", + "severity": "High", + "urls": [ + "https://access.redhat.com/security/cve/CVE-2021-3999", + "https://bugzilla.redhat.com/show_bug.cgi?id=2024637", + "https://lists.debian.org/debian-lts-announce/2022/10/msg00021.html", + "https://security-tracker.debian.org/tracker/CVE-2021-3999", + "https://security.netapp.com/advisory/ntap-20221104-0001/", + "https://sourceware.org/bugzilla/show_bug.cgi?id=28769", + "https://sourceware.org/git/gitweb.cgi?p=glibc.git%3Bh=23e0e8f5f1fb5ed150253d986ecccdc90c2dcd5e", + "https://www.openwall.com/lists/oss-security/2022/01/24/4" + ], + "description": "A flaw was found in glibc. An off-by-one buffer overflow and underflow in getcwd() may lead to memory corruption when the size of the buffer is exactly 1. A local attacker who can control the input buffer and size passed to getcwd() in a setuid program could use this flaw to potentially execute arbitrary code and escalate their privileges on the system.", + "cvss": null + } + ], + "matchDetails": [ + { + "type": "exact-indirect-match", + "matcher": "dpkg-matcher", + "searchedBy": { + "distro": { + "type": "debian", + "version": "9" + }, + "namespace": "debian:distro:debian:9", + "package": { + "name": "glibc", + "version": "2.24-11+deb9u3" + } + }, + "found": { + "versionConstraint": "none (deb)", + "vulnerabilityID": "CVE-2021-3999" + } + } + ], + "artifact": { + "name": "libc-bin", + "version": "2.24-11+deb9u3", + "type": "deb", + "locations": null, + "language": "", + "licenses": [ + "GPL-2.0-only", + "LGPL-2.1-only" + ], + "cpes": [ + "cpe:2.3:a:libc-bin:libc-bin:2.24-11+deb9u3:*:*:*:*:*:*:*", + "cpe:2.3:a:libc-bin:libc_bin:2.24-11+deb9u3:*:*:*:*:*:*:*", + "cpe:2.3:a:libc_bin:libc-bin:2.24-11+deb9u3:*:*:*:*:*:*:*", + "cpe:2.3:a:libc_bin:libc_bin:2.24-11+deb9u3:*:*:*:*:*:*:*", + "cpe:2.3:a:libc:libc-bin:2.24-11+deb9u3:*:*:*:*:*:*:*", + "cpe:2.3:a:libc:libc_bin:2.24-11+deb9u3:*:*:*:*:*:*:*" + ], + "purl": "pkg:deb/debian/libc-bin@2.24-11+deb9u3?arch=amd64\u0026upstream=glibc\u0026distro=debian-9", + "upstreams": [ + { + "name": "glibc" + } + ], + "metadata": null + } + }, + { + "vulnerability": { + "id": "CVE-2021-3999", + "dataSource": "https://security-tracker.debian.org/tracker/CVE-2021-3999", + "namespace": "debian:distro:debian:9", + "severity": "High", + "urls": [ + "https://security-tracker.debian.org/tracker/CVE-2021-3999" + ], + "cvss": null, + "fix": { + "versions": [], + "state": "wont-fix" + }, + "advisories": null + }, + "relatedVulnerabilities": [ + { + "id": "CVE-2021-3999", + "dataSource": "https://nvd.nist.gov/vuln/detail/CVE-2021-3999", + "namespace": "nvd:cpe", + "severity": "High", + "urls": [ + "https://access.redhat.com/security/cve/CVE-2021-3999", + "https://bugzilla.redhat.com/show_bug.cgi?id=2024637", + "https://lists.debian.org/debian-lts-announce/2022/10/msg00021.html", + "https://security-tracker.debian.org/tracker/CVE-2021-3999", + "https://security.netapp.com/advisory/ntap-20221104-0001/", + "https://sourceware.org/bugzilla/show_bug.cgi?id=28769", + "https://sourceware.org/git/gitweb.cgi?p=glibc.git%3Bh=23e0e8f5f1fb5ed150253d986ecccdc90c2dcd5e", + "https://www.openwall.com/lists/oss-security/2022/01/24/4" + ], + "description": "A flaw was found in glibc. An off-by-one buffer overflow and underflow in getcwd() may lead to memory corruption when the size of the buffer is exactly 1. A local attacker who can control the input buffer and size passed to getcwd() in a setuid program could use this flaw to potentially execute arbitrary code and escalate their privileges on the system.", + "cvss": null + } + ], + "matchDetails": [ + { + "type": "exact-indirect-match", + "matcher": "dpkg-matcher", + "searchedBy": { + "distro": { + "type": "debian", + "version": "9" + }, + "namespace": "debian:distro:debian:9", + "package": { + "name": "glibc", + "version": "2.24-11+deb9u3" + } + }, + "found": { + "versionConstraint": "none (deb)", + "vulnerabilityID": "CVE-2021-3999" + } + } + ], + "artifact": { + "name": "libc6", + "version": "2.24-11+deb9u3", + "type": "deb", + "locations": null, + "language": "", + "licenses": [ + "GPL-2.0-only", + "LGPL-2.1-only" + ], + "cpes": [ + "cpe:2.3:a:libc6:libc6:2.24-11+deb9u3:*:*:*:*:*:*:*" + ], + "purl": "pkg:deb/debian/libc6@2.24-11+deb9u3?arch=amd64\u0026upstream=glibc\u0026distro=debian-9", + "upstreams": [ + { + "name": "glibc" + } + ], + "metadata": null + } + }, + { + "vulnerability": { + "id": "CVE-2021-3999", + "dataSource": "https://security-tracker.debian.org/tracker/CVE-2021-3999", + "namespace": "debian:distro:debian:9", + "severity": "High", + "urls": [ + "https://security-tracker.debian.org/tracker/CVE-2021-3999" + ], + "cvss": null, + "fix": { + "versions": [], + "state": "wont-fix" + }, + "advisories": null + }, + "relatedVulnerabilities": [ + { + "id": "CVE-2021-3999", + "dataSource": "https://nvd.nist.gov/vuln/detail/CVE-2021-3999", + "namespace": "nvd:cpe", + "severity": "High", + "urls": [ + "https://access.redhat.com/security/cve/CVE-2021-3999", + "https://bugzilla.redhat.com/show_bug.cgi?id=2024637", + "https://lists.debian.org/debian-lts-announce/2022/10/msg00021.html", + "https://security-tracker.debian.org/tracker/CVE-2021-3999", + "https://security.netapp.com/advisory/ntap-20221104-0001/", + "https://sourceware.org/bugzilla/show_bug.cgi?id=28769", + "https://sourceware.org/git/gitweb.cgi?p=glibc.git%3Bh=23e0e8f5f1fb5ed150253d986ecccdc90c2dcd5e", + "https://www.openwall.com/lists/oss-security/2022/01/24/4" + ], + "description": "A flaw was found in glibc. An off-by-one buffer overflow and underflow in getcwd() may lead to memory corruption when the size of the buffer is exactly 1. A local attacker who can control the input buffer and size passed to getcwd() in a setuid program could use this flaw to potentially execute arbitrary code and escalate their privileges on the system.", + "cvss": null + } + ], + "matchDetails": [ + { + "type": "exact-indirect-match", + "matcher": "dpkg-matcher", + "searchedBy": { + "distro": { + "type": "debian", + "version": "9" + }, + "namespace": "debian:distro:debian:9", + "package": { + "name": "glibc", + "version": "2.24-11+deb9u3" + } + }, + "found": { + "versionConstraint": "none (deb)", + "vulnerabilityID": "CVE-2021-3999" + } + } + ], + "artifact": { + "name": "multiarch-support", + "version": "2.24-11+deb9u3", + "type": "deb", + "locations": null, + "language": "", + "licenses": [ + "GPL-2.0-only", + "LGPL-2.1-only" + ], + "cpes": [ + "cpe:2.3:a:multiarch-support:multiarch-support:2.24-11+deb9u3:*:*:*:*:*:*:*", + "cpe:2.3:a:multiarch-support:multiarch_support:2.24-11+deb9u3:*:*:*:*:*:*:*", + "cpe:2.3:a:multiarch_support:multiarch-support:2.24-11+deb9u3:*:*:*:*:*:*:*", + "cpe:2.3:a:multiarch_support:multiarch_support:2.24-11+deb9u3:*:*:*:*:*:*:*", + "cpe:2.3:a:multiarch:multiarch-support:2.24-11+deb9u3:*:*:*:*:*:*:*", + "cpe:2.3:a:multiarch:multiarch_support:2.24-11+deb9u3:*:*:*:*:*:*:*" + ], + "purl": "pkg:deb/debian/multiarch-support@2.24-11+deb9u3?arch=amd64\u0026upstream=glibc\u0026distro=debian-9", + "upstreams": [ + { + "name": "glibc" + } + ], + "metadata": null + } + }, + { + "vulnerability": { + "id": "CVE-2021-40145", + "dataSource": "https://security-tracker.debian.org/tracker/CVE-2021-40145", + "namespace": "debian:distro:debian:9", + "severity": "High", + "urls": [ + "https://security-tracker.debian.org/tracker/CVE-2021-40145" + ], + "description": "** DISPUTED ** gdImageGd2Ptr in gd_gd2.c in the GD Graphics Library (aka LibGD) through 2.3.2 has a double free. NOTE: the vendor's position is \"The GD2 image format is a proprietary image format of libgd. It has to be regarded as being obsolete, and should only be used for development and testing purposes.\"", + "cvss": null, + "fix": { + "versions": [], + "state": "wont-fix" + }, + "advisories": null + }, + "relatedVulnerabilities": [ + { + "id": "CVE-2021-40145", + "dataSource": "https://nvd.nist.gov/vuln/detail/CVE-2021-40145", + "namespace": "nvd:cpe", + "severity": "High", + "urls": [ + "https://github.com/libgd/libgd/commit/c5fd25ce0e48fd5618a972ca9f5e28d6d62006af", + "https://github.com/libgd/libgd/issues/700", + "https://github.com/libgd/libgd/pull/713" + ], + "description": "** DISPUTED ** gdImageGd2Ptr in gd_gd2.c in the GD Graphics Library (aka LibGD) through 2.3.2 has a double free. NOTE: the vendor's position is \"The GD2 image format is a proprietary image format of libgd. It has to be regarded as being obsolete, and should only be used for development and testing purposes.\"", + "cvss": null + } + ], + "matchDetails": [ + { + "type": "exact-indirect-match", + "matcher": "dpkg-matcher", + "searchedBy": { + "distro": { + "type": "debian", + "version": "9" + }, + "namespace": "debian:distro:debian:9", + "package": { + "name": "libgd2", + "version": "2.2.4-2+deb9u3" + } + }, + "found": { + "versionConstraint": "none (deb)", + "vulnerabilityID": "CVE-2021-40145" + } + } + ], + "artifact": { + "name": "libgd3", + "version": "2.2.4-2+deb9u3", + "type": "deb", + "locations": null, + "language": "", + "licenses": [ + "BSD-3-Clause", + "LicenseRef-GAP-Makefile.in", + "LicenseRef-GAP-configure", + "GD", + "GPL-2.0-only", + "GPL-2.0-or-later", + "HPND", + "MIT", + "LicenseRef-WEBP", + "LicenseRef-XFIG" + ], + "cpes": [ + "cpe:2.3:a:libgd3:libgd3:2.2.4-2+deb9u3:*:*:*:*:*:*:*" + ], + "purl": "pkg:deb/debian/libgd3@2.2.4-2+deb9u3?arch=amd64\u0026upstream=libgd2\u0026distro=debian-9", + "upstreams": [ + { + "name": "libgd2" + } + ], + "metadata": null + } + }, + { + "vulnerability": { + "id": "CVE-2021-40528", + "dataSource": "https://security-tracker.debian.org/tracker/CVE-2021-40528", + "namespace": "debian:distro:debian:9", + "severity": "Medium", + "urls": [ + "https://security-tracker.debian.org/tracker/CVE-2021-40528" + ], + "description": "The ElGamal implementation in Libgcrypt before 1.9.4 allows plaintext recovery because, during interaction between two cryptographic libraries, a certain dangerous combination of the prime defined by the receiver's public key, the generator defined by the receiver's public key, and the sender's ephemeral exponents can lead to a cross-configuration attack against OpenPGP.", + "cvss": null, + "fix": { + "versions": [ + "1.7.6-2+deb9u4" + ], + "state": "fixed" + }, + "advisories": null + }, + "relatedVulnerabilities": [ + { + "id": "CVE-2021-40528", + "dataSource": "https://nvd.nist.gov/vuln/detail/CVE-2021-40528", + "namespace": "nvd:cpe", + "severity": "Medium", + "urls": [ + "https://eprint.iacr.org/2021/923", + "https://git.gnupg.org/cgi-bin/gitweb.cgi?p=libgcrypt.git;a=commit;h=3462280f2e23e16adf3ed5176e0f2413d8861320", + "https://ibm.github.io/system-security-research-updates/2021/07/20/insecurity-elgamal-pt1", + "https://ibm.github.io/system-security-research-updates/2021/09/06/insecurity-elgamal-pt2", + "https://security.gentoo.org/glsa/202210-13" + ], + "description": "The ElGamal implementation in Libgcrypt before 1.9.4 allows plaintext recovery because, during interaction between two cryptographic libraries, a certain dangerous combination of the prime defined by the receiver's public key, the generator defined by the receiver's public key, and the sender's ephemeral exponents can lead to a cross-configuration attack against OpenPGP.", + "cvss": null + } + ], + "matchDetails": [ + { + "type": "exact-direct-match", + "matcher": "dpkg-matcher", + "searchedBy": { + "distro": { + "type": "debian", + "version": "9" + }, + "namespace": "debian:distro:debian:9", + "package": { + "name": "libgcrypt20", + "version": "1.7.6-2+deb9u3" + } + }, + "found": { + "versionConstraint": "\u003c 1.7.6-2+deb9u4 (deb)", + "vulnerabilityID": "CVE-2021-40528" + } + } + ], + "artifact": { + "name": "libgcrypt20", + "version": "1.7.6-2+deb9u3", + "type": "deb", + "locations": null, + "language": "", + "licenses": [ + "GPL-2.0-only", + "LicenseRef-LGPL" + ], + "cpes": [ + "cpe:2.3:a:libgcrypt20:libgcrypt20:1.7.6-2+deb9u3:*:*:*:*:*:*:*" + ], + "purl": "pkg:deb/debian/libgcrypt20@1.7.6-2+deb9u3?arch=amd64\u0026distro=debian-9", + "upstreams": null, + "metadata": null + } + }, + { + "vulnerability": { + "id": "CVE-2021-40812", + "dataSource": "https://security-tracker.debian.org/tracker/CVE-2021-40812", + "namespace": "debian:distro:debian:9", + "severity": "Medium", + "urls": [ + "https://security-tracker.debian.org/tracker/CVE-2021-40812" + ], + "description": "The GD Graphics Library (aka LibGD) through 2.3.2 has an out-of-bounds read because of the lack of certain gdGetBuf and gdPutBuf return value checks.", + "cvss": null, + "fix": { + "versions": [], + "state": "wont-fix" + }, + "advisories": null + }, + "relatedVulnerabilities": [ + { + "id": "CVE-2021-40812", + "dataSource": "https://nvd.nist.gov/vuln/detail/CVE-2021-40812", + "namespace": "nvd:cpe", + "severity": "Medium", + "urls": [ + "https://github.com/libgd/libgd/commit/6f5136821be86e7068fcdf651ae9420b5d42e9a9", + "https://github.com/libgd/libgd/issues/750#issuecomment-914872385" + ], + "description": "The GD Graphics Library (aka LibGD) through 2.3.2 has an out-of-bounds read because of the lack of certain gdGetBuf and gdPutBuf return value checks.", + "cvss": null + } + ], + "matchDetails": [ + { + "type": "exact-indirect-match", + "matcher": "dpkg-matcher", + "searchedBy": { + "distro": { + "type": "debian", + "version": "9" + }, + "namespace": "debian:distro:debian:9", + "package": { + "name": "libgd2", + "version": "2.2.4-2+deb9u3" + } + }, + "found": { + "versionConstraint": "none (deb)", + "vulnerabilityID": "CVE-2021-40812" + } + } + ], + "artifact": { + "name": "libgd3", + "version": "2.2.4-2+deb9u3", + "type": "deb", + "locations": null, + "language": "", + "licenses": [ + "BSD-3-Clause", + "LicenseRef-GAP-Makefile.in", + "LicenseRef-GAP-configure", + "GD", + "GPL-2.0-only", + "GPL-2.0-or-later", + "HPND", + "MIT", + "LicenseRef-WEBP", + "LicenseRef-XFIG" + ], + "cpes": [ + "cpe:2.3:a:libgd3:libgd3:2.2.4-2+deb9u3:*:*:*:*:*:*:*" + ], + "purl": "pkg:deb/debian/libgd3@2.2.4-2+deb9u3?arch=amd64\u0026upstream=libgd2\u0026distro=debian-9", + "upstreams": [ + { + "name": "libgd2" + } + ], + "metadata": null + } + }, + { + "vulnerability": { + "id": "CVE-2021-4160", + "dataSource": "https://security-tracker.debian.org/tracker/CVE-2021-4160", + "namespace": "debian:distro:debian:9", + "severity": "Medium", + "urls": [ + "https://security-tracker.debian.org/tracker/CVE-2021-4160" + ], + "description": "There is a carry propagation bug in the MIPS32 and MIPS64 squaring procedure. Many EC algorithms are affected, including some of the TLS 1.3 default curves. Impact was not analyzed in detail, because the pre-requisites for attack are considered unlikely and include reusing private keys. Analysis suggests that attacks against RSA and DSA as a result of this defect would be very difficult to perform and are not believed likely. Attacks against DH are considered just feasible (although very difficult) because most of the work necessary to deduce information about a private key may be performed offline. The amount of resources required for such an attack would be significant. However, for an attack on TLS to be meaningful, the server would have to share the DH private key among multiple clients, which is no longer an option since CVE-2016-0701. This issue affects OpenSSL versions 1.0.2, 1.1.1 and 3.0.0. It was addressed in the releases of 1.1.1m and 3.0.1 on the 15th of December 2021. For the 1.0.2 release it is addressed in git commit 6fc1aaaf3 that is available to premium support customers only. It will be made available in 1.0.2zc when it is released. The issue only affects OpenSSL on MIPS platforms. Fixed in OpenSSL 3.0.1 (Affected 3.0.0). Fixed in OpenSSL 1.1.1m (Affected 1.1.1-1.1.1l). Fixed in OpenSSL 1.0.2zc-dev (Affected 1.0.2-1.0.2zb).", + "cvss": null, + "fix": { + "versions": [], + "state": "wont-fix" + }, + "advisories": null + }, + "relatedVulnerabilities": [ + { + "id": "CVE-2021-4160", + "dataSource": "https://nvd.nist.gov/vuln/detail/CVE-2021-4160", + "namespace": "nvd:cpe", + "severity": "Medium", + "urls": [ + "https://cert-portal.siemens.com/productcert/pdf/ssa-637483.pdf", + "https://git.openssl.org/gitweb/?p=openssl.git;a=commitdiff;h=3bf7b73ea7123045b8f972badc67ed6878e6c37f", + "https://git.openssl.org/gitweb/?p=openssl.git;a=commitdiff;h=6fc1aaaf303185aa5e483e06bdfae16daa9193a7", + "https://git.openssl.org/gitweb/?p=openssl.git;a=commitdiff;h=e9e726506cd2a3fd9c0f12daf8cc1fe934c7dddb", + "https://security.gentoo.org/glsa/202210-02", + "https://www.debian.org/security/2022/dsa-5103", + "https://www.openssl.org/news/secadv/20220128.txt", + "https://www.oracle.com/security-alerts/cpuapr2022.html", + "https://www.oracle.com/security-alerts/cpujul2022.html" + ], + "description": "There is a carry propagation bug in the MIPS32 and MIPS64 squaring procedure. Many EC algorithms are affected, including some of the TLS 1.3 default curves. Impact was not analyzed in detail, because the pre-requisites for attack are considered unlikely and include reusing private keys. Analysis suggests that attacks against RSA and DSA as a result of this defect would be very difficult to perform and are not believed likely. Attacks against DH are considered just feasible (although very difficult) because most of the work necessary to deduce information about a private key may be performed offline. The amount of resources required for such an attack would be significant. However, for an attack on TLS to be meaningful, the server would have to share the DH private key among multiple clients, which is no longer an option since CVE-2016-0701. This issue affects OpenSSL versions 1.0.2, 1.1.1 and 3.0.0. It was addressed in the releases of 1.1.1m and 3.0.1 on the 15th of December 2021. For the 1.0.2 release it is addressed in git commit 6fc1aaaf3 that is available to premium support customers only. It will be made available in 1.0.2zc when it is released. The issue only affects OpenSSL on MIPS platforms. Fixed in OpenSSL 3.0.1 (Affected 3.0.0). Fixed in OpenSSL 1.1.1m (Affected 1.1.1-1.1.1l). Fixed in OpenSSL 1.0.2zc-dev (Affected 1.0.2-1.0.2zb).", + "cvss": null + } + ], + "matchDetails": [ + { + "type": "exact-indirect-match", + "matcher": "dpkg-matcher", + "searchedBy": { + "distro": { + "type": "debian", + "version": "9" + }, + "namespace": "debian:distro:debian:9", + "package": { + "name": "openssl", + "version": "1.1.0f-3+deb9u2" + } + }, + "found": { + "versionConstraint": "none (deb)", + "vulnerabilityID": "CVE-2021-4160" + } + } + ], + "artifact": { + "name": "libssl1.1", + "version": "1.1.0f-3+deb9u2", + "type": "deb", + "locations": null, + "language": "", + "licenses": [], + "cpes": [ + "cpe:2.3:a:libssl1.1:libssl1.1:1.1.0f-3+deb9u2:*:*:*:*:*:*:*" + ], + "purl": "pkg:deb/debian/libssl1.1@1.1.0f-3+deb9u2?arch=amd64\u0026upstream=openssl\u0026distro=debian-9", + "upstreams": [ + { + "name": "openssl" + } + ], + "metadata": null + } + }, + { + "vulnerability": { + "id": "CVE-2021-4214", + "dataSource": "https://security-tracker.debian.org/tracker/CVE-2021-4214", + "namespace": "debian:distro:debian:9", + "severity": "Negligible", + "urls": [ + "https://security-tracker.debian.org/tracker/CVE-2021-4214" + ], + "cvss": null, + "fix": { + "versions": [], + "state": "not-fixed" + }, + "advisories": null + }, + "relatedVulnerabilities": [ + { + "id": "CVE-2021-4214", + "dataSource": "https://nvd.nist.gov/vuln/detail/CVE-2021-4214", + "namespace": "nvd:cpe", + "severity": "Medium", + "urls": [ + "https://access.redhat.com/security/cve/CVE-2021-4214", + "https://bugzilla.redhat.com/show_bug.cgi?id=2043393", + "https://github.com/glennrp/libpng/issues/302", + "https://security-tracker.debian.org/tracker/CVE-2021-4214", + "https://security.netapp.com/advisory/ntap-20221020-0001/" + ], + "description": "A heap overflow flaw was found in libpngs' pngimage.c program. This flaw allows an attacker with local network access to pass a specially crafted PNG file to the pngimage utility, causing an application to crash, leading to a denial of service.", + "cvss": null + } + ], + "matchDetails": [ + { + "type": "exact-indirect-match", + "matcher": "dpkg-matcher", + "searchedBy": { + "distro": { + "type": "debian", + "version": "9" + }, + "namespace": "debian:distro:debian:9", + "package": { + "name": "libpng1.6", + "version": "1.6.28-1" + } + }, + "found": { + "versionConstraint": "none (deb)", + "vulnerabilityID": "CVE-2021-4214" + } + } + ], + "artifact": { + "name": "libpng16-16", + "version": "1.6.28-1", + "type": "deb", + "locations": null, + "language": "", + "licenses": [ + "LicenseRef-BSD-like-with-advertising-clause", + "GPL-2.0-only", + "GPL-2.0-or-later", + "LicenseRef-expat", + "Libpng" + ], + "cpes": [ + "cpe:2.3:a:libpng16-16:libpng16-16:1.6.28-1:*:*:*:*:*:*:*", + "cpe:2.3:a:libpng16-16:libpng16_16:1.6.28-1:*:*:*:*:*:*:*", + "cpe:2.3:a:libpng16_16:libpng16-16:1.6.28-1:*:*:*:*:*:*:*", + "cpe:2.3:a:libpng16_16:libpng16_16:1.6.28-1:*:*:*:*:*:*:*", + "cpe:2.3:a:libpng16:libpng16-16:1.6.28-1:*:*:*:*:*:*:*", + "cpe:2.3:a:libpng16:libpng16_16:1.6.28-1:*:*:*:*:*:*:*" + ], + "purl": "pkg:deb/debian/libpng16-16@1.6.28-1?arch=amd64\u0026upstream=libpng1.6\u0026distro=debian-9", + "upstreams": [ + { + "name": "libpng1.6" + } + ], + "metadata": null + } + }, + { + "vulnerability": { + "id": "CVE-2021-45960", + "dataSource": "https://security-tracker.debian.org/tracker/CVE-2021-45960", + "namespace": "debian:distro:debian:9", + "severity": "High", + "urls": [ + "https://security-tracker.debian.org/tracker/CVE-2021-45960" + ], + "description": "In Expat (aka libexpat) before 2.4.3, a left shift by 29 (or more) places in the storeAtts function in xmlparse.c can lead to realloc misbehavior (e.g., allocating too few bytes, or only freeing memory).", + "cvss": null, + "fix": { + "versions": [ + "2.2.0-2+deb9u4" + ], + "state": "fixed" + }, + "advisories": null + }, + "relatedVulnerabilities": [ + { + "id": "CVE-2021-45960", + "dataSource": "https://nvd.nist.gov/vuln/detail/CVE-2021-45960", + "namespace": "nvd:cpe", + "severity": "High", + "urls": [ + "http://www.openwall.com/lists/oss-security/2022/01/17/3", + "https://bugzilla.mozilla.org/show_bug.cgi?id=1217609", + "https://cert-portal.siemens.com/productcert/pdf/ssa-484086.pdf", + "https://github.com/libexpat/libexpat/issues/531", + "https://github.com/libexpat/libexpat/pull/534", + "https://security.gentoo.org/glsa/202209-24", + "https://security.netapp.com/advisory/ntap-20220121-0004/", + "https://www.debian.org/security/2022/dsa-5073", + "https://www.tenable.com/security/tns-2022-05" + ], + "description": "In Expat (aka libexpat) before 2.4.3, a left shift by 29 (or more) places in the storeAtts function in xmlparse.c can lead to realloc misbehavior (e.g., allocating too few bytes, or only freeing memory).", + "cvss": null + } + ], + "matchDetails": [ + { + "type": "exact-indirect-match", + "matcher": "dpkg-matcher", + "searchedBy": { + "distro": { + "type": "debian", + "version": "9" + }, + "namespace": "debian:distro:debian:9", + "package": { + "name": "expat", + "version": "2.2.0-2+deb9u1" + } + }, + "found": { + "versionConstraint": "\u003c 2.2.0-2+deb9u4 (deb)", + "vulnerabilityID": "CVE-2021-45960" + } + } + ], + "artifact": { + "name": "libexpat1", + "version": "2.2.0-2+deb9u1", + "type": "deb", + "locations": null, + "language": "", + "licenses": [], + "cpes": [ + "cpe:2.3:a:libexpat1:libexpat1:2.2.0-2+deb9u1:*:*:*:*:*:*:*" + ], + "purl": "pkg:deb/debian/libexpat1@2.2.0-2+deb9u1?arch=amd64\u0026upstream=expat\u0026distro=debian-9", + "upstreams": [ + { + "name": "expat" + } + ], + "metadata": null + } + }, + { + "vulnerability": { + "id": "CVE-2021-46143", + "dataSource": "https://security-tracker.debian.org/tracker/CVE-2021-46143", + "namespace": "debian:distro:debian:9", + "severity": "High", + "urls": [ + "https://security-tracker.debian.org/tracker/CVE-2021-46143" + ], + "description": "In doProlog in xmlparse.c in Expat (aka libexpat) before 2.4.3, an integer overflow exists for m_groupSize.", + "cvss": null, + "fix": { + "versions": [ + "2.2.0-2+deb9u4" + ], + "state": "fixed" + }, + "advisories": null + }, + "relatedVulnerabilities": [ + { + "id": "CVE-2021-46143", + "dataSource": "https://nvd.nist.gov/vuln/detail/CVE-2021-46143", + "namespace": "nvd:cpe", + "severity": "High", + "urls": [ + "http://www.openwall.com/lists/oss-security/2022/01/17/3", + "https://cert-portal.siemens.com/productcert/pdf/ssa-484086.pdf", + "https://github.com/libexpat/libexpat/issues/532", + "https://github.com/libexpat/libexpat/pull/538", + "https://security.gentoo.org/glsa/202209-24", + "https://security.netapp.com/advisory/ntap-20220121-0006/", + "https://www.debian.org/security/2022/dsa-5073", + "https://www.tenable.com/security/tns-2022-05" + ], + "description": "In doProlog in xmlparse.c in Expat (aka libexpat) before 2.4.3, an integer overflow exists for m_groupSize.", + "cvss": null + } + ], + "matchDetails": [ + { + "type": "exact-indirect-match", + "matcher": "dpkg-matcher", + "searchedBy": { + "distro": { + "type": "debian", + "version": "9" + }, + "namespace": "debian:distro:debian:9", + "package": { + "name": "expat", + "version": "2.2.0-2+deb9u1" + } + }, + "found": { + "versionConstraint": "\u003c 2.2.0-2+deb9u4 (deb)", + "vulnerabilityID": "CVE-2021-46143" + } + } + ], + "artifact": { + "name": "libexpat1", + "version": "2.2.0-2+deb9u1", + "type": "deb", + "locations": null, + "language": "", + "licenses": [], + "cpes": [ + "cpe:2.3:a:libexpat1:libexpat1:2.2.0-2+deb9u1:*:*:*:*:*:*:*" + ], + "purl": "pkg:deb/debian/libexpat1@2.2.0-2+deb9u1?arch=amd64\u0026upstream=expat\u0026distro=debian-9", + "upstreams": [ + { + "name": "expat" + } + ], + "metadata": null + } + }, + { + "vulnerability": { + "id": "CVE-2021-46822", + "dataSource": "https://security-tracker.debian.org/tracker/CVE-2021-46822", + "namespace": "debian:distro:debian:9", + "severity": "Medium", + "urls": [ + "https://security-tracker.debian.org/tracker/CVE-2021-46822" + ], + "description": "The PPM reader in libjpeg-turbo through 2.0.90 mishandles use of tjLoadImage for loading a 16-bit binary PPM file into a grayscale buffer and loading a 16-bit binary PGM file into an RGB buffer. This is related to a heap-based buffer overflow in the get_word_rgb_row function in rdppm.c.", + "cvss": null, + "fix": { + "versions": [], + "state": "not-fixed" + }, + "advisories": null + }, + "relatedVulnerabilities": [ + { + "id": "CVE-2021-46822", + "dataSource": "https://nvd.nist.gov/vuln/detail/CVE-2021-46822", + "namespace": "nvd:cpe", + "severity": "Medium", + "urls": [ + "https://exchange.xforce.ibmcloud.com/vulnerabilities/221567", + "https://github.com/libjpeg-turbo/libjpeg-turbo/commit/f35fd27ec641c42d6b115bfa595e483ec58188d2" + ], + "description": "The PPM reader in libjpeg-turbo through 2.0.90 mishandles use of tjLoadImage for loading a 16-bit binary PPM file into a grayscale buffer and loading a 16-bit binary PGM file into an RGB buffer. This is related to a heap-based buffer overflow in the get_word_rgb_row function in rdppm.c.", + "cvss": null + } + ], + "matchDetails": [ + { + "type": "exact-indirect-match", + "matcher": "dpkg-matcher", + "searchedBy": { + "distro": { + "type": "debian", + "version": "9" + }, + "namespace": "debian:distro:debian:9", + "package": { + "name": "libjpeg-turbo", + "version": "1:1.5.1-2" + } + }, + "found": { + "versionConstraint": "none (deb)", + "vulnerabilityID": "CVE-2021-46822" + } + } + ], + "artifact": { + "name": "libjpeg62-turbo", + "version": "1:1.5.1-2", + "type": "deb", + "locations": null, + "language": "", + "licenses": [ + "LicenseRef-BSD-3", + "LicenseRef-BSD-BY-LC-NE", + "LicenseRef-Expat" + ], + "cpes": [ + "cpe:2.3:a:libjpeg62-turbo:libjpeg62-turbo:1:1.5.1-2:*:*:*:*:*:*:*", + "cpe:2.3:a:libjpeg62-turbo:libjpeg62_turbo:1:1.5.1-2:*:*:*:*:*:*:*", + "cpe:2.3:a:libjpeg62_turbo:libjpeg62-turbo:1:1.5.1-2:*:*:*:*:*:*:*", + "cpe:2.3:a:libjpeg62_turbo:libjpeg62_turbo:1:1.5.1-2:*:*:*:*:*:*:*", + "cpe:2.3:a:libjpeg62:libjpeg62-turbo:1:1.5.1-2:*:*:*:*:*:*:*", + "cpe:2.3:a:libjpeg62:libjpeg62_turbo:1:1.5.1-2:*:*:*:*:*:*:*" + ], + "purl": "pkg:deb/debian/libjpeg62-turbo@1:1.5.1-2?arch=amd64\u0026upstream=libjpeg-turbo\u0026distro=debian-9", + "upstreams": [ + { + "name": "libjpeg-turbo" + } + ], + "metadata": null + } + }, + { + "vulnerability": { + "id": "CVE-2022-0561", + "dataSource": "https://security-tracker.debian.org/tracker/CVE-2022-0561", + "namespace": "debian:distro:debian:9", + "severity": "Medium", + "urls": [ + "https://security-tracker.debian.org/tracker/CVE-2022-0561" + ], + "description": "Null source pointer passed as an argument to memcpy() function within TIFFFetchStripThing() in tif_dirread.c in libtiff versions from 3.9.0 to 4.3.0 could lead to Denial of Service via crafted TIFF file. For users that compile libtiff from sources, the fix is available with commit eecb0712.", + "cvss": null, + "fix": { + "versions": [ + "4.0.8-2+deb9u8" + ], + "state": "fixed" + }, + "advisories": null + }, + "relatedVulnerabilities": [ + { + "id": "CVE-2022-0561", + "dataSource": "https://nvd.nist.gov/vuln/detail/CVE-2022-0561", + "namespace": "nvd:cpe", + "severity": "Medium", + "urls": [ + "https://gitlab.com/freedesktop-sdk/mirrors/gitlab/libtiff/libtiff/-/commit/eecb0712f4c3a5b449f70c57988260a667ddbdef", + "https://gitlab.com/gitlab-org/cves/-/blob/master/2022/CVE-2022-0561.json", + "https://gitlab.com/libtiff/libtiff/-/issues/362", + "https://lists.debian.org/debian-lts-announce/2022/03/msg00001.html", + "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/DZEHZ35XVO2VBZ4HHCMM6J6TQIDSBQOM/", + "https://security.gentoo.org/glsa/202210-10", + "https://security.netapp.com/advisory/ntap-20220318-0001/", + "https://www.debian.org/security/2022/dsa-5108" + ], + "description": "Null source pointer passed as an argument to memcpy() function within TIFFFetchStripThing() in tif_dirread.c in libtiff versions from 3.9.0 to 4.3.0 could lead to Denial of Service via crafted TIFF file. For users that compile libtiff from sources, the fix is available with commit eecb0712.", + "cvss": null + } + ], + "matchDetails": [ + { + "type": "exact-indirect-match", + "matcher": "dpkg-matcher", + "searchedBy": { + "distro": { + "type": "debian", + "version": "9" + }, + "namespace": "debian:distro:debian:9", + "package": { + "name": "tiff", + "version": "4.0.8-2+deb9u2" + } + }, + "found": { + "versionConstraint": "\u003c 4.0.8-2+deb9u8 (deb)", + "vulnerabilityID": "CVE-2022-0561" + } + } + ], + "artifact": { + "name": "libtiff5", + "version": "4.0.8-2+deb9u2", + "type": "deb", + "locations": null, + "language": "", + "licenses": [ + "LicenseRef-Hylafax" + ], + "cpes": [ + "cpe:2.3:a:libtiff5:libtiff5:4.0.8-2+deb9u2:*:*:*:*:*:*:*" + ], + "purl": "pkg:deb/debian/libtiff5@4.0.8-2+deb9u2?arch=amd64\u0026upstream=tiff\u0026distro=debian-9", + "upstreams": [ + { + "name": "tiff" + } + ], + "metadata": null + } + }, + { + "vulnerability": { + "id": "CVE-2022-0562", + "dataSource": "https://security-tracker.debian.org/tracker/CVE-2022-0562", + "namespace": "debian:distro:debian:9", + "severity": "Medium", + "urls": [ + "https://security-tracker.debian.org/tracker/CVE-2022-0562" + ], + "description": "Null source pointer passed as an argument to memcpy() function within TIFFReadDirectory() in tif_dirread.c in libtiff versions from 4.0 to 4.3.0 could lead to Denial of Service via crafted TIFF file. For users that compile libtiff from sources, a fix is available with commit 561599c.", + "cvss": null, + "fix": { + "versions": [ + "4.0.8-2+deb9u8" + ], + "state": "fixed" + }, + "advisories": null + }, + "relatedVulnerabilities": [ + { + "id": "CVE-2022-0562", + "dataSource": "https://nvd.nist.gov/vuln/detail/CVE-2022-0562", + "namespace": "nvd:cpe", + "severity": "Medium", + "urls": [ + "https://gitlab.com/gitlab-org/build/omnibus-mirror/libtiff/-/commit/561599c99f987dc32ae110370cfdd7df7975586b", + "https://gitlab.com/gitlab-org/cves/-/blob/master/2022/CVE-2022-0562.json", + "https://gitlab.com/libtiff/libtiff/-/issues/362", + "https://lists.debian.org/debian-lts-announce/2022/03/msg00001.html", + "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/DZEHZ35XVO2VBZ4HHCMM6J6TQIDSBQOM/", + "https://security.gentoo.org/glsa/202210-10", + "https://security.netapp.com/advisory/ntap-20220318-0001/", + "https://www.debian.org/security/2022/dsa-5108" + ], + "description": "Null source pointer passed as an argument to memcpy() function within TIFFReadDirectory() in tif_dirread.c in libtiff versions from 4.0 to 4.3.0 could lead to Denial of Service via crafted TIFF file. For users that compile libtiff from sources, a fix is available with commit 561599c.", + "cvss": null + } + ], + "matchDetails": [ + { + "type": "exact-indirect-match", + "matcher": "dpkg-matcher", + "searchedBy": { + "distro": { + "type": "debian", + "version": "9" + }, + "namespace": "debian:distro:debian:9", + "package": { + "name": "tiff", + "version": "4.0.8-2+deb9u2" + } + }, + "found": { + "versionConstraint": "\u003c 4.0.8-2+deb9u8 (deb)", + "vulnerabilityID": "CVE-2022-0562" + } + } + ], + "artifact": { + "name": "libtiff5", + "version": "4.0.8-2+deb9u2", + "type": "deb", + "locations": null, + "language": "", + "licenses": [ + "LicenseRef-Hylafax" + ], + "cpes": [ + "cpe:2.3:a:libtiff5:libtiff5:4.0.8-2+deb9u2:*:*:*:*:*:*:*" + ], + "purl": "pkg:deb/debian/libtiff5@4.0.8-2+deb9u2?arch=amd64\u0026upstream=tiff\u0026distro=debian-9", + "upstreams": [ + { + "name": "tiff" + } + ], + "metadata": null + } + }, + { + "vulnerability": { + "id": "CVE-2022-0563", + "dataSource": "https://security-tracker.debian.org/tracker/CVE-2022-0563", + "namespace": "debian:distro:debian:9", + "severity": "Negligible", + "urls": [ + "https://security-tracker.debian.org/tracker/CVE-2022-0563" + ], + "description": "A flaw was found in the util-linux chfn and chsh utilities when compiled with Readline support. The Readline library uses an \"INPUTRC\" environment variable to get a path to the library config file. When the library cannot parse the specified file, it prints an error message containing data from the file. This flaw allows an unprivileged user to read root-owned files, potentially leading to privilege escalation. This flaw affects util-linux versions prior to 2.37.4.", + "cvss": null, + "fix": { + "versions": [], + "state": "not-fixed" + }, + "advisories": null + }, + "relatedVulnerabilities": [ + { + "id": "CVE-2022-0563", + "dataSource": "https://nvd.nist.gov/vuln/detail/CVE-2022-0563", + "namespace": "nvd:cpe", + "severity": "Medium", + "urls": [ + "https://lore.kernel.org/util-linux/20220214110609.msiwlm457ngoic6w@ws.net.home/T/#u", + "https://security.netapp.com/advisory/ntap-20220331-0002/" + ], + "description": "A flaw was found in the util-linux chfn and chsh utilities when compiled with Readline support. The Readline library uses an \"INPUTRC\" environment variable to get a path to the library config file. When the library cannot parse the specified file, it prints an error message containing data from the file. This flaw allows an unprivileged user to read root-owned files, potentially leading to privilege escalation. This flaw affects util-linux versions prior to 2.37.4.", + "cvss": null + } + ], + "matchDetails": [ + { + "type": "exact-indirect-match", + "matcher": "dpkg-matcher", + "searchedBy": { + "distro": { + "type": "debian", + "version": "9" + }, + "namespace": "debian:distro:debian:9", + "package": { + "name": "util-linux", + "version": "2.29.2-1+deb9u1" + } + }, + "found": { + "versionConstraint": "none (deb)", + "vulnerabilityID": "CVE-2022-0563" + } + } + ], + "artifact": { + "name": "bsdutils", + "version": "1:2.29.2-1+deb9u1", + "type": "deb", + "locations": null, + "language": "", + "licenses": [ + "BSD-2-Clause", + "BSD-3-Clause", + "BSD-4-Clause", + "GPL-2.0-only", + "GPL-2.0-or-later", + "GPL-3.0-only", + "GPL-3.0-or-later", + "LicenseRef-LGPL", + "LGPL-2.0-only", + "LGPL-2.0-or-later", + "LGPL-2.1-only", + "LGPL-2.1-or-later", + "LGPL-3.0-only", + "LGPL-3.0-or-later", + "MIT", + "LicenseRef-public-domain" + ], + "cpes": [ + "cpe:2.3:a:bsdutils:bsdutils:1:2.29.2-1+deb9u1:*:*:*:*:*:*:*" + ], + "purl": "pkg:deb/debian/bsdutils@1:2.29.2-1+deb9u1?arch=amd64\u0026upstream=util-linux%402.29.2-1+deb9u1\u0026distro=debian-9", + "upstreams": [ + { + "name": "util-linux", + "version": "2.29.2-1+deb9u1" + } + ], + "metadata": null + } + }, + { + "vulnerability": { + "id": "CVE-2022-0563", + "dataSource": "https://security-tracker.debian.org/tracker/CVE-2022-0563", + "namespace": "debian:distro:debian:9", + "severity": "Negligible", + "urls": [ + "https://security-tracker.debian.org/tracker/CVE-2022-0563" + ], + "description": "A flaw was found in the util-linux chfn and chsh utilities when compiled with Readline support. The Readline library uses an \"INPUTRC\" environment variable to get a path to the library config file. When the library cannot parse the specified file, it prints an error message containing data from the file. This flaw allows an unprivileged user to read root-owned files, potentially leading to privilege escalation. This flaw affects util-linux versions prior to 2.37.4.", + "cvss": null, + "fix": { + "versions": [], + "state": "not-fixed" + }, + "advisories": null + }, + "relatedVulnerabilities": [ + { + "id": "CVE-2022-0563", + "dataSource": "https://nvd.nist.gov/vuln/detail/CVE-2022-0563", + "namespace": "nvd:cpe", + "severity": "Medium", + "urls": [ + "https://lore.kernel.org/util-linux/20220214110609.msiwlm457ngoic6w@ws.net.home/T/#u", + "https://security.netapp.com/advisory/ntap-20220331-0002/" + ], + "description": "A flaw was found in the util-linux chfn and chsh utilities when compiled with Readline support. The Readline library uses an \"INPUTRC\" environment variable to get a path to the library config file. When the library cannot parse the specified file, it prints an error message containing data from the file. This flaw allows an unprivileged user to read root-owned files, potentially leading to privilege escalation. This flaw affects util-linux versions prior to 2.37.4.", + "cvss": null + } + ], + "matchDetails": [ + { + "type": "exact-indirect-match", + "matcher": "dpkg-matcher", + "searchedBy": { + "distro": { + "type": "debian", + "version": "9" + }, + "namespace": "debian:distro:debian:9", + "package": { + "name": "util-linux", + "version": "2.29.2-1+deb9u1" + } + }, + "found": { + "versionConstraint": "none (deb)", + "vulnerabilityID": "CVE-2022-0563" + } + } + ], + "artifact": { + "name": "libblkid1", + "version": "2.29.2-1+deb9u1", + "type": "deb", + "locations": null, + "language": "", + "licenses": [ + "BSD-2-Clause", + "BSD-3-Clause", + "BSD-4-Clause", + "GPL-2.0-only", + "GPL-2.0-or-later", + "GPL-3.0-only", + "GPL-3.0-or-later", + "LicenseRef-LGPL", + "LGPL-2.0-only", + "LGPL-2.0-or-later", + "LGPL-2.1-only", + "LGPL-2.1-or-later", + "LGPL-3.0-only", + "LGPL-3.0-or-later", + "MIT", + "LicenseRef-public-domain" + ], + "cpes": [ + "cpe:2.3:a:libblkid1:libblkid1:2.29.2-1+deb9u1:*:*:*:*:*:*:*" + ], + "purl": "pkg:deb/debian/libblkid1@2.29.2-1+deb9u1?arch=amd64\u0026upstream=util-linux\u0026distro=debian-9", + "upstreams": [ + { + "name": "util-linux" + } + ], + "metadata": null + } + }, + { + "vulnerability": { + "id": "CVE-2022-0563", + "dataSource": "https://security-tracker.debian.org/tracker/CVE-2022-0563", + "namespace": "debian:distro:debian:9", + "severity": "Negligible", + "urls": [ + "https://security-tracker.debian.org/tracker/CVE-2022-0563" + ], + "description": "A flaw was found in the util-linux chfn and chsh utilities when compiled with Readline support. The Readline library uses an \"INPUTRC\" environment variable to get a path to the library config file. When the library cannot parse the specified file, it prints an error message containing data from the file. This flaw allows an unprivileged user to read root-owned files, potentially leading to privilege escalation. This flaw affects util-linux versions prior to 2.37.4.", + "cvss": null, + "fix": { + "versions": [], + "state": "not-fixed" + }, + "advisories": null + }, + "relatedVulnerabilities": [ + { + "id": "CVE-2022-0563", + "dataSource": "https://nvd.nist.gov/vuln/detail/CVE-2022-0563", + "namespace": "nvd:cpe", + "severity": "Medium", + "urls": [ + "https://lore.kernel.org/util-linux/20220214110609.msiwlm457ngoic6w@ws.net.home/T/#u", + "https://security.netapp.com/advisory/ntap-20220331-0002/" + ], + "description": "A flaw was found in the util-linux chfn and chsh utilities when compiled with Readline support. The Readline library uses an \"INPUTRC\" environment variable to get a path to the library config file. When the library cannot parse the specified file, it prints an error message containing data from the file. This flaw allows an unprivileged user to read root-owned files, potentially leading to privilege escalation. This flaw affects util-linux versions prior to 2.37.4.", + "cvss": null + } + ], + "matchDetails": [ + { + "type": "exact-indirect-match", + "matcher": "dpkg-matcher", + "searchedBy": { + "distro": { + "type": "debian", + "version": "9" + }, + "namespace": "debian:distro:debian:9", + "package": { + "name": "util-linux", + "version": "2.29.2-1+deb9u1" + } + }, + "found": { + "versionConstraint": "none (deb)", + "vulnerabilityID": "CVE-2022-0563" + } + } + ], + "artifact": { + "name": "libfdisk1", + "version": "2.29.2-1+deb9u1", + "type": "deb", + "locations": null, + "language": "", + "licenses": [ + "BSD-2-Clause", + "BSD-3-Clause", + "BSD-4-Clause", + "GPL-2.0-only", + "GPL-2.0-or-later", + "GPL-3.0-only", + "GPL-3.0-or-later", + "LicenseRef-LGPL", + "LGPL-2.0-only", + "LGPL-2.0-or-later", + "LGPL-2.1-only", + "LGPL-2.1-or-later", + "LGPL-3.0-only", + "LGPL-3.0-or-later", + "MIT", + "LicenseRef-public-domain" + ], + "cpes": [ + "cpe:2.3:a:libfdisk1:libfdisk1:2.29.2-1+deb9u1:*:*:*:*:*:*:*" + ], + "purl": "pkg:deb/debian/libfdisk1@2.29.2-1+deb9u1?arch=amd64\u0026upstream=util-linux\u0026distro=debian-9", + "upstreams": [ + { + "name": "util-linux" + } + ], + "metadata": null + } + }, + { + "vulnerability": { + "id": "CVE-2022-0563", + "dataSource": "https://security-tracker.debian.org/tracker/CVE-2022-0563", + "namespace": "debian:distro:debian:9", + "severity": "Negligible", + "urls": [ + "https://security-tracker.debian.org/tracker/CVE-2022-0563" + ], + "description": "A flaw was found in the util-linux chfn and chsh utilities when compiled with Readline support. The Readline library uses an \"INPUTRC\" environment variable to get a path to the library config file. When the library cannot parse the specified file, it prints an error message containing data from the file. This flaw allows an unprivileged user to read root-owned files, potentially leading to privilege escalation. This flaw affects util-linux versions prior to 2.37.4.", + "cvss": null, + "fix": { + "versions": [], + "state": "not-fixed" + }, + "advisories": null + }, + "relatedVulnerabilities": [ + { + "id": "CVE-2022-0563", + "dataSource": "https://nvd.nist.gov/vuln/detail/CVE-2022-0563", + "namespace": "nvd:cpe", + "severity": "Medium", + "urls": [ + "https://lore.kernel.org/util-linux/20220214110609.msiwlm457ngoic6w@ws.net.home/T/#u", + "https://security.netapp.com/advisory/ntap-20220331-0002/" + ], + "description": "A flaw was found in the util-linux chfn and chsh utilities when compiled with Readline support. The Readline library uses an \"INPUTRC\" environment variable to get a path to the library config file. When the library cannot parse the specified file, it prints an error message containing data from the file. This flaw allows an unprivileged user to read root-owned files, potentially leading to privilege escalation. This flaw affects util-linux versions prior to 2.37.4.", + "cvss": null + } + ], + "matchDetails": [ + { + "type": "exact-indirect-match", + "matcher": "dpkg-matcher", + "searchedBy": { + "distro": { + "type": "debian", + "version": "9" + }, + "namespace": "debian:distro:debian:9", + "package": { + "name": "util-linux", + "version": "2.29.2-1+deb9u1" + } + }, + "found": { + "versionConstraint": "none (deb)", + "vulnerabilityID": "CVE-2022-0563" + } + } + ], + "artifact": { + "name": "libmount1", + "version": "2.29.2-1+deb9u1", + "type": "deb", + "locations": null, + "language": "", + "licenses": [ + "BSD-2-Clause", + "BSD-3-Clause", + "BSD-4-Clause", + "GPL-2.0-only", + "GPL-2.0-or-later", + "GPL-3.0-only", + "GPL-3.0-or-later", + "LicenseRef-LGPL", + "LGPL-2.0-only", + "LGPL-2.0-or-later", + "LGPL-2.1-only", + "LGPL-2.1-or-later", + "LGPL-3.0-only", + "LGPL-3.0-or-later", + "MIT", + "LicenseRef-public-domain" + ], + "cpes": [ + "cpe:2.3:a:libmount1:libmount1:2.29.2-1+deb9u1:*:*:*:*:*:*:*" + ], + "purl": "pkg:deb/debian/libmount1@2.29.2-1+deb9u1?arch=amd64\u0026upstream=util-linux\u0026distro=debian-9", + "upstreams": [ + { + "name": "util-linux" + } + ], + "metadata": null + } + }, + { + "vulnerability": { + "id": "CVE-2022-0563", + "dataSource": "https://security-tracker.debian.org/tracker/CVE-2022-0563", + "namespace": "debian:distro:debian:9", + "severity": "Negligible", + "urls": [ + "https://security-tracker.debian.org/tracker/CVE-2022-0563" + ], + "description": "A flaw was found in the util-linux chfn and chsh utilities when compiled with Readline support. The Readline library uses an \"INPUTRC\" environment variable to get a path to the library config file. When the library cannot parse the specified file, it prints an error message containing data from the file. This flaw allows an unprivileged user to read root-owned files, potentially leading to privilege escalation. This flaw affects util-linux versions prior to 2.37.4.", + "cvss": null, + "fix": { + "versions": [], + "state": "not-fixed" + }, + "advisories": null + }, + "relatedVulnerabilities": [ + { + "id": "CVE-2022-0563", + "dataSource": "https://nvd.nist.gov/vuln/detail/CVE-2022-0563", + "namespace": "nvd:cpe", + "severity": "Medium", + "urls": [ + "https://lore.kernel.org/util-linux/20220214110609.msiwlm457ngoic6w@ws.net.home/T/#u", + "https://security.netapp.com/advisory/ntap-20220331-0002/" + ], + "description": "A flaw was found in the util-linux chfn and chsh utilities when compiled with Readline support. The Readline library uses an \"INPUTRC\" environment variable to get a path to the library config file. When the library cannot parse the specified file, it prints an error message containing data from the file. This flaw allows an unprivileged user to read root-owned files, potentially leading to privilege escalation. This flaw affects util-linux versions prior to 2.37.4.", + "cvss": null + } + ], + "matchDetails": [ + { + "type": "exact-indirect-match", + "matcher": "dpkg-matcher", + "searchedBy": { + "distro": { + "type": "debian", + "version": "9" + }, + "namespace": "debian:distro:debian:9", + "package": { + "name": "util-linux", + "version": "2.29.2-1+deb9u1" + } + }, + "found": { + "versionConstraint": "none (deb)", + "vulnerabilityID": "CVE-2022-0563" + } + } + ], + "artifact": { + "name": "libsmartcols1", + "version": "2.29.2-1+deb9u1", + "type": "deb", + "locations": null, + "language": "", + "licenses": [ + "BSD-2-Clause", + "BSD-3-Clause", + "BSD-4-Clause", + "GPL-2.0-only", + "GPL-2.0-or-later", + "GPL-3.0-only", + "GPL-3.0-or-later", + "LicenseRef-LGPL", + "LGPL-2.0-only", + "LGPL-2.0-or-later", + "LGPL-2.1-only", + "LGPL-2.1-or-later", + "LGPL-3.0-only", + "LGPL-3.0-or-later", + "MIT", + "LicenseRef-public-domain" + ], + "cpes": [ + "cpe:2.3:a:libsmartcols1:libsmartcols1:2.29.2-1+deb9u1:*:*:*:*:*:*:*" + ], + "purl": "pkg:deb/debian/libsmartcols1@2.29.2-1+deb9u1?arch=amd64\u0026upstream=util-linux\u0026distro=debian-9", + "upstreams": [ + { + "name": "util-linux" + } + ], + "metadata": null + } + }, + { + "vulnerability": { + "id": "CVE-2022-0563", + "dataSource": "https://security-tracker.debian.org/tracker/CVE-2022-0563", + "namespace": "debian:distro:debian:9", + "severity": "Negligible", + "urls": [ + "https://security-tracker.debian.org/tracker/CVE-2022-0563" + ], + "description": "A flaw was found in the util-linux chfn and chsh utilities when compiled with Readline support. The Readline library uses an \"INPUTRC\" environment variable to get a path to the library config file. When the library cannot parse the specified file, it prints an error message containing data from the file. This flaw allows an unprivileged user to read root-owned files, potentially leading to privilege escalation. This flaw affects util-linux versions prior to 2.37.4.", + "cvss": null, + "fix": { + "versions": [], + "state": "not-fixed" + }, + "advisories": null + }, + "relatedVulnerabilities": [ + { + "id": "CVE-2022-0563", + "dataSource": "https://nvd.nist.gov/vuln/detail/CVE-2022-0563", + "namespace": "nvd:cpe", + "severity": "Medium", + "urls": [ + "https://lore.kernel.org/util-linux/20220214110609.msiwlm457ngoic6w@ws.net.home/T/#u", + "https://security.netapp.com/advisory/ntap-20220331-0002/" + ], + "description": "A flaw was found in the util-linux chfn and chsh utilities when compiled with Readline support. The Readline library uses an \"INPUTRC\" environment variable to get a path to the library config file. When the library cannot parse the specified file, it prints an error message containing data from the file. This flaw allows an unprivileged user to read root-owned files, potentially leading to privilege escalation. This flaw affects util-linux versions prior to 2.37.4.", + "cvss": null + } + ], + "matchDetails": [ + { + "type": "exact-indirect-match", + "matcher": "dpkg-matcher", + "searchedBy": { + "distro": { + "type": "debian", + "version": "9" + }, + "namespace": "debian:distro:debian:9", + "package": { + "name": "util-linux", + "version": "2.29.2-1+deb9u1" + } + }, + "found": { + "versionConstraint": "none (deb)", + "vulnerabilityID": "CVE-2022-0563" + } + } + ], + "artifact": { + "name": "libuuid1", + "version": "2.29.2-1+deb9u1", + "type": "deb", + "locations": null, + "language": "", + "licenses": [ + "BSD-2-Clause", + "BSD-3-Clause", + "BSD-4-Clause", + "GPL-2.0-only", + "GPL-2.0-or-later", + "GPL-3.0-only", + "GPL-3.0-or-later", + "LicenseRef-LGPL", + "LGPL-2.0-only", + "LGPL-2.0-or-later", + "LGPL-2.1-only", + "LGPL-2.1-or-later", + "LGPL-3.0-only", + "LGPL-3.0-or-later", + "MIT", + "LicenseRef-public-domain" + ], + "cpes": [ + "cpe:2.3:a:libuuid1:libuuid1:2.29.2-1+deb9u1:*:*:*:*:*:*:*" + ], + "purl": "pkg:deb/debian/libuuid1@2.29.2-1+deb9u1?arch=amd64\u0026upstream=util-linux\u0026distro=debian-9", + "upstreams": [ + { + "name": "util-linux" + } + ], + "metadata": null + } + }, + { + "vulnerability": { + "id": "CVE-2022-0563", + "dataSource": "https://security-tracker.debian.org/tracker/CVE-2022-0563", + "namespace": "debian:distro:debian:9", + "severity": "Negligible", + "urls": [ + "https://security-tracker.debian.org/tracker/CVE-2022-0563" + ], + "description": "A flaw was found in the util-linux chfn and chsh utilities when compiled with Readline support. The Readline library uses an \"INPUTRC\" environment variable to get a path to the library config file. When the library cannot parse the specified file, it prints an error message containing data from the file. This flaw allows an unprivileged user to read root-owned files, potentially leading to privilege escalation. This flaw affects util-linux versions prior to 2.37.4.", + "cvss": null, + "fix": { + "versions": [], + "state": "not-fixed" + }, + "advisories": null + }, + "relatedVulnerabilities": [ + { + "id": "CVE-2022-0563", + "dataSource": "https://nvd.nist.gov/vuln/detail/CVE-2022-0563", + "namespace": "nvd:cpe", + "severity": "Medium", + "urls": [ + "https://lore.kernel.org/util-linux/20220214110609.msiwlm457ngoic6w@ws.net.home/T/#u", + "https://security.netapp.com/advisory/ntap-20220331-0002/" + ], + "description": "A flaw was found in the util-linux chfn and chsh utilities when compiled with Readline support. The Readline library uses an \"INPUTRC\" environment variable to get a path to the library config file. When the library cannot parse the specified file, it prints an error message containing data from the file. This flaw allows an unprivileged user to read root-owned files, potentially leading to privilege escalation. This flaw affects util-linux versions prior to 2.37.4.", + "cvss": null + } + ], + "matchDetails": [ + { + "type": "exact-indirect-match", + "matcher": "dpkg-matcher", + "searchedBy": { + "distro": { + "type": "debian", + "version": "9" + }, + "namespace": "debian:distro:debian:9", + "package": { + "name": "util-linux", + "version": "2.29.2-1+deb9u1" + } + }, + "found": { + "versionConstraint": "none (deb)", + "vulnerabilityID": "CVE-2022-0563" + } + } + ], + "artifact": { + "name": "mount", + "version": "2.29.2-1+deb9u1", + "type": "deb", + "locations": null, + "language": "", + "licenses": [ + "BSD-2-Clause", + "BSD-3-Clause", + "BSD-4-Clause", + "GPL-2.0-only", + "GPL-2.0-or-later", + "GPL-3.0-only", + "GPL-3.0-or-later", + "LicenseRef-LGPL", + "LGPL-2.0-only", + "LGPL-2.0-or-later", + "LGPL-2.1-only", + "LGPL-2.1-or-later", + "LGPL-3.0-only", + "LGPL-3.0-or-later", + "MIT", + "LicenseRef-public-domain" + ], + "cpes": [ + "cpe:2.3:a:mount:mount:2.29.2-1+deb9u1:*:*:*:*:*:*:*" + ], + "purl": "pkg:deb/debian/mount@2.29.2-1+deb9u1?arch=amd64\u0026upstream=util-linux\u0026distro=debian-9", + "upstreams": [ + { + "name": "util-linux" + } + ], + "metadata": null + } + }, + { + "vulnerability": { + "id": "CVE-2022-0563", + "dataSource": "https://security-tracker.debian.org/tracker/CVE-2022-0563", + "namespace": "debian:distro:debian:9", + "severity": "Negligible", + "urls": [ + "https://security-tracker.debian.org/tracker/CVE-2022-0563" + ], + "description": "A flaw was found in the util-linux chfn and chsh utilities when compiled with Readline support. The Readline library uses an \"INPUTRC\" environment variable to get a path to the library config file. When the library cannot parse the specified file, it prints an error message containing data from the file. This flaw allows an unprivileged user to read root-owned files, potentially leading to privilege escalation. This flaw affects util-linux versions prior to 2.37.4.", + "cvss": null, + "fix": { + "versions": [], + "state": "not-fixed" + }, + "advisories": null + }, + "relatedVulnerabilities": [ + { + "id": "CVE-2022-0563", + "dataSource": "https://nvd.nist.gov/vuln/detail/CVE-2022-0563", + "namespace": "nvd:cpe", + "severity": "Medium", + "urls": [ + "https://lore.kernel.org/util-linux/20220214110609.msiwlm457ngoic6w@ws.net.home/T/#u", + "https://security.netapp.com/advisory/ntap-20220331-0002/" + ], + "description": "A flaw was found in the util-linux chfn and chsh utilities when compiled with Readline support. The Readline library uses an \"INPUTRC\" environment variable to get a path to the library config file. When the library cannot parse the specified file, it prints an error message containing data from the file. This flaw allows an unprivileged user to read root-owned files, potentially leading to privilege escalation. This flaw affects util-linux versions prior to 2.37.4.", + "cvss": null + } + ], + "matchDetails": [ + { + "type": "exact-direct-match", + "matcher": "dpkg-matcher", + "searchedBy": { + "distro": { + "type": "debian", + "version": "9" + }, + "namespace": "debian:distro:debian:9", + "package": { + "name": "util-linux", + "version": "2.29.2-1+deb9u1" + } + }, + "found": { + "versionConstraint": "none (deb)", + "vulnerabilityID": "CVE-2022-0563" + } + } + ], + "artifact": { + "name": "util-linux", + "version": "2.29.2-1+deb9u1", + "type": "deb", + "locations": null, + "language": "", + "licenses": [ + "BSD-2-Clause", + "BSD-3-Clause", + "BSD-4-Clause", + "GPL-2.0-only", + "GPL-2.0-or-later", + "GPL-3.0-only", + "GPL-3.0-or-later", + "LicenseRef-LGPL", + "LGPL-2.0-only", + "LGPL-2.0-or-later", + "LGPL-2.1-only", + "LGPL-2.1-or-later", + "LGPL-3.0-only", + "LGPL-3.0-or-later", + "MIT", + "LicenseRef-public-domain" + ], + "cpes": [ + "cpe:2.3:a:util-linux:util-linux:2.29.2-1+deb9u1:*:*:*:*:*:*:*", + "cpe:2.3:a:util-linux:util_linux:2.29.2-1+deb9u1:*:*:*:*:*:*:*", + "cpe:2.3:a:util_linux:util-linux:2.29.2-1+deb9u1:*:*:*:*:*:*:*", + "cpe:2.3:a:util_linux:util_linux:2.29.2-1+deb9u1:*:*:*:*:*:*:*", + "cpe:2.3:a:util:util-linux:2.29.2-1+deb9u1:*:*:*:*:*:*:*", + "cpe:2.3:a:util:util_linux:2.29.2-1+deb9u1:*:*:*:*:*:*:*" + ], + "purl": "pkg:deb/debian/util-linux@2.29.2-1+deb9u1?arch=amd64\u0026distro=debian-9", + "upstreams": null, + "metadata": null + } + }, + { + "vulnerability": { + "id": "CVE-2022-0778", + "dataSource": "https://security-tracker.debian.org/tracker/CVE-2022-0778", + "namespace": "debian:distro:debian:9", + "severity": "High", + "urls": [ + "https://security-tracker.debian.org/tracker/CVE-2022-0778" + ], + "description": "The BN_mod_sqrt() function, which computes a modular square root, contains a bug that can cause it to loop forever for non-prime moduli. Internally this function is used when parsing certificates that contain elliptic curve public keys in compressed form or explicit elliptic curve parameters with a base point encoded in compressed form. It is possible to trigger the infinite loop by crafting a certificate that has invalid explicit curve parameters. Since certificate parsing happens prior to verification of the certificate signature, any process that parses an externally supplied certificate may thus be subject to a denial of service attack. The infinite loop can also be reached when parsing crafted private keys as they can contain explicit elliptic curve parameters. Thus vulnerable situations include: - TLS clients consuming server certificates - TLS servers consuming client certificates - Hosting providers taking certificates or private keys from customers - Certificate authorities parsing certification requests from subscribers - Anything else which parses ASN.1 elliptic curve parameters Also any other applications that use the BN_mod_sqrt() where the attacker can control the parameter values are vulnerable to this DoS issue. In the OpenSSL 1.0.2 version the public key is not parsed during initial parsing of the certificate which makes it slightly harder to trigger the infinite loop. However any operation which requires the public key from the certificate will trigger the infinite loop. In particular the attacker can use a self-signed certificate to trigger the loop during verification of the certificate signature. This issue affects OpenSSL versions 1.0.2, 1.1.1 and 3.0. It was addressed in the releases of 1.1.1n and 3.0.2 on the 15th March 2022. Fixed in OpenSSL 3.0.2 (Affected 3.0.0,3.0.1). Fixed in OpenSSL 1.1.1n (Affected 1.1.1-1.1.1m). Fixed in OpenSSL 1.0.2zd (Affected 1.0.2-1.0.2zc).", + "cvss": null, + "fix": { + "versions": [ + "1.1.0l-1~deb9u5" + ], + "state": "fixed" + }, + "advisories": null + }, + "relatedVulnerabilities": [ + { + "id": "CVE-2022-0778", + "dataSource": "https://nvd.nist.gov/vuln/detail/CVE-2022-0778", + "namespace": "nvd:cpe", + "severity": "High", + "urls": [ + "http://packetstormsecurity.com/files/167344/OpenSSL-1.0.2-1.1.1-3.0-BN_mod_sqrt-Infinite-Loop.html", + "http://seclists.org/fulldisclosure/2022/May/33", + "http://seclists.org/fulldisclosure/2022/May/35", + "http://seclists.org/fulldisclosure/2022/May/38", + "https://cert-portal.siemens.com/productcert/pdf/ssa-712929.pdf", + "https://git.openssl.org/gitweb/?p=openssl.git;a=commitdiff;h=3118eb64934499d93db3230748a452351d1d9a65", + "https://git.openssl.org/gitweb/?p=openssl.git;a=commitdiff;h=a466912611aa6cbdf550cd10601390e587451246", + "https://lists.debian.org/debian-lts-announce/2022/03/msg00023.html", + "https://lists.debian.org/debian-lts-announce/2022/03/msg00024.html", + "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/323SNN6ZX7PRJJWP2BUAFLPUAE42XWLZ/", + "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/GDB3GQVJPXJE7X5C5JN6JAA4XUDWD6E6/", + "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/W6K3PR542DXWLEFFMFIDMME4CWMHJRMG/", + "https://psirt.global.sonicwall.com/vuln-detail/SNWLID-2022-0002", + "https://security.gentoo.org/glsa/202210-02", + "https://security.netapp.com/advisory/ntap-20220321-0002/", + "https://security.netapp.com/advisory/ntap-20220429-0005/", + "https://support.apple.com/kb/HT213255", + "https://support.apple.com/kb/HT213256", + "https://support.apple.com/kb/HT213257", + "https://www.debian.org/security/2022/dsa-5103", + "https://www.openssl.org/news/secadv/20220315.txt", + "https://www.oracle.com/security-alerts/cpuapr2022.html", + "https://www.oracle.com/security-alerts/cpujul2022.html", + "https://www.tenable.com/security/tns-2022-06", + "https://www.tenable.com/security/tns-2022-07", + "https://www.tenable.com/security/tns-2022-08", + "https://www.tenable.com/security/tns-2022-09" + ], + "description": "The BN_mod_sqrt() function, which computes a modular square root, contains a bug that can cause it to loop forever for non-prime moduli. Internally this function is used when parsing certificates that contain elliptic curve public keys in compressed form or explicit elliptic curve parameters with a base point encoded in compressed form. It is possible to trigger the infinite loop by crafting a certificate that has invalid explicit curve parameters. Since certificate parsing happens prior to verification of the certificate signature, any process that parses an externally supplied certificate may thus be subject to a denial of service attack. The infinite loop can also be reached when parsing crafted private keys as they can contain explicit elliptic curve parameters. Thus vulnerable situations include: - TLS clients consuming server certificates - TLS servers consuming client certificates - Hosting providers taking certificates or private keys from customers - Certificate authorities parsing certification requests from subscribers - Anything else which parses ASN.1 elliptic curve parameters Also any other applications that use the BN_mod_sqrt() where the attacker can control the parameter values are vulnerable to this DoS issue. In the OpenSSL 1.0.2 version the public key is not parsed during initial parsing of the certificate which makes it slightly harder to trigger the infinite loop. However any operation which requires the public key from the certificate will trigger the infinite loop. In particular the attacker can use a self-signed certificate to trigger the loop during verification of the certificate signature. This issue affects OpenSSL versions 1.0.2, 1.1.1 and 3.0. It was addressed in the releases of 1.1.1n and 3.0.2 on the 15th March 2022. Fixed in OpenSSL 3.0.2 (Affected 3.0.0,3.0.1). Fixed in OpenSSL 1.1.1n (Affected 1.1.1-1.1.1m). Fixed in OpenSSL 1.0.2zd (Affected 1.0.2-1.0.2zc).", + "cvss": null + } + ], + "matchDetails": [ + { + "type": "exact-indirect-match", + "matcher": "dpkg-matcher", + "searchedBy": { + "distro": { + "type": "debian", + "version": "9" + }, + "namespace": "debian:distro:debian:9", + "package": { + "name": "openssl", + "version": "1.1.0f-3+deb9u2" + } + }, + "found": { + "versionConstraint": "\u003c 1.1.0l-1~deb9u5 (deb)", + "vulnerabilityID": "CVE-2022-0778" + } + } + ], + "artifact": { + "name": "libssl1.1", + "version": "1.1.0f-3+deb9u2", + "type": "deb", + "locations": null, + "language": "", + "licenses": [], + "cpes": [ + "cpe:2.3:a:libssl1.1:libssl1.1:1.1.0f-3+deb9u2:*:*:*:*:*:*:*" + ], + "purl": "pkg:deb/debian/libssl1.1@1.1.0f-3+deb9u2?arch=amd64\u0026upstream=openssl\u0026distro=debian-9", + "upstreams": [ + { + "name": "openssl" + } + ], + "metadata": null + } + }, + { + "vulnerability": { + "id": "CVE-2022-0865", + "dataSource": "https://security-tracker.debian.org/tracker/CVE-2022-0865", + "namespace": "debian:distro:debian:9", + "severity": "Medium", + "urls": [ + "https://security-tracker.debian.org/tracker/CVE-2022-0865" + ], + "description": "Reachable Assertion in tiffcp in libtiff 4.3.0 allows attackers to cause a denial-of-service via a crafted tiff file. For users that compile libtiff from sources, the fix is available with commit 5e180045.", + "cvss": null, + "fix": { + "versions": [], + "state": "not-fixed" + }, + "advisories": null + }, + "relatedVulnerabilities": [ + { + "id": "CVE-2022-0865", + "dataSource": "https://nvd.nist.gov/vuln/detail/CVE-2022-0865", + "namespace": "nvd:cpe", + "severity": "Medium", + "urls": [ + "https://gitlab.com/gitlab-org/cves/-/blob/master/2022/CVE-2022-0865.json", + "https://gitlab.com/libtiff/libtiff/-/issues/385", + "https://gitlab.com/libtiff/libtiff/-/merge_requests/306", + "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/RNT2GFNRLOMKJ5KXM6JIHKBNBFDVZPD3/", + "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/ZQ4E654ZYUUUQNBKYQFXNK2CV3CPWTM2/", + "https://security.gentoo.org/glsa/202210-10", + "https://security.netapp.com/advisory/ntap-20221228-0008/", + "https://www.debian.org/security/2022/dsa-5108" + ], + "description": "Reachable Assertion in tiffcp in libtiff 4.3.0 allows attackers to cause a denial-of-service via a crafted tiff file. For users that compile libtiff from sources, the fix is available with commit 5e180045.", + "cvss": null + } + ], + "matchDetails": [ + { + "type": "exact-indirect-match", + "matcher": "dpkg-matcher", + "searchedBy": { + "distro": { + "type": "debian", + "version": "9" + }, + "namespace": "debian:distro:debian:9", + "package": { + "name": "tiff", + "version": "4.0.8-2+deb9u2" + } + }, + "found": { + "versionConstraint": "none (deb)", + "vulnerabilityID": "CVE-2022-0865" + } + } + ], + "artifact": { + "name": "libtiff5", + "version": "4.0.8-2+deb9u2", + "type": "deb", + "locations": null, + "language": "", + "licenses": [ + "LicenseRef-Hylafax" + ], + "cpes": [ + "cpe:2.3:a:libtiff5:libtiff5:4.0.8-2+deb9u2:*:*:*:*:*:*:*" + ], + "purl": "pkg:deb/debian/libtiff5@4.0.8-2+deb9u2?arch=amd64\u0026upstream=tiff\u0026distro=debian-9", + "upstreams": [ + { + "name": "tiff" + } + ], + "metadata": null + } + }, + { + "vulnerability": { + "id": "CVE-2022-0891", + "dataSource": "https://security-tracker.debian.org/tracker/CVE-2022-0891", + "namespace": "debian:distro:debian:9", + "severity": "High", + "urls": [ + "https://security-tracker.debian.org/tracker/CVE-2022-0891" + ], + "description": "A heap buffer overflow in ExtractImageSection function in tiffcrop.c in libtiff library Version 4.3.0 allows attacker to trigger unsafe or out of bounds memory access via crafted TIFF image file which could result into application crash, potential information disclosure or any other context-dependent impact", + "cvss": null, + "fix": { + "versions": [], + "state": "not-fixed" + }, + "advisories": null + }, + "relatedVulnerabilities": [ + { + "id": "CVE-2022-0891", + "dataSource": "https://nvd.nist.gov/vuln/detail/CVE-2022-0891", + "namespace": "nvd:cpe", + "severity": "High", + "urls": [ + "https://gitlab.com/freedesktop-sdk/mirrors/gitlab/libtiff/libtiff/-/commit/232282fd8f9c21eefe8d2d2b96cdbbb172fe7b7c", + "https://gitlab.com/gitlab-org/cves/-/blob/master/2022/CVE-2022-0891.json", + "https://gitlab.com/libtiff/libtiff/-/issues/380", + "https://gitlab.com/libtiff/libtiff/-/issues/382", + "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/RNT2GFNRLOMKJ5KXM6JIHKBNBFDVZPD3/", + "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/ZQ4E654ZYUUUQNBKYQFXNK2CV3CPWTM2/", + "https://security.gentoo.org/glsa/202210-10", + "https://security.netapp.com/advisory/ntap-20221228-0008/", + "https://www.debian.org/security/2022/dsa-5108" + ], + "description": "A heap buffer overflow in ExtractImageSection function in tiffcrop.c in libtiff library Version 4.3.0 allows attacker to trigger unsafe or out of bounds memory access via crafted TIFF image file which could result into application crash, potential information disclosure or any other context-dependent impact", + "cvss": null + } + ], + "matchDetails": [ + { + "type": "exact-indirect-match", + "matcher": "dpkg-matcher", + "searchedBy": { + "distro": { + "type": "debian", + "version": "9" + }, + "namespace": "debian:distro:debian:9", + "package": { + "name": "tiff", + "version": "4.0.8-2+deb9u2" + } + }, + "found": { + "versionConstraint": "none (deb)", + "vulnerabilityID": "CVE-2022-0891" + } + } + ], + "artifact": { + "name": "libtiff5", + "version": "4.0.8-2+deb9u2", + "type": "deb", + "locations": null, + "language": "", + "licenses": [ + "LicenseRef-Hylafax" + ], + "cpes": [ + "cpe:2.3:a:libtiff5:libtiff5:4.0.8-2+deb9u2:*:*:*:*:*:*:*" + ], + "purl": "pkg:deb/debian/libtiff5@4.0.8-2+deb9u2?arch=amd64\u0026upstream=tiff\u0026distro=debian-9", + "upstreams": [ + { + "name": "tiff" + } + ], + "metadata": null + } + }, + { + "vulnerability": { + "id": "CVE-2022-0907", + "dataSource": "https://security-tracker.debian.org/tracker/CVE-2022-0907", + "namespace": "debian:distro:debian:9", + "severity": "Medium", + "urls": [ + "https://security-tracker.debian.org/tracker/CVE-2022-0907" + ], + "description": "Unchecked Return Value to NULL Pointer Dereference in tiffcrop in libtiff 4.3.0 allows attackers to cause a denial-of-service via a crafted tiff file. For users that compile libtiff from sources, the fix is available with commit f2b656e2.", + "cvss": null, + "fix": { + "versions": [], + "state": "not-fixed" + }, + "advisories": null + }, + "relatedVulnerabilities": [ + { + "id": "CVE-2022-0907", + "dataSource": "https://nvd.nist.gov/vuln/detail/CVE-2022-0907", + "namespace": "nvd:cpe", + "severity": "Medium", + "urls": [ + "https://gitlab.com/gitlab-org/cves/-/blob/master/2022/CVE-2022-0907.json", + "https://gitlab.com/libtiff/libtiff/-/issues/392", + "https://gitlab.com/libtiff/libtiff/-/merge_requests/314", + "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/RNT2GFNRLOMKJ5KXM6JIHKBNBFDVZPD3/", + "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/ZQ4E654ZYUUUQNBKYQFXNK2CV3CPWTM2/", + "https://security.gentoo.org/glsa/202210-10", + "https://security.netapp.com/advisory/ntap-20220506-0002/", + "https://www.debian.org/security/2022/dsa-5108" + ], + "description": "Unchecked Return Value to NULL Pointer Dereference in tiffcrop in libtiff 4.3.0 allows attackers to cause a denial-of-service via a crafted tiff file. For users that compile libtiff from sources, the fix is available with commit f2b656e2.", + "cvss": null + } + ], + "matchDetails": [ + { + "type": "exact-indirect-match", + "matcher": "dpkg-matcher", + "searchedBy": { + "distro": { + "type": "debian", + "version": "9" + }, + "namespace": "debian:distro:debian:9", + "package": { + "name": "tiff", + "version": "4.0.8-2+deb9u2" + } + }, + "found": { + "versionConstraint": "none (deb)", + "vulnerabilityID": "CVE-2022-0907" + } + } + ], + "artifact": { + "name": "libtiff5", + "version": "4.0.8-2+deb9u2", + "type": "deb", + "locations": null, + "language": "", + "licenses": [ + "LicenseRef-Hylafax" + ], + "cpes": [ + "cpe:2.3:a:libtiff5:libtiff5:4.0.8-2+deb9u2:*:*:*:*:*:*:*" + ], + "purl": "pkg:deb/debian/libtiff5@4.0.8-2+deb9u2?arch=amd64\u0026upstream=tiff\u0026distro=debian-9", + "upstreams": [ + { + "name": "tiff" + } + ], + "metadata": null + } + }, + { + "vulnerability": { + "id": "CVE-2022-0908", + "dataSource": "https://security-tracker.debian.org/tracker/CVE-2022-0908", + "namespace": "debian:distro:debian:9", + "severity": "Medium", + "urls": [ + "https://security-tracker.debian.org/tracker/CVE-2022-0908" + ], + "description": "Null source pointer passed as an argument to memcpy() function within TIFFFetchNormalTag () in tif_dirread.c in libtiff versions up to 4.3.0 could lead to Denial of Service via crafted TIFF file.", + "cvss": null, + "fix": { + "versions": [], + "state": "not-fixed" + }, + "advisories": null + }, + "relatedVulnerabilities": [ + { + "id": "CVE-2022-0908", + "dataSource": "https://nvd.nist.gov/vuln/detail/CVE-2022-0908", + "namespace": "nvd:cpe", + "severity": "Medium", + "urls": [ + "https://gitlab.com/gitlab-org/cves/-/blob/master/2022/CVE-2022-0908.json", + "https://gitlab.com/libtiff/libtiff/-/commit/a95b799f65064e4ba2e2dfc206808f86faf93e85", + "https://gitlab.com/libtiff/libtiff/-/issues/383", + "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/RNT2GFNRLOMKJ5KXM6JIHKBNBFDVZPD3/", + "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/ZQ4E654ZYUUUQNBKYQFXNK2CV3CPWTM2/", + "https://security.gentoo.org/glsa/202210-10", + "https://security.netapp.com/advisory/ntap-20220506-0002/", + "https://www.debian.org/security/2022/dsa-5108" + ], + "description": "Null source pointer passed as an argument to memcpy() function within TIFFFetchNormalTag () in tif_dirread.c in libtiff versions up to 4.3.0 could lead to Denial of Service via crafted TIFF file.", + "cvss": null + } + ], + "matchDetails": [ + { + "type": "exact-indirect-match", + "matcher": "dpkg-matcher", + "searchedBy": { + "distro": { + "type": "debian", + "version": "9" + }, + "namespace": "debian:distro:debian:9", + "package": { + "name": "tiff", + "version": "4.0.8-2+deb9u2" + } + }, + "found": { + "versionConstraint": "none (deb)", + "vulnerabilityID": "CVE-2022-0908" + } + } + ], + "artifact": { + "name": "libtiff5", + "version": "4.0.8-2+deb9u2", + "type": "deb", + "locations": null, + "language": "", + "licenses": [ + "LicenseRef-Hylafax" + ], + "cpes": [ + "cpe:2.3:a:libtiff5:libtiff5:4.0.8-2+deb9u2:*:*:*:*:*:*:*" + ], + "purl": "pkg:deb/debian/libtiff5@4.0.8-2+deb9u2?arch=amd64\u0026upstream=tiff\u0026distro=debian-9", + "upstreams": [ + { + "name": "tiff" + } + ], + "metadata": null + } + }, + { + "vulnerability": { + "id": "CVE-2022-0909", + "dataSource": "https://security-tracker.debian.org/tracker/CVE-2022-0909", + "namespace": "debian:distro:debian:9", + "severity": "Medium", + "urls": [ + "https://security-tracker.debian.org/tracker/CVE-2022-0909" + ], + "description": "Divide By Zero error in tiffcrop in libtiff 4.3.0 allows attackers to cause a denial-of-service via a crafted tiff file. For users that compile libtiff from sources, the fix is available with commit f8d0f9aa.", + "cvss": null, + "fix": { + "versions": [], + "state": "not-fixed" + }, + "advisories": null + }, + "relatedVulnerabilities": [ + { + "id": "CVE-2022-0909", + "dataSource": "https://nvd.nist.gov/vuln/detail/CVE-2022-0909", + "namespace": "nvd:cpe", + "severity": "Medium", + "urls": [ + "https://gitlab.com/gitlab-org/cves/-/blob/master/2022/CVE-2022-0909.json", + "https://gitlab.com/libtiff/libtiff/-/issues/393", + "https://gitlab.com/libtiff/libtiff/-/merge_requests/310", + "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/RNT2GFNRLOMKJ5KXM6JIHKBNBFDVZPD3/", + "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/ZQ4E654ZYUUUQNBKYQFXNK2CV3CPWTM2/", + "https://security.gentoo.org/glsa/202210-10", + "https://security.netapp.com/advisory/ntap-20220506-0002/", + "https://www.debian.org/security/2022/dsa-5108" + ], + "description": "Divide By Zero error in tiffcrop in libtiff 4.3.0 allows attackers to cause a denial-of-service via a crafted tiff file. For users that compile libtiff from sources, the fix is available with commit f8d0f9aa.", + "cvss": null + } + ], + "matchDetails": [ + { + "type": "exact-indirect-match", + "matcher": "dpkg-matcher", + "searchedBy": { + "distro": { + "type": "debian", + "version": "9" + }, + "namespace": "debian:distro:debian:9", + "package": { + "name": "tiff", + "version": "4.0.8-2+deb9u2" + } + }, + "found": { + "versionConstraint": "none (deb)", + "vulnerabilityID": "CVE-2022-0909" + } + } + ], + "artifact": { + "name": "libtiff5", + "version": "4.0.8-2+deb9u2", + "type": "deb", + "locations": null, + "language": "", + "licenses": [ + "LicenseRef-Hylafax" + ], + "cpes": [ + "cpe:2.3:a:libtiff5:libtiff5:4.0.8-2+deb9u2:*:*:*:*:*:*:*" + ], + "purl": "pkg:deb/debian/libtiff5@4.0.8-2+deb9u2?arch=amd64\u0026upstream=tiff\u0026distro=debian-9", + "upstreams": [ + { + "name": "tiff" + } + ], + "metadata": null + } + }, + { + "vulnerability": { + "id": "CVE-2022-0924", + "dataSource": "https://security-tracker.debian.org/tracker/CVE-2022-0924", + "namespace": "debian:distro:debian:9", + "severity": "Medium", + "urls": [ + "https://security-tracker.debian.org/tracker/CVE-2022-0924" + ], + "description": "Out-of-bounds Read error in tiffcp in libtiff 4.3.0 allows attackers to cause a denial-of-service via a crafted tiff file. For users that compile libtiff from sources, the fix is available with commit 408976c4.", + "cvss": null, + "fix": { + "versions": [], + "state": "not-fixed" + }, + "advisories": null + }, + "relatedVulnerabilities": [ + { + "id": "CVE-2022-0924", + "dataSource": "https://nvd.nist.gov/vuln/detail/CVE-2022-0924", + "namespace": "nvd:cpe", + "severity": "Medium", + "urls": [ + "https://gitlab.com/gitlab-org/cves/-/blob/master/2022/CVE-2022-0924.json", + "https://gitlab.com/libtiff/libtiff/-/issues/278", + "https://gitlab.com/libtiff/libtiff/-/merge_requests/311", + "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/RNT2GFNRLOMKJ5KXM6JIHKBNBFDVZPD3/", + "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/ZQ4E654ZYUUUQNBKYQFXNK2CV3CPWTM2/", + "https://security.gentoo.org/glsa/202210-10", + "https://security.netapp.com/advisory/ntap-20220506-0002/", + "https://www.debian.org/security/2022/dsa-5108" + ], + "description": "Out-of-bounds Read error in tiffcp in libtiff 4.3.0 allows attackers to cause a denial-of-service via a crafted tiff file. For users that compile libtiff from sources, the fix is available with commit 408976c4.", + "cvss": null + } + ], + "matchDetails": [ + { + "type": "exact-indirect-match", + "matcher": "dpkg-matcher", + "searchedBy": { + "distro": { + "type": "debian", + "version": "9" + }, + "namespace": "debian:distro:debian:9", + "package": { + "name": "tiff", + "version": "4.0.8-2+deb9u2" + } + }, + "found": { + "versionConstraint": "none (deb)", + "vulnerabilityID": "CVE-2022-0924" + } + } + ], + "artifact": { + "name": "libtiff5", + "version": "4.0.8-2+deb9u2", + "type": "deb", + "locations": null, + "language": "", + "licenses": [ + "LicenseRef-Hylafax" + ], + "cpes": [ + "cpe:2.3:a:libtiff5:libtiff5:4.0.8-2+deb9u2:*:*:*:*:*:*:*" + ], + "purl": "pkg:deb/debian/libtiff5@4.0.8-2+deb9u2?arch=amd64\u0026upstream=tiff\u0026distro=debian-9", + "upstreams": [ + { + "name": "tiff" + } + ], + "metadata": null + } + }, + { + "vulnerability": { + "id": "CVE-2022-1056", + "dataSource": "https://security-tracker.debian.org/tracker/CVE-2022-1056", + "namespace": "debian:distro:debian:9", + "severity": "Negligible", + "urls": [ + "https://security-tracker.debian.org/tracker/CVE-2022-1056" + ], + "description": "Out-of-bounds Read error in tiffcrop in libtiff 4.3.0 allows attackers to cause a denial-of-service via a crafted tiff file. For users that compile libtiff from sources, the fix is available with commit 46dc8fcd.", + "cvss": null, + "fix": { + "versions": [], + "state": "not-fixed" + }, + "advisories": null + }, + "relatedVulnerabilities": [ + { + "id": "CVE-2022-1056", + "dataSource": "https://nvd.nist.gov/vuln/detail/CVE-2022-1056", + "namespace": "nvd:cpe", + "severity": "Medium", + "urls": [ + "https://gitlab.com/gitlab-org/cves/-/blob/master/2022/CVE-2022-1056.json", + "https://gitlab.com/libtiff/libtiff/-/issues/391", + "https://gitlab.com/libtiff/libtiff/-/merge_requests/307", + "https://security.gentoo.org/glsa/202210-10", + "https://security.netapp.com/advisory/ntap-20221228-0008/" + ], + "description": "Out-of-bounds Read error in tiffcrop in libtiff 4.3.0 allows attackers to cause a denial-of-service via a crafted tiff file. For users that compile libtiff from sources, the fix is available with commit 46dc8fcd.", + "cvss": null + } + ], + "matchDetails": [ + { + "type": "exact-indirect-match", + "matcher": "dpkg-matcher", + "searchedBy": { + "distro": { + "type": "debian", + "version": "9" + }, + "namespace": "debian:distro:debian:9", + "package": { + "name": "tiff", + "version": "4.0.8-2+deb9u2" + } + }, + "found": { + "versionConstraint": "none (deb)", + "vulnerabilityID": "CVE-2022-1056" + } + } + ], + "artifact": { + "name": "libtiff5", + "version": "4.0.8-2+deb9u2", + "type": "deb", + "locations": null, + "language": "", + "licenses": [ + "LicenseRef-Hylafax" + ], + "cpes": [ + "cpe:2.3:a:libtiff5:libtiff5:4.0.8-2+deb9u2:*:*:*:*:*:*:*" + ], + "purl": "pkg:deb/debian/libtiff5@4.0.8-2+deb9u2?arch=amd64\u0026upstream=tiff\u0026distro=debian-9", + "upstreams": [ + { + "name": "tiff" + } + ], + "metadata": null + } + }, + { + "vulnerability": { + "id": "CVE-2022-1210", + "dataSource": "https://security-tracker.debian.org/tracker/CVE-2022-1210", + "namespace": "debian:distro:debian:9", + "severity": "Medium", + "urls": [ + "https://security-tracker.debian.org/tracker/CVE-2022-1210" + ], + "description": "A vulnerability classified as problematic was found in LibTIFF 4.3.0. Affected by this vulnerability is the TIFF File Handler of tiff2ps. Opening a malicious file leads to a denial of service. The attack can be launched remotely but requires user interaction. The exploit has been disclosed to the public and may be used.", + "cvss": null, + "fix": { + "versions": [], + "state": "not-fixed" + }, + "advisories": null + }, + "relatedVulnerabilities": [ + { + "id": "CVE-2022-1210", + "dataSource": "https://nvd.nist.gov/vuln/detail/CVE-2022-1210", + "namespace": "nvd:cpe", + "severity": "Medium", + "urls": [ + "https://gitlab.com/libtiff/libtiff/-/issues/402", + "https://gitlab.com/libtiff/libtiff/uploads/c3da94e53cf1e1e8e6d4d3780dc8c42f/example.tiff", + "https://security.gentoo.org/glsa/202210-10", + "https://security.netapp.com/advisory/ntap-20220513-0005/", + "https://vuldb.com/?id.196363" + ], + "description": "A vulnerability classified as problematic was found in LibTIFF 4.3.0. Affected by this vulnerability is the TIFF File Handler of tiff2ps. Opening a malicious file leads to a denial of service. The attack can be launched remotely but requires user interaction. The exploit has been disclosed to the public and may be used.", + "cvss": null + } + ], + "matchDetails": [ + { + "type": "exact-indirect-match", + "matcher": "dpkg-matcher", + "searchedBy": { + "distro": { + "type": "debian", + "version": "9" + }, + "namespace": "debian:distro:debian:9", + "package": { + "name": "tiff", + "version": "4.0.8-2+deb9u2" + } + }, + "found": { + "versionConstraint": "none (deb)", + "vulnerabilityID": "CVE-2022-1210" + } + } + ], + "artifact": { + "name": "libtiff5", + "version": "4.0.8-2+deb9u2", + "type": "deb", + "locations": null, + "language": "", + "licenses": [ + "LicenseRef-Hylafax" + ], + "cpes": [ + "cpe:2.3:a:libtiff5:libtiff5:4.0.8-2+deb9u2:*:*:*:*:*:*:*" + ], + "purl": "pkg:deb/debian/libtiff5@4.0.8-2+deb9u2?arch=amd64\u0026upstream=tiff\u0026distro=debian-9", + "upstreams": [ + { + "name": "tiff" + } + ], + "metadata": null + } + }, + { + "vulnerability": { + "id": "CVE-2022-1271", + "dataSource": "https://security-tracker.debian.org/tracker/CVE-2022-1271", + "namespace": "debian:distro:debian:9", + "severity": "High", + "urls": [ + "https://security-tracker.debian.org/tracker/CVE-2022-1271" + ], + "cvss": null, + "fix": { + "versions": [ + "1.6-5+deb9u1" + ], + "state": "fixed" + }, + "advisories": null + }, + "relatedVulnerabilities": [ + { + "id": "CVE-2022-1271", + "dataSource": "https://nvd.nist.gov/vuln/detail/CVE-2022-1271", + "namespace": "nvd:cpe", + "severity": "High", + "urls": [ + "https://access.redhat.com/security/cve/CVE-2022-1271", + "https://bugzilla.redhat.com/show_bug.cgi?id=2073310", + "https://git.tukaani.org/?p=xz.git;a=commit;h=69d1b3fc29677af8ade8dc15dba83f0589cb63d6", + "https://lists.gnu.org/r/bug-gzip/2022-04/msg00011.html", + "https://security-tracker.debian.org/tracker/CVE-2022-1271", + "https://security.gentoo.org/glsa/202209-01", + "https://security.netapp.com/advisory/ntap-20220930-0006/", + "https://tukaani.org/xz/xzgrep-ZDI-CAN-16587.patch", + "https://www.openwall.com/lists/oss-security/2022/04/07/8" + ], + "description": "An arbitrary file write vulnerability was found in GNU gzip's zgrep utility. When zgrep is applied on the attacker's chosen file name (for example, a crafted file name), this can overwrite an attacker's content to an arbitrary attacker-selected file. This flaw occurs due to insufficient validation when processing filenames with two or more newlines where selected content and the target file names are embedded in crafted multi-line file names. This flaw allows a remote, low privileged attacker to force zgrep to write arbitrary files on the system.", + "cvss": null + } + ], + "matchDetails": [ + { + "type": "exact-direct-match", + "matcher": "dpkg-matcher", + "searchedBy": { + "distro": { + "type": "debian", + "version": "9" + }, + "namespace": "debian:distro:debian:9", + "package": { + "name": "gzip", + "version": "1.6-5+b1" + } + }, + "found": { + "versionConstraint": "\u003c 1.6-5+deb9u1 (deb)", + "vulnerabilityID": "CVE-2022-1271" + } + }, + { + "type": "exact-indirect-match", + "matcher": "dpkg-matcher", + "searchedBy": { + "distro": { + "type": "debian", + "version": "9" + }, + "namespace": "debian:distro:debian:9", + "package": { + "name": "gzip", + "version": "1.6-5" + } + }, + "found": { + "versionConstraint": "\u003c 1.6-5+deb9u1 (deb)", + "vulnerabilityID": "CVE-2022-1271" + } + } + ], + "artifact": { + "name": "gzip", + "version": "1.6-5+b1", + "type": "deb", + "locations": null, + "language": "", + "licenses": [ + "LicenseRef-GPL" + ], + "cpes": [ + "cpe:2.3:a:gzip:gzip:1.6-5+b1:*:*:*:*:*:*:*" + ], + "purl": "pkg:deb/debian/gzip@1.6-5+b1?arch=amd64\u0026upstream=gzip%401.6-5\u0026distro=debian-9", + "upstreams": [ + { + "name": "gzip", + "version": "1.6-5" + } + ], + "metadata": null + } + }, + { + "vulnerability": { + "id": "CVE-2022-1271", + "dataSource": "https://security-tracker.debian.org/tracker/CVE-2022-1271", + "namespace": "debian:distro:debian:9", + "severity": "High", + "urls": [ + "https://security-tracker.debian.org/tracker/CVE-2022-1271" + ], + "cvss": null, + "fix": { + "versions": [ + "5.2.2-1.2+deb9u1" + ], + "state": "fixed" + }, + "advisories": null + }, + "relatedVulnerabilities": [ + { + "id": "CVE-2022-1271", + "dataSource": "https://nvd.nist.gov/vuln/detail/CVE-2022-1271", + "namespace": "nvd:cpe", + "severity": "High", + "urls": [ + "https://access.redhat.com/security/cve/CVE-2022-1271", + "https://bugzilla.redhat.com/show_bug.cgi?id=2073310", + "https://git.tukaani.org/?p=xz.git;a=commit;h=69d1b3fc29677af8ade8dc15dba83f0589cb63d6", + "https://lists.gnu.org/r/bug-gzip/2022-04/msg00011.html", + "https://security-tracker.debian.org/tracker/CVE-2022-1271", + "https://security.gentoo.org/glsa/202209-01", + "https://security.netapp.com/advisory/ntap-20220930-0006/", + "https://tukaani.org/xz/xzgrep-ZDI-CAN-16587.patch", + "https://www.openwall.com/lists/oss-security/2022/04/07/8" + ], + "description": "An arbitrary file write vulnerability was found in GNU gzip's zgrep utility. When zgrep is applied on the attacker's chosen file name (for example, a crafted file name), this can overwrite an attacker's content to an arbitrary attacker-selected file. This flaw occurs due to insufficient validation when processing filenames with two or more newlines where selected content and the target file names are embedded in crafted multi-line file names. This flaw allows a remote, low privileged attacker to force zgrep to write arbitrary files on the system.", + "cvss": null + } + ], + "matchDetails": [ + { + "type": "exact-indirect-match", + "matcher": "dpkg-matcher", + "searchedBy": { + "distro": { + "type": "debian", + "version": "9" + }, + "namespace": "debian:distro:debian:9", + "package": { + "name": "xz-utils", + "version": "5.2.2-1.2" + } + }, + "found": { + "versionConstraint": "\u003c 5.2.2-1.2+deb9u1 (deb)", + "vulnerabilityID": "CVE-2022-1271" + } + } + ], + "artifact": { + "name": "liblzma5", + "version": "5.2.2-1.2+b1", + "type": "deb", + "locations": null, + "language": "", + "licenses": [ + "LicenseRef-Autoconf", + "GPL-2.0-only", + "GPL-2.0-or-later", + "GPL-3.0-only", + "LGPL-2.0-only", + "LGPL-2.1-only", + "LGPL-2.1-or-later", + "LicenseRef-PD", + "LicenseRef-PD-debian", + "LicenseRef-config-h", + "LicenseRef-noderivs", + "LicenseRef-permissive-fsf", + "LicenseRef-permissive-nowarranty", + "LicenseRef-probably-PD" + ], + "cpes": [ + "cpe:2.3:a:liblzma5:liblzma5:5.2.2-1.2+b1:*:*:*:*:*:*:*" + ], + "purl": "pkg:deb/debian/liblzma5@5.2.2-1.2+b1?arch=amd64\u0026upstream=xz-utils%405.2.2-1.2\u0026distro=debian-9", + "upstreams": [ + { + "name": "xz-utils", + "version": "5.2.2-1.2" + } + ], + "metadata": null + } + }, + { + "vulnerability": { + "id": "CVE-2022-1292", + "dataSource": "https://security-tracker.debian.org/tracker/CVE-2022-1292", + "namespace": "debian:distro:debian:9", + "severity": "Critical", + "urls": [ + "https://security-tracker.debian.org/tracker/CVE-2022-1292" + ], + "description": "The c_rehash script does not properly sanitise shell metacharacters to prevent command injection. This script is distributed by some operating systems in a manner where it is automatically executed. On such operating systems, an attacker could execute arbitrary commands with the privileges of the script. Use of the c_rehash script is considered obsolete and should be replaced by the OpenSSL rehash command line tool. Fixed in OpenSSL 3.0.3 (Affected 3.0.0,3.0.1,3.0.2). Fixed in OpenSSL 1.1.1o (Affected 1.1.1-1.1.1n). Fixed in OpenSSL 1.0.2ze (Affected 1.0.2-1.0.2zd).", + "cvss": null, + "fix": { + "versions": [ + "1.1.0l-1~deb9u6" + ], + "state": "fixed" + }, + "advisories": null + }, + "relatedVulnerabilities": [ + { + "id": "CVE-2022-1292", + "dataSource": "https://nvd.nist.gov/vuln/detail/CVE-2022-1292", + "namespace": "nvd:cpe", + "severity": "Critical", + "urls": [ + "https://cert-portal.siemens.com/productcert/pdf/ssa-953464.pdf", + "https://git.openssl.org/gitweb/?p=openssl.git;a=commitdiff;h=1ad73b4d27bd8c1b369a3cd453681d3a4f1bb9b2", + "https://git.openssl.org/gitweb/?p=openssl.git;a=commitdiff;h=548d3f280a6e737673f5b61fce24bb100108dfeb", + "https://git.openssl.org/gitweb/?p=openssl.git;a=commitdiff;h=e5fd1728ef4c7a5bf7c7a7163ca60370460a6e23", + "https://lists.debian.org/debian-lts-announce/2022/05/msg00019.html", + "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/VX4KWHPMKYJL6ZLW4M5IU7E5UV5ZWJQU/", + "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/ZNU5M7BXMML26G3GPYKFGQYPQDRSNKDD/", + "https://psirt.global.sonicwall.com/vuln-detail/SNWLID-2022-0011", + "https://security.gentoo.org/glsa/202210-02", + "https://security.netapp.com/advisory/ntap-20220602-0009/", + "https://security.netapp.com/advisory/ntap-20220729-0004/", + "https://www.debian.org/security/2022/dsa-5139", + "https://www.openssl.org/news/secadv/20220503.txt", + "https://www.oracle.com/security-alerts/cpujul2022.html" + ], + "description": "The c_rehash script does not properly sanitise shell metacharacters to prevent command injection. This script is distributed by some operating systems in a manner where it is automatically executed. On such operating systems, an attacker could execute arbitrary commands with the privileges of the script. Use of the c_rehash script is considered obsolete and should be replaced by the OpenSSL rehash command line tool. Fixed in OpenSSL 3.0.3 (Affected 3.0.0,3.0.1,3.0.2). Fixed in OpenSSL 1.1.1o (Affected 1.1.1-1.1.1n). Fixed in OpenSSL 1.0.2ze (Affected 1.0.2-1.0.2zd).", + "cvss": null + } + ], + "matchDetails": [ + { + "type": "exact-indirect-match", + "matcher": "dpkg-matcher", + "searchedBy": { + "distro": { + "type": "debian", + "version": "9" + }, + "namespace": "debian:distro:debian:9", + "package": { + "name": "openssl", + "version": "1.1.0f-3+deb9u2" + } + }, + "found": { + "versionConstraint": "\u003c 1.1.0l-1~deb9u6 (deb)", + "vulnerabilityID": "CVE-2022-1292" + } + } + ], + "artifact": { + "name": "libssl1.1", + "version": "1.1.0f-3+deb9u2", + "type": "deb", + "locations": null, + "language": "", + "licenses": [], + "cpes": [ + "cpe:2.3:a:libssl1.1:libssl1.1:1.1.0f-3+deb9u2:*:*:*:*:*:*:*" + ], + "purl": "pkg:deb/debian/libssl1.1@1.1.0f-3+deb9u2?arch=amd64\u0026upstream=openssl\u0026distro=debian-9", + "upstreams": [ + { + "name": "openssl" + } + ], + "metadata": null + } + }, + { + "vulnerability": { + "id": "CVE-2022-1304", + "dataSource": "https://security-tracker.debian.org/tracker/CVE-2022-1304", + "namespace": "debian:distro:debian:9", + "severity": "High", + "urls": [ + "https://security-tracker.debian.org/tracker/CVE-2022-1304" + ], + "description": "An out-of-bounds read/write vulnerability was found in e2fsprogs 1.46.5. This issue leads to a segmentation fault and possibly arbitrary code execution via a specially crafted filesystem.", + "cvss": null, + "fix": { + "versions": [], + "state": "wont-fix" + }, + "advisories": null + }, + "relatedVulnerabilities": [ + { + "id": "CVE-2022-1304", + "dataSource": "https://nvd.nist.gov/vuln/detail/CVE-2022-1304", + "namespace": "nvd:cpe", + "severity": "High", + "urls": [ + "https://bugzilla.redhat.com/show_bug.cgi?id=2069726" + ], + "description": "An out-of-bounds read/write vulnerability was found in e2fsprogs 1.46.5. This issue leads to a segmentation fault and possibly arbitrary code execution via a specially crafted filesystem.", + "cvss": null + } + ], + "matchDetails": [ + { + "type": "exact-indirect-match", + "matcher": "dpkg-matcher", + "searchedBy": { + "distro": { + "type": "debian", + "version": "9" + }, + "namespace": "debian:distro:debian:9", + "package": { + "name": "e2fsprogs", + "version": "1.43.4-2" + } + }, + "found": { + "versionConstraint": "none (deb)", + "vulnerabilityID": "CVE-2022-1304" + } + } + ], + "artifact": { + "name": "e2fslibs", + "version": "1.43.4-2", + "type": "deb", + "locations": null, + "language": "", + "licenses": [ + "GPL-2.0-only", + "LGPL-2.0-only" + ], + "cpes": [ + "cpe:2.3:a:e2fslibs:e2fslibs:1.43.4-2:*:*:*:*:*:*:*" + ], + "purl": "pkg:deb/debian/e2fslibs@1.43.4-2?arch=amd64\u0026upstream=e2fsprogs\u0026distro=debian-9", + "upstreams": [ + { + "name": "e2fsprogs" + } + ], + "metadata": null + } + }, + { + "vulnerability": { + "id": "CVE-2022-1304", + "dataSource": "https://security-tracker.debian.org/tracker/CVE-2022-1304", + "namespace": "debian:distro:debian:9", + "severity": "High", + "urls": [ + "https://security-tracker.debian.org/tracker/CVE-2022-1304" + ], + "description": "An out-of-bounds read/write vulnerability was found in e2fsprogs 1.46.5. This issue leads to a segmentation fault and possibly arbitrary code execution via a specially crafted filesystem.", + "cvss": null, + "fix": { + "versions": [], + "state": "wont-fix" + }, + "advisories": null + }, + "relatedVulnerabilities": [ + { + "id": "CVE-2022-1304", + "dataSource": "https://nvd.nist.gov/vuln/detail/CVE-2022-1304", + "namespace": "nvd:cpe", + "severity": "High", + "urls": [ + "https://bugzilla.redhat.com/show_bug.cgi?id=2069726" + ], + "description": "An out-of-bounds read/write vulnerability was found in e2fsprogs 1.46.5. This issue leads to a segmentation fault and possibly arbitrary code execution via a specially crafted filesystem.", + "cvss": null + } + ], + "matchDetails": [ + { + "type": "exact-direct-match", + "matcher": "dpkg-matcher", + "searchedBy": { + "distro": { + "type": "debian", + "version": "9" + }, + "namespace": "debian:distro:debian:9", + "package": { + "name": "e2fsprogs", + "version": "1.43.4-2" + } + }, + "found": { + "versionConstraint": "none (deb)", + "vulnerabilityID": "CVE-2022-1304" + } + } + ], + "artifact": { + "name": "e2fsprogs", + "version": "1.43.4-2", + "type": "deb", + "locations": null, + "language": "", + "licenses": [ + "GPL-2.0-only", + "LGPL-2.0-only" + ], + "cpes": [ + "cpe:2.3:a:e2fsprogs:e2fsprogs:1.43.4-2:*:*:*:*:*:*:*" + ], + "purl": "pkg:deb/debian/e2fsprogs@1.43.4-2?arch=amd64\u0026distro=debian-9", + "upstreams": null, + "metadata": null + } + }, + { + "vulnerability": { + "id": "CVE-2022-1304", + "dataSource": "https://security-tracker.debian.org/tracker/CVE-2022-1304", + "namespace": "debian:distro:debian:9", + "severity": "High", + "urls": [ + "https://security-tracker.debian.org/tracker/CVE-2022-1304" + ], + "description": "An out-of-bounds read/write vulnerability was found in e2fsprogs 1.46.5. This issue leads to a segmentation fault and possibly arbitrary code execution via a specially crafted filesystem.", + "cvss": null, + "fix": { + "versions": [], + "state": "wont-fix" + }, + "advisories": null + }, + "relatedVulnerabilities": [ + { + "id": "CVE-2022-1304", + "dataSource": "https://nvd.nist.gov/vuln/detail/CVE-2022-1304", + "namespace": "nvd:cpe", + "severity": "High", + "urls": [ + "https://bugzilla.redhat.com/show_bug.cgi?id=2069726" + ], + "description": "An out-of-bounds read/write vulnerability was found in e2fsprogs 1.46.5. This issue leads to a segmentation fault and possibly arbitrary code execution via a specially crafted filesystem.", + "cvss": null + } + ], + "matchDetails": [ + { + "type": "exact-indirect-match", + "matcher": "dpkg-matcher", + "searchedBy": { + "distro": { + "type": "debian", + "version": "9" + }, + "namespace": "debian:distro:debian:9", + "package": { + "name": "e2fsprogs", + "version": "1.43.4-2" + } + }, + "found": { + "versionConstraint": "none (deb)", + "vulnerabilityID": "CVE-2022-1304" + } + } + ], + "artifact": { + "name": "libcomerr2", + "version": "1.43.4-2", + "type": "deb", + "locations": null, + "language": "", + "licenses": [], + "cpes": [ + "cpe:2.3:a:libcomerr2:libcomerr2:1.43.4-2:*:*:*:*:*:*:*" + ], + "purl": "pkg:deb/debian/libcomerr2@1.43.4-2?arch=amd64\u0026upstream=e2fsprogs\u0026distro=debian-9", + "upstreams": [ + { + "name": "e2fsprogs" + } + ], + "metadata": null + } + }, + { + "vulnerability": { + "id": "CVE-2022-1304", + "dataSource": "https://security-tracker.debian.org/tracker/CVE-2022-1304", + "namespace": "debian:distro:debian:9", + "severity": "High", + "urls": [ + "https://security-tracker.debian.org/tracker/CVE-2022-1304" + ], + "description": "An out-of-bounds read/write vulnerability was found in e2fsprogs 1.46.5. This issue leads to a segmentation fault and possibly arbitrary code execution via a specially crafted filesystem.", + "cvss": null, + "fix": { + "versions": [], + "state": "wont-fix" + }, + "advisories": null + }, + "relatedVulnerabilities": [ + { + "id": "CVE-2022-1304", + "dataSource": "https://nvd.nist.gov/vuln/detail/CVE-2022-1304", + "namespace": "nvd:cpe", + "severity": "High", + "urls": [ + "https://bugzilla.redhat.com/show_bug.cgi?id=2069726" + ], + "description": "An out-of-bounds read/write vulnerability was found in e2fsprogs 1.46.5. This issue leads to a segmentation fault and possibly arbitrary code execution via a specially crafted filesystem.", + "cvss": null + } + ], + "matchDetails": [ + { + "type": "exact-indirect-match", + "matcher": "dpkg-matcher", + "searchedBy": { + "distro": { + "type": "debian", + "version": "9" + }, + "namespace": "debian:distro:debian:9", + "package": { + "name": "e2fsprogs", + "version": "1.43.4-2" + } + }, + "found": { + "versionConstraint": "none (deb)", + "vulnerabilityID": "CVE-2022-1304" + } + } + ], + "artifact": { + "name": "libss2", + "version": "1.43.4-2", + "type": "deb", + "locations": null, + "language": "", + "licenses": [], + "cpes": [ + "cpe:2.3:a:libss2:libss2:1.43.4-2:*:*:*:*:*:*:*" + ], + "purl": "pkg:deb/debian/libss2@1.43.4-2?arch=amd64\u0026upstream=e2fsprogs\u0026distro=debian-9", + "upstreams": [ + { + "name": "e2fsprogs" + } + ], + "metadata": null + } + }, + { + "vulnerability": { + "id": "CVE-2022-1354", + "dataSource": "https://security-tracker.debian.org/tracker/CVE-2022-1354", + "namespace": "debian:distro:debian:9", + "severity": "Medium", + "urls": [ + "https://security-tracker.debian.org/tracker/CVE-2022-1354" + ], + "cvss": null, + "fix": { + "versions": [], + "state": "not-fixed" + }, + "advisories": null + }, + "relatedVulnerabilities": [ + { + "id": "CVE-2022-1354", + "dataSource": "https://nvd.nist.gov/vuln/detail/CVE-2022-1354", + "namespace": "nvd:cpe", + "severity": "Medium", + "urls": [ + "https://access.redhat.com/security/cve/CVE-2022-1354", + "https://bugzilla.redhat.com/show_bug.cgi?id=2074404", + "https://gitlab.com/libtiff/libtiff/-/commit/87f580f39011109b3bb5f6eca13fac543a542798", + "https://gitlab.com/libtiff/libtiff/-/issues/319", + "https://lists.debian.org/debian-lts-announce/2023/01/msg00018.html", + "https://security.gentoo.org/glsa/202210-10", + "https://security.netapp.com/advisory/ntap-20221014-0007/", + "https://www.debian.org/security/2023/dsa-5333" + ], + "description": "A heap buffer overflow flaw was found in Libtiffs' tiffinfo.c in TIFFReadRawDataStriped() function. This flaw allows an attacker to pass a crafted TIFF file to the tiffinfo tool, triggering a heap buffer overflow issue and causing a crash that leads to a denial of service.", + "cvss": null + } + ], + "matchDetails": [ + { + "type": "exact-indirect-match", + "matcher": "dpkg-matcher", + "searchedBy": { + "distro": { + "type": "debian", + "version": "9" + }, + "namespace": "debian:distro:debian:9", + "package": { + "name": "tiff", + "version": "4.0.8-2+deb9u2" + } + }, + "found": { + "versionConstraint": "none (deb)", + "vulnerabilityID": "CVE-2022-1354" + } + } + ], + "artifact": { + "name": "libtiff5", + "version": "4.0.8-2+deb9u2", + "type": "deb", + "locations": null, + "language": "", + "licenses": [ + "LicenseRef-Hylafax" + ], + "cpes": [ + "cpe:2.3:a:libtiff5:libtiff5:4.0.8-2+deb9u2:*:*:*:*:*:*:*" + ], + "purl": "pkg:deb/debian/libtiff5@4.0.8-2+deb9u2?arch=amd64\u0026upstream=tiff\u0026distro=debian-9", + "upstreams": [ + { + "name": "tiff" + } + ], + "metadata": null + } + }, + { + "vulnerability": { + "id": "CVE-2022-1355", + "dataSource": "https://security-tracker.debian.org/tracker/CVE-2022-1355", + "namespace": "debian:distro:debian:9", + "severity": "Medium", + "urls": [ + "https://security-tracker.debian.org/tracker/CVE-2022-1355" + ], + "cvss": null, + "fix": { + "versions": [], + "state": "not-fixed" + }, + "advisories": null + }, + "relatedVulnerabilities": [ + { + "id": "CVE-2022-1355", + "dataSource": "https://nvd.nist.gov/vuln/detail/CVE-2022-1355", + "namespace": "nvd:cpe", + "severity": "Medium", + "urls": [ + "https://access.redhat.com/security/cve/CVE-2022-1355", + "https://bugzilla.redhat.com/show_bug.cgi?id=2074415", + "https://gitlab.com/libtiff/libtiff/-/issues/400", + "https://gitlab.com/libtiff/libtiff/-/merge_requests/323", + "https://lists.debian.org/debian-lts-announce/2023/01/msg00018.html", + "https://security.gentoo.org/glsa/202210-10", + "https://security.netapp.com/advisory/ntap-20221014-0007/", + "https://www.debian.org/security/2023/dsa-5333" + ], + "description": "A stack buffer overflow flaw was found in Libtiffs' tiffcp.c in main() function. This flaw allows an attacker to pass a crafted TIFF file to the tiffcp tool, triggering a stack buffer overflow issue, possibly corrupting the memory, and causing a crash that leads to a denial of service.", + "cvss": null + } + ], + "matchDetails": [ + { + "type": "exact-indirect-match", + "matcher": "dpkg-matcher", + "searchedBy": { + "distro": { + "type": "debian", + "version": "9" + }, + "namespace": "debian:distro:debian:9", + "package": { + "name": "tiff", + "version": "4.0.8-2+deb9u2" + } + }, + "found": { + "versionConstraint": "none (deb)", + "vulnerabilityID": "CVE-2022-1355" + } + } + ], + "artifact": { + "name": "libtiff5", + "version": "4.0.8-2+deb9u2", + "type": "deb", + "locations": null, + "language": "", + "licenses": [ + "LicenseRef-Hylafax" + ], + "cpes": [ + "cpe:2.3:a:libtiff5:libtiff5:4.0.8-2+deb9u2:*:*:*:*:*:*:*" + ], + "purl": "pkg:deb/debian/libtiff5@4.0.8-2+deb9u2?arch=amd64\u0026upstream=tiff\u0026distro=debian-9", + "upstreams": [ + { + "name": "tiff" + } + ], + "metadata": null + } + }, + { + "vulnerability": { + "id": "CVE-2022-1622", + "dataSource": "https://security-tracker.debian.org/tracker/CVE-2022-1622", + "namespace": "debian:distro:debian:9", + "severity": "Medium", + "urls": [ + "https://security-tracker.debian.org/tracker/CVE-2022-1622" + ], + "description": "LibTIFF master branch has an out-of-bounds read in LZWDecode in libtiff/tif_lzw.c:619, allowing attackers to cause a denial-of-service via a crafted tiff file. For users that compile libtiff from sources, the fix is available with commit b4e79bfa.", + "cvss": null, + "fix": { + "versions": [], + "state": "not-fixed" + }, + "advisories": null + }, + "relatedVulnerabilities": [ + { + "id": "CVE-2022-1622", + "dataSource": "https://nvd.nist.gov/vuln/detail/CVE-2022-1622", + "namespace": "nvd:cpe", + "severity": "Medium", + "urls": [ + "http://seclists.org/fulldisclosure/2022/Oct/41", + "https://gitlab.com/gitlab-org/cves/-/blob/master/2022/CVE-2022-1622.json", + "https://gitlab.com/libtiff/libtiff/-/commit/b4e79bfa0c7d2d08f6f1e7ec38143fc8cb11394a", + "https://gitlab.com/libtiff/libtiff/-/issues/410", + "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/C7IWZTB4J2N4F5OR5QY4VHDSKWKZSWN3/", + "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/UXAFOP6QQRNZD3HPZ6BMCEZZOM4YIZMK/", + "https://security.netapp.com/advisory/ntap-20220616-0005/", + "https://support.apple.com/kb/HT213443", + "https://support.apple.com/kb/HT213444", + "https://support.apple.com/kb/HT213446", + "https://support.apple.com/kb/HT213486", + "https://support.apple.com/kb/HT213487", + "https://support.apple.com/kb/HT213488" + ], + "description": "LibTIFF master branch has an out-of-bounds read in LZWDecode in libtiff/tif_lzw.c:619, allowing attackers to cause a denial-of-service via a crafted tiff file. For users that compile libtiff from sources, the fix is available with commit b4e79bfa.", + "cvss": null + } + ], + "matchDetails": [ + { + "type": "exact-indirect-match", + "matcher": "dpkg-matcher", + "searchedBy": { + "distro": { + "type": "debian", + "version": "9" + }, + "namespace": "debian:distro:debian:9", + "package": { + "name": "tiff", + "version": "4.0.8-2+deb9u2" + } + }, + "found": { + "versionConstraint": "none (deb)", + "vulnerabilityID": "CVE-2022-1622" + } + } + ], + "artifact": { + "name": "libtiff5", + "version": "4.0.8-2+deb9u2", + "type": "deb", + "locations": null, + "language": "", + "licenses": [ + "LicenseRef-Hylafax" + ], + "cpes": [ + "cpe:2.3:a:libtiff5:libtiff5:4.0.8-2+deb9u2:*:*:*:*:*:*:*" + ], + "purl": "pkg:deb/debian/libtiff5@4.0.8-2+deb9u2?arch=amd64\u0026upstream=tiff\u0026distro=debian-9", + "upstreams": [ + { + "name": "tiff" + } + ], + "metadata": null + } + }, + { + "vulnerability": { + "id": "CVE-2022-1623", + "dataSource": "https://security-tracker.debian.org/tracker/CVE-2022-1623", + "namespace": "debian:distro:debian:9", + "severity": "Medium", + "urls": [ + "https://security-tracker.debian.org/tracker/CVE-2022-1623" + ], + "description": "LibTIFF master branch has an out-of-bounds read in LZWDecode in libtiff/tif_lzw.c:624, allowing attackers to cause a denial-of-service via a crafted tiff file. For users that compile libtiff from sources, the fix is available with commit b4e79bfa.", + "cvss": null, + "fix": { + "versions": [], + "state": "not-fixed" + }, + "advisories": null + }, + "relatedVulnerabilities": [ + { + "id": "CVE-2022-1623", + "dataSource": "https://nvd.nist.gov/vuln/detail/CVE-2022-1623", + "namespace": "nvd:cpe", + "severity": "Medium", + "urls": [ + "https://gitlab.com/gitlab-org/cves/-/blob/master/2022/CVE-2022-1623.json", + "https://gitlab.com/libtiff/libtiff/-/commit/b4e79bfa0c7d2d08f6f1e7ec38143fc8cb11394a", + "https://gitlab.com/libtiff/libtiff/-/issues/410", + "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/C7IWZTB4J2N4F5OR5QY4VHDSKWKZSWN3/", + "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/UXAFOP6QQRNZD3HPZ6BMCEZZOM4YIZMK/", + "https://security.gentoo.org/glsa/202210-10", + "https://security.netapp.com/advisory/ntap-20220616-0005/", + "https://www.debian.org/security/2023/dsa-5333" + ], + "description": "LibTIFF master branch has an out-of-bounds read in LZWDecode in libtiff/tif_lzw.c:624, allowing attackers to cause a denial-of-service via a crafted tiff file. For users that compile libtiff from sources, the fix is available with commit b4e79bfa.", + "cvss": null + } + ], + "matchDetails": [ + { + "type": "exact-indirect-match", + "matcher": "dpkg-matcher", + "searchedBy": { + "distro": { + "type": "debian", + "version": "9" + }, + "namespace": "debian:distro:debian:9", + "package": { + "name": "tiff", + "version": "4.0.8-2+deb9u2" + } + }, + "found": { + "versionConstraint": "none (deb)", + "vulnerabilityID": "CVE-2022-1623" + } + } + ], + "artifact": { + "name": "libtiff5", + "version": "4.0.8-2+deb9u2", + "type": "deb", + "locations": null, + "language": "", + "licenses": [ + "LicenseRef-Hylafax" + ], + "cpes": [ + "cpe:2.3:a:libtiff5:libtiff5:4.0.8-2+deb9u2:*:*:*:*:*:*:*" + ], + "purl": "pkg:deb/debian/libtiff5@4.0.8-2+deb9u2?arch=amd64\u0026upstream=tiff\u0026distro=debian-9", + "upstreams": [ + { + "name": "tiff" + } + ], + "metadata": null + } + }, + { + "vulnerability": { + "id": "CVE-2022-1664", + "dataSource": "https://security-tracker.debian.org/tracker/CVE-2022-1664", + "namespace": "debian:distro:debian:9", + "severity": "Critical", + "urls": [ + "https://security-tracker.debian.org/tracker/CVE-2022-1664" + ], + "description": "Dpkg::Source::Archive in dpkg, the Debian package management system, before version 1.21.8, 1.20.10, 1.19.8, 1.18.26 is prone to a directory traversal vulnerability. When extracting untrusted source packages in v2 and v3 source package formats that include a debian.tar, the in-place extraction can lead to directory traversal situations on specially crafted orig.tar and debian.tar tarballs.", + "cvss": null, + "fix": { + "versions": [ + "1.18.26" + ], + "state": "fixed" + }, + "advisories": null + }, + "relatedVulnerabilities": [ + { + "id": "CVE-2022-1664", + "dataSource": "https://nvd.nist.gov/vuln/detail/CVE-2022-1664", + "namespace": "nvd:cpe", + "severity": "Critical", + "urls": [ + "https://git.dpkg.org/cgit/dpkg/dpkg.git/commit/?id=1f23dddc17f69c9598477098c7fb9936e15fa495", + "https://git.dpkg.org/cgit/dpkg/dpkg.git/commit/?id=58814cacee39c4ce9e2cd0e3a3b9b57ad437eff5", + "https://git.dpkg.org/cgit/dpkg/dpkg.git/commit/?id=7a6c03cb34d4a09f35df2f10779cbf1b70a5200b", + "https://git.dpkg.org/cgit/dpkg/dpkg.git/commit/?id=faa4c92debe45412bfcf8a44f26e827800bb24be", + "https://lists.debian.org/debian-lts-announce/2022/05/msg00033.html", + "https://lists.debian.org/debian-security-announce/2022/msg00115.html", + "https://security.netapp.com/advisory/ntap-20221007-0002/" + ], + "description": "Dpkg::Source::Archive in dpkg, the Debian package management system, before version 1.21.8, 1.20.10, 1.19.8, 1.18.26 is prone to a directory traversal vulnerability. When extracting untrusted source packages in v2 and v3 source package formats that include a debian.tar, the in-place extraction can lead to directory traversal situations on specially crafted orig.tar and debian.tar tarballs.", + "cvss": null + } + ], + "matchDetails": [ + { + "type": "exact-direct-match", + "matcher": "dpkg-matcher", + "searchedBy": { + "distro": { + "type": "debian", + "version": "9" + }, + "namespace": "debian:distro:debian:9", + "package": { + "name": "dpkg", + "version": "1.18.25" + } + }, + "found": { + "versionConstraint": "\u003c 1.18.26 (deb)", + "vulnerabilityID": "CVE-2022-1664" + } + } + ], + "artifact": { + "name": "dpkg", + "version": "1.18.25", + "type": "deb", + "locations": null, + "language": "", + "licenses": [ + "BSD-2-Clause", + "GPL-2.0-only", + "GPL-2.0-or-later", + "LicenseRef-public-domain-md5", + "LicenseRef-public-domain-s-s-d" + ], + "cpes": [ + "cpe:2.3:a:dpkg:dpkg:1.18.25:*:*:*:*:*:*:*" + ], + "purl": "pkg:deb/debian/dpkg@1.18.25?arch=amd64\u0026distro=debian-9", + "upstreams": null, + "metadata": null + } + }, + { + "vulnerability": { + "id": "CVE-2022-2056", + "dataSource": "https://security-tracker.debian.org/tracker/CVE-2022-2056", + "namespace": "debian:distro:debian:9", + "severity": "Medium", + "urls": [ + "https://security-tracker.debian.org/tracker/CVE-2022-2056" + ], + "description": "Divide By Zero error in tiffcrop in libtiff 4.4.0 allows attackers to cause a denial-of-service via a crafted tiff file. For users that compile libtiff from sources, the fix is available with commit f3a5e010.", + "cvss": null, + "fix": { + "versions": [], + "state": "not-fixed" + }, + "advisories": null + }, + "relatedVulnerabilities": [ + { + "id": "CVE-2022-2056", + "dataSource": "https://nvd.nist.gov/vuln/detail/CVE-2022-2056", + "namespace": "nvd:cpe", + "severity": "Medium", + "urls": [ + "https://gitlab.com/gitlab-org/cves/-/blob/master/2022/CVE-2022-2056.json", + "https://gitlab.com/libtiff/libtiff/-/issues/415", + "https://gitlab.com/libtiff/libtiff/-/merge_requests/346", + "https://lists.debian.org/debian-lts-announce/2023/01/msg00018.html", + "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/4TSS7MJ7OO7JO5BNKCRYSFU7UAYOKLA2/", + "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/OXUMJXVEAYFWRO3U3YHKSULHIVDOLEQS/", + "https://security.netapp.com/advisory/ntap-20220826-0001/", + "https://www.debian.org/security/2023/dsa-5333" + ], + "description": "Divide By Zero error in tiffcrop in libtiff 4.4.0 allows attackers to cause a denial-of-service via a crafted tiff file. For users that compile libtiff from sources, the fix is available with commit f3a5e010.", + "cvss": null + } + ], + "matchDetails": [ + { + "type": "exact-indirect-match", + "matcher": "dpkg-matcher", + "searchedBy": { + "distro": { + "type": "debian", + "version": "9" + }, + "namespace": "debian:distro:debian:9", + "package": { + "name": "tiff", + "version": "4.0.8-2+deb9u2" + } + }, + "found": { + "versionConstraint": "none (deb)", + "vulnerabilityID": "CVE-2022-2056" + } + } + ], + "artifact": { + "name": "libtiff5", + "version": "4.0.8-2+deb9u2", + "type": "deb", + "locations": null, + "language": "", + "licenses": [ + "LicenseRef-Hylafax" + ], + "cpes": [ + "cpe:2.3:a:libtiff5:libtiff5:4.0.8-2+deb9u2:*:*:*:*:*:*:*" + ], + "purl": "pkg:deb/debian/libtiff5@4.0.8-2+deb9u2?arch=amd64\u0026upstream=tiff\u0026distro=debian-9", + "upstreams": [ + { + "name": "tiff" + } + ], + "metadata": null + } + }, + { + "vulnerability": { + "id": "CVE-2022-2057", + "dataSource": "https://security-tracker.debian.org/tracker/CVE-2022-2057", + "namespace": "debian:distro:debian:9", + "severity": "Medium", + "urls": [ + "https://security-tracker.debian.org/tracker/CVE-2022-2057" + ], + "description": "Divide By Zero error in tiffcrop in libtiff 4.4.0 allows attackers to cause a denial-of-service via a crafted tiff file. For users that compile libtiff from sources, the fix is available with commit f3a5e010.", + "cvss": null, + "fix": { + "versions": [], + "state": "not-fixed" + }, + "advisories": null + }, + "relatedVulnerabilities": [ + { + "id": "CVE-2022-2057", + "dataSource": "https://nvd.nist.gov/vuln/detail/CVE-2022-2057", + "namespace": "nvd:cpe", + "severity": "Medium", + "urls": [ + "https://gitlab.com/gitlab-org/cves/-/blob/master/2022/CVE-2022-2057.json", + "https://gitlab.com/libtiff/libtiff/-/issues/427", + "https://gitlab.com/libtiff/libtiff/-/merge_requests/346", + "https://lists.debian.org/debian-lts-announce/2023/01/msg00018.html", + "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/4TSS7MJ7OO7JO5BNKCRYSFU7UAYOKLA2/", + "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/OXUMJXVEAYFWRO3U3YHKSULHIVDOLEQS/", + "https://security.netapp.com/advisory/ntap-20220826-0001/", + "https://www.debian.org/security/2023/dsa-5333" + ], + "description": "Divide By Zero error in tiffcrop in libtiff 4.4.0 allows attackers to cause a denial-of-service via a crafted tiff file. For users that compile libtiff from sources, the fix is available with commit f3a5e010.", + "cvss": null + } + ], + "matchDetails": [ + { + "type": "exact-indirect-match", + "matcher": "dpkg-matcher", + "searchedBy": { + "distro": { + "type": "debian", + "version": "9" + }, + "namespace": "debian:distro:debian:9", + "package": { + "name": "tiff", + "version": "4.0.8-2+deb9u2" + } + }, + "found": { + "versionConstraint": "none (deb)", + "vulnerabilityID": "CVE-2022-2057" + } + } + ], + "artifact": { + "name": "libtiff5", + "version": "4.0.8-2+deb9u2", + "type": "deb", + "locations": null, + "language": "", + "licenses": [ + "LicenseRef-Hylafax" + ], + "cpes": [ + "cpe:2.3:a:libtiff5:libtiff5:4.0.8-2+deb9u2:*:*:*:*:*:*:*" + ], + "purl": "pkg:deb/debian/libtiff5@4.0.8-2+deb9u2?arch=amd64\u0026upstream=tiff\u0026distro=debian-9", + "upstreams": [ + { + "name": "tiff" + } + ], + "metadata": null + } + }, + { + "vulnerability": { + "id": "CVE-2022-2058", + "dataSource": "https://security-tracker.debian.org/tracker/CVE-2022-2058", + "namespace": "debian:distro:debian:9", + "severity": "Medium", + "urls": [ + "https://security-tracker.debian.org/tracker/CVE-2022-2058" + ], + "description": "Divide By Zero error in tiffcrop in libtiff 4.4.0 allows attackers to cause a denial-of-service via a crafted tiff file. For users that compile libtiff from sources, the fix is available with commit f3a5e010.", + "cvss": null, + "fix": { + "versions": [], + "state": "not-fixed" + }, + "advisories": null + }, + "relatedVulnerabilities": [ + { + "id": "CVE-2022-2058", + "dataSource": "https://nvd.nist.gov/vuln/detail/CVE-2022-2058", + "namespace": "nvd:cpe", + "severity": "Medium", + "urls": [ + "https://gitlab.com/gitlab-org/cves/-/blob/master/2022/CVE-2022-2058.json", + "https://gitlab.com/libtiff/libtiff/-/issues/428", + "https://gitlab.com/libtiff/libtiff/-/merge_requests/346", + "https://lists.debian.org/debian-lts-announce/2023/01/msg00018.html", + "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/4TSS7MJ7OO7JO5BNKCRYSFU7UAYOKLA2/", + "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/OXUMJXVEAYFWRO3U3YHKSULHIVDOLEQS/", + "https://security.netapp.com/advisory/ntap-20220826-0001/", + "https://www.debian.org/security/2023/dsa-5333" + ], + "description": "Divide By Zero error in tiffcrop in libtiff 4.4.0 allows attackers to cause a denial-of-service via a crafted tiff file. For users that compile libtiff from sources, the fix is available with commit f3a5e010.", + "cvss": null + } + ], + "matchDetails": [ + { + "type": "exact-indirect-match", + "matcher": "dpkg-matcher", + "searchedBy": { + "distro": { + "type": "debian", + "version": "9" + }, + "namespace": "debian:distro:debian:9", + "package": { + "name": "tiff", + "version": "4.0.8-2+deb9u2" + } + }, + "found": { + "versionConstraint": "none (deb)", + "vulnerabilityID": "CVE-2022-2058" + } + } + ], + "artifact": { + "name": "libtiff5", + "version": "4.0.8-2+deb9u2", + "type": "deb", + "locations": null, + "language": "", + "licenses": [ + "LicenseRef-Hylafax" + ], + "cpes": [ + "cpe:2.3:a:libtiff5:libtiff5:4.0.8-2+deb9u2:*:*:*:*:*:*:*" + ], + "purl": "pkg:deb/debian/libtiff5@4.0.8-2+deb9u2?arch=amd64\u0026upstream=tiff\u0026distro=debian-9", + "upstreams": [ + { + "name": "tiff" + } + ], + "metadata": null + } + }, + { + "vulnerability": { + "id": "CVE-2022-2068", + "dataSource": "https://security-tracker.debian.org/tracker/CVE-2022-2068", + "namespace": "debian:distro:debian:9", + "severity": "Critical", + "urls": [ + "https://security-tracker.debian.org/tracker/CVE-2022-2068" + ], + "description": "In addition to the c_rehash shell command injection identified in CVE-2022-1292, further circumstances where the c_rehash script does not properly sanitise shell metacharacters to prevent command injection were found by code review. When the CVE-2022-1292 was fixed it was not discovered that there are other places in the script where the file names of certificates being hashed were possibly passed to a command executed through the shell. This script is distributed by some operating systems in a manner where it is automatically executed. On such operating systems, an attacker could execute arbitrary commands with the privileges of the script. Use of the c_rehash script is considered obsolete and should be replaced by the OpenSSL rehash command line tool. Fixed in OpenSSL 3.0.4 (Affected 3.0.0,3.0.1,3.0.2,3.0.3). Fixed in OpenSSL 1.1.1p (Affected 1.1.1-1.1.1o). Fixed in OpenSSL 1.0.2zf (Affected 1.0.2-1.0.2ze).", + "cvss": null, + "fix": { + "versions": [], + "state": "not-fixed" + }, + "advisories": null + }, + "relatedVulnerabilities": [ + { + "id": "CVE-2022-2068", + "dataSource": "https://nvd.nist.gov/vuln/detail/CVE-2022-2068", + "namespace": "nvd:cpe", + "severity": "Critical", + "urls": [ + "https://cert-portal.siemens.com/productcert/pdf/ssa-332410.pdf", + "https://git.openssl.org/gitweb/?p=openssl.git;a=commitdiff;h=2c9c35870601b4a44d86ddbf512b38df38285cfa", + "https://git.openssl.org/gitweb/?p=openssl.git;a=commitdiff;h=7a9c027159fe9e1bbc2cd38a8a2914bff0d5abd9", + "https://git.openssl.org/gitweb/?p=openssl.git;a=commitdiff;h=9639817dac8bbbaa64d09efad7464ccc405527c7", + "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/6WZZBKUHQFGSKGNXXKICSRPL7AMVW5M5/", + "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/VCMNWKERPBKOEBNL7CLTTX3ZZCZLH7XA/", + "https://security.netapp.com/advisory/ntap-20220707-0008/", + "https://www.debian.org/security/2022/dsa-5169", + "https://www.openssl.org/news/secadv/20220621.txt" + ], + "description": "In addition to the c_rehash shell command injection identified in CVE-2022-1292, further circumstances where the c_rehash script does not properly sanitise shell metacharacters to prevent command injection were found by code review. When the CVE-2022-1292 was fixed it was not discovered that there are other places in the script where the file names of certificates being hashed were possibly passed to a command executed through the shell. This script is distributed by some operating systems in a manner where it is automatically executed. On such operating systems, an attacker could execute arbitrary commands with the privileges of the script. Use of the c_rehash script is considered obsolete and should be replaced by the OpenSSL rehash command line tool. Fixed in OpenSSL 3.0.4 (Affected 3.0.0,3.0.1,3.0.2,3.0.3). Fixed in OpenSSL 1.1.1p (Affected 1.1.1-1.1.1o). Fixed in OpenSSL 1.0.2zf (Affected 1.0.2-1.0.2ze).", + "cvss": null + } + ], + "matchDetails": [ + { + "type": "exact-indirect-match", + "matcher": "dpkg-matcher", + "searchedBy": { + "distro": { + "type": "debian", + "version": "9" + }, + "namespace": "debian:distro:debian:9", + "package": { + "name": "openssl", + "version": "1.1.0f-3+deb9u2" + } + }, + "found": { + "versionConstraint": "none (deb)", + "vulnerabilityID": "CVE-2022-2068" + } + } + ], + "artifact": { + "name": "libssl1.1", + "version": "1.1.0f-3+deb9u2", + "type": "deb", + "locations": null, + "language": "", + "licenses": [], + "cpes": [ + "cpe:2.3:a:libssl1.1:libssl1.1:1.1.0f-3+deb9u2:*:*:*:*:*:*:*" + ], + "purl": "pkg:deb/debian/libssl1.1@1.1.0f-3+deb9u2?arch=amd64\u0026upstream=openssl\u0026distro=debian-9", + "upstreams": [ + { + "name": "openssl" + } + ], + "metadata": null + } + }, + { + "vulnerability": { + "id": "CVE-2022-2274", + "dataSource": "https://security-tracker.debian.org/tracker/CVE-2022-2274", + "namespace": "debian:distro:debian:9", + "severity": "Critical", + "urls": [ + "https://security-tracker.debian.org/tracker/CVE-2022-2274" + ], + "description": "The OpenSSL 3.0.4 release introduced a serious bug in the RSA implementation for X86_64 CPUs supporting the AVX512IFMA instructions. This issue makes the RSA implementation with 2048 bit private keys incorrect on such machines and memory corruption will happen during the computation. As a consequence of the memory corruption an attacker may be able to trigger a remote code execution on the machine performing the computation. SSL/TLS servers or other servers using 2048 bit RSA private keys running on machines supporting AVX512IFMA instructions of the X86_64 architecture are affected by this issue.", + "cvss": null, + "fix": { + "versions": [], + "state": "not-fixed" + }, + "advisories": null + }, + "relatedVulnerabilities": [ + { + "id": "CVE-2022-2274", + "dataSource": "https://nvd.nist.gov/vuln/detail/CVE-2022-2274", + "namespace": "nvd:cpe", + "severity": "Critical", + "urls": [ + "https://git.openssl.org/gitweb/?p=openssl.git;a=commitdiff;h=4d8a88c134df634ba610ff8db1eb8478ac5fd345", + "https://github.com/openssl/openssl/issues/18625", + "https://security.netapp.com/advisory/ntap-20220715-0010/", + "https://www.openssl.org/news/secadv/20220705.txt" + ], + "description": "The OpenSSL 3.0.4 release introduced a serious bug in the RSA implementation for X86_64 CPUs supporting the AVX512IFMA instructions. This issue makes the RSA implementation with 2048 bit private keys incorrect on such machines and memory corruption will happen during the computation. As a consequence of the memory corruption an attacker may be able to trigger a remote code execution on the machine performing the computation. SSL/TLS servers or other servers using 2048 bit RSA private keys running on machines supporting AVX512IFMA instructions of the X86_64 architecture are affected by this issue.", + "cvss": null + } + ], + "matchDetails": [ + { + "type": "exact-indirect-match", + "matcher": "dpkg-matcher", + "searchedBy": { + "distro": { + "type": "debian", + "version": "9" + }, + "namespace": "debian:distro:debian:9", + "package": { + "name": "openssl", + "version": "1.1.0f-3+deb9u2" + } + }, + "found": { + "versionConstraint": "none (deb)", + "vulnerabilityID": "CVE-2022-2274" + } + } + ], + "artifact": { + "name": "libssl1.1", + "version": "1.1.0f-3+deb9u2", + "type": "deb", + "locations": null, + "language": "", + "licenses": [], + "cpes": [ + "cpe:2.3:a:libssl1.1:libssl1.1:1.1.0f-3+deb9u2:*:*:*:*:*:*:*" + ], + "purl": "pkg:deb/debian/libssl1.1@1.1.0f-3+deb9u2?arch=amd64\u0026upstream=openssl\u0026distro=debian-9", + "upstreams": [ + { + "name": "openssl" + } + ], + "metadata": null + } + }, + { + "vulnerability": { + "id": "CVE-2022-22822", + "dataSource": "https://security-tracker.debian.org/tracker/CVE-2022-22822", + "namespace": "debian:distro:debian:9", + "severity": "Critical", + "urls": [ + "https://security-tracker.debian.org/tracker/CVE-2022-22822" + ], + "description": "addBinding in xmlparse.c in Expat (aka libexpat) before 2.4.3 has an integer overflow.", + "cvss": null, + "fix": { + "versions": [ + "2.2.0-2+deb9u4" + ], + "state": "fixed" + }, + "advisories": null + }, + "relatedVulnerabilities": [ + { + "id": "CVE-2022-22822", + "dataSource": "https://nvd.nist.gov/vuln/detail/CVE-2022-22822", + "namespace": "nvd:cpe", + "severity": "Critical", + "urls": [ + "http://www.openwall.com/lists/oss-security/2022/01/17/3", + "https://cert-portal.siemens.com/productcert/pdf/ssa-484086.pdf", + "https://github.com/libexpat/libexpat/pull/539", + "https://security.gentoo.org/glsa/202209-24", + "https://www.debian.org/security/2022/dsa-5073", + "https://www.tenable.com/security/tns-2022-05" + ], + "description": "addBinding in xmlparse.c in Expat (aka libexpat) before 2.4.3 has an integer overflow.", + "cvss": null + } + ], + "matchDetails": [ + { + "type": "exact-indirect-match", + "matcher": "dpkg-matcher", + "searchedBy": { + "distro": { + "type": "debian", + "version": "9" + }, + "namespace": "debian:distro:debian:9", + "package": { + "name": "expat", + "version": "2.2.0-2+deb9u1" + } + }, + "found": { + "versionConstraint": "\u003c 2.2.0-2+deb9u4 (deb)", + "vulnerabilityID": "CVE-2022-22822" + } + } + ], + "artifact": { + "name": "libexpat1", + "version": "2.2.0-2+deb9u1", + "type": "deb", + "locations": null, + "language": "", + "licenses": [], + "cpes": [ + "cpe:2.3:a:libexpat1:libexpat1:2.2.0-2+deb9u1:*:*:*:*:*:*:*" + ], + "purl": "pkg:deb/debian/libexpat1@2.2.0-2+deb9u1?arch=amd64\u0026upstream=expat\u0026distro=debian-9", + "upstreams": [ + { + "name": "expat" + } + ], + "metadata": null + } + }, + { + "vulnerability": { + "id": "CVE-2022-22823", + "dataSource": "https://security-tracker.debian.org/tracker/CVE-2022-22823", + "namespace": "debian:distro:debian:9", + "severity": "Critical", + "urls": [ + "https://security-tracker.debian.org/tracker/CVE-2022-22823" + ], + "description": "build_model in xmlparse.c in Expat (aka libexpat) before 2.4.3 has an integer overflow.", + "cvss": null, + "fix": { + "versions": [ + "2.2.0-2+deb9u4" + ], + "state": "fixed" + }, + "advisories": null + }, + "relatedVulnerabilities": [ + { + "id": "CVE-2022-22823", + "dataSource": "https://nvd.nist.gov/vuln/detail/CVE-2022-22823", + "namespace": "nvd:cpe", + "severity": "Critical", + "urls": [ + "http://www.openwall.com/lists/oss-security/2022/01/17/3", + "https://cert-portal.siemens.com/productcert/pdf/ssa-484086.pdf", + "https://github.com/libexpat/libexpat/pull/539", + "https://security.gentoo.org/glsa/202209-24", + "https://www.debian.org/security/2022/dsa-5073", + "https://www.tenable.com/security/tns-2022-05" + ], + "description": "build_model in xmlparse.c in Expat (aka libexpat) before 2.4.3 has an integer overflow.", + "cvss": null + } + ], + "matchDetails": [ + { + "type": "exact-indirect-match", + "matcher": "dpkg-matcher", + "searchedBy": { + "distro": { + "type": "debian", + "version": "9" + }, + "namespace": "debian:distro:debian:9", + "package": { + "name": "expat", + "version": "2.2.0-2+deb9u1" + } + }, + "found": { + "versionConstraint": "\u003c 2.2.0-2+deb9u4 (deb)", + "vulnerabilityID": "CVE-2022-22823" + } + } + ], + "artifact": { + "name": "libexpat1", + "version": "2.2.0-2+deb9u1", + "type": "deb", + "locations": null, + "language": "", + "licenses": [], + "cpes": [ + "cpe:2.3:a:libexpat1:libexpat1:2.2.0-2+deb9u1:*:*:*:*:*:*:*" + ], + "purl": "pkg:deb/debian/libexpat1@2.2.0-2+deb9u1?arch=amd64\u0026upstream=expat\u0026distro=debian-9", + "upstreams": [ + { + "name": "expat" + } + ], + "metadata": null + } + }, + { + "vulnerability": { + "id": "CVE-2022-22824", + "dataSource": "https://security-tracker.debian.org/tracker/CVE-2022-22824", + "namespace": "debian:distro:debian:9", + "severity": "Critical", + "urls": [ + "https://security-tracker.debian.org/tracker/CVE-2022-22824" + ], + "description": "defineAttribute in xmlparse.c in Expat (aka libexpat) before 2.4.3 has an integer overflow.", + "cvss": null, + "fix": { + "versions": [ + "2.2.0-2+deb9u4" + ], + "state": "fixed" + }, + "advisories": null + }, + "relatedVulnerabilities": [ + { + "id": "CVE-2022-22824", + "dataSource": "https://nvd.nist.gov/vuln/detail/CVE-2022-22824", + "namespace": "nvd:cpe", + "severity": "Critical", + "urls": [ + "http://www.openwall.com/lists/oss-security/2022/01/17/3", + "https://cert-portal.siemens.com/productcert/pdf/ssa-484086.pdf", + "https://github.com/libexpat/libexpat/pull/539", + "https://security.gentoo.org/glsa/202209-24", + "https://www.debian.org/security/2022/dsa-5073", + "https://www.tenable.com/security/tns-2022-05" + ], + "description": "defineAttribute in xmlparse.c in Expat (aka libexpat) before 2.4.3 has an integer overflow.", + "cvss": null + } + ], + "matchDetails": [ + { + "type": "exact-indirect-match", + "matcher": "dpkg-matcher", + "searchedBy": { + "distro": { + "type": "debian", + "version": "9" + }, + "namespace": "debian:distro:debian:9", + "package": { + "name": "expat", + "version": "2.2.0-2+deb9u1" + } + }, + "found": { + "versionConstraint": "\u003c 2.2.0-2+deb9u4 (deb)", + "vulnerabilityID": "CVE-2022-22824" + } + } + ], + "artifact": { + "name": "libexpat1", + "version": "2.2.0-2+deb9u1", + "type": "deb", + "locations": null, + "language": "", + "licenses": [], + "cpes": [ + "cpe:2.3:a:libexpat1:libexpat1:2.2.0-2+deb9u1:*:*:*:*:*:*:*" + ], + "purl": "pkg:deb/debian/libexpat1@2.2.0-2+deb9u1?arch=amd64\u0026upstream=expat\u0026distro=debian-9", + "upstreams": [ + { + "name": "expat" + } + ], + "metadata": null + } + }, + { + "vulnerability": { + "id": "CVE-2022-22825", + "dataSource": "https://security-tracker.debian.org/tracker/CVE-2022-22825", + "namespace": "debian:distro:debian:9", + "severity": "High", + "urls": [ + "https://security-tracker.debian.org/tracker/CVE-2022-22825" + ], + "description": "lookup in xmlparse.c in Expat (aka libexpat) before 2.4.3 has an integer overflow.", + "cvss": null, + "fix": { + "versions": [ + "2.2.0-2+deb9u4" + ], + "state": "fixed" + }, + "advisories": null + }, + "relatedVulnerabilities": [ + { + "id": "CVE-2022-22825", + "dataSource": "https://nvd.nist.gov/vuln/detail/CVE-2022-22825", + "namespace": "nvd:cpe", + "severity": "High", + "urls": [ + "http://www.openwall.com/lists/oss-security/2022/01/17/3", + "https://cert-portal.siemens.com/productcert/pdf/ssa-484086.pdf", + "https://github.com/libexpat/libexpat/pull/539", + "https://security.gentoo.org/glsa/202209-24", + "https://www.debian.org/security/2022/dsa-5073", + "https://www.tenable.com/security/tns-2022-05" + ], + "description": "lookup in xmlparse.c in Expat (aka libexpat) before 2.4.3 has an integer overflow.", + "cvss": null + } + ], + "matchDetails": [ + { + "type": "exact-indirect-match", + "matcher": "dpkg-matcher", + "searchedBy": { + "distro": { + "type": "debian", + "version": "9" + }, + "namespace": "debian:distro:debian:9", + "package": { + "name": "expat", + "version": "2.2.0-2+deb9u1" + } + }, + "found": { + "versionConstraint": "\u003c 2.2.0-2+deb9u4 (deb)", + "vulnerabilityID": "CVE-2022-22825" + } + } + ], + "artifact": { + "name": "libexpat1", + "version": "2.2.0-2+deb9u1", + "type": "deb", + "locations": null, + "language": "", + "licenses": [], + "cpes": [ + "cpe:2.3:a:libexpat1:libexpat1:2.2.0-2+deb9u1:*:*:*:*:*:*:*" + ], + "purl": "pkg:deb/debian/libexpat1@2.2.0-2+deb9u1?arch=amd64\u0026upstream=expat\u0026distro=debian-9", + "upstreams": [ + { + "name": "expat" + } + ], + "metadata": null + } + }, + { + "vulnerability": { + "id": "CVE-2022-22826", + "dataSource": "https://security-tracker.debian.org/tracker/CVE-2022-22826", + "namespace": "debian:distro:debian:9", + "severity": "High", + "urls": [ + "https://security-tracker.debian.org/tracker/CVE-2022-22826" + ], + "description": "nextScaffoldPart in xmlparse.c in Expat (aka libexpat) before 2.4.3 has an integer overflow.", + "cvss": null, + "fix": { + "versions": [ + "2.2.0-2+deb9u4" + ], + "state": "fixed" + }, + "advisories": null + }, + "relatedVulnerabilities": [ + { + "id": "CVE-2022-22826", + "dataSource": "https://nvd.nist.gov/vuln/detail/CVE-2022-22826", + "namespace": "nvd:cpe", + "severity": "High", + "urls": [ + "http://www.openwall.com/lists/oss-security/2022/01/17/3", + "https://cert-portal.siemens.com/productcert/pdf/ssa-484086.pdf", + "https://github.com/libexpat/libexpat/pull/539", + "https://security.gentoo.org/glsa/202209-24", + "https://www.debian.org/security/2022/dsa-5073", + "https://www.tenable.com/security/tns-2022-05" + ], + "description": "nextScaffoldPart in xmlparse.c in Expat (aka libexpat) before 2.4.3 has an integer overflow.", + "cvss": null + } + ], + "matchDetails": [ + { + "type": "exact-indirect-match", + "matcher": "dpkg-matcher", + "searchedBy": { + "distro": { + "type": "debian", + "version": "9" + }, + "namespace": "debian:distro:debian:9", + "package": { + "name": "expat", + "version": "2.2.0-2+deb9u1" + } + }, + "found": { + "versionConstraint": "\u003c 2.2.0-2+deb9u4 (deb)", + "vulnerabilityID": "CVE-2022-22826" + } + } + ], + "artifact": { + "name": "libexpat1", + "version": "2.2.0-2+deb9u1", + "type": "deb", + "locations": null, + "language": "", + "licenses": [], + "cpes": [ + "cpe:2.3:a:libexpat1:libexpat1:2.2.0-2+deb9u1:*:*:*:*:*:*:*" + ], + "purl": "pkg:deb/debian/libexpat1@2.2.0-2+deb9u1?arch=amd64\u0026upstream=expat\u0026distro=debian-9", + "upstreams": [ + { + "name": "expat" + } + ], + "metadata": null + } + }, + { + "vulnerability": { + "id": "CVE-2022-22827", + "dataSource": "https://security-tracker.debian.org/tracker/CVE-2022-22827", + "namespace": "debian:distro:debian:9", + "severity": "High", + "urls": [ + "https://security-tracker.debian.org/tracker/CVE-2022-22827" + ], + "description": "storeAtts in xmlparse.c in Expat (aka libexpat) before 2.4.3 has an integer overflow.", + "cvss": null, + "fix": { + "versions": [ + "2.2.0-2+deb9u4" + ], + "state": "fixed" + }, + "advisories": null + }, + "relatedVulnerabilities": [ + { + "id": "CVE-2022-22827", + "dataSource": "https://nvd.nist.gov/vuln/detail/CVE-2022-22827", + "namespace": "nvd:cpe", + "severity": "High", + "urls": [ + "http://www.openwall.com/lists/oss-security/2022/01/17/3", + "https://cert-portal.siemens.com/productcert/pdf/ssa-484086.pdf", + "https://github.com/libexpat/libexpat/pull/539", + "https://security.gentoo.org/glsa/202209-24", + "https://www.debian.org/security/2022/dsa-5073", + "https://www.tenable.com/security/tns-2022-05" + ], + "description": "storeAtts in xmlparse.c in Expat (aka libexpat) before 2.4.3 has an integer overflow.", + "cvss": null + } + ], + "matchDetails": [ + { + "type": "exact-indirect-match", + "matcher": "dpkg-matcher", + "searchedBy": { + "distro": { + "type": "debian", + "version": "9" + }, + "namespace": "debian:distro:debian:9", + "package": { + "name": "expat", + "version": "2.2.0-2+deb9u1" + } + }, + "found": { + "versionConstraint": "\u003c 2.2.0-2+deb9u4 (deb)", + "vulnerabilityID": "CVE-2022-22827" + } + } + ], + "artifact": { + "name": "libexpat1", + "version": "2.2.0-2+deb9u1", + "type": "deb", + "locations": null, + "language": "", + "licenses": [], + "cpes": [ + "cpe:2.3:a:libexpat1:libexpat1:2.2.0-2+deb9u1:*:*:*:*:*:*:*" + ], + "purl": "pkg:deb/debian/libexpat1@2.2.0-2+deb9u1?arch=amd64\u0026upstream=expat\u0026distro=debian-9", + "upstreams": [ + { + "name": "expat" + } + ], + "metadata": null + } + }, + { + "vulnerability": { + "id": "CVE-2022-22844", + "dataSource": "https://security-tracker.debian.org/tracker/CVE-2022-22844", + "namespace": "debian:distro:debian:9", + "severity": "Medium", + "urls": [ + "https://security-tracker.debian.org/tracker/CVE-2022-22844" + ], + "description": "LibTIFF 4.3.0 has an out-of-bounds read in _TIFFmemcpy in tif_unix.c in certain situations involving a custom tag and 0x0200 as the second word of the DE field.", + "cvss": null, + "fix": { + "versions": [ + "4.0.8-2+deb9u8" + ], + "state": "fixed" + }, + "advisories": null + }, + "relatedVulnerabilities": [ + { + "id": "CVE-2022-22844", + "dataSource": "https://nvd.nist.gov/vuln/detail/CVE-2022-22844", + "namespace": "nvd:cpe", + "severity": "Medium", + "urls": [ + "https://gitlab.com/libtiff/libtiff/-/issues/355", + "https://gitlab.com/libtiff/libtiff/-/merge_requests/287", + "https://lists.debian.org/debian-lts-announce/2022/03/msg00001.html", + "https://security.gentoo.org/glsa/202210-10", + "https://security.netapp.com/advisory/ntap-20220311-0002/", + "https://www.debian.org/security/2022/dsa-5108" + ], + "description": "LibTIFF 4.3.0 has an out-of-bounds read in _TIFFmemcpy in tif_unix.c in certain situations involving a custom tag and 0x0200 as the second word of the DE field.", + "cvss": null + } + ], + "matchDetails": [ + { + "type": "exact-indirect-match", + "matcher": "dpkg-matcher", + "searchedBy": { + "distro": { + "type": "debian", + "version": "9" + }, + "namespace": "debian:distro:debian:9", + "package": { + "name": "tiff", + "version": "4.0.8-2+deb9u2" + } + }, + "found": { + "versionConstraint": "\u003c 4.0.8-2+deb9u8 (deb)", + "vulnerabilityID": "CVE-2022-22844" + } + } + ], + "artifact": { + "name": "libtiff5", + "version": "4.0.8-2+deb9u2", + "type": "deb", + "locations": null, + "language": "", + "licenses": [ + "LicenseRef-Hylafax" + ], + "cpes": [ + "cpe:2.3:a:libtiff5:libtiff5:4.0.8-2+deb9u2:*:*:*:*:*:*:*" + ], + "purl": "pkg:deb/debian/libtiff5@4.0.8-2+deb9u2?arch=amd64\u0026upstream=tiff\u0026distro=debian-9", + "upstreams": [ + { + "name": "tiff" + } + ], + "metadata": null + } + }, + { + "vulnerability": { + "id": "CVE-2022-23218", + "dataSource": "https://security-tracker.debian.org/tracker/CVE-2022-23218", + "namespace": "debian:distro:debian:9", + "severity": "Critical", + "urls": [ + "https://security-tracker.debian.org/tracker/CVE-2022-23218" + ], + "description": "The deprecated compatibility function svcunix_create in the sunrpc module of the GNU C Library (aka glibc) through 2.34 copies its path argument on the stack without validating its length, which may result in a buffer overflow, potentially resulting in a denial of service or (if an application is not built with a stack protector enabled) arbitrary code execution.", + "cvss": null, + "fix": { + "versions": [], + "state": "wont-fix" + }, + "advisories": null + }, + "relatedVulnerabilities": [ + { + "id": "CVE-2022-23218", + "dataSource": "https://nvd.nist.gov/vuln/detail/CVE-2022-23218", + "namespace": "nvd:cpe", + "severity": "Critical", + "urls": [ + "https://lists.debian.org/debian-lts-announce/2022/10/msg00021.html", + "https://security.gentoo.org/glsa/202208-24", + "https://sourceware.org/bugzilla/show_bug.cgi?id=28768", + "https://www.oracle.com/security-alerts/cpujul2022.html" + ], + "description": "The deprecated compatibility function svcunix_create in the sunrpc module of the GNU C Library (aka glibc) through 2.34 copies its path argument on the stack without validating its length, which may result in a buffer overflow, potentially resulting in a denial of service or (if an application is not built with a stack protector enabled) arbitrary code execution.", + "cvss": null + } + ], + "matchDetails": [ + { + "type": "exact-indirect-match", + "matcher": "dpkg-matcher", + "searchedBy": { + "distro": { + "type": "debian", + "version": "9" + }, + "namespace": "debian:distro:debian:9", + "package": { + "name": "glibc", + "version": "2.24-11+deb9u3" + } + }, + "found": { + "versionConstraint": "none (deb)", + "vulnerabilityID": "CVE-2022-23218" + } + } + ], + "artifact": { + "name": "libc-bin", + "version": "2.24-11+deb9u3", + "type": "deb", + "locations": null, + "language": "", + "licenses": [ + "GPL-2.0-only", + "LGPL-2.1-only" + ], + "cpes": [ + "cpe:2.3:a:libc-bin:libc-bin:2.24-11+deb9u3:*:*:*:*:*:*:*", + "cpe:2.3:a:libc-bin:libc_bin:2.24-11+deb9u3:*:*:*:*:*:*:*", + "cpe:2.3:a:libc_bin:libc-bin:2.24-11+deb9u3:*:*:*:*:*:*:*", + "cpe:2.3:a:libc_bin:libc_bin:2.24-11+deb9u3:*:*:*:*:*:*:*", + "cpe:2.3:a:libc:libc-bin:2.24-11+deb9u3:*:*:*:*:*:*:*", + "cpe:2.3:a:libc:libc_bin:2.24-11+deb9u3:*:*:*:*:*:*:*" + ], + "purl": "pkg:deb/debian/libc-bin@2.24-11+deb9u3?arch=amd64\u0026upstream=glibc\u0026distro=debian-9", + "upstreams": [ + { + "name": "glibc" + } + ], + "metadata": null + } + }, + { + "vulnerability": { + "id": "CVE-2022-23218", + "dataSource": "https://security-tracker.debian.org/tracker/CVE-2022-23218", + "namespace": "debian:distro:debian:9", + "severity": "Critical", + "urls": [ + "https://security-tracker.debian.org/tracker/CVE-2022-23218" + ], + "description": "The deprecated compatibility function svcunix_create in the sunrpc module of the GNU C Library (aka glibc) through 2.34 copies its path argument on the stack without validating its length, which may result in a buffer overflow, potentially resulting in a denial of service or (if an application is not built with a stack protector enabled) arbitrary code execution.", + "cvss": null, + "fix": { + "versions": [], + "state": "wont-fix" + }, + "advisories": null + }, + "relatedVulnerabilities": [ + { + "id": "CVE-2022-23218", + "dataSource": "https://nvd.nist.gov/vuln/detail/CVE-2022-23218", + "namespace": "nvd:cpe", + "severity": "Critical", + "urls": [ + "https://lists.debian.org/debian-lts-announce/2022/10/msg00021.html", + "https://security.gentoo.org/glsa/202208-24", + "https://sourceware.org/bugzilla/show_bug.cgi?id=28768", + "https://www.oracle.com/security-alerts/cpujul2022.html" + ], + "description": "The deprecated compatibility function svcunix_create in the sunrpc module of the GNU C Library (aka glibc) through 2.34 copies its path argument on the stack without validating its length, which may result in a buffer overflow, potentially resulting in a denial of service or (if an application is not built with a stack protector enabled) arbitrary code execution.", + "cvss": null + } + ], + "matchDetails": [ + { + "type": "exact-indirect-match", + "matcher": "dpkg-matcher", + "searchedBy": { + "distro": { + "type": "debian", + "version": "9" + }, + "namespace": "debian:distro:debian:9", + "package": { + "name": "glibc", + "version": "2.24-11+deb9u3" + } + }, + "found": { + "versionConstraint": "none (deb)", + "vulnerabilityID": "CVE-2022-23218" + } + } + ], + "artifact": { + "name": "libc6", + "version": "2.24-11+deb9u3", + "type": "deb", + "locations": null, + "language": "", + "licenses": [ + "GPL-2.0-only", + "LGPL-2.1-only" + ], + "cpes": [ + "cpe:2.3:a:libc6:libc6:2.24-11+deb9u3:*:*:*:*:*:*:*" + ], + "purl": "pkg:deb/debian/libc6@2.24-11+deb9u3?arch=amd64\u0026upstream=glibc\u0026distro=debian-9", + "upstreams": [ + { + "name": "glibc" + } + ], + "metadata": null + } + }, + { + "vulnerability": { + "id": "CVE-2022-23218", + "dataSource": "https://security-tracker.debian.org/tracker/CVE-2022-23218", + "namespace": "debian:distro:debian:9", + "severity": "Critical", + "urls": [ + "https://security-tracker.debian.org/tracker/CVE-2022-23218" + ], + "description": "The deprecated compatibility function svcunix_create in the sunrpc module of the GNU C Library (aka glibc) through 2.34 copies its path argument on the stack without validating its length, which may result in a buffer overflow, potentially resulting in a denial of service or (if an application is not built with a stack protector enabled) arbitrary code execution.", + "cvss": null, + "fix": { + "versions": [], + "state": "wont-fix" + }, + "advisories": null + }, + "relatedVulnerabilities": [ + { + "id": "CVE-2022-23218", + "dataSource": "https://nvd.nist.gov/vuln/detail/CVE-2022-23218", + "namespace": "nvd:cpe", + "severity": "Critical", + "urls": [ + "https://lists.debian.org/debian-lts-announce/2022/10/msg00021.html", + "https://security.gentoo.org/glsa/202208-24", + "https://sourceware.org/bugzilla/show_bug.cgi?id=28768", + "https://www.oracle.com/security-alerts/cpujul2022.html" + ], + "description": "The deprecated compatibility function svcunix_create in the sunrpc module of the GNU C Library (aka glibc) through 2.34 copies its path argument on the stack without validating its length, which may result in a buffer overflow, potentially resulting in a denial of service or (if an application is not built with a stack protector enabled) arbitrary code execution.", + "cvss": null + } + ], + "matchDetails": [ + { + "type": "exact-indirect-match", + "matcher": "dpkg-matcher", + "searchedBy": { + "distro": { + "type": "debian", + "version": "9" + }, + "namespace": "debian:distro:debian:9", + "package": { + "name": "glibc", + "version": "2.24-11+deb9u3" + } + }, + "found": { + "versionConstraint": "none (deb)", + "vulnerabilityID": "CVE-2022-23218" + } + } + ], + "artifact": { + "name": "multiarch-support", + "version": "2.24-11+deb9u3", + "type": "deb", + "locations": null, + "language": "", + "licenses": [ + "GPL-2.0-only", + "LGPL-2.1-only" + ], + "cpes": [ + "cpe:2.3:a:multiarch-support:multiarch-support:2.24-11+deb9u3:*:*:*:*:*:*:*", + "cpe:2.3:a:multiarch-support:multiarch_support:2.24-11+deb9u3:*:*:*:*:*:*:*", + "cpe:2.3:a:multiarch_support:multiarch-support:2.24-11+deb9u3:*:*:*:*:*:*:*", + "cpe:2.3:a:multiarch_support:multiarch_support:2.24-11+deb9u3:*:*:*:*:*:*:*", + "cpe:2.3:a:multiarch:multiarch-support:2.24-11+deb9u3:*:*:*:*:*:*:*", + "cpe:2.3:a:multiarch:multiarch_support:2.24-11+deb9u3:*:*:*:*:*:*:*" + ], + "purl": "pkg:deb/debian/multiarch-support@2.24-11+deb9u3?arch=amd64\u0026upstream=glibc\u0026distro=debian-9", + "upstreams": [ + { + "name": "glibc" + } + ], + "metadata": null + } + }, + { + "vulnerability": { + "id": "CVE-2022-23219", + "dataSource": "https://security-tracker.debian.org/tracker/CVE-2022-23219", + "namespace": "debian:distro:debian:9", + "severity": "Critical", + "urls": [ + "https://security-tracker.debian.org/tracker/CVE-2022-23219" + ], + "description": "The deprecated compatibility function clnt_create in the sunrpc module of the GNU C Library (aka glibc) through 2.34 copies its hostname argument on the stack without validating its length, which may result in a buffer overflow, potentially resulting in a denial of service or (if an application is not built with a stack protector enabled) arbitrary code execution.", + "cvss": null, + "fix": { + "versions": [], + "state": "wont-fix" + }, + "advisories": null + }, + "relatedVulnerabilities": [ + { + "id": "CVE-2022-23219", + "dataSource": "https://nvd.nist.gov/vuln/detail/CVE-2022-23219", + "namespace": "nvd:cpe", + "severity": "Critical", + "urls": [ + "https://lists.debian.org/debian-lts-announce/2022/10/msg00021.html", + "https://security.gentoo.org/glsa/202208-24", + "https://sourceware.org/bugzilla/show_bug.cgi?id=22542", + "https://www.oracle.com/security-alerts/cpujul2022.html" + ], + "description": "The deprecated compatibility function clnt_create in the sunrpc module of the GNU C Library (aka glibc) through 2.34 copies its hostname argument on the stack without validating its length, which may result in a buffer overflow, potentially resulting in a denial of service or (if an application is not built with a stack protector enabled) arbitrary code execution.", + "cvss": null + } + ], + "matchDetails": [ + { + "type": "exact-indirect-match", + "matcher": "dpkg-matcher", + "searchedBy": { + "distro": { + "type": "debian", + "version": "9" + }, + "namespace": "debian:distro:debian:9", + "package": { + "name": "glibc", + "version": "2.24-11+deb9u3" + } + }, + "found": { + "versionConstraint": "none (deb)", + "vulnerabilityID": "CVE-2022-23219" + } + } + ], + "artifact": { + "name": "libc-bin", + "version": "2.24-11+deb9u3", + "type": "deb", + "locations": null, + "language": "", + "licenses": [ + "GPL-2.0-only", + "LGPL-2.1-only" + ], + "cpes": [ + "cpe:2.3:a:libc-bin:libc-bin:2.24-11+deb9u3:*:*:*:*:*:*:*", + "cpe:2.3:a:libc-bin:libc_bin:2.24-11+deb9u3:*:*:*:*:*:*:*", + "cpe:2.3:a:libc_bin:libc-bin:2.24-11+deb9u3:*:*:*:*:*:*:*", + "cpe:2.3:a:libc_bin:libc_bin:2.24-11+deb9u3:*:*:*:*:*:*:*", + "cpe:2.3:a:libc:libc-bin:2.24-11+deb9u3:*:*:*:*:*:*:*", + "cpe:2.3:a:libc:libc_bin:2.24-11+deb9u3:*:*:*:*:*:*:*" + ], + "purl": "pkg:deb/debian/libc-bin@2.24-11+deb9u3?arch=amd64\u0026upstream=glibc\u0026distro=debian-9", + "upstreams": [ + { + "name": "glibc" + } + ], + "metadata": null + } + }, + { + "vulnerability": { + "id": "CVE-2022-23219", + "dataSource": "https://security-tracker.debian.org/tracker/CVE-2022-23219", + "namespace": "debian:distro:debian:9", + "severity": "Critical", + "urls": [ + "https://security-tracker.debian.org/tracker/CVE-2022-23219" + ], + "description": "The deprecated compatibility function clnt_create in the sunrpc module of the GNU C Library (aka glibc) through 2.34 copies its hostname argument on the stack without validating its length, which may result in a buffer overflow, potentially resulting in a denial of service or (if an application is not built with a stack protector enabled) arbitrary code execution.", + "cvss": null, + "fix": { + "versions": [], + "state": "wont-fix" + }, + "advisories": null + }, + "relatedVulnerabilities": [ + { + "id": "CVE-2022-23219", + "dataSource": "https://nvd.nist.gov/vuln/detail/CVE-2022-23219", + "namespace": "nvd:cpe", + "severity": "Critical", + "urls": [ + "https://lists.debian.org/debian-lts-announce/2022/10/msg00021.html", + "https://security.gentoo.org/glsa/202208-24", + "https://sourceware.org/bugzilla/show_bug.cgi?id=22542", + "https://www.oracle.com/security-alerts/cpujul2022.html" + ], + "description": "The deprecated compatibility function clnt_create in the sunrpc module of the GNU C Library (aka glibc) through 2.34 copies its hostname argument on the stack without validating its length, which may result in a buffer overflow, potentially resulting in a denial of service or (if an application is not built with a stack protector enabled) arbitrary code execution.", + "cvss": null + } + ], + "matchDetails": [ + { + "type": "exact-indirect-match", + "matcher": "dpkg-matcher", + "searchedBy": { + "distro": { + "type": "debian", + "version": "9" + }, + "namespace": "debian:distro:debian:9", + "package": { + "name": "glibc", + "version": "2.24-11+deb9u3" + } + }, + "found": { + "versionConstraint": "none (deb)", + "vulnerabilityID": "CVE-2022-23219" + } + } + ], + "artifact": { + "name": "libc6", + "version": "2.24-11+deb9u3", + "type": "deb", + "locations": null, + "language": "", + "licenses": [ + "GPL-2.0-only", + "LGPL-2.1-only" + ], + "cpes": [ + "cpe:2.3:a:libc6:libc6:2.24-11+deb9u3:*:*:*:*:*:*:*" + ], + "purl": "pkg:deb/debian/libc6@2.24-11+deb9u3?arch=amd64\u0026upstream=glibc\u0026distro=debian-9", + "upstreams": [ + { + "name": "glibc" + } + ], + "metadata": null + } + }, + { + "vulnerability": { + "id": "CVE-2022-23219", + "dataSource": "https://security-tracker.debian.org/tracker/CVE-2022-23219", + "namespace": "debian:distro:debian:9", + "severity": "Critical", + "urls": [ + "https://security-tracker.debian.org/tracker/CVE-2022-23219" + ], + "description": "The deprecated compatibility function clnt_create in the sunrpc module of the GNU C Library (aka glibc) through 2.34 copies its hostname argument on the stack without validating its length, which may result in a buffer overflow, potentially resulting in a denial of service or (if an application is not built with a stack protector enabled) arbitrary code execution.", + "cvss": null, + "fix": { + "versions": [], + "state": "wont-fix" + }, + "advisories": null + }, + "relatedVulnerabilities": [ + { + "id": "CVE-2022-23219", + "dataSource": "https://nvd.nist.gov/vuln/detail/CVE-2022-23219", + "namespace": "nvd:cpe", + "severity": "Critical", + "urls": [ + "https://lists.debian.org/debian-lts-announce/2022/10/msg00021.html", + "https://security.gentoo.org/glsa/202208-24", + "https://sourceware.org/bugzilla/show_bug.cgi?id=22542", + "https://www.oracle.com/security-alerts/cpujul2022.html" + ], + "description": "The deprecated compatibility function clnt_create in the sunrpc module of the GNU C Library (aka glibc) through 2.34 copies its hostname argument on the stack without validating its length, which may result in a buffer overflow, potentially resulting in a denial of service or (if an application is not built with a stack protector enabled) arbitrary code execution.", + "cvss": null + } + ], + "matchDetails": [ + { + "type": "exact-indirect-match", + "matcher": "dpkg-matcher", + "searchedBy": { + "distro": { + "type": "debian", + "version": "9" + }, + "namespace": "debian:distro:debian:9", + "package": { + "name": "glibc", + "version": "2.24-11+deb9u3" + } + }, + "found": { + "versionConstraint": "none (deb)", + "vulnerabilityID": "CVE-2022-23219" + } + } + ], + "artifact": { + "name": "multiarch-support", + "version": "2.24-11+deb9u3", + "type": "deb", + "locations": null, + "language": "", + "licenses": [ + "GPL-2.0-only", + "LGPL-2.1-only" + ], + "cpes": [ + "cpe:2.3:a:multiarch-support:multiarch-support:2.24-11+deb9u3:*:*:*:*:*:*:*", + "cpe:2.3:a:multiarch-support:multiarch_support:2.24-11+deb9u3:*:*:*:*:*:*:*", + "cpe:2.3:a:multiarch_support:multiarch-support:2.24-11+deb9u3:*:*:*:*:*:*:*", + "cpe:2.3:a:multiarch_support:multiarch_support:2.24-11+deb9u3:*:*:*:*:*:*:*", + "cpe:2.3:a:multiarch:multiarch-support:2.24-11+deb9u3:*:*:*:*:*:*:*", + "cpe:2.3:a:multiarch:multiarch_support:2.24-11+deb9u3:*:*:*:*:*:*:*" + ], + "purl": "pkg:deb/debian/multiarch-support@2.24-11+deb9u3?arch=amd64\u0026upstream=glibc\u0026distro=debian-9", + "upstreams": [ + { + "name": "glibc" + } + ], + "metadata": null + } + }, + { + "vulnerability": { + "id": "CVE-2022-23308", + "dataSource": "https://security-tracker.debian.org/tracker/CVE-2022-23308", + "namespace": "debian:distro:debian:9", + "severity": "High", + "urls": [ + "https://security-tracker.debian.org/tracker/CVE-2022-23308" + ], + "description": "valid.c in libxml2 before 2.9.13 has a use-after-free of ID and IDREF attributes.", + "cvss": null, + "fix": { + "versions": [ + "2.9.4+dfsg1-2.2+deb9u6" + ], + "state": "fixed" + }, + "advisories": null + }, + "relatedVulnerabilities": [ + { + "id": "CVE-2022-23308", + "dataSource": "https://nvd.nist.gov/vuln/detail/CVE-2022-23308", + "namespace": "nvd:cpe", + "severity": "High", + "urls": [ + "http://seclists.org/fulldisclosure/2022/May/33", + "http://seclists.org/fulldisclosure/2022/May/34", + "http://seclists.org/fulldisclosure/2022/May/35", + "http://seclists.org/fulldisclosure/2022/May/36", + "http://seclists.org/fulldisclosure/2022/May/37", + "http://seclists.org/fulldisclosure/2022/May/38", + "https://github.com/GNOME/libxml2/commit/652dd12a858989b14eed4e84e453059cd3ba340e", + "https://gitlab.gnome.org/GNOME/libxml2/-/blob/v2.9.13/NEWS", + "https://lists.debian.org/debian-lts-announce/2022/04/msg00004.html", + "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/LA3MWWAYZADWJ5F6JOUBX65UZAMQB7RF/", + "https://security.gentoo.org/glsa/202210-03", + "https://security.netapp.com/advisory/ntap-20220331-0008/", + "https://support.apple.com/kb/HT213253", + "https://support.apple.com/kb/HT213254", + "https://support.apple.com/kb/HT213255", + "https://support.apple.com/kb/HT213256", + "https://support.apple.com/kb/HT213257", + "https://support.apple.com/kb/HT213258", + "https://www.oracle.com/security-alerts/cpujul2022.html" + ], + "description": "valid.c in libxml2 before 2.9.13 has a use-after-free of ID and IDREF attributes.", + "cvss": null + } + ], + "matchDetails": [ + { + "type": "exact-direct-match", + "matcher": "dpkg-matcher", + "searchedBy": { + "distro": { + "type": "debian", + "version": "9" + }, + "namespace": "debian:distro:debian:9", + "package": { + "name": "libxml2", + "version": "2.9.4+dfsg1-2.2+deb9u2" + } + }, + "found": { + "versionConstraint": "\u003c 2.9.4+dfsg1-2.2+deb9u6 (deb)", + "vulnerabilityID": "CVE-2022-23308" + } + } + ], + "artifact": { + "name": "libxml2", + "version": "2.9.4+dfsg1-2.2+deb9u2", + "type": "deb", + "locations": null, + "language": "", + "licenses": [], + "cpes": [ + "cpe:2.3:a:libxml2:libxml2:2.9.4+dfsg1-2.2+deb9u2:*:*:*:*:*:*:*" + ], + "purl": "pkg:deb/debian/libxml2@2.9.4+dfsg1-2.2+deb9u2?arch=amd64\u0026distro=debian-9", + "upstreams": null, + "metadata": null + } + }, + { + "vulnerability": { + "id": "CVE-2022-23852", + "dataSource": "https://security-tracker.debian.org/tracker/CVE-2022-23852", + "namespace": "debian:distro:debian:9", + "severity": "Critical", + "urls": [ + "https://security-tracker.debian.org/tracker/CVE-2022-23852" + ], + "description": "Expat (aka libexpat) before 2.4.4 has a signed integer overflow in XML_GetBuffer, for configurations with a nonzero XML_CONTEXT_BYTES.", + "cvss": null, + "fix": { + "versions": [ + "2.2.0-2+deb9u5" + ], + "state": "fixed" + }, + "advisories": null + }, + "relatedVulnerabilities": [ + { + "id": "CVE-2022-23852", + "dataSource": "https://nvd.nist.gov/vuln/detail/CVE-2022-23852", + "namespace": "nvd:cpe", + "severity": "Critical", + "urls": [ + "https://cert-portal.siemens.com/productcert/pdf/ssa-484086.pdf", + "https://github.com/libexpat/libexpat/pull/550", + "https://lists.debian.org/debian-lts-announce/2022/03/msg00007.html", + "https://security.gentoo.org/glsa/202209-24", + "https://security.netapp.com/advisory/ntap-20220217-0001/", + "https://www.debian.org/security/2022/dsa-5073", + "https://www.oracle.com/security-alerts/cpuapr2022.html", + "https://www.tenable.com/security/tns-2022-05" + ], + "description": "Expat (aka libexpat) before 2.4.4 has a signed integer overflow in XML_GetBuffer, for configurations with a nonzero XML_CONTEXT_BYTES.", + "cvss": null + } + ], + "matchDetails": [ + { + "type": "exact-indirect-match", + "matcher": "dpkg-matcher", + "searchedBy": { + "distro": { + "type": "debian", + "version": "9" + }, + "namespace": "debian:distro:debian:9", + "package": { + "name": "expat", + "version": "2.2.0-2+deb9u1" + } + }, + "found": { + "versionConstraint": "\u003c 2.2.0-2+deb9u5 (deb)", + "vulnerabilityID": "CVE-2022-23852" + } + } + ], + "artifact": { + "name": "libexpat1", + "version": "2.2.0-2+deb9u1", + "type": "deb", + "locations": null, + "language": "", + "licenses": [], + "cpes": [ + "cpe:2.3:a:libexpat1:libexpat1:2.2.0-2+deb9u1:*:*:*:*:*:*:*" + ], + "purl": "pkg:deb/debian/libexpat1@2.2.0-2+deb9u1?arch=amd64\u0026upstream=expat\u0026distro=debian-9", + "upstreams": [ + { + "name": "expat" + } + ], + "metadata": null + } + }, + { + "vulnerability": { + "id": "CVE-2022-23990", + "dataSource": "https://security-tracker.debian.org/tracker/CVE-2022-23990", + "namespace": "debian:distro:debian:9", + "severity": "Critical", + "urls": [ + "https://security-tracker.debian.org/tracker/CVE-2022-23990" + ], + "description": "Expat (aka libexpat) before 2.4.4 has an integer overflow in the doProlog function.", + "cvss": null, + "fix": { + "versions": [ + "2.2.0-2+deb9u4" + ], + "state": "fixed" + }, + "advisories": null + }, + "relatedVulnerabilities": [ + { + "id": "CVE-2022-23990", + "dataSource": "https://nvd.nist.gov/vuln/detail/CVE-2022-23990", + "namespace": "nvd:cpe", + "severity": "High", + "urls": [ + "https://cert-portal.siemens.com/productcert/pdf/ssa-484086.pdf", + "https://github.com/libexpat/libexpat/pull/551", + "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/34NXVL2RZC2YZRV74ZQ3RNFB7WCEUP7D/", + "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/R7FF2UH7MPXKTADYSJUAHI2Y5UHBSHUH/", + "https://security.gentoo.org/glsa/202209-24", + "https://www.debian.org/security/2022/dsa-5073", + "https://www.oracle.com/security-alerts/cpuapr2022.html", + "https://www.tenable.com/security/tns-2022-05" + ], + "description": "Expat (aka libexpat) before 2.4.4 has an integer overflow in the doProlog function.", + "cvss": null + } + ], + "matchDetails": [ + { + "type": "exact-indirect-match", + "matcher": "dpkg-matcher", + "searchedBy": { + "distro": { + "type": "debian", + "version": "9" + }, + "namespace": "debian:distro:debian:9", + "package": { + "name": "expat", + "version": "2.2.0-2+deb9u1" + } + }, + "found": { + "versionConstraint": "\u003c 2.2.0-2+deb9u4 (deb)", + "vulnerabilityID": "CVE-2022-23990" + } + } + ], + "artifact": { + "name": "libexpat1", + "version": "2.2.0-2+deb9u1", + "type": "deb", + "locations": null, + "language": "", + "licenses": [], + "cpes": [ + "cpe:2.3:a:libexpat1:libexpat1:2.2.0-2+deb9u1:*:*:*:*:*:*:*" + ], + "purl": "pkg:deb/debian/libexpat1@2.2.0-2+deb9u1?arch=amd64\u0026upstream=expat\u0026distro=debian-9", + "upstreams": [ + { + "name": "expat" + } + ], + "metadata": null + } + }, + { + "vulnerability": { + "id": "CVE-2022-25235", + "dataSource": "https://security-tracker.debian.org/tracker/CVE-2022-25235", + "namespace": "debian:distro:debian:9", + "severity": "Critical", + "urls": [ + "https://security-tracker.debian.org/tracker/CVE-2022-25235" + ], + "description": "xmltok_impl.c in Expat (aka libexpat) before 2.4.5 lacks certain validation of encoding, such as checks for whether a UTF-8 character is valid in a certain context.", + "cvss": null, + "fix": { + "versions": [ + "2.2.0-2+deb9u5" + ], + "state": "fixed" + }, + "advisories": null + }, + "relatedVulnerabilities": [ + { + "id": "CVE-2022-25235", + "dataSource": "https://nvd.nist.gov/vuln/detail/CVE-2022-25235", + "namespace": "nvd:cpe", + "severity": "Critical", + "urls": [ + "http://www.openwall.com/lists/oss-security/2022/02/19/1", + "https://cert-portal.siemens.com/productcert/pdf/ssa-484086.pdf", + "https://github.com/libexpat/libexpat/pull/562", + "https://lists.debian.org/debian-lts-announce/2022/03/msg00007.html", + "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/3UFRBA3UQVIQKXTBUQXDWQOVWNBKLERU/", + "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/Y27XO3JMKAOMQZVPS3B4MJGEAHCZF5OM/", + "https://security.gentoo.org/glsa/202209-24", + "https://security.netapp.com/advisory/ntap-20220303-0008/", + "https://www.debian.org/security/2022/dsa-5085", + "https://www.oracle.com/security-alerts/cpuapr2022.html" + ], + "description": "xmltok_impl.c in Expat (aka libexpat) before 2.4.5 lacks certain validation of encoding, such as checks for whether a UTF-8 character is valid in a certain context.", + "cvss": null + } + ], + "matchDetails": [ + { + "type": "exact-indirect-match", + "matcher": "dpkg-matcher", + "searchedBy": { + "distro": { + "type": "debian", + "version": "9" + }, + "namespace": "debian:distro:debian:9", + "package": { + "name": "expat", + "version": "2.2.0-2+deb9u1" + } + }, + "found": { + "versionConstraint": "\u003c 2.2.0-2+deb9u5 (deb)", + "vulnerabilityID": "CVE-2022-25235" + } + } + ], + "artifact": { + "name": "libexpat1", + "version": "2.2.0-2+deb9u1", + "type": "deb", + "locations": null, + "language": "", + "licenses": [], + "cpes": [ + "cpe:2.3:a:libexpat1:libexpat1:2.2.0-2+deb9u1:*:*:*:*:*:*:*" + ], + "purl": "pkg:deb/debian/libexpat1@2.2.0-2+deb9u1?arch=amd64\u0026upstream=expat\u0026distro=debian-9", + "upstreams": [ + { + "name": "expat" + } + ], + "metadata": null + } + }, + { + "vulnerability": { + "id": "CVE-2022-25236", + "dataSource": "https://security-tracker.debian.org/tracker/CVE-2022-25236", + "namespace": "debian:distro:debian:9", + "severity": "Critical", + "urls": [ + "https://security-tracker.debian.org/tracker/CVE-2022-25236" + ], + "description": "xmlparse.c in Expat (aka libexpat) before 2.4.5 allows attackers to insert namespace-separator characters into namespace URIs.", + "cvss": null, + "fix": { + "versions": [ + "2.2.0-2+deb9u5" + ], + "state": "fixed" + }, + "advisories": null + }, + "relatedVulnerabilities": [ + { + "id": "CVE-2022-25236", + "dataSource": "https://nvd.nist.gov/vuln/detail/CVE-2022-25236", + "namespace": "nvd:cpe", + "severity": "Critical", + "urls": [ + "http://packetstormsecurity.com/files/167238/Zoom-XMPP-Stanza-Smuggling-Remote-Code-Execution.html", + "http://www.openwall.com/lists/oss-security/2022/02/19/1", + "https://cert-portal.siemens.com/productcert/pdf/ssa-484086.pdf", + "https://github.com/libexpat/libexpat/pull/561", + "https://lists.debian.org/debian-lts-announce/2022/03/msg00007.html", + "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/3UFRBA3UQVIQKXTBUQXDWQOVWNBKLERU/", + "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/Y27XO3JMKAOMQZVPS3B4MJGEAHCZF5OM/", + "https://security.gentoo.org/glsa/202209-24", + "https://security.netapp.com/advisory/ntap-20220303-0008/", + "https://www.debian.org/security/2022/dsa-5085", + "https://www.oracle.com/security-alerts/cpuapr2022.html" + ], + "description": "xmlparse.c in Expat (aka libexpat) before 2.4.5 allows attackers to insert namespace-separator characters into namespace URIs.", + "cvss": null + } + ], + "matchDetails": [ + { + "type": "exact-indirect-match", + "matcher": "dpkg-matcher", + "searchedBy": { + "distro": { + "type": "debian", + "version": "9" + }, + "namespace": "debian:distro:debian:9", + "package": { + "name": "expat", + "version": "2.2.0-2+deb9u1" + } + }, + "found": { + "versionConstraint": "\u003c 2.2.0-2+deb9u5 (deb)", + "vulnerabilityID": "CVE-2022-25236" + } + } + ], + "artifact": { + "name": "libexpat1", + "version": "2.2.0-2+deb9u1", + "type": "deb", + "locations": null, + "language": "", + "licenses": [], + "cpes": [ + "cpe:2.3:a:libexpat1:libexpat1:2.2.0-2+deb9u1:*:*:*:*:*:*:*" + ], + "purl": "pkg:deb/debian/libexpat1@2.2.0-2+deb9u1?arch=amd64\u0026upstream=expat\u0026distro=debian-9", + "upstreams": [ + { + "name": "expat" + } + ], + "metadata": null + } + }, + { + "vulnerability": { + "id": "CVE-2022-25313", + "dataSource": "https://security-tracker.debian.org/tracker/CVE-2022-25313", + "namespace": "debian:distro:debian:9", + "severity": "Medium", + "urls": [ + "https://security-tracker.debian.org/tracker/CVE-2022-25313" + ], + "description": "In Expat (aka libexpat) before 2.4.5, an attacker can trigger stack exhaustion in build_model via a large nesting depth in the DTD element.", + "cvss": null, + "fix": { + "versions": [ + "2.2.0-2+deb9u5" + ], + "state": "fixed" + }, + "advisories": null + }, + "relatedVulnerabilities": [ + { + "id": "CVE-2022-25313", + "dataSource": "https://nvd.nist.gov/vuln/detail/CVE-2022-25313", + "namespace": "nvd:cpe", + "severity": "Medium", + "urls": [ + "http://www.openwall.com/lists/oss-security/2022/02/19/1", + "https://cert-portal.siemens.com/productcert/pdf/ssa-484086.pdf", + "https://github.com/libexpat/libexpat/pull/558", + "https://lists.debian.org/debian-lts-announce/2022/03/msg00007.html", + "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/3UFRBA3UQVIQKXTBUQXDWQOVWNBKLERU/", + "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/Y27XO3JMKAOMQZVPS3B4MJGEAHCZF5OM/", + "https://security.gentoo.org/glsa/202209-24", + "https://security.netapp.com/advisory/ntap-20220303-0008/", + "https://www.debian.org/security/2022/dsa-5085", + "https://www.oracle.com/security-alerts/cpuapr2022.html" + ], + "description": "In Expat (aka libexpat) before 2.4.5, an attacker can trigger stack exhaustion in build_model via a large nesting depth in the DTD element.", + "cvss": null + } + ], + "matchDetails": [ + { + "type": "exact-indirect-match", + "matcher": "dpkg-matcher", + "searchedBy": { + "distro": { + "type": "debian", + "version": "9" + }, + "namespace": "debian:distro:debian:9", + "package": { + "name": "expat", + "version": "2.2.0-2+deb9u1" + } + }, + "found": { + "versionConstraint": "\u003c 2.2.0-2+deb9u5 (deb)", + "vulnerabilityID": "CVE-2022-25313" + } + } + ], + "artifact": { + "name": "libexpat1", + "version": "2.2.0-2+deb9u1", + "type": "deb", + "locations": null, + "language": "", + "licenses": [], + "cpes": [ + "cpe:2.3:a:libexpat1:libexpat1:2.2.0-2+deb9u1:*:*:*:*:*:*:*" + ], + "purl": "pkg:deb/debian/libexpat1@2.2.0-2+deb9u1?arch=amd64\u0026upstream=expat\u0026distro=debian-9", + "upstreams": [ + { + "name": "expat" + } + ], + "metadata": null + } + }, + { + "vulnerability": { + "id": "CVE-2022-25315", + "dataSource": "https://security-tracker.debian.org/tracker/CVE-2022-25315", + "namespace": "debian:distro:debian:9", + "severity": "Critical", + "urls": [ + "https://security-tracker.debian.org/tracker/CVE-2022-25315" + ], + "description": "In Expat (aka libexpat) before 2.4.5, there is an integer overflow in storeRawNames.", + "cvss": null, + "fix": { + "versions": [ + "2.2.0-2+deb9u5" + ], + "state": "fixed" + }, + "advisories": null + }, + "relatedVulnerabilities": [ + { + "id": "CVE-2022-25315", + "dataSource": "https://nvd.nist.gov/vuln/detail/CVE-2022-25315", + "namespace": "nvd:cpe", + "severity": "Critical", + "urls": [ + "http://www.openwall.com/lists/oss-security/2022/02/19/1", + "https://cert-portal.siemens.com/productcert/pdf/ssa-484086.pdf", + "https://github.com/libexpat/libexpat/pull/559", + "https://lists.debian.org/debian-lts-announce/2022/03/msg00007.html", + "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/3UFRBA3UQVIQKXTBUQXDWQOVWNBKLERU/", + "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/Y27XO3JMKAOMQZVPS3B4MJGEAHCZF5OM/", + "https://security.gentoo.org/glsa/202209-24", + "https://security.netapp.com/advisory/ntap-20220303-0008/", + "https://www.debian.org/security/2022/dsa-5085", + "https://www.oracle.com/security-alerts/cpuapr2022.html" + ], + "description": "In Expat (aka libexpat) before 2.4.5, there is an integer overflow in storeRawNames.", + "cvss": null + } + ], + "matchDetails": [ + { + "type": "exact-indirect-match", + "matcher": "dpkg-matcher", + "searchedBy": { + "distro": { + "type": "debian", + "version": "9" + }, + "namespace": "debian:distro:debian:9", + "package": { + "name": "expat", + "version": "2.2.0-2+deb9u1" + } + }, + "found": { + "versionConstraint": "\u003c 2.2.0-2+deb9u5 (deb)", + "vulnerabilityID": "CVE-2022-25315" + } + } + ], + "artifact": { + "name": "libexpat1", + "version": "2.2.0-2+deb9u1", + "type": "deb", + "locations": null, + "language": "", + "licenses": [], + "cpes": [ + "cpe:2.3:a:libexpat1:libexpat1:2.2.0-2+deb9u1:*:*:*:*:*:*:*" + ], + "purl": "pkg:deb/debian/libexpat1@2.2.0-2+deb9u1?arch=amd64\u0026upstream=expat\u0026distro=debian-9", + "upstreams": [ + { + "name": "expat" + } + ], + "metadata": null + } + }, + { + "vulnerability": { + "id": "CVE-2022-27404", + "dataSource": "https://security-tracker.debian.org/tracker/CVE-2022-27404", + "namespace": "debian:distro:debian:9", + "severity": "Critical", + "urls": [ + "https://security-tracker.debian.org/tracker/CVE-2022-27404" + ], + "description": "FreeType commit 1e2eb65048f75c64b68708efed6ce904c31f3b2f was discovered to contain a heap buffer overflow via the function sfnt_init_face.", + "cvss": null, + "fix": { + "versions": [], + "state": "wont-fix" + }, + "advisories": null + }, + "relatedVulnerabilities": [ + { + "id": "CVE-2022-27404", + "dataSource": "https://nvd.nist.gov/vuln/detail/CVE-2022-27404", + "namespace": "nvd:cpe", + "severity": "Critical", + "urls": [ + "https://gitlab.freedesktop.org/freetype/freetype/-/issues/1138", + "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/EFPNRKDLCXHZVYYQLQMP44UHLU32GA6Z/", + "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/FDU2FOEMCEF6WVR6ZBIH5MT5O7FAK6UP/", + "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/IWQ7IB2A75MEHM63WEUXBYEC7OR5SGDY/", + "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/NYVC2NPKKXKP3TWJWG4ONYWNO6ZPHLA5/", + "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/TCEMWCM46PKM4U5ENRASPKQD6JDOLKRU/" + ], + "description": "FreeType commit 1e2eb65048f75c64b68708efed6ce904c31f3b2f was discovered to contain a heap buffer overflow via the function sfnt_init_face.", + "cvss": null + } + ], + "matchDetails": [ + { + "type": "exact-indirect-match", + "matcher": "dpkg-matcher", + "searchedBy": { + "distro": { + "type": "debian", + "version": "9" + }, + "namespace": "debian:distro:debian:9", + "package": { + "name": "freetype", + "version": "2.6.3-3.2" + } + }, + "found": { + "versionConstraint": "none (deb)", + "vulnerabilityID": "CVE-2022-27404" + } + } + ], + "artifact": { + "name": "libfreetype6", + "version": "2.6.3-3.2", + "type": "deb", + "locations": null, + "language": "", + "licenses": [ + "BSD-2-Clause", + "BSD-3-Clause", + "LicenseRef-Catharon-OSL", + "FTL", + "GPL-2.0-only", + "GPL-2.0-or-later", + "LicenseRef-GZip", + "LicenseRef-OpenGroup-BSD-like" + ], + "cpes": [ + "cpe:2.3:a:libfreetype6:libfreetype6:2.6.3-3.2:*:*:*:*:*:*:*" + ], + "purl": "pkg:deb/debian/libfreetype6@2.6.3-3.2?arch=amd64\u0026upstream=freetype\u0026distro=debian-9", + "upstreams": [ + { + "name": "freetype" + } + ], + "metadata": null + } + }, + { + "vulnerability": { + "id": "CVE-2022-27405", + "dataSource": "https://security-tracker.debian.org/tracker/CVE-2022-27405", + "namespace": "debian:distro:debian:9", + "severity": "High", + "urls": [ + "https://security-tracker.debian.org/tracker/CVE-2022-27405" + ], + "description": "FreeType commit 53dfdcd8198d2b3201a23c4bad9190519ba918db was discovered to contain a segmentation violation via the function FNT_Size_Request.", + "cvss": null, + "fix": { + "versions": [], + "state": "wont-fix" + }, + "advisories": null + }, + "relatedVulnerabilities": [ + { + "id": "CVE-2022-27405", + "dataSource": "https://nvd.nist.gov/vuln/detail/CVE-2022-27405", + "namespace": "nvd:cpe", + "severity": "High", + "urls": [ + "http://freetype.com", + "https://gitlab.freedesktop.org/freetype/freetype/-/issues/1139", + "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/EFPNRKDLCXHZVYYQLQMP44UHLU32GA6Z/", + "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/FDU2FOEMCEF6WVR6ZBIH5MT5O7FAK6UP/", + "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/IWQ7IB2A75MEHM63WEUXBYEC7OR5SGDY/", + "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/NYVC2NPKKXKP3TWJWG4ONYWNO6ZPHLA5/", + "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/TCEMWCM46PKM4U5ENRASPKQD6JDOLKRU/" + ], + "description": "FreeType commit 53dfdcd8198d2b3201a23c4bad9190519ba918db was discovered to contain a segmentation violation via the function FNT_Size_Request.", + "cvss": null + } + ], + "matchDetails": [ + { + "type": "exact-indirect-match", + "matcher": "dpkg-matcher", + "searchedBy": { + "distro": { + "type": "debian", + "version": "9" + }, + "namespace": "debian:distro:debian:9", + "package": { + "name": "freetype", + "version": "2.6.3-3.2" + } + }, + "found": { + "versionConstraint": "none (deb)", + "vulnerabilityID": "CVE-2022-27405" + } + } + ], + "artifact": { + "name": "libfreetype6", + "version": "2.6.3-3.2", + "type": "deb", + "locations": null, + "language": "", + "licenses": [ + "BSD-2-Clause", + "BSD-3-Clause", + "LicenseRef-Catharon-OSL", + "FTL", + "GPL-2.0-only", + "GPL-2.0-or-later", + "LicenseRef-GZip", + "LicenseRef-OpenGroup-BSD-like" + ], + "cpes": [ + "cpe:2.3:a:libfreetype6:libfreetype6:2.6.3-3.2:*:*:*:*:*:*:*" + ], + "purl": "pkg:deb/debian/libfreetype6@2.6.3-3.2?arch=amd64\u0026upstream=freetype\u0026distro=debian-9", + "upstreams": [ + { + "name": "freetype" + } + ], + "metadata": null + } + }, + { + "vulnerability": { + "id": "CVE-2022-27406", + "dataSource": "https://security-tracker.debian.org/tracker/CVE-2022-27406", + "namespace": "debian:distro:debian:9", + "severity": "High", + "urls": [ + "https://security-tracker.debian.org/tracker/CVE-2022-27406" + ], + "description": "FreeType commit 22a0cccb4d9d002f33c1ba7a4b36812c7d4f46b5 was discovered to contain a segmentation violation via the function FT_Request_Size.", + "cvss": null, + "fix": { + "versions": [], + "state": "wont-fix" + }, + "advisories": null + }, + "relatedVulnerabilities": [ + { + "id": "CVE-2022-27406", + "dataSource": "https://nvd.nist.gov/vuln/detail/CVE-2022-27406", + "namespace": "nvd:cpe", + "severity": "High", + "urls": [ + "http://freetype.com", + "https://gitlab.freedesktop.org/freetype/freetype/-/issues/1140", + "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/EFPNRKDLCXHZVYYQLQMP44UHLU32GA6Z/", + "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/FDU2FOEMCEF6WVR6ZBIH5MT5O7FAK6UP/", + "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/IWQ7IB2A75MEHM63WEUXBYEC7OR5SGDY/", + "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/NYVC2NPKKXKP3TWJWG4ONYWNO6ZPHLA5/", + "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/TCEMWCM46PKM4U5ENRASPKQD6JDOLKRU/" + ], + "description": "FreeType commit 22a0cccb4d9d002f33c1ba7a4b36812c7d4f46b5 was discovered to contain a segmentation violation via the function FT_Request_Size.", + "cvss": null + } + ], + "matchDetails": [ + { + "type": "exact-indirect-match", + "matcher": "dpkg-matcher", + "searchedBy": { + "distro": { + "type": "debian", + "version": "9" + }, + "namespace": "debian:distro:debian:9", + "package": { + "name": "freetype", + "version": "2.6.3-3.2" + } + }, + "found": { + "versionConstraint": "none (deb)", + "vulnerabilityID": "CVE-2022-27406" + } + } + ], + "artifact": { + "name": "libfreetype6", + "version": "2.6.3-3.2", + "type": "deb", + "locations": null, + "language": "", + "licenses": [ + "BSD-2-Clause", + "BSD-3-Clause", + "LicenseRef-Catharon-OSL", + "FTL", + "GPL-2.0-only", + "GPL-2.0-or-later", + "LicenseRef-GZip", + "LicenseRef-OpenGroup-BSD-like" + ], + "cpes": [ + "cpe:2.3:a:libfreetype6:libfreetype6:2.6.3-3.2:*:*:*:*:*:*:*" + ], + "purl": "pkg:deb/debian/libfreetype6@2.6.3-3.2?arch=amd64\u0026upstream=freetype\u0026distro=debian-9", + "upstreams": [ + { + "name": "freetype" + } + ], + "metadata": null + } + }, + { + "vulnerability": { + "id": "CVE-2022-29458", + "dataSource": "https://security-tracker.debian.org/tracker/CVE-2022-29458", + "namespace": "debian:distro:debian:9", + "severity": "High", + "urls": [ + "https://security-tracker.debian.org/tracker/CVE-2022-29458" + ], + "description": "ncurses 6.3 before patch 20220416 has an out-of-bounds read and segmentation violation in convert_strings in tinfo/read_entry.c in the terminfo library.", + "cvss": null, + "fix": { + "versions": [], + "state": "wont-fix" + }, + "advisories": null + }, + "relatedVulnerabilities": [ + { + "id": "CVE-2022-29458", + "dataSource": "https://nvd.nist.gov/vuln/detail/CVE-2022-29458", + "namespace": "nvd:cpe", + "severity": "High", + "urls": [ + "http://seclists.org/fulldisclosure/2022/Oct/41", + "https://lists.debian.org/debian-lts-announce/2022/10/msg00037.html", + "https://lists.gnu.org/archive/html/bug-ncurses/2022-04/msg00014.html", + "https://lists.gnu.org/archive/html/bug-ncurses/2022-04/msg00016.html", + "https://support.apple.com/kb/HT213488" + ], + "description": "ncurses 6.3 before patch 20220416 has an out-of-bounds read and segmentation violation in convert_strings in tinfo/read_entry.c in the terminfo library.", + "cvss": null + } + ], + "matchDetails": [ + { + "type": "exact-indirect-match", + "matcher": "dpkg-matcher", + "searchedBy": { + "distro": { + "type": "debian", + "version": "9" + }, + "namespace": "debian:distro:debian:9", + "package": { + "name": "ncurses", + "version": "6.0+20161126-1+deb9u2" + } + }, + "found": { + "versionConstraint": "none (deb)", + "vulnerabilityID": "CVE-2022-29458" + } + } + ], + "artifact": { + "name": "libncurses5", + "version": "6.0+20161126-1+deb9u2", + "type": "deb", + "locations": null, + "language": "", + "licenses": [], + "cpes": [ + "cpe:2.3:a:libncurses5:libncurses5:6.0+20161126-1+deb9u2:*:*:*:*:*:*:*" + ], + "purl": "pkg:deb/debian/libncurses5@6.0+20161126-1+deb9u2?arch=amd64\u0026upstream=ncurses\u0026distro=debian-9", + "upstreams": [ + { + "name": "ncurses" + } + ], + "metadata": null + } + }, + { + "vulnerability": { + "id": "CVE-2022-29458", + "dataSource": "https://security-tracker.debian.org/tracker/CVE-2022-29458", + "namespace": "debian:distro:debian:9", + "severity": "High", + "urls": [ + "https://security-tracker.debian.org/tracker/CVE-2022-29458" + ], + "description": "ncurses 6.3 before patch 20220416 has an out-of-bounds read and segmentation violation in convert_strings in tinfo/read_entry.c in the terminfo library.", + "cvss": null, + "fix": { + "versions": [], + "state": "wont-fix" + }, + "advisories": null + }, + "relatedVulnerabilities": [ + { + "id": "CVE-2022-29458", + "dataSource": "https://nvd.nist.gov/vuln/detail/CVE-2022-29458", + "namespace": "nvd:cpe", + "severity": "High", + "urls": [ + "http://seclists.org/fulldisclosure/2022/Oct/41", + "https://lists.debian.org/debian-lts-announce/2022/10/msg00037.html", + "https://lists.gnu.org/archive/html/bug-ncurses/2022-04/msg00014.html", + "https://lists.gnu.org/archive/html/bug-ncurses/2022-04/msg00016.html", + "https://support.apple.com/kb/HT213488" + ], + "description": "ncurses 6.3 before patch 20220416 has an out-of-bounds read and segmentation violation in convert_strings in tinfo/read_entry.c in the terminfo library.", + "cvss": null + } + ], + "matchDetails": [ + { + "type": "exact-indirect-match", + "matcher": "dpkg-matcher", + "searchedBy": { + "distro": { + "type": "debian", + "version": "9" + }, + "namespace": "debian:distro:debian:9", + "package": { + "name": "ncurses", + "version": "6.0+20161126-1+deb9u2" + } + }, + "found": { + "versionConstraint": "none (deb)", + "vulnerabilityID": "CVE-2022-29458" + } + } + ], + "artifact": { + "name": "libncursesw5", + "version": "6.0+20161126-1+deb9u2", + "type": "deb", + "locations": null, + "language": "", + "licenses": [], + "cpes": [ + "cpe:2.3:a:libncursesw5:libncursesw5:6.0+20161126-1+deb9u2:*:*:*:*:*:*:*" + ], + "purl": "pkg:deb/debian/libncursesw5@6.0+20161126-1+deb9u2?arch=amd64\u0026upstream=ncurses\u0026distro=debian-9", + "upstreams": [ + { + "name": "ncurses" + } + ], + "metadata": null + } + }, + { + "vulnerability": { + "id": "CVE-2022-29458", + "dataSource": "https://security-tracker.debian.org/tracker/CVE-2022-29458", + "namespace": "debian:distro:debian:9", + "severity": "High", + "urls": [ + "https://security-tracker.debian.org/tracker/CVE-2022-29458" + ], + "description": "ncurses 6.3 before patch 20220416 has an out-of-bounds read and segmentation violation in convert_strings in tinfo/read_entry.c in the terminfo library.", + "cvss": null, + "fix": { + "versions": [], + "state": "wont-fix" + }, + "advisories": null + }, + "relatedVulnerabilities": [ + { + "id": "CVE-2022-29458", + "dataSource": "https://nvd.nist.gov/vuln/detail/CVE-2022-29458", + "namespace": "nvd:cpe", + "severity": "High", + "urls": [ + "http://seclists.org/fulldisclosure/2022/Oct/41", + "https://lists.debian.org/debian-lts-announce/2022/10/msg00037.html", + "https://lists.gnu.org/archive/html/bug-ncurses/2022-04/msg00014.html", + "https://lists.gnu.org/archive/html/bug-ncurses/2022-04/msg00016.html", + "https://support.apple.com/kb/HT213488" + ], + "description": "ncurses 6.3 before patch 20220416 has an out-of-bounds read and segmentation violation in convert_strings in tinfo/read_entry.c in the terminfo library.", + "cvss": null + } + ], + "matchDetails": [ + { + "type": "exact-indirect-match", + "matcher": "dpkg-matcher", + "searchedBy": { + "distro": { + "type": "debian", + "version": "9" + }, + "namespace": "debian:distro:debian:9", + "package": { + "name": "ncurses", + "version": "6.0+20161126-1+deb9u2" + } + }, + "found": { + "versionConstraint": "none (deb)", + "vulnerabilityID": "CVE-2022-29458" + } + } + ], + "artifact": { + "name": "libtinfo5", + "version": "6.0+20161126-1+deb9u2", + "type": "deb", + "locations": null, + "language": "", + "licenses": [], + "cpes": [ + "cpe:2.3:a:libtinfo5:libtinfo5:6.0+20161126-1+deb9u2:*:*:*:*:*:*:*" + ], + "purl": "pkg:deb/debian/libtinfo5@6.0+20161126-1+deb9u2?arch=amd64\u0026upstream=ncurses\u0026distro=debian-9", + "upstreams": [ + { + "name": "ncurses" + } + ], + "metadata": null + } + }, + { + "vulnerability": { + "id": "CVE-2022-29458", + "dataSource": "https://security-tracker.debian.org/tracker/CVE-2022-29458", + "namespace": "debian:distro:debian:9", + "severity": "High", + "urls": [ + "https://security-tracker.debian.org/tracker/CVE-2022-29458" + ], + "description": "ncurses 6.3 before patch 20220416 has an out-of-bounds read and segmentation violation in convert_strings in tinfo/read_entry.c in the terminfo library.", + "cvss": null, + "fix": { + "versions": [], + "state": "wont-fix" + }, + "advisories": null + }, + "relatedVulnerabilities": [ + { + "id": "CVE-2022-29458", + "dataSource": "https://nvd.nist.gov/vuln/detail/CVE-2022-29458", + "namespace": "nvd:cpe", + "severity": "High", + "urls": [ + "http://seclists.org/fulldisclosure/2022/Oct/41", + "https://lists.debian.org/debian-lts-announce/2022/10/msg00037.html", + "https://lists.gnu.org/archive/html/bug-ncurses/2022-04/msg00014.html", + "https://lists.gnu.org/archive/html/bug-ncurses/2022-04/msg00016.html", + "https://support.apple.com/kb/HT213488" + ], + "description": "ncurses 6.3 before patch 20220416 has an out-of-bounds read and segmentation violation in convert_strings in tinfo/read_entry.c in the terminfo library.", + "cvss": null + } + ], + "matchDetails": [ + { + "type": "exact-indirect-match", + "matcher": "dpkg-matcher", + "searchedBy": { + "distro": { + "type": "debian", + "version": "9" + }, + "namespace": "debian:distro:debian:9", + "package": { + "name": "ncurses", + "version": "6.0+20161126-1+deb9u2" + } + }, + "found": { + "versionConstraint": "none (deb)", + "vulnerabilityID": "CVE-2022-29458" + } + } + ], + "artifact": { + "name": "ncurses-base", + "version": "6.0+20161126-1+deb9u2", + "type": "deb", + "locations": null, + "language": "", + "licenses": [], + "cpes": [ + "cpe:2.3:a:ncurses-base:ncurses-base:6.0+20161126-1+deb9u2:*:*:*:*:*:*:*", + "cpe:2.3:a:ncurses-base:ncurses_base:6.0+20161126-1+deb9u2:*:*:*:*:*:*:*", + "cpe:2.3:a:ncurses_base:ncurses-base:6.0+20161126-1+deb9u2:*:*:*:*:*:*:*", + "cpe:2.3:a:ncurses_base:ncurses_base:6.0+20161126-1+deb9u2:*:*:*:*:*:*:*", + "cpe:2.3:a:ncurses:ncurses-base:6.0+20161126-1+deb9u2:*:*:*:*:*:*:*", + "cpe:2.3:a:ncurses:ncurses_base:6.0+20161126-1+deb9u2:*:*:*:*:*:*:*" + ], + "purl": "pkg:deb/debian/ncurses-base@6.0+20161126-1+deb9u2?arch=all\u0026upstream=ncurses\u0026distro=debian-9", + "upstreams": [ + { + "name": "ncurses" + } + ], + "metadata": null + } + }, + { + "vulnerability": { + "id": "CVE-2022-29458", + "dataSource": "https://security-tracker.debian.org/tracker/CVE-2022-29458", + "namespace": "debian:distro:debian:9", + "severity": "High", + "urls": [ + "https://security-tracker.debian.org/tracker/CVE-2022-29458" + ], + "description": "ncurses 6.3 before patch 20220416 has an out-of-bounds read and segmentation violation in convert_strings in tinfo/read_entry.c in the terminfo library.", + "cvss": null, + "fix": { + "versions": [], + "state": "wont-fix" + }, + "advisories": null + }, + "relatedVulnerabilities": [ + { + "id": "CVE-2022-29458", + "dataSource": "https://nvd.nist.gov/vuln/detail/CVE-2022-29458", + "namespace": "nvd:cpe", + "severity": "High", + "urls": [ + "http://seclists.org/fulldisclosure/2022/Oct/41", + "https://lists.debian.org/debian-lts-announce/2022/10/msg00037.html", + "https://lists.gnu.org/archive/html/bug-ncurses/2022-04/msg00014.html", + "https://lists.gnu.org/archive/html/bug-ncurses/2022-04/msg00016.html", + "https://support.apple.com/kb/HT213488" + ], + "description": "ncurses 6.3 before patch 20220416 has an out-of-bounds read and segmentation violation in convert_strings in tinfo/read_entry.c in the terminfo library.", + "cvss": null + } + ], + "matchDetails": [ + { + "type": "exact-indirect-match", + "matcher": "dpkg-matcher", + "searchedBy": { + "distro": { + "type": "debian", + "version": "9" + }, + "namespace": "debian:distro:debian:9", + "package": { + "name": "ncurses", + "version": "6.0+20161126-1+deb9u2" + } + }, + "found": { + "versionConstraint": "none (deb)", + "vulnerabilityID": "CVE-2022-29458" + } + } + ], + "artifact": { + "name": "ncurses-bin", + "version": "6.0+20161126-1+deb9u2", + "type": "deb", + "locations": null, + "language": "", + "licenses": [], + "cpes": [ + "cpe:2.3:a:ncurses-bin:ncurses-bin:6.0+20161126-1+deb9u2:*:*:*:*:*:*:*", + "cpe:2.3:a:ncurses-bin:ncurses_bin:6.0+20161126-1+deb9u2:*:*:*:*:*:*:*", + "cpe:2.3:a:ncurses_bin:ncurses-bin:6.0+20161126-1+deb9u2:*:*:*:*:*:*:*", + "cpe:2.3:a:ncurses_bin:ncurses_bin:6.0+20161126-1+deb9u2:*:*:*:*:*:*:*", + "cpe:2.3:a:ncurses:ncurses-bin:6.0+20161126-1+deb9u2:*:*:*:*:*:*:*", + "cpe:2.3:a:ncurses:ncurses_bin:6.0+20161126-1+deb9u2:*:*:*:*:*:*:*" + ], + "purl": "pkg:deb/debian/ncurses-bin@6.0+20161126-1+deb9u2?arch=amd64\u0026upstream=ncurses\u0026distro=debian-9", + "upstreams": [ + { + "name": "ncurses" + } + ], + "metadata": null + } + }, + { + "vulnerability": { + "id": "CVE-2022-29824", + "dataSource": "https://security-tracker.debian.org/tracker/CVE-2022-29824", + "namespace": "debian:distro:debian:9", + "severity": "Medium", + "urls": [ + "https://security-tracker.debian.org/tracker/CVE-2022-29824" + ], + "description": "In libxml2 before 2.9.14, several buffer handling functions in buf.c (xmlBuf*) and tree.c (xmlBuffer*) don't check for integer overflows. This can result in out-of-bounds memory writes. Exploitation requires a victim to open a crafted, multi-gigabyte XML file. Other software using libxml2's buffer functions, for example libxslt through 1.1.35, is affected as well.", + "cvss": null, + "fix": { + "versions": [ + "2.9.4+dfsg1-2.2+deb9u7" + ], + "state": "fixed" + }, + "advisories": null + }, + "relatedVulnerabilities": [ + { + "id": "CVE-2022-29824", + "dataSource": "https://nvd.nist.gov/vuln/detail/CVE-2022-29824", + "namespace": "nvd:cpe", + "severity": "Medium", + "urls": [ + "http://packetstormsecurity.com/files/167345/libxml2-xmlBufAdd-Heap-Buffer-Overflow.html", + "http://packetstormsecurity.com/files/169825/libxml2-xmlParseNameComplex-Integer-Overflow.html", + "https://gitlab.gnome.org/GNOME/libxml2/-/commit/2554a2408e09f13652049e5ffb0d26196b02ebab", + "https://gitlab.gnome.org/GNOME/libxml2/-/commit/6c283d83eccd940bcde15634ac8c7f100e3caefd", + "https://gitlab.gnome.org/GNOME/libxml2/-/tags/v2.9.14", + "https://gitlab.gnome.org/GNOME/libxslt/-/tags", + "https://lists.debian.org/debian-lts-announce/2022/05/msg00023.html", + "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/FZOBT5Y6Y2QLDDX2HZGMV7MJMWGXORKK/", + "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/P3NVZVWFRBXBI3AKZZWUWY6INQQPQVSF/", + "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/P5363EDV5VHZ5C77ODA43RYDCPMA7ARM/", + "https://security.gentoo.org/glsa/202210-03", + "https://security.netapp.com/advisory/ntap-20220715-0006/", + "https://www.debian.org/security/2022/dsa-5142", + "https://www.oracle.com/security-alerts/cpujul2022.html" + ], + "description": "In libxml2 before 2.9.14, several buffer handling functions in buf.c (xmlBuf*) and tree.c (xmlBuffer*) don't check for integer overflows. This can result in out-of-bounds memory writes. Exploitation requires a victim to open a crafted, multi-gigabyte XML file. Other software using libxml2's buffer functions, for example libxslt through 1.1.35, is affected as well.", + "cvss": null + } + ], + "matchDetails": [ + { + "type": "exact-direct-match", + "matcher": "dpkg-matcher", + "searchedBy": { + "distro": { + "type": "debian", + "version": "9" + }, + "namespace": "debian:distro:debian:9", + "package": { + "name": "libxml2", + "version": "2.9.4+dfsg1-2.2+deb9u2" + } + }, + "found": { + "versionConstraint": "\u003c 2.9.4+dfsg1-2.2+deb9u7 (deb)", + "vulnerabilityID": "CVE-2022-29824" + } + } + ], + "artifact": { + "name": "libxml2", + "version": "2.9.4+dfsg1-2.2+deb9u2", + "type": "deb", + "locations": null, + "language": "", + "licenses": [], + "cpes": [ + "cpe:2.3:a:libxml2:libxml2:2.9.4+dfsg1-2.2+deb9u2:*:*:*:*:*:*:*" + ], + "purl": "pkg:deb/debian/libxml2@2.9.4+dfsg1-2.2+deb9u2?arch=amd64\u0026distro=debian-9", + "upstreams": null, + "metadata": null + } + }, + { + "vulnerability": { + "id": "CVE-2022-31782", + "dataSource": "https://security-tracker.debian.org/tracker/CVE-2022-31782", + "namespace": "debian:distro:debian:9", + "severity": "Negligible", + "urls": [ + "https://security-tracker.debian.org/tracker/CVE-2022-31782" + ], + "description": "ftbench.c in FreeType Demo Programs through 2.12.1 has a heap-based buffer overflow.", + "cvss": null, + "fix": { + "versions": [], + "state": "not-fixed" + }, + "advisories": null + }, + "relatedVulnerabilities": [ + { + "id": "CVE-2022-31782", + "dataSource": "https://nvd.nist.gov/vuln/detail/CVE-2022-31782", + "namespace": "nvd:cpe", + "severity": "High", + "urls": [ + "https://gitlab.freedesktop.org/freetype/freetype-demos/-/issues/8" + ], + "description": "ftbench.c in FreeType Demo Programs through 2.12.1 has a heap-based buffer overflow.", + "cvss": null + } + ], + "matchDetails": [ + { + "type": "exact-indirect-match", + "matcher": "dpkg-matcher", + "searchedBy": { + "distro": { + "type": "debian", + "version": "9" + }, + "namespace": "debian:distro:debian:9", + "package": { + "name": "freetype", + "version": "2.6.3-3.2" + } + }, + "found": { + "versionConstraint": "none (deb)", + "vulnerabilityID": "CVE-2022-31782" + } + } + ], + "artifact": { + "name": "libfreetype6", + "version": "2.6.3-3.2", + "type": "deb", + "locations": null, + "language": "", + "licenses": [ + "BSD-2-Clause", + "BSD-3-Clause", + "LicenseRef-Catharon-OSL", + "FTL", + "GPL-2.0-only", + "GPL-2.0-or-later", + "LicenseRef-GZip", + "LicenseRef-OpenGroup-BSD-like" + ], + "cpes": [ + "cpe:2.3:a:libfreetype6:libfreetype6:2.6.3-3.2:*:*:*:*:*:*:*" + ], + "purl": "pkg:deb/debian/libfreetype6@2.6.3-3.2?arch=amd64\u0026upstream=freetype\u0026distro=debian-9", + "upstreams": [ + { + "name": "freetype" + } + ], + "metadata": null + } + }, + { + "vulnerability": { + "id": "CVE-2022-34903", + "dataSource": "https://security-tracker.debian.org/tracker/CVE-2022-34903", + "namespace": "debian:distro:debian:9", + "severity": "Medium", + "urls": [ + "https://security-tracker.debian.org/tracker/CVE-2022-34903" + ], + "description": "GnuPG through 2.3.6, in unusual situations where an attacker possesses any secret-key information from a victim's keyring and other constraints (e.g., use of GPGME) are met, allows signature forgery via injection into the status line.", + "cvss": null, + "fix": { + "versions": [], + "state": "not-fixed" + }, + "advisories": null + }, + "relatedVulnerabilities": [ + { + "id": "CVE-2022-34903", + "dataSource": "https://nvd.nist.gov/vuln/detail/CVE-2022-34903", + "namespace": "nvd:cpe", + "severity": "Medium", + "urls": [ + "http://www.openwall.com/lists/oss-security/2022/07/02/1", + "https://bugs.debian.org/1014157", + "https://dev.gnupg.org/T6027", + "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/FRLWJQ76A4UKHI3Q36BKSJKS4LFLQO33/", + "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/NPTAR76EIZY7NQFENSOZO7U473257OVZ/", + "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/VN63GBTMRWO36Y7BKA2WQHROAKCXKCBL/", + "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/VU64FUVG2PRZBSHFOQRSP7KDVEIZ23OS/", + "https://security.netapp.com/advisory/ntap-20220826-0005/", + "https://www.debian.org/security/2022/dsa-5174", + "https://www.openwall.com/lists/oss-security/2022/06/30/1" + ], + "description": "GnuPG through 2.3.6, in unusual situations where an attacker possesses any secret-key information from a victim's keyring and other constraints (e.g., use of GPGME) are met, allows signature forgery via injection into the status line.", + "cvss": null + } + ], + "matchDetails": [ + { + "type": "exact-indirect-match", + "matcher": "dpkg-matcher", + "searchedBy": { + "distro": { + "type": "debian", + "version": "9" + }, + "namespace": "debian:distro:debian:9", + "package": { + "name": "gnupg2", + "version": "2.1.18-8~deb9u3" + } + }, + "found": { + "versionConstraint": "none (deb)", + "vulnerabilityID": "CVE-2022-34903" + } + } + ], + "artifact": { + "name": "gpgv", + "version": "2.1.18-8~deb9u3", + "type": "deb", + "locations": null, + "language": "", + "licenses": [ + "BSD-3-Clause", + "LicenseRef-Expat", + "GPL-3.0-only", + "GPL-3.0-or-later", + "LGPL-2.1-only", + "LGPL-2.1-or-later", + "LGPL-3.0-only", + "LGPL-3.0-or-later", + "LicenseRef-RFC-Reference", + "LicenseRef-TinySCHEME", + "LicenseRef-permissive" + ], + "cpes": [ + "cpe:2.3:a:gpgv:gpgv:2.1.18-8~deb9u3:*:*:*:*:*:*:*" + ], + "purl": "pkg:deb/debian/gpgv@2.1.18-8~deb9u3?arch=amd64\u0026upstream=gnupg2\u0026distro=debian-9", + "upstreams": [ + { + "name": "gnupg2" + } + ], + "metadata": null + } + } + ], + "source": { + "type": "image", + "target": { + "userInput": "", + "imageID": "", + "manifestDigest": "", + "mediaType": "", + "tags": [], + "imageSize": 0, + "layers": null, + "manifest": null, + "config": null, + "repoDigests": [], + "architecture": "", + "os": "" + } + }, + "distro": { + "name": "debian", + "version": "9", + "idLike": [ + "debian" + ] + }, + "descriptor": { + "name": "grype", + "version": "[not provided]", + "configuration": null, + "db": { + "built": "2023-03-30T01:30:07Z", + "schemaVersion": 5, + "location": "/home/matthiasbertschy/.cache/grype/db/5", + "checksum": "sha256:ab0f3d368682eb6c3b137d1fc4ace82e6beb9d1b462485193b90009fc8dd0125", + "error": null + } + } + }, + "Annotations": null, + "Labels": null +} \ No newline at end of file