Skip to content

Commit

Permalink
Merge branch 'main' into fix-false-changes-in-delta-results
Browse files Browse the repository at this point in the history
  • Loading branch information
jhelmold authored Oct 26, 2023
2 parents 7d3548c + 27d1bb4 commit bcffcc1
Show file tree
Hide file tree
Showing 3 changed files with 13 additions and 11 deletions.
18 changes: 10 additions & 8 deletions src/manage.c
Original file line number Diff line number Diff line change
Expand Up @@ -5834,7 +5834,6 @@ get_nvt_xml (iterator_t *nvts, int details, int pref_count,
"<modification_time>%s</modification_time>"
"<category>%d</category>"
"<family>%s</family>"
"<cvss_base>%s</cvss_base>"
"<qod>"
"<value>%s</value>"
"<type>%s</type>"
Expand All @@ -5850,9 +5849,6 @@ get_nvt_xml (iterator_t *nvts, int details, int pref_count,
: "",
nvt_iterator_category (nvts),
family_text,
nvt_iterator_cvss_base (nvts)
? nvt_iterator_cvss_base (nvts)
: "",
nvt_iterator_qod (nvts),
nvt_iterator_qod_type (nvts),
refs_str->str,
Expand All @@ -5861,7 +5857,7 @@ get_nvt_xml (iterator_t *nvts, int details, int pref_count,
}

g_string_append_printf (buffer,
"<severities score=\"%s\">",
"<cvss_base>%s</cvss_base>",
nvt_iterator_cvss_base (nvts)
? nvt_iterator_cvss_base (nvts)
: "");
Expand All @@ -5870,6 +5866,12 @@ get_nvt_xml (iterator_t *nvts, int details, int pref_count,
{
iterator_t severities;

g_string_append_printf (buffer,
"<severities score=\"%s\">",
nvt_iterator_cvss_base (nvts)
? nvt_iterator_cvss_base (nvts)
: "");

init_nvt_severity_iterator (&severities, oid);
while (next (&severities))
{
Expand All @@ -5888,10 +5890,10 @@ get_nvt_xml (iterator_t *nvts, int details, int pref_count,
nvt_severity_iterator_value (&severities));
}
cleanup_iterator (&severities);
}

g_string_append_printf (buffer,
"</severities>");
g_string_append_printf (buffer,
"</severities>");
}

g_free (family_text);
g_string_free (nvt_tags, 1);
Expand Down
4 changes: 2 additions & 2 deletions src/manage_sql_configs.c
Original file line number Diff line number Diff line change
Expand Up @@ -1762,7 +1762,7 @@ init_nvt_preference_iterator (iterator_t* iterator, const char *oid)
" AND name != 'nasl_no_signature_check'"
" AND name != 'network_targets'"
" AND name != 'ntp_save_sessions'"
" AND name != '%s:0:entry:Timeout'"
" AND name != '%s:0:entry:timeout'"
" AND name NOT %s 'server_info_%%'"
/* Task preferences. */
" AND name != 'max_checks'"
Expand All @@ -1782,7 +1782,7 @@ init_nvt_preference_iterator (iterator_t* iterator, const char *oid)
" AND name != 'nasl_no_signature_check'"
" AND name != 'network_targets'"
" AND name != 'ntp_save_sessions'"
" AND name NOT %s '%%:0:entry:Timeout'"
" AND name NOT %s '%%:0:entry:timeout'"
" AND name NOT %s 'server_info_%%'"
/* Task preferences. */
" AND name != 'max_checks'"
Expand Down
2 changes: 1 addition & 1 deletion src/manage_sql_nvts.c
Original file line number Diff line number Diff line change
Expand Up @@ -1210,7 +1210,7 @@ char *
nvt_default_timeout (const char* oid)
{
return sql_string ("SELECT value FROM nvt_preferences"
" WHERE name = '%s:0:entry:Timeout'",
" WHERE name = '%s:0:entry:timeout'",
oid);
}

Expand Down

0 comments on commit bcffcc1

Please sign in to comment.