Skip to content
Snippets Groups Projects
security_analysis14.txt 337 KiB
Newer Older
  • Learn to ignore specific revisions
  • 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
    /mnt/REMI_DATA2/filodoo14.tar (debian 10.12)
    
    Total: 373 (UNKNOWN: 0, LOW: 197, MEDIUM: 58, HIGH: 82, CRITICAL: 36)
    
    ┌──────────────────────┬──────────────────┬──────────┬─────────────────────────┬─────────────────┬──────────────────────────────────────────────────────────────┐
    │       Library        │  Vulnerability   │ Severity │    Installed Version    │  Fixed Version  │                            Title                             │
    ├──────────────────────┼──────────────────┼──────────┼─────────────────────────┼─────────────────┼──────────────────────────────────────────────────────────────┤
    │ apt                  │ CVE-2011-3374    │ LOW      │ 1.8.2.3                 │                 │ It was found that apt-key in apt, all versions, do not       │
    │                      │                  │          │                         │                 │ correctly...                                                 │
    │                      │                  │          │                         │                 │ https://avd.aquasec.com/nvd/cve-2011-3374                    │
    ├──────────────────────┼──────────────────┤          ├─────────────────────────┼─────────────────┼──────────────────────────────────────────────────────────────┤
    │ bash                 │ CVE-2019-18276   │          │ 5.0-4                   │                 │ bash: when effective UID is not equal to its real UID the... │
    │                      │                  │          │                         │                 │ https://avd.aquasec.com/nvd/cve-2019-18276                   │
    ├──────────────────────┼──────────────────┤          ├─────────────────────────┼─────────────────┼──────────────────────────────────────────────────────────────┤
    │ bsdutils             │ CVE-2021-37600   │          │ 2.33.1-0.1              │                 │ util-linux: integer overflow can lead to buffer overflow in  │
    │                      │                  │          │                         │                 │ get_sem_elements() in sys-utils/ipcutils.c...                │
    │                      │                  │          │                         │                 │ https://avd.aquasec.com/nvd/cve-2021-37600                   │
    │                      ├──────────────────┤          │                         ├─────────────────┼──────────────────────────────────────────────────────────────┤
    │                      │ CVE-2022-0563    │          │                         │                 │ util-linux: partial disclosure of arbitrary files in chfn    │
    │                      │                  │          │                         │                 │ and chsh when compiled...                                    │
    │                      │                  │          │                         │                 │ https://avd.aquasec.com/nvd/cve-2022-0563                    │
    ├──────────────────────┼──────────────────┤          ├─────────────────────────┼─────────────────┼──────────────────────────────────────────────────────────────┤
    │ coreutils            │ CVE-2016-2781    │          │ 8.30-3                  │                 │ coreutils: Non-privileged session can escape to the parent   │
    │                      │                  │          │                         │                 │ session in chroot                                            │
    │                      │                  │          │                         │                 │ https://avd.aquasec.com/nvd/cve-2016-2781                    │
    │                      ├──────────────────┤          │                         ├─────────────────┼──────────────────────────────────────────────────────────────┤
    │                      │ CVE-2017-18018   │          │                         │                 │ coreutils: race condition vulnerability in chown and chgrp   │
    │                      │                  │          │                         │                 │ https://avd.aquasec.com/nvd/cve-2017-18018                   │
    ├──────────────────────┼──────────────────┼──────────┼─────────────────────────┼─────────────────┼──────────────────────────────────────────────────────────────┤
    │ curl                 │ CVE-2021-22946   │ HIGH     │ 7.64.0-4+deb10u2        │                 │ curl: Requirement to use TLS not properly enforced for IMAP, │
    │                      │                  │          │                         │                 │ POP3, and...                                                 │
    │                      │                  │          │                         │                 │ https://avd.aquasec.com/nvd/cve-2021-22946                   │
    │                      ├──────────────────┤          │                         ├─────────────────┼──────────────────────────────────────────────────────────────┤
    │                      │ CVE-2022-22576   │          │                         │                 │ curl: OAUTH2 bearer bypass in connection re-use              │
    │                      │                  │          │                         │                 │ https://avd.aquasec.com/nvd/cve-2022-22576                   │
    │                      ├──────────────────┤          │                         ├─────────────────┼──────────────────────────────────────────────────────────────┤
    │                      │ CVE-2022-27781   │          │                         │                 │ curl: CERTINFO never-ending busy-loop                        │
    │                      │                  │          │                         │                 │ https://avd.aquasec.com/nvd/cve-2022-27781                   │
    │                      ├──────────────────┤          │                         ├─────────────────┼──────────────────────────────────────────────────────────────┤
    │                      │ CVE-2022-27782   │          │                         │                 │ curl: TLS and SSH connection too eager reuse                 │
    │                      │                  │          │                         │                 │ https://avd.aquasec.com/nvd/cve-2022-27782                   │
    │                      ├──────────────────┼──────────┤                         ├─────────────────┼──────────────────────────────────────────────────────────────┤
    │                      │ CVE-2021-22947   │ MEDIUM   │                         │                 │ curl: Server responses received before STARTTLS processed    │
    │                      │                  │          │                         │                 │ after TLS handshake                                          │
    │                      │                  │          │                         │                 │ https://avd.aquasec.com/nvd/cve-2021-22947                   │
    │                      ├──────────────────┤          │                         ├─────────────────┼──────────────────────────────────────────────────────────────┤
    │                      │ CVE-2022-27774   │          │                         │                 │ curl: credential leak on redirect                            │
    │                      │                  │          │                         │                 │ https://avd.aquasec.com/nvd/cve-2022-27774                   │
    │                      ├──────────────────┤          │                         ├─────────────────┼──────────────────────────────────────────────────────────────┤
    │                      │ CVE-2022-27776   │          │                         │                 │ curl: auth/cookie leak on redirect                           │
    │                      │                  │          │                         │                 │ https://avd.aquasec.com/nvd/cve-2022-27776                   │
    │                      ├──────────────────┤          │                         ├─────────────────┼──────────────────────────────────────────────────────────────┤
    │                      │ CVE-2022-32206   │          │                         │                 │ curl: HTTP compression denial of service                     │
    │                      │                  │          │                         │                 │ https://avd.aquasec.com/nvd/cve-2022-32206                   │
    │                      ├──────────────────┤          │                         ├─────────────────┼──────────────────────────────────────────────────────────────┤
    │                      │ CVE-2022-32208   │          │                         │                 │ curl: FTP-KRB bad message verification                       │
    │                      │                  │          │                         │                 │ https://avd.aquasec.com/nvd/cve-2022-32208                   │
    │                      ├──────────────────┼──────────┤                         ├─────────────────┼──────────────────────────────────────────────────────────────┤
    │                      │ CVE-2021-22898   │ LOW      │                         │                 │ curl: TELNET stack contents disclosure                       │
    │                      │                  │          │                         │                 │ https://avd.aquasec.com/nvd/cve-2021-22898                   │
    │                      ├──────────────────┤          │                         ├─────────────────┼──────────────────────────────────────────────────────────────┤
    │                      │ CVE-2021-22922   │          │                         │                 │ curl: Content not matching hash in Metalink is not being     │
    │                      │                  │          │                         │                 │ discarded                                                    │
    │                      │                  │          │                         │                 │ https://avd.aquasec.com/nvd/cve-2021-22922                   │
    │                      ├──────────────────┤          │                         ├─────────────────┼──────────────────────────────────────────────────────────────┤
    │                      │ CVE-2021-22923   │          │                         │                 │ curl: Metalink download sends credentials                    │
    │                      │                  │          │                         │                 │ https://avd.aquasec.com/nvd/cve-2021-22923                   │
    │                      ├──────────────────┤          │                         ├─────────────────┼──────────────────────────────────────────────────────────────┤
    │                      │ CVE-2021-22924   │          │                         │                 │ curl: Bad connection reuse due to flawed path name checks    │
    │                      │                  │          │                         │                 │ https://avd.aquasec.com/nvd/cve-2021-22924                   │
    ├──────────────────────┼──────────────────┤          ├─────────────────────────┼─────────────────┼──────────────────────────────────────────────────────────────┤
    │ dirmngr              │ CVE-2019-14855   │          │ 2.2.12-1+deb10u2        │                 │ gnupg2: OpenPGP Key Certification Forgeries with SHA-1       │
    │                      │                  │          │                         │                 │ https://avd.aquasec.com/nvd/cve-2019-14855                   │
    ├──────────────────────┼──────────────────┼──────────┼─────────────────────────┼─────────────────┼──────────────────────────────────────────────────────────────┤
    │ e2fsprogs            │ CVE-2022-1304    │ HIGH     │ 1.44.5-1+deb10u3        │                 │ e2fsprogs: out-of-bounds read/write via crafted filesystem   │
    │                      │                  │          │                         │                 │ https://avd.aquasec.com/nvd/cve-2022-1304                    │
    ├──────────────────────┼──────────────────┼──────────┼─────────────────────────┼─────────────────┼──────────────────────────────────────────────────────────────┤
    │ fdisk                │ CVE-2021-37600   │ LOW      │ 2.33.1-0.1              │                 │ util-linux: integer overflow can lead to buffer overflow in  │
    │                      │                  │          │                         │                 │ get_sem_elements() in sys-utils/ipcutils.c...                │
    │                      │                  │          │                         │                 │ https://avd.aquasec.com/nvd/cve-2021-37600                   │
    │                      ├──────────────────┤          │                         ├─────────────────┼──────────────────────────────────────────────────────────────┤
    │                      │ CVE-2022-0563    │          │                         │                 │ util-linux: partial disclosure of arbitrary files in chfn    │
    │                      │                  │          │                         │                 │ and chsh when compiled...                                    │
    │                      │                  │          │                         │                 │ https://avd.aquasec.com/nvd/cve-2022-0563                    │
    ├──────────────────────┼──────────────────┼──────────┼─────────────────────────┼─────────────────┼──────────────────────────────────────────────────────────────┤
    │ gcc-8-base           │ CVE-2018-12886   │ HIGH     │ 8.3.0-6                 │                 │ gcc: spilling of stack protection address in cfgexpand.c and │
    │                      │                  │          │                         │                 │ function.c leads to...                                       │
    │                      │                  │          │                         │                 │ https://avd.aquasec.com/nvd/cve-2018-12886                   │
    │                      ├──────────────────┤          │                         ├─────────────────┼──────────────────────────────────────────────────────────────┤
    │                      │ CVE-2019-15847   │          │                         │                 │ gcc: POWER9 "DARN" RNG intrinsic produces repeated output    │
    │                      │                  │          │                         │                 │ https://avd.aquasec.com/nvd/cve-2019-15847                   │
    ├──────────────────────┼──────────────────┤          ├─────────────────────────┼─────────────────┼──────────────────────────────────────────────────────────────┤
    │ git                  │ CVE-2021-21300   │          │ 1:2.20.1-2+deb10u3      │                 │ git: remote code execution during clone operation on         │
    │                      │                  │          │                         │                 │ case-insensitive filesystems                                 │
    │                      │                  │          │                         │                 │ https://avd.aquasec.com/nvd/cve-2021-21300                   │
    │                      ├──────────────────┤          │                         ├─────────────────┼──────────────────────────────────────────────────────────────┤
    │                      │ CVE-2021-40330   │          │                         │                 │ git: unexpected cross-protocol requests via a repository     │
    │                      │                  │          │                         │                 │ path containing a newline character...                       │
    │                      │                  │          │                         │                 │ https://avd.aquasec.com/nvd/cve-2021-40330                   │
    │                      ├──────────────────┤          │                         ├─────────────────┼──────────────────────────────────────────────────────────────┤
    │                      │ CVE-2022-24765   │          │                         │                 │ git: On multi-user machines Git users might find themselves  │
    │                      │                  │          │                         │                 │ unexpectedly in a...                                         │
    │                      │                  │          │                         │                 │ https://avd.aquasec.com/nvd/cve-2022-24765                   │
    │                      ├──────────────────┤          │                         ├─────────────────┼──────────────────────────────────────────────────────────────┤
    │                      │ CVE-2022-29187   │          │                         │                 │ git: Bypass of safe.directory protections                    │
    │                      │                  │          │                         │                 │ https://avd.aquasec.com/nvd/cve-2022-29187                   │
    │                      ├──────────────────┼──────────┤                         ├─────────────────┼──────────────────────────────────────────────────────────────┤
    │                      │ CVE-2018-1000021 │ LOW      │                         │                 │ git: client prints server-sent ANSI escape codes to the      │
    │                      │                  │          │                         │                 │ terminal, allowing for...                                    │
    │                      │                  │          │                         │                 │ https://avd.aquasec.com/nvd/cve-2018-1000021                 │
    │                      ├──────────────────┤          │                         ├─────────────────┼──────────────────────────────────────────────────────────────┤
    │                      │ CVE-2022-24975   │          │                         │                 │ git: The --mirror option for git leaks secret for deleted    │
    │                      │                  │          │                         │                 │ content, aka...                                              │
    │                      │                  │          │                         │                 │ https://avd.aquasec.com/nvd/cve-2022-24975                   │
    ├──────────────────────┼──────────────────┼──────────┤                         ├─────────────────┼──────────────────────────────────────────────────────────────┤
    │ git-man              │ CVE-2021-21300   │ HIGH     │                         │                 │ git: remote code execution during clone operation on         │
    │                      │                  │          │                         │                 │ case-insensitive filesystems                                 │
    │                      │                  │          │                         │                 │ https://avd.aquasec.com/nvd/cve-2021-21300                   │
    │                      ├──────────────────┤          │                         ├─────────────────┼──────────────────────────────────────────────────────────────┤
    │                      │ CVE-2021-40330   │          │                         │                 │ git: unexpected cross-protocol requests via a repository     │
    │                      │                  │          │                         │                 │ path containing a newline character...                       │
    │                      │                  │          │                         │                 │ https://avd.aquasec.com/nvd/cve-2021-40330                   │
    │                      ├──────────────────┤          │                         ├─────────────────┼──────────────────────────────────────────────────────────────┤
    │                      │ CVE-2022-24765   │          │                         │                 │ git: On multi-user machines Git users might find themselves  │
    │                      │                  │          │                         │                 │ unexpectedly in a...                                         │
    │                      │                  │          │                         │                 │ https://avd.aquasec.com/nvd/cve-2022-24765                   │
    │                      ├──────────────────┤          │                         ├─────────────────┼──────────────────────────────────────────────────────────────┤
    │                      │ CVE-2022-29187   │          │                         │                 │ git: Bypass of safe.directory protections                    │
    │                      │                  │          │                         │                 │ https://avd.aquasec.com/nvd/cve-2022-29187                   │
    │                      ├──────────────────┼──────────┤                         ├─────────────────┼──────────────────────────────────────────────────────────────┤
    │                      │ CVE-2018-1000021 │ LOW      │                         │                 │ git: client prints server-sent ANSI escape codes to the      │
    │                      │                  │          │                         │                 │ terminal, allowing for...                                    │
    │                      │                  │          │                         │                 │ https://avd.aquasec.com/nvd/cve-2018-1000021                 │
    │                      ├──────────────────┤          │                         ├─────────────────┼──────────────────────────────────────────────────────────────┤
    │                      │ CVE-2022-24975   │          │                         │                 │ git: The --mirror option for git leaks secret for deleted    │
    │                      │                  │          │                         │                 │ content, aka...                                              │
    │                      │                  │          │                         │                 │ https://avd.aquasec.com/nvd/cve-2022-24975                   │
    ├──────────────────────┼──────────────────┤          ├─────────────────────────┼─────────────────┼──────────────────────────────────────────────────────────────┤
    │ gnupg                │ CVE-2019-14855   │          │ 2.2.12-1+deb10u2        │                 │ gnupg2: OpenPGP Key Certification Forgeries with SHA-1       │
    │                      │                  │          │                         │                 │ https://avd.aquasec.com/nvd/cve-2019-14855                   │
    ├──────────────────────┤                  │          │                         ├─────────────────┤                                                              │
    │ gnupg-l10n           │                  │          │                         │                 │                                                              │
    │                      │                  │          │                         │                 │                                                              │
    ├──────────────────────┤                  │          │                         ├─────────────────┤                                                              │
    │ gnupg-utils          │                  │          │                         │                 │                                                              │
    │                      │                  │          │                         │                 │                                                              │
    ├──────────────────────┤                  │          │                         ├─────────────────┤                                                              │
    │ gpg                  │                  │          │                         │                 │                                                              │
    │                      │                  │          │                         │                 │                                                              │
    ├──────────────────────┤                  │          │                         ├─────────────────┤                                                              │
    │ gpg-agent            │                  │          │                         │                 │                                                              │
    │                      │                  │          │                         │                 │                                                              │
    ├──────────────────────┤                  │          │                         ├─────────────────┤                                                              │
    │ gpg-wks-client       │                  │          │                         │                 │                                                              │
    │                      │                  │          │                         │                 │                                                              │
    ├──────────────────────┤                  │          │                         ├─────────────────┤                                                              │
    │ gpg-wks-server       │                  │          │                         │                 │                                                              │
    │                      │                  │          │                         │                 │                                                              │
    ├──────────────────────┤                  │          │                         ├─────────────────┤                                                              │
    │ gpgconf              │                  │          │                         │                 │                                                              │
    │                      │                  │          │                         │                 │                                                              │
    ├──────────────────────┤                  │          │                         ├─────────────────┤                                                              │
    │ gpgsm                │                  │          │                         │                 │                                                              │
    │                      │                  │          │                         │                 │                                                              │
    ├──────────────────────┤                  │          │                         ├─────────────────┤                                                              │
    │ gpgv                 │                  │          │                         │                 │                                                              │
    │                      │                  │          │                         │                 │                                                              │
    ├──────────────────────┼──────────────────┤          ├─────────────────────────┼─────────────────┼──────────────────────────────────────────────────────────────┤
    │ libapt-pkg5.0        │ CVE-2011-3374    │          │ 1.8.2.3                 │                 │ It was found that apt-key in apt, all versions, do not       │
    │                      │                  │          │                         │                 │ correctly...                                                 │
    │                      │                  │          │                         │                 │ https://avd.aquasec.com/nvd/cve-2011-3374                    │
    ├──────────────────────┼──────────────────┼──────────┼─────────────────────────┼─────────────────┼──────────────────────────────────────────────────────────────┤
    │ libatomic1           │ CVE-2018-12886   │ HIGH     │ 8.3.0-6                 │                 │ gcc: spilling of stack protection address in cfgexpand.c and │
    │                      │                  │          │                         │                 │ function.c leads to...                                       │
    │                      │                  │          │                         │                 │ https://avd.aquasec.com/nvd/cve-2018-12886                   │
    │                      ├──────────────────┤          │                         ├─────────────────┼──────────────────────────────────────────────────────────────┤
    │                      │ CVE-2019-15847   │          │                         │                 │ gcc: POWER9 "DARN" RNG intrinsic produces repeated output    │
    │                      │                  │          │                         │                 │ https://avd.aquasec.com/nvd/cve-2019-15847                   │
    ├──────────────────────┼──────────────────┼──────────┼─────────────────────────┼─────────────────┼──────────────────────────────────────────────────────────────┤
    │ libblkid1            │ CVE-2021-37600   │ LOW      │ 2.33.1-0.1              │                 │ util-linux: integer overflow can lead to buffer overflow in  │
    │                      │                  │          │                         │                 │ get_sem_elements() in sys-utils/ipcutils.c...                │
    │                      │                  │          │                         │                 │ https://avd.aquasec.com/nvd/cve-2021-37600                   │
    │                      ├──────────────────┤          │                         ├─────────────────┼──────────────────────────────────────────────────────────────┤
    │                      │ CVE-2022-0563    │          │                         │                 │ util-linux: partial disclosure of arbitrary files in chfn    │
    │                      │                  │          │                         │                 │ and chsh when compiled...                                    │
    │                      │                  │          │                         │                 │ https://avd.aquasec.com/nvd/cve-2022-0563                    │
    ├──────────────────────┼──────────────────┼──────────┼─────────────────────────┼─────────────────┼──────────────────────────────────────────────────────────────┤
    │ libc-bin             │ CVE-2021-33574   │ CRITICAL │ 2.28-10+deb10u1         │                 │ glibc: mq_notify does not handle separately allocated thread │
    │                      │                  │          │                         │                 │ attributes                                                   │
    │                      │                  │          │                         │                 │ https://avd.aquasec.com/nvd/cve-2021-33574                   │
    │                      ├──────────────────┤          │                         ├─────────────────┼──────────────────────────────────────────────────────────────┤
    │                      │ CVE-2021-35942   │          │                         │                 │ glibc: Arbitrary read in wordexp()                           │
    │                      │                  │          │                         │                 │ https://avd.aquasec.com/nvd/cve-2021-35942                   │
    │                      ├──────────────────┤          │                         ├─────────────────┼──────────────────────────────────────────────────────────────┤
    │                      │ CVE-2022-23218   │          │                         │                 │ glibc: Stack-based buffer overflow in svcunix_create via     │
    │                      │                  │          │                         │                 │ long pathnames                                               │
    │                      │                  │          │                         │                 │ https://avd.aquasec.com/nvd/cve-2022-23218                   │
    │                      ├──────────────────┤          │                         ├─────────────────┼──────────────────────────────────────────────────────────────┤
    │                      │ CVE-2022-23219   │          │                         │                 │ glibc: Stack-based buffer overflow in sunrpc clnt_create via │
    │                      │                  │          │                         │                 │ a long pathname                                              │
    │                      │                  │          │                         │                 │ https://avd.aquasec.com/nvd/cve-2022-23219                   │
    │                      ├──────────────────┼──────────┤                         ├─────────────────┼──────────────────────────────────────────────────────────────┤
    │                      │ CVE-2020-1751    │ HIGH     │                         │                 │ glibc: array overflow in backtrace functions for powerpc     │
    │                      │                  │          │                         │                 │ https://avd.aquasec.com/nvd/cve-2020-1751                    │
    │                      ├──────────────────┤          │                         ├─────────────────┼──────────────────────────────────────────────────────────────┤
    │                      │ CVE-2020-1752    │          │                         │                 │ glibc: use-after-free in glob() function when expanding      │
    │                      │                  │          │                         │                 │ ~user                                                        │
    │                      │                  │          │                         │                 │ https://avd.aquasec.com/nvd/cve-2020-1752                    │
    │                      ├──────────────────┤          │                         ├─────────────────┼──────────────────────────────────────────────────────────────┤
    │                      │ CVE-2021-3326    │          │                         │                 │ glibc: Assertion failure in ISO-2022-JP-3 gconv module       │
    │                      │                  │          │                         │                 │ related to combining characters                              │
    │                      │                  │          │                         │                 │ https://avd.aquasec.com/nvd/cve-2021-3326                    │
    │                      ├──────────────────┤          │                         ├─────────────────┼──────────────────────────────────────────────────────────────┤
    │                      │ CVE-2021-3999    │          │                         │                 │ glibc: Off-by-one buffer overflow/underflow in getcwd()      │
    │                      │                  │          │                         │                 │ https://avd.aquasec.com/nvd/cve-2021-3999                    │
    │                      ├──────────────────┼──────────┤                         ├─────────────────┼──────────────────────────────────────────────────────────────┤
    │                      │ CVE-2019-25013   │ MEDIUM   │                         │                 │ glibc: buffer over-read in iconv when processing invalid     │
    │                      │                  │          │                         │                 │ multi-byte input sequences in...                             │
    │                      │                  │          │                         │                 │ https://avd.aquasec.com/nvd/cve-2019-25013                   │
    │                      ├──────────────────┤          │                         ├─────────────────┼──────────────────────────────────────────────────────────────┤
    │                      │ CVE-2020-10029   │          │                         │                 │ glibc: stack corruption from crafted input in cosl, sinl,    │
    │                      │                  │          │                         │                 │ sincosl, and tanl...                                         │
    │                      │                  │          │                         │                 │ https://avd.aquasec.com/nvd/cve-2020-10029                   │
    │                      ├──────────────────┤          │                         ├─────────────────┼──────────────────────────────────────────────────────────────┤
    │                      │ CVE-2020-27618   │          │                         │                 │ glibc: iconv when processing invalid multi-byte input        │
    │                      │                  │          │                         │                 │ sequences fails to advance the...                            │
    │                      │                  │          │                         │                 │ https://avd.aquasec.com/nvd/cve-2020-27618                   │
    │                      ├──────────────────┼──────────┤                         ├─────────────────┼──────────────────────────────────────────────────────────────┤
    │                      │ CVE-2010-4756    │ LOW      │                         │                 │ glibc: glob implementation can cause excessive CPU and       │
    │                      │                  │          │                         │                 │ memory consumption due to...                                 │
    │                      │                  │          │                         │                 │ https://avd.aquasec.com/nvd/cve-2010-4756                    │
    │                      ├──────────────────┤          │                         ├─────────────────┼──────────────────────────────────────────────────────────────┤
    │                      │ CVE-2016-10228   │          │                         │                 │ glibc: iconv program can hang when invoked with the -c       │
    │                      │                  │          │                         │                 │ option                                                       │
    │                      │                  │          │                         │                 │ https://avd.aquasec.com/nvd/cve-2016-10228                   │
    │                      ├──────────────────┤          │                         ├─────────────────┼──────────────────────────────────────────────────────────────┤
    │                      │ CVE-2018-20796   │          │                         │                 │ glibc: uncontrolled recursion in function                    │
    │                      │                  │          │                         │                 │ check_dst_limits_calc_pos_1 in posix/regexec.c               │
    │                      │                  │          │                         │                 │ https://avd.aquasec.com/nvd/cve-2018-20796                   │
    │                      ├──────────────────┤          │                         ├─────────────────┼──────────────────────────────────────────────────────────────┤
    │                      │ CVE-2019-1010022 │          │                         │                 │ glibc: stack guard protection bypass                         │
    │                      │                  │          │                         │                 │ https://avd.aquasec.com/nvd/cve-2019-1010022                 │
    │                      ├──────────────────┤          │                         ├─────────────────┼──────────────────────────────────────────────────────────────┤
    │                      │ CVE-2019-1010023 │          │                         │                 │ glibc: running ldd on malicious ELF leads to code execution  │
    │                      │                  │          │                         │                 │ because of...                                                │
    │                      │                  │          │                         │                 │ https://avd.aquasec.com/nvd/cve-2019-1010023                 │
    │                      ├──────────────────┤          │                         ├─────────────────┼──────────────────────────────────────────────────────────────┤
    │                      │ CVE-2019-1010024 │          │                         │                 │ glibc: ASLR bypass using cache of thread stack and heap      │
    │                      │                  │          │                         │                 │ https://avd.aquasec.com/nvd/cve-2019-1010024                 │
    │                      ├──────────────────┤          │                         ├─────────────────┼──────────────────────────────────────────────────────────────┤
    │                      │ CVE-2019-1010025 │          │                         │                 │ glibc: information disclosure of heap addresses of           │
    │                      │                  │          │                         │                 │ pthread_created thread                                       │
    │                      │                  │          │                         │                 │ https://avd.aquasec.com/nvd/cve-2019-1010025                 │
    │                      ├──────────────────┤          │                         ├─────────────────┼──────────────────────────────────────────────────────────────┤
    │                      │ CVE-2019-19126   │          │                         │                 │ glibc: LD_PREFER_MAP_32BIT_EXEC not ignored in setuid        │
    │                      │                  │          │                         │                 │ binaries                                                     │
    │                      │                  │          │                         │                 │ https://avd.aquasec.com/nvd/cve-2019-19126                   │
    │                      ├──────────────────┤          │                         ├─────────────────┼──────────────────────────────────────────────────────────────┤
    │                      │ CVE-2019-9192    │          │                         │                 │ glibc: uncontrolled recursion in function                    │
    │                      │                  │          │                         │                 │ check_dst_limits_calc_pos_1 in posix/regexec.c               │
    │                      │                  │          │                         │                 │ https://avd.aquasec.com/nvd/cve-2019-9192                    │
    │                      ├──────────────────┤          │                         ├─────────────────┼──────────────────────────────────────────────────────────────┤
    │                      │ CVE-2020-6096    │          │                         │                 │ glibc: signed comparison vulnerability in the ARMv7 memcpy   │
    │                      │                  │          │                         │                 │ function                                                     │
    │                      │                  │          │                         │                 │ https://avd.aquasec.com/nvd/cve-2020-6096                    │
    │                      ├──────────────────┤          │                         ├─────────────────┼──────────────────────────────────────────────────────────────┤
    │                      │ CVE-2021-27645   │          │                         │                 │ glibc: Use-after-free in addgetnetgrentX function in         │
    │                      │                  │          │                         │                 │ netgroupcache.c                                              │
    │                      │                  │          │                         │                 │ https://avd.aquasec.com/nvd/cve-2021-27645                   │
    ├──────────────────────┼──────────────────┼──────────┤                         ├─────────────────┼──────────────────────────────────────────────────────────────┤
    │ libc6                │ CVE-2021-33574   │ CRITICAL │                         │                 │ glibc: mq_notify does not handle separately allocated thread │
    │                      │                  │          │                         │                 │ attributes                                                   │
    │                      │                  │          │                         │                 │ https://avd.aquasec.com/nvd/cve-2021-33574                   │
    │                      ├──────────────────┤          │                         ├─────────────────┼──────────────────────────────────────────────────────────────┤
    │                      │ CVE-2021-35942   │          │                         │                 │ glibc: Arbitrary read in wordexp()                           │
    │                      │                  │          │                         │                 │ https://avd.aquasec.com/nvd/cve-2021-35942                   │
    │                      ├──────────────────┤          │                         ├─────────────────┼──────────────────────────────────────────────────────────────┤
    │                      │ CVE-2022-23218   │          │                         │                 │ glibc: Stack-based buffer overflow in svcunix_create via     │
    │                      │                  │          │                         │                 │ long pathnames                                               │
    │                      │                  │          │                         │                 │ https://avd.aquasec.com/nvd/cve-2022-23218                   │
    │                      ├──────────────────┤          │                         ├─────────────────┼──────────────────────────────────────────────────────────────┤
    │                      │ CVE-2022-23219   │          │                         │                 │ glibc: Stack-based buffer overflow in sunrpc clnt_create via │
    │                      │                  │          │                         │                 │ a long pathname                                              │
    │                      │                  │          │                         │                 │ https://avd.aquasec.com/nvd/cve-2022-23219                   │
    │                      ├──────────────────┼──────────┤                         ├─────────────────┼──────────────────────────────────────────────────────────────┤
    │                      │ CVE-2020-1751    │ HIGH     │                         │                 │ glibc: array overflow in backtrace functions for powerpc     │
    │                      │                  │          │                         │                 │ https://avd.aquasec.com/nvd/cve-2020-1751                    │
    │                      ├──────────────────┤          │                         ├─────────────────┼──────────────────────────────────────────────────────────────┤
    │                      │ CVE-2020-1752    │          │                         │                 │ glibc: use-after-free in glob() function when expanding      │
    │                      │                  │          │                         │                 │ ~user                                                        │
    │                      │                  │          │                         │                 │ https://avd.aquasec.com/nvd/cve-2020-1752                    │
    │                      ├──────────────────┤          │                         ├─────────────────┼──────────────────────────────────────────────────────────────┤
    │                      │ CVE-2021-3326    │          │                         │                 │ glibc: Assertion failure in ISO-2022-JP-3 gconv module       │
    │                      │                  │          │                         │                 │ related to combining characters                              │
    │                      │                  │          │                         │                 │ https://avd.aquasec.com/nvd/cve-2021-3326                    │
    │                      ├──────────────────┤          │                         ├─────────────────┼──────────────────────────────────────────────────────────────┤
    │                      │ CVE-2021-3999    │          │                         │                 │ glibc: Off-by-one buffer overflow/underflow in getcwd()      │
    │                      │                  │          │                         │                 │ https://avd.aquasec.com/nvd/cve-2021-3999                    │
    │                      ├──────────────────┼──────────┤                         ├─────────────────┼──────────────────────────────────────────────────────────────┤
    │                      │ CVE-2019-25013   │ MEDIUM   │                         │                 │ glibc: buffer over-read in iconv when processing invalid     │
    │                      │                  │          │                         │                 │ multi-byte input sequences in...                             │
    │                      │                  │          │                         │                 │ https://avd.aquasec.com/nvd/cve-2019-25013                   │
    │                      ├──────────────────┤          │                         ├─────────────────┼──────────────────────────────────────────────────────────────┤
    │                      │ CVE-2020-10029   │          │                         │                 │ glibc: stack corruption from crafted input in cosl, sinl,    │
    │                      │                  │          │                         │                 │ sincosl, and tanl...                                         │
    │                      │                  │          │                         │                 │ https://avd.aquasec.com/nvd/cve-2020-10029                   │
    │                      ├──────────────────┤          │                         ├─────────────────┼──────────────────────────────────────────────────────────────┤
    │                      │ CVE-2020-27618   │          │                         │                 │ glibc: iconv when processing invalid multi-byte input        │
    │                      │                  │          │                         │                 │ sequences fails to advance the...                            │
    │                      │                  │          │                         │                 │ https://avd.aquasec.com/nvd/cve-2020-27618                   │
    │                      ├──────────────────┼──────────┤                         ├─────────────────┼──────────────────────────────────────────────────────────────┤
    │                      │ CVE-2010-4756    │ LOW      │                         │                 │ glibc: glob implementation can cause excessive CPU and       │
    │                      │                  │          │                         │                 │ memory consumption due to...                                 │
    │                      │                  │          │                         │                 │ https://avd.aquasec.com/nvd/cve-2010-4756                    │
    │                      ├──────────────────┤          │                         ├─────────────────┼──────────────────────────────────────────────────────────────┤
    │                      │ CVE-2016-10228   │          │                         │                 │ glibc: iconv program can hang when invoked with the -c       │
    │                      │                  │          │                         │                 │ option                                                       │
    │                      │                  │          │                         │                 │ https://avd.aquasec.com/nvd/cve-2016-10228                   │
    │                      ├──────────────────┤          │                         ├─────────────────┼──────────────────────────────────────────────────────────────┤
    │                      │ CVE-2018-20796   │          │                         │                 │ glibc: uncontrolled recursion in function                    │
    │                      │                  │          │                         │                 │ check_dst_limits_calc_pos_1 in posix/regexec.c               │
    │                      │                  │          │                         │                 │ https://avd.aquasec.com/nvd/cve-2018-20796                   │
    │                      ├──────────────────┤          │                         ├─────────────────┼──────────────────────────────────────────────────────────────┤
    │                      │ CVE-2019-1010022 │          │                         │                 │ glibc: stack guard protection bypass                         │
    │                      │                  │          │                         │                 │ https://avd.aquasec.com/nvd/cve-2019-1010022                 │
    │                      ├──────────────────┤          │                         ├─────────────────┼──────────────────────────────────────────────────────────────┤
    │                      │ CVE-2019-1010023 │          │                         │                 │ glibc: running ldd on malicious ELF leads to code execution  │
    │                      │                  │          │                         │                 │ because of...                                                │
    │                      │                  │          │                         │                 │ https://avd.aquasec.com/nvd/cve-2019-1010023                 │
    │                      ├──────────────────┤          │                         ├─────────────────┼──────────────────────────────────────────────────────────────┤
    │                      │ CVE-2019-1010024 │          │                         │                 │ glibc: ASLR bypass using cache of thread stack and heap      │
    │                      │                  │          │                         │                 │ https://avd.aquasec.com/nvd/cve-2019-1010024                 │
    │                      ├──────────────────┤          │                         ├─────────────────┼──────────────────────────────────────────────────────────────┤
    │                      │ CVE-2019-1010025 │          │                         │                 │ glibc: information disclosure of heap addresses of           │
    │                      │                  │          │                         │                 │ pthread_created thread                                       │
    │                      │                  │          │                         │                 │ https://avd.aquasec.com/nvd/cve-2019-1010025                 │
    │                      ├──────────────────┤          │                         ├─────────────────┼──────────────────────────────────────────────────────────────┤
    │                      │ CVE-2019-19126   │          │                         │                 │ glibc: LD_PREFER_MAP_32BIT_EXEC not ignored in setuid        │
    │                      │                  │          │                         │                 │ binaries                                                     │
    │                      │                  │          │                         │                 │ https://avd.aquasec.com/nvd/cve-2019-19126                   │
    │                      ├──────────────────┤          │                         ├─────────────────┼──────────────────────────────────────────────────────────────┤
    │                      │ CVE-2019-9192    │          │                         │                 │ glibc: uncontrolled recursion in function                    │
    │                      │                  │          │                         │                 │ check_dst_limits_calc_pos_1 in posix/regexec.c               │
    │                      │                  │          │                         │                 │ https://avd.aquasec.com/nvd/cve-2019-9192                    │
    │                      ├──────────────────┤          │                         ├─────────────────┼──────────────────────────────────────────────────────────────┤
    │                      │ CVE-2020-6096    │          │                         │                 │ glibc: signed comparison vulnerability in the ARMv7 memcpy   │
    │                      │                  │          │                         │                 │ function                                                     │
    │                      │                  │          │                         │                 │ https://avd.aquasec.com/nvd/cve-2020-6096                    │
    │                      ├──────────────────┤          │                         ├─────────────────┼──────────────────────────────────────────────────────────────┤
    │                      │ CVE-2021-27645   │          │                         │                 │ glibc: Use-after-free in addgetnetgrentX function in         │
    │                      │                  │          │                         │                 │ netgroupcache.c                                              │
    │                      │                  │          │                         │                 │ https://avd.aquasec.com/nvd/cve-2021-27645                   │
    ├──────────────────────┼──────────────────┼──────────┼─────────────────────────┼─────────────────┼──────────────────────────────────────────────────────────────┤
    │ libcom-err2          │ CVE-2022-1304    │ HIGH     │ 1.44.5-1+deb10u3        │                 │ e2fsprogs: out-of-bounds read/write via crafted filesystem   │
    │                      │                  │          │                         │                 │ https://avd.aquasec.com/nvd/cve-2022-1304                    │
    ├──────────────────────┼──────────────────┤          ├─────────────────────────┼─────────────────┼──────────────────────────────────────────────────────────────┤
    │ libcurl3-gnutls      │ CVE-2021-22946   │          │ 7.64.0-4+deb10u2        │                 │ curl: Requirement to use TLS not properly enforced for IMAP, │
    │                      │                  │          │                         │                 │ POP3, and...                                                 │
    │                      │                  │          │                         │                 │ https://avd.aquasec.com/nvd/cve-2021-22946                   │
    │                      ├──────────────────┤          │                         ├─────────────────┼──────────────────────────────────────────────────────────────┤
    │                      │ CVE-2022-22576   │          │                         │                 │ curl: OAUTH2 bearer bypass in connection re-use              │
    │                      │                  │          │                         │                 │ https://avd.aquasec.com/nvd/cve-2022-22576                   │
    │                      ├──────────────────┤          │                         ├─────────────────┼──────────────────────────────────────────────────────────────┤
    │                      │ CVE-2022-27781   │          │                         │                 │ curl: CERTINFO never-ending busy-loop                        │
    │                      │                  │          │                         │                 │ https://avd.aquasec.com/nvd/cve-2022-27781                   │
    │                      ├──────────────────┤          │                         ├─────────────────┼──────────────────────────────────────────────────────────────┤
    │                      │ CVE-2022-27782   │          │                         │                 │ curl: TLS and SSH connection too eager reuse                 │
    │                      │                  │          │                         │                 │ https://avd.aquasec.com/nvd/cve-2022-27782                   │
    │                      ├──────────────────┼──────────┤                         ├─────────────────┼──────────────────────────────────────────────────────────────┤
    │                      │ CVE-2021-22947   │ MEDIUM   │                         │                 │ curl: Server responses received before STARTTLS processed    │
    │                      │                  │          │                         │                 │ after TLS handshake                                          │
    │                      │                  │          │                         │                 │ https://avd.aquasec.com/nvd/cve-2021-22947                   │
    │                      ├──────────────────┤          │                         ├─────────────────┼──────────────────────────────────────────────────────────────┤
    │                      │ CVE-2022-27774   │          │                         │                 │ curl: credential leak on redirect                            │
    │                      │                  │          │                         │                 │ https://avd.aquasec.com/nvd/cve-2022-27774                   │
    │                      ├──────────────────┤          │                         ├─────────────────┼──────────────────────────────────────────────────────────────┤
    │                      │ CVE-2022-27776   │          │                         │                 │ curl: auth/cookie leak on redirect                           │
    │                      │                  │          │                         │                 │ https://avd.aquasec.com/nvd/cve-2022-27776                   │
    │                      ├──────────────────┤          │                         ├─────────────────┼──────────────────────────────────────────────────────────────┤
    │                      │ CVE-2022-32206   │          │                         │                 │ curl: HTTP compression denial of service                     │
    │                      │                  │          │                         │                 │ https://avd.aquasec.com/nvd/cve-2022-32206                   │
    │                      ├──────────────────┤          │                         ├─────────────────┼──────────────────────────────────────────────────────────────┤
    │                      │ CVE-2022-32208   │          │                         │                 │ curl: FTP-KRB bad message verification                       │
    │                      │                  │          │                         │                 │ https://avd.aquasec.com/nvd/cve-2022-32208                   │
    │                      ├──────────────────┼──────────┤                         ├─────────────────┼──────────────────────────────────────────────────────────────┤
    │                      │ CVE-2021-22898   │ LOW      │                         │                 │ curl: TELNET stack contents disclosure                       │
    │                      │                  │          │                         │                 │ https://avd.aquasec.com/nvd/cve-2021-22898                   │
    │                      ├──────────────────┤          │                         ├─────────────────┼──────────────────────────────────────────────────────────────┤
    │                      │ CVE-2021-22922   │          │                         │                 │ curl: Content not matching hash in Metalink is not being     │
    │                      │                  │          │                         │                 │ discarded                                                    │
    │                      │                  │          │                         │                 │ https://avd.aquasec.com/nvd/cve-2021-22922                   │
    │                      ├──────────────────┤          │                         ├─────────────────┼──────────────────────────────────────────────────────────────┤
    │                      │ CVE-2021-22923   │          │                         │                 │ curl: Metalink download sends credentials                    │
    │                      │                  │          │                         │                 │ https://avd.aquasec.com/nvd/cve-2021-22923                   │
    │                      ├──────────────────┤          │                         ├─────────────────┼──────────────────────────────────────────────────────────────┤
    │                      │ CVE-2021-22924   │          │                         │                 │ curl: Bad connection reuse due to flawed path name checks    │
    │                      │                  │          │                         │                 │ https://avd.aquasec.com/nvd/cve-2021-22924                   │
    ├──────────────────────┼──────────────────┼──────────┤                         ├─────────────────┼──────────────────────────────────────────────────────────────┤
    │ libcurl4             │ CVE-2021-22946   │ HIGH     │                         │                 │ curl: Requirement to use TLS not properly enforced for IMAP, │
    │                      │                  │          │                         │                 │ POP3, and...                                                 │
    │                      │                  │          │                         │                 │ https://avd.aquasec.com/nvd/cve-2021-22946                   │
    │                      ├──────────────────┤          │                         ├─────────────────┼──────────────────────────────────────────────────────────────┤
    │                      │ CVE-2022-22576   │          │                         │                 │ curl: OAUTH2 bearer bypass in connection re-use              │
    │                      │                  │          │                         │                 │ https://avd.aquasec.com/nvd/cve-2022-22576                   │
    │                      ├──────────────────┤          │                         ├─────────────────┼──────────────────────────────────────────────────────────────┤
    │                      │ CVE-2022-27781   │          │                         │                 │ curl: CERTINFO never-ending busy-loop                        │
    │                      │                  │          │                         │                 │ https://avd.aquasec.com/nvd/cve-2022-27781                   │
    │                      ├──────────────────┤          │                         ├─────────────────┼──────────────────────────────────────────────────────────────┤
    │                      │ CVE-2022-27782   │          │                         │                 │ curl: TLS and SSH connection too eager reuse                 │
    │                      │                  │          │                         │                 │ https://avd.aquasec.com/nvd/cve-2022-27782                   │
    │                      ├──────────────────┼──────────┤                         ├─────────────────┼──────────────────────────────────────────────────────────────┤
    │                      │ CVE-2021-22947   │ MEDIUM   │                         │                 │ curl: Server responses received before STARTTLS processed    │
    │                      │                  │          │                         │                 │ after TLS handshake                                          │
    │                      │                  │          │                         │                 │ https://avd.aquasec.com/nvd/cve-2021-22947                   │
    │                      ├──────────────────┤          │                         ├─────────────────┼──────────────────────────────────────────────────────────────┤
    │                      │ CVE-2022-27774   │          │                         │                 │ curl: credential leak on redirect                            │
    │                      │                  │          │                         │                 │ https://avd.aquasec.com/nvd/cve-2022-27774                   │
    │                      ├──────────────────┤          │                         ├─────────────────┼──────────────────────────────────────────────────────────────┤
    │                      │ CVE-2022-27776   │          │                         │                 │ curl: auth/cookie leak on redirect                           │
    │                      │                  │          │                         │                 │ https://avd.aquasec.com/nvd/cve-2022-27776                   │
    │                      ├──────────────────┤          │                         ├─────────────────┼──────────────────────────────────────────────────────────────┤
    │                      │ CVE-2022-32206   │          │                         │                 │ curl: HTTP compression denial of service                     │
    │                      │                  │          │                         │                 │ https://avd.aquasec.com/nvd/cve-2022-32206                   │
    │                      ├──────────────────┤          │                         ├─────────────────┼──────────────────────────────────────────────────────────────┤
    │                      │ CVE-2022-32208   │          │                         │                 │ curl: FTP-KRB bad message verification                       │
    │                      │                  │          │                         │                 │ https://avd.aquasec.com/nvd/cve-2022-32208                   │
    │                      ├──────────────────┼──────────┤                         ├─────────────────┼──────────────────────────────────────────────────────────────┤
    │                      │ CVE-2021-22898   │ LOW      │                         │                 │ curl: TELNET stack contents disclosure                       │
    │                      │                  │          │                         │                 │ https://avd.aquasec.com/nvd/cve-2021-22898                   │
    │                      ├──────────────────┤          │                         ├─────────────────┼──────────────────────────────────────────────────────────────┤
    │                      │ CVE-2021-22922   │          │                         │                 │ curl: Content not matching hash in Metalink is not being     │
    │                      │                  │          │                         │                 │ discarded                                                    │
    │                      │                  │          │                         │                 │ https://avd.aquasec.com/nvd/cve-2021-22922                   │
    │                      ├──────────────────┤          │                         ├─────────────────┼──────────────────────────────────────────────────────────────┤
    │                      │ CVE-2021-22923   │          │                         │                 │ curl: Metalink download sends credentials                    │
    │                      │                  │          │                         │                 │ https://avd.aquasec.com/nvd/cve-2021-22923                   │
    │                      ├──────────────────┤          │                         ├─────────────────┼──────────────────────────────────────────────────────────────┤
    │                      │ CVE-2021-22924   │          │                         │                 │ curl: Bad connection reuse due to flawed path name checks    │
    │                      │                  │          │                         │                 │ https://avd.aquasec.com/nvd/cve-2021-22924                   │
    ├──────────────────────┼──────────────────┼──────────┼─────────────────────────┼─────────────────┼──────────────────────────────────────────────────────────────┤
    │ libdb5.3             │ CVE-2019-8457    │ CRITICAL │ 5.3.28+dfsg1-0.5        │                 │ sqlite: heap out-of-bound read in function rtreenode()       │
    │                      │                  │          │                         │                 │ https://avd.aquasec.com/nvd/cve-2019-8457                    │
    ├──────────────────────┼──────────────────┼──────────┼─────────────────────────┼─────────────────┼──────────────────────────────────────────────────────────────┤
    │ libexpat1            │ CVE-2013-0340    │ LOW      │ 2.2.6-2+deb10u4         │                 │ expat: internal entity expansion                             │
    │                      │                  │          │                         │                 │ https://avd.aquasec.com/nvd/cve-2013-0340                    │
    ├──────────────────────┼──────────────────┼──────────┼─────────────────────────┼─────────────────┼──────────────────────────────────────────────────────────────┤
    │ libext2fs2           │ CVE-2022-1304    │ HIGH     │ 1.44.5-1+deb10u3        │                 │ e2fsprogs: out-of-bounds read/write via crafted filesystem   │
    │                      │                  │          │                         │                 │ https://avd.aquasec.com/nvd/cve-2022-1304                    │
    ├──────────────────────┼──────────────────┼──────────┼─────────────────────────┼─────────────────┼──────────────────────────────────────────────────────────────┤
    │ libfdisk1            │ CVE-2021-37600   │ LOW      │ 2.33.1-0.1              │                 │ util-linux: integer overflow can lead to buffer overflow in  │
    │                      │                  │          │                         │                 │ get_sem_elements() in sys-utils/ipcutils.c...                │
    │                      │                  │          │                         │                 │ https://avd.aquasec.com/nvd/cve-2021-37600                   │
    │                      ├──────────────────┤          │                         ├─────────────────┼──────────────────────────────────────────────────────────────┤
    │                      │ CVE-2022-0563    │          │                         │                 │ util-linux: partial disclosure of arbitrary files in chfn    │
    │                      │                  │          │                         │                 │ and chsh when compiled...                                    │
    │                      │                  │          │                         │                 │ https://avd.aquasec.com/nvd/cve-2022-0563                    │
    ├──────────────────────┼──────────────────┼──────────┼─────────────────────────┼─────────────────┼──────────────────────────────────────────────────────────────┤
    │ libfreetype6         │ CVE-2022-27404   │ CRITICAL │ 2.9.1-3+deb10u2         │                 │ FreeType: Buffer Overflow                                    │
    │                      │                  │          │                         │                 │ https://avd.aquasec.com/nvd/cve-2022-27404                   │
    │                      ├──────────────────┼──────────┤                         ├─────────────────┼──────────────────────────────────────────────────────────────┤
    │                      │ CVE-2022-27405   │ HIGH     │                         │                 │ FreeType: Segementation Fault                                │
    │                      │                  │          │                         │                 │ https://avd.aquasec.com/nvd/cve-2022-27405                   │
    │                      ├──────────────────┤          │                         ├─────────────────┼──────────────────────────────────────────────────────────────┤
    │                      │ CVE-2022-27406   │          │                         │                 │ Freetype: Segmentation violation                             │
    │                      │                  │          │                         │                 │ https://avd.aquasec.com/nvd/cve-2022-27406                   │
    │                      ├──────────────────┼──────────┤                         ├─────────────────┼──────────────────────────────────────────────────────────────┤
    │                      │ CVE-2022-31782   │ LOW      │                         │                 │ ftbench.c in FreeType Demo Programs through 2.12.1 has a     │
    │                      │                  │          │                         │                 │ heap-based bu ......                                         │
    │                      │                  │          │                         │                 │ https://avd.aquasec.com/nvd/cve-2022-31782                   │
    ├──────────────────────┼──────────────────┼──────────┼─────────────────────────┼─────────────────┼──────────────────────────────────────────────────────────────┤
    │ libgcc1              │ CVE-2018-12886   │ HIGH     │ 8.3.0-6                 │                 │ gcc: spilling of stack protection address in cfgexpand.c and │
    │                      │                  │          │                         │                 │ function.c leads to...                                       │
    │                      │                  │          │                         │                 │ https://avd.aquasec.com/nvd/cve-2018-12886                   │
    │                      ├──────────────────┤          │                         ├─────────────────┼──────────────────────────────────────────────────────────────┤
    │                      │ CVE-2019-15847   │          │                         │                 │ gcc: POWER9 "DARN" RNG intrinsic produces repeated output    │
    │                      │                  │          │                         │                 │ https://avd.aquasec.com/nvd/cve-2019-15847                   │
    ├──────────────────────┼──────────────────┤          ├─────────────────────────┼─────────────────┼──────────────────────────────────────────────────────────────┤
    │ libgcrypt20          │ CVE-2021-33560   │          │ 1.8.4-5+deb10u1         │                 │ libgcrypt: mishandles ElGamal encryption because it lacks    │
    │                      │                  │          │                         │                 │ exponent blinding to address a...                            │
    │                      │                  │          │                         │                 │ https://avd.aquasec.com/nvd/cve-2021-33560                   │
    │                      ├──────────────────┼──────────┤                         ├─────────────────┼──────────────────────────────────────────────────────────────┤
    │                      │ CVE-2019-13627   │ MEDIUM   │                         │                 │ libgcrypt: ECDSA timing attack allowing private key leak     │
    │                      │                  │          │                         │                 │ https://avd.aquasec.com/nvd/cve-2019-13627                   │
    │                      ├──────────────────┼──────────┤                         ├─────────────────┼──────────────────────────────────────────────────────────────┤
    │                      │ CVE-2018-6829    │ LOW      │                         │                 │ libgcrypt: ElGamal implementation doesn't have semantic      │
    │                      │                  │          │                         │                 │ security due to incorrectly encoded plaintexts...            │
    │                      │                  │          │                         │                 │ https://avd.aquasec.com/nvd/cve-2018-6829                    │
    ├──────────────────────┼──────────────────┼──────────┼─────────────────────────┼─────────────────┼──────────────────────────────────────────────────────────────┤
    │ libgnutls30          │ CVE-2022-2509    │ HIGH     │ 3.6.7-4+deb10u7         │ 3.6.7-4+deb10u9 │ gnutls: Double free during gnutls_pkcs7_verify.              │
    │                      │                  │          │                         │                 │ https://avd.aquasec.com/nvd/cve-2022-2509                    │
    │                      ├──────────────────┼──────────┤                         │                 ├──────────────────────────────────────────────────────────────┤
    │                      │ CVE-2021-4209    │ MEDIUM   │                         │                 │ GnuTLS: Null pointer dereference in MD_UPDATE                │
    │                      │                  │          │                         │                 │ https://avd.aquasec.com/nvd/cve-2021-4209                    │
    │                      ├──────────────────┼──────────┤                         ├─────────────────┼──────────────────────────────────────────────────────────────┤
    │                      │ CVE-2011-3389    │ LOW      │                         │                 │ HTTPS: block-wise chosen-plaintext attack against SSL/TLS    │
    │                      │                  │          │                         │                 │ (BEAST)                                                      │
    │                      │                  │          │                         │                 │ https://avd.aquasec.com/nvd/cve-2011-3389                    │
    ├──────────────────────┼──────────────────┤          ├─────────────────────────┼─────────────────┼──────────────────────────────────────────────────────────────┤
    │ libgssapi-krb5-2     │ CVE-2004-0971    │          │ 1.17-3+deb10u3          │                 │ security flaw                                                │
    │                      │                  │          │                         │                 │ https://avd.aquasec.com/nvd/cve-2004-0971                    │
    │                      ├──────────────────┤          │                         ├─────────────────┼──────────────────────────────────────────────────────────────┤
    │                      │ CVE-2018-5709    │          │                         │                 │ krb5: integer overflow in dbentry->n_key_data in             │
    │                      │                  │          │                         │                 │ kadmin/dbutil/dump.c                                         │
    │                      │                  │          │                         │                 │ https://avd.aquasec.com/nvd/cve-2018-5709                    │
    ├──────────────────────┼──────────────────┼──────────┼─────────────────────────┼─────────────────┼──────────────────────────────────────────────────────────────┤
    │ libidn2-0            │ CVE-2019-12290   │ HIGH     │ 2.0.5-1+deb10u1         │                 │ GNU libidn2 before 2.2.0 fails to perform the roundtrip      │
    │                      │                  │          │                         │                 │ checks specifi ......                                        │
    │                      │                  │          │                         │                 │ https://avd.aquasec.com/nvd/cve-2019-12290                   │
    ├──────────────────────┼──────────────────┼──────────┼─────────────────────────┼─────────────────┼──────────────────────────────────────────────────────────────┤
    │ libjpeg62-turbo      │ CVE-2021-46822   │ MEDIUM   │ 1:1.5.2-2+deb10u1       │                 │ libjpeg-turbo: heap buffer overflow in get_word_rgb_row() in │
    │                      │                  │          │                         │                 │ rdppm.c                                                      │
    │                      │                  │          │                         │                 │ https://avd.aquasec.com/nvd/cve-2021-46822                   │
    │                      ├──────────────────┼──────────┤                         ├─────────────────┼──────────────────────────────────────────────────────────────┤
    │                      │ CVE-2017-15232   │ LOW      │                         │                 │ libjpeg-turbo: NULL pointer dereference in jdpostct.c and    │
    │                      │                  │          │                         │                 │ jquant1.c                                                    │
    │                      │                  │          │                         │                 │ https://avd.aquasec.com/nvd/cve-2017-15232                   │
    │                      ├──────────────────┤          │                         ├─────────────────┼──────────────────────────────────────────────────────────────┤
    │                      │ CVE-2018-11813   │          │                         │                 │ libjpeg: "cjpeg" utility large loop because read_pixel in    │
    │                      │                  │          │                         │                 │ rdtarga.c mishandles EOF                                     │
    │                      │                  │          │                         │                 │ https://avd.aquasec.com/nvd/cve-2018-11813                   │
    │                      ├──────────────────┤          │                         ├─────────────────┼──────────────────────────────────────────────────────────────┤
    │                      │ CVE-2020-17541   │          │                         │                 │ libjpeg-turbo: Stack-based buffer overflow in the            │
    │                      │                  │          │                         │                 │ "transform" component                                        │
    │                      │                  │          │                         │                 │ https://avd.aquasec.com/nvd/cve-2020-17541                   │
    ├──────────────────────┼──────────────────┤          ├─────────────────────────┼─────────────────┼──────────────────────────────────────────────────────────────┤
    │ libk5crypto3         │ CVE-2004-0971    │          │ 1.17-3+deb10u3          │                 │ security flaw                                                │
    │                      │                  │          │                         │                 │ https://avd.aquasec.com/nvd/cve-2004-0971                    │
    │                      ├──────────────────┤          │                         ├─────────────────┼──────────────────────────────────────────────────────────────┤
    │                      │ CVE-2018-5709    │          │                         │                 │ krb5: integer overflow in dbentry->n_key_data in             │
    │                      │                  │          │                         │                 │ kadmin/dbutil/dump.c                                         │
    │                      │                  │          │                         │                 │ https://avd.aquasec.com/nvd/cve-2018-5709                    │
    ├──────────────────────┼──────────────────┤          │                         ├─────────────────┼──────────────────────────────────────────────────────────────┤
    │ libkrb5-3            │ CVE-2004-0971    │          │                         │                 │ security flaw                                                │
    │                      │                  │          │                         │                 │ https://avd.aquasec.com/nvd/cve-2004-0971                    │
    │                      ├──────────────────┤          │                         ├─────────────────┼──────────────────────────────────────────────────────────────┤
    │                      │ CVE-2018-5709    │          │                         │                 │ krb5: integer overflow in dbentry->n_key_data in             │
    │                      │                  │          │                         │                 │ kadmin/dbutil/dump.c                                         │
    │                      │                  │          │                         │                 │ https://avd.aquasec.com/nvd/cve-2018-5709                    │
    ├──────────────────────┼──────────────────┤          │                         ├─────────────────┼──────────────────────────────────────────────────────────────┤
    │ libkrb5support0      │ CVE-2004-0971    │          │                         │                 │ security flaw                                                │
    │                      │                  │          │                         │                 │ https://avd.aquasec.com/nvd/cve-2004-0971                    │
    │                      ├──────────────────┤          │                         ├─────────────────┼──────────────────────────────────────────────────────────────┤
    │                      │ CVE-2018-5709    │          │                         │                 │ krb5: integer overflow in dbentry->n_key_data in             │
    │                      │                  │          │                         │                 │ kadmin/dbutil/dump.c                                         │
    │                      │                  │          │                         │                 │ https://avd.aquasec.com/nvd/cve-2018-5709                    │
    ├──────────────────────┼──────────────────┤          ├─────────────────────────┼─────────────────┼──────────────────────────────────────────────────────────────┤
    │ libldap-2.4-2        │ CVE-2015-3276    │          │ 2.4.47+dfsg-3+deb10u7   │                 │ openldap: incorrect multi-keyword mode cipherstring parsing  │
    │                      │                  │          │                         │                 │ https://avd.aquasec.com/nvd/cve-2015-3276                    │
    │                      ├──────────────────┤          │                         ├─────────────────┼──────────────────────────────────────────────────────────────┤
    │                      │ CVE-2017-14159   │          │                         │                 │ openldap: Privilege escalation via PID file manipulation     │
    │                      │                  │          │                         │                 │ https://avd.aquasec.com/nvd/cve-2017-14159                   │
    │                      ├──────────────────┤          │                         ├─────────────────┼──────────────────────────────────────────────────────────────┤
    │                      │ CVE-2017-17740   │          │                         │                 │ openldap: contrib/slapd-modules/nops/nops.c attempts to free │
    │                      │                  │          │                         │                 │ stack buffer allowing remote attackers to cause...           │
    │                      │                  │          │                         │                 │ https://avd.aquasec.com/nvd/cve-2017-17740                   │
    │                      ├──────────────────┤          │                         ├─────────────────┼──────────────────────────────────────────────────────────────┤
    │                      │ CVE-2020-15719   │          │                         │                 │ openldap: Certificate validation incorrectly matches name    │
    │                      │                  │          │                         │                 │ against CN-ID                                                │
    │                      │                  │          │                         │                 │ https://avd.aquasec.com/nvd/cve-2020-15719                   │
    ├──────────────────────┼──────────────────┤          │                         ├─────────────────┼──────────────────────────────────────────────────────────────┤
    │ libldap-common       │ CVE-2015-3276    │          │                         │                 │ openldap: incorrect multi-keyword mode cipherstring parsing  │
    │                      │                  │          │                         │                 │ https://avd.aquasec.com/nvd/cve-2015-3276                    │
    │                      ├──────────────────┤          │                         ├─────────────────┼──────────────────────────────────────────────────────────────┤
    │                      │ CVE-2017-14159   │          │                         │                 │ openldap: Privilege escalation via PID file manipulation     │
    │                      │                  │          │                         │                 │ https://avd.aquasec.com/nvd/cve-2017-14159                   │
    │                      ├──────────────────┤          │                         ├─────────────────┼──────────────────────────────────────────────────────────────┤
    │                      │ CVE-2017-17740   │          │                         │                 │ openldap: contrib/slapd-modules/nops/nops.c attempts to free │
    │                      │                  │          │                         │                 │ stack buffer allowing remote attackers to cause...           │
    │                      │                  │          │                         │                 │ https://avd.aquasec.com/nvd/cve-2017-17740                   │
    │                      ├──────────────────┤          │                         ├─────────────────┼──────────────────────────────────────────────────────────────┤
    │                      │ CVE-2020-15719   │          │                         │                 │ openldap: Certificate validation incorrectly matches name    │
    │                      │                  │          │                         │                 │ against CN-ID                                                │
    │                      │                  │          │                         │                 │ https://avd.aquasec.com/nvd/cve-2020-15719                   │
    ├──────────────────────┼──────────────────┤          ├─────────────────────────┼─────────────────┼──────────────────────────────────────────────────────────────┤
    │ liblz4-1             │ CVE-2019-17543   │          │ 1.8.3-1+deb10u1         │                 │ lz4: heap-based buffer overflow in LZ4_write32               │
    │                      │                  │          │                         │                 │ https://avd.aquasec.com/nvd/cve-2019-17543                   │
    ├──────────────────────┼──────────────────┤          ├─────────────────────────┼─────────────────┼──────────────────────────────────────────────────────────────┤
    │ libmount1            │ CVE-2021-37600   │          │ 2.33.1-0.1              │                 │ util-linux: integer overflow can lead to buffer overflow in  │
    │                      │                  │          │                         │                 │ get_sem_elements() in sys-utils/ipcutils.c...                │
    │                      │                  │          │                         │                 │ https://avd.aquasec.com/nvd/cve-2021-37600                   │
    │                      ├──────────────────┤          │                         ├─────────────────┼──────────────────────────────────────────────────────────────┤
    │                      │ CVE-2022-0563    │          │                         │                 │ util-linux: partial disclosure of arbitrary files in chfn    │
    │                      │                  │          │                         │                 │ and chsh when compiled...                                    │
    │                      │                  │          │                         │                 │ https://avd.aquasec.com/nvd/cve-2022-0563                    │
    ├──────────────────────┼──────────────────┼──────────┼─────────────────────────┼─────────────────┼──────────────────────────────────────────────────────────────┤
    │ libncursesw6         │ CVE-2022-29458   │ HIGH     │ 6.1+20181013-2+deb10u2  │                 │ ncurses: segfaulting OOB read                                │
    │                      │                  │          │                         │                 │ https://avd.aquasec.com/nvd/cve-2022-29458                   │
    │                      ├──────────────────┼──────────┤                         ├─────────────────┼──────────────────────────────────────────────────────────────┤
    │                      │ CVE-2021-39537   │ LOW      │                         │                 │ ncurses: heap-based buffer overflow in _nc_captoinfo() in    │
    │                      │                  │          │                         │                 │ captoinfo.c                                                  │
    │                      │                  │          │                         │                 │ https://avd.aquasec.com/nvd/cve-2021-39537                   │
    ├──────────────────────┼──────────────────┼──────────┼─────────────────────────┼─────────────────┼──────────────────────────────────────────────────────────────┤
    │ libnghttp2-14        │ CVE-2020-11080   │ HIGH     │ 1.36.0-2+deb10u1        │                 │ nghttp2: overly large SETTINGS frames can lead to DoS        │
    │                      │                  │          │                         │                 │ https://avd.aquasec.com/nvd/cve-2020-11080                   │
    ├──────────────────────┼──────────────────┼──────────┼─────────────────────────┼─────────────────┼──────────────────────────────────────────────────────────────┤
    │ libnode-dev          │ CVE-2021-22930   │ CRITICAL │ 10.24.0~dfsg-1~deb10u1  │                 │ nodejs: Use-after-free on close http2 on stream canceling    │
    │                      │                  │          │                         │                 │ https://avd.aquasec.com/nvd/cve-2021-22930                   │
    │                      ├──────────────────┤          │                         ├─────────────────┼──────────────────────────────────────────────────────────────┤
    │                      │ CVE-2022-32213   │          │                         │                 │ nodejs: HTTP request smuggling due to flawed parsing of      │
    │                      │                  │          │                         │                 │ Transfer-Encoding                                            │
    │                      │                  │          │                         │                 │ https://avd.aquasec.com/nvd/cve-2022-32213                   │
    │                      ├──────────────────┤          │                         ├─────────────────┼──────────────────────────────────────────────────────────────┤
    │                      │ CVE-2022-32214   │          │                         │                 │ nodejs: HTTP request smuggling due to improper delimiting of │
    │                      │                  │          │                         │                 │ header fields                                                │
    │                      │                  │          │                         │                 │ https://avd.aquasec.com/nvd/cve-2022-32214                   │
    │                      ├──────────────────┤          │                         ├─────────────────┼──────────────────────────────────────────────────────────────┤
    │                      │ CVE-2022-32215   │          │                         │                 │ nodejs: HTTP request smuggling due to incorrect parsing of   │
    │                      │                  │          │                         │                 │ multi-line Transfer-Encoding                                 │
    │                      │                  │          │                         │                 │ https://avd.aquasec.com/nvd/cve-2022-32215                   │
    │                      ├──────────────────┼──────────┤                         ├─────────────────┼──────────────────────────────────────────────────────────────┤
    │                      │ CVE-2021-44531   │ HIGH     │                         │                 │ nodejs: Improper handling of URI Subject Alternative Names   │
    │                      │                  │          │                         │                 │ https://avd.aquasec.com/nvd/cve-2021-44531                   │
    │                      ├──────────────────┤          │                         ├─────────────────┼──────────────────────────────────────────────────────────────┤
    │                      │ CVE-2022-21824   │          │                         │                 │ nodejs: Prototype pollution via console.table properties     │
    │                      │                  │          │                         │                 │ https://avd.aquasec.com/nvd/cve-2022-21824                   │
    │                      ├──────────────────┤          │                         ├─────────────────┼──────────────────────────────────────────────────────────────┤
    │                      │ CVE-2022-32212   │          │                         │                 │ nodejs: DNS rebinding in --inspect via invalid IP addresses  │
    │                      │                  │          │                         │                 │ https://avd.aquasec.com/nvd/cve-2022-32212                   │
    │                      ├──────────────────┼──────────┤                         ├─────────────────┼──────────────────────────────────────────────────────────────┤
    │                      │ CVE-2021-22939   │ MEDIUM   │                         │                 │ nodejs: Incomplete validation of tls rejectUnauthorized      │
    │                      │                  │          │                         │                 │ parameter                                                    │
    │                      │                  │          │                         │                 │ https://avd.aquasec.com/nvd/cve-2021-22939                   │
    │                      ├──────────────────┤          │                         ├─────────────────┼──────────────────────────────────────────────────────────────┤
    │                      │ CVE-2021-22959   │          │                         │                 │ llhttp: HTTP Request Smuggling due to spaces in headers      │
    │                      │                  │          │                         │                 │ https://avd.aquasec.com/nvd/cve-2021-22959                   │
    │                      ├──────────────────┤          │                         ├─────────────────┼──────────────────────────────────────────────────────────────┤
    │                      │ CVE-2021-22960   │          │                         │                 │ llhttp: HTTP Request Smuggling when parsing the body of      │
    │                      │                  │          │                         │                 │ chunked requests                                             │
    │                      │                  │          │                         │                 │ https://avd.aquasec.com/nvd/cve-2021-22960                   │
    │                      ├──────────────────┤          │                         ├─────────────────┼──────────────────────────────────────────────────────────────┤
    │                      │ CVE-2021-44532   │          │                         │                 │ nodejs: Certificate Verification Bypass via String Injection │
    │                      │                  │          │                         │                 │ https://avd.aquasec.com/nvd/cve-2021-44532                   │
    │                      ├──────────────────┤          │                         ├─────────────────┼──────────────────────────────────────────────────────────────┤
    │                      │ CVE-2021-44533   │          │                         │                 │ nodejs: Incorrect handling of certificate subject and issuer │
    │                      │                  │          │                         │                 │ fields                                                       │
    │                      │                  │          │                         │                 │ https://avd.aquasec.com/nvd/cve-2021-44533                   │
    ├──────────────────────┼──────────────────┼──────────┤                         ├─────────────────┼──────────────────────────────────────────────────────────────┤
    │ libnode64            │ CVE-2021-22930   │ CRITICAL │                         │                 │ nodejs: Use-after-free on close http2 on stream canceling    │
    │                      │                  │          │                         │                 │ https://avd.aquasec.com/nvd/cve-2021-22930                   │
    │                      ├──────────────────┤          │                         ├─────────────────┼──────────────────────────────────────────────────────────────┤
    │                      │ CVE-2022-32213   │          │                         │                 │ nodejs: HTTP request smuggling due to flawed parsing of      │
    │                      │                  │          │                         │                 │ Transfer-Encoding                                            │
    │                      │                  │          │                         │                 │ https://avd.aquasec.com/nvd/cve-2022-32213                   │
    │                      ├──────────────────┤          │                         ├─────────────────┼──────────────────────────────────────────────────────────────┤
    │                      │ CVE-2022-32214   │          │                         │                 │ nodejs: HTTP request smuggling due to improper delimiting of │
    │                      │                  │          │                         │                 │ header fields                                                │
    │                      │                  │          │                         │                 │ https://avd.aquasec.com/nvd/cve-2022-32214                   │
    │                      ├──────────────────┤          │                         ├─────────────────┼──────────────────────────────────────────────────────────────┤
    │                      │ CVE-2022-32215   │          │                         │                 │ nodejs: HTTP request smuggling due to incorrect parsing of   │
    │                      │                  │          │                         │                 │ multi-line Transfer-Encoding                                 │
    │                      │                  │          │                         │                 │ https://avd.aquasec.com/nvd/cve-2022-32215                   │
    │                      ├──────────────────┼──────────┤                         ├─────────────────┼──────────────────────────────────────────────────────────────┤
    │                      │ CVE-2021-44531   │ HIGH     │                         │                 │ nodejs: Improper handling of URI Subject Alternative Names   │
    │                      │                  │          │                         │                 │ https://avd.aquasec.com/nvd/cve-2021-44531                   │
    │                      ├──────────────────┤          │                         ├─────────────────┼──────────────────────────────────────────────────────────────┤
    │                      │ CVE-2022-21824   │          │                         │                 │ nodejs: Prototype pollution via console.table properties     │
    │                      │                  │          │                         │                 │ https://avd.aquasec.com/nvd/cve-2022-21824                   │
    │                      ├──────────────────┤          │                         ├─────────────────┼──────────────────────────────────────────────────────────────┤
    │                      │ CVE-2022-32212   │          │                         │                 │ nodejs: DNS rebinding in --inspect via invalid IP addresses  │
    │                      │                  │          │                         │                 │ https://avd.aquasec.com/nvd/cve-2022-32212                   │
    │                      ├──────────────────┼──────────┤                         ├─────────────────┼──────────────────────────────────────────────────────────────┤
    │                      │ CVE-2021-22939   │ MEDIUM   │                         │                 │ nodejs: Incomplete validation of tls rejectUnauthorized      │
    │                      │                  │          │                         │                 │ parameter                                                    │
    │                      │                  │          │                         │                 │ https://avd.aquasec.com/nvd/cve-2021-22939                   │
    │                      ├──────────────────┤          │                         ├─────────────────┼──────────────────────────────────────────────────────────────┤
    │                      │ CVE-2021-22959   │          │                         │                 │ llhttp: HTTP Request Smuggling due to spaces in headers      │
    │                      │                  │          │                         │                 │ https://avd.aquasec.com/nvd/cve-2021-22959                   │
    │                      ├──────────────────┤          │                         ├─────────────────┼──────────────────────────────────────────────────────────────┤
    │                      │ CVE-2021-22960   │          │                         │                 │ llhttp: HTTP Request Smuggling when parsing the body of      │
    │                      │                  │          │                         │                 │ chunked requests                                             │
    │                      │                  │          │                         │                 │ https://avd.aquasec.com/nvd/cve-2021-22960                   │
    │                      ├──────────────────┤          │                         ├─────────────────┼──────────────────────────────────────────────────────────────┤
    │                      │ CVE-2021-44532   │          │                         │                 │ nodejs: Certificate Verification Bypass via String Injection │
    │                      │                  │          │                         │                 │ https://avd.aquasec.com/nvd/cve-2021-44532                   │
    │                      ├──────────────────┤          │                         ├─────────────────┼──────────────────────────────────────────────────────────────┤
    │                      │ CVE-2021-44533   │          │                         │                 │ nodejs: Incorrect handling of certificate subject and issuer │
    │                      │                  │          │                         │                 │ fields                                                       │
    │                      │                  │          │                         │                 │ https://avd.aquasec.com/nvd/cve-2021-44533                   │
    ├──────────────────────┼──────────────────┼──────────┼─────────────────────────┼─────────────────┼──────────────────────────────────────────────────────────────┤
    │ libpcre2-8-0         │ CVE-2022-1586    │ CRITICAL │ 10.32-5                 │                 │ pcre2: Out-of-bounds read in compile_xclass_matchingpath in  │
    │                      │                  │          │                         │                 │ pcre2_jit_compile.c                                          │
    │                      │                  │          │                         │                 │ https://avd.aquasec.com/nvd/cve-2022-1586                    │
    │                      ├──────────────────┤          │                         ├─────────────────┼──────────────────────────────────────────────────────────────┤
    │                      │ CVE-2022-1587    │          │                         │                 │ pcre2: Out-of-bounds read in get_recurse_data_length in      │
    │                      │                  │          │                         │                 │ pcre2_jit_compile.c                                          │
    │                      │                  │          │                         │                 │ https://avd.aquasec.com/nvd/cve-2022-1587                    │
    │                      ├──────────────────┼──────────┤                         ├─────────────────┼──────────────────────────────────────────────────────────────┤
    │                      │ CVE-2019-20454   │ HIGH     │                         │                 │ pcre: Out of bounds read in JIT mode when \X is used...      │
    │                      │                  │          │                         │                 │ https://avd.aquasec.com/nvd/cve-2019-20454                   │
    ├──────────────────────┼──────────────────┼──────────┼─────────────────────────┼─────────────────┼──────────────────────────────────────────────────────────────┤
    │ libpcre3             │ CVE-2020-14155   │ MEDIUM   │ 2:8.39-12               │                 │ pcre: Integer overflow when parsing callout numeric          │
    │                      │                  │          │                         │                 │ arguments                                                    │
    │                      │                  │          │                         │                 │ https://avd.aquasec.com/nvd/cve-2020-14155                   │
    │                      ├──────────────────┼──────────┤                         ├─────────────────┼──────────────────────────────────────────────────────────────┤
    │                      │ CVE-2017-11164   │ LOW      │                         │                 │ pcre: OP_KETRMAX feature in the match function in            │
    │                      │                  │          │                         │                 │ pcre_exec.c                                                  │
    │                      │                  │          │                         │                 │ https://avd.aquasec.com/nvd/cve-2017-11164                   │
    │                      ├──────────────────┤          │                         ├─────────────────┼──────────────────────────────────────────────────────────────┤
    │                      │ CVE-2017-16231   │          │                         │                 │ pcre: self-recursive call in match() in pcre_exec.c leads to │
    │                      │                  │          │                         │                 │ denial of service...                                         │
    │                      │                  │          │                         │                 │ https://avd.aquasec.com/nvd/cve-2017-16231                   │
    │                      ├──────────────────┤          │                         ├─────────────────┼──────────────────────────────────────────────────────────────┤
    │                      │ CVE-2017-7245    │          │                         │                 │ pcre: stack-based buffer overflow write in                   │
    │                      │                  │          │                         │                 │ pcre32_copy_substring                                        │
    │                      │                  │          │                         │                 │ https://avd.aquasec.com/nvd/cve-2017-7245                    │
    │                      ├──────────────────┤          │                         ├─────────────────┼──────────────────────────────────────────────────────────────┤
    │                      │ CVE-2017-7246    │          │                         │                 │ pcre: stack-based buffer overflow write in                   │
    │                      │                  │          │                         │                 │ pcre32_copy_substring                                        │
    │                      │                  │          │                         │                 │ https://avd.aquasec.com/nvd/cve-2017-7246                    │
    │                      ├──────────────────┤          │                         ├─────────────────┼──────────────────────────────────────────────────────────────┤
    │                      │ CVE-2019-20838   │          │                         │                 │ pcre: Buffer over-read in JIT when UTF is disabled and \X    │
    │                      │                  │          │                         │                 │ or...                                                        │
    │                      │                  │          │                         │                 │ https://avd.aquasec.com/nvd/cve-2019-20838                   │
    ├──────────────────────┼──────────────────┼──────────┼─────────────────────────┼─────────────────┼──────────────────────────────────────────────────────────────┤
    │ libperl5.28          │ CVE-2020-16156   │ HIGH     │ 5.28.1-6+deb10u1        │                 │ perl-CPAN: Bypass of verification of signatures in CHECKSUMS │
    │                      │                  │          │                         │                 │ files                                                        │
    │                      │                  │          │                         │                 │ https://avd.aquasec.com/nvd/cve-2020-16156                   │
    │                      ├──────────────────┼──────────┤                         ├─────────────────┼──────────────────────────────────────────────────────────────┤
    │                      │ CVE-2011-4116    │ LOW      │                         │                 │ perl: File::Temp insecure temporary file handling            │
    │                      │                  │          │                         │                 │ https://avd.aquasec.com/nvd/cve-2011-4116                    │
    ├──────────────────────┼──────────────────┤          ├─────────────────────────┼─────────────────┼──────────────────────────────────────────────────────────────┤
    │ libpng16-16          │ CVE-2018-14048   │          │ 1.6.36-6                │                 │ libpng: Segmentation fault in png.c:png_free_data function   │
    │                      │                  │          │                         │                 │ causing denial of service                                    │
    │                      │                  │          │                         │                 │ https://avd.aquasec.com/nvd/cve-2018-14048                   │
    │                      ├──────────────────┤          │                         ├─────────────────┼──────────────────────────────────────────────────────────────┤
    │                      │ CVE-2018-14550   │          │                         │                 │ libpng: Stack-based buffer overflow in                       │
    │                      │                  │          │                         │                 │ contrib/pngminus/pnm2png.c:get_token() potentially leading   │
    │                      │                  │          │                         │                 │ to arbitrary code execution...                               │
    │                      │                  │          │                         │                 │ https://avd.aquasec.com/nvd/cve-2018-14550                   │
    │                      ├──────────────────┤          │                         ├─────────────────┼──────────────────────────────────────────────────────────────┤
    │                      │ CVE-2019-6129    │          │                         │                 │ libpng: memory leak of png_info struct in pngcp.c            │
    │                      │                  │          │                         │                 │ https://avd.aquasec.com/nvd/cve-2019-6129                    │
    │                      ├──────────────────┤          │                         ├─────────────────┼──────────────────────────────────────────────────────────────┤
    │                      │ CVE-2021-4214    │          │                         │                 │ libpng: hardcoded value leads to heap-overflow               │
    │                      │                  │          │                         │                 │ https://avd.aquasec.com/nvd/cve-2021-4214                    │
    ├──────────────────────┼──────────────────┤          ├─────────────────────────┼─────────────────┼──────────────────────────────────────────────────────────────┤
    │ libpython-stdlib     │ CVE-2008-4108    │          │ 2.7.16-1                │                 │ python: Generic FAQ wizard moving tool insecure auxiliary    │
    │                      │                  │          │                         │                 │ /tmp file usage (symlink...                                  │
    │                      │                  │          │                         │                 │ https://avd.aquasec.com/nvd/cve-2008-4108                    │
    ├──────────────────────┤                  │          │                         ├─────────────────┤                                                              │
    │ libpython2-stdlib    │                  │          │                         │                 │                                                              │
    │                      │                  │          │                         │                 │                                                              │
    │                      │                  │          │                         │                 │                                                              │
    ├──────────────────────┼──────────────────┼──────────┼─────────────────────────┼─────────────────┼──────────────────────────────────────────────────────────────┤
    │ libpython2.7-minimal │ CVE-2015-20107   │ CRITICAL │ 2.7.16-2+deb10u1        │                 │ python(mailcap): findmatch() function does not sanitise the  │
    │                      │                  │          │                         │                 │ second argument                                              │
    │                      │                  │          │                         │                 │ https://avd.aquasec.com/nvd/cve-2015-20107                   │
    │                      ├──────────────────┤          │                         ├─────────────────┼──────────────────────────────────────────────────────────────┤
    │                      │ CVE-2021-3177    │          │                         │                 │ python: Stack-based buffer overflow in PyCArg_repr in        │
    │                      │                  │          │                         │                 │ _ctypes/callproc.c                                           │
    │                      │                  │          │                         │                 │ https://avd.aquasec.com/nvd/cve-2021-3177                    │
    │                      ├──────────────────┼──────────┤                         ├─────────────────┼──────────────────────────────────────────────────────────────┤
    │                      │ CVE-2021-23336   │ MEDIUM   │                         │                 │ python: Web cache poisoning via urllib.parse.parse_qsl and   │
    │                      │                  │          │                         │                 │ urllib.parse.parse_qs by using a semicolon...                │
    │                      │                  │          │                         │                 │ https://avd.aquasec.com/nvd/cve-2021-23336                   │
    │                      ├──────────────────┤          │                         ├─────────────────┼──────────────────────────────────────────────────────────────┤
    │                      │ CVE-2021-4189    │          │                         │                 │ python: ftplib should not use the host from the PASV         │
    │                      │                  │          │                         │                 │ response                                                     │
    │                      │                  │          │                         │                 │ https://avd.aquasec.com/nvd/cve-2021-4189                    │
    │                      ├──────────────────┼──────────┤                         ├─────────────────┼──────────────────────────────────────────────────────────────┤
    │                      │ CVE-2013-7040    │ LOW      │                         │                 │ python: hash secret can be recovered remotely                │
    │                      │                  │          │                         │                 │ https://avd.aquasec.com/nvd/cve-2013-7040                    │
    │                      ├──────────────────┤          │                         ├─────────────────┼──────────────────────────────────────────────────────────────┤
    │                      │ CVE-2017-17522   │          │                         │                 │ python: Command injection in Lib/webbrowser.py               │
    │                      │                  │          │                         │                 │ https://avd.aquasec.com/nvd/cve-2017-17522                   │
    │                      ├──────────────────┤          │                         ├─────────────────┼──────────────────────────────────────────────────────────────┤
    │                      │ CVE-2019-18348   │          │                         │                 │ python: CRLF injection via the host part of the url passed   │
    │                      │                  │          │                         │                 │ to...                                                        │
    │                      │                  │          │                         │                 │ https://avd.aquasec.com/nvd/cve-2019-18348                   │
    │                      ├──────────────────┤          │                         ├─────────────────┼──────────────────────────────────────────────────────────────┤
    │                      │ CVE-2019-20907   │          │                         │                 │ python: infinite loop in the tarfile module via crafted TAR  │
    │                      │                  │          │                         │                 │ archive                                                      │
    │                      │                  │          │                         │                 │ https://avd.aquasec.com/nvd/cve-2019-20907                   │
    │                      ├──────────────────┤          │                         ├─────────────────┼──────────────────────────────────────────────────────────────┤
    │                      │ CVE-2019-9674    │          │                         │                 │ python: Nested zip file (Zip bomb) vulnerability in          │
    │                      │                  │          │                         │                 │ Lib/zipfile.py                                               │
    │                      │                  │          │                         │                 │ https://avd.aquasec.com/nvd/cve-2019-9674                    │
    │                      ├──────────────────┤          │                         ├─────────────────┼──────────────────────────────────────────────────────────────┤
    │                      │ CVE-2020-8492    │          │                         │                 │ python: wrong backtracking in                                │
    │                      │                  │          │                         │                 │ urllib.request.AbstractBasicAuthHandler allows for a ReDoS   │
    │                      │                  │          │                         │                 │ https://avd.aquasec.com/nvd/cve-2020-8492                    │
    ├──────────────────────┼──────────────────┼──────────┤                         ├─────────────────┼──────────────────────────────────────────────────────────────┤
    │ libpython2.7-stdlib  │ CVE-2015-20107   │ CRITICAL │                         │                 │ python(mailcap): findmatch() function does not sanitise the  │
    │                      │                  │          │                         │                 │ second argument                                              │
    │                      │                  │          │                         │                 │ https://avd.aquasec.com/nvd/cve-2015-20107                   │
    │                      ├──────────────────┤          │                         ├─────────────────┼──────────────────────────────────────────────────────────────┤
    │                      │ CVE-2021-3177    │          │                         │                 │ python: Stack-based buffer overflow in PyCArg_repr in        │
    │                      │                  │          │                         │                 │ _ctypes/callproc.c                                           │
    │                      │                  │          │                         │                 │ https://avd.aquasec.com/nvd/cve-2021-3177                    │
    │                      ├──────────────────┼──────────┤                         ├─────────────────┼──────────────────────────────────────────────────────────────┤
    │                      │ CVE-2021-23336   │ MEDIUM   │                         │                 │ python: Web cache poisoning via urllib.parse.parse_qsl and   │
    │                      │                  │          │                         │                 │ urllib.parse.parse_qs by using a semicolon...                │
    │                      │                  │          │                         │                 │ https://avd.aquasec.com/nvd/cve-2021-23336                   │
    │                      ├──────────────────┤          │                         ├─────────────────┼──────────────────────────────────────────────────────────────┤
    │                      │ CVE-2021-4189    │          │                         │                 │ python: ftplib should not use the host from the PASV         │
    │                      │                  │          │                         │                 │ response                                                     │
    │                      │                  │          │                         │                 │ https://avd.aquasec.com/nvd/cve-2021-4189                    │
    │                      ├──────────────────┼──────────┤                         ├─────────────────┼──────────────────────────────────────────────────────────────┤
    │                      │ CVE-2013-7040    │ LOW      │                         │                 │ python: hash secret can be recovered remotely                │
    │                      │                  │          │                         │                 │ https://avd.aquasec.com/nvd/cve-2013-7040                    │
    │                      ├──────────────────┤          │                         ├─────────────────┼──────────────────────────────────────────────────────────────┤
    │                      │ CVE-2017-17522   │          │                         │                 │ python: Command injection in Lib/webbrowser.py               │
    │                      │                  │          │                         │                 │ https://avd.aquasec.com/nvd/cve-2017-17522                   │
    │                      ├──────────────────┤          │                         ├─────────────────┼──────────────────────────────────────────────────────────────┤
    │                      │ CVE-2019-18348   │          │                         │                 │ python: CRLF injection via the host part of the url passed   │
    │                      │                  │          │                         │                 │ to...                                                        │
    │                      │                  │          │                         │                 │ https://avd.aquasec.com/nvd/cve-2019-18348                   │
    │                      ├──────────────────┤          │                         ├─────────────────┼──────────────────────────────────────────────────────────────┤
    │                      │ CVE-2019-20907   │          │                         │                 │ python: infinite loop in the tarfile module via crafted TAR  │
    │                      │                  │          │                         │                 │ archive                                                      │
    │                      │                  │          │                         │                 │ https://avd.aquasec.com/nvd/cve-2019-20907                   │
    │                      ├──────────────────┤          │                         ├─────────────────┼──────────────────────────────────────────────────────────────┤
    │                      │ CVE-2019-9674    │          │                         │                 │ python: Nested zip file (Zip bomb) vulnerability in          │
    │                      │                  │          │                         │                 │ Lib/zipfile.py                                               │
    │                      │                  │          │                         │                 │ https://avd.aquasec.com/nvd/cve-2019-9674                    │
    │                      ├──────────────────┤          │                         ├─────────────────┼──────────────────────────────────────────────────────────────┤
    │                      │ CVE-2020-8492    │          │                         │                 │ python: wrong backtracking in                                │
    │                      │                  │          │                         │                 │ urllib.request.AbstractBasicAuthHandler allows for a ReDoS   │
    │                      │                  │          │                         │                 │ https://avd.aquasec.com/nvd/cve-2020-8492                    │
    ├──────────────────────┼──────────────────┤          ├─────────────────────────┼─────────────────┼──────────────────────────────────────────────────────────────┤
    │ libseccomp2          │ CVE-2019-9893    │          │ 2.3.3-4                 │                 │ libseccomp: incorrect generation of syscall filters in       │
    │                      │                  │          │                         │                 │ libseccomp                                                   │
    │                      │                  │          │                         │                 │ https://avd.aquasec.com/nvd/cve-2019-9893                    │
    ├──────────────────────┼──────────────────┤          ├─────────────────────────┼─────────────────┼──────────────────────────────────────────────────────────────┤
    │ libsepol1            │ CVE-2021-36084   │          │ 2.8-1                   │                 │ libsepol: use-after-free in __cil_verify_classperms()        │
    │                      │                  │          │                         │                 │ https://avd.aquasec.com/nvd/cve-2021-36084                   │
    │                      ├──────────────────┤          │                         ├─────────────────┼──────────────────────────────────────────────────────────────┤
    │                      │ CVE-2021-36085   │          │                         │                 │ libsepol: use-after-free in __cil_verify_classperms()        │
    │                      │                  │          │                         │                 │ https://avd.aquasec.com/nvd/cve-2021-36085                   │
    │                      ├──────────────────┤          │                         ├─────────────────┼──────────────────────────────────────────────────────────────┤
    │                      │ CVE-2021-36086   │          │                         │                 │ libsepol: use-after-free in cil_reset_classpermission()      │
    │                      │                  │          │                         │                 │ https://avd.aquasec.com/nvd/cve-2021-36086                   │
    │                      ├──────────────────┤          │                         ├─────────────────┼──────────────────────────────────────────────────────────────┤
    │                      │ CVE-2021-36087   │          │                         │                 │ libsepol: heap-based buffer overflow in ebitmap_match_any()  │
    │                      │                  │          │                         │                 │ https://avd.aquasec.com/nvd/cve-2021-36087                   │
    ├──────────────────────┼──────────────────┤          ├─────────────────────────┼─────────────────┼──────────────────────────────────────────────────────────────┤
    │ libsmartcols1        │ CVE-2021-37600   │          │ 2.33.1-0.1              │                 │ util-linux: integer overflow can lead to buffer overflow in  │
    │                      │                  │          │                         │                 │ get_sem_elements() in sys-utils/ipcutils.c...                │
    │                      │                  │          │                         │                 │ https://avd.aquasec.com/nvd/cve-2021-37600                   │
    │                      ├──────────────────┤          │                         ├─────────────────┼──────────────────────────────────────────────────────────────┤
    │                      │ CVE-2022-0563    │          │                         │                 │ util-linux: partial disclosure of arbitrary files in chfn    │
    │                      │                  │          │                         │                 │ and chsh when compiled...                                    │
    │                      │                  │          │                         │                 │ https://avd.aquasec.com/nvd/cve-2022-0563                    │
    ├──────────────────────┼──────────────────┼──────────┼─────────────────────────┼─────────────────┼──────────────────────────────────────────────────────────────┤
    │ libsqlite3-0         │ CVE-2019-19603   │ HIGH     │ 3.27.2-3+deb10u1        │                 │ sqlite: mishandling of certain SELECT statements with        │
    │                      │                  │          │                         │                 │ non-existent VIEW can lead to...                             │
    │                      │                  │          │                         │                 │ https://avd.aquasec.com/nvd/cve-2019-19603                   │
    │                      ├──────────────────┼──────────┤                         ├─────────────────┼──────────────────────────────────────────────────────────────┤
    │                      │ CVE-2019-19645   │ MEDIUM   │                         │                 │ sqlite: infinite recursion via certain types of              │
    │                      │                  │          │                         │                 │ self-referential views in conjunction with...                │
    │                      │                  │          │                         │                 │ https://avd.aquasec.com/nvd/cve-2019-19645                   │
    │                      ├──────────────────┤          │                         ├─────────────────┼──────────────────────────────────────────────────────────────┤
    │                      │ CVE-2019-19924   │          │                         │                 │ sqlite: incorrect sqlite3WindowRewrite() error handling      │
    │                      │                  │          │                         │                 │ leads to mishandling certain parser-tree rewriting           │
    │                      │                  │          │                         │                 │ https://avd.aquasec.com/nvd/cve-2019-19924                   │
    │                      ├──────────────────┤          │                         ├─────────────────┼──────────────────────────────────────────────────────────────┤
    │                      │ CVE-2020-13631   │          │                         │                 │ sqlite: Virtual table can be renamed into the name of one    │
    │                      │                  │          │                         │                 │ of...                                                        │
    │                      │                  │          │                         │                 │ https://avd.aquasec.com/nvd/cve-2020-13631                   │
    │                      ├──────────────────┤          │                         ├─────────────────┼──────────────────────────────────────────────────────────────┤
    │                      │ CVE-2021-45346   │          │                         │                 │ sqlite: crafted SQL query allows a malicious user to obtain  │
    │                      │                  │          │                         │                 │ sensitive information...                                     │
    │                      │                  │          │                         │                 │ https://avd.aquasec.com/nvd/cve-2021-45346                   │
    │                      ├──────────────────┼──────────┤                         ├─────────────────┼──────────────────────────────────────────────────────────────┤
    │                      │ CVE-2019-19244   │ LOW      │                         │                 │ sqlite: allows a crash if a sub-select uses both DISTINCT    │
    │                      │                  │          │                         │                 │ and window...                                                │
    │                      │                  │          │                         │                 │ https://avd.aquasec.com/nvd/cve-2019-19244                   │
    │                      ├──────────────────┤          │                         ├─────────────────┼──────────────────────────────────────────────────────────────┤
    │                      │ CVE-2020-11656   │          │                         │                 │ sqlite: use-after-free in the ALTER TABLE implementation     │
    │                      │                  │          │                         │                 │ https://avd.aquasec.com/nvd/cve-2020-11656                   │
    │                      ├──────────────────┤          │                         ├─────────────────┼──────────────────────────────────────────────────────────────┤
    │                      │ CVE-2021-36690   │          │                         │                 │ ** DISPUTED ** A segmentation fault can occur in the         │
    │                      │                  │          │                         │                 │ sqlite3.exe comma...                                         │
    │                      │                  │          │                         │                 │ https://avd.aquasec.com/nvd/cve-2021-36690                   │
    │                      ├──────────────────┤          │                         ├─────────────────┼──────────────────────────────────────────────────────────────┤
    │                      │ CVE-2022-35737   │          │                         │                 │ sqlite: assertion failure via query when compiled with       │
    │                      │                  │          │                         │                 │ -DSQLITE_ENABLE_STAT4                                        │
    │                      │                  │          │                         │                 │ https://avd.aquasec.com/nvd/cve-2022-35737                   │
    ├──────────────────────┼──────────────────┼──────────┼─────────────────────────┼─────────────────┼──────────────────────────────────────────────────────────────┤
    │ libss2               │ CVE-2022-1304    │ HIGH     │ 1.44.5-1+deb10u3        │                 │ e2fsprogs: out-of-bounds read/write via crafted filesystem   │
    │                      │                  │          │                         │                 │ https://avd.aquasec.com/nvd/cve-2022-1304                    │
    ├──────────────────────┼──────────────────┤          ├─────────────────────────┼─────────────────┼──────────────────────────────────────────────────────────────┤
    │ libssh2-1            │ CVE-2019-13115   │          │ 1.8.0-2.1               │                 │ libssh2: integer overflow in                                 │
    │                      │                  │          │                         │                 │ kex_method_diffie_hellman_group_exchange_sha256_key_exchange │
    │                      │                  │          │                         │                 │ in kex.c leads to out-of-bounds write                        │
    │                      │                  │          │                         │                 │ https://avd.aquasec.com/nvd/cve-2019-13115                   │
    │                      ├──────────────────┼──────────┤                         ├─────────────────┼──────────────────────────────────────────────────────────────┤
    │                      │ CVE-2019-17498   │ LOW      │                         │                 │ libssh2: integer overflow in SSH_MSG_DISCONNECT logic in     │
    │                      │                  │          │                         │                 │ packet.c                                                     │
    │                      │                  │          │                         │                 │ https://avd.aquasec.com/nvd/cve-2019-17498                   │
    ├──────────────────────┼──────────────────┼──────────┼─────────────────────────┼─────────────────┼──────────────────────────────────────────────────────────────┤
    │ libssl-dev           │ CVE-2022-2097    │ HIGH     │ 1.1.1n-0+deb10u3        │                 │ openssl: AES OCB fails to encrypt some bytes                 │
    │                      │                  │          │                         │                 │ https://avd.aquasec.com/nvd/cve-2022-2097                    │
    │                      ├──────────────────┼──────────┤                         ├─────────────────┼──────────────────────────────────────────────────────────────┤
    │                      │ CVE-2007-6755    │ LOW      │                         │                 │ Dual_EC_DRBG: weak pseudo random number generator            │
    │                      │                  │          │                         │                 │ https://avd.aquasec.com/nvd/cve-2007-6755                    │
    │                      ├──────────────────┤          │                         ├─────────────────┼──────────────────────────────────────────────────────────────┤
    │                      │ CVE-2010-0928    │          │                         │                 │ openssl: RSA authentication weakness                         │
    │                      │                  │          │                         │                 │ https://avd.aquasec.com/nvd/cve-2010-0928                    │
    ├──────────────────────┼──────────────────┼──────────┤                         ├─────────────────┼──────────────────────────────────────────────────────────────┤
    │ libssl1.1            │ CVE-2022-2097    │ HIGH     │                         │                 │ openssl: AES OCB fails to encrypt some bytes                 │
    │                      │                  │          │                         │                 │ https://avd.aquasec.com/nvd/cve-2022-2097                    │
    │                      ├──────────────────┼──────────┤                         ├─────────────────┼──────────────────────────────────────────────────────────────┤
    │                      │ CVE-2007-6755    │ LOW      │                         │                 │ Dual_EC_DRBG: weak pseudo random number generator            │
    │                      │                  │          │                         │                 │ https://avd.aquasec.com/nvd/cve-2007-6755                    │
    │                      ├──────────────────┤          │                         ├─────────────────┼──────────────────────────────────────────────────────────────┤
    │                      │ CVE-2010-0928    │          │                         │                 │ openssl: RSA authentication weakness                         │
    │                      │                  │          │                         │                 │ https://avd.aquasec.com/nvd/cve-2010-0928                    │
    ├──────────────────────┼──────────────────┼──────────┼─────────────────────────┼─────────────────┼──────────────────────────────────────────────────────────────┤
    │ libstdc++6           │ CVE-2018-12886   │ HIGH     │ 8.3.0-6                 │                 │ gcc: spilling of stack protection address in cfgexpand.c and │
    │                      │                  │          │                         │                 │ function.c leads to...                                       │
    │                      │                  │          │                         │                 │ https://avd.aquasec.com/nvd/cve-2018-12886                   │
    │                      ├──────────────────┤          │                         ├─────────────────┼──────────────────────────────────────────────────────────────┤
    │                      │ CVE-2019-15847   │          │                         │                 │ gcc: POWER9 "DARN" RNG intrinsic produces repeated output    │
    │                      │                  │          │                         │                 │ https://avd.aquasec.com/nvd/cve-2019-15847                   │
    ├──────────────────────┼──────────────────┤          ├─────────────────────────┼─────────────────┼──────────────────────────────────────────────────────────────┤
    │ libsystemd0          │ CVE-2019-3843    │          │ 241-7~deb10u8           │                 │ systemd: services with DynamicUser can create SUID/SGID      │
    │                      │                  │          │                         │                 │ binaries                                                     │
    │                      │                  │          │                         │                 │ https://avd.aquasec.com/nvd/cve-2019-3843                    │
    │                      ├──────────────────┤          │                         ├─────────────────┼──────────────────────────────────────────────────────────────┤
    │                      │ CVE-2019-3844    │          │                         │                 │ systemd: services with DynamicUser can get new privileges    │
    │                      │                  │          │                         │                 │ and create SGID binaries...                                  │
    │                      │                  │          │                         │                 │ https://avd.aquasec.com/nvd/cve-2019-3844                    │
    │                      ├──────────────────┼──────────┤                         ├─────────────────┼──────────────────────────────────────────────────────────────┤
    │                      │ CVE-2021-3997    │ MEDIUM   │                         │                 │ systemd: Uncontrolled recursion in systemd-tmpfiles when     │
    │                      │                  │          │                         │                 │ removing files                                               │
    │                      │                  │          │                         │                 │ https://avd.aquasec.com/nvd/cve-2021-3997                    │
    │                      ├──────────────────┼──────────┤                         ├─────────────────┼──────────────────────────────────────────────────────────────┤
    │                      │ CVE-2013-4392    │ LOW      │                         │                 │ systemd: TOCTOU race condition when updating file            │
    │                      │                  │          │                         │                 │ permissions and SELinux security contexts...                 │
    │                      │                  │          │                         │                 │ https://avd.aquasec.com/nvd/cve-2013-4392                    │
    │                      ├──────────────────┤          │                         ├─────────────────┼──────────────────────────────────────────────────────────────┤
    │                      │ CVE-2019-20386   │          │                         │                 │ systemd: memory leak in button_open() in                     │
    │                      │                  │          │                         │                 │ login/logind-button.c when udev events are received...       │
    │                      │                  │          │                         │                 │ https://avd.aquasec.com/nvd/cve-2019-20386                   │
    │                      ├──────────────────┤          │                         ├─────────────────┼──────────────────────────────────────────────────────────────┤
    │                      │ CVE-2020-13529   │          │                         │                 │ systemd: DHCP FORCERENEW authentication not implemented can  │
    │                      │                  │          │                         │                 │ cause a system running the...                                │
    │                      │                  │          │                         │                 │ https://avd.aquasec.com/nvd/cve-2020-13529                   │
    │                      ├──────────────────┤          │                         ├─────────────────┼──────────────────────────────────────────────────────────────┤
    │                      │ CVE-2020-13776   │          │                         │                 │ systemd: Mishandles numerical usernames beginning with       │
    │                      │                  │          │                         │                 │ decimal digits or 0x followed by...                          │
    │                      │                  │          │                         │                 │ https://avd.aquasec.com/nvd/cve-2020-13776                   │
    ├──────────────────────┼──────────────────┤          ├─────────────────────────┼─────────────────┼──────────────────────────────────────────────────────────────┤
    │ libtasn1-6           │ CVE-2018-1000654 │          │ 4.13-3                  │                 │ libtasn1: Infinite loop in _asn1_expand_object_id(ptree)     │
    │                      │                  │          │                         │                 │ leads to memory exhaustion                                   │
    │                      │                  │          │                         │                 │ https://avd.aquasec.com/nvd/cve-2018-1000654                 │
    ├──────────────────────┼──────────────────┼──────────┼─────────────────────────┼─────────────────┼──────────────────────────────────────────────────────────────┤
    │ libtinfo6            │ CVE-2022-29458   │ HIGH     │ 6.1+20181013-2+deb10u2  │                 │ ncurses: segfaulting OOB read                                │
    │                      │                  │          │                         │                 │ https://avd.aquasec.com/nvd/cve-2022-29458                   │
    │                      ├──────────────────┼──────────┤                         ├─────────────────┼──────────────────────────────────────────────────────────────┤
    │                      │ CVE-2021-39537   │ LOW      │                         │                 │ ncurses: heap-based buffer overflow in _nc_captoinfo() in    │
    │                      │                  │          │                         │                 │ captoinfo.c                                                  │
    │                      │                  │          │                         │                 │ https://avd.aquasec.com/nvd/cve-2021-39537                   │
    ├──────────────────────┼──────────────────┼──────────┼─────────────────────────┼─────────────────┼──────────────────────────────────────────────────────────────┤
    │ libudev1             │ CVE-2019-3843    │ HIGH     │ 241-7~deb10u8           │                 │ systemd: services with DynamicUser can create SUID/SGID      │
    │                      │                  │          │                         │                 │ binaries                                                     │
    │                      │                  │          │                         │                 │ https://avd.aquasec.com/nvd/cve-2019-3843                    │
    │                      ├──────────────────┤          │                         ├─────────────────┼──────────────────────────────────────────────────────────────┤
    │                      │ CVE-2019-3844    │          │                         │                 │ systemd: services with DynamicUser can get new privileges    │
    │                      │                  │          │                         │                 │ and create SGID binaries...                                  │
    │                      │                  │          │                         │                 │ https://avd.aquasec.com/nvd/cve-2019-3844                    │
    │                      ├──────────────────┼──────────┤                         ├─────────────────┼──────────────────────────────────────────────────────────────┤
    │                      │ CVE-2021-3997    │ MEDIUM   │                         │                 │ systemd: Uncontrolled recursion in systemd-tmpfiles when     │
    │                      │                  │          │                         │                 │ removing files                                               │
    │                      │                  │          │                         │                 │ https://avd.aquasec.com/nvd/cve-2021-3997                    │
    │                      ├──────────────────┼──────────┤                         ├─────────────────┼──────────────────────────────────────────────────────────────┤
    │                      │ CVE-2013-4392    │ LOW      │                         │                 │ systemd: TOCTOU race condition when updating file            │
    │                      │                  │          │                         │                 │ permissions and SELinux security contexts...                 │
    │                      │                  │          │                         │                 │ https://avd.aquasec.com/nvd/cve-2013-4392                    │
    │                      ├──────────────────┤          │                         ├─────────────────┼──────────────────────────────────────────────────────────────┤
    │                      │ CVE-2019-20386   │          │                         │                 │ systemd: memory leak in button_open() in                     │
    │                      │                  │          │                         │                 │ login/logind-button.c when udev events are received...       │
    │                      │                  │          │                         │                 │ https://avd.aquasec.com/nvd/cve-2019-20386                   │
    │                      ├──────────────────┤          │                         ├─────────────────┼──────────────────────────────────────────────────────────────┤
    │                      │ CVE-2020-13529   │          │                         │                 │ systemd: DHCP FORCERENEW authentication not implemented can  │
    │                      │                  │          │                         │                 │ cause a system running the...                                │
    │                      │                  │          │                         │                 │ https://avd.aquasec.com/nvd/cve-2020-13529                   │
    │                      ├──────────────────┤          │                         ├─────────────────┼──────────────────────────────────────────────────────────────┤
    │                      │ CVE-2020-13776   │          │                         │                 │ systemd: Mishandles numerical usernames beginning with       │
    │                      │                  │          │                         │                 │ decimal digits or 0x followed by...                          │
    │                      │                  │          │                         │                 │ https://avd.aquasec.com/nvd/cve-2020-13776                   │
    ├──────────────────────┼──────────────────┤          ├─────────────────────────┼─────────────────┼──────────────────────────────────────────────────────────────┤
    │ libuuid1             │ CVE-2021-37600   │          │ 2.33.1-0.1              │                 │ util-linux: integer overflow can lead to buffer overflow in  │
    │                      │                  │          │                         │                 │ get_sem_elements() in sys-utils/ipcutils.c...                │
    │                      │                  │          │                         │                 │ https://avd.aquasec.com/nvd/cve-2021-37600                   │
    │                      ├──────────────────┤          │                         ├─────────────────┼──────────────────────────────────────────────────────────────┤
    │                      │ CVE-2022-0563    │          │                         │                 │ util-linux: partial disclosure of arbitrary files in chfn    │
    │                      │                  │          │                         │                 │ and chsh when compiled...                                    │
    │                      │                  │          │                         │                 │ https://avd.aquasec.com/nvd/cve-2022-0563                    │
    ├──────────────────────┼──────────────────┤          ├─────────────────────────┼─────────────────┼──────────────────────────────────────────────────────────────┤
    │ libuv1               │ CVE-2020-8252    │          │ 1.24.1-1+deb10u1        │                 │ libuv: buffer overflow in realpath                           │
    │                      │                  │          │                         │                 │ https://avd.aquasec.com/nvd/cve-2020-8252                    │
    ├──────────────────────┤                  │          │                         ├─────────────────┤                                                              │
    │ libuv1-dev           │                  │          │                         │                 │                                                              │
    │                      │                  │          │                         │                 │                                                              │
    ├──────────────────────┼──────────────────┼──────────┼─────────────────────────┼─────────────────┼──────────────────────────────────────────────────────────────┤
    │ libxml2              │ CVE-2017-16932   │ HIGH     │ 2.9.4+dfsg1-7+deb10u4   │                 │ libxml2: Infinite recursion in parameter entities            │
    │                      │                  │          │                         │                 │ https://avd.aquasec.com/nvd/cve-2017-16932                   │
    │                      ├──────────────────┼──────────┤                         ├─────────────────┼──────────────────────────────────────────────────────────────┤