12#define _FILE_OFFSET_BITS 64
17#include <cjson/cJSON.h>
50 if (!g_strcmp0 (cat,
"init"))
52 else if (!g_strcmp0 (cat,
"scanner"))
54 else if (!g_strcmp0 (cat,
"settings"))
56 else if (!g_strcmp0 (cat,
"gather_info"))
58 else if (!g_strcmp0 (cat,
"attack"))
60 else if (!g_strcmp0 (cat,
"mixed_attack"))
62 else if (!g_strcmp0 (cat,
"destructive_attack"))
64 else if (!g_strcmp0 (cat,
"denial"))
66 else if (!g_strcmp0 (cat,
"kill_host"))
68 else if (!g_strcmp0 (cat,
"flood"))
70 else if (!g_strcmp0 (cat,
"end"))
79 if (cJSON_IsObject (tag_obj))
81 gchar *severity_vector, *str;
107 g_debug (
"%s: SOLUTION: missing type for OID: %s", __func__,
125 if (!severity_vector)
130 gchar *severity_type, *cvss_base;
131 double cvss_base_dbl;
133 if (g_strrstr (severity_vector,
"CVSS:3"))
134 severity_type = g_strdup (
"cvss_base_v3");
136 severity_type = g_strdup (
"cvss_base_v2");
144 cvss_base_dbl, severity_vector));
146 nvti_add_tag (nvt,
"cvss_base_vector", severity_vector);
148 cvss_base = g_strdup_printf (
153 g_free (severity_type);
158 g_warning (
"%s: SEVERITY missing value element", __func__);
170 item = cJSON_GetObjectItem (vt_obj,
"references");
172 && cJSON_IsArray (item))
175 cJSON_ArrayForEach (ref_obj, item)
179 if (!cJSON_IsObject (ref_obj))
180 g_debug (
"%s: Error reading VT/REFS reference object", __func__);
183 g_warning (
"%s: REF missing class attribute", __func__);
186 g_warning (
"%s: REF missing ID attribute", __func__);
199 item = cJSON_GetObjectItem (vt_obj,
"preferences");
202 if (!cJSON_IsArray (item))
203 g_debug (
"%s: Error reading VT/REFS array", __func__);
206 cJSON *prefs_obj = NULL;
208 cJSON_ArrayForEach (prefs_obj, item)
210 gchar *
class, *name, *default_val;
213 if (!cJSON_IsObject (prefs_obj))
214 g_debug (
"%s: Error reading VT/PREFS preference object",
218 g_warning (
"%s: PREF missing class attribute", __func__);
221 g_warning (
"%s: PREF missing id attribute", __func__);
224 g_warning (
"%s: PREF missing name attribute", __func__);
227 g_warning (
"%s: PREF missing default attribute", __func__);
249 cJSON *vt_obj = NULL;
250 gchar *str, *error_message = NULL;
259 g_debug (
"%s: Start parsing feed", __func__);
261 else if (!g_strcmp0 (path,
"$")
265 g_debug (
"%s: Finish parsing feed", __func__);
274 g_warning (
"%s: Error reading VT object", __func__);
279 if (!cJSON_IsObject (vt_obj))
281 g_free (error_message);
282 cJSON_Delete (vt_obj);
285 g_free (error_message);
291 g_warning (
"%s: VT missing OID", __func__);
292 cJSON_Delete (vt_obj);
300 g_warning (
"%s: VT missing NAME", __func__);
301 cJSON_Delete (vt_obj);
309 g_warning (
"%s: VT missing FAMILY", __func__);
310 cJSON_Delete (vt_obj);
318 g_warning (
"%s: VT missing CATEGORY", __func__);
319 cJSON_Delete (vt_obj);
325 cJSON *tag_obj = cJSON_GetObjectItem (vt_obj,
"tag");
331 cJSON_Delete (vt_obj);
double get_cvss_score_from_base_metrics(const char *cvss_str)
Calculate CVSS Score.
Definition cvss.c:585
Protos for CVSS utility functions.
double gvm_json_obj_double(cJSON *obj, const gchar *key)
Get a double field from a JSON object.
Definition json.c:75
int gvm_json_obj_check_int(cJSON *obj, const gchar *key, int *val)
Get an int field from a JSON object.
Definition json.c:97
gchar * gvm_json_obj_str(cJSON *obj, const gchar *key)
Get a string field from a JSON object.
Definition json.c:165
int gvm_json_obj_check_str(cJSON *obj, const gchar *key, gchar **val)
Get a string field from a JSON object.
Definition json.c:142
void gvm_json_pull_parser_next(gvm_json_pull_parser_t *parser, gvm_json_pull_event_t *event)
Get the next event from a JSON pull parser.
Definition jsonpull.c:669
gchar * gvm_json_path_to_string(GQueue *path)
Converts a path as used by a JSON pull parser to a JSONPath string.
Definition jsonpull.c:902
cJSON * gvm_json_pull_expand_container(gvm_json_pull_parser_t *parser, gchar **error_message)
Expands the current array or object of a JSON pull parser.
Definition jsonpull.c:744
@ GVM_JSON_PULL_EVENT_OBJECT_START
Definition jsonpull.h:45
@ GVM_JSON_PULL_EVENT_EOF
Definition jsonpull.h:51
@ GVM_JSON_PULL_EVENT_ARRAY_END
Definition jsonpull.h:44
@ GVM_JSON_PULL_EVENT_ARRAY_START
Definition jsonpull.h:43
nvti_t * nvti_new(void)
Create a new (empty) nvti structure.
Definition nvti.c:559
int nvti_set_qod(nvti_t *n, const gchar *qod)
Set the QoD of a NVT.
Definition nvti.c:1880
int nvti_set_solution(nvti_t *n, const gchar *solution)
Set the solution of a NVT.
Definition nvti.c:1472
int nvti_set_solution_type(nvti_t *n, const gchar *solution_type)
Set the solution type of a NVT.
Definition nvti.c:1513
struct nvti nvti_t
The structure of a information record that corresponds to a NVT.
int nvti_set_qod_type(nvti_t *n, const gchar *qod_type)
Set the QoD type of a NVT.
Definition nvti.c:1856
int nvti_set_oid(nvti_t *n, const gchar *oid)
Set the OID of a NVT Info.
Definition nvti.c:1214
int nvti_set_cvss_base(nvti_t *n, const gchar *cvss_base)
Set the CVSS base of an NVT.
Definition nvti.c:1648
int nvti_set_impact(nvti_t *n, const gchar *impact)
Set the impact text of a NVT.
Definition nvti.c:1394
int nvti_set_summary(nvti_t *n, const gchar *summary)
Set the summary of a NVT.
Definition nvti.c:1274
gchar * nvti_oid(const nvti_t *n)
Get the OID string.
Definition nvti.c:611
nvtpref_t * nvtpref_new(int id, const gchar *name, const gchar *type, const gchar *dflt)
Create a new nvtpref structure filled with the given values.
Definition nvti.c:463
int nvti_add_pref(nvti_t *n, nvtpref_t *np)
Add a preference to the NVT Info.
Definition nvti.c:2180
int nvti_set_insight(nvti_t *n, const gchar *insight)
Set the insight text of a NVT.
Definition nvti.c:1314
vtref_t * vtref_new(const gchar *type, const gchar *ref_id, const gchar *ref_text)
Create a new vtref structure filled with the given values.
Definition nvti.c:77
int nvti_add_vtseverity(nvti_t *vt, vtseverity_t *s)
Add a severity to the VT Info.
Definition nvti.c:426
int nvti_set_solution_method(nvti_t *n, const gchar *solution_method)
Set the solution method of a NVT.
Definition nvti.c:1534
int nvti_set_name(nvti_t *n, const gchar *name)
Set the name of a NVT.
Definition nvti.c:1234
vtseverity_t * vtseverity_new(const gchar *type, const gchar *origin, int date, double score, const gchar *value)
Create a new vtseverity structure filled with the given values.
Definition nvti.c:180
int nvti_set_modification_time(nvti_t *n, const time_t modification_time)
Set the modification time of a NVT.
Definition nvti.c:1453
int nvti_set_creation_time(nvti_t *n, const time_t creation_time)
Set the creation time of a NVT.
Definition nvti.c:1434
int nvti_set_family(nvti_t *n, const gchar *family)
Set the family of a NVT.
Definition nvti.c:1903
int nvti_set_affected(nvti_t *n, const gchar *affected)
Set the affected text of a NVT.
Definition nvti.c:1354
int nvti_add_tag(nvti_t *n, const gchar *name, const gchar *value)
Add a tag to the NVT tags. The tag names "severity_date", "last_modification" and "creation_date" are...
Definition nvti.c:1561
int nvti_set_detection(nvti_t *n, const gchar *detection)
Set the detection text of a NVT.
Definition nvti.c:1815
int nvti_set_category(nvti_t *n, const gint category)
Set the category type of a NVT Info.
Definition nvti.c:1943
void nvti_free(nvti_t *n)
Free memory of a nvti structure.
Definition nvti.c:570
int nvti_add_vtref(nvti_t *vt, vtref_t *ref)
Add a reference to the VT Info.
Definition nvti.c:408
API for Openvas Daemon communication.
Event generated by the JSON pull parser.
Definition jsonpull.h:59
GQueue * path
Path to the event value.
Definition jsonpull.h:61
gvm_json_pull_event_type_t type
Type of event.
Definition jsonpull.h:60
A json pull parser.
Definition jsonpull.h:86
static void add_preferences_to_nvt(nvti_t *nvt, cJSON *vt_obj)
Definition vtparser.c:195
static int get_category_from_name(const gchar *cat)
Get the VT category type given the category as string.
Definition vtparser.c:48
nvt_category
VT categories.
Definition vtparser.c:26
@ ACT_KILL_HOST
Definition vtparser.c:35
@ ACT_DESTRUCTIVE_ATTACK
Definition vtparser.c:33
@ ACT_SCANNER
Definition vtparser.c:28
@ ACT_END
Definition vtparser.c:37
@ ACT_FLOOD
Definition vtparser.c:36
@ ACT_GATHER_INFO
Definition vtparser.c:30
@ ACT_DENIAL
Definition vtparser.c:34
@ ACT_ATTACK
Definition vtparser.c:31
@ ACT_SETTINGS
Definition vtparser.c:29
@ ACT_MIXED_ATTACK
Definition vtparser.c:32
@ ACT_INIT
Definition vtparser.c:27
static void parse_references(nvti_t *nvt, cJSON *vt_obj)
Definition vtparser.c:166
static void add_tags_to_nvt(nvti_t *nvt, cJSON *tag_obj)
Definition vtparser.c:77
nvti_t * openvasd_parse_vt(gvm_json_pull_parser_t *parser, gvm_json_pull_event_t *event)
Parse a VT element given in json format.
Definition vtparser.c:246