Skip to content

Commit

Permalink
Merge pull request #469 from ArnoStiefvater/make-option-visible
Browse files Browse the repository at this point in the history
make test_alive_hosts_only option visible
  • Loading branch information
jjnicola authored Mar 26, 2020
2 parents 4f3237b + 30ac5f7 commit 360c65c
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 0 deletions.
3 changes: 3 additions & 0 deletions doc/openvas.8.in
Original file line number Diff line number Diff line change
Expand Up @@ -86,6 +86,9 @@ change these to something else to reflect the policy of your site. The syntax of
.IP port_range
This is the default range of ports that the scanner plugins will probe. The syntax of this option is flexible, it can be a single range ("1-1500"), several ports ("21,23,80"), several ranges of ports ("1-1500,32000-33000"). Note that you can specify UDP and TCP ports by prefixing each range by T or U. For instance, the following range will make openvas scan UDP ports 1 to 1024 and TCP ports 1 to 65535 : "T:1-65535,U:1-1024".

.IP test_alive_hosts_only
If this option is set to 'yes', openvas will scan the target list for alive hosts in a seperate process while only testing those hosts which are identified as alive. This boosts the scan speed of target ranges with a high amount of dead hosts significantly.

.IP optimize_test
By default, openvas does not trust the remote host banners. It means that it will check a webserver claiming to be IIS for Apache flaws, and so on. This behavior might generate false positive and will slow the scan down somehow. If you are sure the banners of the remote host have not been tampered with, you can safely enable this option, which will force the plugins to perform their job only against the services they have been designed to check.

Expand Down
1 change: 1 addition & 0 deletions src/openvas.c
Original file line number Diff line number Diff line change
Expand Up @@ -127,6 +127,7 @@ static openvas_option openvas_defaults[] = {
{"report_host_details", "yes"},
{"db_address", KB_PATH_DEFAULT},
{"vendor_version", "\0"},
{"test_alive_hosts_only", "no"},
{NULL, NULL}};

static void
Expand Down

0 comments on commit 360c65c

Please sign in to comment.