Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Scan tries to contact maven.org even if in air-gapped environment #1185

Closed
DrissiReda opened this issue Aug 17, 2021 · 4 comments · Fixed by #1249
Closed

Scan tries to contact maven.org even if in air-gapped environment #1185

DrissiReda opened this issue Aug 17, 2021 · 4 comments · Fixed by #1249
Labels
kind/bug Categorizes issue or PR as related to a bug.

Comments

@DrissiReda
Copy link

Description

I'm in an air-gapped environment, I'm using this command:

trivy --cache-dir /path/to/cache --skip-update image nginx:1.19.1

But I see in logs that the scan tries connecting to the internet:

2021-08-17T15:03:33.627+0200	DEBUG	request failed	{"error": "Get \"http://search.maven.org/solrsearch/select?q=1%3A%224f278760b2f9f8786cab446beff634f711a8746b%22&rows=1&wt=json\": dial tcp 34.230.199.108:80: i/o timeout", "method": "GET", "url": "http://search.maven.org/solrsearch/select?q=1%3A%224f278760b2f9f8786cab446beff634f711a8746b%22&rows=1&wt=json"}
2021-08-17T15:03:33.627+0200	DEBUG	retrying request	{"request": "GET http://search.maven.org/solrsearch/select?q=1%3A%224f278760b2f9f8786cab446beff634f711a8746b%22&rows=1&wt=json", "timeout": "20s", "remaining": 5}
2021-08-17T15:04:02.834+0200	FATAL	scan error:
    github.com/aquasecurity/trivy/pkg/commands/artifact.runWithTimeout
        /home/runner/work/trivy/trivy/pkg/commands/artifact/run.go:69
  - image scan failed:
    github.com/aquasecurity/trivy/pkg/commands/artifact.scan
        /home/runner/work/trivy/trivy/pkg/commands/artifact/run.go:185
  - failed analysis:
    github.com/aquasecurity/trivy/pkg/scanner.Scanner.ScanArtifact
        /home/runner/work/trivy/trivy/pkg/scanner/scan.go:98
  - analyze error:
    github.com/aquasecurity/fanal/artifact/image.Artifact.Inspect
        /home/runner/go/pkg/mod/github.com/aquasecurity/[email protected]/artifact/image/image.go:95
  - timeout:
    github.com/aquasecurity/fanal/artifact/image.Artifact.inspect
        /home/runner/go/pkg/mod/github.com/aquasecurity/[email protected]/artifact/image/image.go:159
  - context deadline exceeded

What did you expect to happen?

That the scan doesn't try connecting internet, because I don't have any.

What happened instead?

The scan tries connecting to the internet

Output of run with -debug:

full debug log
2021-08-17T15:03:02.833+0200	DEBUG	Severities: UNKNOWN,LOW,MEDIUM,HIGH,CRITICAL
2021-08-17T15:03:02.834+0200	DEBUG	cache dir:  /tmp/aquasecurity/cache/
2021-08-17T15:03:02.834+0200	DEBUG	DB update was skipped because DB is the latest
2021-08-17T15:03:02.834+0200	DEBUG	DB Schema: 1, Type: 1, UpdatedAt: 2021-08-17 12:10:10.607307325 +0000 UTC, NextUpdate: 2021-08-17 18:10:10.607306925 +0000 UTC, DownloadedAt: 0001-01-01 00:00:00 +0000 UTC
2021-08-17T15:03:02.834+0200	DEBUG	Vulnerability type:  [os library]
2021-08-17T15:03:02.869+0200	DEBUG	Image ID: sha256:08393e824c32d456ff69aec72c64d1ab63fecdad060ab0e8d3d42640fc3d64c5
2021-08-17T15:03:02.869+0200	DEBUG	Diff IDs: [sha256:d0f104dc0a1f9c744b65b23b3fd4d4d3236b4656e67f776fe13f8ad8423b955c sha256:ff73b8119c50a75f3af107109381640d4c14e9e29ff0b53a981bbd8c9414f79b sha256:ed39597d15568ed2e5bb45f81c6bfaaa426cd297f0e2aa04f6006ad87f449488 sha256:6d196faff4ee7b431ce803a95faf3754164d42bc9350e1496644c8755a65422a sha256:ac078d8f08c6b18167798771c612ec79e9b69f281678fd9148e9b705e66b9635]
2021-08-17T15:03:02.870+0200	DEBUG	Missing image ID: sha256:08393e824c32d456ff69aec72c64d1ab63fecdad060ab0e8d3d42640fc3d64c5
2021-08-17T15:03:02.870+0200	DEBUG	Missing diff ID: sha256:ff73b8119c50a75f3af107109381640d4c14e9e29ff0b53a981bbd8c9414f79b
2021-08-17T15:03:02.896+0200	DEBUG	Analysis error: unable to parse etc/fonts/conf.d/20-unhint-small-dejavu-lgc-sans.conf: failed to parse etc/fonts/conf.d/20-unhint-small-dejavu-lgc-sans.conf: EOF
2021-08-17T15:03:02.896+0200	DEBUG	Analysis error: unable to parse etc/fonts/conf.d/10-hinting-slight.conf: failed to parse etc/fonts/conf.d/10-hinting-slight.conf: EOF
2021-08-17T15:03:02.896+0200	DEBUG	Analysis error: unable to parse etc/fonts/conf.d/11-lcdfilter-default.conf: failed to parse etc/fonts/conf.d/11-lcdfilter-default.conf: EOF
2021-08-17T15:03:02.896+0200	DEBUG	Analysis error: unable to parse etc/fonts/conf.d/20-unhint-small-dejavu-sans-mono.conf: failed to parse etc/fonts/conf.d/20-unhint-small-dejavu-sans-mono.conf: EOF
2021-08-17T15:03:02.896+0200	DEBUG	Analysis error: unable to parse etc/fonts/conf.d/20-unhint-small-dejavu-lgc-sans-mono.conf: failed to parse etc/fonts/conf.d/20-unhint-small-dejavu-lgc-sans-mono.conf: EOF
2021-08-17T15:03:02.896+0200	DEBUG	Analysis error: unable to parse etc/fonts/conf.d/20-unhint-small-dejavu-lgc-serif.conf: failed to parse etc/fonts/conf.d/20-unhint-small-dejavu-lgc-serif.conf: EOF
2021-08-17T15:03:02.896+0200	DEBUG	Analysis error: unable to parse etc/fonts/conf.d/20-unhint-small-dejavu-sans.conf: failed to parse etc/fonts/conf.d/20-unhint-small-dejavu-sans.conf: EOF
2021-08-17T15:03:02.896+0200	DEBUG	Analysis error: unable to parse etc/fonts/conf.d/10-scale-bitmap-fonts.conf: failed to parse etc/fonts/conf.d/10-scale-bitmap-fonts.conf: EOF
2021-08-17T15:03:02.896+0200	DEBUG	Analysis error: unable to parse etc/fonts/conf.d/20-unhint-small-vera.conf: failed to parse etc/fonts/conf.d/20-unhint-small-vera.conf: EOF
2021-08-17T15:03:02.896+0200	DEBUG	Analysis error: unable to parse etc/fonts/conf.d/45-generic.conf: failed to parse etc/fonts/conf.d/45-generic.conf: EOF
2021-08-17T15:03:02.896+0200	DEBUG	Analysis error: unable to parse etc/fonts/conf.d/45-latin.conf: failed to parse etc/fonts/conf.d/45-latin.conf: EOF
2021-08-17T15:03:02.896+0200	DEBUG	Analysis error: unable to parse etc/fonts/conf.d/20-unhint-small-dejavu-serif.conf: failed to parse etc/fonts/conf.d/20-unhint-small-dejavu-serif.conf: EOF
2021-08-17T15:03:02.896+0200	DEBUG	Analysis error: unable to parse etc/fonts/conf.d/40-nonlatin.conf: failed to parse etc/fonts/conf.d/40-nonlatin.conf: EOF
2021-08-17T15:03:02.896+0200	DEBUG	Analysis error: unable to parse etc/fonts/conf.d/51-local.conf: failed to parse etc/fonts/conf.d/51-local.conf: EOF
2021-08-17T15:03:02.896+0200	DEBUG	Analysis error: unable to parse etc/fonts/conf.d/57-dejavu-sans-mono.conf: failed to parse etc/fonts/conf.d/57-dejavu-sans-mono.conf: EOF
2021-08-17T15:03:02.896+0200	DEBUG	Analysis error: unable to parse etc/fonts/conf.d/30-metric-aliases.conf: failed to parse etc/fonts/conf.d/30-metric-aliases.conf: EOF
2021-08-17T15:03:02.896+0200	DEBUG	Analysis error: unable to parse etc/fonts/conf.d/49-sansserif.conf: failed to parse etc/fonts/conf.d/49-sansserif.conf: EOF
2021-08-17T15:03:02.896+0200	DEBUG	Analysis error: unable to parse etc/fonts/conf.d/50-user.conf: failed to parse etc/fonts/conf.d/50-user.conf: EOF
2021-08-17T15:03:02.896+0200	DEBUG	Analysis error: unable to parse etc/fonts/conf.d/57-dejavu-sans.conf: failed to parse etc/fonts/conf.d/57-dejavu-sans.conf: EOF
2021-08-17T15:03:02.896+0200	DEBUG	Analysis error: unable to parse etc/fonts/conf.d/57-dejavu-serif.conf: failed to parse etc/fonts/conf.d/57-dejavu-serif.conf: EOF
2021-08-17T15:03:02.896+0200	DEBUG	Analysis error: unable to parse etc/fonts/conf.d/58-dejavu-lgc-sans-mono.conf: failed to parse etc/fonts/conf.d/58-dejavu-lgc-sans-mono.conf: EOF
2021-08-17T15:03:02.896+0200	DEBUG	Analysis error: unable to parse etc/fonts/conf.d/58-dejavu-lgc-serif.conf: failed to parse etc/fonts/conf.d/58-dejavu-lgc-serif.conf: EOF
2021-08-17T15:03:02.896+0200	DEBUG	Analysis error: unable to parse etc/fonts/conf.d/58-dejavu-lgc-sans.conf: failed to parse etc/fonts/conf.d/58-dejavu-lgc-sans.conf: EOF
2021-08-17T15:03:02.896+0200	DEBUG	Analysis error: unable to parse etc/fonts/conf.d/65-nonlatin.conf: failed to parse etc/fonts/conf.d/65-nonlatin.conf: EOF
2021-08-17T15:03:02.896+0200	DEBUG	Analysis error: unable to parse etc/fonts/conf.d/69-unifont.conf: failed to parse etc/fonts/conf.d/69-unifont.conf: EOF
2021-08-17T15:03:02.896+0200	DEBUG	Analysis error: unable to parse etc/fonts/conf.d/60-latin.conf: failed to parse etc/fonts/conf.d/60-latin.conf: EOF
2021-08-17T15:03:02.896+0200	DEBUG	Analysis error: unable to parse etc/fonts/conf.d/60-generic.conf: failed to parse etc/fonts/conf.d/60-generic.conf: EOF
2021-08-17T15:03:02.896+0200	DEBUG	Analysis error: unable to parse etc/fonts/conf.d/70-no-bitmaps.conf: failed to parse etc/fonts/conf.d/70-no-bitmaps.conf: EOF
2021-08-17T15:03:02.896+0200	DEBUG	Analysis error: unable to parse etc/fonts/conf.d/65-fonts-persian.conf: failed to parse etc/fonts/conf.d/65-fonts-persian.conf: EOF
2021-08-17T15:03:02.896+0200	DEBUG	Analysis error: unable to parse etc/fonts/conf.d/80-delicious.conf: failed to parse etc/fonts/conf.d/80-delicious.conf: EOF
2021-08-17T15:03:02.896+0200	DEBUG	Analysis error: unable to parse etc/fonts/conf.d/90-synthetic.conf: failed to parse etc/fonts/conf.d/90-synthetic.conf: EOF
2021-08-17T15:03:02.897+0200	DEBUG	Analysis error: unable to parse etc/rc1.d/K01nginx: failed to parse etc/rc1.d/K01nginx: EOF
2021-08-17T15:03:02.897+0200	DEBUG	Analysis error: unable to parse etc/rc2.d/S01nginx: failed to parse etc/rc2.d/S01nginx: EOF
2021-08-17T15:03:02.897+0200	DEBUG	Analysis error: unable to parse etc/rc3.d/S01nginx: failed to parse etc/rc3.d/S01nginx: EOF
2021-08-17T15:03:02.898+0200	DEBUG	Analysis error: unable to parse etc/rc4.d/S01nginx: failed to parse etc/rc4.d/S01nginx: EOF
2021-08-17T15:03:02.898+0200	DEBUG	Analysis error: unable to parse etc/rc5.d/S01nginx: failed to parse etc/rc5.d/S01nginx: EOF
2021-08-17T15:03:02.898+0200	DEBUG	Analysis error: unable to parse etc/rc6.d/K01nginx: failed to parse etc/rc6.d/K01nginx: EOF
2021-08-17T15:03:02.898+0200	DEBUG	Analysis error: unable to parse etc/ssl/certs/02265526.0: failed to parse etc/ssl/certs/02265526.0: EOF
2021-08-17T15:03:02.898+0200	DEBUG	Analysis error: unable to parse etc/ssl/certs/03179a64.0: failed to parse etc/ssl/certs/03179a64.0: EOF
2021-08-17T15:03:02.898+0200	DEBUG	Analysis error: unable to parse etc/ssl/certs/062cdee6.0: failed to parse etc/ssl/certs/062cdee6.0: EOF
2021-08-17T15:03:02.898+0200	DEBUG	Analysis error: unable to parse etc/ssl/certs/064e0aa9.0: failed to parse etc/ssl/certs/064e0aa9.0: EOF
2021-08-17T15:03:02.898+0200	DEBUG	Analysis error: unable to parse etc/ssl/certs/06dc52d5.0: failed to parse etc/ssl/certs/06dc52d5.0: EOF
2021-08-17T15:03:02.898+0200	DEBUG	Analysis error: unable to parse etc/ssl/certs/080911ac.0: failed to parse etc/ssl/certs/080911ac.0: EOF
2021-08-17T15:03:02.898+0200	DEBUG	Analysis error: unable to parse etc/ssl/certs/09789157.0: failed to parse etc/ssl/certs/09789157.0: EOF
2021-08-17T15:03:02.898+0200	DEBUG	Analysis error: unable to parse etc/ssl/certs/0a775a30.0: failed to parse etc/ssl/certs/0a775a30.0: EOF
2021-08-17T15:03:02.898+0200	DEBUG	Analysis error: unable to parse etc/ssl/certs/0b1b94ef.0: failed to parse etc/ssl/certs/0b1b94ef.0: EOF
2021-08-17T15:03:02.898+0200	DEBUG	Analysis error: unable to parse etc/ssl/certs/0bf05006.0: failed to parse etc/ssl/certs/0bf05006.0: EOF
2021-08-17T15:03:02.898+0200	DEBUG	Analysis error: unable to parse etc/ssl/certs/0c4c9b6c.0: failed to parse etc/ssl/certs/0c4c9b6c.0: EOF
2021-08-17T15:03:02.898+0200	DEBUG	Analysis error: unable to parse etc/ssl/certs/0f5dc4f3.0: failed to parse etc/ssl/certs/0f5dc4f3.0: EOF
2021-08-17T15:03:02.898+0200	DEBUG	Analysis error: unable to parse etc/ssl/certs/0f6fa695.0: failed to parse etc/ssl/certs/0f6fa695.0: EOF
2021-08-17T15:03:02.898+0200	DEBUG	Analysis error: unable to parse etc/ssl/certs/1001acf7.0: failed to parse etc/ssl/certs/1001acf7.0: EOF
2021-08-17T15:03:02.899+0200	DEBUG	Analysis error: unable to parse etc/ssl/certs/106f3e4d.0: failed to parse etc/ssl/certs/106f3e4d.0: EOF
2021-08-17T15:03:02.899+0200	DEBUG	Analysis error: unable to parse etc/ssl/certs/128805a3.0: failed to parse etc/ssl/certs/128805a3.0: EOF
2021-08-17T15:03:02.899+0200	DEBUG	Analysis error: unable to parse etc/ssl/certs/14bc7599.0: failed to parse etc/ssl/certs/14bc7599.0: EOF
2021-08-17T15:03:02.899+0200	DEBUG	Analysis error: unable to parse etc/ssl/certs/1636090b.0: failed to parse etc/ssl/certs/1636090b.0: EOF
2021-08-17T15:03:02.899+0200	DEBUG	Analysis error: unable to parse etc/ssl/certs/18856ac4.0: failed to parse etc/ssl/certs/18856ac4.0: EOF
2021-08-17T15:03:02.899+0200	DEBUG	Analysis error: unable to parse etc/ssl/certs/1d3472b9.0: failed to parse etc/ssl/certs/1d3472b9.0: EOF
2021-08-17T15:03:02.899+0200	DEBUG	Analysis error: unable to parse etc/ssl/certs/1e08bfd1.0: failed to parse etc/ssl/certs/1e08bfd1.0: EOF
2021-08-17T15:03:02.899+0200	DEBUG	Analysis error: unable to parse etc/ssl/certs/1e09d511.0: failed to parse etc/ssl/certs/1e09d511.0: EOF
2021-08-17T15:03:02.899+0200	DEBUG	Analysis error: unable to parse etc/ssl/certs/244b5494.0: failed to parse etc/ssl/certs/244b5494.0: EOF
2021-08-17T15:03:02.899+0200	DEBUG	Analysis error: unable to parse etc/ssl/certs/2923b3f9.0: failed to parse etc/ssl/certs/2923b3f9.0: EOF
2021-08-17T15:03:02.899+0200	DEBUG	Analysis error: unable to parse etc/ssl/certs/2ae6433e.0: failed to parse etc/ssl/certs/2ae6433e.0: EOF
2021-08-17T15:03:02.899+0200	DEBUG	Analysis error: unable to parse etc/ssl/certs/2b349938.0: failed to parse etc/ssl/certs/2b349938.0: EOF
2021-08-17T15:03:02.899+0200	DEBUG	Analysis error: unable to parse etc/ssl/certs/2e5ac55d.0: failed to parse etc/ssl/certs/2e5ac55d.0: EOF
2021-08-17T15:03:02.899+0200	DEBUG	Analysis error: unable to parse etc/ssl/certs/32888f65.0: failed to parse etc/ssl/certs/32888f65.0: EOF
2021-08-17T15:03:02.899+0200	DEBUG	Analysis error: unable to parse etc/ssl/certs/349f2832.0: failed to parse etc/ssl/certs/349f2832.0: EOF
2021-08-17T15:03:02.899+0200	DEBUG	Analysis error: unable to parse etc/ssl/certs/3513523f.0: failed to parse etc/ssl/certs/3513523f.0: EOF
2021-08-17T15:03:02.899+0200	DEBUG	Analysis error: unable to parse etc/ssl/certs/3bde41ac.0: failed to parse etc/ssl/certs/3bde41ac.0: EOF
2021-08-17T15:03:02.899+0200	DEBUG	Analysis error: unable to parse etc/ssl/certs/3e44d2f7.0: failed to parse etc/ssl/certs/3e44d2f7.0: EOF
2021-08-17T15:03:02.899+0200	DEBUG	Analysis error: unable to parse etc/init.d/nginx-debug: failed to parse etc/init.d/nginx-debug: unrecognized executable format
2021-08-17T15:03:02.899+0200	DEBUG	Analysis error: unable to parse etc/ssl/certs/3e45d192.0: failed to parse etc/ssl/certs/3e45d192.0: EOF
2021-08-17T15:03:02.899+0200	DEBUG	Analysis error: unable to parse etc/nginx/modules: failed to parse etc/nginx/modules: EOF
2021-08-17T15:03:02.899+0200	DEBUG	Analysis error: unable to parse etc/rc0.d/K01nginx: failed to parse etc/rc0.d/K01nginx: EOF
2021-08-17T15:03:02.899+0200	DEBUG	Analysis error: unable to parse etc/ssl/certs/40193066.0: failed to parse etc/ssl/certs/40193066.0: EOF
2021-08-17T15:03:02.899+0200	DEBUG	Analysis error: unable to parse etc/ssl/certs/406c9bb1.0: failed to parse etc/ssl/certs/406c9bb1.0: EOF
2021-08-17T15:03:02.900+0200	DEBUG	Analysis error: unable to parse etc/ssl/certs/4304c5e5.0: failed to parse etc/ssl/certs/4304c5e5.0: EOF
2021-08-17T15:03:02.900+0200	DEBUG	Analysis error: unable to parse etc/init.d/nginx: failed to parse etc/init.d/nginx: unrecognized executable format
2021-08-17T15:03:02.900+0200	DEBUG	Analysis error: unable to parse etc/ssl/certs/4a6481c9.0: failed to parse etc/ssl/certs/4a6481c9.0: EOF
2021-08-17T15:03:02.900+0200	DEBUG	Analysis error: unable to parse etc/ssl/certs/4b718d9b.0: failed to parse etc/ssl/certs/4b718d9b.0: EOF
2021-08-17T15:03:02.900+0200	DEBUG	Analysis error: unable to parse etc/ssl/certs/40547a79.0: failed to parse etc/ssl/certs/40547a79.0: EOF
2021-08-17T15:03:02.900+0200	DEBUG	Analysis error: unable to parse etc/ssl/certs/4f316efb.0: failed to parse etc/ssl/certs/4f316efb.0: EOF
2021-08-17T15:03:02.900+0200	DEBUG	Analysis error: unable to parse etc/ssl/certs/5273a94c.0: failed to parse etc/ssl/certs/5273a94c.0: EOF
2021-08-17T15:03:02.900+0200	DEBUG	Analysis error: unable to parse etc/ssl/certs/5443e9e3.0: failed to parse etc/ssl/certs/5443e9e3.0: EOF
2021-08-17T15:03:02.900+0200	DEBUG	Analysis error: unable to parse etc/ssl/certs/48bec511.0: failed to parse etc/ssl/certs/48bec511.0: EOF
2021-08-17T15:03:02.900+0200	DEBUG	Analysis error: unable to parse etc/ssl/certs/4bfab552.0: failed to parse etc/ssl/certs/4bfab552.0: EOF
2021-08-17T15:03:02.900+0200	DEBUG	Analysis error: unable to parse etc/ssl/certs/4042bcee.0: failed to parse etc/ssl/certs/4042bcee.0: EOF
2021-08-17T15:03:02.900+0200	DEBUG	Analysis error: unable to parse etc/ssl/certs/5c44d531.0: failed to parse etc/ssl/certs/5c44d531.0: EOF
2021-08-17T15:03:02.900+0200	DEBUG	Analysis error: unable to parse etc/ssl/certs/5cd81ad7.0: failed to parse etc/ssl/certs/5cd81ad7.0: EOF
2021-08-17T15:03:02.900+0200	DEBUG	Analysis error: unable to parse etc/ssl/certs/54657681.0: failed to parse etc/ssl/certs/54657681.0: EOF
2021-08-17T15:03:02.900+0200	DEBUG	Analysis error: unable to parse etc/ssl/certs/5ad8a5d6.0: failed to parse etc/ssl/certs/5ad8a5d6.0: EOF
2021-08-17T15:03:02.900+0200	DEBUG	Analysis error: unable to parse etc/ssl/certs/5f15c80c.0: failed to parse etc/ssl/certs/5f15c80c.0: EOF
2021-08-17T15:03:02.900+0200	DEBUG	Analysis error: unable to parse etc/ssl/certs/5d3033c5.0: failed to parse etc/ssl/certs/5d3033c5.0: EOF
2021-08-17T15:03:02.900+0200	DEBUG	Analysis error: unable to parse etc/ssl/certs/5e98733a.0: failed to parse etc/ssl/certs/5e98733a.0: EOF
2021-08-17T15:03:02.900+0200	DEBUG	Analysis error: unable to parse etc/ssl/certs/57bcb2da.0: failed to parse etc/ssl/certs/57bcb2da.0: EOF
2021-08-17T15:03:02.900+0200	DEBUG	Analysis error: unable to parse etc/ssl/certs/5a4d6896.0: failed to parse etc/ssl/certs/5a4d6896.0: EOF
2021-08-17T15:03:02.900+0200	DEBUG	Analysis error: unable to parse etc/ssl/certs/626dceaf.0: failed to parse etc/ssl/certs/626dceaf.0: EOF
2021-08-17T15:03:02.900+0200	DEBUG	Analysis error: unable to parse etc/ssl/certs/607986c7.0: failed to parse etc/ssl/certs/607986c7.0: EOF
2021-08-17T15:03:02.900+0200	DEBUG	Analysis error: unable to parse etc/ssl/certs/6b99d060.0: failed to parse etc/ssl/certs/6b99d060.0: EOF
2021-08-17T15:03:02.900+0200	DEBUG	Analysis error: unable to parse etc/ssl/certs/6410666e.0: failed to parse etc/ssl/certs/6410666e.0: EOF
2021-08-17T15:03:02.900+0200	DEBUG	Analysis error: unable to parse etc/ssl/certs/6fa5da56.0: failed to parse etc/ssl/certs/6fa5da56.0: EOF
2021-08-17T15:03:02.900+0200	DEBUG	Analysis error: unable to parse etc/ssl/certs/706f604c.0: failed to parse etc/ssl/certs/706f604c.0: EOF
2021-08-17T15:03:02.900+0200	DEBUG	Analysis error: unable to parse etc/ssl/certs/653b494a.0: failed to parse etc/ssl/certs/653b494a.0: EOF
2021-08-17T15:03:02.900+0200	DEBUG	Analysis error: unable to parse etc/ssl/certs/75d1b2ed.0: failed to parse etc/ssl/certs/75d1b2ed.0: EOF
2021-08-17T15:03:02.900+0200	DEBUG	Analysis error: unable to parse etc/ssl/certs/76cb8f92.0: failed to parse etc/ssl/certs/76cb8f92.0: EOF
2021-08-17T15:03:02.900+0200	DEBUG	Analysis error: unable to parse etc/ssl/certs/68dd7389.0: failed to parse etc/ssl/certs/68dd7389.0: EOF
2021-08-17T15:03:02.900+0200	DEBUG	Analysis error: unable to parse etc/ssl/certs/749e9e03.0: failed to parse etc/ssl/certs/749e9e03.0: EOF
2021-08-17T15:03:02.900+0200	DEBUG	Analysis error: unable to parse etc/ssl/certs/773e07ad.0: failed to parse etc/ssl/certs/773e07ad.0: EOF
2021-08-17T15:03:02.900+0200	DEBUG	Analysis error: unable to parse etc/ssl/certs/7aaf71c0.0: failed to parse etc/ssl/certs/7aaf71c0.0: EOF
2021-08-17T15:03:02.900+0200	DEBUG	Analysis error: unable to parse etc/ssl/certs/6d41d539.0: failed to parse etc/ssl/certs/6d41d539.0: EOF
2021-08-17T15:03:02.900+0200	DEBUG	Analysis error: unable to parse etc/ssl/certs/7719f463.0: failed to parse etc/ssl/certs/7719f463.0: EOF
2021-08-17T15:03:02.900+0200	DEBUG	Analysis error: unable to parse etc/ssl/certs/76faf6c0.0: failed to parse etc/ssl/certs/76faf6c0.0: EOF
2021-08-17T15:03:02.900+0200	DEBUG	Analysis error: unable to parse etc/ssl/certs/8cb5ee0f.0: failed to parse etc/ssl/certs/8cb5ee0f.0: EOF
2021-08-17T15:03:02.900+0200	DEBUG	Analysis error: unable to parse etc/ssl/certs/8d86cdd1.0: failed to parse etc/ssl/certs/8d86cdd1.0: EOF
2021-08-17T15:03:02.900+0200	DEBUG	Analysis error: unable to parse etc/ssl/certs/8160b96c.0: failed to parse etc/ssl/certs/8160b96c.0: EOF
2021-08-17T15:03:02.900+0200	DEBUG	Analysis error: unable to parse etc/ssl/certs/7f3d5d1d.0: failed to parse etc/ssl/certs/7f3d5d1d.0: EOF
2021-08-17T15:03:02.900+0200	DEBUG	Analysis error: unable to parse etc/ssl/certs/988a38cb.0: failed to parse etc/ssl/certs/988a38cb.0: EOF
2021-08-17T15:03:02.900+0200	DEBUG	Analysis error: unable to parse etc/ssl/certs/8867006a.0: failed to parse etc/ssl/certs/8867006a.0: EOF
2021-08-17T15:03:02.900+0200	DEBUG	Analysis error: unable to parse etc/ssl/certs/9c8dfbd4.0: failed to parse etc/ssl/certs/9c8dfbd4.0: EOF
2021-08-17T15:03:02.900+0200	DEBUG	Analysis error: unable to parse etc/ssl/certs/9c2e7d30.0: failed to parse etc/ssl/certs/9c2e7d30.0: EOF
2021-08-17T15:03:02.900+0200	DEBUG	Analysis error: unable to parse etc/ssl/certs/93bc0acc.0: failed to parse etc/ssl/certs/93bc0acc.0: EOF
2021-08-17T15:03:02.900+0200	DEBUG	Analysis error: unable to parse etc/ssl/certs/930ac5d2.0: failed to parse etc/ssl/certs/930ac5d2.0: EOF
2021-08-17T15:03:02.900+0200	DEBUG	Analysis error: unable to parse etc/ssl/certs/ACCVRAIZ1.pem: failed to parse etc/ssl/certs/ACCVRAIZ1.pem: EOF
2021-08-17T15:03:02.900+0200	DEBUG	Analysis error: unable to parse etc/ssl/certs/AffirmTrust_Commercial.pem: failed to parse etc/ssl/certs/AffirmTrust_Commercial.pem: EOF
2021-08-17T15:03:02.900+0200	DEBUG	Analysis error: unable to parse etc/ssl/certs/AffirmTrust_Networking.pem: failed to parse etc/ssl/certs/AffirmTrust_Networking.pem: EOF
2021-08-17T15:03:02.900+0200	DEBUG	Analysis error: unable to parse etc/ssl/certs/9d04f354.0: failed to parse etc/ssl/certs/9d04f354.0: EOF
2021-08-17T15:03:02.900+0200	DEBUG	Analysis error: unable to parse etc/ssl/certs/Actalis_Authentication_Root_CA.pem: failed to parse etc/ssl/certs/Actalis_Authentication_Root_CA.pem: EOF
2021-08-17T15:03:02.900+0200	DEBUG	Analysis error: unable to parse etc/ssl/certs/AC_RAIZ_FNMT-RCM.pem: failed to parse etc/ssl/certs/AC_RAIZ_FNMT-RCM.pem: EOF
2021-08-17T15:03:02.900+0200	DEBUG	Analysis error: unable to parse etc/ssl/certs/AffirmTrust_Premium.pem: failed to parse etc/ssl/certs/AffirmTrust_Premium.pem: EOF
2021-08-17T15:03:02.900+0200	DEBUG	Analysis error: unable to parse etc/ssl/certs/AffirmTrust_Premium_ECC.pem: failed to parse etc/ssl/certs/AffirmTrust_Premium_ECC.pem: EOF
2021-08-17T15:03:02.900+0200	DEBUG	Analysis error: unable to parse etc/ssl/certs/Amazon_Root_CA_1.pem: failed to parse etc/ssl/certs/Amazon_Root_CA_1.pem: EOF
2021-08-17T15:03:02.900+0200	DEBUG	Analysis error: unable to parse etc/ssl/certs/Amazon_Root_CA_2.pem: failed to parse etc/ssl/certs/Amazon_Root_CA_2.pem: EOF
2021-08-17T15:03:02.901+0200	DEBUG	Analysis error: unable to parse etc/ssl/certs/Amazon_Root_CA_3.pem: failed to parse etc/ssl/certs/Amazon_Root_CA_3.pem: EOF
2021-08-17T15:03:02.901+0200	DEBUG	Analysis error: unable to parse etc/ssl/certs/Amazon_Root_CA_4.pem: failed to parse etc/ssl/certs/Amazon_Root_CA_4.pem: EOF
2021-08-17T15:03:02.901+0200	DEBUG	Analysis error: unable to parse etc/ssl/certs/Atos_TrustedRoot_2011.pem: failed to parse etc/ssl/certs/Atos_TrustedRoot_2011.pem: EOF
2021-08-17T15:03:02.901+0200	DEBUG	Analysis error: unable to parse etc/ssl/certs/Autoridad_de_Certificacion_Firmaprofesional_CIF_A62634068.pem: failed to parse etc/ssl/certs/Autoridad_de_Certificacion_Firmaprofesional_CIF_A62634068.pem: EOF
2021-08-17T15:03:02.901+0200	DEBUG	Analysis error: unable to parse etc/ssl/certs/Buypass_Class_2_Root_CA.pem: failed to parse etc/ssl/certs/Buypass_Class_2_Root_CA.pem: EOF
2021-08-17T15:03:02.901+0200	DEBUG	Analysis error: unable to parse etc/ssl/certs/CFCA_EV_ROOT.pem: failed to parse etc/ssl/certs/CFCA_EV_ROOT.pem: EOF
2021-08-17T15:03:02.901+0200	DEBUG	Analysis error: unable to parse etc/ssl/certs/COMODO_Certification_Authority.pem: failed to parse etc/ssl/certs/COMODO_Certification_Authority.pem: EOF
2021-08-17T15:03:02.901+0200	DEBUG	Analysis error: unable to parse etc/ssl/certs/Baltimore_CyberTrust_Root.pem: failed to parse etc/ssl/certs/Baltimore_CyberTrust_Root.pem: EOF
2021-08-17T15:03:02.901+0200	DEBUG	Analysis error: unable to parse etc/ssl/certs/CA_Disig_Root_R2.pem: failed to parse etc/ssl/certs/CA_Disig_Root_R2.pem: EOF
2021-08-17T15:03:02.901+0200	DEBUG	Analysis error: unable to parse etc/ssl/certs/Buypass_Class_3_Root_CA.pem: failed to parse etc/ssl/certs/Buypass_Class_3_Root_CA.pem: EOF
2021-08-17T15:03:02.901+0200	DEBUG	Analysis error: unable to parse etc/ssl/certs/Certum_Trusted_Network_CA.pem: failed to parse etc/ssl/certs/Certum_Trusted_Network_CA.pem: EOF
2021-08-17T15:03:02.901+0200	DEBUG	Analysis error: unable to parse etc/ssl/certs/COMODO_ECC_Certification_Authority.pem: failed to parse etc/ssl/certs/COMODO_ECC_Certification_Authority.pem: EOF
2021-08-17T15:03:02.901+0200	DEBUG	Analysis error: unable to parse etc/ssl/certs/Certigna_Root_CA.pem: failed to parse etc/ssl/certs/Certigna_Root_CA.pem: EOF
2021-08-17T15:03:02.901+0200	DEBUG	Analysis error: unable to parse etc/ssl/certs/Chambers_of_Commerce_Root_-_2008.pem: failed to parse etc/ssl/certs/Chambers_of_Commerce_Root_-_2008.pem: EOF
2021-08-17T15:03:02.901+0200	DEBUG	Analysis error: unable to parse etc/ssl/certs/COMODO_RSA_Certification_Authority.pem: failed to parse etc/ssl/certs/COMODO_RSA_Certification_Authority.pem: EOF
2021-08-17T15:03:02.901+0200	DEBUG	Analysis error: unable to parse etc/ssl/certs/Certum_Trusted_Network_CA_2.pem: failed to parse etc/ssl/certs/Certum_Trusted_Network_CA_2.pem: EOF
2021-08-17T15:03:02.901+0200	DEBUG	Analysis error: unable to parse etc/ssl/certs/Certigna.pem: failed to parse etc/ssl/certs/Certigna.pem: EOF
2021-08-17T15:03:02.901+0200	DEBUG	Analysis error: unable to parse etc/ssl/certs/Comodo_AAA_Services_root.pem: failed to parse etc/ssl/certs/Comodo_AAA_Services_root.pem: EOF
2021-08-17T15:03:02.901+0200	DEBUG	Analysis error: unable to parse etc/ssl/certs/DigiCert_Assured_ID_Root_CA.pem: failed to parse etc/ssl/certs/DigiCert_Assured_ID_Root_CA.pem: EOF
2021-08-17T15:03:02.901+0200	DEBUG	Analysis error: unable to parse etc/ssl/certs/DigiCert_Assured_ID_Root_G2.pem: failed to parse etc/ssl/certs/DigiCert_Assured_ID_Root_G2.pem: EOF
2021-08-17T15:03:02.901+0200	DEBUG	Analysis error: unable to parse etc/ssl/certs/DigiCert_Assured_ID_Root_G3.pem: failed to parse etc/ssl/certs/DigiCert_Assured_ID_Root_G3.pem: EOF
2021-08-17T15:03:02.901+0200	DEBUG	Analysis error: unable to parse etc/ssl/certs/DigiCert_Global_Root_CA.pem: failed to parse etc/ssl/certs/DigiCert_Global_Root_CA.pem: EOF
2021-08-17T15:03:02.901+0200	DEBUG	Analysis error: unable to parse etc/ssl/certs/DigiCert_Global_Root_G2.pem: failed to parse etc/ssl/certs/DigiCert_Global_Root_G2.pem: EOF
2021-08-17T15:03:02.901+0200	DEBUG	Analysis error: unable to parse etc/ssl/certs/DigiCert_Global_Root_G3.pem: failed to parse etc/ssl/certs/DigiCert_Global_Root_G3.pem: EOF
2021-08-17T15:03:02.901+0200	DEBUG	Analysis error: unable to parse etc/ssl/certs/DigiCert_High_Assurance_EV_Root_CA.pem: failed to parse etc/ssl/certs/DigiCert_High_Assurance_EV_Root_CA.pem: EOF
2021-08-17T15:03:02.901+0200	DEBUG	Analysis error: unable to parse etc/ssl/certs/DigiCert_Trusted_Root_G4.pem: failed to parse etc/ssl/certs/DigiCert_Trusted_Root_G4.pem: EOF
2021-08-17T15:03:02.901+0200	DEBUG	Analysis error: unable to parse etc/ssl/certs/E-Tugra_Certification_Authority.pem: failed to parse etc/ssl/certs/E-Tugra_Certification_Authority.pem: EOF
2021-08-17T15:03:02.901+0200	DEBUG	Analysis error: unable to parse etc/ssl/certs/EC-ACC.pem: failed to parse etc/ssl/certs/EC-ACC.pem: EOF
2021-08-17T15:03:02.901+0200	DEBUG	Analysis error: unable to parse etc/ssl/certs/EE_Certification_Centre_Root_CA.pem: failed to parse etc/ssl/certs/EE_Certification_Centre_Root_CA.pem: EOF
2021-08-17T15:03:02.901+0200	DEBUG	Analysis error: unable to parse etc/ssl/certs/Entrust.net_Premium_2048_Secure_Server_CA.pem: failed to parse etc/ssl/certs/Entrust.net_Premium_2048_Secure_Server_CA.pem: EOF
2021-08-17T15:03:02.901+0200	DEBUG	Analysis error: unable to parse etc/ssl/certs/Entrust_Root_Certification_Authority.pem: failed to parse etc/ssl/certs/Entrust_Root_Certification_Authority.pem: EOF
2021-08-17T15:03:02.901+0200	DEBUG	Analysis error: unable to parse etc/ssl/certs/D-TRUST_Root_Class_3_CA_2_2009.pem: failed to parse etc/ssl/certs/D-TRUST_Root_Class_3_CA_2_2009.pem: EOF
2021-08-17T15:03:02.901+0200	DEBUG	Analysis error: unable to parse etc/ssl/certs/D-TRUST_Root_Class_3_CA_2_EV_2009.pem: failed to parse etc/ssl/certs/D-TRUST_Root_Class_3_CA_2_EV_2009.pem: EOF
2021-08-17T15:03:02.902+0200	DEBUG	Analysis error: unable to parse etc/ssl/certs/DST_Root_CA_X3.pem: failed to parse etc/ssl/certs/DST_Root_CA_X3.pem: EOF
2021-08-17T15:03:02.902+0200	DEBUG	Analysis error: unable to parse etc/ssl/certs/Entrust_Root_Certification_Authority_-_G4.pem: failed to parse etc/ssl/certs/Entrust_Root_Certification_Authority_-_G4.pem: EOF
2021-08-17T15:03:02.902+0200	DEBUG	Analysis error: unable to parse etc/ssl/certs/GDCA_TrustAUTH_R5_ROOT.pem: failed to parse etc/ssl/certs/GDCA_TrustAUTH_R5_ROOT.pem: EOF
2021-08-17T15:03:02.901+0200	DEBUG	Analysis error: unable to parse etc/ssl/certs/Entrust_Root_Certification_Authority_-_EC1.pem: failed to parse etc/ssl/certs/Entrust_Root_Certification_Authority_-_EC1.pem: EOF
2021-08-17T15:03:02.902+0200	DEBUG	Analysis error: unable to parse etc/ssl/certs/Cybertrust_Global_Root.pem: failed to parse etc/ssl/certs/Cybertrust_Global_Root.pem: EOF
2021-08-17T15:03:02.902+0200	DEBUG	Analysis error: unable to parse etc/ssl/certs/GTS_Root_R1.pem: failed to parse etc/ssl/certs/GTS_Root_R1.pem: EOF
2021-08-17T15:03:02.902+0200	DEBUG	Analysis error: unable to parse etc/ssl/certs/GTS_Root_R4.pem: failed to parse etc/ssl/certs/GTS_Root_R4.pem: EOF
2021-08-17T15:03:02.902+0200	DEBUG	Analysis error: unable to parse etc/ssl/certs/GTS_Root_R2.pem: failed to parse etc/ssl/certs/GTS_Root_R2.pem: EOF
2021-08-17T15:03:02.902+0200	DEBUG	Analysis error: unable to parse etc/ssl/certs/GTS_Root_R3.pem: failed to parse etc/ssl/certs/GTS_Root_R3.pem: EOF
2021-08-17T15:03:02.902+0200	DEBUG	Analysis error: unable to parse etc/ssl/certs/GeoTrust_Universal_CA_2.pem: failed to parse etc/ssl/certs/GeoTrust_Universal_CA_2.pem: EOF
2021-08-17T15:03:02.902+0200	DEBUG	Analysis error: unable to parse etc/ssl/certs/GlobalSign_Root_CA.pem: failed to parse etc/ssl/certs/GlobalSign_Root_CA.pem: EOF
2021-08-17T15:03:02.902+0200	DEBUG	Analysis error: unable to parse etc/ssl/certs/GlobalSign_Root_CA_-_R2.pem: failed to parse etc/ssl/certs/GlobalSign_Root_CA_-_R2.pem: EOF
2021-08-17T15:03:02.902+0200	DEBUG	Analysis error: unable to parse etc/ssl/certs/GlobalSign_Root_CA_-_R3.pem: failed to parse etc/ssl/certs/GlobalSign_Root_CA_-_R3.pem: EOF
2021-08-17T15:03:02.902+0200	DEBUG	Analysis error: unable to parse etc/ssl/certs/GlobalSign_ECC_Root_CA_-_R4.pem: failed to parse etc/ssl/certs/GlobalSign_ECC_Root_CA_-_R4.pem: EOF
2021-08-17T15:03:02.902+0200	DEBUG	Analysis error: unable to parse etc/ssl/certs/Global_Chambersign_Root_-_2008.pem: failed to parse etc/ssl/certs/Global_Chambersign_Root_-_2008.pem: EOF
2021-08-17T15:03:02.902+0200	DEBUG	Analysis error: unable to parse etc/ssl/certs/Go_Daddy_Class_2_CA.pem: failed to parse etc/ssl/certs/Go_Daddy_Class_2_CA.pem: EOF
2021-08-17T15:03:02.902+0200	DEBUG	Analysis error: unable to parse etc/ssl/certs/Go_Daddy_Root_Certificate_Authority_-_G2.pem: failed to parse etc/ssl/certs/Go_Daddy_Root_Certificate_Authority_-_G2.pem: EOF
2021-08-17T15:03:02.902+0200	DEBUG	Analysis error: unable to parse etc/ssl/certs/Entrust_Root_Certification_Authority_-_G2.pem: failed to parse etc/ssl/certs/Entrust_Root_Certification_Authority_-_G2.pem: EOF
2021-08-17T15:03:02.902+0200	DEBUG	Analysis error: unable to parse etc/ssl/certs/GlobalSign_Root_CA_-_R6.pem: failed to parse etc/ssl/certs/GlobalSign_Root_CA_-_R6.pem: EOF
2021-08-17T15:03:02.902+0200	DEBUG	Analysis error: unable to parse etc/ssl/certs/Hellenic_Academic_and_Research_Institutions_ECC_RootCA_2015.pem: failed to parse etc/ssl/certs/Hellenic_Academic_and_Research_Institutions_ECC_RootCA_2015.pem: EOF
2021-08-17T15:03:02.902+0200	DEBUG	Analysis error: unable to parse etc/ssl/certs/Hongkong_Post_Root_CA_1.pem: failed to parse etc/ssl/certs/Hongkong_Post_Root_CA_1.pem: EOF
2021-08-17T15:03:02.902+0200	DEBUG	Analysis error: unable to parse etc/ssl/certs/Hellenic_Academic_and_Research_Institutions_RootCA_2011.pem: failed to parse etc/ssl/certs/Hellenic_Academic_and_Research_Institutions_RootCA_2011.pem: EOF
2021-08-17T15:03:02.902+0200	DEBUG	Analysis error: unable to parse etc/ssl/certs/ISRG_Root_X1.pem: failed to parse etc/ssl/certs/ISRG_Root_X1.pem: EOF
2021-08-17T15:03:02.902+0200	DEBUG	Analysis error: unable to parse etc/ssl/certs/GlobalSign_ECC_Root_CA_-_R5.pem: failed to parse etc/ssl/certs/GlobalSign_ECC_Root_CA_-_R5.pem: EOF
2021-08-17T15:03:02.902+0200	DEBUG	Analysis error: unable to parse etc/ssl/certs/IdenTrust_Public_Sector_Root_CA_1.pem: failed to parse etc/ssl/certs/IdenTrust_Public_Sector_Root_CA_1.pem: EOF
2021-08-17T15:03:02.902+0200	DEBUG	Analysis error: unable to parse etc/ssl/certs/Hellenic_Academic_and_Research_Institutions_RootCA_2015.pem: failed to parse etc/ssl/certs/Hellenic_Academic_and_Research_Institutions_RootCA_2015.pem: EOF
2021-08-17T15:03:02.902+0200	DEBUG	Analysis error: unable to parse etc/ssl/certs/IdenTrust_Commercial_Root_CA_1.pem: failed to parse etc/ssl/certs/IdenTrust_Commercial_Root_CA_1.pem: EOF
2021-08-17T15:03:02.902+0200	DEBUG	Analysis error: unable to parse etc/ssl/certs/Microsec_e-Szigno_Root_CA_2009.pem: failed to parse etc/ssl/certs/Microsec_e-Szigno_Root_CA_2009.pem: EOF
2021-08-17T15:03:02.902+0200	DEBUG	Analysis error: unable to parse etc/ssl/certs/NetLock_Arany_=Class_Gold=_Főtanúsítvány.pem: failed to parse etc/ssl/certs/NetLock_Arany_=Class_Gold=_Főtanúsítvány.pem: EOF
2021-08-17T15:03:02.902+0200	DEBUG	Analysis error: unable to parse etc/ssl/certs/Network_Solutions_Certificate_Authority.pem: failed to parse etc/ssl/certs/Network_Solutions_Certificate_Authority.pem: EOF
2021-08-17T15:03:02.902+0200	DEBUG	Analysis error: unable to parse etc/ssl/certs/OISTE_WISeKey_Global_Root_GA_CA.pem: failed to parse etc/ssl/certs/OISTE_WISeKey_Global_Root_GA_CA.pem: EOF
2021-08-17T15:03:02.902+0200	DEBUG	Analysis error: unable to parse etc/ssl/certs/OISTE_WISeKey_Global_Root_GB_CA.pem: failed to parse etc/ssl/certs/OISTE_WISeKey_Global_Root_GB_CA.pem: EOF
2021-08-17T15:03:02.902+0200	DEBUG	Analysis error: unable to parse etc/ssl/certs/OISTE_WISeKey_Global_Root_GC_CA.pem: failed to parse etc/ssl/certs/OISTE_WISeKey_Global_Root_GC_CA.pem: EOF
2021-08-17T15:03:02.902+0200	DEBUG	Analysis error: unable to parse etc/ssl/certs/Izenpe.com.pem: failed to parse etc/ssl/certs/Izenpe.com.pem: EOF
2021-08-17T15:03:02.902+0200	DEBUG	Analysis error: unable to parse etc/ssl/certs/QuoVadis_Root_CA_1_G3.pem: failed to parse etc/ssl/certs/QuoVadis_Root_CA_1_G3.pem: EOF
2021-08-17T15:03:02.902+0200	DEBUG	Analysis error: unable to parse etc/ssl/certs/QuoVadis_Root_CA_2.pem: failed to parse etc/ssl/certs/QuoVadis_Root_CA_2.pem: EOF
2021-08-17T15:03:02.902+0200	DEBUG	Analysis error: unable to parse etc/ssl/certs/Hongkong_Post_Root_CA_3.pem: failed to parse etc/ssl/certs/Hongkong_Post_Root_CA_3.pem: EOF
2021-08-17T15:03:02.902+0200	DEBUG	Analysis error: unable to parse etc/ssl/certs/QuoVadis_Root_CA_3.pem: failed to parse etc/ssl/certs/QuoVadis_Root_CA_3.pem: EOF
2021-08-17T15:03:02.902+0200	DEBUG	Analysis error: unable to parse etc/ssl/certs/QuoVadis_Root_CA_3_G3.pem: failed to parse etc/ssl/certs/QuoVadis_Root_CA_3_G3.pem: EOF
2021-08-17T15:03:02.902+0200	DEBUG	Analysis error: unable to parse etc/ssl/certs/QuoVadis_Root_CA.pem: failed to parse etc/ssl/certs/QuoVadis_Root_CA.pem: EOF
2021-08-17T15:03:02.902+0200	DEBUG	Analysis error: unable to parse etc/ssl/certs/SSL.com_EV_Root_Certification_Authority_RSA_R2.pem: failed to parse etc/ssl/certs/SSL.com_EV_Root_Certification_Authority_RSA_R2.pem: EOF
2021-08-17T15:03:02.902+0200	DEBUG	Analysis error: unable to parse etc/ssl/certs/SSL.com_Root_Certification_Authority_ECC.pem: failed to parse etc/ssl/certs/SSL.com_Root_Certification_Authority_ECC.pem: EOF
2021-08-17T15:03:02.902+0200	DEBUG	Analysis error: unable to parse etc/ssl/certs/LuxTrust_Global_Root_2.pem: failed to parse etc/ssl/certs/LuxTrust_Global_Root_2.pem: EOF
2021-08-17T15:03:02.902+0200	DEBUG	Analysis error: unable to parse etc/ssl/certs/SSL.com_EV_Root_Certification_Authority_ECC.pem: failed to parse etc/ssl/certs/SSL.com_EV_Root_Certification_Authority_ECC.pem: EOF
2021-08-17T15:03:02.902+0200	DEBUG	Analysis error: unable to parse etc/ssl/certs/QuoVadis_Root_CA_2_G3.pem: failed to parse etc/ssl/certs/QuoVadis_Root_CA_2_G3.pem: EOF
2021-08-17T15:03:02.902+0200	DEBUG	Analysis error: unable to parse etc/ssl/certs/SSL.com_Root_Certification_Authority_RSA.pem: failed to parse etc/ssl/certs/SSL.com_Root_Certification_Authority_RSA.pem: EOF
2021-08-17T15:03:02.902+0200	DEBUG	Analysis error: unable to parse etc/ssl/certs/SZAFIR_ROOT_CA2.pem: failed to parse etc/ssl/certs/SZAFIR_ROOT_CA2.pem: EOF
2021-08-17T15:03:02.902+0200	DEBUG	Analysis error: unable to parse etc/ssl/certs/Security_Communication_Root_CA.pem: failed to parse etc/ssl/certs/Security_Communication_Root_CA.pem: EOF
2021-08-17T15:03:02.902+0200	DEBUG	Analysis error: unable to parse etc/ssl/certs/Sonera_Class_2_Root_CA.pem: failed to parse etc/ssl/certs/Sonera_Class_2_Root_CA.pem: EOF
2021-08-17T15:03:02.903+0200	DEBUG	Analysis error: unable to parse etc/ssl/certs/Staat_der_Nederlanden_EV_Root_CA.pem: failed to parse etc/ssl/certs/Staat_der_Nederlanden_EV_Root_CA.pem: EOF
2021-08-17T15:03:02.903+0200	DEBUG	Analysis error: unable to parse etc/ssl/certs/Staat_der_Nederlanden_Root_CA_-_G2.pem: failed to parse etc/ssl/certs/Staat_der_Nederlanden_Root_CA_-_G2.pem: EOF
2021-08-17T15:03:02.903+0200	DEBUG	Analysis error: unable to parse etc/ssl/certs/Staat_der_Nederlanden_Root_CA_-_G3.pem: failed to parse etc/ssl/certs/Staat_der_Nederlanden_Root_CA_-_G3.pem: EOF
2021-08-17T15:03:02.903+0200	DEBUG	Analysis error: unable to parse etc/ssl/certs/Starfield_Class_2_CA.pem: failed to parse etc/ssl/certs/Starfield_Class_2_CA.pem: EOF
2021-08-17T15:03:02.903+0200	DEBUG	Analysis error: unable to parse etc/ssl/certs/Starfield_Root_Certificate_Authority_-_G2.pem: failed to parse etc/ssl/certs/Starfield_Root_Certificate_Authority_-_G2.pem: EOF
2021-08-17T15:03:02.903+0200	DEBUG	Analysis error: unable to parse etc/ssl/certs/Starfield_Services_Root_Certificate_Authority_-_G2.pem: failed to parse etc/ssl/certs/Starfield_Services_Root_Certificate_Authority_-_G2.pem: EOF
2021-08-17T15:03:02.903+0200	DEBUG	Analysis error: unable to parse etc/ssl/certs/SwissSign_Gold_CA_-_G2.pem: failed to parse etc/ssl/certs/SwissSign_Gold_CA_-_G2.pem: EOF
2021-08-17T15:03:02.903+0200	DEBUG	Analysis error: unable to parse etc/ssl/certs/SwissSign_Silver_CA_-_G2.pem: failed to parse etc/ssl/certs/SwissSign_Silver_CA_-_G2.pem: EOF
2021-08-17T15:03:02.903+0200	DEBUG	Analysis error: unable to parse etc/ssl/certs/T-TeleSec_GlobalRoot_Class_2.pem: failed to parse etc/ssl/certs/T-TeleSec_GlobalRoot_Class_2.pem: EOF
2021-08-17T15:03:02.903+0200	DEBUG	Analysis error: unable to parse etc/ssl/certs/T-TeleSec_GlobalRoot_Class_3.pem: failed to parse etc/ssl/certs/T-TeleSec_GlobalRoot_Class_3.pem: EOF
2021-08-17T15:03:02.903+0200	DEBUG	Analysis error: unable to parse etc/ssl/certs/TUBITAK_Kamu_SM_SSL_Kok_Sertifikasi_-_Surum_1.pem: failed to parse etc/ssl/certs/TUBITAK_Kamu_SM_SSL_Kok_Sertifikasi_-_Surum_1.pem: EOF
2021-08-17T15:03:02.903+0200	DEBUG	Analysis error: unable to parse etc/ssl/certs/TWCA_Global_Root_CA.pem: failed to parse etc/ssl/certs/TWCA_Global_Root_CA.pem: EOF
2021-08-17T15:03:02.903+0200	DEBUG	Analysis error: unable to parse etc/ssl/certs/TWCA_Root_Certification_Authority.pem: failed to parse etc/ssl/certs/TWCA_Root_Certification_Authority.pem: EOF
2021-08-17T15:03:02.903+0200	DEBUG	Analysis error: unable to parse etc/ssl/certs/Taiwan_GRCA.pem: failed to parse etc/ssl/certs/Taiwan_GRCA.pem: EOF
2021-08-17T15:03:02.903+0200	DEBUG	Analysis error: unable to parse etc/ssl/certs/TeliaSonera_Root_CA_v1.pem: failed to parse etc/ssl/certs/TeliaSonera_Root_CA_v1.pem: EOF
2021-08-17T15:03:02.903+0200	DEBUG	Analysis error: unable to parse etc/ssl/certs/TrustCor_ECA-1.pem: failed to parse etc/ssl/certs/TrustCor_ECA-1.pem: EOF
2021-08-17T15:03:02.903+0200	DEBUG	Analysis error: unable to parse etc/ssl/certs/TrustCor_RootCert_CA-1.pem: failed to parse etc/ssl/certs/TrustCor_RootCert_CA-1.pem: EOF
2021-08-17T15:03:02.903+0200	DEBUG	Analysis error: unable to parse etc/ssl/certs/TrustCor_RootCert_CA-2.pem: failed to parse etc/ssl/certs/TrustCor_RootCert_CA-2.pem: EOF
2021-08-17T15:03:02.903+0200	DEBUG	Analysis error: unable to parse etc/ssl/certs/Trustis_FPS_Root_CA.pem: failed to parse etc/ssl/certs/Trustis_FPS_Root_CA.pem: EOF
2021-08-17T15:03:02.903+0200	DEBUG	Analysis error: unable to parse etc/ssl/certs/UCA_Extended_Validation_Root.pem: failed to parse etc/ssl/certs/UCA_Extended_Validation_Root.pem: EOF
2021-08-17T15:03:02.903+0200	DEBUG	Analysis error: unable to parse etc/ssl/certs/UCA_Global_G2_Root.pem: failed to parse etc/ssl/certs/UCA_Global_G2_Root.pem: EOF
2021-08-17T15:03:02.903+0200	DEBUG	Analysis error: unable to parse etc/ssl/certs/USERTrust_ECC_Certification_Authority.pem: failed to parse etc/ssl/certs/USERTrust_ECC_Certification_Authority.pem: EOF
2021-08-17T15:03:02.903+0200	DEBUG	Analysis error: unable to parse etc/ssl/certs/USERTrust_RSA_Certification_Authority.pem: failed to parse etc/ssl/certs/USERTrust_RSA_Certification_Authority.pem: EOF
2021-08-17T15:03:02.903+0200	DEBUG	Analysis error: unable to parse etc/ssl/certs/Verisign_Class_3_Public_Primary_Certification_Authority_-_G3.pem: failed to parse etc/ssl/certs/Verisign_Class_3_Public_Primary_Certification_Authority_-_G3.pem: EOF
2021-08-17T15:03:02.904+0200	DEBUG	Analysis error: unable to parse etc/ssl/certs/XRamp_Global_CA_Root.pem: failed to parse etc/ssl/certs/XRamp_Global_CA_Root.pem: EOF
2021-08-17T15:03:02.904+0200	DEBUG	Analysis error: unable to parse etc/ssl/certs/a3418fda.0: failed to parse etc/ssl/certs/a3418fda.0: EOF
2021-08-17T15:03:02.904+0200	DEBUG	Analysis error: unable to parse etc/ssl/certs/a94d09e5.0: failed to parse etc/ssl/certs/a94d09e5.0: EOF
2021-08-17T15:03:02.904+0200	DEBUG	Analysis error: unable to parse etc/ssl/certs/aee5f10d.0: failed to parse etc/ssl/certs/aee5f10d.0: EOF
2021-08-17T15:03:02.904+0200	DEBUG	Analysis error: unable to parse etc/ssl/certs/b0e59380.0: failed to parse etc/ssl/certs/b0e59380.0: EOF
2021-08-17T15:03:02.904+0200	DEBUG	Analysis error: unable to parse etc/ssl/certs/b1159c4c.0: failed to parse etc/ssl/certs/b1159c4c.0: EOF
2021-08-17T15:03:02.904+0200	DEBUG	Analysis error: unable to parse etc/ssl/certs/b1b8a7f3.0: failed to parse etc/ssl/certs/b1b8a7f3.0: EOF
2021-08-17T15:03:02.904+0200	DEBUG	Analysis error: unable to parse etc/ssl/certs/b66938e9.0: failed to parse etc/ssl/certs/b66938e9.0: EOF
2021-08-17T15:03:02.904+0200	DEBUG	Analysis error: unable to parse etc/ssl/certs/b727005e.0: failed to parse etc/ssl/certs/b727005e.0: EOF
2021-08-17T15:03:02.904+0200	DEBUG	Analysis error: unable to parse etc/ssl/certs/b7a5b843.0: failed to parse etc/ssl/certs/b7a5b843.0: EOF
2021-08-17T15:03:02.904+0200	DEBUG	Analysis error: unable to parse etc/ssl/certs/c01eb047.0: failed to parse etc/ssl/certs/c01eb047.0: EOF
2021-08-17T15:03:02.904+0200	DEBUG	Analysis error: unable to parse etc/ssl/certs/c0ff1f52.0: failed to parse etc/ssl/certs/c0ff1f52.0: EOF
2021-08-17T15:03:02.904+0200	DEBUG	Analysis error: unable to parse etc/ssl/certs/c28a8a30.0: failed to parse etc/ssl/certs/c28a8a30.0: EOF
2021-08-17T15:03:02.905+0200	DEBUG	Analysis error: unable to parse etc/ssl/certs/Secure_Global_CA.pem: failed to parse etc/ssl/certs/Secure_Global_CA.pem: EOF
2021-08-17T15:03:02.906+0200	DEBUG	Analysis error: unable to parse etc/ssl/certs/SecureSign_RootCA11.pem: failed to parse etc/ssl/certs/SecureSign_RootCA11.pem: EOF
2021-08-17T15:03:02.906+0200	DEBUG	Analysis error: unable to parse etc/ssl/certs/SecureTrust_CA.pem: failed to parse etc/ssl/certs/SecureTrust_CA.pem: EOF
2021-08-17T15:03:02.906+0200	DEBUG	Analysis error: unable to parse etc/ssl/certs/Security_Communication_RootCA2.pem: failed to parse etc/ssl/certs/Security_Communication_RootCA2.pem: EOF
2021-08-17T15:03:02.906+0200	DEBUG	Analysis error: unable to parse etc/ssl/certs/c47d9980.0: failed to parse etc/ssl/certs/c47d9980.0: EOF
2021-08-17T15:03:02.908+0200	DEBUG	Analysis error: unable to parse etc/ssl/certs/cd8c0d63.0: failed to parse etc/ssl/certs/cd8c0d63.0: EOF
2021-08-17T15:03:02.908+0200	DEBUG	Analysis error: unable to parse etc/ssl/certs/cbf06781.0: failed to parse etc/ssl/certs/cbf06781.0: EOF
2021-08-17T15:03:02.908+0200	DEBUG	Analysis error: unable to parse etc/ssl/certs/ce5e74ef.0: failed to parse etc/ssl/certs/ce5e74ef.0: EOF
2021-08-17T15:03:02.908+0200	DEBUG	Analysis error: unable to parse etc/ssl/certs/cc450945.0: failed to parse etc/ssl/certs/cc450945.0: EOF
2021-08-17T15:03:02.908+0200	DEBUG	Analysis error: unable to parse etc/ssl/certs/cd58d51e.0: failed to parse etc/ssl/certs/cd58d51e.0: EOF
2021-08-17T15:03:02.908+0200	DEBUG	Analysis error: unable to parse etc/ssl/certs/certSIGN_ROOT_CA.pem: failed to parse etc/ssl/certs/certSIGN_ROOT_CA.pem: EOF
2021-08-17T15:03:02.908+0200	DEBUG	Analysis error: unable to parse etc/ssl/certs/ca6e4ad9.0: failed to parse etc/ssl/certs/ca6e4ad9.0: EOF
2021-08-17T15:03:02.908+0200	DEBUG	Analysis error: unable to parse etc/ssl/certs/d853d49e.0: failed to parse etc/ssl/certs/d853d49e.0: EOF
2021-08-17T15:03:02.908+0200	DEBUG	Analysis error: unable to parse etc/ssl/certs/dc4d6a89.0: failed to parse etc/ssl/certs/dc4d6a89.0: EOF
2021-08-17T15:03:02.908+0200	DEBUG	Analysis error: unable to parse etc/ssl/certs/d6325660.0: failed to parse etc/ssl/certs/d6325660.0: EOF
2021-08-17T15:03:02.908+0200	DEBUG	Analysis error: unable to parse etc/ssl/certs/d4dae3dd.0: failed to parse etc/ssl/certs/d4dae3dd.0: EOF
2021-08-17T15:03:02.908+0200	DEBUG	Analysis error: unable to parse etc/ssl/certs/dd8e9d41.0: failed to parse etc/ssl/certs/dd8e9d41.0: EOF
2021-08-17T15:03:02.908+0200	DEBUG	Analysis error: unable to parse etc/ssl/certs/d7e8dc79.0: failed to parse etc/ssl/certs/d7e8dc79.0: EOF
2021-08-17T15:03:02.908+0200	DEBUG	Analysis error: unable to parse etc/ssl/certs/de6d66f3.0: failed to parse etc/ssl/certs/de6d66f3.0: EOF
2021-08-17T15:03:02.909+0200	DEBUG	Analysis error: unable to parse etc/ssl/certs/def36a68.0: failed to parse etc/ssl/certs/def36a68.0: EOF
2021-08-17T15:03:02.909+0200	DEBUG	Analysis error: unable to parse etc/ssl/certs/e8de2f56.0: failed to parse etc/ssl/certs/e8de2f56.0: EOF
2021-08-17T15:03:02.909+0200	DEBUG	Analysis error: unable to parse etc/ssl/certs/e18bfb83.0: failed to parse etc/ssl/certs/e18bfb83.0: EOF
2021-08-17T15:03:02.909+0200	DEBUG	Analysis error: unable to parse etc/ssl/certs/e113c810.0: failed to parse etc/ssl/certs/e113c810.0: EOF
2021-08-17T15:03:02.909+0200	DEBUG	Analysis error: unable to parse etc/ssl/certs/e73d606e.0: failed to parse etc/ssl/certs/e73d606e.0: EOF
2021-08-17T15:03:02.909+0200	DEBUG	Analysis error: unable to parse etc/ssl/certs/e36a6752.0: failed to parse etc/ssl/certs/e36a6752.0: EOF
2021-08-17T15:03:02.909+0200	DEBUG	Analysis error: unable to parse etc/ssl/certs/ePKI_Root_Certification_Authority.pem: failed to parse etc/ssl/certs/ePKI_Root_Certification_Authority.pem: EOF
2021-08-17T15:03:02.909+0200	DEBUG	Analysis error: unable to parse etc/ssl/certs/ee64a828.0: failed to parse etc/ssl/certs/ee64a828.0: EOF
2021-08-17T15:03:02.909+0200	DEBUG	Analysis error: unable to parse etc/ssl/certs/eed8c118.0: failed to parse etc/ssl/certs/eed8c118.0: EOF
2021-08-17T15:03:02.909+0200	DEBUG	Analysis error: unable to parse etc/ssl/certs/ef954a4e.0: failed to parse etc/ssl/certs/ef954a4e.0: EOF
2021-08-17T15:03:02.909+0200	DEBUG	Analysis error: unable to parse etc/ssl/certs/emSign_ECC_Root_CA_-_C3.pem: failed to parse etc/ssl/certs/emSign_ECC_Root_CA_-_C3.pem: EOF
2021-08-17T15:03:02.909+0200	DEBUG	Analysis error: unable to parse etc/ssl/certs/emSign_ECC_Root_CA_-_G3.pem: failed to parse etc/ssl/certs/emSign_ECC_Root_CA_-_G3.pem: EOF
2021-08-17T15:03:02.909+0200	DEBUG	Analysis error: unable to parse etc/ssl/certs/emSign_Root_CA_-_C1.pem: failed to parse etc/ssl/certs/emSign_Root_CA_-_C1.pem: EOF
2021-08-17T15:03:02.909+0200	DEBUG	Analysis error: unable to parse etc/ssl/certs/emSign_Root_CA_-_G1.pem: failed to parse etc/ssl/certs/emSign_Root_CA_-_G1.pem: EOF
2021-08-17T15:03:02.909+0200	DEBUG	Analysis error: unable to parse etc/ssl/certs/f0c70a8d.0: failed to parse etc/ssl/certs/f0c70a8d.0: EOF
2021-08-17T15:03:02.909+0200	DEBUG	Analysis error: unable to parse etc/ssl/certs/f081611a.0: failed to parse etc/ssl/certs/f081611a.0: EOF
2021-08-17T15:03:02.909+0200	DEBUG	Analysis error: unable to parse etc/ssl/certs/f39fc864.0: failed to parse etc/ssl/certs/f39fc864.0: EOF
2021-08-17T15:03:02.909+0200	DEBUG	Analysis error: unable to parse etc/ssl/certs/f51bb24c.0: failed to parse etc/ssl/certs/f51bb24c.0: EOF
2021-08-17T15:03:02.909+0200	DEBUG	Analysis error: unable to parse etc/ssl/certs/fc5a8f99.0: failed to parse etc/ssl/certs/fc5a8f99.0: EOF
2021-08-17T15:03:02.909+0200	DEBUG	Analysis error: unable to parse etc/ssl/certs/f30dd6ad.0: failed to parse etc/ssl/certs/f30dd6ad.0: EOF
2021-08-17T15:03:02.909+0200	DEBUG	Analysis error: unable to parse etc/ssl/certs/f3377b1b.0: failed to parse etc/ssl/certs/f3377b1b.0: EOF
2021-08-17T15:03:02.909+0200	DEBUG	Analysis error: unable to parse etc/ssl/certs/f387163d.0: failed to parse etc/ssl/certs/f387163d.0: EOF
2021-08-17T15:03:02.909+0200	DEBUG	Analysis error: unable to parse etc/ssl/certs/fe8a2cd8.0: failed to parse etc/ssl/certs/fe8a2cd8.0: EOF
2021-08-17T15:03:02.909+0200	DEBUG	Analysis error: unable to parse etc/ssl/certs/ff34af3f.0: failed to parse etc/ssl/certs/ff34af3f.0: EOF
2021-08-17T15:03:02.909+0200	DEBUG	Analysis error: unable to parse etc/systemd/system/multi-user.target.wants/nginx.service: failed to parse etc/systemd/system/multi-user.target.wants/nginx.service: EOF
2021-08-17T15:03:02.910+0200	DEBUG	Analysis error: unable to parse lib/x86_64-linux-gnu/libexpat.so.1: failed to parse lib/x86_64-linux-gnu/libexpat.so.1: EOF
2021-08-17T15:03:02.913+0200	DEBUG	Analysis error: unable to parse lib/x86_64-linux-gnu/libhistory.so.7: failed to parse lib/x86_64-linux-gnu/libhistory.so.7: EOF
2021-08-17T15:03:02.914+0200	DEBUG	Analysis error: unable to parse lib/x86_64-linux-gnu/libkeyutils.so.1: failed to parse lib/x86_64-linux-gnu/libkeyutils.so.1: EOF
2021-08-17T15:03:02.914+0200	DEBUG	Analysis error: unable to parse lib/x86_64-linux-gnu/libreadline.so.7: failed to parse lib/x86_64-linux-gnu/libreadline.so.7: EOF
2021-08-17T15:03:02.918+0200	DEBUG	Analysis error: unable to parse usr/bin/c_rehash: failed to parse usr/bin/c_rehash: unrecognized executable format
2021-08-17T15:03:02.926+0200	DEBUG	Analysis error: unable to parse usr/bin/gettext.sh: failed to parse usr/bin/gettext.sh: unrecognized executable format
2021-08-17T15:03:02.926+0200	DEBUG	Analysis error: unable to parse usr/bin/lcf: failed to parse usr/bin/lcf: unrecognized executable format
2021-08-17T15:03:02.947+0200	DEBUG	Analysis error: unable to parse usr/bin/sensible-pager: failed to parse usr/bin/sensible-pager: unrecognized executable format
2021-08-17T15:03:02.947+0200	DEBUG	Analysis error: unable to parse usr/bin/select-editor: failed to parse usr/bin/select-editor: unrecognized executable format
2021-08-17T15:03:02.948+0200	DEBUG	Analysis error: unable to parse usr/bin/ucfq: failed to parse usr/bin/ucfq: unrecognized executable format
2021-08-17T15:03:02.950+0200	DEBUG	Analysis error: unable to parse usr/bin/ucfr: failed to parse usr/bin/ucfr: unrecognized executable format
2021-08-17T15:03:02.950+0200	DEBUG	Analysis error: unable to parse usr/bin/sensible-browser: failed to parse usr/bin/sensible-browser: unrecognized executable format
2021-08-17T15:03:02.950+0200	DEBUG	Analysis error: unable to parse usr/bin/sensible-editor: failed to parse usr/bin/sensible-editor: unrecognized executable format
2021-08-17T15:03:02.950+0200	DEBUG	Analysis error: unable to parse usr/bin/ucf: failed to parse usr/bin/ucf: unrecognized executable format
2021-08-17T15:03:02.981+0200	DEBUG	Analysis error: unable to parse usr/lib/ssl/certs: failed to parse usr/lib/ssl/certs: EOF
2021-08-17T15:03:02.982+0200	DEBUG	Analysis error: unable to parse usr/lib/ssl/misc/CA.pl: failed to parse usr/lib/ssl/misc/CA.pl: unrecognized executable format
2021-08-17T15:03:02.982+0200	DEBUG	Analysis error: unable to parse usr/lib/ssl/misc/tsget.pl: failed to parse usr/lib/ssl/misc/tsget.pl: unrecognized executable format
2021-08-17T15:03:02.982+0200	DEBUG	Analysis error: unable to parse usr/lib/ssl/misc/tsget: failed to parse usr/lib/ssl/misc/tsget: EOF
2021-08-17T15:03:02.982+0200	DEBUG	Analysis error: unable to parse usr/lib/ssl/openssl.cnf: failed to parse usr/lib/ssl/openssl.cnf: EOF
2021-08-17T15:03:02.982+0200	DEBUG	Analysis error: unable to parse usr/lib/ssl/private: failed to parse usr/lib/ssl/private: EOF
2021-08-17T15:03:02.983+0200	DEBUG	Analysis error: unable to parse usr/lib/x86_64-linux-gnu/libGeoIP.so.1: failed to parse usr/lib/x86_64-linux-gnu/libGeoIP.so.1: EOF
2021-08-17T15:03:02.987+0200	DEBUG	Analysis error: unable to parse usr/lib/x86_64-linux-gnu/libX11.so.6: failed to parse usr/lib/x86_64-linux-gnu/libX11.so.6: EOF
2021-08-17T15:03:03.006+0200	DEBUG	Analysis error: unable to parse usr/lib/x86_64-linux-gnu/libXau.so.6: failed to parse usr/lib/x86_64-linux-gnu/libXau.so.6: EOF
2021-08-17T15:03:03.006+0200	DEBUG	Analysis error: unable to parse usr/lib/x86_64-linux-gnu/libXdmcp.so.6: failed to parse usr/lib/x86_64-linux-gnu/libXdmcp.so.6: EOF
2021-08-17T15:03:03.007+0200	DEBUG	Analysis error: unable to parse usr/lib/x86_64-linux-gnu/libXpm.so.4: failed to parse usr/lib/x86_64-linux-gnu/libXpm.so.4: EOF
2021-08-17T15:03:03.008+0200	DEBUG	Analysis error: unable to parse usr/lib/x86_64-linux-gnu/libbsd.so.0: failed to parse usr/lib/x86_64-linux-gnu/libbsd.so.0: EOF
2021-08-17T15:03:03.046+0200	DEBUG	Analysis error: unable to parse usr/lib/x86_64-linux-gnu/libcurl.so.4: failed to parse usr/lib/x86_64-linux-gnu/libcurl.so.4: EOF
2021-08-17T15:03:03.054+0200	DEBUG	Analysis error: unable to parse usr/lib/x86_64-linux-gnu/libexpatw.so.1: failed to parse usr/lib/x86_64-linux-gnu/libexpatw.so.1: EOF
2021-08-17T15:03:03.056+0200	DEBUG	Analysis error: unable to parse usr/lib/x86_64-linux-gnu/libexslt.so.0: failed to parse usr/lib/x86_64-linux-gnu/libexslt.so.0: EOF
2021-08-17T15:03:03.057+0200	DEBUG	Analysis error: unable to parse usr/lib/x86_64-linux-gnu/libfontconfig.so.1: failed to parse usr/lib/x86_64-linux-gnu/libfontconfig.so.1: EOF
2021-08-17T15:03:03.062+0200	DEBUG	Analysis error: unable to parse usr/lib/x86_64-linux-gnu/libfreetype.so.6: failed to parse usr/lib/x86_64-linux-gnu/libfreetype.so.6: EOF
2021-08-17T15:03:03.074+0200	DEBUG	Analysis error: unable to parse usr/lib/x86_64-linux-gnu/libgd.so.3: failed to parse usr/lib/x86_64-linux-gnu/libgd.so.3: EOF
2021-08-17T15:03:03.078+0200	DEBUG	Analysis error: unable to parse usr/lib/x86_64-linux-gnu/libgssapi_krb5.so.2: failed to parse usr/lib/x86_64-linux-gnu/libgssapi_krb5.so.2: EOF
2021-08-17T15:03:03.082+0200	DEBUG	Analysis error: unable to parse usr/lib/x86_64-linux-gnu/libicudata.so.63: failed to parse usr/lib/x86_64-linux-gnu/libicudata.so.63: EOF
2021-08-17T15:03:03.377+0200	DEBUG	Analysis error: unable to parse usr/lib/x86_64-linux-gnu/libicui18n.so.63: failed to parse usr/lib/x86_64-linux-gnu/libicui18n.so.63: EOF
2021-08-17T15:03:03.411+0200	DEBUG	Analysis error: unable to parse usr/lib/x86_64-linux-gnu/libicuio.so.63: failed to parse usr/lib/x86_64-linux-gnu/libicuio.so.63: EOF
2021-08-17T15:03:03.411+0200	DEBUG	Analysis error: unable to parse usr/lib/x86_64-linux-gnu/libicutest.so.63: failed to parse usr/lib/x86_64-linux-gnu/libicutest.so.63: EOF
2021-08-17T15:03:03.413+0200	DEBUG	Analysis error: unable to parse usr/lib/x86_64-linux-gnu/libicutu.so.63: failed to parse usr/lib/x86_64-linux-gnu/libicutu.so.63: EOF
2021-08-17T15:03:03.416+0200	DEBUG	Analysis error: unable to parse usr/lib/x86_64-linux-gnu/libicuuc.so.63: failed to parse usr/lib/x86_64-linux-gnu/libicuuc.so.63: EOF
2021-08-17T15:03:03.440+0200	DEBUG	Analysis error: unable to parse usr/lib/x86_64-linux-gnu/libjpeg.so.62: failed to parse usr/lib/x86_64-linux-gnu/libjpeg.so.62: EOF
2021-08-17T15:03:03.444+0200	DEBUG	Analysis error: unable to parse usr/lib/x86_64-linux-gnu/libk5crypto.so.3: failed to parse usr/lib/x86_64-linux-gnu/libk5crypto.so.3: EOF
2021-08-17T15:03:03.447+0200	DEBUG	Analysis error: unable to parse usr/lib/x86_64-linux-gnu/libkrb5.so.3: failed to parse usr/lib/x86_64-linux-gnu/libkrb5.so.3: EOF
2021-08-17T15:03:03.458+0200	DEBUG	Analysis error: unable to parse usr/lib/x86_64-linux-gnu/libkrb5support.so.0: failed to parse usr/lib/x86_64-linux-gnu/libkrb5support.so.0: EOF
2021-08-17T15:03:03.459+0200	DEBUG	Analysis error: unable to parse usr/lib/x86_64-linux-gnu/liblber-2.4.so.2: failed to parse usr/lib/x86_64-linux-gnu/liblber-2.4.so.2: EOF
2021-08-17T15:03:03.459+0200	DEBUG	Analysis error: unable to parse usr/lib/x86_64-linux-gnu/libldap-2.4.so.2: failed to parse usr/lib/x86_64-linux-gnu/libldap-2.4.so.2: EOF
2021-08-17T15:03:03.459+0200	DEBUG	Analysis error: unable to parse usr/lib/x86_64-linux-gnu/libldap_r-2.4.so.2: failed to parse usr/lib/x86_64-linux-gnu/libldap_r-2.4.so.2: EOF
2021-08-17T15:03:03.464+0200	DEBUG	Analysis error: unable to parse usr/lib/x86_64-linux-gnu/libnghttp2.so.14: failed to parse usr/lib/x86_64-linux-gnu/libnghttp2.so.14: EOF
2021-08-17T15:03:03.466+0200	DEBUG	Analysis error: unable to parse usr/lib/x86_64-linux-gnu/libpng16.so.16: failed to parse usr/lib/x86_64-linux-gnu/libpng16.so.16: EOF
2021-08-17T15:03:03.469+0200	DEBUG	Analysis error: unable to parse usr/lib/x86_64-linux-gnu/libpsl.so.5: failed to parse usr/lib/x86_64-linux-gnu/libpsl.so.5: EOF
2021-08-17T15:03:03.472+0200	DEBUG	Analysis error: unable to parse usr/lib/x86_64-linux-gnu/libsasl2.so.2: failed to parse usr/lib/x86_64-linux-gnu/libsasl2.so.2: EOF
2021-08-17T15:03:03.473+0200	DEBUG	Analysis error: unable to parse usr/lib/x86_64-linux-gnu/libssh2.so.1: failed to parse usr/lib/x86_64-linux-gnu/libssh2.so.1: EOF
2021-08-17T15:03:03.483+0200	DEBUG	Analysis error: unable to parse usr/lib/x86_64-linux-gnu/libtiff.so.5: failed to parse usr/lib/x86_64-linux-gnu/libtiff.so.5: EOF
2021-08-17T15:03:03.490+0200	DEBUG	Analysis error: unable to parse usr/lib/x86_64-linux-gnu/libwebp.so.6: failed to parse usr/lib/x86_64-linux-gnu/libwebp.so.6: EOF
2021-08-17T15:03:03.496+0200	DEBUG	Analysis error: unable to parse usr/lib/x86_64-linux-gnu/libxcb.so.1: failed to parse usr/lib/x86_64-linux-gnu/libxcb.so.1: EOF
2021-08-17T15:03:03.497+0200	DEBUG	Analysis error: unable to parse usr/lib/x86_64-linux-gnu/libxml2.so.2: failed to parse usr/lib/x86_64-linux-gnu/libxml2.so.2: EOF
2021-08-17T15:03:03.520+0200	DEBUG	Analysis error: unable to parse usr/lib/x86_64-linux-gnu/libxslt.so.1: failed to parse usr/lib/x86_64-linux-gnu/libxslt.so.1: EOF
2021-08-17T15:03:03.527+0200	DEBUG	Analysis error: unable to parse usr/lib/x86_64-linux-gnu/sasl2/libsasldb.so: failed to parse usr/lib/x86_64-linux-gnu/sasl2/libsasldb.so: EOF
2021-08-17T15:03:03.530+0200	DEBUG	Analysis error: unable to parse usr/lib/x86_64-linux-gnu/sasl2/libsasldb.so.2: failed to parse usr/lib/x86_64-linux-gnu/sasl2/libsasldb.so.2: EOF
2021-08-17T15:03:03.570+0200	DEBUG	Analysis error: unable to parse usr/sbin/update-ca-certificates: failed to parse usr/sbin/update-ca-certificates: unrecognized executable format
2021-08-17T15:03:03.591+0200	DEBUG	Analysis error: unable to parse usr/share/doc/libxml2/NEWS.gz: failed to parse usr/share/doc/libxml2/NEWS.gz: EOF
2021-08-17T15:03:03.626+0200	DEBUG	Parsing Java artifacts...	{"file": "usr/share/java/libintl.jar"}
2021-08-17T15:03:03.626+0200	DEBUG	Analysis error: unable to parse usr/share/sensible-utils/bin/gettext: failed to parse usr/share/sensible-utils/bin/gettext: unrecognized executable format
2021-08-17T15:03:03.639+0200	DEBUG	Analysis error: unable to parse var/lib/dpkg/info/ca-certificates.config: failed to parse var/lib/dpkg/info/ca-certificates.config: unrecognized executable format
2021-08-17T15:03:03.639+0200	DEBUG	Analysis error: unable to parse var/lib/dpkg/info/ca-certificates.postinst: failed to parse var/lib/dpkg/info/ca-certificates.postinst: unrecognized executable format
2021-08-17T15:03:03.639+0200	DEBUG	Analysis error: unable to parse var/lib/dpkg/info/ca-certificates.postrm: failed to parse var/lib/dpkg/info/ca-certificates.postrm: unrecognized executable format
2021-08-17T15:03:03.640+0200	DEBUG	Analysis error: unable to parse var/lib/dpkg/info/fontconfig-config.config: failed to parse var/lib/dpkg/info/fontconfig-config.config: unrecognized executable format
2021-08-17T15:03:03.640+0200	DEBUG	Analysis error: unable to parse var/lib/dpkg/info/fontconfig-config.postrm: failed to parse var/lib/dpkg/info/fontconfig-config.postrm: unrecognized executable format
2021-08-17T15:03:03.640+0200	DEBUG	Analysis error: unable to parse var/lib/dpkg/info/fontconfig-config.postinst: failed to parse var/lib/dpkg/info/fontconfig-config.postinst: unrecognized executable format
2021-08-17T15:03:03.640+0200	DEBUG	Analysis error: unable to parse var/lib/dpkg/info/fontconfig-config.preinst: failed to parse var/lib/dpkg/info/fontconfig-config.preinst: unrecognized executable format
2021-08-17T15:03:03.640+0200	DEBUG	Analysis error: unable to parse var/lib/dpkg/info/fontconfig-config.prerm: failed to parse var/lib/dpkg/info/fontconfig-config.prerm: unrecognized executable format
2021-08-17T15:03:03.643+0200	DEBUG	Analysis error: unable to parse var/lib/dpkg/info/libgssapi-krb5-2:amd64.postrm: failed to parse var/lib/dpkg/info/libgssapi-krb5-2:amd64.postrm: unrecognized executable format
2021-08-17T15:03:03.643+0200	DEBUG	Analysis error: unable to parse var/lib/dpkg/info/libgssapi-krb5-2:amd64.postinst: failed to parse var/lib/dpkg/info/libgssapi-krb5-2:amd64.postinst: unrecognized executable format
2021-08-17T15:03:03.645+0200	DEBUG	Analysis error: unable to parse var/lib/dpkg/info/libssl1.1:amd64.postinst: failed to parse var/lib/dpkg/info/libssl1.1:amd64.postinst: unrecognized executable format
2021-08-17T15:03:03.646+0200	DEBUG	Analysis error: unable to parse var/lib/dpkg/info/libssl1.1:amd64.postrm: failed to parse var/lib/dpkg/info/libssl1.1:amd64.postrm: unrecognized executable format
2021-08-17T15:03:03.646+0200	DEBUG	Analysis error: unable to parse var/lib/dpkg/info/nginx-module-geoip.postinst: failed to parse var/lib/dpkg/info/nginx-module-geoip.postinst: unrecognized executable format
2021-08-17T15:03:03.647+0200	DEBUG	Analysis error: unable to parse var/lib/dpkg/info/nginx-module-image-filter.postinst: failed to parse var/lib/dpkg/info/nginx-module-image-filter.postinst: unrecognized executable format
2021-08-17T15:03:03.647+0200	DEBUG	Analysis error: unable to parse var/lib/dpkg/info/nginx.postinst: failed to parse var/lib/dpkg/info/nginx.postinst: unrecognized executable format
2021-08-17T15:03:03.647+0200	DEBUG	Analysis error: unable to parse var/lib/dpkg/info/nginx-module-njs.postinst: failed to parse var/lib/dpkg/info/nginx-module-njs.postinst: unrecognized executable format
2021-08-17T15:03:03.647+0200	DEBUG	Analysis error: unable to parse var/lib/dpkg/info/nginx.preinst: failed to parse var/lib/dpkg/info/nginx.preinst: unrecognized executable format
2021-08-17T15:03:03.647+0200	DEBUG	Analysis error: unable to parse var/lib/dpkg/info/nginx.postrm: failed to parse var/lib/dpkg/info/nginx.postrm: unrecognized executable format
2021-08-17T15:03:03.647+0200	DEBUG	Analysis error: unable to parse var/lib/dpkg/info/nginx-module-xslt.postinst: failed to parse var/lib/dpkg/info/nginx-module-xslt.postinst: unrecognized executable format
2021-08-17T15:03:03.647+0200	DEBUG	Analysis error: unable to parse var/lib/dpkg/info/nginx.prerm: failed to parse var/lib/dpkg/info/nginx.prerm: unrecognized executable format
2021-08-17T15:03:03.647+0200	DEBUG	Analysis error: unable to parse var/lib/dpkg/info/openssl.postinst: failed to parse var/lib/dpkg/info/openssl.postinst: unrecognized executable format
2021-08-17T15:03:03.647+0200	DEBUG	Analysis error: unable to parse var/lib/dpkg/info/readline-common.postinst: failed to parse var/lib/dpkg/info/readline-common.postinst: unrecognized executable format
2021-08-17T15:03:03.647+0200	DEBUG	Analysis error: unable to parse var/lib/dpkg/info/readline-common.postrm: failed to parse var/lib/dpkg/info/readline-common.postrm: unrecognized executable format
2021-08-17T15:03:03.647+0200	DEBUG	Analysis error: unable to parse var/lib/dpkg/info/ucf.postinst: failed to parse var/lib/dpkg/info/ucf.postinst: unrecognized executable format
2021-08-17T15:03:03.647+0200	DEBUG	Analysis error: unable to parse var/lib/dpkg/info/ucf.postrm: failed to parse var/lib/dpkg/info/ucf.postrm: unrecognized executable format
2021-08-17T15:03:03.647+0200	DEBUG	Analysis error: unable to parse var/lib/dpkg/info/ucf.preinst: failed to parse var/lib/dpkg/info/ucf.preinst: unrecognized executable format
2021-08-17T15:03:03.650+0200	DEBUG	Analysis error: unable to parse var/log/nginx/error.log: failed to parse var/log/nginx/error.log: EOF
2021-08-17T15:03:03.650+0200	DEBUG	Analysis error: unable to parse var/log/nginx/access.log: failed to parse var/log/nginx/access.log: EOF
2021-08-17T15:03:33.627+0200	DEBUG	request failed	{"error": "Get \"http://search.maven.org/solrsearch/select?q=1%3A%224f278760b2f9f8786cab446beff634f711a8746b%22&rows=1&wt=json\": dial tcp 34.230.199.108:80: i/o timeout", "method": "GET", "url": "http://search.maven.org/solrsearch/select?q=1%3A%224f278760b2f9f8786cab446beff634f711a8746b%22&rows=1&wt=json"}
2021-08-17T15:03:33.627+0200	DEBUG	retrying request	{"request": "GET http://search.maven.org/solrsearch/select?q=1%3A%224f278760b2f9f8786cab446beff634f711a8746b%22&rows=1&wt=json", "timeout": "20s", "remaining": 5}
2021-08-17T15:04:02.834+0200	FATAL	scan error:
    github.com/aquasecurity/trivy/pkg/commands/artifact.runWithTimeout
        /home/runner/work/trivy/trivy/pkg/commands/artifact/run.go:69
  - image scan failed:
    github.com/aquasecurity/trivy/pkg/commands/artifact.scan
        /home/runner/work/trivy/trivy/pkg/commands/artifact/run.go:185
  - failed analysis:
    github.com/aquasecurity/trivy/pkg/scanner.Scanner.ScanArtifact
        /home/runner/work/trivy/trivy/pkg/scanner/scan.go:98
  - analyze error:
    github.com/aquasecurity/fanal/artifact/image.Artifact.Inspect
        /home/runner/go/pkg/mod/github.com/aquasecurity/[email protected]/artifact/image/image.go:95
  - timeout:
    github.com/aquasecurity/fanal/artifact/image.Artifact.inspect
        /home/runner/go/pkg/mod/github.com/aquasecurity/[email protected]/artifact/image/image.go:159
  - context deadline exceeded

Output of trivy -v:

Version: 0.19.2

this doesn't happen with most images, but an example of when it occurs is docker.io/library/nginx:1.19.1

@DrissiReda DrissiReda added the kind/bug Categorizes issue or PR as related to a bug. label Aug 17, 2021
@fawind
Copy link
Contributor

fawind commented Aug 19, 2021

Related issue: #982

This happens when trivy detects jar files in an image as it requires access to the maven api for jar scanning (ref). Unfortunately, there is no way to turn this off currently and it still tries to scan jar files and connect to maven.org when run with --vuln-type os.

Ideally, I could configure trivy to run in offline mode. But I would also expect that running with --vuln-type os should not scan non-os artifacts such as jars.

@knqyf263, any chance you can take a look at this in the near future? Would be super helpful!

To reproduce, I ran ./trivy --debug image --vuln-type os jenkins:2.60.3-alpine from the latest commit (40ed227) and can see in the logs that it tries to parse jar files and reaches out to maven.org:

$ ./trivy --debug image --vuln-type os jenkins:2.60.3-alpine
2021-08-19T15:03:48.313+0200	�[35mDEBUG�[0m	Vulnerability type:  [os]
2021-08-19T15:03:54.743+0200	�[35mDEBUG�[0m	Image ID: sha256:2ad007d332533e8fe0fed1ee9b0053d7d09787de7e90886778421b20e3189d68
[...]
2021-08-19T15:07:42.281+0200	�[35mDEBUG�[0m	Parsing Java artifacts...	{"file": "usr/lib/jvm/java-1.8-openjdk/jre/lib/ext/sunpkcs11.jar"}
2021-08-19T15:07:42.561+0200	�[35mDEBUG�[0m	Parsing Java artifacts...	{"file": "usr/lib/jvm/java-1.8-openjdk/jre/lib/ext/zipfs.jar"}
2021-08-19T15:07:43.450+0200	�[35mDEBUG�[0m	No such POM in the central repositories	{"file": "zipfs.jar"}
2021-08-19T15:07:43.492+0200	�[35mDEBUG�[0m	No such POM in the central repositories	{"file": "sunpkcs11.jar"}
[...]

@DrissiReda
Copy link
Author

thanks @fawind have you found a workaround ? Even if the scan is less thorough. Or do I have to rollback to a version before jar scanning was introduced? If that is the case do you know the latest version not scanning jars?

@fawind
Copy link
Contributor

fawind commented Aug 19, 2021

I'm not aware of a workaround. v0.17.0 added the jar scanning feature, so afaik v0.16.0 is the last version that works offline.

@vara-prasad
Copy link

We are using the latest version of v0.19.2 and seeing the below error

Analysis error: jar/war/ear parse error: failed to search by SHA1: status 403 Forbidden
from http://search.maven.org/solrsearch/select?q=1%3A%22a080d66963eaa0e3a4cabcc90a7798156b047fee%22&rows=1&wt=json

Any suggested workaround or option to use maven mirror ?

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
kind/bug Categorizes issue or PR as related to a bug.
Projects
None yet
Development

Successfully merging a pull request may close this issue.

3 participants