yu210148 / gvm_install

A script to install GVM 20 or 21 on Ubuntu 20.04 or Debian 10.
GNU General Public License v3.0
143 stars 72 forks source link

Excuse me #62

Closed elliswnag closed 2 years ago

elliswnag commented 2 years ago

May I use your install.sh to successfully install, but this error message appears, I don’t know how to solve it? Is there any other solution available?

This script checks and reports an outdated or end-of-life scan engine for the following environ- ments:

yu210148 commented 2 years ago

Hi there, yes I noticed that yesterday. Seems that things are a bit messed up with the versions it's pulling down. See issue #61.

I'm having a look but I've got a newborn so am having trouble finding time to address it. It seems to be a bit more complicated than just updating the version numbers in the script.

If you have any ideas I'm all ears :)

Kev.

On Tue, Nov 16, 2021, 3:11 AM elliswnag @.***> wrote:

May I use your install.sh to successfully install, but this error message appears, I don’t know how to solve it? Is there any other solution available?

This script checks and reports an outdated or end-of-life scan engine for the following environ- ments:

  • Greenbone Source Edition (GSE)
  • Greenbone Security Manager TRIAL (formerly Greenbone Community Edition (GCE)) used for this scan. . . . continues on next page . . . OTE: While this is not, in and of itself, a security vulnerability, a severity is reported to make you aware of a possible decreased scan coverage or missing detection of vulnerabilities on the target due to e.g.:
  • missing functionalities
  • missing bug�xes
  • incompatibilities within the feed Vulnerability Detection Result Installed GVM Libraries (gvm-libs) version: 21.4.1 Latest available GVM Libraries (gvm-libs) version: 21.4.3 Reference URL(s) for the latest available version: https://community.greenbone.n ,→ et/t/gvm-21-04-stable-initial-release-2021-04-16/8942

— You are receiving this because you are subscribed to this thread. Reply to this email directly, view it on GitHub https://github.com/yu210148/gvm_install/issues/62, or unsubscribe https://github.com/notifications/unsubscribe-auth/AAKFY4IS5D2SJ6BYJLPZ6G3UMIG4ZANCNFSM5IDTQBXQ . Triage notifications on the go with GitHub Mobile for iOS https://apps.apple.com/app/apple-store/id1477376905?ct=notification-email&mt=8&pt=524675 or Android https://play.google.com/store/apps/details?id=com.github.android&referrer=utm_campaign%3Dnotification-email%26utm_medium%3Demail%26utm_source%3Dgithub.

yu210148 commented 2 years ago

Updated readme with warning about this.

alexmateescu commented 2 years ago

i've just installed it using your script with the release tarbals and it is running. i'll keep an eye on it and update if i find any issues it needed a bit of playing with the cmake flags. took them from their documentation. I can share the commands that i used if needed

elliswnag commented 2 years ago

After installation, update greenbone-feed-sync --type SCAP greenbone-nvt-sync greenbone-feed-sync --type CERT greenbone-feed-sync --type GVMD_DATA, the above error message occurs, if there are other solutions, can you tell me? Thank you very much

yu210148 commented 2 years ago

I first saw it in the report that was generated when I did a scan the other day.

The lines in the script that clones the git repos from Greenbone (e.g. sudo -Hiu gvm git clone -b v21.4.1 https://github.com/greenbone/gvm-libs.git) is pulling down specific versions of what it needs. In the above example version 21.4.1 of the gvm-libs. The current version for gvm-libs is 21.4.3. I believe it is one or more of these that has apparently reached end-of-life which is causing the message.

Unfortunately, when I just bump them up to their current version in the script I'm getting errors when it's trying to build them. I'm working through the script trying to adjust it to get it so that it'll build correctly. So far, it seems to be permission related. I merge the issue #61 branch back in when I've got something that appears to work.

kev.

alexmateescu commented 2 years ago

hi

first of all i am using Ubuntu 20.04

please see below the commands i used to build it. so far everything works fine and i can generate the reports with no issue.

In my case i needed teh old database so i dumped it from the old server and imported it into the new one. Once you do that you need to rebuild the report formats "gvmd --rebuild-gvmd-data=report_formats"

also when you do make install on gvmd build you need to allow user gvm to write to /lib/systemd/system or you need to run cmake with a flag -DSYSTEMD_SERVICE_DIR=/lib/systemd/system <-- change this to a folder where gvm can write

after running all the below i continued with the commands from the script (crontab, services etc.)

let me know if it works

  export GVM_VERSION=21.4.3
  export GVM_LIBS_VERSION=$GVM_VERSION
  curl -f -L https://github.com/greenbone/gvm-libs/archive/refs/tags/v$GVM_LIBS_VERSION.tar.gz -o gvm-libs-$GVM_LIBS_VERSION.tar.gz
  tar zxvf gvm-libs-21.4.3.tar.gz
  cd gvm-libs-21.4.3/
  mkdir build && cd build
  cmake .. -DCMAKE_INSTALL_PREFIX=/opt/gvm -DCMAKE_BUILD_TYPE=Release -DSYSCONFDIR=/opt/gvm/etc -DLOCALSTATEDIR=/opt/gvm/var -DGVM_PID_DIR=/opt/gvm/run/gvm
  make
  make install
  cd ..
  cd ..
  ls -la
  export GVMD_VERSION=21.4.4
  curl -f -L https://github.com/greenbone/gvmd/archive/refs/tags/v$GVMD_VERSION.tar.gz -o gvmd-$GVMD_VERSION.tar.gz
  tar zxvf gvmd-21.4.4.tar.gz
  cd gvmd-21.4.4/
  mkdir build && cd build
  export INSTALL_PREFIX=/opt/gvm
  export PKG_CONFIG_PATH=/opt/gvm/lib/pkgconfig:$PKG_CONFIG_PATH
  cmake .. -DCMAKE_INSTALL_PREFIX=$INSTALL_PREFIX -DCMAKE_BUILD_TYPE=Release -DLOCALSTATEDIR=/opt/gvm/var -DSYSCONFDIR=/opt/gvm/etc -DGVM_DATA_DIR=/opt/gvm/var -DGVM_RUN_DIR=/opt/gvm/run/gvm -DOPENVAS_DEFAULT_SOCKET=/opt/gvm/run/ospd/ospd-openvas.sock -DGVM_FEED_LOCK_PATH=/opt/gvm/var/lib/gvm/feed-update.lock
  make
  make install
  cd ..
  cd ..
  export GSA_VERSION=$GVM_VERSION
  curl -f -L https://github.com/greenbone/gsa/archive/refs/tags/v$GSA_VERSION.tar.gz -o gsa-$GSA_VERSION.tar.gz
  tar zxvf gsa-21.4.3.tar.gz
  cd gsa-21.4.3/
  mkdir build && cd build
  cmake .. -DCMAKE_INSTALL_PREFIX=/opt/gvm -DCMAKE_BUILD_TYPE=Release -DSYSCONFDIR=/opt/gvm/etc -DLOCALSTATEDIR=/opt/gvm/var -DGVM_RUN_DIR=/opt/gvm/run/gvm -DGSAD_PID_DIR=/opt/gvm/run/gvm
  make
  make install
  export OPENVAS_SMB_VERSION=21.4.0
  cd ..
  cd ..
  curl -f -L https://github.com/greenbone/openvas-smb/archive/refs/tags/v$OPENVAS_SMB_VERSION.tar.gz -o openvas-smb-$OPENVAS_SMB_VERSION.tar.gz
  tar zxvf openvas-smb-21.4.0.tar.gz
  cd openvas-smb-21.4.0/
  mkdir build && cd build
  cmake .. -DCMAKE_INSTALL_PREFIX=/opt/gvm -DCMAKE_BUILD_TYPE=Release
  make
  make install
  cd ..
  cd ..
  export OPENVAS_SCANNER_VERSION=$GVM_VERSION
  curl -f -L https://github.com/greenbone/openvas-scanner/archive/refs/tags/v$OPENVAS_SCANNER_VERSION.tar.gz -o openvas-scanner-$OPENVAS_SCANNER_VERSION.tar.gz
  tar zxvf openvas-scanner-21.4.3.tar.gz
  cd openvas-scanner-21.4.3/
  mkdir build && cd build
  cmake .. -DCMAKE_INSTALL_PREFIX=/opt/gvm -DCMAKE_BUILD_TYPE=Release -DSYSCONFDIR=/opt/gvm/etc -DLOCALSTATEDIR=/opt/gvm/var -DOPENVAS_FEED_LOCK_PATH=/opt/gvm/var/lib/openvas/feed-update.lock -DOPENVAS_RUN_DIR=/opt/gvm/run/ospd
  make
  make install
  export OSPD_VERSION=21.4.4
  cd ..
  cd ..
  export OSPD_OPENVAS_VERSION=$GVM_VERSION
  curl -f -L https://github.com/greenbone/ospd/archive/refs/tags/v$OSPD_VERSION.tar.gz -o ospd-$OSPD_VERSION.tar.gz
  tar zxvf ospd-21.4.4.tar.gz
  curl -f -L https://github.com/greenbone/ospd-openvas/archive/refs/tags/v$OSPD_OPENVAS_VERSION.tar.gz -o ospd-openvas-$OSPD_OPENVAS_VERSION.tar.gz
  tar zxvf ospd-openvas-21.4.3.tar.gz
  cd ospd-21.4.4/
  python3 -m pip install . --prefix=/opt/gvm 
  cd ..
  cd ospd-openvas-21.4.3/
  python3 -m pip install . --prefix=/opt/gvm --no-warn-script-location
  python3 -m pip install --user gvm-tools
  gvmd --create-user=admin --password=***********
  gvmd --get-users --verbose | grep admin | awk '{print $2}'
  gvmd --modify-setting 78eceaec-3385-11ea-b237-28d24461215b --value `gvmd --get-users --verbose | grep admin | awk '{print $2}'`
  greenbone-nvt-sync
  greenbone-feed-sync --type SCAP
  greenbone-feed-sync --type CERT
  greenbone-feed-sync --type GVMD_DATA
  gvm-manage-certs -a
yu210148 commented 2 years ago

Okay, cool. If you can write that into a pull request i would be happy to incorporate it. It would probably be more elegant than what I'm testing in the issue 61 branch.

I've managed to get it to build with permissions changes but have run into issues on the next step when dealing with the certificate and doing the synch. I got a "/opt/gvm/cron.sh: line 6: /opt/gvm/bin/gvm-manage-certs: No such file or directory" which I think is the start of my problems in testing this.

And, now my baby is fussing so I'm not sure when I'll get a chance to return to it.

kev.

On Wed, Nov 17, 2021, 3:34 AM alexmateescu @.***> wrote:

hi

first of all i am using Ubuntu 20.04

please see below the commands i used to build it. so far everything works fine and i can generate the reports with no issue.

In my case i needed teh old database so i dumped it from the old server and imported it into the new one. Once you do that you need to rebuild the report formats "gvmd --rebuild-gvmd-data=report_formats"

also when you do make install on gvmd build you need to allow user gvm to write to /lib/systemd/system or you need to run cmake with a flag -DSYSTEMD_SERVICE_DIR=/lib/systemd/system <-- change this to a folder where gvm can write

after running all the below i continued with the commands from the script (crontab, services etc.)

let me know if it works

export GVM_VERSION=21.4.3 export GVM_LIBS_VERSION=$GVM_VERSION curl -f -L https://github.com/greenbone/gvm-libs/archive/refs/tags/v$GVM_LIBS_VERSION.tar.gz -o gvm-libs-$GVM_LIBS_VERSION.tar.gz tar zxvf gvm-libs-21.4.3.tar.gz cd gvm-libs-21.4.3/ mkdir build && cd build cmake .. -DCMAKE_INSTALL_PREFIX=/opt/gvm -DCMAKE_BUILD_TYPE=Release -DSYSCONFDIR=/opt/gvm/etc -DLOCALSTATEDIR=/opt/gvm/var -DGVM_PID_DIR=/opt/gvm/run/gvm make make install cd .. cd .. ls -la export GVMD_VERSION=21.4.4 curl -f -L https://github.com/greenbone/gvmd/archive/refs/tags/v$GVMD_VERSION.tar.gz -o gvmd-$GVMD_VERSION.tar.gz tar zxvf gvmd-21.4.4.tar.gz cd gvmd-21.4.4/ mkdir build && cd build export INSTALL_PREFIX=/opt/gvm cmake .. -DCMAKE_INSTALL_PREFIX=$INSTALL_PREFIX -DCMAKE_BUILD_TYPE=Release -DLOCALSTATEDIR=/opt/gvm/var -DSYSCONFDIR=/opt/gvm/etc -DGVM_DATA_DIR=/opt/gvm/var -DGVM_RUN_DIR=/opt/gvm/run/gvm -DOPENVAS_DEFAULT_SOCKET=/opt/gvm/run/ospd/ospd-openvas.sock -DGVM_FEED_LOCK_PATH=/opt/gvm/var/lib/gvm/feed-update.lock export PKG_CONFIG_PATH=/opt/gvm/lib/pkgconfig:$PKG_CONFIG_PATH cmake .. -DCMAKE_INSTALL_PREFIX=$INSTALL_PREFIX -DCMAKE_BUILD_TYPE=Release -DLOCALSTATEDIR=/opt/gvm/var -DSYSCONFDIR=/opt/gvm/etc -DGVM_DATA_DIR=/opt/gvm/var -DGVM_RUN_DIR=/opt/gvm/run/gvm -DOPENVAS_DEFAULT_SOCKET=/opt/gvm/run/ospd/ospd-openvas.sock -DGVM_FEED_LOCK_PATH=/opt/gvm/var/lib/gvm/feed-update.lock make make install cd .. cd .. export GSA_VERSION=$GVM_VERSION curl -f -L https://github.com/greenbone/gsa/archive/refs/tags/v$GSA_VERSION.tar.gz -o gsa-$GSA_VERSION.tar.gz tar zxvf gsa-21.4.3.tar.gz cd gsa-21.4.3/ mkdir build && cd build cmake .. -DCMAKE_INSTALL_PREFIX=/opt/gvm -DCMAKE_BUILD_TYPE=Release -DSYSCONFDIR=/opt/gvm/etc -DLOCALSTATEDIR=/opt/gvm/var -DGVM_RUN_DIR=/opt/gvm/run/gvm -DGSAD_PID_DIR=/opt/gvm/run/gvm make mask install cmake .. -DCMAKE_INSTALL_PREFIX=/opt/gvm -DCMAKE_BUILD_TYPE=Release -DSYSCONFDIR=/opt/gvm/etc -DLOCALSTATEDIR=/opt/gvm/var -DGVM_RUN_DIR=/opt/gvm/run/gvm -DGSAD_PID_DIR=/opt/gvm/run/gvm make make install export OPENVAS_SMB_VERSION=21.4.0 cd .. cd .. curl -f -L https://github.com/greenbone/openvas-smb/archive/refs/tags/v$OPENVAS_SMB_VERSION.tar.gz -o openvas-smb-$OPENVAS_SMB_VERSION.tar.gz tar zxvf openvas-smb-21.4.0.tar.gz cd openvas-smb-21.4.0/ mkdir build && cd build cmake .. -DCMAKE_INSTALL_PREFIX=/opt/gvm -DCMAKE_BUILD_TYPE=Release make make install cd .. cd .. export OPENVAS_SCANNER_VERSION=$GVM_VERSION curl -f -L https://github.com/greenbone/openvas-scanner/archive/refs/tags/v$OPENVAS_SCANNER_VERSION.tar.gz -o openvas-scanner-$OPENVAS_SCANNER_VERSION.tar.gz tar zxvf openvas-scanner-21.4.3.tar.gz cd openvas-scanner-21.4.3/ mkdir build && cd build cmake .. -DCMAKE_INSTALL_PREFIX=/opt/gvm -DCMAKE_BUILD_TYPE=Release -DSYSCONFDIR=/opt/gvm/etc -DLOCALSTATEDIR=/opt/gvm/var -DOPENVAS_FEED_LOCK_PATH=/opt/gvm/var/lib/openvas/feed-update.lock -DOPENVAS_RUN_DIR=/opt/gvm/run/ospd make make install export OSPD_VERSION=21.4.4 cd .. cd .. export OSPD_OPENVAS_VERSION=$GVM_VERSION curl -f -L https://github.com/greenbone/ospd/archive/refs/tags/v$OSPD_VERSION.tar.gz -o ospd-$OSPD_VERSION.tar.gz tar zxvf ospd-21.4.4.tar.gz curl -f -L https://github.com/greenbone/ospd-openvas/archive/refs/tags/v$OSPD_OPENVAS_VERSION.tar.gz -o ospd-openvas-$OSPD_OPENVAS_VERSION.tar.gz tar zxvf ospd-openvas-21.4.3.tar.gz cd ospd-21.4.4/ python3 -m pip install . --prefix=/opt/gvm cd .. cd ospd-openvas-21.4.3/ python3 -m pip install . --prefix=/opt/gvm --no-warn-script-location python3 -m pip install --user gvm-tools gvmd --create-user=admin --password=*** gvmd --get-users --verbose | grep admin | awk '{print $2}' gvmd --modify-setting 78eceaec-3385-11ea-b237-28d24461215b --value gvmd --get-users --verbose | grep admin | awk '{print $2}' greenbone-nvt-sync greenbone-feed-sync --type SCAP greenbone-feed-sync --type CERT greenbone-feed-sync --type GVMD_DATA gvm-manage-certs -a

— You are receiving this because you were assigned. Reply to this email directly, view it on GitHub https://github.com/yu210148/gvm_install/issues/62#issuecomment-971353017, or unsubscribe https://github.com/notifications/unsubscribe-auth/AAKFY4MH7YWJJE66CHA336DUMNSIPANCNFSM5IDTQBXQ . Triage notifications on the go with GitHub Mobile for iOS https://apps.apple.com/app/apple-store/id1477376905?ct=notification-email&mt=8&pt=524675 or Android https://play.google.com/store/apps/details?id=com.github.android&referrer=utm_campaign%3Dnotification-email%26utm_medium%3Demail%26utm_source%3Dgithub.

alexmateescu commented 2 years ago

I'll run the updated script on a test machine to see if it works and then i'll create the PR

yu210148 commented 2 years ago

Great, thanks. Progress is slow on my side. :)

Kev.

On Wed, Nov 17, 2021, 4:38 AM alexmateescu @.***> wrote:

I'll run the updated script on a test machine to see if it works and then i'll create the PR

— You are receiving this because you were assigned. Reply to this email directly, view it on GitHub https://github.com/yu210148/gvm_install/issues/62#issuecomment-971402285, or unsubscribe https://github.com/notifications/unsubscribe-auth/AAKFY4ONWGVSGLCDFYOLH4LUMNZX3ANCNFSM5IDTQBXQ . Triage notifications on the go with GitHub Mobile for iOS https://apps.apple.com/app/apple-store/id1477376905?ct=notification-email&mt=8&pt=524675 or Android https://play.google.com/store/apps/details?id=com.github.android&referrer=utm_campaign%3Dnotification-email%26utm_medium%3Demail%26utm_source%3Dgithub.

yu210148 commented 2 years ago

Thanks Alex, I've merged it in. That looks better than what I was trying. elliswnag, could you try it out and see if that fixes this for you?

alexmateescu commented 2 years ago

glad to be able to help. i have 2 greenbones that i use for production scanning and i need to keep them up to date for auditing so your script is very handy. next step figure out the upgrade piece cause right now i am rebuilding the whole thing.

yu210148 commented 2 years ago

Yes, I've been focusing on building from scratch but it would be great to have a way to update them.

Kev.

On Wed, Nov 17, 2021, 12:16 PM alexmateescu @.***> wrote:

glad to be able to help. i have 2 greenbones that i use for production scanning and i need to keep them up to date for auditing so your script is very handy. next step figure out the upgrade piece cause right now i am rebuilding the whole thing.

— You are receiving this because you were assigned. Reply to this email directly, view it on GitHub https://github.com/yu210148/gvm_install/issues/62#issuecomment-971787958, or unsubscribe https://github.com/notifications/unsubscribe-auth/AAKFY4NU4WDK5OKQKFLWLMDUMPPNLANCNFSM5IDTQBXQ . Triage notifications on the go with GitHub Mobile for iOS https://apps.apple.com/app/apple-store/id1477376905?ct=notification-email&mt=8&pt=524675 or Android https://play.google.com/store/apps/details?id=com.github.android&referrer=utm_campaign%3Dnotification-email%26utm_medium%3Demail%26utm_source%3Dgithub.

yu210148 commented 2 years ago

Going to close this issue as alexmateescu's fix does the trick.

elliswnag commented 2 years ago

Sorry, after I reinstalled again today, the installation was no problem, but after the installation, an exception occurred during the scan. This message appears. Did I have an error during the installation? An error message occurred when I started the scan, Failed to find port_list '33d0cd82-57c6 -11e1-8ed1-406186ea4fc5', is there any other solution? Please provide, thanks

yu210148 commented 2 years ago

Yes, I seem to be getting that now too. There doesn't seem to be any data in the gvm data feed. It could be an issue with the feed on Greenbone's side. I think we should give it a few days to see if that's the case.

Unless anyone else has more information on this?

Kev.

On Thu, Nov 18, 2021, 1:46 AM elliswnag @.***> wrote:

Sorry, after I reinstalled again today, the installation was no problem, but after the installation, an exception occurred during the scan. This message appears. Did I have an error during the installation? An error message occurred when I started the scan, Failed to find port_list '33d0cd82-57c6 -11e1-8ed1-406186ea4fc5', is there any other solution? Please provide, thanks

— You are receiving this because you modified the open/close state. Reply to this email directly, view it on GitHub https://github.com/yu210148/gvm_install/issues/62#issuecomment-972584071, or unsubscribe https://github.com/notifications/unsubscribe-auth/AAKFY4PWSJ3LSGGF4Y3IFWDUMSOL3ANCNFSM5IDTQBXQ . Triage notifications on the go with GitHub Mobile for iOS https://apps.apple.com/app/apple-store/id1477376905?ct=notification-email&mt=8&pt=524675 or Android https://play.google.com/store/apps/details?id=com.github.android&referrer=utm_campaign%3Dnotification-email%26utm_medium%3Demail%26utm_source%3Dgithub.

alexmateescu commented 2 years ago

It took about 30-40 minutes for me until everything got populated after the rebuild so maybe give it a bit of time and confirm you see NVTs and everything else in the dashboard

Alex

On 18 Nov 2021, at 07:54, Kevin Lucas @.***> wrote:

Yes, I seem to be getting that now too. There doesn't seem to be any data in the gvm data feed. It could be an issue with the feed on Greenbone's side. I think we should give it a few days to see if that's the case.

Unless anyone else has more information on this?

Kev.

On Thu, Nov 18, 2021, 1:46 AM elliswnag @.***> wrote:

Sorry, after I reinstalled again today, the installation was no problem, but after the installation, an exception occurred during the scan. This message appears. Did I have an error during the installation? An error message occurred when I started the scan, Failed to find port_list '33d0cd82-57c6 -11e1-8ed1-406186ea4fc5', is there any other solution? Please provide, thanks

— You are receiving this because you modified the open/close state. Reply to this email directly, view it on GitHub https://github.com/yu210148/gvm_install/issues/62#issuecomment-972584071, or unsubscribe https://github.com/notifications/unsubscribe-auth/AAKFY4PWSJ3LSGGF4Y3IFWDUMSOL3ANCNFSM5IDTQBXQ . Triage notifications on the go with GitHub Mobile for iOS https://apps.apple.com/app/apple-store/id1477376905?ct=notification-email&mt=8&pt=524675 or Android https://play.google.com/store/apps/details?id=com.github.android&referrer=utm_campaign%3Dnotification-email%26utm_medium%3Demail%26utm_source%3Dgithub.

— You are receiving this because you commented. Reply to this email directly, view it on GitHub https://github.com/yu210148/gvm_install/issues/62#issuecomment-972620037, or unsubscribe https://github.com/notifications/unsubscribe-auth/AFNANWXBR3GYJON6GH5S4LTUMSWNBANCNFSM5IDTQBXQ. Triage notifications on the go with GitHub Mobile for iOS https://apps.apple.com/app/apple-store/id1477376905?ct=notification-email&mt=8&pt=524675 or Android https://play.google.com/store/apps/details?id=com.github.android&referrer=utm_campaign%3Dnotification-email%26utm_medium%3Demail%26utm_source%3Dgithub.

elliswnag commented 2 years ago

My connection update was successfully updated without exception, but when adding a scan, after archiving, an exception message occurred

yu210148 commented 2 years ago

Cool, I do see the other feed's data in there so we'll see what happens 😃

Kev.

On Thu, Nov 18, 2021, 2:58 AM alexmateescu @.***> wrote:

It took about 30-40 minutes for me until everything got populated after the rebuild so maybe give it a bit of time and confirm you see NVTs and everything else in the dashboard

Alex

On 18 Nov 2021, at 07:54, Kevin Lucas @.***> wrote:

Yes, I seem to be getting that now too. There doesn't seem to be any data in the gvm data feed. It could be an issue with the feed on Greenbone's side. I think we should give it a few days to see if that's the case.

Unless anyone else has more information on this?

Kev.

On Thu, Nov 18, 2021, 1:46 AM elliswnag @.***> wrote:

Sorry, after I reinstalled again today, the installation was no problem, but after the installation, an exception occurred during the scan. This message appears. Did I have an error during the installation? An error message occurred when I started the scan, Failed to find port_list '33d0cd82-57c6 -11e1-8ed1-406186ea4fc5', is there any other solution? Please provide, thanks

— You are receiving this because you modified the open/close state. Reply to this email directly, view it on GitHub < https://github.com/yu210148/gvm_install/issues/62#issuecomment-972584071>, or unsubscribe < https://github.com/notifications/unsubscribe-auth/AAKFY4PWSJ3LSGGF4Y3IFWDUMSOL3ANCNFSM5IDTQBXQ

. Triage notifications on the go with GitHub Mobile for iOS < https://apps.apple.com/app/apple-store/id1477376905?ct=notification-email&mt=8&pt=524675

or Android < https://play.google.com/store/apps/details?id=com.github.android&referrer=utm_campaign%3Dnotification-email%26utm_medium%3Demail%26utm_source%3Dgithub .

— You are receiving this because you commented. Reply to this email directly, view it on GitHub < https://github.com/yu210148/gvm_install/issues/62#issuecomment-972620037>, or unsubscribe < https://github.com/notifications/unsubscribe-auth/AFNANWXBR3GYJON6GH5S4LTUMSWNBANCNFSM5IDTQBXQ . Triage notifications on the go with GitHub Mobile for iOS < https://apps.apple.com/app/apple-store/id1477376905?ct=notification-email&mt=8&pt=524675> or Android < https://play.google.com/store/apps/details?id=com.github.android&referrer=utm_campaign%3Dnotification-email%26utm_medium%3Demail%26utm_source%3Dgithub>.

— You are receiving this because you modified the open/close state. Reply to this email directly, view it on GitHub https://github.com/yu210148/gvm_install/issues/62#issuecomment-972621991, or unsubscribe https://github.com/notifications/unsubscribe-auth/AAKFY4JH3YYG4OBYG7HCOY3UMSWZ3ANCNFSM5IDTQBXQ . Triage notifications on the go with GitHub Mobile for iOS https://apps.apple.com/app/apple-store/id1477376905?ct=notification-email&mt=8&pt=524675 or Android https://play.google.com/store/apps/details?id=com.github.android&referrer=utm_campaign%3Dnotification-email%26utm_medium%3Demail%26utm_source%3Dgithub.

yu210148 commented 2 years ago

Yes, I'm seeing the same thing as you. I'd still like to wait a day or so to see if things sort themselves out.

Kev.

On Thu, Nov 18, 2021, 3:18 AM elliswnag @.***> wrote:

My connection update was successfully updated without exception, but when adding a scan, after archiving, an exception message occurred

— You are receiving this because you modified the open/close state. Reply to this email directly, view it on GitHub https://github.com/yu210148/gvm_install/issues/62#issuecomment-972634485, or unsubscribe https://github.com/notifications/unsubscribe-auth/AAKFY4K55UHPJWU4C5PUA4DUMSZDXANCNFSM5IDTQBXQ . Triage notifications on the go with GitHub Mobile for iOS https://apps.apple.com/app/apple-store/id1477376905?ct=notification-email&mt=8&pt=524675 or Android https://play.google.com/store/apps/details?id=com.github.android&referrer=utm_campaign%3Dnotification-email%26utm_medium%3Demail%26utm_source%3Dgithub.

yu210148 commented 2 years ago

I'm going to re add the warning about this to the readme until we figure out what's going on.

yu210148 commented 2 years ago

Looks like Alex's latest pull request should do the trick. Let's give it another try. I'll spin up a fresh vm tonight and run it. I'll post back here with the result.

yu210148 commented 2 years ago

I still want to test a build from scratch but for folks with an already set up instance I was able to get this going by becoming the GVM user (sudo -i, then su gvm) and giving it the following:

UUID=$(/opt/gvm/sbin/gvmd --get-users --verbose | grep admin | awk '{print $2}') /opt/gvm/sbin/gvmd --modify-setting 78eceaec-3385-11ea-b237-28d24461215b --value $UUID

Once I did that and re-ran the GVMD_DATA synch with: /opt/gvm/sbin/greenbone-feed-sync --type GVMD_DATA

I could see the scan configs in the web interface.

Give this a try elliswnag and see how it goes for you.

kev.

elliswnag commented 2 years ago

After reinstallation, the update is normal. Follow your suggestions and create a task without error messages, but the scan result is only log, no low medium high. Any suggestions or other solutions for this part, please tell me, thanks

yu210148 commented 2 years ago

Humm, I just ran a test scan on the one where I manually changed the 78eceaec-3385-11ea-b237-28d24461215b setting and it picked up a known issue on one of my systems with a medium severity. Just taking a snapshot of that VM now and am going to test with a clean install.

alexmateescu commented 2 years ago

i don't see any issues. it picks up all my mediums and highs. just doing a fresh install myself with full output logging so i can go over it and see if i missed something, but i can tell you i have it running in production already and all looks fine.

yu210148 commented 2 years ago

Got my fresh install done and am now doing a test scan of my network.

I'm also sterilizing infant feeding bottles so my results may be delayed 🙂

Kev.

On Fri, Nov 19, 2021, 2:50 AM alexmateescu @.***> wrote:

i don't see any issues. it picks up all my mediums and highs. just doing a fresh install myself with full output logging so i can go over it and see if i missed something, but i can tell you i have it running in production already and all looks fine.

— You are receiving this because you modified the open/close state. Reply to this email directly, view it on GitHub https://github.com/yu210148/gvm_install/issues/62#issuecomment-973838186, or unsubscribe https://github.com/notifications/unsubscribe-auth/AAKFY4J4S56W5ZECAGIGCLDUMX6VLANCNFSM5IDTQBXQ . Triage notifications on the go with GitHub Mobile for iOS https://apps.apple.com/app/apple-store/id1477376905?ct=notification-email&mt=8&pt=524675 or Android https://play.google.com/store/apps/details?id=com.github.android&referrer=utm_campaign%3Dnotification-email%26utm_medium%3Demail%26utm_source%3Dgithub.

yu210148 commented 2 years ago

Okay, got back to this sooner than I thought. Yes, I'm getting reasonable results from the scan so I'm not sure what's going on for you elliswnag. Could be that your NVT, SCAP, or CERT feeds aren't completely updated? That's just a guess on my part.

I know it's a pain, but if you do a fresh install do you get the same results?

kev.

P.S. based on the time of day that we're all working on this I'm guessing that you and alexmateescu aren't based in North America. I'm curious where you both are. When I initially wrote this I didn't expect folks around the world to actually be using it. I'm in Lansing, Michigan, USA if you're curious.

elliswnag commented 2 years ago

I will try again when I go home and install again. Do I still need to add this line? UUID=$(/opt/gvm/sbin/gvmd --get-users --verbose | grep admin | awk'(print $2) ') /opt/gvm/sbin/gvmd --modify-setting 78eceaec-3385-11ea-b237-28d24461215b --value $UUID

yu210148 commented 2 years ago

Shouldn't need to on a fresh install. The one I ran successfully was just what's in the master branch.

kev.

elliswnag commented 2 years ago

SORRY, let me confirm the installation process 1.wget https://raw.githubusercontent.com/yu210148/gvm_install/master/install_gvm.sh chmod +x install_gvm.sh sudo ./install_gvm.sh -v 21 -u

  1. (sudo -i, then su gvm)

UUID=$(/opt/gvm/sbin/gvmd --get-users --verbose | grep admin | awk'{print $2}') /opt/gvm/sbin/gvmd --modify-setting 78eceaec-3385-11ea -b237-28d24461215b --value $UUID

Is this process right? Did I miss any process? Or did I do something wrong?

yu210148 commented 2 years ago

No, step 2 should not be needed.

alexmateescu commented 2 years ago

Dublin, Ireland

As i said i use openvas in production and getting a high 10 score in a scan is not good for audits

That is how i ended up using the script

Alex

On Fri 19 Nov 2021 at 08:21, Kevin Lucas @.***> wrote:

Okay, got back to this sooner than I thought. Yes, I'm getting reasonable results from the scan so I'm not sure what's going on for you elliswnag. Could be that your NVT, SCAP, or CERT feeds aren't completely updated? That's just a guess on my part.

I know it's a pain, but if you do a fresh install do you get the same results?

kev.

P.S. based on the time of day that we're all working on this I'm guessing that you and alexmateescu aren't based in North America. I'm curious where you both are. When I initially wrote this I didn't expect folks around the world to actually be using it. I'm in Lansing, Michigan, USA if you're curious.

— You are receiving this because you commented. Reply to this email directly, view it on GitHub https://github.com/yu210148/gvm_install/issues/62#issuecomment-973857118, or unsubscribe https://github.com/notifications/unsubscribe-auth/AFNANWW4YBHRDNI3IBAJ4C3UMYCKDANCNFSM5IDTQBXQ . Triage notifications on the go with GitHub Mobile for iOS https://apps.apple.com/app/apple-store/id1477376905?ct=notification-email&mt=8&pt=524675 or Android https://play.google.com/store/apps/details?id=com.github.android&referrer=utm_campaign%3Dnotification-email%26utm_medium%3Demail%26utm_source%3Dgithub.

yu210148 commented 2 years ago

Nice, I've only been there once and that was years ago. Thanks again for all your help with this. I think we're good pending elliswnag's result.

Kev.

On Fri, Nov 19, 2021, 5:13 AM alexmateescu @.***> wrote:

Dublin, Ireland

As i said i use openvas in production and getting a high 10 score in a scan is not good for audits

That is how i ended up using the script

Alex

On Fri 19 Nov 2021 at 08:21, Kevin Lucas @.***> wrote:

Okay, got back to this sooner than I thought. Yes, I'm getting reasonable results from the scan so I'm not sure what's going on for you elliswnag. Could be that your NVT, SCAP, or CERT feeds aren't completely updated? That's just a guess on my part.

I know it's a pain, but if you do a fresh install do you get the same results?

kev.

P.S. based on the time of day that we're all working on this I'm guessing that you and alexmateescu aren't based in North America. I'm curious where you both are. When I initially wrote this I didn't expect folks around the world to actually be using it. I'm in Lansing, Michigan, USA if you're curious.

— You are receiving this because you commented. Reply to this email directly, view it on GitHub < https://github.com/yu210148/gvm_install/issues/62#issuecomment-973857118>, or unsubscribe < https://github.com/notifications/unsubscribe-auth/AFNANWW4YBHRDNI3IBAJ4C3UMYCKDANCNFSM5IDTQBXQ

. Triage notifications on the go with GitHub Mobile for iOS < https://apps.apple.com/app/apple-store/id1477376905?ct=notification-email&mt=8&pt=524675

or Android < https://play.google.com/store/apps/details?id=com.github.android&referrer=utm_campaign%3Dnotification-email%26utm_medium%3Demail%26utm_source%3Dgithub .

— You are receiving this because you modified the open/close state. Reply to this email directly, view it on GitHub https://github.com/yu210148/gvm_install/issues/62#issuecomment-973934656, or unsubscribe https://github.com/notifications/unsubscribe-auth/AAKFY4I5FPDDHJLCXULGV63UMYPLHANCNFSM5IDTQBXQ . Triage notifications on the go with GitHub Mobile for iOS https://apps.apple.com/app/apple-store/id1477376905?ct=notification-email&mt=8&pt=524675 or Android https://play.google.com/store/apps/details?id=com.github.android&referrer=utm_campaign%3Dnotification-email%26utm_medium%3Demail%26utm_source%3Dgithub.

elliswnag commented 2 years ago

Use the same process on the website, after trying again, the scan report is the same, only log, no display low medium high, I will test a few more times, or can provide screenshots for reference, xml report

elliswnag commented 2 years ago

I Summary

This document reports on the results of an automatic security scan. The report first summarises the results found. Then, for each host, the report describes every issue found. Please consider the advice given in each description, in order to rectify the issue.

All dates are displayed using the timezone

Vendor security updates are not trusted.

Overrides are off. Even when a result has an override, this report uses the actual threat of the result.

Notes are included in the report.Information on overrides is included in the report.

This report might not show details of all issues that were found. Issues with the threat level "Debug" are not shown. Only results with a minimum QoD of 70 are shown.

This report contains all 4 results selected by the filtering described above. Before filtering there were 4 results.

Scan started: Fri Nov 19 12:50:54 2021 CST Scan ended: Fri Nov 19 12:52:22 2021 CST Task: 192.168.50.77

Host Summary


Host High Medium Low Log False Positive 192.168.50.7 0 0 0 4 0 desktop-jnm2h97 Total: 1 0 0 0 4 0

II Results per Host

Host 192.168.50.7


Scanning of this host started at: Fri Nov 19 12:51:29 2021 CST Number of results: 4

Port Summary for Host 192.168.50.7

Service (Port) Threat Level general/tcp Log general/CPE-T Log

Security Issues for Host 192.168.50.7

Issue

NVT: OS Detection Consolidation and Reporting OID: 1.3.6.1.4.1.25623.1.0.105937 Threat: Log (CVSS: 0.0) Port: general/tcp

Summary: This script consolidates the OS information detected by several VTs and tries to find the best matching OS. Furthermore it reports all previously collected information leading to this be! st matching OS. It also reports possible additional information which might help to improve the O! S detection. If any of this information is wrong or could be improved please consider to re! port these to the referenced community portal.

Vulnerability Detection Result: Best matching OS: OS: HP JetDirect CPE: cpe:/h:hp:jetdirect Found by NVT: 1.3.6.1.4.1.25623.1.0.102002 (Operating System (OS) Detection (ICM! P)) Concluded from ICMP based OS fingerprint Setting key "Host/runs_unixoide" based on this information

Solution:

Log Method: Details: OS Detection Consolidation and Reporting (OID: 1.3.6.1.4.1.25623.1.0.105937) Version used: 2021-11-12T13:29:16Z

References: url: https://community.greenbone.net/c/vulnerability-tests

Issue

NVT: Traceroute OID: 1.3.6.1.4.1.25623.1.0.51662 Threat: Log (CVSS: 0.0) Port: general/tcp

Summary: Collect information about the network route and network distance between the scanner host and the target host.

Vulnerability Detection Result: Network route from scanner (192.168.25.139) to target (192.168.50.7): 192.168.25.139 192.168.50.7 Network distance between scanner and target: 2

Solution:

Vulnerability Insight: For internal networks, the distances are usually small, often less than 4 hosts between scanner and target. For public targets ! the distance is greater and might be 10 hosts or more.

Log Method: A combination of the protocols ICMP and TCP is used to determine the route. This method is applicable for IPv4 only and it is also! known as 'traceroute'. Details: Traceroute (OID: 1.3.6.1.4.1.25623.1.0.51662) Version used: 2021-03-12T14:25:59Z

Issue

NVT: CPE Inventory OID: 1.3.6.1.4.1.25623.1.0.810002 Threat: Log (CVSS: 0.0) Port: general/CPE-T

Summary: This routine uses information collected by other routines about CPE identities of operating systems, services and applications detected during! the scan. Note: Some CPEs for specific products might show up twice or more in the outpu! t. Background: After a product got renamed or a specific vendor was acquired by another one i! t might happen that a product gets a new CPE within the NVD CPE Dictionary but older entries are kep! t with the older CPE.

Vulnerability Detection Result: 192.168.50.7|cpe:/h:hp:jetdirect

Solution:

Log Method: Details: CPE Inventory (OID: 1.3.6.1.4.1.25623.1.0.810002) Version used: 2021-04-16T10:39:13Z

References: url: https://nvd.nist.gov/products/cpe

Issue

NVT: Hostname Determination Reporting OID: 1.3.6.1.4.1.25623.1.0.108449 Threat: Log (CVSS: 0.0) Port: general/tcp

Summary: The script reports information on how the hostname of the target was determined.

Vulnerability Detection Result: Hostname determination for IP 192.168.50.7: Hostname|Source desktop-jnm2h97|Reverse-DNS

Solution:

Log Method: Details: Hostname Determination Reporting (OID: 1.3.6.1.4.1.25623.1.0.108449) Version used: 2018-11-19T11:11:31Z

alexmateescu commented 2 years ago

did you confirm that you have all data synced? NVTs, CVEs etc. ALL OF IT as otherwise the results will not be correct

elliswnag commented 2 years ago

I updated several times and confirmed that the update was successful

NVTs

Greenbone Community Feed

20211119T1134

Current SCAP

CVEs CPEs OVAL Definitions

Greenbone Community SCAP Feed

20211118T0230

Current CERT

CERT-Bund Advisories DFN-CERT Advisories

Greenbone Community CERT Feed

20211118T0130

Current GVMD_DATA

Compliance Policies Port Lists Report Formats Scan Configs

Greenbone Community gvmd Data Feed

20211108T1058

11 days old

alexmateescu commented 2 years ago

ok then. can you run "tail -n 200 /opt/gvm/var/log/gvm/gvmd.log" thanks

elliswnag commented 2 years ago

gvm@ubuntu:/home/ellis$ tail -n 200 /opt/gvm/var/log/gvm/gvmd.log event task:MESSAGE:2021-11-19 20h15.36 CST:3731: Status of task 192.168.1.50 (bbb4a560-5118-47d6-ab8a-0aaf8ce3b091) has changed to Done event task:MESSAGE:2021-11-19 20h15.36 CST:3731: Status of task 192.168.1.50 (bbb4a560-5118-47d6-ab8a-0aaf8ce3b091) has changed to Interrupted event task:MESSAGE:2021-11-19 20h15.37 CST:3769: Status of task 192.168.1.50 (bbb4a560-5118-47d6-ab8a-0aaf8ce3b091) has changed to Requested event task:MESSAGE:2021-11-19 20h15.37 CST:3769: Task 192.168.1.50 (bbb4a560-5118-47d6-ab8a-0aaf8ce3b091) has been requested to start by gvmadmin md manage:WARNING:2021-11-19 20h15.37 CST:3772: OSP start_scan e31c570c-eb30-4789-858b-1a5563bc9560: VTs list is empty event task:MESSAGE:2021-11-19 20h15.37 CST:3772: Status of task 192.168.1.50 (bbb4a560-5118-47d6-ab8a-0aaf8ce3b091) has changed to Done event task:MESSAGE:2021-11-19 20h15.37 CST:3772: Status of task 192.168.1.50 (bbb4a560-5118-47d6-ab8a-0aaf8ce3b091) has changed to Interrupted event task:MESSAGE:2021-11-19 20h15.38 CST:3810: Status of task 192.168.1.50 (bbb4a560-5118-47d6-ab8a-0aaf8ce3b091) has changed to Requested event task:MESSAGE:2021-11-19 20h15.38 CST:3810: Task 192.168.1.50 (bbb4a560-5118-47d6-ab8a-0aaf8ce3b091) has been requested to start by gvmadmin md manage:WARNING:2021-11-19 20h15.38 CST:3813: OSP start_scan cd407331-1aa3-4c0d-815a-ca4571fb91d8: VTs list is empty event task:MESSAGE:2021-11-19 20h15.38 CST:3813: Status of task 192.168.1.50 (bbb4a560-5118-47d6-ab8a-0aaf8ce3b091) has changed to Done event task:MESSAGE:2021-11-19 20h15.38 CST:3813: Status of task 192.168.1.50 (bbb4a560-5118-47d6-ab8a-0aaf8ce3b091) has changed to Interrupted event task:MESSAGE:2021-11-19 20h15.44 CST:3852: Status of task 192.168.1.50 (bbb4a560-5118-47d6-ab8a-0aaf8ce3b091) has changed to Requested event task:MESSAGE:2021-11-19 20h15.44 CST:3852: Task 192.168.1.50 (bbb4a560-5118-47d6-ab8a-0aaf8ce3b091) has been requested to start by gvmadmin md manage:WARNING:2021-11-19 20h15.44 CST:3858: OSP start_scan 8bb87716-df48-4efb-b5a5-9d343ff45257: VTs list is empty event task:MESSAGE:2021-11-19 20h15.44 CST:3858: Status of task 192.168.1.50 (bbb4a560-5118-47d6-ab8a-0aaf8ce3b091) has changed to Done event task:MESSAGE:2021-11-19 20h15.44 CST:3858: Status of task 192.168.1.50 (bbb4a560-5118-47d6-ab8a-0aaf8ce3b091) has changed to Interrupted event task:MESSAGE:2021-11-19 20h15.45 CST:3896: Status of task 192.168.1.50 (bbb4a560-5118-47d6-ab8a-0aaf8ce3b091) has changed to Requested event task:MESSAGE:2021-11-19 20h15.45 CST:3896: Task 192.168.1.50 (bbb4a560-5118-47d6-ab8a-0aaf8ce3b091) has been requested to start by gvmadmin md manage:WARNING:2021-11-19 20h15.45 CST:3899: OSP start_scan c6709fcc-523b-44c3-b25e-111980817d0a: VTs list is empty event task:MESSAGE:2021-11-19 20h15.45 CST:3899: Status of task 192.168.1.50 (bbb4a560-5118-47d6-ab8a-0aaf8ce3b091) has changed to Done event task:MESSAGE:2021-11-19 20h15.45 CST:3899: Status of task 192.168.1.50 (bbb4a560-5118-47d6-ab8a-0aaf8ce3b091) has changed to Interrupted event task:MESSAGE:2021-11-19 20h15.46 CST:3937: Status of task 192.168.1.50 (bbb4a560-5118-47d6-ab8a-0aaf8ce3b091) has changed to Requested event task:MESSAGE:2021-11-19 20h15.46 CST:3937: Task 192.168.1.50 (bbb4a560-5118-47d6-ab8a-0aaf8ce3b091) has been requested to start by gvmadmin md manage:WARNING:2021-11-19 20h15.46 CST:3940: OSP start_scan e77224a7-4a92-4b4d-88b1-75087c970868: VTs list is empty event task:MESSAGE:2021-11-19 20h15.46 CST:3940: Status of task 192.168.1.50 (bbb4a560-5118-47d6-ab8a-0aaf8ce3b091) has changed to Done event task:MESSAGE:2021-11-19 20h15.46 CST:3940: Status of task 192.168.1.50 (bbb4a560-5118-47d6-ab8a-0aaf8ce3b091) has changed to Interrupted event task:MESSAGE:2021-11-19 20h15.47 CST:3978: Status of task 192.168.1.50 (bbb4a560-5118-47d6-ab8a-0aaf8ce3b091) has changed to Requested event task:MESSAGE:2021-11-19 20h15.47 CST:3978: Task 192.168.1.50 (bbb4a560-5118-47d6-ab8a-0aaf8ce3b091) has been requested to start by gvmadmin md manage:WARNING:2021-11-19 20h15.47 CST:3981: OSP start_scan bf8ec366-fb0d-4a35-9c39-b2fef26bf1ac: VTs list is empty event task:MESSAGE:2021-11-19 20h15.47 CST:3981: Status of task 192.168.1.50 (bbb4a560-5118-47d6-ab8a-0aaf8ce3b091) has changed to Done event task:MESSAGE:2021-11-19 20h15.47 CST:3981: Status of task 192.168.1.50 (bbb4a560-5118-47d6-ab8a-0aaf8ce3b091) has changed to Interrupted event task:MESSAGE:2021-11-19 20h15.48 CST:4019: Status of task 192.168.1.50 (bbb4a560-5118-47d6-ab8a-0aaf8ce3b091) has changed to Requested event task:MESSAGE:2021-11-19 20h15.48 CST:4019: Task 192.168.1.50 (bbb4a560-5118-47d6-ab8a-0aaf8ce3b091) has been requested to start by gvmadmin md manage:WARNING:2021-11-19 20h15.48 CST:4022: OSP start_scan a5eb9a0b-c99e-4224-b1f0-574436a8201f: VTs list is empty event task:MESSAGE:2021-11-19 20h15.48 CST:4022: Status of task 192.168.1.50 (bbb4a560-5118-47d6-ab8a-0aaf8ce3b091) has changed to Done event task:MESSAGE:2021-11-19 20h15.48 CST:4022: Status of task 192.168.1.50 (bbb4a560-5118-47d6-ab8a-0aaf8ce3b091) has changed to Interrupted event task:MESSAGE:2021-11-19 20h15.49 CST:4060: Status of task 192.168.1.50 (bbb4a560-5118-47d6-ab8a-0aaf8ce3b091) has changed to Requested event task:MESSAGE:2021-11-19 20h15.49 CST:4060: Task 192.168.1.50 (bbb4a560-5118-47d6-ab8a-0aaf8ce3b091) has been requested to start by gvmadmin md manage:WARNING:2021-11-19 20h15.49 CST:4063: OSP start_scan 5e443ab3-00d1-4160-a53d-232cc57ceee7: VTs list is empty event task:MESSAGE:2021-11-19 20h15.49 CST:4063: Status of task 192.168.1.50 (bbb4a560-5118-47d6-ab8a-0aaf8ce3b091) has changed to Done event task:MESSAGE:2021-11-19 20h15.49 CST:4063: Status of task 192.168.1.50 (bbb4a560-5118-47d6-ab8a-0aaf8ce3b091) has changed to Interrupted event task:MESSAGE:2021-11-19 20h15.50 CST:4101: Status of task 192.168.1.50 (bbb4a560-5118-47d6-ab8a-0aaf8ce3b091) has changed to Requested event task:MESSAGE:2021-11-19 20h15.50 CST:4101: Task 192.168.1.50 (bbb4a560-5118-47d6-ab8a-0aaf8ce3b091) has been requested to start by gvmadmin md manage:WARNING:2021-11-19 20h15.50 CST:4104: OSP start_scan 2d0e25e0-985b-47a5-91c9-d6a01cca4ea1: VTs list is empty event task:MESSAGE:2021-11-19 20h15.50 CST:4104: Status of task 192.168.1.50 (bbb4a560-5118-47d6-ab8a-0aaf8ce3b091) has changed to Done event task:MESSAGE:2021-11-19 20h15.50 CST:4104: Status of task 192.168.1.50 (bbb4a560-5118-47d6-ab8a-0aaf8ce3b091) has changed to Interrupted event task:MESSAGE:2021-11-19 20h15.50 CST:4142: Status of task 192.168.1.50 (bbb4a560-5118-47d6-ab8a-0aaf8ce3b091) has changed to Requested event task:MESSAGE:2021-11-19 20h15.50 CST:4142: Task 192.168.1.50 (bbb4a560-5118-47d6-ab8a-0aaf8ce3b091) has been requested to start by gvmadmin md manage:WARNING:2021-11-19 20h15.51 CST:4145: OSP start_scan 1beb42df-b4e9-409b-98f0-1780ad85819c: VTs list is empty event task:MESSAGE:2021-11-19 20h15.51 CST:4145: Status of task 192.168.1.50 (bbb4a560-5118-47d6-ab8a-0aaf8ce3b091) has changed to Done event task:MESSAGE:2021-11-19 20h15.51 CST:4145: Status of task 192.168.1.50 (bbb4a560-5118-47d6-ab8a-0aaf8ce3b091) has changed to Interrupted event task:MESSAGE:2021-11-19 20h15.51 CST:4183: Status of task 192.168.1.50 (bbb4a560-5118-47d6-ab8a-0aaf8ce3b091) has changed to Requested event task:MESSAGE:2021-11-19 20h15.51 CST:4183: Task 192.168.1.50 (bbb4a560-5118-47d6-ab8a-0aaf8ce3b091) has been requested to start by gvmadmin md manage:WARNING:2021-11-19 20h15.51 CST:4186: OSP start_scan ef7053f7-4fa8-488d-ae66-88f87b86960e: VTs list is empty event task:MESSAGE:2021-11-19 20h15.51 CST:4186: Status of task 192.168.1.50 (bbb4a560-5118-47d6-ab8a-0aaf8ce3b091) has changed to Done event task:MESSAGE:2021-11-19 20h15.51 CST:4186: Status of task 192.168.1.50 (bbb4a560-5118-47d6-ab8a-0aaf8ce3b091) has changed to Interrupted event task:MESSAGE:2021-11-19 20h15.52 CST:4224: Status of task 192.168.1.50 (bbb4a560-5118-47d6-ab8a-0aaf8ce3b091) has changed to Requested event task:MESSAGE:2021-11-19 20h15.52 CST:4224: Task 192.168.1.50 (bbb4a560-5118-47d6-ab8a-0aaf8ce3b091) has been requested to start by gvmadmin md manage:WARNING:2021-11-19 20h15.52 CST:4227: OSP start_scan 95056318-05c0-4c93-88a1-e1e537bf7aa5: VTs list is empty event task:MESSAGE:2021-11-19 20h15.52 CST:4227: Status of task 192.168.1.50 (bbb4a560-5118-47d6-ab8a-0aaf8ce3b091) has changed to Done event task:MESSAGE:2021-11-19 20h15.52 CST:4227: Status of task 192.168.1.50 (bbb4a560-5118-47d6-ab8a-0aaf8ce3b091) has changed to Interrupted event task:MESSAGE:2021-11-19 20h15.53 CST:4266: Status of task 192.168.1.50 (bbb4a560-5118-47d6-ab8a-0aaf8ce3b091) has changed to Requested event task:MESSAGE:2021-11-19 20h15.53 CST:4266: Task 192.168.1.50 (bbb4a560-5118-47d6-ab8a-0aaf8ce3b091) has been requested to start by gvmadmin md manage:WARNING:2021-11-19 20h15.53 CST:4269: OSP start_scan 062aeb5e-e846-4434-b527-e1f3355db6e5: VTs list is empty event task:MESSAGE:2021-11-19 20h15.53 CST:4269: Status of task 192.168.1.50 (bbb4a560-5118-47d6-ab8a-0aaf8ce3b091) has changed to Done event task:MESSAGE:2021-11-19 20h15.53 CST:4269: Status of task 192.168.1.50 (bbb4a560-5118-47d6-ab8a-0aaf8ce3b091) has changed to Interrupted event task:MESSAGE:2021-11-19 20h15.54 CST:4307: Status of task 192.168.1.50 (bbb4a560-5118-47d6-ab8a-0aaf8ce3b091) has changed to Requested event task:MESSAGE:2021-11-19 20h15.54 CST:4307: Task 192.168.1.50 (bbb4a560-5118-47d6-ab8a-0aaf8ce3b091) has been requested to start by gvmadmin md manage:WARNING:2021-11-19 20h15.55 CST:4313: OSP start_scan 439f99e1-fbd6-4d40-a122-399c8c364940: VTs list is empty event task:MESSAGE:2021-11-19 20h15.55 CST:4313: Status of task 192.168.1.50 (bbb4a560-5118-47d6-ab8a-0aaf8ce3b091) has changed to Done event task:MESSAGE:2021-11-19 20h15.55 CST:4313: Status of task 192.168.1.50 (bbb4a560-5118-47d6-ab8a-0aaf8ce3b091) has changed to Interrupted event task:MESSAGE:2021-11-19 20h15.55 CST:4351: Status of task 192.168.1.50 (bbb4a560-5118-47d6-ab8a-0aaf8ce3b091) has changed to Requested event task:MESSAGE:2021-11-19 20h15.55 CST:4351: Task 192.168.1.50 (bbb4a560-5118-47d6-ab8a-0aaf8ce3b091) has been requested to start by gvmadmin md manage:WARNING:2021-11-19 20h15.55 CST:4354: OSP start_scan 197ec0ec-3fd2-4e27-aa7f-5eb439080bb6: VTs list is empty event task:MESSAGE:2021-11-19 20h15.55 CST:4354: Status of task 192.168.1.50 (bbb4a560-5118-47d6-ab8a-0aaf8ce3b091) has changed to Done event task:MESSAGE:2021-11-19 20h15.55 CST:4354: Status of task 192.168.1.50 (bbb4a560-5118-47d6-ab8a-0aaf8ce3b091) has changed to Interrupted event task:MESSAGE:2021-11-19 20h15.56 CST:4392: Status of task 192.168.1.50 (bbb4a560-5118-47d6-ab8a-0aaf8ce3b091) has changed to Requested event task:MESSAGE:2021-11-19 20h15.56 CST:4392: Task 192.168.1.50 (bbb4a560-5118-47d6-ab8a-0aaf8ce3b091) has been requested to start by gvmadmin md manage:WARNING:2021-11-19 20h15.56 CST:4395: OSP start_scan 9d49d2ba-b4f9-4b07-a690-aa0bc3c9324e: VTs list is empty event task:MESSAGE:2021-11-19 20h15.56 CST:4395: Status of task 192.168.1.50 (bbb4a560-5118-47d6-ab8a-0aaf8ce3b091) has changed to Done event task:MESSAGE:2021-11-19 20h15.56 CST:4395: Status of task 192.168.1.50 (bbb4a560-5118-47d6-ab8a-0aaf8ce3b091) has changed to Interrupted event task:MESSAGE:2021-11-19 20h15.57 CST:4433: Status of task 192.168.1.50 (bbb4a560-5118-47d6-ab8a-0aaf8ce3b091) has changed to Requested event task:MESSAGE:2021-11-19 20h15.57 CST:4433: Task 192.168.1.50 (bbb4a560-5118-47d6-ab8a-0aaf8ce3b091) has been requested to start by gvmadmin md manage:WARNING:2021-11-19 20h15.57 CST:4436: OSP start_scan 09d62962-3561-4291-9c84-0cb5374a0fd6: VTs list is empty event task:MESSAGE:2021-11-19 20h15.57 CST:4436: Status of task 192.168.1.50 (bbb4a560-5118-47d6-ab8a-0aaf8ce3b091) has changed to Done event task:MESSAGE:2021-11-19 20h15.57 CST:4436: Status of task 192.168.1.50 (bbb4a560-5118-47d6-ab8a-0aaf8ce3b091) has changed to Interrupted event task:MESSAGE:2021-11-19 20h16.39 CST:4653: Status of task 192.168.1.50 (bbb4a560-5118-47d6-ab8a-0aaf8ce3b091) has changed to Requested event task:MESSAGE:2021-11-19 20h16.39 CST:4653: Task 192.168.1.50 (bbb4a560-5118-47d6-ab8a-0aaf8ce3b091) has been resumed by gvmadmin md manage:WARNING:2021-11-19 20h16.39 CST:4656: OSP start_scan 09d62962-3561-4291-9c84-0cb5374a0fd6: VTs list is empty event task:MESSAGE:2021-11-19 20h16.39 CST:4656: Status of task 192.168.1.50 (bbb4a560-5118-47d6-ab8a-0aaf8ce3b091) has changed to Done event task:MESSAGE:2021-11-19 20h16.39 CST:4656: Status of task 192.168.1.50 (bbb4a560-5118-47d6-ab8a-0aaf8ce3b091) has changed to Interrupted event task:MESSAGE:2021-11-19 20h16.41 CST:4696: Status of task 192.168.1.50 (bbb4a560-5118-47d6-ab8a-0aaf8ce3b091) has changed to Requested event task:MESSAGE:2021-11-19 20h16.41 CST:4696: Task 192.168.1.50 (bbb4a560-5118-47d6-ab8a-0aaf8ce3b091) has been resumed by gvmadmin md manage:WARNING:2021-11-19 20h16.41 CST:4699: OSP start_scan 09d62962-3561-4291-9c84-0cb5374a0fd6: VTs list is empty event task:MESSAGE:2021-11-19 20h16.41 CST:4699: Status of task 192.168.1.50 (bbb4a560-5118-47d6-ab8a-0aaf8ce3b091) has changed to Done event task:MESSAGE:2021-11-19 20h16.41 CST:4699: Status of task 192.168.1.50 (bbb4a560-5118-47d6-ab8a-0aaf8ce3b091) has changed to Interrupted event task:MESSAGE:2021-11-19 20h16.42 CST:4739: Status of task 192.168.1.50 (bbb4a560-5118-47d6-ab8a-0aaf8ce3b091) has changed to Requested event task:MESSAGE:2021-11-19 20h16.42 CST:4739: Task 192.168.1.50 (bbb4a560-5118-47d6-ab8a-0aaf8ce3b091) has been resumed by gvmadmin md manage:WARNING:2021-11-19 20h16.42 CST:4742: OSP start_scan 09d62962-3561-4291-9c84-0cb5374a0fd6: VTs list is empty event task:MESSAGE:2021-11-19 20h16.42 CST:4742: Status of task 192.168.1.50 (bbb4a560-5118-47d6-ab8a-0aaf8ce3b091) has changed to Done event task:MESSAGE:2021-11-19 20h16.42 CST:4742: Status of task 192.168.1.50 (bbb4a560-5118-47d6-ab8a-0aaf8ce3b091) has changed to Interrupted event task:MESSAGE:2021-11-19 20h16.43 CST:4786: Status of task 192.168.1.50 (bbb4a560-5118-47d6-ab8a-0aaf8ce3b091) has changed to Requested event task:MESSAGE:2021-11-19 20h16.43 CST:4786: Task 192.168.1.50 (bbb4a560-5118-47d6-ab8a-0aaf8ce3b091) has been resumed by gvmadmin md manage:WARNING:2021-11-19 20h16.43 CST:4789: OSP start_scan 09d62962-3561-4291-9c84-0cb5374a0fd6: VTs list is empty event task:MESSAGE:2021-11-19 20h16.43 CST:4789: Status of task 192.168.1.50 (bbb4a560-5118-47d6-ab8a-0aaf8ce3b091) has changed to Done event task:MESSAGE:2021-11-19 20h16.43 CST:4789: Status of task 192.168.1.50 (bbb4a560-5118-47d6-ab8a-0aaf8ce3b091) has changed to Interrupted event task:MESSAGE:2021-11-19 20h16.57 CST:4868: Task 192.168.1.50 (bbb4a560-5118-47d6-ab8a-0aaf8ce3b091) has been modified by gvmadmin event task:MESSAGE:2021-11-19 20h17.00 CST:4902: Status of task 192.168.1.50 (bbb4a560-5118-47d6-ab8a-0aaf8ce3b091) has changed to Requested event task:MESSAGE:2021-11-19 20h17.00 CST:4902: Task 192.168.1.50 (bbb4a560-5118-47d6-ab8a-0aaf8ce3b091) has been requested to start by gvmadmin md manage:WARNING:2021-11-19 20h17.00 CST:4905: OSP start_scan 5d524136-5358-4cc6-b213-7f6ceda2a9c7: VTs list is empty event task:MESSAGE:2021-11-19 20h17.01 CST:4905: Status of task 192.168.1.50 (bbb4a560-5118-47d6-ab8a-0aaf8ce3b091) has changed to Done event task:MESSAGE:2021-11-19 20h17.01 CST:4905: Status of task 192.168.1.50 (bbb4a560-5118-47d6-ab8a-0aaf8ce3b091) has changed to Interrupted event task:MESSAGE:2021-11-19 20h17.01 CST:4946: Status of task 192.168.1.50 (bbb4a560-5118-47d6-ab8a-0aaf8ce3b091) has changed to Requested event task:MESSAGE:2021-11-19 20h17.01 CST:4946: Task 192.168.1.50 (bbb4a560-5118-47d6-ab8a-0aaf8ce3b091) has been requested to start by gvmadmin md manage:WARNING:2021-11-19 20h17.02 CST:4949: OSP start_scan 758ef043-5ca4-4f58-914f-d700c60043a1: VTs list is empty event task:MESSAGE:2021-11-19 20h17.02 CST:4949: Status of task 192.168.1.50 (bbb4a560-5118-47d6-ab8a-0aaf8ce3b091) has changed to Done event task:MESSAGE:2021-11-19 20h17.02 CST:4949: Status of task 192.168.1.50 (bbb4a560-5118-47d6-ab8a-0aaf8ce3b091) has changed to Interrupted event task:MESSAGE:2021-11-19 20h17.02 CST:4988: Status of task 192.168.1.50 (bbb4a560-5118-47d6-ab8a-0aaf8ce3b091) has changed to Requested event task:MESSAGE:2021-11-19 20h17.02 CST:4988: Task 192.168.1.50 (bbb4a560-5118-47d6-ab8a-0aaf8ce3b091) has been requested to start by gvmadmin md manage:WARNING:2021-11-19 20h17.02 CST:4991: OSP start_scan 51426ae6-3c9d-4e2c-bdbb-8539a42b23a0: VTs list is empty event task:MESSAGE:2021-11-19 20h17.02 CST:4991: Status of task 192.168.1.50 (bbb4a560-5118-47d6-ab8a-0aaf8ce3b091) has changed to Done event task:MESSAGE:2021-11-19 20h17.02 CST:4991: Status of task 192.168.1.50 (bbb4a560-5118-47d6-ab8a-0aaf8ce3b091) has changed to Interrupted event task:MESSAGE:2021-11-19 20h20.28 CST:6184: Status of task 192.168.1.50 (bbb4a560-5118-47d6-ab8a-0aaf8ce3b091) has changed to Requested event task:MESSAGE:2021-11-19 20h20.28 CST:6184: Task 192.168.1.50 (bbb4a560-5118-47d6-ab8a-0aaf8ce3b091) has been requested to start by gvmadmin md manage:WARNING:2021-11-19 20h20.28 CST:6190: OSP start_scan ade64ad1-5f9c-4b8d-aedb-c6ab21672e19: VTs list is empty event task:MESSAGE:2021-11-19 20h20.28 CST:6190: Status of task 192.168.1.50 (bbb4a560-5118-47d6-ab8a-0aaf8ce3b091) has changed to Done event task:MESSAGE:2021-11-19 20h20.28 CST:6190: Status of task 192.168.1.50 (bbb4a560-5118-47d6-ab8a-0aaf8ce3b091) has changed to Interrupted event task:MESSAGE:2021-11-19 20h20.29 CST:6228: Status of task 192.168.1.50 (bbb4a560-5118-47d6-ab8a-0aaf8ce3b091) has changed to Requested event task:MESSAGE:2021-11-19 20h20.29 CST:6228: Task 192.168.1.50 (bbb4a560-5118-47d6-ab8a-0aaf8ce3b091) has been requested to start by gvmadmin md manage:WARNING:2021-11-19 20h20.30 CST:6231: OSP start_scan 5b75f78e-481e-43e3-a7ed-02030f083bff: VTs list is empty event task:MESSAGE:2021-11-19 20h20.30 CST:6231: Status of task 192.168.1.50 (bbb4a560-5118-47d6-ab8a-0aaf8ce3b091) has changed to Done event task:MESSAGE:2021-11-19 20h20.30 CST:6231: Status of task 192.168.1.50 (bbb4a560-5118-47d6-ab8a-0aaf8ce3b091) has changed to Interrupted event task:MESSAGE:2021-11-19 20h20.30 CST:6269: Status of task 192.168.1.50 (bbb4a560-5118-47d6-ab8a-0aaf8ce3b091) has changed to Requested event task:MESSAGE:2021-11-19 20h20.30 CST:6269: Task 192.168.1.50 (bbb4a560-5118-47d6-ab8a-0aaf8ce3b091) has been requested to start by gvmadmin md manage:WARNING:2021-11-19 20h20.30 CST:6272: OSP start_scan 6b222a0e-b25f-41bb-9f21-0c031add9ad5: VTs list is empty event task:MESSAGE:2021-11-19 20h20.30 CST:6272: Status of task 192.168.1.50 (bbb4a560-5118-47d6-ab8a-0aaf8ce3b091) has changed to Done event task:MESSAGE:2021-11-19 20h20.30 CST:6272: Status of task 192.168.1.50 (bbb4a560-5118-47d6-ab8a-0aaf8ce3b091) has changed to Interrupted md manage: INFO:2021-11-19 12h21.55 utc:2552: Updating VTs in database ... 78557 new VTs, 0 changed VTs md manage: INFO:2021-11-19 12h21.57 utc:2552: Updating VTs in database ... done (78557 VTs). event task:MESSAGE:2021-11-19 20h24.17 CST:6682: Status of task 192.168.1.50 (bbb4a560-5118-47d6-ab8a-0aaf8ce3b091) has changed to Requested event task:MESSAGE:2021-11-19 20h24.17 CST:6682: Task 192.168.1.50 (bbb4a560-5118-47d6-ab8a-0aaf8ce3b091) has been requested to start by gvmadmin event task:MESSAGE:2021-11-19 20h24.30 CST:6685: Status of task 192.168.1.50 (bbb4a560-5118-47d6-ab8a-0aaf8ce3b091) has changed to Queued event task:MESSAGE:2021-11-19 20h24.35 CST:6685: Status of task 192.168.1.50 (bbb4a560-5118-47d6-ab8a-0aaf8ce3b091) has changed to Running event task:MESSAGE:2021-11-19 20h25.15 CST:6685: Status of task 192.168.1.50 (bbb4a560-5118-47d6-ab8a-0aaf8ce3b091) has changed to Done event target:MESSAGE:2021-11-19 20h27.45 CST:7379: Target 192.168.25.255 (24f1f424-17ee-4c05-801f-26d611d46de2) has been created by gvmadmin event task:MESSAGE:2021-11-19 20h27.53 CST:7406: Status of task (d257ebf3-62c1-41d9-968a-f1287c10a29e) has changed to New event task:MESSAGE:2021-11-19 20h27.53 CST:7406: Task 192.168.25.255 (d257ebf3-62c1-41d9-968a-f1287c10a29e) has been created by gvmadmin event task:MESSAGE:2021-11-19 20h27.56 CST:7440: Status of task 192.168.25.255 (d257ebf3-62c1-41d9-968a-f1287c10a29e) has changed to Requested event task:MESSAGE:2021-11-19 20h27.56 CST:7440: Task 192.168.25.255 (d257ebf3-62c1-41d9-968a-f1287c10a29e) has been requested to start by gvmadmin event task:MESSAGE:2021-11-19 20h28.06 CST:7446: Status of task 192.168.25.255 (d257ebf3-62c1-41d9-968a-f1287c10a29e) has changed to Queued event task:MESSAGE:2021-11-19 20h28.16 CST:7446: Status of task 192.168.25.255 (d257ebf3-62c1-41d9-968a-f1287c10a29e) has changed to Running event task:MESSAGE:2021-11-19 12h29.32 UTC:7446: Status of task 192.168.25.255 (d257ebf3-62c1-41d9-968a-f1287c10a29e) has changed to Done event target:MESSAGE:2021-11-19 20h30.54 CST:8351: Target 192.168.50.135 (7afc3d8e-c59e-46a5-bed1-5a9a38cb7adb) has been created by gvmadmin event task:MESSAGE:2021-11-19 20h31.02 CST:8361: Status of task (c6bc4ef2-c582-4cd7-a562-872505631cec) has changed to New event task:MESSAGE:2021-11-19 20h31.02 CST:8361: Task 8888 (c6bc4ef2-c582-4cd7-a562-872505631cec) has been created by gvmadmin event task:MESSAGE:2021-11-19 20h31.05 CST:8399: Status of task 8888 (c6bc4ef2-c582-4cd7-a562-872505631cec) has changed to Requested event task:MESSAGE:2021-11-19 20h31.05 CST:8399: Task 8888 (c6bc4ef2-c582-4cd7-a562-872505631cec) has been requested to start by gvmadmin event task:MESSAGE:2021-11-19 20h31.15 CST:8402: Status of task 8888 (c6bc4ef2-c582-4cd7-a562-872505631cec) has changed to Queued event task:MESSAGE:2021-11-19 20h31.25 CST:8402: Status of task 8888 (c6bc4ef2-c582-4cd7-a562-872505631cec) has changed to Running event task:MESSAGE:2021-11-19 12h33.06 UTC:8402: Status of task 8888 (c6bc4ef2-c582-4cd7-a562-872505631cec) has changed to Done event filter:MESSAGE:2021-11-19 20h33.41 CST:9405: Filter 1119 (c9f03e38-7274-46c1-a2b8-a24d30f17928) has been created by gvmadmin event target:MESSAGE:2021-11-19 20h38.53 CST:9908: Target could not be created by gvmadmin event target:MESSAGE:2021-11-19 20h39.28 CST:9973: Target could not be created by gvmadmin event target:MESSAGE:2021-11-19 20h39.30 CST:9984: Target could not be created by gvmadmin event target:MESSAGE:2021-11-19 20h39.44 CST:10014: Target 192.168.50.7 (d65c9642-16ea-4df1-8e40-9af7796fac3d) has been created by gvmadmin event task:MESSAGE:2021-11-19 20h39.52 CST:10024: Status of task (dd1af4bc-55f6-4eca-bd93-8ea177847a43) has changed to New event task:MESSAGE:2021-11-19 20h39.52 CST:10024: Task 66666 (dd1af4bc-55f6-4eca-bd93-8ea177847a43) has been created by gvmadmin event task:MESSAGE:2021-11-19 20h39.54 CST:10061: Status of task 66666 (dd1af4bc-55f6-4eca-bd93-8ea177847a43) has changed to Requested event task:MESSAGE:2021-11-19 20h39.54 CST:10061: Task 66666 (dd1af4bc-55f6-4eca-bd93-8ea177847a43) has been requested to start by gvmadmin event task:MESSAGE:2021-11-19 20h40.04 CST:10064: Status of task 66666 (dd1af4bc-55f6-4eca-bd93-8ea177847a43) has changed to Queued event task:MESSAGE:2021-11-19 20h40.15 CST:10064: Status of task 66666 (dd1af4bc-55f6-4eca-bd93-8ea177847a43) has changed to Running event task:MESSAGE:2021-11-19 12h42.00 UTC:10064: Status of task 66666 (dd1af4bc-55f6-4eca-bd93-8ea177847a43) has changed to Done event task:MESSAGE:2021-11-19 20h46.32 CST:11589: Task 192.168.1.50 (bbb4a560-5118-47d6-ab8a-0aaf8ce3b091) has been deleted by gvmadmin event task:MESSAGE:2021-11-19 20h46.35 CST:11624: Task 192.168.25.255 (d257ebf3-62c1-41d9-968a-f1287c10a29e) has been deleted by gvmadmin event task:MESSAGE:2021-11-19 20h46.36 CST:11658: Task 66666 (dd1af4bc-55f6-4eca-bd93-8ea177847a43) has been deleted by gvmadmin event task:MESSAGE:2021-11-19 20h46.37 CST:11692: Task 8888 (c6bc4ef2-c582-4cd7-a562-872505631cec) has been deleted by gvmadmin event target:MESSAGE:2021-11-19 20h47.46 CST:11857: Target could not be created by gvmadmin event target:MESSAGE:2021-11-19 20h47.53 CST:11870: Target 192.168.50.77 (40907de1-8139-4481-8075-0a166cc13a3f) has been created by gvmadmin event task:MESSAGE:2021-11-19 20h48.18 CST:11928: Status of task (f6b73c1c-8f06-4d8c-9bf2-5c4f3421ad29) has changed to New event task:MESSAGE:2021-11-19 20h48.18 CST:11928: Task 192.168.50.77 (f6b73c1c-8f06-4d8c-9bf2-5c4f3421ad29) has been created by gvmadmin event task:MESSAGE:2021-11-19 20h48.23 CST:11966: Status of task 192.168.50.77 (f6b73c1c-8f06-4d8c-9bf2-5c4f3421ad29) has changed to Requested event task:MESSAGE:2021-11-19 20h48.23 CST:11966: Task 192.168.50.77 (f6b73c1c-8f06-4d8c-9bf2-5c4f3421ad29) has been requested to start by gvmadmin event task:MESSAGE:2021-11-19 20h48.33 CST:11969: Status of task 192.168.50.77 (f6b73c1c-8f06-4d8c-9bf2-5c4f3421ad29) has changed to Queued event task:MESSAGE:2021-11-19 20h48.38 CST:11969: Status of task 192.168.50.77 (f6b73c1c-8f06-4d8c-9bf2-5c4f3421ad29) has changed to Running event task:MESSAGE:2021-11-19 12h49.54 UTC:11969: Status of task 192.168.50.77 (f6b73c1c-8f06-4d8c-9bf2-5c4f3421ad29) has changed to Done event task:MESSAGE:2021-11-19 20h50.37 CST:12712: Status of task 192.168.50.77 (f6b73c1c-8f06-4d8c-9bf2-5c4f3421ad29) has changed to Requested event task:MESSAGE:2021-11-19 20h50.37 CST:12712: Task 192.168.50.77 (f6b73c1c-8f06-4d8c-9bf2-5c4f3421ad29) has been requested to start by gvmadmin event task:MESSAGE:2021-11-19 20h50.47 CST:12715: Status of task 192.168.50.77 (f6b73c1c-8f06-4d8c-9bf2-5c4f3421ad29) has changed to Queued event task:MESSAGE:2021-11-19 20h50.57 CST:12715: Status of task 192.168.50.77 (f6b73c1c-8f06-4d8c-9bf2-5c4f3421ad29) has changed to Running event task:MESSAGE:2021-11-19 12h52.22 UTC:12715: Status of task 192.168.50.77 (f6b73c1c-8f06-4d8c-9bf2-5c4f3421ad29) has changed to Done event target:MESSAGE:2021-11-19 20h53.50 CST:13492: Target could not be created by gvmadmin event target:MESSAGE:2021-11-19 20h53.55 CST:13502: Target 192.168.50.135-1 (15da3875-75bd-481f-a381-ef1d583bdf59) has been created by gvmadmin event task:MESSAGE:2021-11-19 20h54.07 CST:13532: Status of task (9f4e50a5-e830-42db-b96a-2cfa58674838) has changed to New event task:MESSAGE:2021-11-19 20h54.07 CST:13532: Task 1922222 (9f4e50a5-e830-42db-b96a-2cfa58674838) has been created by gvmadmin event task:MESSAGE:2021-11-19 20h54.09 CST:13566: Status of task 1922222 (9f4e50a5-e830-42db-b96a-2cfa58674838) has changed to Requested event task:MESSAGE:2021-11-19 20h54.09 CST:13566: Task 1922222 (9f4e50a5-e830-42db-b96a-2cfa58674838) has been requested to start by gvmadmin event task:MESSAGE:2021-11-19 20h54.20 CST:13569: Status of task 1922222 (9f4e50a5-e830-42db-b96a-2cfa58674838) has changed to Queued event task:MESSAGE:2021-11-19 20h54.25 CST:13569: Status of task 1922222 (9f4e50a5-e830-42db-b96a-2cfa58674838) has changed to Running event task:MESSAGE:2021-11-19 12h55.50 UTC:13569: Status of task 1922222 (9f4e50a5-e830-42db-b96a-2cfa58674838) has changed to Done

alexmateescu commented 2 years ago

md manage:WARNING:2021-11-19 20h15.37 CST:3772: OSP start_scan e31c570c-eb30-4789-858b-1a5563bc9560: VTs list is empty

your system is not synced. i suggest you run the following: su - gvm gvmd --rebuild

and then watch the log file

yu210148 commented 2 years ago

Ran the rebuild on my already working setup just to see what it would do. It took a bit of time as I'd expect and produced this in the log:

md manage: INFO:2021-11-20 06h17.41 utc:138369: Updating VTs in database ... 78557 new VTs, 0 changed VTs md manage: INFO:2021-11-20 06h17.43 utc:138369: Updating VTs in database ... done (78557 VTs). even

This all does seem to be working as expected on my side.

I'd like to close this issue off for now. If it doesn't do the trick for you elliswnag I can always re-open it.

kev.

elliswnag commented 2 years ago

Last night, I tried again and the same problem occurred again. I just got home because of the children's sports meeting in the morning. This time I reinstalled the VM system and executed your three lines of instructions. Try again to see if there is the same error.

yu210148 commented 2 years ago

Humm, most odd. Okay. I'll open this back up.

elliswnag commented 2 years ago

For all the execution flow and the result of the order, please refer to

Reinstall ubuntu 20.04.3 and execute wget https://raw.githubusercontent.com/yu210148/gvm_install/master/install_gvm.sh chmod +x install_gvm.sh sudo ./install_gvm.sh -v 21 -u

It was found that the update CERT was not successfully updated, so I issued an instruction to update su gvm

/opt/gvm/sbin/greenbone-feed-sync --type CERT

After the update is complete, create a task and press Start. Interrupted at 0% appears

gvm@ubuntu:/root$ tail -n 200 /opt/gvm/var/log/gvm/gvmd.log md manage:WARNING:2021-11-20 08h03.24 utc:26787: update_scap_cpes: No CPE dictionary found at /opt/gvm/var/lib/gvm/scap-data/official-cpe-dictionary_v2.2.xml md manage:WARNING:2021-11-20 08h03.34 utc:26798: update_scap: No SCAP db present, rebuilding SCAP db from scratch md manage: INFO:2021-11-20 08h03.34 utc:26798: update_scap: Updating data from feed md manage:WARNING:2021-11-20 08h03.34 utc:26798: update_scap_cpes: No CPE dictionary found at /opt/gvm/var/lib/gvm/scap-data/official-cpe-dictionary_v2.2.xml md manage:WARNING:2021-11-20 08h03.44 utc:26809: update_scap: No SCAP db present, rebuilding SCAP db from scratch md manage: INFO:2021-11-20 08h03.44 utc:26809: update_scap: Updating data from feed md manage:WARNING:2021-11-20 08h03.44 utc:26809: update_scap_cpes: No CPE dictionary found at /opt/gvm/var/lib/gvm/scap-data/official-cpe-dictionary_v2.2.xml md manage:WARNING:2021-11-20 08h03.54 utc:26819: update_scap: No SCAP db present, rebuilding SCAP db from scratch md manage: INFO:2021-11-20 08h03.54 utc:26819: update_scap: Updating data from feed md manage:WARNING:2021-11-20 08h03.54 utc:26819: update_scap_cpes: No CPE dictionary found at /opt/gvm/var/lib/gvm/scap-data/official-cpe-dictionary_v2.2.xml md manage:WARNING:2021-11-20 08h04.04 utc:26829: update_scap: No SCAP db present, rebuilding SCAP db from scratch md manage: INFO:2021-11-20 08h04.04 utc:26829: update_scap: Updating data from feed md manage:WARNING:2021-11-20 08h04.04 utc:26829: update_scap_cpes: No CPE dictionary found at /opt/gvm/var/lib/gvm/scap-data/official-cpe-dictionary_v2.2.xml md manage:WARNING:2021-11-20 08h04.14 utc:26840: update_scap: No SCAP db present, rebuilding SCAP db from scratch md manage: INFO:2021-11-20 08h04.14 utc:26840: update_scap: Updating data from feed md manage:WARNING:2021-11-20 08h04.14 utc:26840: update_scap_cpes: No CPE dictionary found at /opt/gvm/var/lib/gvm/scap-data/official-cpe-dictionary_v2.2.xml md manage:WARNING:2021-11-20 08h04.24 utc:26850: update_scap: No SCAP db present, rebuilding SCAP db from scratch md manage: INFO:2021-11-20 08h04.24 utc:26850: update_scap: Updating data from feed md manage:WARNING:2021-11-20 08h04.24 utc:26850: update_scap_cpes: No CPE dictionary found at /opt/gvm/var/lib/gvm/scap-data/official-cpe-dictionary_v2.2.xml md manage:WARNING:2021-11-20 08h04.34 utc:26862: update_scap: No SCAP db present, rebuilding SCAP db from scratch md manage: INFO:2021-11-20 08h04.34 utc:26862: update_scap: Updating data from feed md manage:WARNING:2021-11-20 08h04.34 utc:26862: update_scap_cpes: No CPE dictionary found at /opt/gvm/var/lib/gvm/scap-data/official-cpe-dictionary_v2.2.xml md manage:WARNING:2021-11-20 08h04.44 utc:26871: update_scap: No SCAP db present, rebuilding SCAP db from scratch md manage: INFO:2021-11-20 08h04.44 utc:26871: update_scap: Updating data from feed md manage:WARNING:2021-11-20 08h04.44 utc:26871: update_scap_cpes: No CPE dictionary found at /opt/gvm/var/lib/gvm/scap-data/official-cpe-dictionary_v2.2.xml md manage:WARNING:2021-11-20 08h04.54 utc:26882: update_scap: No SCAP db present, rebuilding SCAP db from scratch md manage: INFO:2021-11-20 08h04.54 utc:26882: update_scap: Updating data from feed md manage:WARNING:2021-11-20 08h04.54 utc:26882: update_scap_cpes: No CPE dictionary found at /opt/gvm/var/lib/gvm/scap-data/official-cpe-dictionary_v2.2.xml md manage:WARNING:2021-11-20 08h05.04 utc:26896: update_scap: No SCAP db present, rebuilding SCAP db from scratch md manage: INFO:2021-11-20 08h05.04 utc:26896: update_scap: Updating data from feed md manage:WARNING:2021-11-20 08h05.04 utc:26896: update_scap_cpes: No CPE dictionary found at /opt/gvm/var/lib/gvm/scap-data/official-cpe-dictionary_v2.2.xml md manage:WARNING:2021-11-20 08h05.14 utc:26906: update_scap: No SCAP db present, rebuilding SCAP db from scratch md manage: INFO:2021-11-20 08h05.14 utc:26906: update_scap: Updating data from feed md manage:WARNING:2021-11-20 08h05.14 utc:26906: update_scap_cpes: No CPE dictionary found at /opt/gvm/var/lib/gvm/scap-data/official-cpe-dictionary_v2.2.xml md manage:WARNING:2021-11-20 08h05.24 utc:26916: update_scap: No SCAP db present, rebuilding SCAP db from scratch md manage: INFO:2021-11-20 08h05.25 utc:26916: update_scap: Updating data from feed md manage:WARNING:2021-11-20 08h05.25 utc:26916: update_scap_cpes: No CPE dictionary found at /opt/gvm/var/lib/gvm/scap-data/official-cpe-dictionary_v2.2.xml md manage:WARNING:2021-11-20 08h05.35 utc:26929: update_scap: No SCAP db present, rebuilding SCAP db from scratch md manage: INFO:2021-11-20 08h05.35 utc:26929: update_scap: Updating data from feed md manage:WARNING:2021-11-20 08h05.35 utc:26929: update_scap_cpes: No CPE dictionary found at /opt/gvm/var/lib/gvm/scap-data/official-cpe-dictionary_v2.2.xml md manage:WARNING:2021-11-20 08h05.45 utc:26940: update_scap: No SCAP db present, rebuilding SCAP db from scratch md manage: INFO:2021-11-20 08h05.45 utc:26940: update_scap: Updating data from feed md manage:WARNING:2021-11-20 08h05.45 utc:26940: update_scap_cpes: No CPE dictionary found at /opt/gvm/var/lib/gvm/scap-data/official-cpe-dictionary_v2.2.xml md manage:WARNING:2021-11-20 08h05.55 utc:26950: update_scap: No SCAP db present, rebuilding SCAP db from scratch md manage: INFO:2021-11-20 08h05.55 utc:26950: update_scap: Updating data from feed md manage:WARNING:2021-11-20 08h05.55 utc:26950: update_scap_cpes: No CPE dictionary found at /opt/gvm/var/lib/gvm/scap-data/official-cpe-dictionary_v2.2.xml md manage:WARNING:2021-11-20 08h06.05 utc:26961: update_scap: No SCAP db present, rebuilding SCAP db from scratch md manage: INFO:2021-11-20 08h06.05 utc:26961: update_scap: Updating data from feed md manage:WARNING:2021-11-20 08h06.05 utc:26961: update_scap_cpes: No CPE dictionary found at /opt/gvm/var/lib/gvm/scap-data/official-cpe-dictionary_v2.2.xml md manage:WARNING:2021-11-20 08h06.15 utc:26971: update_scap: No SCAP db present, rebuilding SCAP db from scratch md manage: INFO:2021-11-20 08h06.15 utc:26971: update_scap: Updating data from feed md manage:WARNING:2021-11-20 08h06.15 utc:26971: update_scap_cpes: No CPE dictionary found at /opt/gvm/var/lib/gvm/scap-data/official-cpe-dictionary_v2.2.xml md manage:WARNING:2021-11-20 08h06.25 utc:26982: update_scap: No SCAP db present, rebuilding SCAP db from scratch md manage: INFO:2021-11-20 08h06.25 utc:26982: update_scap: Updating data from feed md manage:WARNING:2021-11-20 08h06.25 utc:26982: update_scap_cpes: No CPE dictionary found at /opt/gvm/var/lib/gvm/scap-data/official-cpe-dictionary_v2.2.xml md manage:WARNING:2021-11-20 08h06.35 utc:26992: update_scap: No SCAP db present, rebuilding SCAP db from scratch md manage: INFO:2021-11-20 08h06.35 utc:26992: update_scap: Updating data from feed md manage:WARNING:2021-11-20 08h06.35 utc:26992: update_scap_cpes: No CPE dictionary found at /opt/gvm/var/lib/gvm/scap-data/official-cpe-dictionary_v2.2.xml md manage:WARNING:2021-11-20 08h06.45 utc:27003: update_scap: No SCAP db present, rebuilding SCAP db from scratch md manage: INFO:2021-11-20 08h06.45 utc:27003: update_scap: Updating data from feed md manage:WARNING:2021-11-20 08h06.45 utc:27003: update_scap_cpes: No CPE dictionary found at /opt/gvm/var/lib/gvm/scap-data/official-cpe-dictionary_v2.2.xml md manage:WARNING:2021-11-20 08h06.55 utc:27013: update_scap: No SCAP db present, rebuilding SCAP db from scratch md manage: INFO:2021-11-20 08h06.55 utc:27013: update_scap: Updating data from feed md manage:WARNING:2021-11-20 08h06.55 utc:27013: update_scap_cpes: No CPE dictionary found at /opt/gvm/var/lib/gvm/scap-data/official-cpe-dictionary_v2.2.xml md manage:WARNING:2021-11-20 08h07.05 utc:27025: update_scap: No SCAP db present, rebuilding SCAP db from scratch md manage: INFO:2021-11-20 08h07.05 utc:27025: update_scap: Updating data from feed md manage:WARNING:2021-11-20 08h07.05 utc:27025: update_scap_cpes: No CPE dictionary found at /opt/gvm/var/lib/gvm/scap-data/official-cpe-dictionary_v2.2.xml md manage:WARNING:2021-11-20 08h07.15 utc:27035: update_scap: No SCAP db present, rebuilding SCAP db from scratch md manage: INFO:2021-11-20 08h07.15 utc:27035: update_scap: Updating data from feed md manage:WARNING:2021-11-20 08h07.15 utc:27035: update_scap_cpes: No CPE dictionary found at /opt/gvm/var/lib/gvm/scap-data/official-cpe-dictionary_v2.2.xml md manage:WARNING:2021-11-20 08h07.25 utc:27046: update_scap: No SCAP db present, rebuilding SCAP db from scratch md manage: INFO:2021-11-20 08h07.25 utc:27046: update_scap: Updating data from feed md manage:WARNING:2021-11-20 08h07.25 utc:27046: update_scap_cpes: No CPE dictionary found at /opt/gvm/var/lib/gvm/scap-data/official-cpe-dictionary_v2.2.xml md manage:WARNING:2021-11-20 08h07.35 utc:27056: update_scap: No SCAP db present, rebuilding SCAP db from scratch md manage: INFO:2021-11-20 08h07.35 utc:27056: update_scap: Updating data from feed md manage:WARNING:2021-11-20 08h07.35 utc:27056: update_scap_cpes: No CPE dictionary found at /opt/gvm/var/lib/gvm/scap-data/official-cpe-dictionary_v2.2.xml md manage:WARNING:2021-11-20 08h07.45 utc:27067: update_scap: No SCAP db present, rebuilding SCAP db from scratch md manage: INFO:2021-11-20 08h07.45 utc:27067: update_scap: Updating data from feed md manage:WARNING:2021-11-20 08h07.45 utc:27067: update_scap_cpes: No CPE dictionary found at /opt/gvm/var/lib/gvm/scap-data/official-cpe-dictionary_v2.2.xml md manage:WARNING:2021-11-20 08h07.55 utc:27077: update_scap: No SCAP db present, rebuilding SCAP db from scratch md manage: INFO:2021-11-20 08h07.55 utc:27077: update_scap: Updating data from feed md manage:WARNING:2021-11-20 08h07.55 utc:27077: update_scap_cpes: No CPE dictionary found at /opt/gvm/var/lib/gvm/scap-data/official-cpe-dictionary_v2.2.xml md manage:WARNING:2021-11-20 08h08.05 utc:27102: update_scap: No SCAP db present, rebuilding SCAP db from scratch md manage: INFO:2021-11-20 08h08.05 utc:27102: update_scap: Updating data from feed md manage:WARNING:2021-11-20 08h08.05 utc:27102: update_scap_cpes: No CPE dictionary found at /opt/gvm/var/lib/gvm/scap-data/official-cpe-dictionary_v2.2.xml md manage:WARNING:2021-11-20 08h29.39 utc:27497: update_scap: No SCAP db present, rebuilding SCAP db from scratch md manage: INFO:2021-11-20 08h29.39 utc:27497: update_scap: Updating data from feed md manage: INFO:2021-11-20 08h29.39 utc:27497: Updating CPEs md manage: INFO:2021-11-20 08h31.08 UTC:27497: Updating /opt/gvm/var/lib/gvm/scap-data/nvdcve-2.0-2010.xml md manage: INFO:2021-11-20 08h31.16 UTC:27497: Updating /opt/gvm/var/lib/gvm/scap-data/nvdcve-2.0-2003.xml md manage: INFO:2021-11-20 08h31.18 UTC:27497: Updating /opt/gvm/var/lib/gvm/scap-data/nvdcve-2.0-2005.xml md manage: INFO:2021-11-20 08h31.23 UTC:27497: Updating /opt/gvm/var/lib/gvm/scap-data/nvdcve-2.0-2009.xml md manage: INFO:2021-11-20 08h31.34 UTC:27497: Updating /opt/gvm/var/lib/gvm/scap-data/nvdcve-2.0-2008.xml md manage: INFO:2021-11-20 08h31.43 UTC:27497: Updating /opt/gvm/var/lib/gvm/scap-data/nvdcve-2.0-2019.xml md manage: INFO:2021-11-20 08h32.17 UTC:27497: Updating /opt/gvm/var/lib/gvm/scap-data/nvdcve-2.0-2020.xml md manage: INFO:2021-11-20 08h32.42 UTC:27497: Updating /opt/gvm/var/lib/gvm/scap-data/nvdcve-2.0-2006.xml md manage: INFO:2021-11-20 08h32.50 UTC:27497: Updating /opt/gvm/var/lib/gvm/scap-data/nvdcve-2.0-2011.xml md manage: INFO:2021-11-20 08h32.58 UTC:27497: Updating /opt/gvm/var/lib/gvm/scap-data/nvdcve-2.0-2004.xml md manage: INFO:2021-11-20 08h33.01 UTC:27497: Updating /opt/gvm/var/lib/gvm/scap-data/nvdcve-2.0-2013.xml md manage: INFO:2021-11-20 08h33.09 UTC:27497: Updating /opt/gvm/var/lib/gvm/scap-data/nvdcve-2.0-2007.xml md manage: INFO:2021-11-20 08h33.16 UTC:27497: Updating /opt/gvm/var/lib/gvm/scap-data/nvdcve-2.0-2018.xml md manage: INFO:2021-11-20 08h33.45 UTC:27497: Updating /opt/gvm/var/lib/gvm/scap-data/nvdcve-2.0-2017.xml md manage: INFO:2021-11-20 08h34.01 UTC:27497: Updating /opt/gvm/var/lib/gvm/scap-data/nvdcve-2.0-2014.xml md manage: INFO:2021-11-20 08h34.09 UTC:27497: Updating /opt/gvm/var/lib/gvm/scap-data/nvdcve-2.0-2015.xml md manage: INFO:2021-11-20 08h34.17 UTC:27497: Updating /opt/gvm/var/lib/gvm/scap-data/nvdcve-2.0-2021.xml md manage: INFO:2021-11-20 08h34.40 UTC:27497: Updating /opt/gvm/var/lib/gvm/scap-data/nvdcve-2.0-2002.xml md manage: INFO:2021-11-20 08h34.46 UTC:27497: Updating /opt/gvm/var/lib/gvm/scap-data/nvdcve-2.0-2016.xml md manage: INFO:2021-11-20 08h34.56 UTC:27497: Updating /opt/gvm/var/lib/gvm/scap-data/nvdcve-2.0-2012.xml md manage: INFO:2021-11-20 08h35.04 UTC:27497: Updating OVAL data md manage: INFO:2021-11-20 08h35.06 UTC:27497: Updating /opt/gvm/var/lib/gvm/scap-data/oval/5.10/org.mitre.oval/c/oval.xml md manage: INFO:2021-11-20 08h35.06 UTC:27497: Updating /opt/gvm/var/lib/gvm/scap-data/oval/5.10/org.mitre.oval/m/oval.xml md manage: INFO:2021-11-20 08h35.06 UTC:27497: Updating /opt/gvm/var/lib/gvm/scap-data/oval/5.10/org.mitre.oval/v/family/ios.xml md manage: INFO:2021-11-20 08h35.06 UTC:27497: Updating /opt/gvm/var/lib/gvm/scap-data/oval/5.10/org.mitre.oval/v/family/pixos.xml md manage: INFO:2021-11-20 08h35.06 UTC:27497: Updating /opt/gvm/var/lib/gvm/scap-data/oval/5.10/org.mitre.oval/p/oval.xml md manage: INFO:2021-11-20 08h36.12 UTC:27497: Updating /opt/gvm/var/lib/gvm/scap-data/oval/5.10/org.mitre.oval/i/oval.xml md manage: INFO:2021-11-20 08h36.14 UTC:27497: Updating /opt/gvm/var/lib/gvm/scap-data/oval/5.10/org.mitre.oval/v/family/macos.xml md manage: INFO:2021-11-20 08h36.14 UTC:27497: Updating /opt/gvm/var/lib/gvm/scap-data/oval/5.10/org.mitre.oval/v/family/unix.xml md manage: INFO:2021-11-20 08h36.18 UTC:27497: Updating /opt/gvm/var/lib/gvm/scap-data/oval/5.10/org.mitre.oval/v/family/windows.xml md manage: INFO:2021-11-20 08h36.24 UTC:27497: Updating user OVAL definitions. md manage: INFO:2021-11-20 08h36.24 UTC:27497: Updating CVSS scores and CVE counts for CPEs md manage: INFO:2021-11-20 08h37.30 UTC:27497: Updating CVSS scores for OVAL definitions md manage: INFO:2021-11-20 08h37.31 UTC:27497: Updating placeholder CPEs md manage: INFO:2021-11-20 08h37.40 UTC:27497: Updating Max CVSS for DFN-CERT md manage: INFO:2021-11-20 08h37.40 UTC:27497: Updating DFN-CERT CVSS max succeeded. md manage: INFO:2021-11-20 08h37.40 UTC:27497: Updating Max CVSS for CERT-Bund md manage: INFO:2021-11-20 08h37.40 UTC:27497: Updating CERT-Bund CVSS max succeeded. md manage: INFO:2021-11-20 08h37.42 UTC:27497: update_scap_end: Updating SCAP info succeeded event config:MESSAGE:2021-11-20 08h37.51 UTC:27682: Scan config Discovery (8715c877-47a0-438d-98a3-27c7a6ab2196) has been created by gvmadmin event config:MESSAGE:2021-11-20 08h37.51 UTC:27682: Scan config Host Discovery (2d3f051c-55ba-11e3-bf43-406186ea4fc5) has been created by gvmadmin event config:MESSAGE:2021-11-20 08h37.51 UTC:27682: Scan config System Discovery (bbca7412-a950-11e3-9109-406186ea4fc5) has been created by gvmadmin event config:MESSAGE:2021-11-20 08h37.51 UTC:27682: Scan config Base (d21f6c81-2b88-4ac1-b7b4-a2a9f2ad4663) has been created by gvmadmin event config:MESSAGE:2021-11-20 08h37.51 UTC:27682: Scan config GaussDB 100 V300R001C00 Security Hardening Guide (Standalone) (61327f09-8a54-4854-9e1c-16798285fb28) has been created by gvmadmin event config:MESSAGE:2021-11-20 08h37.52 UTC:27682: Scan config GaussDB Kernel V500R001C00 Security Hardening Guide (2eec8313-fee4-442a-b3c4-fa0d5dc83d61) has been created by gvmadmin event config:MESSAGE:2021-11-20 08h37.53 UTC:27682: Scan config IT-Grundschutz Kompendium (c4b7c0cb-6502-4809-b034-8e635311b3e6) has been created by gvmadmin event config:MESSAGE:2021-11-20 08h37.53 UTC:27682: Scan config openGauss Security Hardening Guide (c2b049f9-6d3d-45be-871f-2252895ed9e8) has been created by gvmadmin event config:MESSAGE:2021-11-20 08h37.53 UTC:27682: Scan config empty (085569ce-73ed-11df-83c3-002264764cea) has been created by gvmadmin event config:MESSAGE:2021-11-20 08h37.53 UTC:27682: Scan config Full and fast (daba56c8-73ec-11df-a475-002264764cea) has been created by gvmadmin event config:MESSAGE:2021-11-20 08h37.53 UTC:27682: Scan config Huawei Datacom Product Security Configuration Audit Guide (aab5c4a1-eab1-4f4e-acac-8c36d08de6bc) has been created by gvmadmin event config:MESSAGE:2021-11-20 08h37.54 UTC:27682: Scan config EulerOS Linux Security Configuration (9f822ad3-9208-4e02-ac03-78dce3ca9a23) has been created by gvmadmin event port_list:MESSAGE:2021-11-20 08h37.54 UTC:27682: Port list All IANA assigned TCP (33d0cd82-57c6-11e1-8ed1-406186ea4fc5) has been created by gvmadmin event port_list:MESSAGE:2021-11-20 08h37.55 UTC:27682: Port list All IANA assigned TCP and UDP (4a4717fe-57d2-11e1-9a26-406186ea4fc5) has been created by gvmadmin event port_list:MESSAGE:2021-11-20 08h37.55 UTC:27682: Port list All TCP and Nmap top 100 UDP (730ef368-57e2-11e1-a90f-406186ea4fc5) has been created by gvmadmin event report_format:MESSAGE:2021-11-20 08h37.55 UTC:27682: Report format XML (a994b278-1f62-11e1-96ac-406186ea4fc5) has been created by gvmadmin event report_format:MESSAGE:2021-11-20 08h37.55 UTC:27682: Report format TXT (a3810a62-1f62-11e1-9219-406186ea4fc5) has been created by gvmadmin event report_format:MESSAGE:2021-11-20 08h37.55 UTC:27682: Report format Anonymous XML (5057e5cc-b825-11e4-9d0e-28d24461215b) has been created by gvmadmin event report_format:MESSAGE:2021-11-20 08h37.55 UTC:27682: Report format CSV Results (c1645568-627a-11e3-a660-406186ea4fc5) has been created by gvmadmin event report_format:MESSAGE:2021-11-20 08h37.55 UTC:27682: Report format PDF (c402cc3e-b531-11e1-9163-406186ea4fc5) has been created by gvmadmin event report_format:MESSAGE:2021-11-20 08h37.55 UTC:27682: Report format ITG (77bd6c4a-1f62-11e1-abf0-406186ea4fc5) has been created by gvmadmin md gmp:WARNING:2021-11-20 08h51.48 utc:28328: Authentication failure for'gvmadmin' from unix_socket md manage: INFO:2021-11-20 08h56.02 UTC:31012: sync_cert: Updating data from feed md manage: INFO:2021-11-20 08h56.02 UTC:31012: update_dfn_xml: dfn-cert-2010.xml md manage: INFO:2021-11-20 08h56.02 UTC:31012: Updating /opt/gvm/var/lib/gvm/cert-data/dfn-cert-2010.xml md manage: INFO:2021-11-20 08h56.04 UTC:31012: update_dfn_xml: dfn-cert-2020.xml md manage: INFO:2021-11-20 08h56.04 UTC:31012: Updating /opt/gvm/var/lib/gvm/cert-data/dfn-cert-2020.xml md manage: INFO:2021-11-20 08h56.07 UTC:31012: update_dfn_xml: dfn-cert-2021.xml md manage: INFO:2021-11-20 08h56.07 UTC:31012: Updating /opt/gvm/var/lib/gvm/cert-data/dfn-cert-2021.xml md manage: INFO:2021-11-20 08h56.10 UTC:31012: update_dfn_xml: dfn-cert-2013.xml md manage: INFO:2021-11-20 08h56.10 UTC:31012: Updating /opt/gvm/var/lib/gvm/cert-data/dfn-cert-2013.xml md manage: INFO:2021-11-20 08h56.12 UTC:31012: update_dfn_xml: dfn-cert-2012.xml md manage: INFO:2021-11-20 08h56.12 UTC:31012: Updating /opt/gvm/var/lib/gvm/cert-data/dfn-cert-2012.xml md manage: INFO:2021-11-20 08h56.14 UTC:31012: update_dfn_xml: dfn-cert-2019.xml md manage: INFO:2021-11-20 08h56.14 UTC:31012: Updating /opt/gvm/var/lib/gvm/cert-data/dfn-cert-2019.xml md manage: INFO:2021-11-20 08h56.18 UTC:31012: update_dfn_xml: dfn-cert-2014.xml md manage: INFO:2021-11-20 08h56.18 UTC:31012: Updating /opt/gvm/var/lib/gvm/cert-data/dfn-cert-2014.xml md manage: INFO:2021-11-20 08h56.19 UTC:31012: update_dfn_xml: dfn-cert-2018.xml md manage: INFO:2021-11-20 08h56.19 UTC:31012: Updating /opt/gvm/var/lib/gvm/cert-data/dfn-cert-2018.xml md manage:INFO:2021-11-20 08h56.22 UTC:31012: update_dfn_xml: dfn-cert-2016.xml md manage: INFO:2021-11-20 08h56.22 UTC:31012: Updating /opt/gvm/var/lib/gvm/cert-data/dfn-cert-2016.xml md manage: INFO:2021-11-20 08h56.25 UTC:31012: update_dfn_xml: dfn-cert-2017.xml md manage: INFO:2021-11-20 08h56.25 UTC:31012: Updating /opt/gvm/var/lib/gvm/cert-data/dfn-cert-2017.xml md manage: INFO:2021-11-20 08h56.28 UTC:31012: update_dfn_xml: dfn-cert-2015.xml md manage: INFO:2021-11-20 08h56.28 UTC:31012: Updating /opt/gvm/var/lib/gvm/cert-data/dfn-cert-2015.xml md manage: INFO:2021-11-20 08h56.30 UTC:31012: update_dfn_xml: dfn-cert-2008.xml md manage: INFO:2021-11-20 08h56.30 UTC:31012: Updating /opt/gvm/var/lib/gvm/cert-data/dfn-cert-2008.xml md manage: INFO:2021-11-20 08h56.30 UTC:31012: update_dfn_xml: dfn-cert-2009.xml md manage: INFO:2021-11-20 08h56.30 UTC:31012: Updating /opt/gvm/var/lib/gvm/cert-data/dfn-cert-2009.xml md manage: INFO:2021-11-20 08h56.31 UTC:31012: update_dfn_xml: dfn-cert-2011.xml md manage: INFO:2021-11-20 08h56.31 UTC:31012: Updating /opt/gvm/var/lib/gvm/cert-data/dfn-cert-2011.xml md manage: INFO:2021-11-20 08h56.33 UTC:31012: Updating /opt/gvm/var/lib/gvm/cert-data/CB-K20.xml md manage: INFO:2021-11-20 08h56.34 UTC:31012: Updating /opt/gvm/var/lib/gvm/cert-data/CB-K19.xml md manage: INFO:2021-11-20 08h56.36 UTC:31012: Updating /opt/gvm/var/lib/gvm/cert-data/CB-K17.xml md manage: INFO:2021-11-20 08h56.39 UTC:31012: Updating /opt/gvm/var/lib/gvm/cert-data/CB-K18.xml md manage: INFO:2021-11-20 08h56.41 UTC:31012: Updating /opt/gvm/var/lib/gvm/cert-data/CB-K16.xml md manage: INFO:2021-11-20 08h56.43 UTC:31012: Updating /opt/gvm/var/lib/gvm/cert-data/CB-K14.xml md manage: INFO:2021-11-20 08h56.45 UTC:31012: Updating /opt/gvm/var/lib/gvm/cert-data/CB-K15.xml md manage: INFO:2021-11-20 08h56.47 UTC:31012: Updating /opt/gvm/var/lib/gvm/cert-data/CB-K21.xml md manage: INFO:2021-11-20 08h56.48 UTC:31012: Updating /opt/gvm/var/lib/gvm/cert-data/CB-K13.xml md manage: INFO:2021-11-20 08h56.49 UTC:31012: Updating Max CVSS for DFN-CERT md manage: INFO:2021-11-20 08h56.51 UTC:31012: Updating DFN-CERT CVSS max succeeded. md manage: INFO:2021-11-20 08h56.51 UTC:31012: Updating Max CVSS for CERT-Bund md manage: INFO:2021-11-20 08h56.52 UTC:31012: Updating CERT-Bund CVSS max succeeded. md manage: INFO:2021-11-20 08h56.52 UTC:31012: sync_cert: Updating CERT info succeeded. event target:MESSAGE:2021-11-20 08h59.35 UTC:32640: Target 127.0.0.1 (380b08da-2e51-46e9-8ef9-2459c6b08fae) has been created by gvmadmin event task:MESSAGE:2021-11-20 08h59.38 UTC:32650: Status of task (bf44b9ca-76e3-4c36-9be4-3b3bae0b9b11) has changed to New event task:MESSAGE:2021-11-20 08h59.38 UTC:32650: Task Unnamed (bf44b9ca-76e3-4c36-9be4-3b3bae0b9b11) has been created by gvmadmin event task:MESSAGE:2021-11-20 08h59.42 UTC:32684: Status of task Unnamed (bf44b9ca-76e3-4c36-9be4-3b3bae0b9b11) has changed to Requested event task:MESSAGE:2021-11-20 08h59.42 UTC:32684: Task Unnamed (bf44b9ca-76e3-4c36-9be4-3b3bae0b9b11) has been requested to start by gvmadmin md manage:WARNING:2021-11-20 08h59.42 UTC:32690: OSP start_scan 9639cb94-d805-4ab5-a8df-37da705feecf: VTs list is empty event task:MESSAGE:2021-11-20 08h59.42 UTC:32690: Status of task Unnamed (bf44b9ca-76e3-4c36-9be4-3b3bae0b9b11) has changed to Done event task:MESSAGE:2021-11-20 08h59.42 UTC:32690: Status of task Unnamed (bf44b9ca-76e3-4c36-9be4-3b3bae0b9b11) has changed to Interrupted

Execute gvmd --rebuild

Failed to rebuild NVT cache.

gvm@ubuntu:/root$ tail -n 200 /opt/gvm/var/log/gvm/gvmd.log md manage:WARNING:2021-11-20 08h03.44 utc:26809: update_scap: No SCAP db present, rebuilding SCAP db from scratch md manage: INFO:2021-11-20 08h03.44 utc:26809: update_scap: Updating data from feed md manage:WARNING:2021-11-20 08h03.44 utc:26809: update_scap_cpes: No CPE dictionary found at /opt/gvm/var/lib/gvm/scap-data/official-cpe-dictionary_v2.2.xml md manage:WARNING:2021-11-20 08h03.54 utc:26819: update_scap: No SCAP db present, rebuilding SCAP db from scratch md manage: INFO:2021-11-20 08h03.54 utc:26819: update_scap: Updating data from feed md manage:WARNING:2021-11-20 08h03.54 utc:26819: update_scap_cpes: No CPE dictionary found at /opt/gvm/var/lib/gvm/scap-data/official-cpe-dictionary_v2.2.xml md manage:WARNING:2021-11-20 08h04.04 utc:26829: update_scap: No SCAP db present, rebuilding SCAP db from scratch md manage: INFO:2021-11-20 08h04.04 utc:26829: update_scap: Updating data from feed md manage:WARNING:2021-11-20 08h04.04 utc:26829: update_scap_cpes: No CPE dictionary found at /opt/gvm/var/lib/gvm/scap-data/official-cpe-dictionary_v2.2.xml md manage:WARNING:2021-11-20 08h04.14 utc:26840: update_scap: No SCAP db present, rebuilding SCAP db from scratch md manage: INFO:2021-11-20 08h04.14 utc:26840: update_scap: Updating data from feed md manage:WARNING:2021-11-20 08h04.14 utc:26840: update_scap_cpes: No CPE dictionary found at /opt/gvm/var/lib/gvm/scap-data/official-cpe-dictionary_v2.2.xml md manage:WARNING:2021-11-20 08h04.24 utc:26850: update_scap: No SCAP db present, rebuilding SCAP db from scratch md manage: INFO:2021-11-20 08h04.24 utc:26850: update_scap: Updating data from feed md manage:WARNING:2021-11-20 08h04.24 utc:26850: update_scap_cpes: No CPE dictionary found at /opt/gvm/var/lib/gvm/scap-data/official-cpe-dictionary_v2.2.xml md manage:WARNING:2021-11-20 08h04.34 utc:26862: update_scap: No SCAP db present, rebuilding SCAP db from scratch md manage: INFO:2021-11-20 08h04.34 utc:26862: update_scap: Updating data from feed md manage:WARNING:2021-11-20 08h04.34 utc:26862: update_scap_cpes: No CPE dictionary found at /opt/gvm/var/lib/gvm/scap-data/official-cpe-dictionary_v2.2.xml md manage:WARNING:2021-11-20 08h04.44 utc:26871: update_scap: No SCAP db present, rebuilding SCAP db from scratch md manage: INFO:2021-11-20 08h04.44 utc:26871: update_scap: Updating data from feed md manage:WARNING:2021-11-20 08h04.44 utc:26871: update_scap_cpes: No CPE dictionary found at /opt/gvm/var/lib/gvm/scap-data/official-cpe-dictionary_v2.2.xml md manage:WARNING:2021-11-20 08h04.54 utc:26882: update_scap: No SCAP db present, rebuilding SCAP db from scratch md manage: INFO:2021-11-20 08h04.54 utc:26882: update_scap: Updating data from feed md manage:WARNING:2021-11-20 08h04.54 utc:26882: update_scap_cpes: No CPE dictionary found at /opt/gvm/var/lib/gvm/scap-data/official-cpe-dictionary_v2.2.xml md manage:WARNING:2021-11-20 08h05.04 utc:26896: update_scap: No SCAP db present, rebuilding SCAP db from scratch md manage: INFO:2021-11-20 08h05.04 utc:26896: update_scap: Updating data from feed md manage:WARNING:2021-11-20 08h05.04 utc:26896: update_scap_cpes: No CPE dictionary found at /opt/gvm/var/lib/gvm/scap-data/official-cpe-dictionary_v2.2.xml md manage:WARNING:2021-11-20 08h05.14 utc:26906: update_scap: No SCAP db present, rebuilding SCAP db from scratch md manage: INFO:2021-11-20 08h05.14 utc:26906: update_scap: Updating data from feed md manage:WARNING:2021-11-20 08h05.14 utc:26906: update_scap_cpes: No CPE dictionary found at /opt/gvm/var/lib/gvm/scap-data/official-cpe-dictionary_v2.2.xml md manage:WARNING:2021-11-20 08h05.24 utc:26916: update_scap: No SCAP db present, rebuilding SCAP db from scratch md manage: INFO:2021-11-20 08h05.25 utc:26916: update_scap: Updating data from feed md manage:WARNING:2021-11-20 08h05.25 utc:26916: update_scap_cpes: No CPE dictionary found at /opt/gvm/var/lib/gvm/scap-data/official-cpe-dictionary_v2.2.xml md manage:WARNING:2021-11-20 08h05.35 utc:26929: update_scap: No SCAP db present, rebuilding SCAP db from scratch md manage: INFO:2021-11-20 08h05.35 utc:26929: update_scap: Updating data from feed md manage:WARNING:2021-11-20 08h05.35 utc:26929: update_scap_cpes: No CPE dictionary found at /opt/gvm/var/lib/gvm/scap-data/official-cpe-dictionary_v2.2.xml md manage:WARNING:2021-11-20 08h05.45 utc:26940: update_scap: No SCAP db present, rebuilding SCAP db from scratch md manage: INFO:2021-11-20 08h05.45 utc:26940: update_scap: Updating data from feed md manage:WARNING:2021-11-20 08h05.45 utc:26940: update_scap_cpes: No CPE dictionary found at /opt/gvm/var/lib/gvm/scap-data/official-cpe-dictionary_v2.2.xml md manage:WARNING:2021-11-20 08h05.55 utc:26950: update_scap: No SCAP db present, rebuilding SCAP db from scratch md manage: INFO:2021-11-20 08h05.55 utc:26950: update_scap: Updating data from feed md manage:WARNING:2021-11-20 08h05.55 utc:26950: update_scap_cpes: No CPE dictionary found at /opt/gvm/var/lib/gvm/scap-data/official-cpe-dictionary_v2.2.xml md manage:WARNING:2021-11-20 08h06.05 utc:26961: update_scap: No SCAP db present, rebuilding SCAP db from scratch md manage: INFO:2021-11-20 08h06.05 utc:26961: update_scap: Updating data from feed md manage:WARNING:2021-11-20 08h06.05 utc:26961: update_scap_cpes: No CPE dictionary found at /opt/gvm/var/lib/gvm/scap-data/official-cpe-dictionary_v2.2.xml md manage:WARNING:2021-11-20 08h06.15 utc:26971: update_scap: No SCAP db present, rebuilding SCAP db from scratch md manage: INFO:2021-11-20 08h06.15 utc:26971: update_scap: Updating data from feed md manage:WARNING:2021-11-20 08h06.15 utc:26971: update_scap_cpes: No CPE dictionary found at /opt/gvm/var/lib/gvm/scap-data/official-cpe-dictionary_v2.2.xml md manage:WARNING:2021-11-20 08h06.25 utc:26982: update_scap: No SCAP db present, rebuilding SCAP db from scratch md manage: INFO:2021-11-20 08h06.25 utc:26982: update_scap: Updating data from feed md manage:WARNING:2021-11-20 08h06.25 utc:26982: update_scap_cpes: No CPE dictionary found at /opt/gvm/var/lib/gvm/scap-data/official-cpe-dictionary_v2.2.xml md manage:WARNING:2021-11-20 08h06.35 utc:26992: update_scap: No SCAP db present, rebuilding SCAP db from scratch md manage: INFO:2021-11-20 08h06.35 utc:26992: update_scap: Updating data from feed md manage:WARNING:2021-11-20 08h06.35 utc:26992: update_scap_cpes: No CPE dictionary found at /opt/gvm/var/lib/gvm/scap-data/official-cpe-dictionary_v2.2.xml md manage:WARNING:2021-11-20 08h06.45 utc:27003: update_scap: No SCAP db present, rebuilding SCAP db from scratch md manage: INFO:2021-11-20 08h06.45 utc:27003: update_scap: Updating data from feed md manage:WARNING:2021-11-20 08h06.45 utc:27003: update_scap_cpes: No CPE dictionary found at /opt/gvm/var/lib/gvm/scap-data/official-cpe-dictionary_v2.2.xml md manage:WARNING:2021-11-20 08h06.55 utc:27013: update_scap: No SCAP db present, rebuilding SCAP db from scratch md manage: INFO:2021-11-20 08h06.55 utc:27013: update_scap: Updating data from feed md manage:WARNING:2021-11-20 08h06.55 utc:27013: update_scap_cpes: No CPE dictionary found at /opt/gvm/var/lib/gvm/scap-data/official-cpe-dictionary_v2.2.xml md manage:WARNING:2021-11-20 08h07.05 utc:27025: update_scap: No SCAP db present, rebuilding SCAP db from scratch md manage: INFO:2021-11-20 08h07.05 utc:27025: update_scap: Updating data from feed md manage:WARNING:2021-11-20 08h07.05 utc:27025: update_scap_cpes: No CPE dictionary found at /opt/gvm/var/lib/gvm/scap-data/official-cpe-dictionary_v2.2.xml md manage:WARNING:2021-11-20 08h07.15 utc:27035: update_scap: No SCAP db present, rebuilding SCAP db from scratch md manage: INFO:2021-11-20 08h07.15 utc:27035: update_scap: Updating data from feed md manage:WARNING:2021-11-20 08h07.15 utc:27035: update_scap_cpes: No CPE dictionary found at /opt/gvm/var/lib/gvm/scap-data/official-cpe-dictionary_v2.2.xml md manage:WARNING:2021-11-20 08h07.25 utc:27046: update_scap: No SCAP db present, rebuilding SCAP db from scratch md manage: INFO:2021-11-20 08h07.25 utc:27046: update_scap: Updating data from feed md manage:WARNING:2021-11-20 08h07.25 utc:27046: update_scap_cpes: No CPE dictionary found at /opt/gvm/var/lib/gvm/scap-data/official-cpe-dictionary_v2.2.xml md manage:WARNING:2021-11-20 08h07.35 utc:27056: update_scap: No SCAP db present, rebuilding SCAP db from scratch md manage: INFO:2021-11-20 08h07.35 utc:27056: update_scap: Updating data from feed md manage:WARNING:2021-11-20 08h07.35 utc:27056: update_scap_cpes: No CPE dictionary found at /opt/gvm/var/lib/gvm/scap-data/official-cpe-dictionary_v2.2.xml md manage:WARNING:2021-11-20 08h07.45 utc:27067: update_scap: No SCAP db present, rebuilding SCAP db from scratch md manage: INFO:2021-11-20 08h07.45 utc:27067: update_scap: Updating data from feed md manage:WARNING:2021-11-20 08h07.45 utc:27067: update_scap_cpes: No CPE dictionary found at /opt/gvm/var/lib/gvm/scap-data/official-cpe-dictionary_v2.2.xml md manage:WARNING:2021-11-20 08h07.55 utc:27077: update_scap: No SCAP db present, rebuilding SCAP db from scratch md manage: INFO:2021-11-20 08h07.55 utc:27077: update_scap: Updating data from feed md manage:WARNING:2021-11-20 08h07.55 utc:27077: update_scap_cpes: No CPE dictionary found at /opt/gvm/var/lib/gvm/scap-data/official-cpe-dictionary_v2.2.xml md manage:WARNING:2021-11-20 08h08.05 utc:27102: update_scap: No SCAP db present, rebuilding SCAP db from scratch md manage: INFO:2021-11-20 08h08.05 utc:27102: update_scap: Updating data from feed md manage:WARNING:2021-11-20 08h08.05 utc:27102: update_scap_cpes: No CPE dictionary found at /opt/gvm/var/lib/gvm/scap-data/official-cpe-dictionary_v2.2.xml md manage:WARNING:2021-11-20 08h29.39 utc:27497: update_scap: No SCAP db present, rebuilding SCAP db from scratch md manage: INFO:2021-11-20 08h29.39 utc:27497: update_scap: Updating data from feed md manage: INFO:2021-11-20 08h29.39 utc:27497: Updating CPEs md manage: INFO:2021-11-20 08h31.08 UTC:27497: Updating /opt/gvm/var/lib/gvm/scap-data/nvdcve-2.0-2010.xml md manage: INFO:2021-11-20 08h31.16 UTC:27497: Updating /opt/gvm/var/lib/gvm/scap-data/nvdcve-2.0-2003.xml md manage: INFO:2021-11-20 08h31.18 UTC:27497: Updating /opt/gvm/var/lib/gvm/scap-data/nvdcve-2.0-2005.xml md manage: INFO:2021-11-20 08h31.23 UTC:27497: Updating /opt/gvm/var/lib/gvm/scap-data/nvdcve-2.0-2009.xml md manage: INFO:2021-11-20 08h31.34 UTC:27497: Updating /opt/gvm/var/lib/gvm/scap-data/nvdcve-2.0-2008.xml md manage: INFO:2021-11-20 08h31.43 UTC:27497: Updating /opt/gvm/var/lib/gvm/scap-data/nvdcve-2.0-2019.xml md manage: INFO:2021-11-20 08h32.17 UTC:27497: Updating /opt/gvm/var/lib/gvm/scap-data/nvdcve-2.0-2020.xml md manage: INFO:2021-11-20 08h32.42 UTC:27497: Updating /opt/gvm/var/lib/gvm/scap-data/nvdcve-2.0-2006.xml md manage: INFO:2021-11-20 08h32.50 UTC:27497: Updating /opt/gvm/var/lib/gvm/scap-data/nvdcve-2.0-2011.xml md manage: INFO:2021-11-20 08h32.58 UTC:27497: Updating /opt/gvm/var/lib/gvm/scap-data/nvdcve-2.0-2004.xml md manage: INFO:2021-11-20 08h33.01 UTC:27497: Updating /opt/gvm/var/lib/gvm/scap-data/nvdcve-2.0-2013.xml md manage: INFO:2021-11-20 08h33.09 UTC:27497: Updating /opt/gvm/var/lib/gvm/scap-data/nvdcve-2.0-2007.xml md manage: INFO:2021-11-20 08h33.16 UTC:27497: Updating /opt/gvm/var/lib/gvm/scap-data/nvdcve-2.0-2018.xml md manage: INFO:2021-11-20 08h33.45 UTC:27497: Updating /opt/gvm/var/lib/gvm/scap-data/nvdcve-2.0-2017.xml md manage: INFO:2021-11-20 08h34.01 UTC:27497: Updating /opt/gvm/var/lib/gvm/scap-data/nvdcve-2.0-2014.xml md manage: INFO:2021-11-20 08h34.09 UTC:27497: Updating /opt/gvm/var/lib/gvm/scap-data/nvdcve-2.0-2015.xml md manage: INFO:2021-11-20 08h34.17 UTC:27497: Updating /opt/gvm/var/lib/gvm/scap-data/nvdcve-2.0-2021.xml md manage: INFO:2021-11-20 08h34.40 UTC:27497: Updating /opt/gvm/var/lib/gvm/scap-data/nvdcve-2.0-2002.xml md manage: INFO:2021-11-20 08h34.46 UTC:27497: Updating /opt/gvm/var/lib/gvm/scap-data/nvdcve-2.0-2016.xml md manage: INFO:2021-11-20 08h34.56 UTC:27497: Updating /opt/gvm/var/lib/gvm/scap-data/nvdcve-2.0-2012.xml md manage: INFO:2021-11-20 08h35.04 UTC:27497: Updating OVAL data md manage: INFO:2021-11-20 08h35.06 UTC:27497: Updating /opt/gvm/var/lib/gvm/scap-data/oval/5.10/org.mitre.oval/c/oval.xml md manage: INFO:2021-11-20 08h35.06 UTC:27497: Updating /opt/gvm/var/lib/gvm/scap-data/oval/5.10/org.mitre.oval/m/oval.xml md manage: INFO:2021-11-20 08h35.06 UTC:27497: Updating /opt/gvm/var/lib/gvm/scap-data/oval/5.10/org.mitre.oval/v/family/ios.xml md manage: INFO:2021-11-20 08h35.06 UTC:27497: Updating /opt/gvm/var/lib/gvm/scap-data/oval/5.10/org.mitre.oval/v/family/pixos.xml md manage: INFO:2021-11-20 08h35.06 UTC:27497: Updating /opt/gvm/var/lib/gvm/scap-data/oval/5.10/org.mitre.oval/p/oval.xml md manage: INFO:2021-11-20 08h36.12 UTC:27497: Updating /opt/gvm/var/lib/gvm/scap-data/oval/5.10/org.mitre.oval/i/oval.xml md manage: INFO:2021-11-20 08h36.14 UTC:27497: Updating /opt/gvm/var/lib/gvm/scap-data/oval/5.10/org.mitre.oval/v/family/macos.xml md manage: INFO:2021-11-20 08h36.14 UTC:27497: Updating /opt/gvm/var/lib/gvm/scap-data/oval/5.10/org.mitre.oval/v/family/unix.xml md manage: INFO:2021-11-20 08h36.18 UTC:27497: Updating /opt/gvm/var/lib/gvm/scap-data/oval/5.10/org.mitre.oval/v/family/windows.xml md manage: INFO:2021-11-20 08h36.24 UTC:27497: Updating user OVAL definitions. md manage: INFO:2021-11-20 08h36.24 UTC:27497: Updating CVSS scores and CVE counts for CPEs md manage: INFO:2021-11-20 08h37.30 UTC:27497: Updating CVSS scores for OVAL definitions md manage: INFO:2021-11-20 08h37.31 UTC:27497: Updating placeholder CPEs md manage: INFO:2021-11-20 08h37.40 UTC:27497: Updating Max CVSS for DFN-CERT md manage: INFO:2021-11-20 08h37.40 UTC:27497: Updating DFN-CERT CVSS max succeeded. md manage: INFO:2021-11-20 08h37.40 UTC:27497: Updating Max CVSS for CERT-Bund md manage: INFO:2021-11-20 08h37.40 UTC:27497: Updating CERT-Bund CVSS max succeeded. md manage: INFO:2021-11-20 08h37.42 UTC:27497: update_scap_end: Updating SCAP info succeeded event config:MESSAGE:2021-11-20 08h37.51 UTC:27682: Scan config Discovery (8715c877-47a0-438d-98a3-27c7a6ab2196) has been created by gvmadmin event config:MESSAGE:2021-11-20 08h37.51 UTC:27682: Scan config Host Discovery (2d3f051c-55ba-11e3-bf43-406186ea4fc5) has been created by gvmadmin event config:MESSAGE:2021-11-20 08h37.51 UTC:27682: Scan config System Discovery (bbca7412-a950-11e3-9109-406186ea4fc5) has been created by gvmadmin event config:MESSAGE:2021-11-20 08h37.51 UTC:27682: Scan config Base (d21f6c81-2b88-4ac1-b7b4-a2a9f2ad4663) has been created by gvmadmin event config:MESSAGE:2021-11-20 08h37.51 UTC:27682: Scan config GaussDB 100 V300R001C00 Security Hardening Guide (Standalone) (61327f09-8a54-4854-9e1c-16798285fb28) has been created by gvmadmin event config:MESSAGE:2021-11-20 08h37.52 UTC:27682: Scan config GaussDB Kernel V500R001C00 Security Hardening Guide (2eec8313-fee4-442a-b3c4-fa0d5dc83d61) has been created by gvmadmin event config:MESSAGE:2021-11-20 08h37.53 UTC:27682: Scan config IT-Grundschutz Kompendium (c4b7c0cb-6502-4809-b034-8e635311b3e6) has been created by gvmadmin event config:MESSAGE:2021-11-20 08h37.53 UTC:27682: Scan config openGauss Security Hardening Guide (c2b049f9-6d3d-45be-871f-2252895ed9e8) has been created by gvmadmin event config:MESSAGE:2021-11-20 08h37.53 UTC:27682: Scan config empty (085569ce-73ed-11df-83c3-002264764cea) has been created by gvmadmin event config:MESSAGE:2021-11-20 08h37.53 UTC:27682: Scan config Full and fast (daba56c8-73ec-11df-a475-002264764cea) has been created by gvmadmin event config:MESSAGE:2021-11-20 08h37.53 UTC:27682: Scan config Huawei Datacom Product Security Configuration Audit Guide (aab5c4a1-eab1-4f4e-acac-8c36d08de6bc) has been created by gvmadmin event config:MESSAGE:2021-11-20 08h37.54 UTC:27682: Scan config EulerOS Linux Security Configuration (9f822ad3-9208-4e02-ac03-78dce3ca9a23) has been created by gvmadmin event port_list:MESSAGE:2021-11-20 08h37.54 UTC:27682: Port list All IANA assigned TCP (33d0cd82-57c6-11e1-8ed1-406186ea4fc5) has been created by gvmadmin event port_list:MESSAGE:2021-11-20 08h37.55 UTC:27682: Port list All IANA assigned TCP and UDP (4a4717fe-57d2-11e1-9a26-406186ea4fc5) has been created by gvmadmin event port_list:MESSAGE:2021-11-20 08h37.55 UTC:27682: Port list All TCP and Nmap top 100 UDP (730ef368-57e2-11e1-a90f-406186ea4fc5) has been created by gvmadmin event report_format:MESSAGE:2021-11-20 08h37.55 UTC:27682: Report format XML (a994b278-1f62-11e1-96ac-406186ea4fc5) has been created by gvmadmin event report_format:MESSAGE:2021-11-20 08h37.55 UTC:27682: Report format TXT (a3810a62-1f62-11e1-9219-406186ea4fc5) has been created by gvmadmin event report_format:MESSAGE:2021-11-20 08h37.55 UTC:27682: Report format Anonymous XML (5057e5cc-b825-11e4-9d0e-28d24461215b) has been created by gvmadmin event report_format:MESSAGE:2021-11-20 08h37.55 UTC:27682: Report format CSV Results (c1645568-627a-11e3-a660-406186ea4fc5) has been created by gvmadmin event report_format:MESSAGE:2021-11-20 08h37.55 UTC:27682: Report format PDF (c402cc3e-b531-11e1-9163-406186ea4fc5) has been created by gvmadmin event report_format:MESSAGE:2021-11-20 08h37.55 UTC:27682: Report format ITG (77bd6c4a-1f62-11e1-abf0-406186ea4fc5) has been created by gvmadmin md gmp:WARNING:2021-11-20 08h51.48 utc:28328: Authentication failure for'gvmadmin' from unix_socket md manage: INFO:2021-11-20 08h56.02 UTC:31012: sync_cert: Updating data from feed md manage: INFO:2021-11-20 08h56.02 UTC:31012: update_dfn_xml: dfn-cert-2010.xml md manage: INFO:2021-11-20 08h56.02 UTC:31012: Updating /opt/gvm/var/lib/gvm/cert-data/dfn-cert-2010.xml md manage: INFO:2021-11-20 08h56.04 UTC:31012: update_dfn_xml: dfn-cert-2020.xml md manage: INFO:2021-11-20 08h56.04 UTC:31012: Updating /opt/gvm/var/lib/gvm/cert-data/dfn-cert-2020.xml md manage: INFO:2021-11-20 08h56.07 UTC:31012: update_dfn_xml: dfn-cert-2021.xml md manage: INFO:2021-11-20 08h56.07 UTC:31012: Updating /opt/gvm/var/lib/gvm/cert-data/dfn-cert-2021.xml md manage: INFO:2021-11-20 08h56.10 UTC:31012: update_dfn_xml: dfn-cert-2013.xml md manage: INFO:2021-11-20 08h56.10 UTC:31012: Updating /opt/gvm/var/lib/gvm/cert-data/dfn-cert-2013.xml md manage: INFO:2021-11-20 08h56.12 UTC:31012: update_dfn_xml: dfn-cert-2012.xml md manage: INFO:2021-11-20 08h56.12 UTC:31012: Updating /opt/gvm/var/lib/gvm/cert-data/dfn-cert-2012.xml md manage: INFO:2021-11-20 08h56.14 UTC:31012: update_dfn_xml: dfn-cert-2019.xml md manage: INFO:2021-11-20 08h56.14 UTC:31012: Updating /opt/gvm/var/lib/gvm/cert-data/dfn-cert-2019.xml md manage: INFO:2021-11-20 08h56.18 UTC:31012: update_dfn_xml: dfn-cert-2014.xml md manage: INFO:2021-11-20 08h56.18 UTC:31012: Updating /opt/gvm/var/lib/gvm/cert-data/dfn-cert-2014.xml md manage: INFO:2021-11-20 08h56.19 UTC:31012: update_dfn_xml: dfn-cert-2018.xml md manage: INFO:2021-11-20 08h56.19 UTC:31012: Updating /opt/gvm/var/lib/gvm/cert-data/dfn-cert-2018.xml md manage: INFO:2021-11-20 08h56.22 UTC:31012: update_dfn_xml: dfn-cert-2016.xml md manage: INFO:2021-11-20 08h56.22 UTC:31012: Updating /opt/gvm/var/lib/gvm/cert-data/dfn-cert-2016.xml md manage: INFO:2021-11-20 08h56.25 UTC:31012: update_dfn_xml: dfn-cert-2017.xml md manage: INFO:2021-11-20 08h56.25 UTC:31012: Updating /opt/gvm/var/lib/gvm/cert-data/dfn-cert-2017.xml md manage: INFO:2021-11-20 08h56.28 UTC:31012: update_dfn_xml: dfn-cert-2015.xml md manage: INFO:2021-11-20 08h56.28 UTC:31012: Updating /opt/gvm/var/lib/gvm/cert-data/dfn-cert-2015.xml md manage: INFO:2021-11-20 08h56.30 UTC:31012: update_dfn_xml: dfn-cert-2008.xml md manage: INFO:2021-11-20 08h56.30 UTC:31012: Updating /opt/gvm/var/lib/gvm/cert-data/dfn-cert-2008.xml md manage: INFO:2021-11-20 08h56.30 UTC:31012: update_dfn_xml: dfn-cert-2009.xml md manage: INFO:2021-11-20 08h56.30 UTC:31012: Updating /opt/gvm/var/lib/gvm/cert-data/dfn-cert-2009.xml md manage: INFO:2021-11-20 08h56.31 UTC:31012: update_dfn_xml: dfn-cert-2011.xml md manage: INFO:2021-11-20 08h56.31 UTC:31012: Updating /opt/gvm/var/lib/gvm/cert-data/dfn-cert-2011.xml md manage: INFO:2021-11-20 08h56.33 UTC:31012: Updating /opt/gvm/var/lib/gvm/cert-data/CB-K20.xml md manage: INFO:2021-11-20 08h56.34 UTC:31012: Updating /opt/gvm/var/lib/gvm/cert-data/CB-K19.xml md manage: INFO:2021-11-20 08h56.36 UTC:31012: Updating /opt/gvm/var/lib/gvm/cert-data/CB-K17.xml md manage: INFO:2021-11-20 08h56.39 UTC:31012: Updating /opt/gvm/var/lib/gvm/cert-data/CB-K18.xml md manage: INFO:2021-11-20 08h56.41 UTC:31012: Updating /opt/gvm/var/lib/gvm/cert-data/CB-K16.xml md manage: INFO:2021-11-20 08h56.43 UTC:31012: Updating /opt/gvm/var/lib/gvm/cert-data/CB-K14.xml md manage: INFO:2021-11-20 08h56.45 UTC:31012: Updating /opt/gvm/var/lib/gvm/cert-data/CB-K15.xml md manage: INFO:2021-11-20 08h56.47 UTC:31012: Updating /opt/gvm/var/lib/gvm/cert-data/CB-K21.xml md manage: INFO:2021-11-20 08h56.48 UTC:31012: Updating /opt/gvm/var/lib/gvm/cert-data/CB-K13.xml md manage: INFO:2021-11-20 08h56.49 UTC:31012: Updating Max CVSS for DFN-CERT md manage: INFO:2021-11-20 08h56.51 UTC:31012: Updating DFN-CERT CVSS max succeeded. md manage: INFO:2021-11-20 08h56.51 UTC:31012: Updating Max CVSS for CERT-Bund md manage: INFO:2021-11-20 08h56.52 UTC:31012: Updating CERT-Bund CVSS max succeeded. md manage: INFO:2021-11-20 08h56.52 UTC:31012: sync_cert: Updating CERT info succeeded. event target:MESSAGE:2021-11-20 08h59.35 UTC:32640: Target 127.0.0.1 (380b08da-2e51-46e9-8ef9-2459c6b08fae) has been created by gvmadmin event task:MESSAGE:2021-11-20 08h59.38 UTC:32650: Status of task (bf44b9ca-76e3-4c36-9be4-3b3bae0b9b11) has changed to New event task:MESSAGE:2021-11-20 08h59.38 UTC:32650: Task Unnamed (bf44b9ca-76e3-4c36-9be4-3b3bae0b9b11) has been created by gvmadmin event task:MESSAGE:2021-11-20 08h59.42 UTC:32684: Status of task Unnamed (bf44b9ca-76e3-4c36-9be4-3b3bae0b9b11) has changed to Requested event task:MESSAGE:2021-11-20 08h59.42 UTC:32684: Task Unnamed (bf44b9ca-76e3-4c36-9be4-3b3bae0b9b11) has been requested to start by gvmadmin md manage:WARNING:2021-11-20 08h59.42 UTC:32690: OSP start_scan 9639cb94-d805-4ab5-a8df-37da705feecf: VTs list is empty event task:MESSAGE:2021-11-20 08h59.42 UTC:32690: Status of task Unnamed (bf44b9ca-76e3-4c36-9be4-3b3bae0b9b11) has changed to Done event task:MESSAGE:2021-11-20 08h59.42 UTC:32690: Status of task Unnamed (bf44b9ca-76e3-4c36-9be4-3b3bae0b9b11) has changed to Interrupted md main:MESSAGE:2021-11-20 09h09.30 utc:33843: Greenbone Vulnerability Manager version 21.4.4 (DB revision 242) md manage: INFO:2021-11-20 09h09.30 utc:33843: Rebuilding NVTs. md manage: INFO:2021-11-20 09h16.59 utc:33843: Updating VTs in database ... 78557 new VTs, 0 changed VTs md manage:WARNING:2021-11-20 09h17.00 utc:33843: update_nvts_from_vts: SHA-256 hash of the VTs in the database (b256c1fa69670abf4a93c396b918974834ef9bc20438c557b7d8d05e623e4ddf) does not match the one from the scanning gvm@ubuntu:/root$

Execute these lines of instructions again c) /opt/gvm/sbin/greenbone-feed-sync --type SCAP d) /opt/gvm/bin/greenbone-nvt-sync e) /opt/gvm/sbin/greenbone-feed-sync --type CERT f) /opt/gvm/sbin/greenbone-feed-sync --type GVMD_DATA g) /usr/bin/sudo /opt/gvm/sbin/openvas --update-vt-info

Create the task again, the scan result is only log, no high medium low

gvm@ubuntu:/root$ tail -n 200 /opt/gvm/var/log/gvm/gvmd.log md manage:WARNING:2021-11-20 08h04.54 utc:26882: update_scap: No SCAP db present, rebuilding SCAP db from scratch md manage: INFO:2021-11-20 08h04.54 utc:26882: update_scap: Updating data from feed md manage:WARNING:2021-11-20 08h04.54 utc:26882: update_scap_cpes: No CPE dictionary found at /opt/gvm/var/lib/gvm/scap-data/official-cpe-dictionary_v2.2.xml md manage:WARNING:2021-11-20 08h05.04 utc:26896: update_scap: No SCAP db present, rebuilding SCAP db from scratch md manage: INFO:2021-11-20 08h05.04 utc:26896: update_scap: Updating data from feed md manage:WARNING:2021-11-20 08h05.04 utc:26896: update_scap_cpes: No CPE dictionary found at /opt/gvm/var/lib/gvm/scap-data/official-cpe-dictionary_v2.2.xml md manage:WARNING:2021-11-20 08h05.14 utc:26906: update_scap: No SCAP db present, rebuilding SCAP db from scratch md manage: INFO:2021-11-20 08h05.14 utc:26906: update_scap: Updating data from feed md manage:WARNING:2021-11-20 08h05.14 utc:26906: update_scap_cpes: No CPE dictionary found at /opt/gvm/var/lib/gvm/scap-data/official-cpe-dictionary_v2.2.xml md manage:WARNING:2021-11-20 08h05.24 utc:26916: update_scap: No SCAP db present, rebuilding SCAP db from scratch md manage: INFO:2021-11-20 08h05.25 utc:26916: update_scap: Updating data from feed md manage:WARNING:2021-11-20 08h05.25 utc:26916: update_scap_cpes: No CPE dictionary found at /opt/gvm/var/lib/gvm/scap-data/official-cpe-dictionary_v2.2.xml md manage:WARNING:2021-11-20 08h05.35 utc:26929: update_scap: No SCAP db present, rebuilding SCAP db from scratch md manage: INFO:2021-11-20 08h05.35 utc:26929: update_scap: Updating data from feed md manage:WARNING:2021-11-20 08h05.35 utc:26929: update_scap_cpes: No CPE dictionary found at /opt/gvm/var/lib/gvm/scap-data/official-cpe-dictionary_v2.2.xml md manage:WARNING:2021-11-20 08h05.45 utc:26940: update_scap: No SCAP db present, rebuilding SCAP db from scratch md manage: INFO:2021-11-20 08h05.45 utc:26940: update_scap: Updating data from feed md manage:WARNING:2021-11-20 08h05.45 utc:26940: update_scap_cpes: No CPE dictionary found at /opt/gvm/var/lib/gvm/scap-data/official-cpe-dictionary_v2.2.xml md manage:WARNING:2021-11-20 08h05.55 utc:26950: update_scap: No SCAP db present, rebuilding SCAP db from scratch md manage: INFO:2021-11-20 08h05.55 utc:26950: update_scap: Updating data from feed md manage:WARNING:2021-11-20 08h05.55 utc:26950: update_scap_cpes: No CPE dictionary found at /opt/gvm/var/lib/gvm/scap-data/official-cpe-dictionary_v2.2.xml md manage:WARNING:2021-11-20 08h06.05 utc:26961: update_scap: No SCAP db present, rebuilding SCAP db from scratch md manage: INFO:2021-11-20 08h06.05 utc:26961: update_scap: Updating data from feed md manage:WARNING:2021-11-20 08h06.05 utc:26961: update_scap_cpes: No CPE dictionary found at /opt/gvm/var/lib/gvm/scap-data/official-cpe-dictionary_v2.2.xml md manage:WARNING:2021-11-20 08h06.15 utc:26971: update_scap: No SCAP db present, rebuilding SCAP db from scratch md manage: INFO:2021-11-20 08h06.15 utc:26971: update_scap: Updating data from feed md manage:WARNING:2021-11-20 08h06.15 utc:26971: update_scap_cpes: No CPE dictionary found at /opt/gvm/var/lib/gvm/scap-data/official-cpe-dictionary_v2.2.xml md manage:WARNING:2021-11-20 08h06.25 utc:26982: update_scap: No SCAP db present, rebuilding SCAP db from scratch md manage: INFO:2021-11-20 08h06.25 utc:26982: update_scap: Updating data from feed md manage:WARNING:2021-11-20 08h06.25 utc:26982: update_scap_cpes: No CPE dictionary found at /opt/gvm/var/lib/gvm/scap-data/official-cpe-dictionary_v2.2.xml md manage:WARNING:2021-11-20 08h06.35 utc:26992: update_scap: No SCAP db present, rebuilding SCAP db from scratch md manage: INFO:2021-11-20 08h06.35 utc:26992: update_scap: Updating data from feed md manage:WARNING:2021-11-20 08h06.35 utc:26992: update_scap_cpes: No CPE dictionary found at /opt/gvm/var/lib/gvm/scap-data/official-cpe-dictionary_v2.2.xml md manage:WARNING:2021-11-20 08h06.45 utc:27003: update_scap: No SCAP db present, rebuilding SCAP db from scratch md manage: INFO:2021-11-20 08h06.45 utc:27003: update_scap: Updating data from feed md manage:WARNING:2021-11-20 08h06.45 utc:27003: update_scap_cpes: No CPE dictionary found at /opt/gvm/var/lib/gvm/scap-data/official-cpe-dictionary_v2.2.xml md manage:WARNING:2021-11-20 08h06.55 utc:27013: update_scap: No SCAP db present, rebuilding SCAP db from scratch md manage: INFO:2021-11-20 08h06.55 utc:27013: update_scap: Updating data from feed md manage:WARNING:2021-11-20 08h06.55 utc:27013: update_scap_cpes: No CPE dictionary found at /opt/gvm/var/lib/gvm/scap-data/official-cpe-dictionary_v2.2.xml md manage:WARNING:2021-11-20 08h07.05 utc:27025: update_scap: No SCAP db present, rebuilding SCAP db from scratch md manage: INFO:2021-11-20 08h07.05 utc:27025: update_scap: Updating data from feed md manage:WARNING:2021-11-20 08h07.05 utc:27025: update_scap_cpes: No CPE dictionary found at /opt/gvm/var/lib/gvm/scap-data/official-cpe-dictionary_v2.2.xml md manage:WARNING:2021-11-20 08h07.15 utc:27035: update_scap: No SCAP db present, rebuilding SCAP db from scratch md manage: INFO:2021-11-20 08h07.15 utc:27035: update_scap: Updating data from feed md manage:WARNING:2021-11-20 08h07.15 utc:27035: update_scap_cpes: No CPE dictionary found at /opt/gvm/var/lib/gvm/scap-data/official-cpe-dictionary_v2.2.xml md manage:WARNING:2021-11-20 08h07.25 utc:27046: update_scap: No SCAP db present, rebuilding SCAP db from scratch md manage: INFO:2021-11-20 08h07.25 utc:27046: update_scap: Updating data from feed md manage:WARNING:2021-11-20 08h07.25 utc:27046: update_scap_cpes: No CPE dictionary found at /opt/gvm/var/lib/gvm/scap-data/official-cpe-dictionary_v2.2.xml md manage:WARNING:2021-11-20 08h07.35 utc:27056: update_scap: No SCAP db present, rebuilding SCAP db from scratch md manage: INFO:2021-11-20 08h07.35 utc:27056: update_scap: Updating data from feed md manage:WARNING:2021-11-20 08h07.35 utc:27056: update_scap_cpes: No CPE dictionary found at /opt/gvm/var/lib/gvm/scap-data/official-cpe-dictionary_v2.2.xml md manage:WARNING:2021-11-20 08h07.45 utc:27067: update_scap: No SCAP db present, rebuilding SCAP db from scratch md manage: INFO:2021-11-20 08h07.45 utc:27067: update_scap: Updating data from feed md manage:WARNING:2021-11-20 08h07.45 utc:27067: update_scap_cpes: No CPE dictionary found at /opt/gvm/var/lib/gvm/scap-data/official-cpe-dictionary_v2.2.xml md manage:WARNING:2021-11-20 08h07.55 utc:27077: update_scap: No SCAP db present, rebuilding SCAP db from scratch md manage: INFO:2021-11-20 08h07.55 utc:27077: update_scap: Updating data from feed md manage:WARNING:2021-11-20 08h07.55 utc:27077: update_scap_cpes: No CPE dictionary found at /opt/gvm/var/lib/gvm/scap-data/official-cpe-dictionary_v2.2.xml md manage:WARNING:2021-11-20 08h08.05 utc:27102: update_scap: No SCAP db present, rebuilding SCAP db from scratch md manage: INFO:2021-11-20 08h08.05 utc:27102: update_scap: Updating data from feed md manage:WARNING:2021-11-20 08h08.05 utc:27102: update_scap_cpes: No CPE dictionary found at /opt/gvm/var/lib/gvm/scap-data/official-cpe-dictionary_v2.2.xml md manage:WARNING:2021-11-20 08h29.39 utc:27497: update_scap: No SCAP db present, rebuilding SCAP db from scratch md manage: INFO:2021-11-20 08h29.39 utc:27497: update_scap: Updating data from feed md manage: INFO:2021-11-20 08h29.39 utc:27497: Updating CPEs md manage: INFO:2021-11-20 08h31.08 UTC:27497: Updating /opt/gvm/var/lib/gvm/scap-data/nvdcve-2.0-2010.xml md manage: INFO:2021-11-20 08h31.16 UTC:27497: Updating /opt/gvm/var/lib/gvm/scap-data/nvdcve-2.0-2003.xml md manage: INFO:2021-11-20 08h31.18 UTC:27497: Updating /opt/gvm/var/lib/gvm/scap-data/nvdcve-2.0-2005.xml md manage: INFO:2021-11-20 08h31.23 UTC:27497: Updating /opt/gvm/var/lib/gvm/scap-data/nvdcve-2.0-2009.xml md manage: INFO:2021-11-20 08h31.34 UTC:27497: Updating /opt/gvm/var/lib/gvm/scap-data/nvdcve-2.0-2008.xml md manage: INFO:2021-11-20 08h31.43 UTC:27497: Updating /opt/gvm/var/lib/gvm/scap-data/nvdcve-2.0-2019.xml md manage: INFO:2021-11-20 08h32.17 UTC:27497: Updating /opt/gvm/var/lib/gvm/scap-data/nvdcve-2.0-2020.xml md manage: INFO:2021-11-20 08h32.42 UTC:27497: Updating /opt/gvm/var/lib/gvm/scap-data/nvdcve-2.0-2006.xml md manage: INFO:2021-11-20 08h32.50 UTC:27497: Updating /opt/gvm/var/lib/gvm/scap-data/nvdcve-2.0-2011.xml md manage: INFO:2021-11-20 08h32.58 UTC:27497: Updating /opt/gvm/var/lib/gvm/scap-data/nvdcve-2.0-2004.xml md manage: INFO:2021-11-20 08h33.01 UTC:27497: Updating /opt/gvm/var/lib/gvm/scap-data/nvdcve-2.0-2013.xml md manage: INFO:2021-11-20 08h33.09 UTC:27497: Updating /opt/gvm/var/lib/gvm/scap-data/nvdcve-2.0-2007.xml md manage: INFO:2021-11-20 08h33.16 UTC:27497: Updating /opt/gvm/var/lib/gvm/scap-data/nvdcve-2.0-2018.xml md manage: INFO:2021-11-20 08h33.45 UTC:27497: Updating /opt/gvm/var/lib/gvm/scap-data/nvdcve-2.0-2017.xml md manage: INFO:2021-11-20 08h34.01 UTC:27497: Updating /opt/gvm/var/lib/gvm/scap-data/nvdcve-2.0-2014.xml md manage: INFO:2021-11-20 08h34.09 UTC:27497: Updating /opt/gvm/var/lib/gvm/scap-data/nvdcve-2.0-2015.xml md manage: INFO:2021-11-20 08h34.17 UTC:27497: Updating /opt/gvm/var/lib/gvm/scap-data/nvdcve-2.0-2021.xml md manage: INFO:2021-11-20 08h34.40 UTC:27497: Updating /opt/gvm/var/lib/gvm/scap-data/nvdcve-2.0-2002.xml md manage: INFO:2021-11-20 08h34.46 UTC:27497: Updating /opt/gvm/var/lib/gvm/scap-data/nvdcve-2.0-2016.xml md manage: INFO:2021-11-20 08h34.56 UTC:27497: Updating /opt/gvm/var/lib/gvm/scap-data/nvdcve-2.0-2012.xml md manage: INFO:2021-11-20 08h35.04 UTC:27497: Updating OVAL data md manage: INFO:2021-11-20 08h35.06 UTC:27497: Updating /opt/gvm/var/lib/gvm/scap-data/oval/5.10/org.mitre.oval/c/oval.xml md manage: INFO:2021-11-20 08h35.06 UTC:27497: Updating /opt/gvm/var/lib/gvm/scap-data/oval/5.10/org.mitre.oval/m/oval.xml md manage: INFO:2021-11-20 08h35.06 UTC:27497: Updating /opt/gvm/var/lib/gvm/scap-data/oval/5.10/org.mitre.oval/v/family/ios.xml md manage: INFO:2021-11-20 08h35.06 UTC:27497: Updating /opt/gvm/var/lib/gvm/scap-data/oval/5.10/org.mitre.oval/v/family/pixos.xml md manage: INFO:2021-11-20 08h35.06 UTC:27497: Updating /opt/gvm/var/lib/gvm/scap-data/oval/5.10/org.mitre.oval/p/oval.xml md manage: INFO:2021-11-20 08h36.12 UTC:27497: Updating /opt/gvm/var/lib/gvm/scap-data/oval/5.10/org.mitre.oval/i/oval.xml md manage: INFO:2021-11-20 08h36.14 UTC:27497: Updating /opt/gvm/var/lib/gvm/scap-data/oval/5.10/org.mitre.oval/v/family/macos.xml md manage: INFO:2021-11-20 08h36.14 UTC:27497: Updating /opt/gvm/var/lib/gvm/scap-data/oval/5.10/org.mitre.oval/v/family/unix.xml md manage: INFO:2021-11-20 08h36.18 UTC:27497: Updating /opt/gvm/var/lib/gvm/scap-data/oval/5.10/org.mitre.oval/v/family/windows.xml md manage: INFO:2021-11-20 08h36.24 UTC:27497: Updating user OVAL definitions. md manage: INFO:2021-11-20 08h36.24 UTC:27497: Updating CVSS scores and CVE counts for CPEs md manage: INFO:2021-11-20 08h37.30 UTC:27497: Updating CVSS scores for OVAL definitions md manage: INFO:2021-11-20 08h37.31 UTC:27497: Updating placeholder CPEs md manage: INFO:2021-11-20 08h37.40 UTC:27497: Updating Max CVSS for DFN-CERT md manage: INFO:2021-11-20 08h37.40 UTC:27497: Updating DFN-CERT CVSS max succeeded. md manage: INFO:2021-11-20 08h37.40 UTC:27497: Updating Max CVSS for CERT-Bund md manage: INFO:2021-11-20 08h37.40 UTC:27497: Updating CERT-Bund CVSS max succeeded. md manage: INFO:2021-11-20 08h37.42 UTC:27497: update_scap_end: Updating SCAP info succeeded event config:MESSAGE:2021-11-20 08h37.51 UTC:27682: Scan config Discovery (8715c877-47a0-438d-98a3-27c7a6ab2196) has been created by gvmadmin event config:MESSAGE:2021-11-20 08h37.51 UTC:27682: Scan config Host Discovery (2d3f051c-55ba-11e3-bf43-406186ea4fc5) has been created by gvmadmin event config:MESSAGE:2021-11-20 08h37.51 UTC:27682: Scan config System Discovery (bbca7412-a950-11e3-9109-406186ea4fc5) has been created by gvmadmin event config:MESSAGE:2021-11-20 08h37.51 UTC:27682: Scan config Base (d21f6c81-2b88-4ac1-b7b4-a2a9f2ad4663) has been created by gvmadmin event config:MESSAGE:2021-11-20 08h37.51 UTC:27682: Scan config GaussDB 100 V300R001C00 Security Hardening Guide (Standalone) (61327f09-8a54-4854-9e1c-16798285fb28) has been created by gvmadmin event config:MESSAGE:2021-11-20 08h37.52 UTC:27682: Scan config GaussDB Kernel V500R001C00 Security Hardening Guide (2eec8313-fee4-442a-b3c4-fa0d5dc83d61) has been created by gvmadmin event config:MESSAGE:2021-11-20 08h37.53 UTC:27682: Scan config IT-Grundschutz Kompendium (c4b7c0cb-6502-4809-b034-8e635311b3e6) has been created by gvmadmin event config:MESSAGE:2021-11-20 08h37.53 UTC:27682: Scan config openGauss Security Hardening Guide (c2b049f9-6d3d-45be-871f-2252895ed9e8) has been created by gvmadmin event config:MESSAGE:2021-11-20 08h37.53 UTC:27682: Scan config empty (085569ce-73ed-11df-83c3-002264764cea) has been created by gvmadmin event config:MESSAGE:2021-11-20 08h37.53 UTC:27682: Scan config Full and fast (daba56c8-73ec-11df-a475-002264764cea) has been created by gvmadmin event config:MESSAGE:2021-11-20 08h37.53 UTC:27682: Scan config Huawei Datacom Product Security Configuration Audit Guide (aab5c4a1-eab1-4f4e-acac-8c36d08de6bc) has been created by gvmadmin event config:MESSAGE:2021-11-20 08h37.54 UTC:27682: Scan config EulerOS Linux Security Configuration (9f822ad3-9208-4e02-ac03-78dce3ca9a23) has been created by gvmadmin event port_list:MESSAGE:2021-11-20 08h37.54 UTC:27682: Port list All IANA assigned TCP (33d0cd82-57c6-11e1-8ed1-406186ea4fc5) has been created by gvmadmin event port_list:MESSAGE:2021-11-20 08h37.55 UTC:27682: Port list All IANA assigned TCP and UDP (4a4717fe-57d2-11e1-9a26-406186ea4fc5) has been created by gvmadmin event port_list:MESSAGE:2021-11-20 08h37.55 UTC:27682: Port list All TCP and Nmap top 100 UDP (730ef368-57e2-11e1-a90f-406186ea4fc5) has been created by gvmadmin event report_format:MESSAGE:2021-11-20 08h37.55 UTC:27682: Report format XML (a994b278-1f62-11e1-96ac-406186ea4fc5) has been created by gvmadmin event report_format:MESSAGE:2021-11-20 08h37.55 UTC:27682: Report format TXT (a3810a62-1f62-11e1-9219-406186ea4fc5) has been created by gvmadmin event report_format:MESSAGE:2021-11-20 08h37.55 UTC:27682: Report format Anonymous XML (5057e5cc-b825-11e4-9d0e-28d24461215b) has been created by gvmadmin event report_format:MESSAGE:2021-11-20 08h37.55 UTC:27682: Report format CSV Results (c1645568-627a-11e3-a660-406186ea4fc5) has been created by gvmadmin event report_format:MESSAGE:2021-11-20 08h37.55 UTC:27682: Report format PDF (c402cc3e-b531-11e1-9163-406186ea4fc5) has been created by gvmadmin event report_format:MESSAGE:2021-11-20 08h37.55 UTC:27682: Report format ITG (77bd6c4a-1f62-11e1-abf0-406186ea4fc5) has been created by gvmadmin md gmp:WARNING:2021-11-20 08h51.48 utc:28328: Authentication failure for'gvmadmin' from unix_socket md manage: INFO:2021-11-20 08h56.02 UTC:31012: sync_cert: Updating data from feed md manage: INFO:2021-11-20 08h56.02 UTC:31012: update_dfn_xml: dfn-cert-2010.xml md manage: INFO:2021-11-20 08h56.02 UTC:31012: Updating /opt/gvm/var/lib/gvm/cert-data/dfn-cert-2010.xml md manage: INFO:2021-11-20 08h56.04 UTC:31012: update_dfn_xml: dfn-cert-2020.xml md manage: INFO:2021-11-20 08h56.04 UTC:31012: Updating /opt/gvm/var/lib/gvm/cert-data/dfn-cert-2020.xml md manage: INFO:2021-11-20 08h56.07 UTC:31012: update_dfn_xml: dfn-cert-2021.xml md manage: INFO:2021-11-20 08h56.07 UTC:31012: Updating /opt/gvm/var/lib/gvm/cert-data/dfn-cert-2021.xml md manage: INFO:2021-11-20 08h56.10 UTC:31012: update_dfn_xml: dfn-cert-2013.xml md manage: INFO:2021-11-20 08h56.10 UTC:31012: Updating /opt/gvm/var/lib/gvm/cert-data/dfn-cert-2013.xml md manage: INFO:2021-11-20 08h56.12 UTC:31012: update_dfn_xml: dfn-cert-2012.xml md manage: INFO:2021-11-20 08h56.12 UTC:31012: Updating /opt/gvm/var/lib/gvm/cert-data/dfn-cert-2012.xml md manage: INFO:2021-11-20 08h56.14 UTC:31012: update_dfn_xml: dfn-cert-2019.xml md manage: INFO:2021-11-20 08h56.14 UTC:31012: Updating /opt/gvm/var/lib/gvm/cert-data/dfn-cert-2019.xml md manage: INFO:2021-11-20 08h56.18 UTC:31012: update_dfn_xml: dfn-cert-2014.xml md manage: INFO:2021-11-20 08h56.18 UTC:31012: Updating /opt/gvm/var/lib/gvm/cert-data/dfn-cert-2014.xml md manage: INFO:2021-11-20 08h56.19 UTC:31012: update_dfn_xml: dfn-cert-2018.xml md manage: INFO:2021-11-20 08h56.19 UTC:31012: Updating /opt/gvm/var/lib/gvm/cert-data/dfn-cert-2018.xml md manage: INFO:2021-11-20 08h56.22 UTC:31012: update_dfn_xml: dfn-cert-2016.xml md manage: INFO:2021-11-20 08h56.22 UTC:31012: Updating /opt/gvm/var/lib/gvm/cert-data/dfn-cert-2016.xml md manage: INFO:2021-11-20 08h56.25 UTC:31012: update_dfn_xml: dfn-cert-2017.xml md manage: INFO:2021-11-20 08h56.25 UTC:31012: Updating /opt/gvm/var/lib/gvm/cert-data/dfn-cert-2017.xml md manage: INFO:2021-11-20 08h56.28 UTC:31012: update_dfn_xml: dfn-cert-2015.xml md manage: INFO:2021-11-20 08h56.28 UTC:31012: Updating /opt/gvm/var/lib/gvm/cert-data/dfn-cert-2015.xml md manage: INFO:2021-11-20 08h56.30 UTC:31012: update_dfn_xml: dfn-cert-2008.xml md manage: INFO:2021-11-20 08h56.30 UTC:31012: Updating /opt/gvm/var/lib/gvm/cert-data/dfn-cert-2008.xml md manage: INFO:2021-11-20 08h56.30 UTC:31012: update_dfn_xml: dfn-cert-2009.xml md manage: INFO:2021-11-20 08h56.30 UTC:31012: Updating /opt/gvm/var/lib/gvm/cert-data/dfn-cert-2009.xml md manage: INFO:2021-11-20 08h56.31 UTC:31012: update_dfn_xml: dfn-cert-2011.xml md manage: INFO:2021-11-20 08h56.31 UTC:31012: Updating /opt/gvm/var/lib/gvm/cert-data/dfn-cert-2011.xml md manage: INFO:2021-11-20 08h56.33 UTC:31012: Updating /opt/gvm/var/lib/gvm/cert-data/CB-K20.xml md manage: INFO:2021-11-20 08h56.34 UTC:31012: Updating /opt/gvm/var/lib/gvm/cert-data/CB-K19.xml md manage: INFO:2021-11-20 08h56.36 UTC:31012: Updating /opt/gvm/var/lib/gvm/cert-data/CB-K17.xml md manage: INFO:2021-11-20 08h56.39 UTC:31012: Updating /opt/gvm/var/lib/gvm/cert-data/CB-K18.xml md manage: INFO:2021-11-20 08h56.41 UTC:31012: Updating /opt/gvm/var/lib/gvm/cert-data/CB-K16.xml md manage: INFO:2021-11-20 08h56.43 UTC:31012: Updating /opt/gvm/var/lib/gvm/cert-data/CB-K14.xml md manage: INFO:2021-11-20 08h56.45 UTC:31012: Updating /opt/gvm/var/lib/gvm/cert-data/CB-K15.xml md manage: INFO:2021-11-20 08h56.47 UTC:31012: Updating /opt/gvm/var/lib/gvm/cert-data/CB-K21.xml md manage: INFO:2021-11-20 08h56.48 UTC:31012: Updating /opt/gvm/var/lib/gvm/cert-data/CB-K13.xml md manage: INFO:2021-11-20 08h56.49 UTC:31012: Updating Max CVSS for DFN-CERT md manage: INFO:2021-11-20 08h56.51 UTC:31012: Updating DFN-CERT CVSS max succeeded. md manage: INFO:2021-11-20 08h56.51 UTC:31012: Updating Max CVSS for CERT-Bund md manage: INFO:2021-11-20 08h56.52 UTC:31012: Updating CERT-Bund CVSS max succeeded. md manage: INFO:2021-11-20 08h56.52 UTC:31012: sync_cert: Updating CERT info succeeded. event target:MESSAGE:2021-11-20 08h59.35 UTC:32640: Target 127.0.0.1 (380b08da-2e51-46e9-8ef9-2459c6b08fae) has been created by gvmadmin event task:MESSAGE:2021-11-20 08h59.38 UTC:32650: Status of task (bf44b9ca-76e3-4c36-9be4-3b3bae0b9b11) has changed to New event task:MESSAGE:2021-11-20 08h59.38 UTC:32650: Task Unnamed (bf44b9ca-76e3-4c36-9be4-3b3bae0b9b11) has been created by gvmadmin event task:MESSAGE:2021-11-20 08h59.42 UTC:32684: Status of task Unnamed (bf44b9ca-76e3-4c36-9be4-3b3bae0b9b11) has changed to Requested event task:MESSAGE:2021-11-20 08h59.42 UTC:32684: Task Unnamed (bf44b9ca-76e3-4c36-9be4-3b3bae0b9b11) has been requested to start by gvmadmin md manage:WARNING:2021-11-20 08h59.42 UTC:32690: OSP start_scan 9639cb94-d805-4ab5-a8df-37da705feecf: VTs list is empty event task:MESSAGE:2021-11-20 08h59.42 UTC:32690: Status of task Unnamed (bf44b9ca-76e3-4c36-9be4-3b3bae0b9b11) has changed to Done event task:MESSAGE:2021-11-20 08h59.42 UTC:32690: Status of task Unnamed (bf44b9ca-76e3-4c36-9be4-3b3bae0b9b11) has changed to Interrupted md main:MESSAGE:2021-11-20 09h09.30 utc:33843: Greenbone Vulnerability Manager version 21.4.4 (DB revision 242) md manage: INFO:2021-11-20 09h09.30 utc:33843: Rebuilding NVTs. md manage: INFO:2021-11-20 09h16.59 utc:33843: Updating VTs in database ... 78557 new VTs, 0 changed VTs md manage:WARNING:2021-11-20 09h17.00 utc:33843: update_nvts_from_vts: SHA-256 hash of the VTs in the database (b256c1fa69670abf4a93c396b918974834ef9bc20438c557b7d8d05e623e4ddf) does not match the one from the scanning event task:MESSAGE:2021-11-20 09h17.34 UTC:34094: Task Unnamed (bf44b9ca-76e3-4c36-9be4-3b3bae0b9b11) has been deleted by gvmadmin event target:MESSAGE:2021-11-20 09h17.39 UTC:34134: Target Target for immediate scan of IP 127.0.0.1-2021-11-20 09:17:39 (ef241ff2-d7f2-4062-987b-cf53aa74a74a) has been created by gvmadmin event task:MESSAGE:2021-11-20 09h17.39 UTC:34134: Status of task (cb27ef0b-6a71-4b50-81d0-b8eb73ed7442) has changed to New event task:MESSAGE:2021-11-20 09h17.39 UTC:34134: Task Immediate scan of IP 127.0.0.1 (cb27ef0b-6a71-4b50-81d0-b8eb73ed7442) has been created by gvmadmin event task:MESSAGE:2021-11-20 09h17.39 UTC:34134: Status of task Immediate scan of IP 127.0.0.1 (cb27ef0b-6a71-4b50-81d0-b8eb73ed7442) has changed to Requested event task:MESSAGE:2021-11-20 09h17.39 UTC:34134: Task Immediate scan of IP 127.0.0.1 (cb27ef0b-6a71-4b50-81d0-b8eb73ed7442) has been requested to start by gvmadmin event wizard:MESSAGE:2021-11-20 09h17.39 UTC:34134: Wizard quick_first_scan has been run by gvmadmin event task:MESSAGE:2021-11-20 09h17.53 UTC:34142: Status of task Immediate scan of IP 127.0.0.1 (cb27ef0b-6a71-4b50-81d0-b8eb73ed7442) has changed to Queued event task:MESSAGE:2021-11-20 09h18.03 UTC:34142: Status of task Immediate scan of IP 127.0.0.1 (cb27ef0b-6a71-4b50-81d0-b8eb73ed7442) has changed to Running event task:MESSAGE:2021-11-20 09h19.18 UTC:34142: Status of task Immediate scan of IP 127.0.0.1 (cb27ef0b-6a71-4b50-81d0-b8eb73ed7442) has changed to Done event filter:MESSAGE:2021-11-20 09h19.52 UTC:34912: Filter 1120 (25ff8d86-f10e-4c26-8fea-fbefd85104fb) has been created by gvmadmin event task:MESSAGE:2021-11-20 09h26.27 UTC:35217: Task Immediate scan of IP 127.0.0.1 (cb27ef0b-6a71-4b50-81d0-b8eb73ed7442) has been deleted by gvmadmin event target:MESSAGE:2021-11-20 09h26.32 UTC:35258: Target Target for immediate scan of IP 127.0.0.1-2021-11-20 09:26:32 (7ffbe047-1fdd-4486-9d55-422feed7b512) has been created by gvmadmin event task:MESSAGE:2021-11-20 09h26.32 UTC:35258: Status of task (f12acafb-44ee-4e77-a29f-5b51a3120bb9) has changed to New event task:MESSAGE:2021-11-20 09h26.32 UTC:35258: Task Immediate scan of IP 127.0.0.1 (f12acafb-44ee-4e77-a29f-5b51a3120bb9) has been created by gvmadmin event task:MESSAGE:2021-11-20 09h26.32 UTC:35258: Status of task Immediate scan of IP 127.0.0.1 (f12acafb-44ee-4e77-a29f-5b51a3120bb9) has changed to Requested event task:MESSAGE:2021-11-20 09h26.32 UTC:35258: Task Immediate scan of IP 127.0.0.1 (f12acafb-44ee-4e77-a29f-5b51a3120bb9) has been requested to start by gvmadmin event wizard:MESSAGE:2021-11-20 09h26.32 UTC:35258: Wizard quick_first_scan has been run by gvmadmin event task:MESSAGE:2021-11-20 09h26.43 UTC:35266: Status of task Immediate scan of IP 127.0.0.1 (f12acafb-44ee-4e77-a29f-5b51a3120bb9) has changed to Queued event task:MESSAGE:2021-11-20 09h26.53 UTC:35266: Status of task Immediate scan of IP 127.0.0.1 (f12acafb-44ee-4e77-a29f-5b51a3120bb9) has changed to Running event task:MESSAGE:2021-11-20 09h28.14 UTC:35266: Status of task Immediate scan of IP 127.0.0.1 (f12acafb-44ee-4e77-a29f-5b51a3120bb9) has changed to Done gvm@ubuntu:/root$

alexmateescu commented 2 years ago

@elliswnag your problem is that your system is not fully synced _No CPE dictionary found at /opt/gvm/var/lib/gvm/scap-data/official-cpe-dictionaryv2.2.xml

you need to allow for the system to fully sync and fully update th DB before scanning. It can take time 1-2 hours at least or even 1 day. if you want it quickert run the crontab jobs manually. ALL 5 JOBS. The script and the builds are fine you just need to wait

@yu210148 Kev this issue is solved as far as i am concerned.

elliswnag commented 2 years ago

I confirm what you mean, I need to wait for the update, wait patiently for about 1 day, and execute the update 5 instructions

alexmateescu commented 2 years ago

execute the 5 commands now one at a time and then wait for about 1-2 hours. also try scanning a host in your network rather than the server because the server was updated to the latest so it will not show any mediums or highs i suggest scanning a switch or a wifi access point

yu210148 commented 2 years ago

Yes, I'd also recommend having a browser window open to the feed status page in the background while running the updates and only running the next one when the 'update in progress' message goes away. I think I put a message in the readme about this. Alternatively, run the script, reboot, then wait a day or so and cron should take care of it. It's not fast but better to have the computer do the work than you. 🙂

Kev.

On Sat, Nov 20, 2021, 4:58 AM alexmateescu @.***> wrote:

execute the 5 commands now one at a time and then wait for about 1-2 hours. also try scanning a host in your network rather than the server because the server was updated to the latest so it will not show any mediums or highs i suggest scanning a switch or a wifi access point

— You are receiving this because you were mentioned. Reply to this email directly, view it on GitHub https://github.com/yu210148/gvm_install/issues/62#issuecomment-974625533, or unsubscribe https://github.com/notifications/unsubscribe-auth/AAKFY4JXILXGA5WDFMZDFW3UM5WNBANCNFSM5IDTQBXQ . Triage notifications on the go with GitHub Mobile for iOS https://apps.apple.com/app/apple-store/id1477376905?ct=notification-email&mt=8&pt=524675 or Android https://play.google.com/store/apps/details?id=com.github.android&referrer=utm_campaign%3Dnotification-email%26utm_medium%3Demail%26utm_source%3Dgithub.

elliswnag commented 2 years ago

I have completed the update and scanned my wifi and computer for any weaknesses. After scanning the report, I think there is a problem. I turned off the PC firewall. There should not be any weaknesses. I will wait for the update and scan again tomorrow. To see if the report is the same as it is now

alexmateescu commented 2 years ago

Best option if you can star a new vm with any linux os

Install nginx and setup an ssl website but make sure you leave it as default

And scan that and you will see at least 1 high for the default settings

Alex

On Sat 20 Nov 2021 at 10:37, elliswnag @.***> wrote:

I have completed the update and scanned my wifi and computer for any weaknesses. After scanning the report, I think there is a problem. I turned off the PC firewall. There should not be any weaknesses. I will wait for the update and scan again tomorrow. To see if the report is the same as it is now

— You are receiving this because you commented. Reply to this email directly, view it on GitHub https://github.com/yu210148/gvm_install/issues/62#issuecomment-974629607, or unsubscribe https://github.com/notifications/unsubscribe-auth/AFNANWQCTWSE6GABQTLOBDDUM53AHANCNFSM5IDTQBXQ . Triage notifications on the go with GitHub Mobile for iOS https://apps.apple.com/app/apple-store/id1477376905?ct=notification-email&mt=8&pt=524675 or Android https://play.google.com/store/apps/details?id=com.github.android&referrer=utm_campaign%3Dnotification-email%26utm_medium%3Demail%26utm_source%3Dgithub.