I'm currently having an issue where the OpenVAS scanner dies with a segfault:
sd main:WARNING:2020-04-14 22h48.33 utc:3636: SIGSEGV occurred!
Looking around, I found greenbone/openvas-scanner#336, and it looks like it's fixed by v10.0.1 of gvm-libs. I think this should just require a small bump in the version referenced in the docker RUN command on L38-49 of the Dockerfile.
|
#Build gvm-libs |
|
RUN cd /usr/src && \ |
|
wget -nv https://github.com/greenbone/gvm-libs/archive/v10.0.0.tar.gz && \ |
|
tar -zxf v10.0.0.tar.gz && \ |
|
cd gvm-libs-10.0.0 && \ |
|
mkdir build && \ |
|
cd build && \ |
|
cmake .. && \ |
|
make && \ |
|
make install && \ |
|
rm /usr/src/v10.0.0.tar.gz && \ |
|
rm -rf /usr/src/gvm-libs-10.0.0 |
That being said, a number of the other things built by this image have newer releases (in the same series), and could use an update as well:
openvas: v6.0.0 ==> v6.0.1
gsa: v8.0.0 ==> v8.0.1
gvmd: v8.0.0 ==> v8.0.1
ospd: (commit 36027d4) ==> v2.0.0
ospd-openvas: (commit 3f6d407) ==> v1.0.0
I've been working on a branch to update all of these and will open a PR soon.
I'm currently having an issue where the OpenVAS scanner dies with a segfault:
Looking around, I found greenbone/openvas-scanner#336, and it looks like it's fixed by v10.0.1 of gvm-libs. I think this should just require a small bump in the version referenced in the docker RUN command on L38-49 of the Dockerfile.
openvas-docker/Dockerfile
Lines 38 to 49 in 9b618d8
That being said, a number of the other things built by this image have newer releases (in the same series), and could use an update as well:
openvas: v6.0.0 ==> v6.0.1
gsa: v8.0.0 ==> v8.0.1
gvmd: v8.0.0 ==> v8.0.1
ospd: (commit 36027d4) ==> v2.0.0
ospd-openvas: (commit 3f6d407) ==> v1.0.0
I've been working on a branch to update all of these and will open a PR soon.