1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729 730 731 732 733 734 735 736 737 738 739 740 741 742 743 744 745 746 747 748 749 750 751 752 753 754 755 756 757 758 759 760 761 762 763 764 765 766 767 768 769 770 771 772 773 774 775 776 777 778 779 780 781 782 783 784 785 786 787 788 789 790 791 792 793 794 795 796 797 798 799 800 801 802 803 804 805 806 807 808 809 810 811 812 813 814 815 816 817 818 819 820 821 822 823 824 825 826 827 828 829 830 831 832 833 834 835 836 837 838 839 840 841 842 843 844 845 846 847 848 849 850 851 852 853 854 855 856 857 858 859 860 861 862 863 864 865 866 867 868 869 870 871 872 873 874 875 876 877 878 879 880 881 882 883 884 885 886 887 888 889 890 891 892 893 894 895 896 897 898 899 900 901 902 903 904 905 906 907 908 909 910 911 912 913 914 915 916 917 918 919 920 921 922 923 924 925 926 927 928 929 930 931 932 933 934 935 936 937 938 939 940 941 942 943 944 945 946 947 948 949 950 951 952 953 954 955 956 957 958 959 960 961 962 963 964 965 966 967 968 969 970 971 972 973 974 975 976 977 978 979 980 981 982 983 984 985 986 987 988 989 990 991 992 993 994 995 996 997 998 999 1000 1001 1002 1003 1004 1005 1006 1007 1008 1009 1010 1011 1012 1013 1014 1015 1016 1017 1018 1019 1020 1021 1022 1023 1024 1025 1026 1027 1028 1029 1030 1031 1032 1033 1034 1035 1036 1037 1038 1039 1040 1041 1042 1043 1044 1045 1046 1047 1048 1049 1050 1051 1052 1053 1054 1055 1056 1057 1058 1059 1060 1061 1062 1063 1064 1065 1066 1067 1068 1069 1070 1071 1072 1073 1074 1075 1076 1077 1078 1079 1080 1081 1082 1083 1084 1085 1086 1087 1088 1089 1090 1091 1092 1093 1094 1095 1096 1097 1098 1099 1100 1101 1102 1103 1104 1105 1106 1107 1108 1109 1110 1111 1112 1113 1114 1115 1116 1117 1118 1119 1120 1121 1122 1123 1124 1125 1126 1127 1128 1129 1130 1131 1132 1133 1134 1135 1136 1137 1138 1139 1140 1141 1142 1143 1144 1145 1146 1147 1148 1149 1150 1151 1152 1153 1154 1155 1156 1157 1158 1159 1160 1161 1162 1163 1164 1165 1166 1167 1168 1169 1170 1171 1172 1173 1174 1175 1176 1177 1178 1179 1180 1181 1182 1183 1184 1185 1186 1187 1188 1189 1190 1191 1192 1193 1194 1195 1196 1197 1198 1199 1200 1201 1202 1203 1204 1205 1206 1207 1208 1209 1210 1211 1212 1213 1214 1215 1216 1217 1218 1219 1220 1221 1222 1223 1224 1225 1226 1227 1228 1229 1230 1231 1232 1233 1234 1235 1236 1237 1238 1239 1240 1241 1242 1243 1244 1245 1246 1247 1248 1249 1250 1251 1252 1253 1254 1255 1256 1257 1258 1259 1260 1261 1262 1263 1264 1265 1266 1267 1268 1269 1270
|
/* SPDX-FileCopyrightText: 2023 Greenbone AG
*
* SPDX-License-Identifier: GPL-2.0-or-later
*/
/**
* @file table_drive_lsc.c
* @brief Function to start a table driven lsc.
*/
#include "table_driven_lsc.h"
#include "base/networking.h"
#include "kb_cache.h"
#include "plugutils.h"
#include <ctype.h> // for tolower()
#include <curl/curl.h>
#include <gnutls/gnutls.h>
#include <gvm/base/prefs.h>
#include <gvm/util/mqtt.h> // for mqtt_reset
#include <gvm/util/uuidutils.h> // for gvm_uuid_make
#include <json-glib/json-glib.h>
#include <stddef.h>
#undef G_LOG_DOMAIN
/**
* @brief GLib logging domain.
*/
#define G_LOG_DOMAIN "lib misc"
/** @brief LSC ran or didn't
* 0 didn't run. 1 ran.
*/
static int lsc_flag = 0;
/** @brief Set lsc_flag to 1
*/
void
set_lsc_flag (void)
{
lsc_flag = 1;
}
/** @brief Get lsc_flag value.
*/
int
lsc_has_run (void)
{
return lsc_flag;
}
/**
* @brief Split the package list string and creates a json array.
*
* JSON result consists of scan_id, message type, host ip, hostname, port
* together with proto, OID, result message and uri.
*
* @param[in/out] builder The Json builder to add the array to.
* @param[in] packages The installed package list as string
*
* @return JSON builder including the package list as array.
*/
static JsonBuilder *
add_packages_str_to_list (JsonBuilder *builder, const gchar *packages)
{
gchar **package_list = NULL;
json_builder_set_member_name (builder, "package_list");
json_builder_begin_array (builder);
package_list = g_strsplit (packages, "\n", 0);
if (package_list && package_list[0])
{
int i;
for (i = 0; package_list[i]; i++)
json_builder_add_string_value (builder, package_list[i]);
}
json_builder_end_array (builder);
g_strfreev (package_list);
return builder;
}
/**
* @brief Build a json object with data necessary to start a table drive LSC
*
* JSON result consists of scan_id, message type, host ip, hostname, port
* together with proto, OID, result message and uri.
*
* @param scan_id Scan Id.
* @param ip_str IP string of host.
* @param hostname Name of host.
* @param os_release OS release
* @param package_list The installed package list in the target system to be
* evaluated
*
* @return JSON string on success. Must be freed by caller. NULL on error.
*/
static gchar *
make_table_driven_lsc_info_json_str (const char *scan_id, const char *ip_str,
const char *hostname,
const char *os_release,
const char *package_list)
{
JsonBuilder *builder;
JsonGenerator *gen;
JsonNode *root;
gchar *json_str;
/* Build the message in json format to be published. */
builder = json_builder_new ();
json_builder_begin_object (builder);
json_builder_set_member_name (builder, "message_id");
builder = json_builder_add_string_value (builder, gvm_uuid_make ());
json_builder_set_member_name (builder, "group_id");
builder = json_builder_add_string_value (builder, gvm_uuid_make ());
json_builder_set_member_name (builder, "message_type");
builder = json_builder_add_string_value (builder, "scan.start");
json_builder_set_member_name (builder, "created");
builder = json_builder_add_int_value (builder, time (NULL));
json_builder_set_member_name (builder, "scan_id");
builder = json_builder_add_string_value (builder, scan_id);
json_builder_set_member_name (builder, "host_ip");
json_builder_add_string_value (builder, ip_str);
json_builder_set_member_name (builder, "host_name");
json_builder_add_string_value (builder, hostname);
json_builder_set_member_name (builder, "os_release");
json_builder_add_string_value (builder, os_release);
add_packages_str_to_list (builder, package_list);
json_builder_end_object (builder);
gen = json_generator_new ();
root = json_builder_get_root (builder);
json_generator_set_root (gen, root);
json_str = json_generator_to_data (gen, NULL);
json_node_free (root);
g_object_unref (gen);
g_object_unref (builder);
if (json_str == NULL)
g_warning ("%s: Error while creating JSON.", __func__);
return json_str;
}
/**
* @brief Get the status of table driven lsc from json object
*
* Checks for the corresponding status inside the JSON. If the status does not
* belong the the scan or host, NULL is returned instead. NULL is also returned
* if message JSON cannot be parsed correctly. Return value has to be freed by
* caller.
*
* @param scan_id id of scan
* @param host_ip ip of host
* @param json json to get information from
* @param len length of json
* @return gchar* Status of table driven lsc or NULL
*/
static gchar *
get_status_of_table_driven_lsc_from_json (const char *scan_id,
const char *host_ip, const char *json,
int len)
{
JsonParser *parser;
JsonReader *reader = NULL;
GError *err = NULL;
gchar *ret = NULL;
parser = json_parser_new ();
if (!json_parser_load_from_data (parser, json, len, &err))
{
goto cleanup;
}
reader = json_reader_new (json_parser_get_root (parser));
// Check for Scan ID
if (!json_reader_read_member (reader, "scan_id"))
{
goto cleanup;
}
if (g_strcmp0 (json_reader_get_string_value (reader), scan_id))
{
goto cleanup;
}
json_reader_end_member (reader);
// Check Host IP
if (!json_reader_read_member (reader, "host_ip"))
{
goto cleanup;
}
if (g_strcmp0 (json_reader_get_string_value (reader), host_ip))
{
goto cleanup;
}
json_reader_end_member (reader);
// Check Status
if (!json_reader_read_member (reader, "status"))
{
goto cleanup;
}
ret = g_strdup (json_reader_get_string_value (reader));
json_reader_end_member (reader);
cleanup:
if (reader)
g_object_unref (reader);
g_object_unref (parser);
if (err != NULL)
{
g_warning ("%s: Unable to parse json. Reason: %s", __func__,
err->message);
}
return ret;
}
#define RSNOTUS
#ifdef RSNOTUS
/** @brief Struct to hold necessary information to call and run notus
*
*/
struct notus_info
{
char *server; // original openvasd server URL
char *schema; // schema is http or https
char *host; // server hostname
char *alpn; // Application layer protocol negotiation: http/1.0, http/1.1, h2
char *http_version; // same version as in application layer
int port; // server port
int tls; // 0: TLS encapsulation disable. Otherwise enable
};
typedef struct notus_info *notus_info_t;
/** @brief Initialize a notus info struct and stores the server URL
*
* @param server Original server to store and to get the info from
*
* @return the initialized struct. NULL on error.
*/
static notus_info_t
init_notus_info (const char *server)
{
notus_info_t notusdata;
notusdata = g_malloc0 (sizeof (struct notus_info));
if (!notusdata)
return NULL;
notusdata->server = g_strdup (server);
return notusdata;
}
/** @brief Free notus info structure
*
* @param notusdata The data to free()
*/
static void
free_notus_info (notus_info_t notusdata)
{
if (notusdata)
{
g_free (notusdata->server);
g_free (notusdata->schema);
g_free (notusdata->host);
g_free (notusdata->alpn);
g_free (notusdata->http_version);
}
}
/** @brief helper function to lower case
*
* @param s the string to lower case
*
* @return pointer to the modified string.
*/
static char *
help_tolower (char *s)
{
for (char *p = s; *p; p++)
*p = tolower (*p);
return s;
}
/**
* @brief Build a json array from the package list to start a table drive LSC
*
* @param packages The installed package list in the target system to be
* evaluated
*
* @return String in json format on success. Must be freed by caller. NULL on
* error.
*/
static gchar *
make_package_list_as_json_str (const char *packages)
{
JsonBuilder *builder;
JsonGenerator *gen;
JsonNode *root;
gchar *json_str = NULL;
gchar **package_list = NULL;
builder = json_builder_new ();
json_builder_begin_array (builder);
package_list = g_strsplit (packages, "\n", 0);
if (package_list && package_list[0])
{
int i;
for (i = 0; package_list[i]; i++)
json_builder_add_string_value (builder, package_list[i]);
}
json_builder_end_array (builder);
g_strfreev (package_list);
gen = json_generator_new ();
root = json_builder_get_root (builder);
json_generator_set_root (gen, root);
json_str = json_generator_to_data (gen, NULL);
json_node_free (root);
g_object_unref (gen);
g_object_unref (builder);
if (json_str == NULL)
g_warning ("%s: Error while creating JSON.", __func__);
return json_str;
}
/** @brief Parse the server URL
*
* @param[in] server String containing the server URL
* Valid is http://example.com:1234
* or https://example.com.1234.
* @notusdata[out] Structure to store information from the URL
*
* @return 0 on success, -1 on error.
*/
static int
parse_server (notus_info_t *notusdata)
{
CURLU *h = curl_url ();
char *schema = NULL;
char *host = NULL;
char *port = NULL;
if (!notusdata)
return -1;
if (curl_url_set (h, CURLUPART_URL, (*notusdata)->server, 0) > 0)
{
g_warning ("%s: Error parsing URL %s", __func__, (*notusdata)->server);
return -1;
}
curl_url_get (h, CURLUPART_SCHEME, &schema, 0);
curl_url_get (h, CURLUPART_HOST, &host, 0);
curl_url_get (h, CURLUPART_PORT, &port, 0);
if (!schema || !host)
{
g_warning ("%s: Invalid URL %s. It must be in format: "
"schema://host:port. E.g. http://localhost:8080",
__func__, (*notusdata)->server);
curl_url_cleanup (h);
curl_free (schema);
curl_free (host);
curl_free (port);
return -1;
}
(*notusdata)->host = g_strdup (host);
if (port)
(*notusdata)->port = atoi (port);
else if (g_strcmp0 (schema, "https"))
(*notusdata)->port = 443;
else
(*notusdata)->port = 80;
(*notusdata)->schema = g_strdup (help_tolower (schema));
if (g_strrstr ((*notusdata)->schema, "https"))
{
(*notusdata)->tls = 1;
(*notusdata)->http_version = g_strdup ("2");
(*notusdata)->alpn = g_strdup ("h2");
}
else if (g_strrstr ((*notusdata)->schema, "http"))
{
(*notusdata)->tls = 0;
(*notusdata)->http_version = g_strdup ("1.1");
(*notusdata)->alpn = g_strdup ("http/1.1");
}
else
{
g_warning ("%s: Invalid openvasd server schema", (*notusdata)->server);
curl_url_cleanup (h);
curl_free (schema);
curl_free (host);
curl_free (port);
return -1;
}
curl_url_cleanup (h);
curl_free (schema);
curl_free (host);
curl_free (port);
return 0;
}
/** @brief Initialize a new advisories struct with 100 slots
*
* @return initialized advisories_t struct. It must be free by the caller
* with advisories_free()
*/
static advisories_t *
advisories_new_notus ()
{
advisories_t *advisories_list = g_malloc0 (sizeof (advisories_t));
advisories_list->max_size = 100;
advisories_list->advisories =
g_malloc0_n (advisories_list->max_size, sizeof (advisory_t));
advisories_list->type = NOTUS;
return advisories_list;
}
/** @brief Initialize a new advisories struct with 100 slots
*
* @return initialized advisories_t struct. It must be free by the caller
* with advisories_free()
*/
static advisories_t *
advisories_new_skiron ()
{
advisories_t *advisories_list = g_malloc0 (sizeof (advisories_t));
advisories_list->max_size = 100;
advisories_list->skiron_advisory =
g_malloc0_n (advisories_list->max_size, sizeof (skiron_advisory_t));
advisories_list->type = SKIRON;
return advisories_list;
}
/** @brief Initialize a new advisories struct with 100 slots
*
* @param advisories_list[in/out] An advisories holder to add new advisories
into.
* @param notus_advisory[in] the new notus_advisory to add in the list
*
*/
static void
advisories_add (advisories_t *advisories_list, advisory_t *notus_advisory)
{
// Reallocate more memory if the list is full
if (advisories_list->count == advisories_list->max_size)
{
advisories_list->max_size *= 2;
advisories_list->advisories =
g_realloc_n (advisories_list->advisories, advisories_list->max_size,
sizeof (advisory_t));
memset (advisories_list->advisories + advisories_list->count, '\0',
(advisories_list->max_size - advisories_list->count)
* sizeof (advisory_t *));
}
advisories_list->advisories[advisories_list->count] = notus_advisory;
advisories_list->count++;
}
/** @brief Initialize a new notus_advisory
*
* @param oid The notus_advisory's OID
*
* @return initialized advisory_t struct
*/
static advisory_t *
advisory_new (char *oid)
{
advisory_t *adv = NULL;
adv = g_malloc0 (sizeof (advisory_t));
adv->oid = g_strdup (oid);
adv->count = 0;
return adv;
}
static skiron_advisory_t *
skiron_advisory_new (char *oid, char *message)
{
skiron_advisory_t *adv = NULL;
adv = g_malloc0 (sizeof (skiron_advisory_t));
adv->oid = g_strdup (oid);
adv->message = g_strdup (message);
return adv;
}
/** @brief Add a new vulnerability to the notus_advisory.
*
* @description Each notus_advisory can have multiple vulnerable packages
* This structure can hold up to 100 packages.
*
* @param adv[in/out] The notus_advisory to add the vulnerable package into
* @param vuln[in] The vulnerable package to add.
*/
static void
advisory_add_vuln_pkg (advisory_t *adv, vuln_pkg_t *vuln)
{
if (adv->count == 100)
{
g_warning (
"%s: Failed adding new vulnerable package to the notus_advisory %s. "
"No more free slots",
__func__, adv->oid);
return;
}
adv->pkgs[adv->count] = vuln;
adv->count++;
}
/** @brief Free()'s an notus_advisory
*
* @param notus_advisory The notus_advisory to be free()'ed.
* It free()'s all vulnerable packages that belong to this notus_advisory.
*/
static void
advisory_free (advisory_t *notus_advisory)
{
if (notus_advisory == NULL)
return;
g_free (notus_advisory->oid);
for (size_t i = 0; i < notus_advisory->count; i++)
{
if (notus_advisory->pkgs[i] != NULL)
{
g_free (notus_advisory->pkgs[i]->pkg_name);
g_free (notus_advisory->pkgs[i]->install_version);
if (notus_advisory->pkgs[i]->type == RANGE)
{
g_free (notus_advisory->pkgs[i]->range->start);
g_free (notus_advisory->pkgs[i]->range->stop);
}
else if (notus_advisory->pkgs[i]->type == SINGLE)
{
g_free (notus_advisory->pkgs[i]->version->version);
g_free (notus_advisory->pkgs[i]->version->specifier);
}
}
}
notus_advisory = NULL;
}
/** @brief Free()'s an advisories
*
* @param notus_advisory The advisories holder to be free()'ed.
* It free()'s all advisories members.
*/
void
advisories_free (advisories_t *advisories)
{
if (advisories == NULL)
return;
for (size_t i = 0; i < advisories->count; i++)
advisory_free (advisories->advisories[i]);
advisories = NULL;
}
/** @brief Creates a new Vulnerable packages which belongs to an notus_advisory
*
* @param pkg_name
* @param install_version
* @param type Data type specifying how the fixed version is stored.
* Can be RANGE or SINGLE
* @param item1 Depending on the type is the "version" for SINGLE type,
* or the "less than" for RANGE type
* @param item2 Depending on the type is the "specifier" for SINGLE type,
* or the "greater than" for RANGE type
*
* @return a vulnerable packages struct. Members are a copy of the passed
* parameters. They must be free separately.
*/
static vuln_pkg_t *
vulnerable_pkg_new (const char *pkg_name, const char *install_version,
enum fixed_type type, char *item1, char *item2)
{
vuln_pkg_t *vuln = NULL;
version_range_t *range = NULL;
fixed_version_t *fixed_ver = NULL;
vuln = g_malloc0 (sizeof (vuln_pkg_t));
vuln->pkg_name = g_strdup (pkg_name);
vuln->install_version = g_strdup (install_version);
vuln->type = type;
if (type == RANGE)
{
range = g_malloc0 (sizeof (range_t));
range->start = g_strdup (item1);
range->stop = g_strdup (item2);
vuln->range = range;
}
else
{
fixed_ver = g_malloc0 (sizeof (fixed_version_t));
fixed_ver->version = g_strdup (item1);
fixed_ver->specifier = g_strdup (item2);
vuln->version = fixed_ver;
}
return vuln;
}
static advisories_t *
lsc_process_response_notus (JsonReader *reader)
{
advisories_t *advisories = advisories_new_notus ();
advisories->type = NOTUS;
char **members = json_reader_list_members (reader);
if (!members || !members[0])
{
g_debug ("No members found");
return NULL;
}
for (int i = 0; members[i]; i++)
{
advisory_t *notus_advisory;
if (!json_reader_read_member (reader, members[i]))
{
g_debug ("No member oid");
return NULL;
}
if (!json_reader_is_array (reader))
{
g_debug ("Is not an array");
return NULL;
}
notus_advisory = advisory_new (g_strdup (members[i]));
int count_pkgs = json_reader_count_elements (reader);
g_debug ("There are %d packages for notus_advisory %s", count_pkgs,
members[i]);
for (int j = 0; j < count_pkgs; j++)
{
vuln_pkg_t *pkg = NULL;
char *name = NULL;
char *installed_version = NULL;
char *start = NULL;
char *stop = NULL;
char *version = NULL;
char *specifier = NULL;
enum fixed_type type = UNKNOWN;
json_reader_read_element (reader, j);
if (!json_reader_is_object (reader))
{
g_warning ("%s: Package %d of notus_advisory %s is not an object",
__func__, j, members[i]);
advisories_free (advisories);
return NULL;
}
json_reader_read_member (reader, "name");
name = g_strdup (json_reader_get_string_value (reader));
json_reader_end_member (reader);
g_debug ("name: %s", name);
json_reader_read_member (reader, "installed_version");
installed_version = g_strdup (json_reader_get_string_value (reader));
json_reader_end_member (reader);
g_debug ("installed_version: %s", installed_version);
json_reader_read_member (reader, "fixed_version");
g_debug ("Fixed_version has %d members",
json_reader_count_members (reader));
// Version Range
json_reader_read_member (reader, "start");
start = g_strdup (json_reader_get_string_value (reader));
json_reader_end_member (reader);
json_reader_read_member (reader, "end");
stop = g_strdup (json_reader_get_string_value (reader));
json_reader_end_member (reader);
g_debug ("start %s, end: %s", start, stop);
// version and specifier
json_reader_read_member (reader, "version");
version = g_strdup (json_reader_get_string_value (reader));
json_reader_end_member (reader);
json_reader_read_member (reader, "specifier");
specifier = g_strdup (json_reader_get_string_value (reader));
json_reader_end_member (reader);
g_debug ("version %s, specifier: %s", version, specifier);
// end read fixes version member
json_reader_end_member (reader);
// end package element
json_reader_end_element (reader);
char *item1 = NULL, *item2 = NULL;
if (start && stop)
{
type = RANGE;
item1 = start;
item2 = stop;
}
else if (version && specifier)
{
type = SINGLE;
item1 = version;
item2 = specifier;
}
else
{
g_warning ("%s: Error parsing json element", __func__);
g_free (name);
g_free (installed_version);
g_free (item1);
g_free (item2);
advisories_free (advisories);
return NULL;
}
pkg =
vulnerable_pkg_new (name, installed_version, type, item1, item2);
g_free (name);
g_free (installed_version);
g_free (item1);
g_free (item2);
advisory_add_vuln_pkg (notus_advisory, pkg);
}
// end notus_advisory
json_reader_end_member (reader);
advisories_add (advisories, notus_advisory);
}
return advisories;
}
static advisories_t *
lsc_process_response_skiron (JsonReader *reader)
{
advisories_t *advisories = advisories_new_skiron ();
for (int i = 0; json_reader_read_element (reader, i); i++)
{
skiron_advisory_t *skiron_advisory;
char *oid = NULL;
char *message = NULL;
json_reader_read_member (reader, "oid");
oid = (char *) json_reader_get_string_value (reader);
json_reader_end_member (reader);
json_reader_read_member (reader, "message");
message = (char *) json_reader_get_string_value (reader);
json_reader_end_member (reader);
skiron_advisory = skiron_advisory_new (oid, message);
advisories_add (advisories, (advisory_t *) skiron_advisory);
// end element
json_reader_end_element (reader);
}
return advisories;
}
/** @brief Process a json object which contains advisories and vulnerable
* packages
*
* @description This is the body string in response get from an openvasd server
*
* @param resp String containing the json object to be processed.
* @param len String length.
*
* @return a advisories_t struct containing all advisories and vulnerable
* packages.
* After usage must be free()'ed with advisories_free().
*/
advisories_t *
lsc_process_response (const gchar *resp, const size_t len)
{
JsonParser *parser = NULL;
JsonReader *reader = NULL;
GError *err = NULL;
advisories_t *advisories = NULL;
parser = json_parser_new ();
if (!json_parser_load_from_data (parser, resp, len, &err))
{
g_message ("Error parsing");
}
reader = json_reader_new (json_parser_get_root (parser));
if (json_reader_is_object (reader))
{
advisories = lsc_process_response_notus (reader);
}
else if (json_reader_is_array (reader))
{
advisories = lsc_process_response_skiron (reader);
}
else
{
g_debug ("Unknown JSON response format");
}
if (reader)
g_object_unref (reader);
g_object_unref (parser);
return advisories;
}
/** @brief Define a string struct for storing the response.
*/
struct string
{
char *ptr;
size_t len;
};
/** @brief Initialize the string struct to hold the response
*
* @param s[in/out] The string struct to be initialized
*/
static void
init_string (struct string *s)
{
s->len = 0;
s->ptr = g_malloc0 (s->len + 1);
if (s->ptr == NULL)
{
g_warning ("%s: Error allocating memory for response", __func__);
return;
}
s->ptr[0] = '\0';
}
/** @brief Call back function to stored the response.
*
* @description The function signature is the necessary to work with
* libcurl. It stores the response in s. It reallocate memory if necessary.
*/
static size_t
response_callback_fn (void *ptr, size_t size, size_t nmemb, void *struct_string)
{
struct string *s = struct_string;
size_t new_len = s->len + size * nmemb;
char *ptr_aux = g_realloc (s->ptr, new_len + 1);
s->ptr = ptr_aux;
if (s->ptr == NULL)
{
g_warning ("%s: Error allocating memory for response", __func__);
return 0; // no memory left
}
memcpy (s->ptr + s->len, ptr, size * nmemb);
s->ptr[new_len] = '\0';
s->len = new_len;
return size * nmemb;
}
/** @brief Send a request to the server
*
* @param[in] notusdata Structure containing information necessary for the
request
* @param[in] os Target's operative system. Necessary for the URL path part.
* @param[in] pkg_list The package list installed in the target, to be checked
* @param[out] response The string containing the results in json format.
*
* @return the http code or -1 on error
*/
static long
send_request (notus_info_t notusdata, const char *os, const char *pkg_list,
char **response)
{
CURL *curl;
GString *url = NULL;
long http_code = -1;
struct string resp;
struct curl_slist *customheader = NULL;
char *os_aux;
GString *xapikey = NULL;
if ((curl = curl_easy_init ()) == NULL)
{
g_warning ("Not possible to initialize curl library");
return http_code;
}
url = g_string_new (notusdata->server);
g_string_append (url, "/notus/");
//
os_aux = help_tolower (g_strdup (os));
for (size_t i = 0; i < strlen (os_aux); i++)
{
if (os_aux[i] == ' ')
os_aux[i] = '_';
}
g_string_append (url, os_aux);
g_free (os_aux);
g_debug ("%s: URL: %s", __func__, url->str);
// Set URL
if (curl_easy_setopt (curl, CURLOPT_URL, g_strdup (url->str)) != CURLE_OK)
{
g_warning ("Not possible to set the URL");
curl_easy_cleanup (curl);
return http_code;
}
g_string_free (url, TRUE);
// Accept an insecure connection. Don't verify the server certificate
curl_easy_setopt (curl, CURLOPT_SSL_VERIFYPEER, 0L);
curl_easy_setopt (curl, CURLOPT_SSL_VERIFYHOST, 0L);
// Set API KEY
if (prefs_get ("x-apikey"))
{
xapikey = g_string_new ("X-APIKEY: ");
g_string_append (xapikey, prefs_get ("x-apikey"));
customheader = curl_slist_append (customheader, g_strdup (xapikey->str));
g_string_free (xapikey, TRUE);
}
// SET Content type
customheader =
curl_slist_append (customheader, "Content-Type: application/json");
curl_easy_setopt (curl, CURLOPT_HTTPHEADER, customheader);
// Set body
curl_easy_setopt (curl, CURLOPT_POSTFIELDS, pkg_list);
curl_easy_setopt (curl, CURLOPT_POSTFIELDSIZE, strlen (pkg_list));
// Init the struct where the response is stored and set the callback function
init_string (&resp);
curl_easy_setopt (curl, CURLOPT_WRITEFUNCTION, response_callback_fn);
curl_easy_setopt (curl, CURLOPT_WRITEDATA, &resp);
int ret = CURLE_OK;
if ((ret = curl_easy_perform (curl)) != CURLE_OK)
{
g_warning ("%s: Error sending request: %d", __func__, ret);
curl_easy_cleanup (curl);
g_free (resp.ptr);
return http_code;
}
curl_easy_getinfo (curl, CURLINFO_RESPONSE_CODE, &http_code);
curl_easy_cleanup (curl);
g_debug ("Server response %s", resp.ptr);
*response = g_strdup (resp.ptr);
g_free (resp.ptr);
// already free()'ed with curl_easy_cleanup().
return http_code;
}
/** @brief Sent the installed package list and OS to notus
*
* @param pkg_list Installed package list
* @param os The target's OS
*
* @return String containing the server response or NULL
* Must be free()'ed by the caller.
*/
char *
lsc_get_response (const char *pkg_list, const char *os)
{
const char *server = NULL;
char *json_pkglist;
char *response = NULL;
notus_info_t notusdata;
long ret;
// Parse the server and get the port, host, schema
// and necessary information to build the message
server = prefs_get ("openvasd_server");
notusdata = init_notus_info (server);
if (parse_server (¬usdata) < 0)
{
free_notus_info (notusdata);
return NULL;
}
// Convert the package list string into a string containing json
// array of packages
if ((json_pkglist = make_package_list_as_json_str (pkg_list)) == NULL)
{
free_notus_info (notusdata);
return NULL;
}
ret = send_request (notusdata, os, json_pkglist, &response);
if (ret != 200)
g_warning ("%ld: Error sending request to openvasd: %s", ret, response);
free_notus_info (notusdata);
g_free (json_pkglist);
return response;
}
/** @brief Call notus and stores the results
*
* @param ip_str Target's IP address.
* @param hostname Target's hostname.
* @param pkg_list List of packages installed in the target. The packages are
* "\n" separated.
* @param os Name of the target's operating system.
*
* @result Count of stored results. -1 on error.
*/
static int
call_rs_notus (const char *ip_str, const char *hostname, const char *pkg_list,
const char *os)
{
char *body = NULL;
advisories_t *advisories = NULL;
int res_count = 0;
if ((body = lsc_get_response (pkg_list, os)) == NULL)
return -1;
advisories = lsc_process_response (body, strlen (body));
g_free (body);
if (!advisories)
{
g_message ("%s: Unable to process response", __func__);
return -1;
}
// Process the advisories, generate results and store them in the kb
for (size_t i = 0; i < advisories->count; i++)
{
advisory_t *notus_advisory = advisories->advisories[i];
gchar *buffer;
GString *result = g_string_new (NULL);
for (size_t j = 0; j < notus_advisory->count; j++)
{
vuln_pkg_t *pkg = notus_advisory->pkgs[j];
GString *res = g_string_new (NULL);
if (pkg->type == RANGE)
{
g_string_printf (res,
"\n"
"Vulnerable package: %s\n"
"Installed version: %s-%s\n"
"Fixed version: < %s-%s\n"
"Fixed version: >=%s-%s\n",
pkg->pkg_name, pkg->pkg_name,
pkg->install_version, pkg->pkg_name,
pkg->range->start, pkg->pkg_name,
pkg->range->stop);
}
else if (pkg->type == SINGLE)
{
g_string_printf (res,
"\n"
"Vulnerable package: %s\n"
"Installed version: %s-%s\n"
"Fixed version: %2s%s-%s\n",
pkg->pkg_name, pkg->pkg_name,
pkg->install_version, pkg->version->specifier,
pkg->pkg_name, pkg->version->version);
}
else
{
g_warning ("%s: Unknown fixed version type for notus_advisory %s",
__func__, notus_advisory->oid);
g_string_free (result, TRUE);
advisories_free (advisories);
return -1;
}
g_string_append (result, res->str);
g_string_free (res, TRUE);
}
// type|||IP|||HOSTNAME|||package|||OID|||the result message|||URI
buffer = g_strdup_printf ("%s|||%s|||%s|||%s|||%s|||%s|||%s", "ALARM",
ip_str, hostname ? hostname : " ", "package",
notus_advisory->oid, result->str, "");
g_string_free (result, TRUE);
kb_item_push_str_with_main_kb_check (get_main_kb (), "internal/results",
buffer);
res_count++;
g_free (buffer);
}
advisories_free (advisories);
return res_count;
}
#endif // End RSNOTUS
/**
* @brief Publish the necessary data to start a Table driven LSC scan.
*
* If the gather-package-list.nasl plugin was launched, and it generated
* a valid package list for a supported OS, the table driven LSC scan
* which is subscribed to the topic will perform a scan an publish the
* the results to be handle by the sensor/client.
*
* @param scan_id Scan Id.
* @param kb
* @param ip_str IP string of host.
* @param hostname Name of host.
*
* @return 0 on success, less than 0 on error.
*/
int
run_table_driven_lsc (const char *scan_id, const char *ip_str,
const char *hostname, const char *package_list,
const char *os_release)
{
int err = 0;
if (!os_release || !package_list)
return 0;
if (prefs_get ("openvasd_server"))
{
g_message ("Running Notus for %s via openvasd", ip_str);
err = call_rs_notus (ip_str, hostname, package_list, os_release);
return err;
}
else
{
gchar *json_str;
gchar *topic;
gchar *payload;
gchar *status = NULL;
int topic_len;
int payload_len;
// Subscribe to status topic
err = mqtt_subscribe ("scanner/status");
if (err)
{
g_warning ("%s: Error starting lsc. Unable to subscribe", __func__);
return -1;
}
/* Get the OS release. TODO: have a list with supported OS. */
json_str = make_table_driven_lsc_info_json_str (scan_id, ip_str, hostname,
os_release, package_list);
// Run table driven lsc
if (json_str == NULL)
return -1;
g_message ("Running Notus for %s", ip_str);
err = mqtt_publish ("scanner/package/cmd/notus", json_str);
if (err)
{
g_warning ("%s: Error publishing message for Notus.", __func__);
g_free (json_str);
return -1;
}
g_free (json_str);
// Wait for Notus scanner to start or interrupt
while (!status)
{
err = mqtt_retrieve_message (&topic, &topic_len, &payload,
&payload_len, 60000);
if (err == -1 || err == 1)
{
g_warning ("%s: Unable to retrieve status message from notus. %s",
__func__, err == 1 ? "Timeout after 60 s." : "");
return -1;
}
// Get status if it belongs to corresponding scan and host
// Else wait for next status message
status = get_status_of_table_driven_lsc_from_json (
scan_id, ip_str, payload, payload_len);
g_free (topic);
g_free (payload);
}
// If started wait for it to finish or interrupt
if (!g_strcmp0 (status, "running"))
{
g_debug ("%s: table driven LSC with scan id %s successfully started "
"for host %s",
__func__, scan_id, ip_str);
g_free (status);
status = NULL;
while (!status)
{
err = mqtt_retrieve_message (&topic, &topic_len, &payload,
&payload_len, 60000);
if (err == -1)
{
g_warning (
"%s: Unable to retrieve status message from notus.",
__func__);
return -1;
}
if (err == 1)
{
g_warning (
"%s: Unable to retrieve message. Timeout after 60s.",
__func__);
return -1;
}
status = get_status_of_table_driven_lsc_from_json (
scan_id, ip_str, payload, payload_len);
g_free (topic);
g_free (payload);
}
}
else
{
g_warning ("%s: Unable to start lsc. Got status: %s", __func__,
status);
g_free (status);
return -1;
}
if (g_strcmp0 (status, "finished"))
{
g_warning (
"%s: table driven lsc with scan id %s did not finish successfully "
"for host %s. Last status was %s",
__func__, scan_id, ip_str, status);
err = -1;
}
else
g_debug ("%s: table driven lsc with scan id %s successfully finished "
"for host %s",
__func__, scan_id, ip_str);
g_free (status);
}
return err;
}
|