Skip to content

Commit 55c53e1

Browse files
authored
Merge pull request #293 from jjnicola/new-release
Preparing for release openvas-scanner-6.0
2 parents 52a3689 + fc6ebde commit 55c53e1

File tree

7 files changed

+28
-16
lines changed

7 files changed

+28
-16
lines changed

.circleci/config.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ jobs:
77
- run:
88
working_directory: ~/gvm-libs
99
name: Checkout gvm-libs
10-
command: git clone --depth 1 https://github.com/greenbone/gvm-libs.git -b gvm-libs-1.0
10+
command: git clone --depth 1 https://github.com/greenbone/gvm-libs.git -b gvm-libs-10.0
1111
- run:
1212
working_directory: ~/gvm-libs
1313
name: Configure and compile gvm-libs
@@ -23,7 +23,7 @@ jobs:
2323
- run:
2424
working_directory: ~/gvm-libs
2525
name: Checkout gvm-libs
26-
command: git clone --depth 1 https://github.com/greenbone/gvm-libs.git -b gvm-libs-1.0
26+
command: git clone --depth 1 https://github.com/greenbone/gvm-libs.git -b gvm-libs-10.0
2727
- run:
2828
working_directory: ~/gvm-libs
2929
name: Configure and compile gvm-libs

CHANGES

Lines changed: 14 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,9 +5,18 @@ For detailed code changes, please visit
55
https://github.com/greenbone/openvas-scanner/commits/master
66
or get the entire source code repository and view log history:
77
$ git clone https://github.com/greenbone/openvas-scanner.git
8-
$ cd openvas-scanner && git log
8+
$ cd openvas-scanner && git checkout openvas-scanner-6.0 && git log
99

10-
openvas-scanner 6.0.0 (unreleased)
10+
openvas-scanner 6.0.0 (2019-04-05)
11+
12+
This is the first release of the openvas-scanner module 6.0 for the
13+
Greenbone Vulnerability Management (GVM) framework.
14+
15+
This version inherits all elements of the former openvas-libraries that were
16+
used by OpenVAS Scanner only.
17+
18+
Apart from this, the module covers a number of significant advances
19+
and clean-ups.
1120

1221
Main changes compared to openvas-scanner 6.0+beta2:
1322
* Function to get the currently running script filename has been added.
@@ -20,6 +29,9 @@ Main changes compared to openvas-scanner 6.0+beta2:
2029
has been addressed.
2130
* An issue which caused returning erroneous values by
2231
get_plugin_preference() has been addressed.
32+
* An issue which cause stuck scans where only a single plugin is running
33+
and is beyond its timeout has been addressed.
34+
* Unused internal_send/recv() functions have been removed.
2335
* Issues reported by static code analysis have been addressed.
2436
* Issues in building process have been addressed.
2537
* Several code improvements and clean-ups have been done.

CMakeLists.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -62,7 +62,7 @@ endif (CLANG_FORMAT)
6262

6363
# Set beta version if this is a beta release series,
6464
# unset if this is a stable release series.
65-
set (PROJECT_BETA_RELEASE 3)
65+
set (PROJECT_BETA_RELEASE 0)
6666

6767
if (GIT_REVISION)
6868
set (PROJECT_VERSION_GIT "${GIT_REVISION}")

INSTALL.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ Prerequisites for openvas-scanner
1111
Prerequisites:
1212
* a C compiler (e.g. gcc)
1313
* cmake >= 3.0
14-
* libgvm_base, libgvm_util >= 1.0.0
14+
* libgvm_base, libgvm_util >= 10.0.0
1515
* glib-2.0 >= 2.42
1616
* gio-2.0
1717
* bison
@@ -31,7 +31,7 @@ Prerequisites for building documentation:
3131
* sqlfairy (optional, for producing database diagram)
3232

3333
Recommended to have WMI support:
34-
* openvas-smb >= 1.0.1
34+
* openvas-smb >= 1.0.4
3535

3636
Recommended for extended Windows support (e.g. automatically start the remote registry service):
3737
* wmiexec.py of python-impacket >= 0.9.15 found within your PATH

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44

55
[![GitHub releases](https://img.shields.io/github/release/greenbone/openvas-scanner.svg)](https://github.com/greenbone/openvas-scanner/releases)
66
[![Code Documentation Coverage](https://img.shields.io/codecov/c/github/greenbone/openvas-scanner.svg?label=Doc%20Coverage&logo=codecov)](https://codecov.io/gh/greenbone/openvas-scanner)
7-
[![CircleCI](https://circleci.com/gh/greenbone/openvas-scanner/tree/master.svg?style=svg)](https://circleci.com/gh/greenbone/openvas-scanner/tree/master)
7+
[![CircleCI](https://circleci.com/gh/greenbone/openvas-scanner/tree/openvas-scanner-6.0.svg?style=svg)](https://circleci.com/gh/greenbone/openvas-scanner/tree/openvas-scanner-6.0)
88

99
This is the Open Vulnerability Assessment System (OpenVAS) Scanner of the
1010
Greenbone Vulnerability Management (GVM) Solution.

misc/CMakeLists.txt

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -28,11 +28,11 @@ endif (NOT PKG_CONFIG_FOUND)
2828
pkg_check_modules (GLIB REQUIRED glib-2.0>=2.42)
2929
pkg_check_modules (GNUTLS REQUIRED gnutls>=3.2.15)
3030

31-
pkg_check_modules (LIBGVM_BASE REQUIRED libgvm_base>=1.0.0)
32-
pkg_check_modules (LIBGVM_UTIL REQUIRED libgvm_util>=1.0.0)
31+
pkg_check_modules (LIBGVM_BASE REQUIRED libgvm_base>=10.0.0)
32+
pkg_check_modules (LIBGVM_UTIL REQUIRED libgvm_util>=10.0.0)
3333

34-
pkg_check_modules (OPENVAS_WMICLIENT libopenvas_wmiclient>=1.0.1)
35-
pkg_check_modules (OPENVAS_WINCMD libopenvas_wincmd>=1.0.1)
34+
pkg_check_modules (OPENVAS_WMICLIENT libopenvas_wmiclient>=1.0.4)
35+
pkg_check_modules (OPENVAS_WINCMD libopenvas_wincmd>=1.0.4)
3636

3737
message (STATUS "Looking for pcap...")
3838
find_library (PCAP pcap)

nasl/CMakeLists.txt

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -44,11 +44,11 @@ endif (NOT PKG_CONFIG_FOUND)
4444
pkg_check_modules (GLIB REQUIRED glib-2.0>=2.42)
4545
pkg_check_modules (GIO REQUIRED gio-2.0)
4646
pkg_check_modules (GNUTLS REQUIRED gnutls>=3.2.15)
47-
pkg_check_modules (LIBGVM_BASE REQUIRED libgvm_base>=1.0.0)
48-
pkg_check_modules (LIBGVM_UTIL REQUIRED libgvm_util>=1.0.0)
47+
pkg_check_modules (LIBGVM_BASE REQUIRED libgvm_base>=10.0.0)
48+
pkg_check_modules (LIBGVM_UTIL REQUIRED libgvm_util>=10.0.0)
4949

50-
pkg_check_modules (OPENVAS_WMICLIENT libopenvas_wmiclient>=1.0.1)
51-
pkg_check_modules (OPENVAS_WINCMD libopenvas_wincmd>=1.0.1)
50+
pkg_check_modules (OPENVAS_WMICLIENT libopenvas_wmiclient>=1.0.4)
51+
pkg_check_modules (OPENVAS_WINCMD libopenvas_wincmd>=1.0.4)
5252

5353

5454
# for 'nasl' binary

0 commit comments

Comments
 (0)