├── .gitignore ├── .gitmodules ├── README.md ├── bin ├── run-infer-debian.sh ├── run-infer.sh └── tracer ├── rank ├── Makefile ├── bin │ ├── result.py │ └── visualizer.py ├── dune ├── dune-project └── src │ ├── dune │ ├── feature.ml │ ├── infer.ml │ ├── location.ml │ ├── main.ml │ ├── options.ml │ ├── rank.ml │ └── viz.ml ├── signature-db ├── CWE134_01-CWE134_Uncontrolled_Format_String__char_connect_socket_fprintf │ └── 1.json ├── CWE134_01-CWE134_Uncontrolled_Format_String__char_connect_socket_printf │ └── 1.json ├── CWE134_01-CWE134_Uncontrolled_Format_String__char_connect_socket_snprintf │ └── 1.json ├── CWE134_01-CWE134_Uncontrolled_Format_String__char_connect_socket_vfprintf │ └── 1.json ├── CWE134_01-CWE134_Uncontrolled_Format_String__char_connect_socket_vprintf │ └── 1.json ├── CWE134_01-CWE134_Uncontrolled_Format_String__char_console_fprintf │ └── 1.json ├── CWE134_01-CWE134_Uncontrolled_Format_String__char_console_printf │ └── 1.json ├── CWE134_01-CWE134_Uncontrolled_Format_String__char_console_snprintf │ └── 1.json ├── CWE134_01-CWE134_Uncontrolled_Format_String__char_console_vfprintf │ └── 1.json ├── CWE134_01-CWE134_Uncontrolled_Format_String__char_console_vprintf │ └── 1.json ├── CWE134_01-CWE134_Uncontrolled_Format_String__char_environment_fprintf │ └── 1.json ├── CWE134_01-CWE134_Uncontrolled_Format_String__char_environment_printf │ └── 1.json ├── CWE134_01-CWE134_Uncontrolled_Format_String__char_environment_snprintf │ └── 1.json ├── CWE134_01-CWE134_Uncontrolled_Format_String__char_environment_vfprintf │ └── 1.json ├── CWE134_01-CWE134_Uncontrolled_Format_String__char_environment_vprintf │ └── 1.json ├── CWE134_01-CWE134_Uncontrolled_Format_String__char_file_fprintf │ └── 1.json ├── CWE134_01-CWE134_Uncontrolled_Format_String__char_file_printf │ └── 1.json ├── CWE134_01-CWE134_Uncontrolled_Format_String__char_file_snprintf │ └── 1.json ├── CWE134_01-CWE134_Uncontrolled_Format_String__char_file_vfprintf │ └── 1.json ├── CWE134_01-CWE134_Uncontrolled_Format_String__char_file_vprintf │ └── 1.json ├── CWE134_01-CWE134_Uncontrolled_Format_String__char_listen_socket_fprintf │ └── 1.json ├── CWE134_01-CWE134_Uncontrolled_Format_String__char_listen_socket_printf │ └── 1.json ├── CWE134_01-CWE134_Uncontrolled_Format_String__char_listen_socket_snprintf │ └── 1.json ├── CWE134_01-CWE134_Uncontrolled_Format_String__char_listen_socket_vfprintf │ └── 1.json ├── CWE134_01-CWE134_Uncontrolled_Format_String__char_listen_socket_vprintf │ └── 1.json ├── CWE134_02-CWE134_Uncontrolled_Format_String__char_connect_socket_fprintf │ └── 1.json ├── CWE134_02-CWE134_Uncontrolled_Format_String__char_connect_socket_printf │ └── 1.json ├── CWE134_02-CWE134_Uncontrolled_Format_String__char_connect_socket_snprintf │ └── 1.json ├── CWE134_02-CWE134_Uncontrolled_Format_String__char_connect_socket_vfprintf │ └── 1.json ├── CWE134_02-CWE134_Uncontrolled_Format_String__char_connect_socket_vprintf │ └── 1.json ├── CWE134_02-CWE134_Uncontrolled_Format_String__char_console_fprintf │ └── 1.json ├── CWE134_02-CWE134_Uncontrolled_Format_String__char_console_printf │ └── 1.json ├── CWE134_02-CWE134_Uncontrolled_Format_String__char_console_snprintf │ └── 1.json ├── CWE134_02-CWE134_Uncontrolled_Format_String__char_console_vfprintf │ └── 1.json ├── CWE134_02-CWE134_Uncontrolled_Format_String__char_console_vprintf │ └── 1.json ├── CWE134_02-CWE134_Uncontrolled_Format_String__char_environment_fprintf │ └── 1.json ├── CWE134_02-CWE134_Uncontrolled_Format_String__char_environment_printf │ └── 1.json ├── CWE134_02-CWE134_Uncontrolled_Format_String__char_environment_snprintf │ └── 1.json ├── CWE134_02-CWE134_Uncontrolled_Format_String__char_environment_vfprintf │ └── 1.json ├── CWE134_02-CWE134_Uncontrolled_Format_String__char_environment_vprintf │ └── 1.json ├── CWE134_02-CWE134_Uncontrolled_Format_String__char_file_fprintf │ └── 1.json ├── CWE134_02-CWE134_Uncontrolled_Format_String__char_file_printf │ └── 1.json ├── CWE134_02-CWE134_Uncontrolled_Format_String__char_file_snprintf │ └── 1.json ├── CWE134_02-CWE134_Uncontrolled_Format_String__char_file_vfprintf │ └── 1.json ├── CWE134_02-CWE134_Uncontrolled_Format_String__char_file_vprintf │ └── 1.json ├── CWE134_02-CWE134_Uncontrolled_Format_String__char_listen_socket_fprintf │ └── 1.json ├── CWE134_02-CWE134_Uncontrolled_Format_String__char_listen_socket_printf │ └── 1.json ├── CWE134_02-CWE134_Uncontrolled_Format_String__char_listen_socket_snprintf │ └── 1.json ├── CWE134_02-CWE134_Uncontrolled_Format_String__char_listen_socket_vfprintf │ └── 1.json ├── CWE134_02-CWE134_Uncontrolled_Format_String__char_listen_socket_vprintf │ └── 1.json ├── CWE134_03-CWE134_Uncontrolled_Format_String__char_connect_socket_fprintf │ └── 1.json ├── CWE134_03-CWE134_Uncontrolled_Format_String__char_connect_socket_printf │ └── 1.json ├── CWE134_03-CWE134_Uncontrolled_Format_String__char_connect_socket_snprintf │ └── 1.json ├── CWE134_03-CWE134_Uncontrolled_Format_String__char_connect_socket_vfprintf │ └── 1.json ├── CWE134_03-CWE134_Uncontrolled_Format_String__char_connect_socket_vprintf │ └── 1.json ├── CWE134_03-CWE134_Uncontrolled_Format_String__char_console_fprintf │ └── 1.json ├── CWE134_03-CWE134_Uncontrolled_Format_String__char_console_printf │ └── 1.json ├── CWE134_03-CWE134_Uncontrolled_Format_String__char_console_snprintf │ └── 1.json ├── CWE134_03-CWE134_Uncontrolled_Format_String__char_console_vfprintf │ └── 1.json ├── CWE134_03-CWE134_Uncontrolled_Format_String__char_console_vprintf │ └── 1.json ├── CWE134_03-CWE134_Uncontrolled_Format_String__char_environment_fprintf │ └── 1.json ├── CWE134_03-CWE134_Uncontrolled_Format_String__char_environment_printf │ └── 1.json ├── CWE134_03-CWE134_Uncontrolled_Format_String__char_environment_snprintf │ └── 1.json ├── CWE134_03-CWE134_Uncontrolled_Format_String__char_environment_vfprintf │ └── 1.json ├── CWE134_03-CWE134_Uncontrolled_Format_String__char_environment_vprintf │ └── 1.json ├── CWE134_03-CWE134_Uncontrolled_Format_String__char_file_fprintf │ └── 1.json ├── CWE134_03-CWE134_Uncontrolled_Format_String__char_file_printf │ └── 1.json ├── CWE134_03-CWE134_Uncontrolled_Format_String__char_file_snprintf │ └── 1.json ├── CWE134_03-CWE134_Uncontrolled_Format_String__char_file_vfprintf │ └── 1.json ├── CWE134_03-CWE134_Uncontrolled_Format_String__char_file_vprintf │ └── 1.json ├── CWE134_03-CWE134_Uncontrolled_Format_String__char_listen_socket_fprintf │ └── 1.json ├── CWE134_03-CWE134_Uncontrolled_Format_String__char_listen_socket_printf │ └── 1.json ├── CWE134_03-CWE134_Uncontrolled_Format_String__char_listen_socket_snprintf │ └── 1.json ├── CWE134_03-CWE134_Uncontrolled_Format_String__char_listen_socket_vfprintf │ └── 1.json ├── CWE134_03-CWE134_Uncontrolled_Format_String__char_listen_socket_vprintf │ └── 1.json ├── CWE134_04-CWE134_Uncontrolled_Format_String__char_connect_socket_fprintf │ └── 1.json ├── CWE134_04-CWE134_Uncontrolled_Format_String__char_connect_socket_printf │ └── 1.json ├── CWE134_04-CWE134_Uncontrolled_Format_String__char_connect_socket_snprintf │ └── 1.json ├── CWE134_04-CWE134_Uncontrolled_Format_String__char_connect_socket_vfprintf │ └── 1.json ├── CWE134_04-CWE134_Uncontrolled_Format_String__char_connect_socket_vprintf │ └── 1.json ├── CWE134_04-CWE134_Uncontrolled_Format_String__char_console_fprintf │ └── 1.json ├── CWE134_04-CWE134_Uncontrolled_Format_String__char_console_printf │ └── 1.json ├── CWE134_04-CWE134_Uncontrolled_Format_String__char_console_snprintf │ └── 1.json ├── CWE134_04-CWE134_Uncontrolled_Format_String__char_console_vfprintf │ └── 1.json ├── CWE134_04-CWE134_Uncontrolled_Format_String__char_console_vprintf │ └── 1.json ├── CWE134_04-CWE134_Uncontrolled_Format_String__char_environment_fprintf │ └── 1.json ├── CWE134_04-CWE134_Uncontrolled_Format_String__char_environment_printf │ └── 1.json ├── CWE134_04-CWE134_Uncontrolled_Format_String__char_environment_snprintf │ └── 1.json ├── CWE134_04-CWE134_Uncontrolled_Format_String__char_environment_vfprintf │ └── 1.json ├── CWE134_04-CWE134_Uncontrolled_Format_String__char_environment_vprintf │ └── 1.json ├── CWE134_04-CWE134_Uncontrolled_Format_String__char_file_fprintf │ └── 1.json ├── CWE134_04-CWE134_Uncontrolled_Format_String__char_file_printf │ └── 1.json ├── CWE134_04-CWE134_Uncontrolled_Format_String__char_file_snprintf │ └── 1.json ├── CWE134_04-CWE134_Uncontrolled_Format_String__char_file_vfprintf │ └── 1.json ├── CWE134_04-CWE134_Uncontrolled_Format_String__char_file_vprintf │ └── 1.json ├── CWE134_04-CWE134_Uncontrolled_Format_String__char_listen_socket_fprintf │ └── 1.json ├── CWE134_04-CWE134_Uncontrolled_Format_String__char_listen_socket_printf │ └── 1.json ├── CWE134_04-CWE134_Uncontrolled_Format_String__char_listen_socket_snprintf │ └── 1.json ├── CWE134_04-CWE134_Uncontrolled_Format_String__char_listen_socket_vfprintf │ └── 1.json ├── CWE134_04-CWE134_Uncontrolled_Format_String__char_listen_socket_vprintf │ └── 1.json ├── CWE134_05-CWE134_Uncontrolled_Format_String__char_connect_socket_fprintf │ └── 1.json ├── CWE134_05-CWE134_Uncontrolled_Format_String__char_connect_socket_printf │ └── 1.json ├── CWE134_05-CWE134_Uncontrolled_Format_String__char_connect_socket_snprintf │ └── 1.json ├── CWE134_05-CWE134_Uncontrolled_Format_String__char_connect_socket_vfprintf │ └── 1.json ├── CWE134_05-CWE134_Uncontrolled_Format_String__char_connect_socket_vprintf │ └── 1.json ├── CWE134_05-CWE134_Uncontrolled_Format_String__char_console_fprintf │ └── 1.json ├── CWE134_05-CWE134_Uncontrolled_Format_String__char_console_printf │ └── 1.json ├── CWE134_05-CWE134_Uncontrolled_Format_String__char_console_snprintf │ └── 1.json ├── CWE134_05-CWE134_Uncontrolled_Format_String__char_console_vfprintf │ └── 1.json ├── CWE134_05-CWE134_Uncontrolled_Format_String__char_console_vprintf │ └── 1.json ├── CWE134_05-CWE134_Uncontrolled_Format_String__char_environment_fprintf │ └── 1.json ├── CWE134_05-CWE134_Uncontrolled_Format_String__char_environment_printf │ └── 1.json ├── CWE134_05-CWE134_Uncontrolled_Format_String__char_environment_snprintf │ └── 1.json ├── CWE134_05-CWE134_Uncontrolled_Format_String__char_environment_vfprintf │ └── 1.json ├── CWE134_05-CWE134_Uncontrolled_Format_String__char_environment_vprintf │ └── 1.json ├── CWE134_05-CWE134_Uncontrolled_Format_String__char_file_fprintf │ └── 1.json ├── CWE134_05-CWE134_Uncontrolled_Format_String__char_file_printf │ └── 1.json ├── CWE134_05-CWE134_Uncontrolled_Format_String__char_file_snprintf │ └── 1.json ├── CWE134_05-CWE134_Uncontrolled_Format_String__char_file_vfprintf │ └── 1.json ├── CWE134_05-CWE134_Uncontrolled_Format_String__char_file_vprintf │ └── 1.json ├── CWE134_05-CWE134_Uncontrolled_Format_String__char_listen_socket_fprintf │ └── 1.json ├── CWE134_05-CWE134_Uncontrolled_Format_String__char_listen_socket_printf │ └── 1.json ├── CWE134_05-CWE134_Uncontrolled_Format_String__char_listen_socket_snprintf │ └── 1.json ├── CWE134_05-CWE134_Uncontrolled_Format_String__char_listen_socket_vfprintf │ └── 1.json ├── CWE134_05-CWE134_Uncontrolled_Format_String__char_listen_socket_vprintf │ └── 1.json ├── CWE134_06-CWE134_Uncontrolled_Format_String__char_connect_socket_fprintf │ └── 1.json ├── CWE134_06-CWE134_Uncontrolled_Format_String__char_connect_socket_printf │ └── 1.json ├── CWE134_06-CWE134_Uncontrolled_Format_String__char_connect_socket_snprintf │ └── 1.json ├── CWE134_06-CWE134_Uncontrolled_Format_String__char_connect_socket_vfprintf │ └── 1.json ├── CWE134_06-CWE134_Uncontrolled_Format_String__char_connect_socket_vprintf │ └── 1.json ├── CWE134_06-CWE134_Uncontrolled_Format_String__char_console_fprintf │ └── 1.json ├── CWE134_06-CWE134_Uncontrolled_Format_String__char_console_printf │ └── 1.json ├── CWE134_06-CWE134_Uncontrolled_Format_String__char_console_snprintf │ └── 1.json ├── CWE134_06-CWE134_Uncontrolled_Format_String__char_console_vfprintf │ └── 1.json ├── CWE134_06-CWE134_Uncontrolled_Format_String__char_console_vprintf │ └── 1.json ├── CWE134_06-CWE134_Uncontrolled_Format_String__char_environment_fprintf │ └── 1.json ├── CWE134_06-CWE134_Uncontrolled_Format_String__char_environment_printf │ └── 1.json ├── CWE134_06-CWE134_Uncontrolled_Format_String__char_environment_snprintf │ └── 1.json ├── CWE134_06-CWE134_Uncontrolled_Format_String__char_environment_vfprintf │ └── 1.json ├── CWE134_06-CWE134_Uncontrolled_Format_String__char_environment_vprintf │ └── 1.json ├── CWE134_06-CWE134_Uncontrolled_Format_String__char_file_fprintf │ └── 1.json ├── CWE134_06-CWE134_Uncontrolled_Format_String__char_file_printf │ └── 1.json ├── CWE134_06-CWE134_Uncontrolled_Format_String__char_file_snprintf │ └── 1.json ├── CWE134_06-CWE134_Uncontrolled_Format_String__char_file_vfprintf │ └── 1.json ├── CWE134_06-CWE134_Uncontrolled_Format_String__char_file_vprintf │ └── 1.json ├── CWE134_06-CWE134_Uncontrolled_Format_String__char_listen_socket_fprintf │ └── 1.json ├── CWE134_06-CWE134_Uncontrolled_Format_String__char_listen_socket_printf │ └── 1.json ├── CWE134_06-CWE134_Uncontrolled_Format_String__char_listen_socket_snprintf │ └── 1.json ├── CWE134_06-CWE134_Uncontrolled_Format_String__char_listen_socket_vfprintf │ └── 1.json ├── CWE134_06-CWE134_Uncontrolled_Format_String__char_listen_socket_vprintf │ └── 1.json ├── CWE134_07-CWE134_Uncontrolled_Format_String__char_connect_socket_fprintf │ └── 1.json ├── CWE134_07-CWE134_Uncontrolled_Format_String__char_connect_socket_printf │ └── 1.json ├── CWE134_07-CWE134_Uncontrolled_Format_String__char_connect_socket_snprintf │ └── 1.json ├── CWE134_07-CWE134_Uncontrolled_Format_String__char_connect_socket_vfprintf │ └── 1.json ├── CWE134_07-CWE134_Uncontrolled_Format_String__char_connect_socket_vprintf │ └── 1.json ├── CWE134_07-CWE134_Uncontrolled_Format_String__char_console_fprintf │ └── 1.json ├── CWE134_07-CWE134_Uncontrolled_Format_String__char_console_printf │ └── 1.json ├── CWE134_07-CWE134_Uncontrolled_Format_String__char_console_snprintf │ └── 1.json ├── CWE134_07-CWE134_Uncontrolled_Format_String__char_console_vfprintf │ └── 1.json ├── CWE134_07-CWE134_Uncontrolled_Format_String__char_console_vprintf │ └── 1.json ├── CWE134_07-CWE134_Uncontrolled_Format_String__char_environment_fprintf │ └── 1.json ├── CWE134_07-CWE134_Uncontrolled_Format_String__char_environment_printf │ └── 1.json ├── CWE134_07-CWE134_Uncontrolled_Format_String__char_environment_snprintf │ └── 1.json ├── CWE134_07-CWE134_Uncontrolled_Format_String__char_environment_vfprintf │ └── 1.json ├── CWE134_07-CWE134_Uncontrolled_Format_String__char_environment_vprintf │ └── 1.json ├── CWE134_07-CWE134_Uncontrolled_Format_String__char_file_fprintf │ └── 1.json ├── CWE134_07-CWE134_Uncontrolled_Format_String__char_file_printf │ └── 1.json ├── CWE134_07-CWE134_Uncontrolled_Format_String__char_file_snprintf │ └── 1.json ├── CWE134_07-CWE134_Uncontrolled_Format_String__char_file_vfprintf │ └── 1.json ├── CWE134_07-CWE134_Uncontrolled_Format_String__char_file_vprintf │ └── 1.json ├── CWE134_07-CWE134_Uncontrolled_Format_String__char_listen_socket_fprintf │ └── 1.json ├── CWE134_07-CWE134_Uncontrolled_Format_String__char_listen_socket_printf │ └── 1.json ├── CWE134_07-CWE134_Uncontrolled_Format_String__char_listen_socket_snprintf │ └── 1.json ├── CWE134_07-CWE134_Uncontrolled_Format_String__char_listen_socket_vfprintf │ └── 1.json ├── CWE134_07-CWE134_Uncontrolled_Format_String__char_listen_socket_vprintf │ └── 1.json ├── CWE134_08-CWE134_Uncontrolled_Format_String__char_connect_socket_fprintf │ └── 1.json ├── CWE134_08-CWE134_Uncontrolled_Format_String__char_connect_socket_printf │ └── 1.json ├── CWE134_08-CWE134_Uncontrolled_Format_String__char_connect_socket_snprintf │ └── 1.json ├── CWE134_08-CWE134_Uncontrolled_Format_String__char_connect_socket_vfprintf │ └── 1.json ├── CWE134_08-CWE134_Uncontrolled_Format_String__char_connect_socket_vprintf │ └── 1.json ├── CWE134_08-CWE134_Uncontrolled_Format_String__char_console_fprintf │ └── 1.json ├── CWE134_08-CWE134_Uncontrolled_Format_String__char_console_printf │ └── 1.json ├── CWE134_08-CWE134_Uncontrolled_Format_String__char_console_snprintf │ └── 1.json ├── CWE134_08-CWE134_Uncontrolled_Format_String__char_console_vfprintf │ └── 1.json ├── CWE134_08-CWE134_Uncontrolled_Format_String__char_console_vprintf │ └── 1.json ├── CWE134_08-CWE134_Uncontrolled_Format_String__char_environment_fprintf │ └── 1.json ├── CWE134_08-CWE134_Uncontrolled_Format_String__char_environment_printf │ └── 1.json ├── CWE134_08-CWE134_Uncontrolled_Format_String__char_environment_snprintf │ └── 1.json ├── CWE134_08-CWE134_Uncontrolled_Format_String__char_environment_vfprintf │ └── 1.json ├── CWE134_08-CWE134_Uncontrolled_Format_String__char_environment_vprintf │ └── 1.json ├── CWE134_08-CWE134_Uncontrolled_Format_String__char_file_fprintf │ └── 1.json ├── CWE134_08-CWE134_Uncontrolled_Format_String__char_file_printf │ └── 1.json ├── CWE134_08-CWE134_Uncontrolled_Format_String__char_file_snprintf │ └── 1.json ├── CWE134_08-CWE134_Uncontrolled_Format_String__char_file_vfprintf │ └── 1.json ├── CWE134_08-CWE134_Uncontrolled_Format_String__char_file_vprintf │ └── 1.json ├── CWE134_08-CWE134_Uncontrolled_Format_String__char_listen_socket_fprintf │ └── 1.json ├── CWE134_08-CWE134_Uncontrolled_Format_String__char_listen_socket_printf │ └── 1.json ├── CWE134_08-CWE134_Uncontrolled_Format_String__char_listen_socket_snprintf │ └── 1.json ├── CWE134_08-CWE134_Uncontrolled_Format_String__char_listen_socket_vfprintf │ └── 1.json ├── CWE134_08-CWE134_Uncontrolled_Format_String__char_listen_socket_vprintf │ └── 1.json ├── CWE134_09-CWE134_Uncontrolled_Format_String__char_connect_socket_fprintf │ └── 1.json ├── CWE134_09-CWE134_Uncontrolled_Format_String__char_connect_socket_printf │ └── 1.json ├── CWE134_09-CWE134_Uncontrolled_Format_String__char_connect_socket_snprintf │ └── 1.json ├── CWE134_09-CWE134_Uncontrolled_Format_String__char_connect_socket_vfprintf │ └── 1.json ├── CWE134_09-CWE134_Uncontrolled_Format_String__char_connect_socket_vprintf │ └── 1.json ├── CWE134_09-CWE134_Uncontrolled_Format_String__char_console_fprintf │ └── 1.json ├── CWE134_09-CWE134_Uncontrolled_Format_String__char_console_printf │ └── 1.json ├── CWE134_09-CWE134_Uncontrolled_Format_String__char_console_snprintf │ └── 1.json ├── CWE134_09-CWE134_Uncontrolled_Format_String__char_console_vfprintf │ └── 1.json ├── CWE134_09-CWE134_Uncontrolled_Format_String__char_console_vprintf │ └── 1.json ├── CWE134_09-CWE134_Uncontrolled_Format_String__char_environment_fprintf │ └── 1.json ├── CWE134_09-CWE134_Uncontrolled_Format_String__char_environment_printf │ └── 1.json ├── CWE134_09-CWE134_Uncontrolled_Format_String__char_environment_snprintf │ └── 1.json ├── CWE134_09-CWE134_Uncontrolled_Format_String__char_environment_vfprintf │ └── 1.json ├── CWE134_09-CWE134_Uncontrolled_Format_String__char_environment_vprintf │ └── 1.json ├── CWE134_09-CWE134_Uncontrolled_Format_String__char_file_fprintf │ └── 1.json ├── CWE134_09-CWE134_Uncontrolled_Format_String__char_file_printf │ └── 1.json ├── CWE134_09-CWE134_Uncontrolled_Format_String__char_file_snprintf │ └── 1.json ├── CWE134_09-CWE134_Uncontrolled_Format_String__char_file_vfprintf │ └── 1.json ├── CWE134_09-CWE134_Uncontrolled_Format_String__char_file_vprintf │ └── 1.json ├── CWE134_09-CWE134_Uncontrolled_Format_String__char_listen_socket_fprintf │ └── 1.json ├── CWE134_09-CWE134_Uncontrolled_Format_String__char_listen_socket_printf │ └── 1.json ├── CWE134_09-CWE134_Uncontrolled_Format_String__char_listen_socket_snprintf │ └── 1.json ├── CWE134_09-CWE134_Uncontrolled_Format_String__char_listen_socket_vfprintf │ └── 1.json ├── CWE134_09-CWE134_Uncontrolled_Format_String__char_listen_socket_vprintf │ └── 1.json ├── CWE134_10-CWE134_Uncontrolled_Format_String__char_connect_socket_fprintf │ └── 1.json ├── CWE134_10-CWE134_Uncontrolled_Format_String__char_connect_socket_printf │ └── 1.json ├── CWE134_10-CWE134_Uncontrolled_Format_String__char_connect_socket_snprintf │ └── 1.json ├── CWE134_10-CWE134_Uncontrolled_Format_String__char_connect_socket_vfprintf │ └── 1.json ├── CWE134_10-CWE134_Uncontrolled_Format_String__char_connect_socket_vprintf │ └── 1.json ├── CWE134_10-CWE134_Uncontrolled_Format_String__char_console_fprintf │ └── 1.json ├── CWE134_10-CWE134_Uncontrolled_Format_String__char_console_printf │ └── 1.json ├── CWE134_10-CWE134_Uncontrolled_Format_String__char_console_snprintf │ └── 1.json ├── CWE134_10-CWE134_Uncontrolled_Format_String__char_console_vfprintf │ └── 1.json ├── CWE134_10-CWE134_Uncontrolled_Format_String__char_console_vprintf │ └── 1.json ├── CWE134_10-CWE134_Uncontrolled_Format_String__char_environment_fprintf │ └── 1.json ├── CWE134_10-CWE134_Uncontrolled_Format_String__char_environment_printf │ └── 1.json ├── CWE134_10-CWE134_Uncontrolled_Format_String__char_environment_snprintf │ └── 1.json ├── CWE134_10-CWE134_Uncontrolled_Format_String__char_environment_vfprintf │ └── 1.json ├── CWE134_10-CWE134_Uncontrolled_Format_String__char_environment_vprintf │ └── 1.json ├── CWE134_10-CWE134_Uncontrolled_Format_String__char_file_fprintf │ └── 1.json ├── CWE134_10-CWE134_Uncontrolled_Format_String__char_file_printf │ └── 1.json ├── CWE134_10-CWE134_Uncontrolled_Format_String__char_file_snprintf │ └── 1.json ├── CWE134_10-CWE134_Uncontrolled_Format_String__char_file_vfprintf │ └── 1.json ├── CWE134_10-CWE134_Uncontrolled_Format_String__char_file_vprintf │ └── 1.json ├── CWE134_10-CWE134_Uncontrolled_Format_String__char_listen_socket_fprintf │ └── 1.json ├── CWE134_10-CWE134_Uncontrolled_Format_String__char_listen_socket_printf │ └── 1.json ├── CWE134_10-CWE134_Uncontrolled_Format_String__char_listen_socket_snprintf │ └── 1.json ├── CWE134_10-CWE134_Uncontrolled_Format_String__char_listen_socket_vfprintf │ └── 1.json ├── CWE134_10-CWE134_Uncontrolled_Format_String__char_listen_socket_vprintf │ └── 1.json ├── CWE134_11-CWE134_Uncontrolled_Format_String__char_connect_socket_fprintf │ └── 1.json ├── CWE134_11-CWE134_Uncontrolled_Format_String__char_connect_socket_printf │ └── 1.json ├── CWE134_11-CWE134_Uncontrolled_Format_String__char_connect_socket_snprintf │ └── 1.json ├── CWE134_11-CWE134_Uncontrolled_Format_String__char_connect_socket_vfprintf │ └── 1.json ├── CWE134_11-CWE134_Uncontrolled_Format_String__char_connect_socket_vprintf │ └── 1.json ├── CWE134_11-CWE134_Uncontrolled_Format_String__char_console_fprintf │ └── 1.json ├── CWE134_11-CWE134_Uncontrolled_Format_String__char_console_printf │ └── 1.json ├── CWE134_11-CWE134_Uncontrolled_Format_String__char_console_snprintf │ └── 1.json ├── CWE134_11-CWE134_Uncontrolled_Format_String__char_console_vfprintf │ └── 1.json ├── CWE134_11-CWE134_Uncontrolled_Format_String__char_console_vprintf │ └── 1.json ├── CWE134_11-CWE134_Uncontrolled_Format_String__char_environment_fprintf │ └── 1.json ├── CWE134_11-CWE134_Uncontrolled_Format_String__char_environment_printf │ └── 1.json ├── CWE134_11-CWE134_Uncontrolled_Format_String__char_environment_snprintf │ └── 1.json ├── CWE134_11-CWE134_Uncontrolled_Format_String__char_environment_vfprintf │ └── 1.json ├── CWE134_11-CWE134_Uncontrolled_Format_String__char_environment_vprintf │ └── 1.json ├── CWE134_11-CWE134_Uncontrolled_Format_String__char_file_fprintf │ └── 1.json ├── CWE134_11-CWE134_Uncontrolled_Format_String__char_file_printf │ └── 1.json ├── CWE134_11-CWE134_Uncontrolled_Format_String__char_file_snprintf │ └── 1.json ├── CWE134_11-CWE134_Uncontrolled_Format_String__char_file_vfprintf │ └── 1.json ├── CWE134_11-CWE134_Uncontrolled_Format_String__char_file_vprintf │ └── 1.json ├── CWE134_11-CWE134_Uncontrolled_Format_String__char_listen_socket_fprintf │ └── 1.json ├── CWE134_11-CWE134_Uncontrolled_Format_String__char_listen_socket_printf │ └── 1.json ├── CWE134_11-CWE134_Uncontrolled_Format_String__char_listen_socket_snprintf │ └── 1.json ├── CWE134_11-CWE134_Uncontrolled_Format_String__char_listen_socket_vfprintf │ └── 1.json ├── CWE134_11-CWE134_Uncontrolled_Format_String__char_listen_socket_vprintf │ └── 1.json ├── CWE134_12-CWE134_Uncontrolled_Format_String__char_connect_socket_fprintf │ └── 1.json ├── CWE134_12-CWE134_Uncontrolled_Format_String__char_connect_socket_printf │ └── 1.json ├── CWE134_12-CWE134_Uncontrolled_Format_String__char_connect_socket_snprintf │ └── 1.json ├── CWE134_12-CWE134_Uncontrolled_Format_String__char_connect_socket_vfprintf │ └── 1.json ├── CWE134_12-CWE134_Uncontrolled_Format_String__char_connect_socket_vprintf │ └── 1.json ├── CWE134_12-CWE134_Uncontrolled_Format_String__char_console_fprintf │ └── 1.json ├── CWE134_12-CWE134_Uncontrolled_Format_String__char_console_printf │ └── 1.json ├── CWE134_12-CWE134_Uncontrolled_Format_String__char_console_snprintf │ └── 1.json ├── CWE134_12-CWE134_Uncontrolled_Format_String__char_console_vfprintf │ └── 1.json ├── CWE134_12-CWE134_Uncontrolled_Format_String__char_console_vprintf │ └── 1.json ├── CWE134_12-CWE134_Uncontrolled_Format_String__char_environment_fprintf │ └── 1.json ├── CWE134_12-CWE134_Uncontrolled_Format_String__char_environment_printf │ └── 1.json ├── CWE134_12-CWE134_Uncontrolled_Format_String__char_environment_snprintf │ └── 1.json ├── CWE134_12-CWE134_Uncontrolled_Format_String__char_environment_vfprintf │ └── 1.json ├── CWE134_12-CWE134_Uncontrolled_Format_String__char_environment_vprintf │ └── 1.json ├── CWE134_12-CWE134_Uncontrolled_Format_String__char_file_fprintf │ └── 1.json ├── CWE134_12-CWE134_Uncontrolled_Format_String__char_file_printf │ └── 1.json ├── CWE134_12-CWE134_Uncontrolled_Format_String__char_file_snprintf │ └── 1.json ├── CWE134_12-CWE134_Uncontrolled_Format_String__char_file_vfprintf │ └── 1.json ├── CWE134_12-CWE134_Uncontrolled_Format_String__char_file_vprintf │ └── 1.json ├── CWE134_12-CWE134_Uncontrolled_Format_String__char_listen_socket_fprintf │ └── 1.json ├── CWE134_12-CWE134_Uncontrolled_Format_String__char_listen_socket_printf │ └── 1.json ├── CWE134_12-CWE134_Uncontrolled_Format_String__char_listen_socket_snprintf │ └── 1.json ├── CWE134_12-CWE134_Uncontrolled_Format_String__char_listen_socket_vfprintf │ └── 1.json ├── CWE134_12-CWE134_Uncontrolled_Format_String__char_listen_socket_vprintf │ └── 1.json ├── CWE134_13-CWE134_Uncontrolled_Format_String__char_connect_socket_fprintf │ └── 1.json ├── CWE134_13-CWE134_Uncontrolled_Format_String__char_connect_socket_printf │ └── 1.json ├── CWE134_13-CWE134_Uncontrolled_Format_String__char_connect_socket_snprintf │ └── 1.json ├── CWE134_13-CWE134_Uncontrolled_Format_String__char_connect_socket_vfprintf │ └── 1.json ├── CWE134_13-CWE134_Uncontrolled_Format_String__char_connect_socket_vprintf │ └── 1.json ├── CWE134_13-CWE134_Uncontrolled_Format_String__char_console_fprintf │ └── 1.json ├── CWE134_13-CWE134_Uncontrolled_Format_String__char_console_printf │ └── 1.json ├── CWE134_13-CWE134_Uncontrolled_Format_String__char_console_snprintf │ └── 1.json ├── CWE134_13-CWE134_Uncontrolled_Format_String__char_console_vfprintf │ └── 1.json ├── CWE134_13-CWE134_Uncontrolled_Format_String__char_console_vprintf │ └── 1.json ├── CWE134_13-CWE134_Uncontrolled_Format_String__char_environment_fprintf │ └── 1.json ├── CWE134_13-CWE134_Uncontrolled_Format_String__char_environment_printf │ └── 1.json ├── CWE134_13-CWE134_Uncontrolled_Format_String__char_environment_snprintf │ └── 1.json ├── CWE134_13-CWE134_Uncontrolled_Format_String__char_environment_vfprintf │ └── 1.json ├── CWE134_13-CWE134_Uncontrolled_Format_String__char_environment_vprintf │ └── 1.json ├── CWE134_13-CWE134_Uncontrolled_Format_String__char_file_fprintf │ └── 1.json ├── CWE134_13-CWE134_Uncontrolled_Format_String__char_file_printf │ └── 1.json ├── CWE134_13-CWE134_Uncontrolled_Format_String__char_file_snprintf │ └── 1.json ├── CWE134_13-CWE134_Uncontrolled_Format_String__char_file_vfprintf │ └── 1.json ├── CWE134_13-CWE134_Uncontrolled_Format_String__char_file_vprintf │ └── 1.json ├── CWE134_13-CWE134_Uncontrolled_Format_String__char_listen_socket_fprintf │ └── 1.json ├── CWE134_13-CWE134_Uncontrolled_Format_String__char_listen_socket_printf │ └── 1.json ├── CWE134_13-CWE134_Uncontrolled_Format_String__char_listen_socket_snprintf │ └── 1.json ├── CWE134_13-CWE134_Uncontrolled_Format_String__char_listen_socket_vfprintf │ └── 1.json ├── CWE134_13-CWE134_Uncontrolled_Format_String__char_listen_socket_vprintf │ └── 1.json ├── CWE134_14-CWE134_Uncontrolled_Format_String__char_connect_socket_fprintf │ └── 1.json ├── CWE134_14-CWE134_Uncontrolled_Format_String__char_connect_socket_printf │ └── 1.json ├── CWE134_14-CWE134_Uncontrolled_Format_String__char_connect_socket_snprintf │ └── 1.json ├── CWE134_14-CWE134_Uncontrolled_Format_String__char_connect_socket_vfprintf │ └── 1.json ├── CWE134_14-CWE134_Uncontrolled_Format_String__char_connect_socket_vprintf │ └── 1.json ├── CWE134_14-CWE134_Uncontrolled_Format_String__char_console_fprintf │ └── 1.json ├── CWE134_14-CWE134_Uncontrolled_Format_String__char_console_printf │ └── 1.json ├── CWE134_14-CWE134_Uncontrolled_Format_String__char_console_snprintf │ └── 1.json ├── CWE134_14-CWE134_Uncontrolled_Format_String__char_console_vfprintf │ └── 1.json ├── CWE134_14-CWE134_Uncontrolled_Format_String__char_console_vprintf │ └── 1.json ├── CWE134_14-CWE134_Uncontrolled_Format_String__char_environment_fprintf │ └── 1.json ├── CWE134_14-CWE134_Uncontrolled_Format_String__char_environment_printf │ └── 1.json ├── CWE134_14-CWE134_Uncontrolled_Format_String__char_environment_snprintf │ └── 1.json ├── CWE134_14-CWE134_Uncontrolled_Format_String__char_environment_vfprintf │ └── 1.json ├── CWE134_14-CWE134_Uncontrolled_Format_String__char_environment_vprintf │ └── 1.json ├── CWE134_14-CWE134_Uncontrolled_Format_String__char_file_fprintf │ └── 1.json ├── CWE134_14-CWE134_Uncontrolled_Format_String__char_file_printf │ └── 1.json ├── CWE134_14-CWE134_Uncontrolled_Format_String__char_file_snprintf │ └── 1.json ├── CWE134_14-CWE134_Uncontrolled_Format_String__char_file_vfprintf │ └── 1.json ├── CWE134_14-CWE134_Uncontrolled_Format_String__char_file_vprintf │ └── 1.json ├── CWE134_14-CWE134_Uncontrolled_Format_String__char_listen_socket_fprintf │ └── 1.json ├── CWE134_14-CWE134_Uncontrolled_Format_String__char_listen_socket_printf │ └── 1.json ├── CWE134_14-CWE134_Uncontrolled_Format_String__char_listen_socket_snprintf │ └── 1.json ├── CWE134_14-CWE134_Uncontrolled_Format_String__char_listen_socket_vfprintf │ └── 1.json ├── CWE134_14-CWE134_Uncontrolled_Format_String__char_listen_socket_vprintf │ └── 1.json ├── CWE134_15-CWE134_Uncontrolled_Format_String__char_connect_socket_fprintf │ └── 1.json ├── CWE134_15-CWE134_Uncontrolled_Format_String__char_connect_socket_printf │ └── 1.json ├── CWE134_15-CWE134_Uncontrolled_Format_String__char_connect_socket_snprintf │ └── 1.json ├── CWE134_15-CWE134_Uncontrolled_Format_String__char_connect_socket_vfprintf │ └── 1.json ├── CWE134_15-CWE134_Uncontrolled_Format_String__char_connect_socket_vprintf │ └── 1.json ├── CWE134_15-CWE134_Uncontrolled_Format_String__char_console_fprintf │ └── 1.json ├── CWE134_15-CWE134_Uncontrolled_Format_String__char_console_printf │ └── 1.json ├── CWE134_15-CWE134_Uncontrolled_Format_String__char_console_snprintf │ └── 1.json ├── CWE134_15-CWE134_Uncontrolled_Format_String__char_console_vfprintf │ └── 1.json ├── CWE134_15-CWE134_Uncontrolled_Format_String__char_console_vprintf │ └── 1.json ├── CWE134_15-CWE134_Uncontrolled_Format_String__char_environment_fprintf │ └── 1.json ├── CWE134_15-CWE134_Uncontrolled_Format_String__char_environment_printf │ └── 1.json ├── CWE134_15-CWE134_Uncontrolled_Format_String__char_environment_snprintf │ └── 1.json ├── CWE134_15-CWE134_Uncontrolled_Format_String__char_environment_vfprintf │ └── 1.json ├── CWE134_15-CWE134_Uncontrolled_Format_String__char_environment_vprintf │ └── 1.json ├── CWE134_15-CWE134_Uncontrolled_Format_String__char_file_fprintf │ └── 1.json ├── CWE134_15-CWE134_Uncontrolled_Format_String__char_file_printf │ └── 1.json ├── CWE134_15-CWE134_Uncontrolled_Format_String__char_file_snprintf │ └── 1.json ├── CWE134_15-CWE134_Uncontrolled_Format_String__char_file_vfprintf │ └── 1.json ├── CWE134_15-CWE134_Uncontrolled_Format_String__char_file_vprintf │ └── 1.json ├── CWE134_15-CWE134_Uncontrolled_Format_String__char_listen_socket_fprintf │ └── 1.json ├── CWE134_15-CWE134_Uncontrolled_Format_String__char_listen_socket_printf │ └── 1.json ├── CWE134_15-CWE134_Uncontrolled_Format_String__char_listen_socket_snprintf │ └── 1.json ├── CWE134_15-CWE134_Uncontrolled_Format_String__char_listen_socket_vfprintf │ └── 1.json ├── CWE134_15-CWE134_Uncontrolled_Format_String__char_listen_socket_vprintf │ └── 1.json ├── CWE134_16-CWE134_Uncontrolled_Format_String__char_connect_socket_fprintf │ └── 1.json ├── CWE134_16-CWE134_Uncontrolled_Format_String__char_connect_socket_printf │ └── 1.json ├── CWE134_16-CWE134_Uncontrolled_Format_String__char_connect_socket_snprintf │ └── 1.json ├── CWE134_16-CWE134_Uncontrolled_Format_String__char_connect_socket_vfprintf │ └── 1.json ├── CWE134_16-CWE134_Uncontrolled_Format_String__char_connect_socket_vprintf │ └── 1.json ├── CWE134_16-CWE134_Uncontrolled_Format_String__char_console_fprintf │ └── 1.json ├── CWE134_16-CWE134_Uncontrolled_Format_String__char_console_printf │ └── 1.json ├── CWE134_16-CWE134_Uncontrolled_Format_String__char_console_snprintf │ └── 1.json ├── CWE134_16-CWE134_Uncontrolled_Format_String__char_console_vfprintf │ └── 1.json ├── CWE134_16-CWE134_Uncontrolled_Format_String__char_console_vprintf │ └── 1.json ├── CWE134_16-CWE134_Uncontrolled_Format_String__char_environment_fprintf │ └── 1.json ├── CWE134_16-CWE134_Uncontrolled_Format_String__char_environment_printf │ └── 1.json ├── CWE134_16-CWE134_Uncontrolled_Format_String__char_environment_snprintf │ └── 1.json ├── CWE134_16-CWE134_Uncontrolled_Format_String__char_environment_vfprintf │ └── 1.json ├── CWE134_16-CWE134_Uncontrolled_Format_String__char_environment_vprintf │ └── 1.json ├── CWE134_16-CWE134_Uncontrolled_Format_String__char_file_fprintf │ └── 1.json ├── CWE134_16-CWE134_Uncontrolled_Format_String__char_file_printf │ └── 1.json ├── CWE134_16-CWE134_Uncontrolled_Format_String__char_file_snprintf │ └── 1.json ├── CWE134_16-CWE134_Uncontrolled_Format_String__char_file_vfprintf │ └── 1.json ├── CWE134_16-CWE134_Uncontrolled_Format_String__char_file_vprintf │ └── 1.json ├── CWE134_16-CWE134_Uncontrolled_Format_String__char_listen_socket_fprintf │ └── 1.json ├── CWE134_16-CWE134_Uncontrolled_Format_String__char_listen_socket_printf │ └── 1.json ├── CWE134_16-CWE134_Uncontrolled_Format_String__char_listen_socket_snprintf │ └── 1.json ├── CWE134_16-CWE134_Uncontrolled_Format_String__char_listen_socket_vfprintf │ └── 1.json ├── CWE134_16-CWE134_Uncontrolled_Format_String__char_listen_socket_vprintf │ └── 1.json ├── CWE134_17-CWE134_Uncontrolled_Format_String__char_connect_socket_fprintf │ └── 1.json ├── CWE134_17-CWE134_Uncontrolled_Format_String__char_connect_socket_printf │ └── 1.json ├── CWE134_17-CWE134_Uncontrolled_Format_String__char_connect_socket_snprintf │ └── 1.json ├── CWE134_17-CWE134_Uncontrolled_Format_String__char_connect_socket_vfprintf │ └── 1.json ├── CWE134_17-CWE134_Uncontrolled_Format_String__char_connect_socket_vprintf │ └── 1.json ├── CWE134_17-CWE134_Uncontrolled_Format_String__char_console_fprintf │ └── 1.json ├── CWE134_17-CWE134_Uncontrolled_Format_String__char_console_printf │ └── 1.json ├── CWE134_17-CWE134_Uncontrolled_Format_String__char_console_snprintf │ └── 1.json ├── CWE134_17-CWE134_Uncontrolled_Format_String__char_console_vfprintf │ └── 1.json ├── CWE134_17-CWE134_Uncontrolled_Format_String__char_console_vprintf │ └── 1.json ├── CWE134_17-CWE134_Uncontrolled_Format_String__char_environment_fprintf │ └── 1.json ├── CWE134_17-CWE134_Uncontrolled_Format_String__char_environment_printf │ └── 1.json ├── CWE134_17-CWE134_Uncontrolled_Format_String__char_environment_snprintf │ └── 1.json ├── CWE134_17-CWE134_Uncontrolled_Format_String__char_environment_vfprintf │ └── 1.json ├── CWE134_17-CWE134_Uncontrolled_Format_String__char_environment_vprintf │ └── 1.json ├── CWE134_17-CWE134_Uncontrolled_Format_String__char_file_fprintf │ └── 1.json ├── CWE134_17-CWE134_Uncontrolled_Format_String__char_file_printf │ └── 1.json ├── CWE134_17-CWE134_Uncontrolled_Format_String__char_file_snprintf │ └── 1.json ├── CWE134_17-CWE134_Uncontrolled_Format_String__char_file_vfprintf │ └── 1.json ├── CWE134_17-CWE134_Uncontrolled_Format_String__char_file_vprintf │ └── 1.json ├── CWE134_17-CWE134_Uncontrolled_Format_String__char_listen_socket_fprintf │ └── 1.json ├── CWE134_17-CWE134_Uncontrolled_Format_String__char_listen_socket_printf │ └── 1.json ├── CWE134_17-CWE134_Uncontrolled_Format_String__char_listen_socket_snprintf │ └── 1.json ├── CWE134_17-CWE134_Uncontrolled_Format_String__char_listen_socket_vfprintf │ └── 1.json ├── CWE134_17-CWE134_Uncontrolled_Format_String__char_listen_socket_vprintf │ └── 1.json ├── CWE134_18-CWE134_Uncontrolled_Format_String__char_connect_socket_fprintf │ └── 1.json ├── CWE134_18-CWE134_Uncontrolled_Format_String__char_connect_socket_printf │ └── 1.json ├── CWE134_18-CWE134_Uncontrolled_Format_String__char_connect_socket_snprintf │ └── 1.json ├── CWE134_18-CWE134_Uncontrolled_Format_String__char_connect_socket_vfprintf │ └── 1.json ├── CWE134_18-CWE134_Uncontrolled_Format_String__char_connect_socket_vprintf │ └── 1.json ├── CWE134_18-CWE134_Uncontrolled_Format_String__char_console_fprintf │ └── 1.json ├── CWE134_18-CWE134_Uncontrolled_Format_String__char_console_printf │ └── 1.json ├── CWE134_18-CWE134_Uncontrolled_Format_String__char_console_snprintf │ └── 1.json ├── CWE134_18-CWE134_Uncontrolled_Format_String__char_console_vfprintf │ └── 1.json ├── CWE134_18-CWE134_Uncontrolled_Format_String__char_console_vprintf │ └── 1.json ├── CWE134_18-CWE134_Uncontrolled_Format_String__char_environment_fprintf │ └── 1.json ├── CWE134_18-CWE134_Uncontrolled_Format_String__char_environment_printf │ └── 1.json ├── CWE134_18-CWE134_Uncontrolled_Format_String__char_environment_snprintf │ └── 1.json ├── CWE134_18-CWE134_Uncontrolled_Format_String__char_environment_vfprintf │ └── 1.json ├── CWE134_18-CWE134_Uncontrolled_Format_String__char_environment_vprintf │ └── 1.json ├── CWE134_18-CWE134_Uncontrolled_Format_String__char_file_fprintf │ └── 1.json ├── CWE134_18-CWE134_Uncontrolled_Format_String__char_file_printf │ └── 1.json ├── CWE134_18-CWE134_Uncontrolled_Format_String__char_file_snprintf │ └── 1.json ├── CWE134_18-CWE134_Uncontrolled_Format_String__char_file_vfprintf │ └── 1.json ├── CWE134_18-CWE134_Uncontrolled_Format_String__char_file_vprintf │ └── 1.json ├── CWE134_18-CWE134_Uncontrolled_Format_String__char_listen_socket_fprintf │ └── 1.json ├── CWE134_18-CWE134_Uncontrolled_Format_String__char_listen_socket_printf │ └── 1.json ├── CWE134_18-CWE134_Uncontrolled_Format_String__char_listen_socket_snprintf │ └── 1.json ├── CWE134_18-CWE134_Uncontrolled_Format_String__char_listen_socket_vfprintf │ └── 1.json ├── CWE134_18-CWE134_Uncontrolled_Format_String__char_listen_socket_vprintf │ └── 1.json ├── CWE134_21-CWE134_Uncontrolled_Format_String__char_connect_socket_fprintf │ └── 1.json ├── CWE134_21-CWE134_Uncontrolled_Format_String__char_connect_socket_printf │ └── 1.json ├── CWE134_21-CWE134_Uncontrolled_Format_String__char_connect_socket_snprintf │ └── 1.json ├── CWE134_21-CWE134_Uncontrolled_Format_String__char_connect_socket_vfprintf │ └── 1.json ├── CWE134_21-CWE134_Uncontrolled_Format_String__char_connect_socket_vprintf │ └── 1.json ├── CWE134_21-CWE134_Uncontrolled_Format_String__char_console_fprintf │ └── 1.json ├── CWE134_21-CWE134_Uncontrolled_Format_String__char_console_printf │ └── 1.json ├── CWE134_21-CWE134_Uncontrolled_Format_String__char_console_snprintf │ └── 1.json ├── CWE134_21-CWE134_Uncontrolled_Format_String__char_console_vfprintf │ └── 1.json ├── CWE134_21-CWE134_Uncontrolled_Format_String__char_console_vprintf │ └── 1.json ├── CWE134_21-CWE134_Uncontrolled_Format_String__char_environment_fprintf │ └── 1.json ├── CWE134_21-CWE134_Uncontrolled_Format_String__char_environment_printf │ └── 1.json ├── CWE134_21-CWE134_Uncontrolled_Format_String__char_environment_snprintf │ └── 1.json ├── CWE134_21-CWE134_Uncontrolled_Format_String__char_environment_vfprintf │ └── 1.json ├── CWE134_21-CWE134_Uncontrolled_Format_String__char_environment_vprintf │ └── 1.json ├── CWE134_21-CWE134_Uncontrolled_Format_String__char_file_fprintf │ └── 1.json ├── CWE134_21-CWE134_Uncontrolled_Format_String__char_file_printf │ └── 1.json ├── CWE134_21-CWE134_Uncontrolled_Format_String__char_file_snprintf │ └── 1.json ├── CWE134_21-CWE134_Uncontrolled_Format_String__char_file_vfprintf │ └── 1.json ├── CWE134_21-CWE134_Uncontrolled_Format_String__char_file_vprintf │ └── 1.json ├── CWE134_21-CWE134_Uncontrolled_Format_String__char_listen_socket_fprintf │ └── 1.json ├── CWE134_21-CWE134_Uncontrolled_Format_String__char_listen_socket_printf │ └── 1.json ├── CWE134_21-CWE134_Uncontrolled_Format_String__char_listen_socket_snprintf │ └── 1.json ├── CWE134_21-CWE134_Uncontrolled_Format_String__char_listen_socket_vfprintf │ └── 1.json ├── CWE134_21-CWE134_Uncontrolled_Format_String__char_listen_socket_vprintf │ └── 1.json ├── CWE134_22-CWE134_Uncontrolled_Format_String__char_connect_socket_fprintf │ └── 1.json ├── CWE134_22-CWE134_Uncontrolled_Format_String__char_connect_socket_printf │ └── 1.json ├── CWE134_22-CWE134_Uncontrolled_Format_String__char_connect_socket_snprintf │ └── 1.json ├── CWE134_22-CWE134_Uncontrolled_Format_String__char_connect_socket_vfprintf │ └── 1.json ├── CWE134_22-CWE134_Uncontrolled_Format_String__char_connect_socket_vprintf │ └── 1.json ├── CWE134_22-CWE134_Uncontrolled_Format_String__char_console_fprintf │ └── 1.json ├── CWE134_22-CWE134_Uncontrolled_Format_String__char_console_printf │ └── 1.json ├── CWE134_22-CWE134_Uncontrolled_Format_String__char_console_snprintf │ └── 1.json ├── CWE134_22-CWE134_Uncontrolled_Format_String__char_console_vfprintf │ └── 1.json ├── CWE134_22-CWE134_Uncontrolled_Format_String__char_console_vprintf │ └── 1.json ├── CWE134_22-CWE134_Uncontrolled_Format_String__char_environment_fprintf │ └── 1.json ├── CWE134_22-CWE134_Uncontrolled_Format_String__char_environment_printf │ └── 1.json ├── CWE134_22-CWE134_Uncontrolled_Format_String__char_environment_snprintf │ └── 1.json ├── CWE134_22-CWE134_Uncontrolled_Format_String__char_environment_vfprintf │ └── 1.json ├── CWE134_22-CWE134_Uncontrolled_Format_String__char_environment_vprintf │ └── 1.json ├── CWE134_22-CWE134_Uncontrolled_Format_String__char_file_fprintf │ └── 1.json ├── CWE134_22-CWE134_Uncontrolled_Format_String__char_file_printf │ └── 1.json ├── CWE134_22-CWE134_Uncontrolled_Format_String__char_file_snprintf │ └── 1.json ├── CWE134_22-CWE134_Uncontrolled_Format_String__char_file_vfprintf │ └── 1.json ├── CWE134_22-CWE134_Uncontrolled_Format_String__char_file_vprintf │ └── 1.json ├── CWE134_22-CWE134_Uncontrolled_Format_String__char_listen_socket_fprintf │ └── 1.json ├── CWE134_22-CWE134_Uncontrolled_Format_String__char_listen_socket_printf │ └── 1.json ├── CWE134_22-CWE134_Uncontrolled_Format_String__char_listen_socket_snprintf │ └── 1.json ├── CWE134_22-CWE134_Uncontrolled_Format_String__char_listen_socket_vfprintf │ └── 1.json ├── CWE134_22-CWE134_Uncontrolled_Format_String__char_listen_socket_vprintf │ └── 1.json ├── CWE134_31-CWE134_Uncontrolled_Format_String__char_connect_socket_fprintf │ └── 1.json ├── CWE134_31-CWE134_Uncontrolled_Format_String__char_connect_socket_printf │ └── 1.json ├── CWE134_31-CWE134_Uncontrolled_Format_String__char_connect_socket_snprintf │ └── 1.json ├── CWE134_31-CWE134_Uncontrolled_Format_String__char_connect_socket_vfprintf │ └── 1.json ├── CWE134_31-CWE134_Uncontrolled_Format_String__char_connect_socket_vprintf │ └── 1.json ├── CWE134_31-CWE134_Uncontrolled_Format_String__char_console_fprintf │ └── 1.json ├── CWE134_31-CWE134_Uncontrolled_Format_String__char_console_printf │ └── 1.json ├── CWE134_31-CWE134_Uncontrolled_Format_String__char_console_snprintf │ └── 1.json ├── CWE134_31-CWE134_Uncontrolled_Format_String__char_console_vfprintf │ └── 1.json ├── CWE134_31-CWE134_Uncontrolled_Format_String__char_console_vprintf │ └── 1.json ├── CWE134_31-CWE134_Uncontrolled_Format_String__char_environment_fprintf │ └── 1.json ├── CWE134_31-CWE134_Uncontrolled_Format_String__char_environment_printf │ └── 1.json ├── CWE134_31-CWE134_Uncontrolled_Format_String__char_environment_snprintf │ └── 1.json ├── CWE134_31-CWE134_Uncontrolled_Format_String__char_environment_vfprintf │ └── 1.json ├── CWE134_31-CWE134_Uncontrolled_Format_String__char_environment_vprintf │ └── 1.json ├── CWE134_31-CWE134_Uncontrolled_Format_String__char_file_fprintf │ └── 1.json ├── CWE134_31-CWE134_Uncontrolled_Format_String__char_file_printf │ └── 1.json ├── CWE134_31-CWE134_Uncontrolled_Format_String__char_file_snprintf │ └── 1.json ├── CWE134_31-CWE134_Uncontrolled_Format_String__char_file_vfprintf │ └── 1.json ├── CWE134_31-CWE134_Uncontrolled_Format_String__char_file_vprintf │ └── 1.json ├── CWE134_31-CWE134_Uncontrolled_Format_String__char_listen_socket_fprintf │ └── 1.json ├── CWE134_31-CWE134_Uncontrolled_Format_String__char_listen_socket_printf │ └── 1.json ├── CWE134_31-CWE134_Uncontrolled_Format_String__char_listen_socket_snprintf │ └── 1.json ├── CWE134_31-CWE134_Uncontrolled_Format_String__char_listen_socket_vfprintf │ └── 1.json ├── CWE134_31-CWE134_Uncontrolled_Format_String__char_listen_socket_vprintf │ └── 1.json ├── CWE134_32-CWE134_Uncontrolled_Format_String__char_connect_socket_fprintf │ └── 1.json ├── CWE134_32-CWE134_Uncontrolled_Format_String__char_connect_socket_printf │ └── 1.json ├── CWE134_32-CWE134_Uncontrolled_Format_String__char_connect_socket_snprintf │ └── 1.json ├── CWE134_32-CWE134_Uncontrolled_Format_String__char_connect_socket_vfprintf │ └── 1.json ├── CWE134_32-CWE134_Uncontrolled_Format_String__char_connect_socket_vprintf │ └── 1.json ├── CWE134_32-CWE134_Uncontrolled_Format_String__char_console_fprintf │ └── 1.json ├── CWE134_32-CWE134_Uncontrolled_Format_String__char_console_printf │ └── 1.json ├── CWE134_32-CWE134_Uncontrolled_Format_String__char_console_snprintf │ └── 1.json ├── CWE134_32-CWE134_Uncontrolled_Format_String__char_console_vfprintf │ └── 1.json ├── CWE134_32-CWE134_Uncontrolled_Format_String__char_console_vprintf │ └── 1.json ├── CWE134_32-CWE134_Uncontrolled_Format_String__char_environment_fprintf │ └── 1.json ├── CWE134_32-CWE134_Uncontrolled_Format_String__char_environment_printf │ └── 1.json ├── CWE134_32-CWE134_Uncontrolled_Format_String__char_environment_snprintf │ └── 1.json ├── CWE134_32-CWE134_Uncontrolled_Format_String__char_environment_vfprintf │ └── 1.json ├── CWE134_32-CWE134_Uncontrolled_Format_String__char_environment_vprintf │ └── 1.json ├── CWE134_32-CWE134_Uncontrolled_Format_String__char_file_fprintf │ └── 1.json ├── CWE134_32-CWE134_Uncontrolled_Format_String__char_file_printf │ └── 1.json ├── CWE134_32-CWE134_Uncontrolled_Format_String__char_file_snprintf │ └── 1.json ├── CWE134_32-CWE134_Uncontrolled_Format_String__char_file_vfprintf │ └── 1.json ├── CWE134_32-CWE134_Uncontrolled_Format_String__char_file_vprintf │ └── 1.json ├── CWE134_32-CWE134_Uncontrolled_Format_String__char_listen_socket_fprintf │ └── 1.json ├── CWE134_32-CWE134_Uncontrolled_Format_String__char_listen_socket_printf │ └── 1.json ├── CWE134_32-CWE134_Uncontrolled_Format_String__char_listen_socket_snprintf │ └── 1.json ├── CWE134_32-CWE134_Uncontrolled_Format_String__char_listen_socket_vfprintf │ └── 1.json ├── CWE134_32-CWE134_Uncontrolled_Format_String__char_listen_socket_vprintf │ └── 1.json ├── CWE134_33-CWE134_Uncontrolled_Format_String__char_connect_socket_fprintf │ └── 1.json ├── CWE134_33-CWE134_Uncontrolled_Format_String__char_connect_socket_printf │ └── 1.json ├── CWE134_33-CWE134_Uncontrolled_Format_String__char_connect_socket_snprintf │ └── 1.json ├── CWE134_33-CWE134_Uncontrolled_Format_String__char_connect_socket_vfprintf │ └── 1.json ├── CWE134_33-CWE134_Uncontrolled_Format_String__char_connect_socket_vprintf │ └── 1.json ├── CWE134_33-CWE134_Uncontrolled_Format_String__char_console_fprintf │ └── 1.json ├── CWE134_33-CWE134_Uncontrolled_Format_String__char_console_printf │ └── 1.json ├── CWE134_33-CWE134_Uncontrolled_Format_String__char_console_snprintf │ └── 1.json ├── CWE134_33-CWE134_Uncontrolled_Format_String__char_console_vfprintf │ └── 1.json ├── CWE134_33-CWE134_Uncontrolled_Format_String__char_console_vprintf │ └── 1.json ├── CWE134_33-CWE134_Uncontrolled_Format_String__char_environment_fprintf │ └── 1.json ├── CWE134_33-CWE134_Uncontrolled_Format_String__char_environment_printf │ └── 1.json ├── CWE134_33-CWE134_Uncontrolled_Format_String__char_environment_snprintf │ └── 1.json ├── CWE134_33-CWE134_Uncontrolled_Format_String__char_environment_vfprintf │ └── 1.json ├── CWE134_33-CWE134_Uncontrolled_Format_String__char_environment_vprintf │ └── 1.json ├── CWE134_33-CWE134_Uncontrolled_Format_String__char_file_fprintf │ └── 1.json ├── CWE134_33-CWE134_Uncontrolled_Format_String__char_file_printf │ └── 1.json ├── CWE134_33-CWE134_Uncontrolled_Format_String__char_file_snprintf │ └── 1.json ├── CWE134_33-CWE134_Uncontrolled_Format_String__char_file_vfprintf │ └── 1.json ├── CWE134_33-CWE134_Uncontrolled_Format_String__char_file_vprintf │ └── 1.json ├── CWE134_33-CWE134_Uncontrolled_Format_String__char_listen_socket_fprintf │ └── 1.json ├── CWE134_33-CWE134_Uncontrolled_Format_String__char_listen_socket_printf │ └── 1.json ├── CWE134_33-CWE134_Uncontrolled_Format_String__char_listen_socket_snprintf │ └── 1.json ├── CWE134_33-CWE134_Uncontrolled_Format_String__char_listen_socket_vfprintf │ └── 1.json ├── CWE134_33-CWE134_Uncontrolled_Format_String__char_listen_socket_vprintf │ └── 1.json ├── CWE134_34-CWE134_Uncontrolled_Format_String__char_connect_socket_vfprintf │ └── 1.json ├── CWE134_34-CWE134_Uncontrolled_Format_String__char_connect_socket_vprintf │ └── 1.json ├── CWE134_34-CWE134_Uncontrolled_Format_String__char_console_vfprintf │ └── 1.json ├── CWE134_34-CWE134_Uncontrolled_Format_String__char_console_vprintf │ └── 1.json ├── CWE134_34-CWE134_Uncontrolled_Format_String__char_environment_vfprintf │ └── 1.json ├── CWE134_34-CWE134_Uncontrolled_Format_String__char_environment_vprintf │ └── 1.json ├── CWE134_34-CWE134_Uncontrolled_Format_String__char_file_vfprintf │ └── 1.json ├── CWE134_34-CWE134_Uncontrolled_Format_String__char_file_vprintf │ └── 1.json ├── CWE134_34-CWE134_Uncontrolled_Format_String__char_listen_socket_vfprintf │ └── 1.json ├── CWE134_34-CWE134_Uncontrolled_Format_String__char_listen_socket_vprintf │ └── 1.json ├── CWE134_41-CWE134_Uncontrolled_Format_String__char_connect_socket_fprintf │ └── 1.json ├── CWE134_41-CWE134_Uncontrolled_Format_String__char_connect_socket_printf │ └── 1.json ├── CWE134_41-CWE134_Uncontrolled_Format_String__char_connect_socket_snprintf │ └── 1.json ├── CWE134_41-CWE134_Uncontrolled_Format_String__char_connect_socket_vfprintf │ └── 1.json ├── CWE134_41-CWE134_Uncontrolled_Format_String__char_connect_socket_vprintf │ └── 1.json ├── CWE134_41-CWE134_Uncontrolled_Format_String__char_console_fprintf │ └── 1.json ├── CWE134_41-CWE134_Uncontrolled_Format_String__char_console_printf │ └── 1.json ├── CWE134_41-CWE134_Uncontrolled_Format_String__char_console_snprintf │ └── 1.json ├── CWE134_41-CWE134_Uncontrolled_Format_String__char_console_vfprintf │ └── 1.json ├── CWE134_41-CWE134_Uncontrolled_Format_String__char_console_vprintf │ └── 1.json ├── CWE134_41-CWE134_Uncontrolled_Format_String__char_environment_fprintf │ └── 1.json ├── CWE134_41-CWE134_Uncontrolled_Format_String__char_environment_printf │ └── 1.json ├── CWE134_41-CWE134_Uncontrolled_Format_String__char_environment_snprintf │ └── 1.json ├── CWE134_41-CWE134_Uncontrolled_Format_String__char_environment_vfprintf │ └── 1.json ├── CWE134_41-CWE134_Uncontrolled_Format_String__char_environment_vprintf │ └── 1.json ├── CWE134_41-CWE134_Uncontrolled_Format_String__char_file_fprintf │ └── 1.json ├── CWE134_41-CWE134_Uncontrolled_Format_String__char_file_printf │ └── 1.json ├── CWE134_41-CWE134_Uncontrolled_Format_String__char_file_snprintf │ └── 1.json ├── CWE134_41-CWE134_Uncontrolled_Format_String__char_file_vfprintf │ └── 1.json ├── CWE134_41-CWE134_Uncontrolled_Format_String__char_file_vprintf │ └── 1.json ├── CWE134_41-CWE134_Uncontrolled_Format_String__char_listen_socket_fprintf │ └── 1.json ├── CWE134_41-CWE134_Uncontrolled_Format_String__char_listen_socket_printf │ └── 1.json ├── CWE134_41-CWE134_Uncontrolled_Format_String__char_listen_socket_snprintf │ └── 1.json ├── CWE134_41-CWE134_Uncontrolled_Format_String__char_listen_socket_vfprintf │ └── 1.json ├── CWE134_41-CWE134_Uncontrolled_Format_String__char_listen_socket_vprintf │ └── 1.json ├── CWE134_42-CWE134_Uncontrolled_Format_String__char_connect_socket_fprintf │ └── 1.json ├── CWE134_42-CWE134_Uncontrolled_Format_String__char_connect_socket_printf │ └── 1.json ├── CWE134_42-CWE134_Uncontrolled_Format_String__char_connect_socket_snprintf │ └── 1.json ├── CWE134_42-CWE134_Uncontrolled_Format_String__char_connect_socket_vfprintf │ └── 1.json ├── CWE134_42-CWE134_Uncontrolled_Format_String__char_connect_socket_vprintf │ └── 1.json ├── CWE134_42-CWE134_Uncontrolled_Format_String__char_console_fprintf │ └── 1.json ├── CWE134_42-CWE134_Uncontrolled_Format_String__char_console_printf │ └── 1.json ├── CWE134_42-CWE134_Uncontrolled_Format_String__char_console_snprintf │ └── 1.json ├── CWE134_42-CWE134_Uncontrolled_Format_String__char_console_vfprintf │ └── 1.json ├── CWE134_42-CWE134_Uncontrolled_Format_String__char_console_vprintf │ └── 1.json ├── CWE134_42-CWE134_Uncontrolled_Format_String__char_environment_fprintf │ └── 1.json ├── CWE134_42-CWE134_Uncontrolled_Format_String__char_environment_printf │ └── 1.json ├── CWE134_42-CWE134_Uncontrolled_Format_String__char_environment_snprintf │ └── 1.json ├── CWE134_42-CWE134_Uncontrolled_Format_String__char_environment_vfprintf │ └── 1.json ├── CWE134_42-CWE134_Uncontrolled_Format_String__char_environment_vprintf │ └── 1.json ├── CWE134_42-CWE134_Uncontrolled_Format_String__char_file_fprintf │ └── 1.json ├── CWE134_42-CWE134_Uncontrolled_Format_String__char_file_printf │ └── 1.json ├── CWE134_42-CWE134_Uncontrolled_Format_String__char_file_snprintf │ └── 1.json ├── CWE134_42-CWE134_Uncontrolled_Format_String__char_file_vfprintf │ └── 1.json ├── CWE134_42-CWE134_Uncontrolled_Format_String__char_file_vprintf │ └── 1.json ├── CWE134_42-CWE134_Uncontrolled_Format_String__char_listen_socket_fprintf │ └── 1.json ├── CWE134_42-CWE134_Uncontrolled_Format_String__char_listen_socket_printf │ └── 1.json ├── CWE134_42-CWE134_Uncontrolled_Format_String__char_listen_socket_snprintf │ └── 1.json ├── CWE134_42-CWE134_Uncontrolled_Format_String__char_listen_socket_vfprintf │ └── 1.json ├── CWE134_42-CWE134_Uncontrolled_Format_String__char_listen_socket_vprintf │ └── 1.json ├── CWE134_44-CWE134_Uncontrolled_Format_String__char_connect_socket_fprintf │ └── 1.json ├── CWE134_44-CWE134_Uncontrolled_Format_String__char_connect_socket_printf │ └── 1.json ├── CWE134_44-CWE134_Uncontrolled_Format_String__char_connect_socket_snprintf │ └── 1.json ├── CWE134_44-CWE134_Uncontrolled_Format_String__char_console_fprintf │ └── 1.json ├── CWE134_44-CWE134_Uncontrolled_Format_String__char_console_printf │ └── 1.json ├── CWE134_44-CWE134_Uncontrolled_Format_String__char_console_snprintf │ └── 1.json ├── CWE134_44-CWE134_Uncontrolled_Format_String__char_environment_fprintf │ └── 1.json ├── CWE134_44-CWE134_Uncontrolled_Format_String__char_environment_printf │ └── 1.json ├── CWE134_44-CWE134_Uncontrolled_Format_String__char_environment_snprintf │ └── 1.json ├── CWE134_44-CWE134_Uncontrolled_Format_String__char_file_fprintf │ └── 1.json ├── CWE134_44-CWE134_Uncontrolled_Format_String__char_file_printf │ └── 1.json ├── CWE134_44-CWE134_Uncontrolled_Format_String__char_file_snprintf │ └── 1.json ├── CWE134_44-CWE134_Uncontrolled_Format_String__char_listen_socket_fprintf │ └── 1.json ├── CWE134_44-CWE134_Uncontrolled_Format_String__char_listen_socket_printf │ └── 1.json ├── CWE134_44-CWE134_Uncontrolled_Format_String__char_listen_socket_snprintf │ └── 1.json ├── CWE134_51-CWE134_Uncontrolled_Format_String__char_connect_socket_fprintf │ └── 1.json ├── CWE134_51-CWE134_Uncontrolled_Format_String__char_connect_socket_printf │ └── 1.json ├── CWE134_51-CWE134_Uncontrolled_Format_String__char_connect_socket_snprintf │ └── 1.json ├── CWE134_51-CWE134_Uncontrolled_Format_String__char_connect_socket_vfprintf │ └── 1.json ├── CWE134_51-CWE134_Uncontrolled_Format_String__char_connect_socket_vprintf │ └── 1.json ├── CWE134_51-CWE134_Uncontrolled_Format_String__char_console_fprintf │ └── 1.json ├── CWE134_51-CWE134_Uncontrolled_Format_String__char_console_printf │ └── 1.json ├── CWE134_51-CWE134_Uncontrolled_Format_String__char_console_snprintf │ └── 1.json ├── CWE134_51-CWE134_Uncontrolled_Format_String__char_console_vfprintf │ └── 1.json ├── CWE134_51-CWE134_Uncontrolled_Format_String__char_console_vprintf │ └── 1.json ├── CWE134_51-CWE134_Uncontrolled_Format_String__char_environment_fprintf │ └── 1.json ├── CWE134_51-CWE134_Uncontrolled_Format_String__char_environment_printf │ └── 1.json ├── CWE134_51-CWE134_Uncontrolled_Format_String__char_environment_snprintf │ └── 1.json ├── CWE134_51-CWE134_Uncontrolled_Format_String__char_environment_vfprintf │ └── 1.json ├── CWE134_51-CWE134_Uncontrolled_Format_String__char_environment_vprintf │ └── 1.json ├── CWE134_51-CWE134_Uncontrolled_Format_String__char_file_fprintf │ └── 1.json ├── CWE134_51-CWE134_Uncontrolled_Format_String__char_file_printf │ └── 1.json ├── CWE134_51-CWE134_Uncontrolled_Format_String__char_file_snprintf │ └── 1.json ├── CWE134_51-CWE134_Uncontrolled_Format_String__char_file_vfprintf │ └── 1.json ├── CWE134_51-CWE134_Uncontrolled_Format_String__char_file_vprintf │ └── 1.json ├── CWE134_51-CWE134_Uncontrolled_Format_String__char_listen_socket_fprintf │ └── 1.json ├── CWE134_51-CWE134_Uncontrolled_Format_String__char_listen_socket_printf │ └── 1.json ├── CWE134_51-CWE134_Uncontrolled_Format_String__char_listen_socket_snprintf │ └── 1.json ├── CWE134_51-CWE134_Uncontrolled_Format_String__char_listen_socket_vfprintf │ └── 1.json ├── CWE134_51-CWE134_Uncontrolled_Format_String__char_listen_socket_vprintf │ └── 1.json ├── CWE134_52-CWE134_Uncontrolled_Format_String__char_connect_socket_fprintf │ └── 1.json ├── CWE134_52-CWE134_Uncontrolled_Format_String__char_connect_socket_printf │ └── 1.json ├── CWE134_52-CWE134_Uncontrolled_Format_String__char_connect_socket_snprintf │ └── 1.json ├── CWE134_52-CWE134_Uncontrolled_Format_String__char_connect_socket_vfprintf │ └── 1.json ├── CWE134_52-CWE134_Uncontrolled_Format_String__char_connect_socket_vprintf │ └── 1.json ├── CWE134_52-CWE134_Uncontrolled_Format_String__char_console_fprintf │ └── 1.json ├── CWE134_52-CWE134_Uncontrolled_Format_String__char_console_printf │ └── 1.json ├── CWE134_52-CWE134_Uncontrolled_Format_String__char_console_snprintf │ └── 1.json ├── CWE134_52-CWE134_Uncontrolled_Format_String__char_console_vfprintf │ └── 1.json ├── CWE134_52-CWE134_Uncontrolled_Format_String__char_console_vprintf │ └── 1.json ├── CWE134_52-CWE134_Uncontrolled_Format_String__char_environment_fprintf │ └── 1.json ├── CWE134_52-CWE134_Uncontrolled_Format_String__char_environment_printf │ └── 1.json ├── CWE134_52-CWE134_Uncontrolled_Format_String__char_environment_snprintf │ └── 1.json ├── CWE134_52-CWE134_Uncontrolled_Format_String__char_environment_vfprintf │ └── 1.json ├── CWE134_52-CWE134_Uncontrolled_Format_String__char_environment_vprintf │ └── 1.json ├── CWE134_52-CWE134_Uncontrolled_Format_String__char_file_fprintf │ └── 1.json ├── CWE134_52-CWE134_Uncontrolled_Format_String__char_file_printf │ └── 1.json ├── CWE134_52-CWE134_Uncontrolled_Format_String__char_file_snprintf │ └── 1.json ├── CWE134_52-CWE134_Uncontrolled_Format_String__char_file_vfprintf │ └── 1.json ├── CWE134_52-CWE134_Uncontrolled_Format_String__char_file_vprintf │ └── 1.json ├── CWE134_52-CWE134_Uncontrolled_Format_String__char_listen_socket_fprintf │ └── 1.json ├── CWE134_52-CWE134_Uncontrolled_Format_String__char_listen_socket_printf │ └── 1.json ├── CWE134_52-CWE134_Uncontrolled_Format_String__char_listen_socket_snprintf │ └── 1.json ├── CWE134_52-CWE134_Uncontrolled_Format_String__char_listen_socket_vfprintf │ └── 1.json ├── CWE134_52-CWE134_Uncontrolled_Format_String__char_listen_socket_vprintf │ └── 1.json ├── CWE134_53-CWE134_Uncontrolled_Format_String__char_connect_socket_fprintf │ └── 1.json ├── CWE134_53-CWE134_Uncontrolled_Format_String__char_connect_socket_printf │ └── 1.json ├── CWE134_53-CWE134_Uncontrolled_Format_String__char_connect_socket_snprintf │ └── 1.json ├── CWE134_53-CWE134_Uncontrolled_Format_String__char_connect_socket_vfprintf │ └── 1.json ├── CWE134_53-CWE134_Uncontrolled_Format_String__char_connect_socket_vprintf │ └── 1.json ├── CWE134_53-CWE134_Uncontrolled_Format_String__char_console_fprintf │ └── 1.json ├── CWE134_53-CWE134_Uncontrolled_Format_String__char_console_printf │ └── 1.json ├── CWE134_53-CWE134_Uncontrolled_Format_String__char_console_snprintf │ └── 1.json ├── CWE134_53-CWE134_Uncontrolled_Format_String__char_console_vfprintf │ └── 1.json ├── CWE134_53-CWE134_Uncontrolled_Format_String__char_console_vprintf │ └── 1.json ├── CWE134_53-CWE134_Uncontrolled_Format_String__char_environment_fprintf │ └── 1.json ├── CWE134_53-CWE134_Uncontrolled_Format_String__char_environment_printf │ └── 1.json ├── CWE134_53-CWE134_Uncontrolled_Format_String__char_environment_snprintf │ └── 1.json ├── CWE134_53-CWE134_Uncontrolled_Format_String__char_environment_vfprintf │ └── 1.json ├── CWE134_53-CWE134_Uncontrolled_Format_String__char_environment_vprintf │ └── 1.json ├── CWE134_53-CWE134_Uncontrolled_Format_String__char_file_fprintf │ └── 1.json ├── CWE134_53-CWE134_Uncontrolled_Format_String__char_file_printf │ └── 1.json ├── CWE134_53-CWE134_Uncontrolled_Format_String__char_file_snprintf │ └── 1.json ├── CWE134_53-CWE134_Uncontrolled_Format_String__char_file_vfprintf │ └── 1.json ├── CWE134_53-CWE134_Uncontrolled_Format_String__char_file_vprintf │ └── 1.json ├── CWE134_53-CWE134_Uncontrolled_Format_String__char_listen_socket_fprintf │ └── 1.json ├── CWE134_53-CWE134_Uncontrolled_Format_String__char_listen_socket_printf │ └── 1.json ├── CWE134_53-CWE134_Uncontrolled_Format_String__char_listen_socket_snprintf │ └── 1.json ├── CWE134_53-CWE134_Uncontrolled_Format_String__char_listen_socket_vfprintf │ └── 1.json ├── CWE134_53-CWE134_Uncontrolled_Format_String__char_listen_socket_vprintf │ └── 1.json ├── CWE134_54-CWE134_Uncontrolled_Format_String__char_connect_socket_fprintf │ └── 1.json ├── CWE134_54-CWE134_Uncontrolled_Format_String__char_connect_socket_printf │ └── 1.json ├── CWE134_54-CWE134_Uncontrolled_Format_String__char_connect_socket_snprintf │ └── 1.json ├── CWE134_54-CWE134_Uncontrolled_Format_String__char_connect_socket_vfprintf │ └── 1.json ├── CWE134_54-CWE134_Uncontrolled_Format_String__char_connect_socket_vprintf │ └── 1.json ├── CWE134_54-CWE134_Uncontrolled_Format_String__char_console_fprintf │ └── 1.json ├── CWE134_54-CWE134_Uncontrolled_Format_String__char_console_printf │ └── 1.json ├── CWE134_54-CWE134_Uncontrolled_Format_String__char_console_snprintf │ └── 1.json ├── CWE134_54-CWE134_Uncontrolled_Format_String__char_console_vfprintf │ └── 1.json ├── CWE134_54-CWE134_Uncontrolled_Format_String__char_console_vprintf │ └── 1.json ├── CWE134_54-CWE134_Uncontrolled_Format_String__char_environment_fprintf │ └── 1.json ├── CWE134_54-CWE134_Uncontrolled_Format_String__char_environment_printf │ └── 1.json ├── CWE134_54-CWE134_Uncontrolled_Format_String__char_environment_snprintf │ └── 1.json ├── CWE134_54-CWE134_Uncontrolled_Format_String__char_environment_vfprintf │ └── 1.json ├── CWE134_54-CWE134_Uncontrolled_Format_String__char_environment_vprintf │ └── 1.json ├── CWE134_54-CWE134_Uncontrolled_Format_String__char_file_fprintf │ └── 1.json ├── CWE134_54-CWE134_Uncontrolled_Format_String__char_file_printf │ └── 1.json ├── CWE134_54-CWE134_Uncontrolled_Format_String__char_file_snprintf │ └── 1.json ├── CWE134_54-CWE134_Uncontrolled_Format_String__char_file_vfprintf │ └── 1.json ├── CWE134_54-CWE134_Uncontrolled_Format_String__char_file_vprintf │ └── 1.json ├── CWE134_54-CWE134_Uncontrolled_Format_String__char_listen_socket_fprintf │ └── 1.json ├── CWE134_54-CWE134_Uncontrolled_Format_String__char_listen_socket_printf │ └── 1.json ├── CWE134_54-CWE134_Uncontrolled_Format_String__char_listen_socket_snprintf │ └── 1.json ├── CWE134_54-CWE134_Uncontrolled_Format_String__char_listen_socket_vfprintf │ └── 1.json ├── CWE134_54-CWE134_Uncontrolled_Format_String__char_listen_socket_vprintf │ └── 1.json ├── CWE134_61-CWE134_Uncontrolled_Format_String__char_connect_socket_fprintf │ └── 1.json ├── CWE134_61-CWE134_Uncontrolled_Format_String__char_connect_socket_printf │ └── 1.json ├── CWE134_61-CWE134_Uncontrolled_Format_String__char_connect_socket_snprintf │ └── 1.json ├── CWE134_61-CWE134_Uncontrolled_Format_String__char_connect_socket_vfprintf │ └── 1.json ├── CWE134_61-CWE134_Uncontrolled_Format_String__char_connect_socket_vprintf │ └── 1.json ├── CWE134_61-CWE134_Uncontrolled_Format_String__char_console_fprintf │ └── 1.json ├── CWE134_61-CWE134_Uncontrolled_Format_String__char_console_printf │ └── 1.json ├── CWE134_61-CWE134_Uncontrolled_Format_String__char_console_snprintf │ └── 1.json ├── CWE134_61-CWE134_Uncontrolled_Format_String__char_console_vfprintf │ └── 1.json ├── CWE134_61-CWE134_Uncontrolled_Format_String__char_console_vprintf │ └── 1.json ├── CWE134_61-CWE134_Uncontrolled_Format_String__char_environment_fprintf │ └── 1.json ├── CWE134_61-CWE134_Uncontrolled_Format_String__char_environment_printf │ └── 1.json ├── CWE134_61-CWE134_Uncontrolled_Format_String__char_environment_snprintf │ └── 1.json ├── CWE134_61-CWE134_Uncontrolled_Format_String__char_environment_vfprintf │ └── 1.json ├── CWE134_61-CWE134_Uncontrolled_Format_String__char_environment_vprintf │ └── 1.json ├── CWE134_61-CWE134_Uncontrolled_Format_String__char_file_fprintf │ └── 1.json ├── CWE134_61-CWE134_Uncontrolled_Format_String__char_file_printf │ └── 1.json ├── CWE134_61-CWE134_Uncontrolled_Format_String__char_file_snprintf │ └── 1.json ├── CWE134_61-CWE134_Uncontrolled_Format_String__char_file_vfprintf │ └── 1.json ├── CWE134_61-CWE134_Uncontrolled_Format_String__char_file_vprintf │ └── 1.json ├── CWE134_61-CWE134_Uncontrolled_Format_String__char_listen_socket_fprintf │ └── 1.json ├── CWE134_61-CWE134_Uncontrolled_Format_String__char_listen_socket_printf │ └── 1.json ├── CWE134_61-CWE134_Uncontrolled_Format_String__char_listen_socket_snprintf │ └── 1.json ├── CWE134_61-CWE134_Uncontrolled_Format_String__char_listen_socket_vfprintf │ └── 1.json ├── CWE134_61-CWE134_Uncontrolled_Format_String__char_listen_socket_vprintf │ └── 1.json ├── CWE134_63-CWE134_Uncontrolled_Format_String__char_connect_socket_fprintf │ └── 1.json ├── CWE134_63-CWE134_Uncontrolled_Format_String__char_connect_socket_printf │ └── 1.json ├── CWE134_63-CWE134_Uncontrolled_Format_String__char_connect_socket_snprintf │ └── 1.json ├── CWE134_63-CWE134_Uncontrolled_Format_String__char_connect_socket_vfprintf │ └── 1.json ├── CWE134_63-CWE134_Uncontrolled_Format_String__char_connect_socket_vprintf │ └── 1.json ├── CWE134_63-CWE134_Uncontrolled_Format_String__char_console_fprintf │ └── 1.json ├── CWE134_63-CWE134_Uncontrolled_Format_String__char_console_printf │ └── 1.json ├── CWE134_63-CWE134_Uncontrolled_Format_String__char_console_snprintf │ └── 1.json ├── CWE134_63-CWE134_Uncontrolled_Format_String__char_console_vfprintf │ └── 1.json ├── CWE134_63-CWE134_Uncontrolled_Format_String__char_console_vprintf │ └── 1.json ├── CWE134_63-CWE134_Uncontrolled_Format_String__char_environment_fprintf │ └── 1.json ├── CWE134_63-CWE134_Uncontrolled_Format_String__char_environment_printf │ └── 1.json ├── CWE134_63-CWE134_Uncontrolled_Format_String__char_environment_snprintf │ └── 1.json ├── CWE134_63-CWE134_Uncontrolled_Format_String__char_environment_vfprintf │ └── 1.json ├── CWE134_63-CWE134_Uncontrolled_Format_String__char_environment_vprintf │ └── 1.json ├── CWE134_63-CWE134_Uncontrolled_Format_String__char_file_fprintf │ └── 1.json ├── CWE134_63-CWE134_Uncontrolled_Format_String__char_file_printf │ └── 1.json ├── CWE134_63-CWE134_Uncontrolled_Format_String__char_file_snprintf │ └── 1.json ├── CWE134_63-CWE134_Uncontrolled_Format_String__char_file_vfprintf │ └── 1.json ├── CWE134_63-CWE134_Uncontrolled_Format_String__char_file_vprintf │ └── 1.json ├── CWE134_63-CWE134_Uncontrolled_Format_String__char_listen_socket_fprintf │ └── 1.json ├── CWE134_63-CWE134_Uncontrolled_Format_String__char_listen_socket_printf │ └── 1.json ├── CWE134_63-CWE134_Uncontrolled_Format_String__char_listen_socket_snprintf │ └── 1.json ├── CWE134_63-CWE134_Uncontrolled_Format_String__char_listen_socket_vfprintf │ └── 1.json ├── CWE134_63-CWE134_Uncontrolled_Format_String__char_listen_socket_vprintf │ └── 1.json ├── CWE134_64-CWE134_Uncontrolled_Format_String__char_connect_socket_fprintf │ └── 1.json ├── CWE134_64-CWE134_Uncontrolled_Format_String__char_connect_socket_printf │ └── 1.json ├── CWE134_64-CWE134_Uncontrolled_Format_String__char_connect_socket_snprintf │ └── 1.json ├── CWE134_64-CWE134_Uncontrolled_Format_String__char_connect_socket_vfprintf │ └── 1.json ├── CWE134_64-CWE134_Uncontrolled_Format_String__char_connect_socket_vprintf │ └── 1.json ├── CWE134_64-CWE134_Uncontrolled_Format_String__char_console_fprintf │ └── 1.json ├── CWE134_64-CWE134_Uncontrolled_Format_String__char_console_printf │ └── 1.json ├── CWE134_64-CWE134_Uncontrolled_Format_String__char_console_snprintf │ └── 1.json ├── CWE134_64-CWE134_Uncontrolled_Format_String__char_console_vfprintf │ └── 1.json ├── CWE134_64-CWE134_Uncontrolled_Format_String__char_console_vprintf │ └── 1.json ├── CWE134_64-CWE134_Uncontrolled_Format_String__char_environment_fprintf │ └── 1.json ├── CWE134_64-CWE134_Uncontrolled_Format_String__char_environment_printf │ └── 1.json ├── CWE134_64-CWE134_Uncontrolled_Format_String__char_environment_snprintf │ └── 1.json ├── CWE134_64-CWE134_Uncontrolled_Format_String__char_environment_vfprintf │ └── 1.json ├── CWE134_64-CWE134_Uncontrolled_Format_String__char_environment_vprintf │ └── 1.json ├── CWE134_64-CWE134_Uncontrolled_Format_String__char_file_fprintf │ └── 1.json ├── CWE134_64-CWE134_Uncontrolled_Format_String__char_file_printf │ └── 1.json ├── CWE134_64-CWE134_Uncontrolled_Format_String__char_file_snprintf │ └── 1.json ├── CWE134_64-CWE134_Uncontrolled_Format_String__char_file_vfprintf │ └── 1.json ├── CWE134_64-CWE134_Uncontrolled_Format_String__char_file_vprintf │ └── 1.json ├── CWE134_64-CWE134_Uncontrolled_Format_String__char_listen_socket_fprintf │ └── 1.json ├── CWE134_64-CWE134_Uncontrolled_Format_String__char_listen_socket_printf │ └── 1.json ├── CWE134_64-CWE134_Uncontrolled_Format_String__char_listen_socket_snprintf │ └── 1.json ├── CWE134_64-CWE134_Uncontrolled_Format_String__char_listen_socket_vfprintf │ └── 1.json ├── CWE134_64-CWE134_Uncontrolled_Format_String__char_listen_socket_vprintf │ └── 1.json ├── CWE134_65-CWE134_Uncontrolled_Format_String__char_connect_socket_fprintf │ └── 1.json ├── CWE134_65-CWE134_Uncontrolled_Format_String__char_connect_socket_printf │ └── 1.json ├── CWE134_65-CWE134_Uncontrolled_Format_String__char_connect_socket_snprintf │ └── 1.json ├── CWE134_65-CWE134_Uncontrolled_Format_String__char_console_fprintf │ └── 1.json ├── CWE134_65-CWE134_Uncontrolled_Format_String__char_console_printf │ └── 1.json ├── CWE134_65-CWE134_Uncontrolled_Format_String__char_console_snprintf │ └── 1.json ├── CWE134_65-CWE134_Uncontrolled_Format_String__char_environment_fprintf │ └── 1.json ├── CWE134_65-CWE134_Uncontrolled_Format_String__char_environment_printf │ └── 1.json ├── CWE134_65-CWE134_Uncontrolled_Format_String__char_environment_snprintf │ └── 1.json ├── CWE134_65-CWE134_Uncontrolled_Format_String__char_file_fprintf │ └── 1.json ├── CWE134_65-CWE134_Uncontrolled_Format_String__char_file_printf │ └── 1.json ├── CWE134_65-CWE134_Uncontrolled_Format_String__char_file_snprintf │ └── 1.json ├── CWE134_65-CWE134_Uncontrolled_Format_String__char_listen_socket_fprintf │ └── 1.json ├── CWE134_65-CWE134_Uncontrolled_Format_String__char_listen_socket_printf │ └── 1.json ├── CWE134_65-CWE134_Uncontrolled_Format_String__char_listen_socket_snprintf │ └── 1.json ├── CWE134_66-CWE134_Uncontrolled_Format_String__char_connect_socket_fprintf │ └── 1.json ├── CWE134_66-CWE134_Uncontrolled_Format_String__char_connect_socket_printf │ └── 1.json ├── CWE134_66-CWE134_Uncontrolled_Format_String__char_connect_socket_snprintf │ └── 1.json ├── CWE134_66-CWE134_Uncontrolled_Format_String__char_connect_socket_vfprintf │ └── 1.json ├── CWE134_66-CWE134_Uncontrolled_Format_String__char_connect_socket_vprintf │ └── 1.json ├── CWE134_66-CWE134_Uncontrolled_Format_String__char_console_fprintf │ └── 1.json ├── CWE134_66-CWE134_Uncontrolled_Format_String__char_console_printf │ └── 1.json ├── CWE134_66-CWE134_Uncontrolled_Format_String__char_console_snprintf │ └── 1.json ├── CWE134_66-CWE134_Uncontrolled_Format_String__char_console_vfprintf │ └── 1.json ├── CWE134_66-CWE134_Uncontrolled_Format_String__char_console_vprintf │ └── 1.json ├── CWE134_66-CWE134_Uncontrolled_Format_String__char_environment_fprintf │ └── 1.json ├── CWE134_66-CWE134_Uncontrolled_Format_String__char_environment_printf │ └── 1.json ├── CWE134_66-CWE134_Uncontrolled_Format_String__char_environment_snprintf │ └── 1.json ├── CWE134_66-CWE134_Uncontrolled_Format_String__char_environment_vfprintf │ └── 1.json ├── CWE134_66-CWE134_Uncontrolled_Format_String__char_environment_vprintf │ └── 1.json ├── CWE134_66-CWE134_Uncontrolled_Format_String__char_file_fprintf │ └── 1.json ├── CWE134_66-CWE134_Uncontrolled_Format_String__char_file_printf │ └── 1.json ├── CWE134_66-CWE134_Uncontrolled_Format_String__char_file_snprintf │ └── 1.json ├── CWE134_66-CWE134_Uncontrolled_Format_String__char_file_vfprintf │ └── 1.json ├── CWE134_66-CWE134_Uncontrolled_Format_String__char_file_vprintf │ └── 1.json ├── CWE134_66-CWE134_Uncontrolled_Format_String__char_listen_socket_fprintf │ └── 1.json ├── CWE134_66-CWE134_Uncontrolled_Format_String__char_listen_socket_printf │ └── 1.json ├── CWE134_66-CWE134_Uncontrolled_Format_String__char_listen_socket_snprintf │ └── 1.json ├── CWE134_66-CWE134_Uncontrolled_Format_String__char_listen_socket_vfprintf │ └── 1.json ├── CWE134_66-CWE134_Uncontrolled_Format_String__char_listen_socket_vprintf │ └── 1.json ├── CWE190_01-CWE190_Integer_Overflow__char_fscanf_add │ └── 1.json ├── CWE190_01-CWE190_Integer_Overflow__char_fscanf_multiply │ └── 1.json ├── CWE190_01-CWE190_Integer_Overflow__char_fscanf_postinc │ └── 1.json ├── CWE190_01-CWE190_Integer_Overflow__char_fscanf_preinc │ └── 1.json ├── CWE190_01-CWE190_Integer_Overflow__char_fscanf_square │ └── 1.json ├── CWE190_01-CWE190_Integer_Overflow__int64_t_fscanf_add │ └── 1.json ├── CWE190_01-CWE190_Integer_Overflow__int64_t_fscanf_multiply │ └── 1.json ├── CWE190_01-CWE190_Integer_Overflow__int64_t_fscanf_postinc │ └── 1.json ├── CWE190_01-CWE190_Integer_Overflow__int64_t_fscanf_preinc │ └── 1.json ├── CWE190_01-CWE190_Integer_Overflow__int64_t_fscanf_square │ └── 1.json ├── CWE190_01-CWE190_Integer_Overflow__int_connect_socket_add │ └── 1.json ├── CWE190_01-CWE190_Integer_Overflow__int_connect_socket_multiply │ └── 1.json ├── CWE190_01-CWE190_Integer_Overflow__int_connect_socket_postinc │ └── 1.json ├── CWE190_01-CWE190_Integer_Overflow__int_connect_socket_preinc │ └── 1.json ├── CWE190_01-CWE190_Integer_Overflow__int_connect_socket_square │ └── 1.json ├── CWE190_01-CWE190_Integer_Overflow__int_fgets_add │ └── 1.json ├── CWE190_01-CWE190_Integer_Overflow__int_fgets_multiply │ └── 1.json ├── CWE190_01-CWE190_Integer_Overflow__int_fgets_postinc │ └── 1.json ├── CWE190_01-CWE190_Integer_Overflow__int_fgets_preinc │ └── 1.json ├── CWE190_01-CWE190_Integer_Overflow__int_fgets_square │ └── 1.json ├── CWE190_01-CWE190_Integer_Overflow__int_fscanf_add │ └── 1.json ├── CWE190_01-CWE190_Integer_Overflow__int_fscanf_multiply │ └── 1.json ├── CWE190_01-CWE190_Integer_Overflow__int_fscanf_postinc │ └── 1.json ├── CWE190_01-CWE190_Integer_Overflow__int_fscanf_preinc │ └── 1.json ├── CWE190_01-CWE190_Integer_Overflow__int_fscanf_square │ └── 1.json ├── CWE190_01-CWE190_Integer_Overflow__int_listen_socket_add │ └── 1.json ├── CWE190_01-CWE190_Integer_Overflow__int_listen_socket_multiply │ └── 1.json ├── CWE190_01-CWE190_Integer_Overflow__int_listen_socket_postinc │ └── 1.json ├── CWE190_01-CWE190_Integer_Overflow__int_listen_socket_preinc │ └── 1.json ├── CWE190_01-CWE190_Integer_Overflow__int_listen_socket_square │ └── 1.json ├── CWE190_01-CWE190_Integer_Overflow__short_fscanf_add │ └── 1.json ├── CWE190_01-CWE190_Integer_Overflow__short_fscanf_multiply │ └── 1.json ├── CWE190_01-CWE190_Integer_Overflow__short_fscanf_postinc │ └── 1.json ├── CWE190_01-CWE190_Integer_Overflow__short_fscanf_preinc │ └── 1.json ├── CWE190_01-CWE190_Integer_Overflow__short_fscanf_square │ └── 1.json ├── CWE190_01-CWE190_Integer_Overflow__unsigned_int_fscanf_add │ └── 1.json ├── CWE190_01-CWE190_Integer_Overflow__unsigned_int_fscanf_multiply │ └── 1.json ├── CWE190_01-CWE190_Integer_Overflow__unsigned_int_fscanf_postinc │ └── 1.json ├── CWE190_01-CWE190_Integer_Overflow__unsigned_int_fscanf_preinc │ └── 1.json ├── CWE190_01-CWE190_Integer_Overflow__unsigned_int_fscanf_square │ └── 1.json ├── CWE190_02-CWE190_Integer_Overflow__char_fscanf_add │ └── 1.json ├── CWE190_02-CWE190_Integer_Overflow__char_fscanf_multiply │ └── 1.json ├── CWE190_02-CWE190_Integer_Overflow__char_fscanf_postinc │ └── 1.json ├── CWE190_02-CWE190_Integer_Overflow__char_fscanf_preinc │ └── 1.json ├── CWE190_02-CWE190_Integer_Overflow__char_fscanf_square │ └── 1.json ├── CWE190_02-CWE190_Integer_Overflow__int64_t_fscanf_add │ └── 1.json ├── CWE190_02-CWE190_Integer_Overflow__int64_t_fscanf_multiply │ └── 1.json ├── CWE190_02-CWE190_Integer_Overflow__int64_t_fscanf_postinc │ └── 1.json ├── CWE190_02-CWE190_Integer_Overflow__int64_t_fscanf_preinc │ └── 1.json ├── CWE190_02-CWE190_Integer_Overflow__int64_t_fscanf_square │ └── 1.json ├── CWE190_02-CWE190_Integer_Overflow__int_connect_socket_add │ └── 1.json ├── CWE190_02-CWE190_Integer_Overflow__int_connect_socket_multiply │ └── 1.json ├── CWE190_02-CWE190_Integer_Overflow__int_connect_socket_postinc │ └── 1.json ├── CWE190_02-CWE190_Integer_Overflow__int_connect_socket_preinc │ └── 1.json ├── CWE190_02-CWE190_Integer_Overflow__int_connect_socket_square │ └── 1.json ├── CWE190_02-CWE190_Integer_Overflow__int_fgets_add │ └── 1.json ├── CWE190_02-CWE190_Integer_Overflow__int_fgets_multiply │ └── 1.json ├── CWE190_02-CWE190_Integer_Overflow__int_fgets_postinc │ └── 1.json ├── CWE190_02-CWE190_Integer_Overflow__int_fgets_preinc │ └── 1.json ├── CWE190_02-CWE190_Integer_Overflow__int_fgets_square │ └── 1.json ├── CWE190_02-CWE190_Integer_Overflow__int_fscanf_add │ └── 1.json ├── CWE190_02-CWE190_Integer_Overflow__int_fscanf_multiply │ └── 1.json ├── CWE190_02-CWE190_Integer_Overflow__int_fscanf_postinc │ └── 1.json ├── CWE190_02-CWE190_Integer_Overflow__int_fscanf_preinc │ └── 1.json ├── CWE190_02-CWE190_Integer_Overflow__int_fscanf_square │ └── 1.json ├── CWE190_02-CWE190_Integer_Overflow__int_listen_socket_add │ └── 1.json ├── CWE190_02-CWE190_Integer_Overflow__int_listen_socket_multiply │ └── 1.json ├── CWE190_02-CWE190_Integer_Overflow__int_listen_socket_postinc │ └── 1.json ├── CWE190_02-CWE190_Integer_Overflow__int_listen_socket_preinc │ └── 1.json ├── CWE190_02-CWE190_Integer_Overflow__int_listen_socket_square │ └── 1.json ├── CWE190_02-CWE190_Integer_Overflow__short_fscanf_add │ └── 1.json ├── CWE190_02-CWE190_Integer_Overflow__short_fscanf_multiply │ └── 1.json ├── CWE190_02-CWE190_Integer_Overflow__short_fscanf_postinc │ └── 1.json ├── CWE190_02-CWE190_Integer_Overflow__short_fscanf_preinc │ └── 1.json ├── CWE190_02-CWE190_Integer_Overflow__short_fscanf_square │ └── 1.json ├── CWE190_02-CWE190_Integer_Overflow__unsigned_int_fscanf_add │ └── 1.json ├── CWE190_02-CWE190_Integer_Overflow__unsigned_int_fscanf_multiply │ └── 1.json ├── CWE190_02-CWE190_Integer_Overflow__unsigned_int_fscanf_postinc │ └── 1.json ├── CWE190_02-CWE190_Integer_Overflow__unsigned_int_fscanf_preinc │ └── 1.json ├── CWE190_02-CWE190_Integer_Overflow__unsigned_int_fscanf_square │ └── 1.json ├── CWE190_03-CWE190_Integer_Overflow__char_fscanf_add │ └── 1.json ├── CWE190_03-CWE190_Integer_Overflow__char_fscanf_multiply │ └── 1.json ├── CWE190_03-CWE190_Integer_Overflow__char_fscanf_postinc │ └── 1.json ├── CWE190_03-CWE190_Integer_Overflow__char_fscanf_preinc │ └── 1.json ├── CWE190_03-CWE190_Integer_Overflow__char_fscanf_square │ └── 1.json ├── CWE190_03-CWE190_Integer_Overflow__int64_t_fscanf_add │ └── 1.json ├── CWE190_03-CWE190_Integer_Overflow__int64_t_fscanf_multiply │ └── 1.json ├── CWE190_03-CWE190_Integer_Overflow__int64_t_fscanf_postinc │ └── 1.json ├── CWE190_03-CWE190_Integer_Overflow__int64_t_fscanf_preinc │ └── 1.json ├── CWE190_03-CWE190_Integer_Overflow__int64_t_fscanf_square │ └── 1.json ├── CWE190_03-CWE190_Integer_Overflow__int_connect_socket_add │ └── 1.json ├── CWE190_03-CWE190_Integer_Overflow__int_connect_socket_multiply │ └── 1.json ├── CWE190_03-CWE190_Integer_Overflow__int_connect_socket_postinc │ └── 1.json ├── CWE190_03-CWE190_Integer_Overflow__int_connect_socket_preinc │ └── 1.json ├── CWE190_03-CWE190_Integer_Overflow__int_connect_socket_square │ └── 1.json ├── CWE190_03-CWE190_Integer_Overflow__int_fgets_add │ └── 1.json ├── CWE190_03-CWE190_Integer_Overflow__int_fgets_multiply │ └── 1.json ├── CWE190_03-CWE190_Integer_Overflow__int_fgets_postinc │ └── 1.json ├── CWE190_03-CWE190_Integer_Overflow__int_fgets_preinc │ └── 1.json ├── CWE190_03-CWE190_Integer_Overflow__int_fgets_square │ └── 1.json ├── CWE190_03-CWE190_Integer_Overflow__int_fscanf_add │ └── 1.json ├── CWE190_03-CWE190_Integer_Overflow__int_fscanf_multiply │ └── 1.json ├── CWE190_03-CWE190_Integer_Overflow__int_fscanf_postinc │ └── 1.json ├── CWE190_03-CWE190_Integer_Overflow__int_fscanf_preinc │ └── 1.json ├── CWE190_03-CWE190_Integer_Overflow__int_fscanf_square │ └── 1.json ├── CWE190_03-CWE190_Integer_Overflow__int_listen_socket_add │ └── 1.json ├── CWE190_03-CWE190_Integer_Overflow__int_listen_socket_multiply │ └── 1.json ├── CWE190_03-CWE190_Integer_Overflow__int_listen_socket_postinc │ └── 1.json ├── CWE190_03-CWE190_Integer_Overflow__int_listen_socket_preinc │ └── 1.json ├── CWE190_03-CWE190_Integer_Overflow__int_listen_socket_square │ └── 1.json ├── CWE190_03-CWE190_Integer_Overflow__short_fscanf_add │ └── 1.json ├── CWE190_03-CWE190_Integer_Overflow__short_fscanf_multiply │ └── 1.json ├── CWE190_03-CWE190_Integer_Overflow__short_fscanf_postinc │ └── 1.json ├── CWE190_03-CWE190_Integer_Overflow__short_fscanf_preinc │ └── 1.json ├── CWE190_03-CWE190_Integer_Overflow__short_fscanf_square │ └── 1.json ├── CWE190_03-CWE190_Integer_Overflow__unsigned_int_fscanf_add │ └── 1.json ├── CWE190_03-CWE190_Integer_Overflow__unsigned_int_fscanf_multiply │ └── 1.json ├── CWE190_03-CWE190_Integer_Overflow__unsigned_int_fscanf_postinc │ └── 1.json ├── CWE190_03-CWE190_Integer_Overflow__unsigned_int_fscanf_preinc │ └── 1.json ├── CWE190_03-CWE190_Integer_Overflow__unsigned_int_fscanf_square │ └── 1.json ├── CWE190_04-CWE190_Integer_Overflow__char_fscanf_add │ └── 1.json ├── CWE190_04-CWE190_Integer_Overflow__char_fscanf_multiply │ └── 1.json ├── CWE190_04-CWE190_Integer_Overflow__char_fscanf_postinc │ └── 1.json ├── CWE190_04-CWE190_Integer_Overflow__char_fscanf_preinc │ └── 1.json ├── CWE190_04-CWE190_Integer_Overflow__char_fscanf_square │ └── 1.json ├── CWE190_04-CWE190_Integer_Overflow__int64_t_fscanf_add │ └── 1.json ├── CWE190_04-CWE190_Integer_Overflow__int64_t_fscanf_multiply │ └── 1.json ├── CWE190_04-CWE190_Integer_Overflow__int64_t_fscanf_postinc │ └── 1.json ├── CWE190_04-CWE190_Integer_Overflow__int64_t_fscanf_preinc │ └── 1.json ├── CWE190_04-CWE190_Integer_Overflow__int64_t_fscanf_square │ └── 1.json ├── CWE190_04-CWE190_Integer_Overflow__int_connect_socket_add │ └── 1.json ├── CWE190_04-CWE190_Integer_Overflow__int_connect_socket_multiply │ └── 1.json ├── CWE190_04-CWE190_Integer_Overflow__int_connect_socket_postinc │ └── 1.json ├── CWE190_04-CWE190_Integer_Overflow__int_connect_socket_preinc │ └── 1.json ├── CWE190_04-CWE190_Integer_Overflow__int_connect_socket_square │ └── 1.json ├── CWE190_04-CWE190_Integer_Overflow__int_fgets_add │ └── 1.json ├── CWE190_04-CWE190_Integer_Overflow__int_fgets_multiply │ └── 1.json ├── CWE190_04-CWE190_Integer_Overflow__int_fgets_postinc │ └── 1.json ├── CWE190_04-CWE190_Integer_Overflow__int_fgets_preinc │ └── 1.json ├── CWE190_04-CWE190_Integer_Overflow__int_fgets_square │ └── 1.json ├── CWE190_04-CWE190_Integer_Overflow__int_fscanf_add │ └── 1.json ├── CWE190_04-CWE190_Integer_Overflow__int_fscanf_multiply │ └── 1.json ├── CWE190_04-CWE190_Integer_Overflow__int_fscanf_postinc │ └── 1.json ├── CWE190_04-CWE190_Integer_Overflow__int_fscanf_preinc │ └── 1.json ├── CWE190_04-CWE190_Integer_Overflow__int_fscanf_square │ └── 1.json ├── CWE190_04-CWE190_Integer_Overflow__int_listen_socket_add │ └── 1.json ├── CWE190_04-CWE190_Integer_Overflow__int_listen_socket_multiply │ └── 1.json ├── CWE190_04-CWE190_Integer_Overflow__int_listen_socket_postinc │ └── 1.json ├── CWE190_04-CWE190_Integer_Overflow__int_listen_socket_preinc │ └── 1.json ├── CWE190_04-CWE190_Integer_Overflow__int_listen_socket_square │ └── 1.json ├── CWE190_04-CWE190_Integer_Overflow__short_fscanf_add │ └── 1.json ├── CWE190_04-CWE190_Integer_Overflow__short_fscanf_multiply │ └── 1.json ├── CWE190_04-CWE190_Integer_Overflow__short_fscanf_postinc │ └── 1.json ├── CWE190_04-CWE190_Integer_Overflow__short_fscanf_preinc │ └── 1.json ├── CWE190_04-CWE190_Integer_Overflow__short_fscanf_square │ └── 1.json ├── CWE190_04-CWE190_Integer_Overflow__unsigned_int_fscanf_add │ └── 1.json ├── CWE190_04-CWE190_Integer_Overflow__unsigned_int_fscanf_multiply │ └── 1.json ├── CWE190_04-CWE190_Integer_Overflow__unsigned_int_fscanf_postinc │ └── 1.json ├── CWE190_04-CWE190_Integer_Overflow__unsigned_int_fscanf_preinc │ └── 1.json ├── CWE190_04-CWE190_Integer_Overflow__unsigned_int_fscanf_square │ └── 1.json ├── CWE190_05-CWE190_Integer_Overflow__char_fscanf_add │ └── 1.json ├── CWE190_05-CWE190_Integer_Overflow__char_fscanf_multiply │ └── 1.json ├── CWE190_05-CWE190_Integer_Overflow__char_fscanf_postinc │ └── 1.json ├── CWE190_05-CWE190_Integer_Overflow__char_fscanf_preinc │ └── 1.json ├── CWE190_05-CWE190_Integer_Overflow__char_fscanf_square │ └── 1.json ├── CWE190_05-CWE190_Integer_Overflow__int64_t_fscanf_add │ └── 1.json ├── CWE190_05-CWE190_Integer_Overflow__int64_t_fscanf_multiply │ └── 1.json ├── CWE190_05-CWE190_Integer_Overflow__int64_t_fscanf_postinc │ └── 1.json ├── CWE190_05-CWE190_Integer_Overflow__int64_t_fscanf_preinc │ └── 1.json ├── CWE190_05-CWE190_Integer_Overflow__int64_t_fscanf_square │ └── 1.json ├── CWE190_05-CWE190_Integer_Overflow__int_connect_socket_add │ └── 1.json ├── CWE190_05-CWE190_Integer_Overflow__int_connect_socket_multiply │ └── 1.json ├── CWE190_05-CWE190_Integer_Overflow__int_connect_socket_postinc │ └── 1.json ├── CWE190_05-CWE190_Integer_Overflow__int_connect_socket_preinc │ └── 1.json ├── CWE190_05-CWE190_Integer_Overflow__int_connect_socket_square │ └── 1.json ├── CWE190_05-CWE190_Integer_Overflow__int_fgets_add │ └── 1.json ├── CWE190_05-CWE190_Integer_Overflow__int_fgets_multiply │ └── 1.json ├── CWE190_05-CWE190_Integer_Overflow__int_fgets_postinc │ └── 1.json ├── CWE190_05-CWE190_Integer_Overflow__int_fgets_preinc │ └── 1.json ├── CWE190_05-CWE190_Integer_Overflow__int_fgets_square │ └── 1.json ├── CWE190_05-CWE190_Integer_Overflow__int_fscanf_add │ └── 1.json ├── CWE190_05-CWE190_Integer_Overflow__int_fscanf_multiply │ └── 1.json ├── CWE190_05-CWE190_Integer_Overflow__int_fscanf_postinc │ └── 1.json ├── CWE190_05-CWE190_Integer_Overflow__int_fscanf_preinc │ └── 1.json ├── CWE190_05-CWE190_Integer_Overflow__int_fscanf_square │ └── 1.json ├── CWE190_05-CWE190_Integer_Overflow__int_listen_socket_add │ └── 1.json ├── CWE190_05-CWE190_Integer_Overflow__int_listen_socket_multiply │ └── 1.json ├── CWE190_05-CWE190_Integer_Overflow__int_listen_socket_postinc │ └── 1.json ├── CWE190_05-CWE190_Integer_Overflow__int_listen_socket_preinc │ └── 1.json ├── CWE190_05-CWE190_Integer_Overflow__int_listen_socket_square │ └── 1.json ├── CWE190_05-CWE190_Integer_Overflow__short_fscanf_add │ └── 1.json ├── CWE190_05-CWE190_Integer_Overflow__short_fscanf_multiply │ └── 1.json ├── CWE190_05-CWE190_Integer_Overflow__short_fscanf_postinc │ └── 1.json ├── CWE190_05-CWE190_Integer_Overflow__short_fscanf_preinc │ └── 1.json ├── CWE190_05-CWE190_Integer_Overflow__short_fscanf_square │ └── 1.json ├── CWE190_05-CWE190_Integer_Overflow__unsigned_int_fscanf_add │ └── 1.json ├── CWE190_05-CWE190_Integer_Overflow__unsigned_int_fscanf_multiply │ └── 1.json ├── CWE190_05-CWE190_Integer_Overflow__unsigned_int_fscanf_postinc │ └── 1.json ├── CWE190_05-CWE190_Integer_Overflow__unsigned_int_fscanf_preinc │ └── 1.json ├── CWE190_05-CWE190_Integer_Overflow__unsigned_int_fscanf_square │ └── 1.json ├── CWE190_06-CWE190_Integer_Overflow__char_fscanf_add │ └── 1.json ├── CWE190_06-CWE190_Integer_Overflow__char_fscanf_multiply │ └── 1.json ├── CWE190_06-CWE190_Integer_Overflow__char_fscanf_postinc │ └── 1.json ├── CWE190_06-CWE190_Integer_Overflow__char_fscanf_preinc │ └── 1.json ├── CWE190_06-CWE190_Integer_Overflow__char_fscanf_square │ └── 1.json ├── CWE190_06-CWE190_Integer_Overflow__int64_t_fscanf_add │ └── 1.json ├── CWE190_06-CWE190_Integer_Overflow__int64_t_fscanf_multiply │ └── 1.json ├── CWE190_06-CWE190_Integer_Overflow__int64_t_fscanf_postinc │ └── 1.json ├── CWE190_06-CWE190_Integer_Overflow__int64_t_fscanf_preinc │ └── 1.json ├── CWE190_06-CWE190_Integer_Overflow__int64_t_fscanf_square │ └── 1.json ├── CWE190_06-CWE190_Integer_Overflow__int_connect_socket_add │ └── 1.json ├── CWE190_06-CWE190_Integer_Overflow__int_connect_socket_multiply │ └── 1.json ├── CWE190_06-CWE190_Integer_Overflow__int_connect_socket_postinc │ └── 1.json ├── CWE190_06-CWE190_Integer_Overflow__int_connect_socket_preinc │ └── 1.json ├── CWE190_06-CWE190_Integer_Overflow__int_connect_socket_square │ └── 1.json ├── CWE190_06-CWE190_Integer_Overflow__int_fgets_add │ └── 1.json ├── CWE190_06-CWE190_Integer_Overflow__int_fgets_multiply │ └── 1.json ├── CWE190_06-CWE190_Integer_Overflow__int_fgets_postinc │ └── 1.json ├── CWE190_06-CWE190_Integer_Overflow__int_fgets_preinc │ └── 1.json ├── CWE190_06-CWE190_Integer_Overflow__int_fgets_square │ └── 1.json ├── CWE190_06-CWE190_Integer_Overflow__int_fscanf_add │ └── 1.json ├── CWE190_06-CWE190_Integer_Overflow__int_fscanf_multiply │ └── 1.json ├── CWE190_06-CWE190_Integer_Overflow__int_fscanf_postinc │ └── 1.json ├── CWE190_06-CWE190_Integer_Overflow__int_fscanf_preinc │ └── 1.json ├── CWE190_06-CWE190_Integer_Overflow__int_fscanf_square │ └── 1.json ├── CWE190_06-CWE190_Integer_Overflow__int_listen_socket_add │ └── 1.json ├── CWE190_06-CWE190_Integer_Overflow__int_listen_socket_multiply │ └── 1.json ├── CWE190_06-CWE190_Integer_Overflow__int_listen_socket_postinc │ └── 1.json ├── CWE190_06-CWE190_Integer_Overflow__int_listen_socket_preinc │ └── 1.json ├── CWE190_06-CWE190_Integer_Overflow__int_listen_socket_square │ └── 1.json ├── CWE190_06-CWE190_Integer_Overflow__short_fscanf_add │ └── 1.json ├── CWE190_06-CWE190_Integer_Overflow__short_fscanf_multiply │ └── 1.json ├── CWE190_06-CWE190_Integer_Overflow__short_fscanf_postinc │ └── 1.json ├── CWE190_06-CWE190_Integer_Overflow__short_fscanf_preinc │ └── 1.json ├── CWE190_06-CWE190_Integer_Overflow__short_fscanf_square │ └── 1.json ├── CWE190_06-CWE190_Integer_Overflow__unsigned_int_fscanf_add │ └── 1.json ├── CWE190_06-CWE190_Integer_Overflow__unsigned_int_fscanf_multiply │ └── 1.json ├── CWE190_06-CWE190_Integer_Overflow__unsigned_int_fscanf_postinc │ └── 1.json ├── CWE190_06-CWE190_Integer_Overflow__unsigned_int_fscanf_preinc │ └── 1.json ├── CWE190_06-CWE190_Integer_Overflow__unsigned_int_fscanf_square │ └── 1.json ├── CWE190_07-CWE190_Integer_Overflow__char_fscanf_add │ └── 1.json ├── CWE190_07-CWE190_Integer_Overflow__char_fscanf_multiply │ └── 1.json ├── CWE190_07-CWE190_Integer_Overflow__char_fscanf_postinc │ └── 1.json ├── CWE190_07-CWE190_Integer_Overflow__char_fscanf_preinc │ └── 1.json ├── CWE190_07-CWE190_Integer_Overflow__char_fscanf_square │ └── 1.json ├── CWE190_07-CWE190_Integer_Overflow__int64_t_fscanf_add │ └── 1.json ├── CWE190_07-CWE190_Integer_Overflow__int64_t_fscanf_multiply │ └── 1.json ├── CWE190_07-CWE190_Integer_Overflow__int64_t_fscanf_postinc │ └── 1.json ├── CWE190_07-CWE190_Integer_Overflow__int64_t_fscanf_preinc │ └── 1.json ├── CWE190_07-CWE190_Integer_Overflow__int64_t_fscanf_square │ └── 1.json ├── CWE190_07-CWE190_Integer_Overflow__int_connect_socket_add │ └── 1.json ├── CWE190_07-CWE190_Integer_Overflow__int_connect_socket_multiply │ └── 1.json ├── CWE190_07-CWE190_Integer_Overflow__int_connect_socket_postinc │ └── 1.json ├── CWE190_07-CWE190_Integer_Overflow__int_connect_socket_preinc │ └── 1.json ├── CWE190_07-CWE190_Integer_Overflow__int_connect_socket_square │ └── 1.json ├── CWE190_07-CWE190_Integer_Overflow__int_fgets_add │ └── 1.json ├── CWE190_07-CWE190_Integer_Overflow__int_fgets_multiply │ └── 1.json ├── CWE190_07-CWE190_Integer_Overflow__int_fgets_postinc │ └── 1.json ├── CWE190_07-CWE190_Integer_Overflow__int_fgets_preinc │ └── 1.json ├── CWE190_07-CWE190_Integer_Overflow__int_fgets_square │ └── 1.json ├── CWE190_07-CWE190_Integer_Overflow__int_fscanf_add │ └── 1.json ├── CWE190_07-CWE190_Integer_Overflow__int_fscanf_multiply │ └── 1.json ├── CWE190_07-CWE190_Integer_Overflow__int_fscanf_postinc │ └── 1.json ├── CWE190_07-CWE190_Integer_Overflow__int_fscanf_preinc │ └── 1.json ├── CWE190_07-CWE190_Integer_Overflow__int_fscanf_square │ └── 1.json ├── CWE190_07-CWE190_Integer_Overflow__int_listen_socket_add │ └── 1.json ├── CWE190_07-CWE190_Integer_Overflow__int_listen_socket_multiply │ └── 1.json ├── CWE190_07-CWE190_Integer_Overflow__int_listen_socket_postinc │ └── 1.json ├── CWE190_07-CWE190_Integer_Overflow__int_listen_socket_preinc │ └── 1.json ├── CWE190_07-CWE190_Integer_Overflow__int_listen_socket_square │ └── 1.json ├── CWE190_07-CWE190_Integer_Overflow__short_fscanf_add │ └── 1.json ├── CWE190_07-CWE190_Integer_Overflow__short_fscanf_multiply │ └── 1.json ├── CWE190_07-CWE190_Integer_Overflow__short_fscanf_postinc │ └── 1.json ├── CWE190_07-CWE190_Integer_Overflow__short_fscanf_preinc │ └── 1.json ├── CWE190_07-CWE190_Integer_Overflow__short_fscanf_square │ └── 1.json ├── CWE190_07-CWE190_Integer_Overflow__unsigned_int_fscanf_add │ └── 1.json ├── CWE190_07-CWE190_Integer_Overflow__unsigned_int_fscanf_multiply │ └── 1.json ├── CWE190_07-CWE190_Integer_Overflow__unsigned_int_fscanf_postinc │ └── 1.json ├── CWE190_07-CWE190_Integer_Overflow__unsigned_int_fscanf_preinc │ └── 1.json ├── CWE190_07-CWE190_Integer_Overflow__unsigned_int_fscanf_square │ └── 1.json ├── CWE190_08-CWE190_Integer_Overflow__char_fscanf_add │ └── 1.json ├── CWE190_08-CWE190_Integer_Overflow__char_fscanf_multiply │ └── 1.json ├── CWE190_08-CWE190_Integer_Overflow__char_fscanf_postinc │ └── 1.json ├── CWE190_08-CWE190_Integer_Overflow__char_fscanf_preinc │ └── 1.json ├── CWE190_08-CWE190_Integer_Overflow__char_fscanf_square │ └── 1.json ├── CWE190_08-CWE190_Integer_Overflow__int64_t_fscanf_add │ └── 1.json ├── CWE190_08-CWE190_Integer_Overflow__int64_t_fscanf_multiply │ └── 1.json ├── CWE190_08-CWE190_Integer_Overflow__int64_t_fscanf_postinc │ └── 1.json ├── CWE190_08-CWE190_Integer_Overflow__int64_t_fscanf_preinc │ └── 1.json ├── CWE190_08-CWE190_Integer_Overflow__int64_t_fscanf_square │ └── 1.json ├── CWE190_08-CWE190_Integer_Overflow__int_connect_socket_add │ └── 1.json ├── CWE190_08-CWE190_Integer_Overflow__int_connect_socket_multiply │ └── 1.json ├── CWE190_08-CWE190_Integer_Overflow__int_connect_socket_postinc │ └── 1.json ├── CWE190_08-CWE190_Integer_Overflow__int_connect_socket_preinc │ └── 1.json ├── CWE190_08-CWE190_Integer_Overflow__int_connect_socket_square │ └── 1.json ├── CWE190_08-CWE190_Integer_Overflow__int_fgets_add │ └── 1.json ├── CWE190_08-CWE190_Integer_Overflow__int_fgets_multiply │ └── 1.json ├── CWE190_08-CWE190_Integer_Overflow__int_fgets_postinc │ └── 1.json ├── CWE190_08-CWE190_Integer_Overflow__int_fgets_preinc │ └── 1.json ├── CWE190_08-CWE190_Integer_Overflow__int_fgets_square │ └── 1.json ├── CWE190_08-CWE190_Integer_Overflow__int_fscanf_add │ └── 1.json ├── CWE190_08-CWE190_Integer_Overflow__int_fscanf_multiply │ └── 1.json ├── CWE190_08-CWE190_Integer_Overflow__int_fscanf_postinc │ └── 1.json ├── CWE190_08-CWE190_Integer_Overflow__int_fscanf_preinc │ └── 1.json ├── CWE190_08-CWE190_Integer_Overflow__int_fscanf_square │ └── 1.json ├── CWE190_08-CWE190_Integer_Overflow__int_listen_socket_add │ └── 1.json ├── CWE190_08-CWE190_Integer_Overflow__int_listen_socket_multiply │ └── 1.json ├── CWE190_08-CWE190_Integer_Overflow__int_listen_socket_postinc │ └── 1.json ├── CWE190_08-CWE190_Integer_Overflow__int_listen_socket_preinc │ └── 1.json ├── CWE190_08-CWE190_Integer_Overflow__int_listen_socket_square │ └── 1.json ├── CWE190_08-CWE190_Integer_Overflow__short_fscanf_add │ └── 1.json ├── CWE190_08-CWE190_Integer_Overflow__short_fscanf_multiply │ └── 1.json ├── CWE190_08-CWE190_Integer_Overflow__short_fscanf_postinc │ └── 1.json ├── CWE190_08-CWE190_Integer_Overflow__short_fscanf_preinc │ └── 1.json ├── CWE190_08-CWE190_Integer_Overflow__short_fscanf_square │ └── 1.json ├── CWE190_08-CWE190_Integer_Overflow__unsigned_int_fscanf_add │ └── 1.json ├── CWE190_08-CWE190_Integer_Overflow__unsigned_int_fscanf_multiply │ └── 1.json ├── CWE190_08-CWE190_Integer_Overflow__unsigned_int_fscanf_postinc │ └── 1.json ├── CWE190_08-CWE190_Integer_Overflow__unsigned_int_fscanf_preinc │ └── 1.json ├── CWE190_08-CWE190_Integer_Overflow__unsigned_int_fscanf_square │ └── 1.json ├── CWE190_09-CWE190_Integer_Overflow__char_fscanf_add │ └── 1.json ├── CWE190_09-CWE190_Integer_Overflow__char_fscanf_multiply │ └── 1.json ├── CWE190_09-CWE190_Integer_Overflow__char_fscanf_postinc │ └── 1.json ├── CWE190_09-CWE190_Integer_Overflow__char_fscanf_preinc │ └── 1.json ├── CWE190_09-CWE190_Integer_Overflow__char_fscanf_square │ └── 1.json ├── CWE190_09-CWE190_Integer_Overflow__int64_t_fscanf_add │ └── 1.json ├── CWE190_09-CWE190_Integer_Overflow__int64_t_fscanf_multiply │ └── 1.json ├── CWE190_09-CWE190_Integer_Overflow__int64_t_fscanf_postinc │ └── 1.json ├── CWE190_09-CWE190_Integer_Overflow__int64_t_fscanf_preinc │ └── 1.json ├── CWE190_09-CWE190_Integer_Overflow__int64_t_fscanf_square │ └── 1.json ├── CWE190_09-CWE190_Integer_Overflow__int_connect_socket_add │ └── 1.json ├── CWE190_09-CWE190_Integer_Overflow__int_connect_socket_multiply │ └── 1.json ├── CWE190_09-CWE190_Integer_Overflow__int_connect_socket_postinc │ └── 1.json ├── CWE190_09-CWE190_Integer_Overflow__int_connect_socket_preinc │ └── 1.json ├── CWE190_09-CWE190_Integer_Overflow__int_connect_socket_square │ └── 1.json ├── CWE190_09-CWE190_Integer_Overflow__int_fgets_add │ └── 1.json ├── CWE190_09-CWE190_Integer_Overflow__int_fgets_multiply │ └── 1.json ├── CWE190_09-CWE190_Integer_Overflow__int_fgets_postinc │ └── 1.json ├── CWE190_09-CWE190_Integer_Overflow__int_fgets_preinc │ └── 1.json ├── CWE190_09-CWE190_Integer_Overflow__int_fgets_square │ └── 1.json ├── CWE190_09-CWE190_Integer_Overflow__int_fscanf_add │ └── 1.json ├── CWE190_09-CWE190_Integer_Overflow__int_fscanf_multiply │ └── 1.json ├── CWE190_09-CWE190_Integer_Overflow__int_fscanf_postinc │ └── 1.json ├── CWE190_09-CWE190_Integer_Overflow__int_fscanf_preinc │ └── 1.json ├── CWE190_09-CWE190_Integer_Overflow__int_fscanf_square │ └── 1.json ├── CWE190_09-CWE190_Integer_Overflow__int_listen_socket_add │ └── 1.json ├── CWE190_09-CWE190_Integer_Overflow__int_listen_socket_multiply │ └── 1.json ├── CWE190_09-CWE190_Integer_Overflow__int_listen_socket_postinc │ └── 1.json ├── CWE190_09-CWE190_Integer_Overflow__int_listen_socket_preinc │ └── 1.json ├── CWE190_09-CWE190_Integer_Overflow__int_listen_socket_square │ └── 1.json ├── CWE190_09-CWE190_Integer_Overflow__short_fscanf_add │ └── 1.json ├── CWE190_09-CWE190_Integer_Overflow__short_fscanf_multiply │ └── 1.json ├── CWE190_09-CWE190_Integer_Overflow__short_fscanf_postinc │ └── 1.json ├── CWE190_09-CWE190_Integer_Overflow__short_fscanf_preinc │ └── 1.json ├── CWE190_09-CWE190_Integer_Overflow__short_fscanf_square │ └── 1.json ├── CWE190_09-CWE190_Integer_Overflow__unsigned_int_fscanf_add │ └── 1.json ├── CWE190_09-CWE190_Integer_Overflow__unsigned_int_fscanf_multiply │ └── 1.json ├── CWE190_09-CWE190_Integer_Overflow__unsigned_int_fscanf_postinc │ └── 1.json ├── CWE190_09-CWE190_Integer_Overflow__unsigned_int_fscanf_preinc │ └── 1.json ├── CWE190_09-CWE190_Integer_Overflow__unsigned_int_fscanf_square │ └── 1.json ├── CWE190_10-CWE190_Integer_Overflow__char_fscanf_add │ └── 1.json ├── CWE190_10-CWE190_Integer_Overflow__char_fscanf_multiply │ └── 1.json ├── CWE190_10-CWE190_Integer_Overflow__char_fscanf_postinc │ └── 1.json ├── CWE190_10-CWE190_Integer_Overflow__char_fscanf_preinc │ └── 1.json ├── CWE190_10-CWE190_Integer_Overflow__char_fscanf_square │ └── 1.json ├── CWE190_10-CWE190_Integer_Overflow__int64_t_fscanf_add │ └── 1.json ├── CWE190_10-CWE190_Integer_Overflow__int64_t_fscanf_multiply │ └── 1.json ├── CWE190_10-CWE190_Integer_Overflow__int64_t_fscanf_postinc │ └── 1.json ├── CWE190_10-CWE190_Integer_Overflow__int64_t_fscanf_preinc │ └── 1.json ├── CWE190_10-CWE190_Integer_Overflow__int64_t_fscanf_square │ └── 1.json ├── CWE190_10-CWE190_Integer_Overflow__int_connect_socket_add │ └── 1.json ├── CWE190_10-CWE190_Integer_Overflow__int_connect_socket_multiply │ └── 1.json ├── CWE190_10-CWE190_Integer_Overflow__int_connect_socket_postinc │ └── 1.json ├── CWE190_10-CWE190_Integer_Overflow__int_connect_socket_preinc │ └── 1.json ├── CWE190_10-CWE190_Integer_Overflow__int_connect_socket_square │ └── 1.json ├── CWE190_10-CWE190_Integer_Overflow__int_fgets_add │ └── 1.json ├── CWE190_10-CWE190_Integer_Overflow__int_fgets_multiply │ └── 1.json ├── CWE190_10-CWE190_Integer_Overflow__int_fgets_postinc │ └── 1.json ├── CWE190_10-CWE190_Integer_Overflow__int_fgets_preinc │ └── 1.json ├── CWE190_10-CWE190_Integer_Overflow__int_fgets_square │ └── 1.json ├── CWE190_10-CWE190_Integer_Overflow__int_fscanf_add │ └── 1.json ├── CWE190_10-CWE190_Integer_Overflow__int_fscanf_multiply │ └── 1.json ├── CWE190_10-CWE190_Integer_Overflow__int_fscanf_postinc │ └── 1.json ├── CWE190_10-CWE190_Integer_Overflow__int_fscanf_preinc │ └── 1.json ├── CWE190_10-CWE190_Integer_Overflow__int_fscanf_square │ └── 1.json ├── CWE190_10-CWE190_Integer_Overflow__int_listen_socket_add │ └── 1.json ├── CWE190_10-CWE190_Integer_Overflow__int_listen_socket_multiply │ └── 1.json ├── CWE190_10-CWE190_Integer_Overflow__int_listen_socket_postinc │ └── 1.json ├── CWE190_10-CWE190_Integer_Overflow__int_listen_socket_preinc │ └── 1.json ├── CWE190_10-CWE190_Integer_Overflow__int_listen_socket_square │ └── 1.json ├── CWE190_10-CWE190_Integer_Overflow__short_fscanf_add │ └── 1.json ├── CWE190_10-CWE190_Integer_Overflow__short_fscanf_multiply │ └── 1.json ├── CWE190_10-CWE190_Integer_Overflow__short_fscanf_postinc │ └── 1.json ├── CWE190_10-CWE190_Integer_Overflow__short_fscanf_preinc │ └── 1.json ├── CWE190_10-CWE190_Integer_Overflow__short_fscanf_square │ └── 1.json ├── CWE190_10-CWE190_Integer_Overflow__unsigned_int_fscanf_add │ └── 1.json ├── CWE190_10-CWE190_Integer_Overflow__unsigned_int_fscanf_multiply │ └── 1.json ├── CWE190_10-CWE190_Integer_Overflow__unsigned_int_fscanf_postinc │ └── 1.json ├── CWE190_10-CWE190_Integer_Overflow__unsigned_int_fscanf_preinc │ └── 1.json ├── CWE190_10-CWE190_Integer_Overflow__unsigned_int_fscanf_square │ └── 1.json ├── CWE190_11-CWE190_Integer_Overflow__char_fscanf_add │ └── 1.json ├── CWE190_11-CWE190_Integer_Overflow__char_fscanf_multiply │ └── 1.json ├── CWE190_11-CWE190_Integer_Overflow__char_fscanf_postinc │ └── 1.json ├── CWE190_11-CWE190_Integer_Overflow__char_fscanf_preinc │ └── 1.json ├── CWE190_11-CWE190_Integer_Overflow__char_fscanf_square │ └── 1.json ├── CWE190_11-CWE190_Integer_Overflow__int64_t_fscanf_add │ └── 1.json ├── CWE190_11-CWE190_Integer_Overflow__int64_t_fscanf_multiply │ └── 1.json ├── CWE190_11-CWE190_Integer_Overflow__int64_t_fscanf_postinc │ └── 1.json ├── CWE190_11-CWE190_Integer_Overflow__int64_t_fscanf_preinc │ └── 1.json ├── CWE190_11-CWE190_Integer_Overflow__int64_t_fscanf_square │ └── 1.json ├── CWE190_11-CWE190_Integer_Overflow__int_connect_socket_add │ └── 1.json ├── CWE190_11-CWE190_Integer_Overflow__int_connect_socket_multiply │ └── 1.json ├── CWE190_11-CWE190_Integer_Overflow__int_connect_socket_postinc │ └── 1.json ├── CWE190_11-CWE190_Integer_Overflow__int_connect_socket_preinc │ └── 1.json ├── CWE190_11-CWE190_Integer_Overflow__int_connect_socket_square │ └── 1.json ├── CWE190_11-CWE190_Integer_Overflow__int_fgets_add │ └── 1.json ├── CWE190_11-CWE190_Integer_Overflow__int_fgets_multiply │ └── 1.json ├── CWE190_11-CWE190_Integer_Overflow__int_fgets_postinc │ └── 1.json ├── CWE190_11-CWE190_Integer_Overflow__int_fgets_preinc │ └── 1.json ├── CWE190_11-CWE190_Integer_Overflow__int_fgets_square │ └── 1.json ├── CWE190_11-CWE190_Integer_Overflow__int_fscanf_add │ └── 1.json ├── CWE190_11-CWE190_Integer_Overflow__int_fscanf_multiply │ └── 1.json ├── CWE190_11-CWE190_Integer_Overflow__int_fscanf_postinc │ └── 1.json ├── CWE190_11-CWE190_Integer_Overflow__int_fscanf_preinc │ └── 1.json ├── CWE190_11-CWE190_Integer_Overflow__int_fscanf_square │ └── 1.json ├── CWE190_11-CWE190_Integer_Overflow__int_listen_socket_add │ └── 1.json ├── CWE190_11-CWE190_Integer_Overflow__int_listen_socket_multiply │ └── 1.json ├── CWE190_11-CWE190_Integer_Overflow__int_listen_socket_postinc │ └── 1.json ├── CWE190_11-CWE190_Integer_Overflow__int_listen_socket_preinc │ └── 1.json ├── CWE190_11-CWE190_Integer_Overflow__int_listen_socket_square │ └── 1.json ├── CWE190_11-CWE190_Integer_Overflow__short_fscanf_add │ └── 1.json ├── CWE190_11-CWE190_Integer_Overflow__short_fscanf_multiply │ └── 1.json ├── CWE190_11-CWE190_Integer_Overflow__short_fscanf_postinc │ └── 1.json ├── CWE190_11-CWE190_Integer_Overflow__short_fscanf_preinc │ └── 1.json ├── CWE190_11-CWE190_Integer_Overflow__short_fscanf_square │ └── 1.json ├── CWE190_11-CWE190_Integer_Overflow__unsigned_int_fscanf_add │ └── 1.json ├── CWE190_11-CWE190_Integer_Overflow__unsigned_int_fscanf_multiply │ └── 1.json ├── CWE190_11-CWE190_Integer_Overflow__unsigned_int_fscanf_postinc │ └── 1.json ├── CWE190_11-CWE190_Integer_Overflow__unsigned_int_fscanf_preinc │ └── 1.json ├── CWE190_11-CWE190_Integer_Overflow__unsigned_int_fscanf_square │ └── 1.json ├── CWE190_12-CWE190_Integer_Overflow__char_fscanf_add │ ├── 1.json │ └── 2.json ├── CWE190_12-CWE190_Integer_Overflow__char_fscanf_multiply │ ├── 1.json │ └── 2.json ├── CWE190_12-CWE190_Integer_Overflow__char_fscanf_postinc │ ├── 1.json │ └── 2.json ├── CWE190_12-CWE190_Integer_Overflow__char_fscanf_preinc │ ├── 1.json │ └── 2.json ├── CWE190_12-CWE190_Integer_Overflow__char_fscanf_square │ ├── 1.json │ └── 2.json ├── CWE190_12-CWE190_Integer_Overflow__int64_t_fscanf_add │ ├── 1.json │ └── 2.json ├── CWE190_12-CWE190_Integer_Overflow__int64_t_fscanf_multiply │ ├── 1.json │ └── 2.json ├── CWE190_12-CWE190_Integer_Overflow__int64_t_fscanf_postinc │ ├── 1.json │ └── 2.json ├── CWE190_12-CWE190_Integer_Overflow__int64_t_fscanf_preinc │ ├── 1.json │ └── 2.json ├── CWE190_12-CWE190_Integer_Overflow__int64_t_fscanf_square │ ├── 1.json │ └── 2.json ├── CWE190_12-CWE190_Integer_Overflow__int_connect_socket_add │ ├── 1.json │ └── 2.json ├── CWE190_12-CWE190_Integer_Overflow__int_connect_socket_multiply │ ├── 1.json │ └── 2.json ├── CWE190_12-CWE190_Integer_Overflow__int_connect_socket_postinc │ ├── 1.json │ └── 2.json ├── CWE190_12-CWE190_Integer_Overflow__int_connect_socket_preinc │ ├── 1.json │ └── 2.json ├── CWE190_12-CWE190_Integer_Overflow__int_connect_socket_square │ ├── 1.json │ └── 2.json ├── CWE190_12-CWE190_Integer_Overflow__int_fgets_add │ ├── 1.json │ └── 2.json ├── CWE190_12-CWE190_Integer_Overflow__int_fgets_multiply │ ├── 1.json │ └── 2.json ├── CWE190_12-CWE190_Integer_Overflow__int_fgets_postinc │ ├── 1.json │ └── 2.json ├── CWE190_12-CWE190_Integer_Overflow__int_fgets_preinc │ ├── 1.json │ └── 2.json ├── CWE190_12-CWE190_Integer_Overflow__int_fgets_square │ ├── 1.json │ └── 2.json ├── CWE190_12-CWE190_Integer_Overflow__int_fscanf_add │ ├── 1.json │ └── 2.json ├── CWE190_12-CWE190_Integer_Overflow__int_fscanf_multiply │ ├── 1.json │ └── 2.json ├── CWE190_12-CWE190_Integer_Overflow__int_fscanf_postinc │ ├── 1.json │ └── 2.json ├── CWE190_12-CWE190_Integer_Overflow__int_fscanf_preinc │ ├── 1.json │ └── 2.json ├── CWE190_12-CWE190_Integer_Overflow__int_fscanf_square │ ├── 1.json │ └── 2.json ├── CWE190_12-CWE190_Integer_Overflow__int_listen_socket_add │ ├── 1.json │ └── 2.json ├── CWE190_12-CWE190_Integer_Overflow__int_listen_socket_multiply │ ├── 1.json │ └── 2.json ├── CWE190_12-CWE190_Integer_Overflow__int_listen_socket_postinc │ ├── 1.json │ └── 2.json ├── CWE190_12-CWE190_Integer_Overflow__int_listen_socket_preinc │ ├── 1.json │ └── 2.json ├── CWE190_12-CWE190_Integer_Overflow__int_listen_socket_square │ ├── 1.json │ └── 2.json ├── CWE190_12-CWE190_Integer_Overflow__short_fscanf_add │ ├── 1.json │ └── 2.json ├── CWE190_12-CWE190_Integer_Overflow__short_fscanf_multiply │ ├── 1.json │ └── 2.json ├── CWE190_12-CWE190_Integer_Overflow__short_fscanf_postinc │ ├── 1.json │ └── 2.json ├── CWE190_12-CWE190_Integer_Overflow__short_fscanf_preinc │ ├── 1.json │ └── 2.json ├── CWE190_12-CWE190_Integer_Overflow__short_fscanf_square │ ├── 1.json │ └── 2.json ├── CWE190_12-CWE190_Integer_Overflow__unsigned_int_fscanf_add │ ├── 1.json │ └── 2.json ├── CWE190_12-CWE190_Integer_Overflow__unsigned_int_fscanf_multiply │ ├── 1.json │ └── 2.json ├── CWE190_12-CWE190_Integer_Overflow__unsigned_int_fscanf_postinc │ ├── 1.json │ └── 2.json ├── CWE190_12-CWE190_Integer_Overflow__unsigned_int_fscanf_preinc │ ├── 1.json │ └── 2.json ├── CWE190_12-CWE190_Integer_Overflow__unsigned_int_fscanf_square │ ├── 1.json │ └── 2.json ├── CWE190_13-CWE190_Integer_Overflow__char_fscanf_add │ └── 1.json ├── CWE190_13-CWE190_Integer_Overflow__char_fscanf_multiply │ └── 1.json ├── CWE190_13-CWE190_Integer_Overflow__char_fscanf_postinc │ └── 1.json ├── CWE190_13-CWE190_Integer_Overflow__char_fscanf_preinc │ └── 1.json ├── CWE190_13-CWE190_Integer_Overflow__char_fscanf_square │ └── 1.json ├── CWE190_13-CWE190_Integer_Overflow__int64_t_fscanf_add │ └── 1.json ├── CWE190_13-CWE190_Integer_Overflow__int64_t_fscanf_multiply │ └── 1.json ├── CWE190_13-CWE190_Integer_Overflow__int64_t_fscanf_postinc │ └── 1.json ├── CWE190_13-CWE190_Integer_Overflow__int64_t_fscanf_preinc │ └── 1.json ├── CWE190_13-CWE190_Integer_Overflow__int64_t_fscanf_square │ └── 1.json ├── CWE190_13-CWE190_Integer_Overflow__int_connect_socket_add │ └── 1.json ├── CWE190_13-CWE190_Integer_Overflow__int_connect_socket_multiply │ └── 1.json ├── CWE190_13-CWE190_Integer_Overflow__int_connect_socket_postinc │ └── 1.json ├── CWE190_13-CWE190_Integer_Overflow__int_connect_socket_preinc │ └── 1.json ├── CWE190_13-CWE190_Integer_Overflow__int_connect_socket_square │ └── 1.json ├── CWE190_13-CWE190_Integer_Overflow__int_fgets_add │ └── 1.json ├── CWE190_13-CWE190_Integer_Overflow__int_fgets_multiply │ └── 1.json ├── CWE190_13-CWE190_Integer_Overflow__int_fgets_postinc │ └── 1.json ├── CWE190_13-CWE190_Integer_Overflow__int_fgets_preinc │ └── 1.json ├── CWE190_13-CWE190_Integer_Overflow__int_fgets_square │ └── 1.json ├── CWE190_13-CWE190_Integer_Overflow__int_fscanf_add │ └── 1.json ├── CWE190_13-CWE190_Integer_Overflow__int_fscanf_multiply │ └── 1.json ├── CWE190_13-CWE190_Integer_Overflow__int_fscanf_postinc │ └── 1.json ├── CWE190_13-CWE190_Integer_Overflow__int_fscanf_preinc │ └── 1.json ├── CWE190_13-CWE190_Integer_Overflow__int_fscanf_square │ └── 1.json ├── CWE190_13-CWE190_Integer_Overflow__int_listen_socket_add │ └── 1.json ├── CWE190_13-CWE190_Integer_Overflow__int_listen_socket_multiply │ └── 1.json ├── CWE190_13-CWE190_Integer_Overflow__int_listen_socket_postinc │ └── 1.json ├── CWE190_13-CWE190_Integer_Overflow__int_listen_socket_preinc │ └── 1.json ├── CWE190_13-CWE190_Integer_Overflow__int_listen_socket_square │ └── 1.json ├── CWE190_13-CWE190_Integer_Overflow__short_fscanf_add │ └── 1.json ├── CWE190_13-CWE190_Integer_Overflow__short_fscanf_multiply │ └── 1.json ├── CWE190_13-CWE190_Integer_Overflow__short_fscanf_postinc │ └── 1.json ├── CWE190_13-CWE190_Integer_Overflow__short_fscanf_preinc │ └── 1.json ├── CWE190_13-CWE190_Integer_Overflow__short_fscanf_square │ └── 1.json ├── CWE190_13-CWE190_Integer_Overflow__unsigned_int_fscanf_add │ └── 1.json ├── CWE190_13-CWE190_Integer_Overflow__unsigned_int_fscanf_multiply │ └── 1.json ├── CWE190_13-CWE190_Integer_Overflow__unsigned_int_fscanf_postinc │ └── 1.json ├── CWE190_13-CWE190_Integer_Overflow__unsigned_int_fscanf_preinc │ └── 1.json ├── CWE190_13-CWE190_Integer_Overflow__unsigned_int_fscanf_square │ └── 1.json ├── CWE190_14-CWE190_Integer_Overflow__char_fscanf_add │ └── 1.json ├── CWE190_14-CWE190_Integer_Overflow__char_fscanf_multiply │ └── 1.json ├── CWE190_14-CWE190_Integer_Overflow__char_fscanf_postinc │ └── 1.json ├── CWE190_14-CWE190_Integer_Overflow__char_fscanf_preinc │ └── 1.json ├── CWE190_14-CWE190_Integer_Overflow__char_fscanf_square │ └── 1.json ├── CWE190_14-CWE190_Integer_Overflow__int64_t_fscanf_add │ └── 1.json ├── CWE190_14-CWE190_Integer_Overflow__int64_t_fscanf_multiply │ └── 1.json ├── CWE190_14-CWE190_Integer_Overflow__int64_t_fscanf_postinc │ └── 1.json ├── CWE190_14-CWE190_Integer_Overflow__int64_t_fscanf_preinc │ └── 1.json ├── CWE190_14-CWE190_Integer_Overflow__int64_t_fscanf_square │ └── 1.json ├── CWE190_14-CWE190_Integer_Overflow__int_connect_socket_add │ └── 1.json ├── CWE190_14-CWE190_Integer_Overflow__int_connect_socket_multiply │ └── 1.json ├── CWE190_14-CWE190_Integer_Overflow__int_connect_socket_postinc │ └── 1.json ├── CWE190_14-CWE190_Integer_Overflow__int_connect_socket_preinc │ └── 1.json ├── CWE190_14-CWE190_Integer_Overflow__int_connect_socket_square │ └── 1.json ├── CWE190_14-CWE190_Integer_Overflow__int_fgets_add │ └── 1.json ├── CWE190_14-CWE190_Integer_Overflow__int_fgets_multiply │ └── 1.json ├── CWE190_14-CWE190_Integer_Overflow__int_fgets_postinc │ └── 1.json ├── CWE190_14-CWE190_Integer_Overflow__int_fgets_preinc │ └── 1.json ├── CWE190_14-CWE190_Integer_Overflow__int_fgets_square │ └── 1.json ├── CWE190_14-CWE190_Integer_Overflow__int_fscanf_add │ └── 1.json ├── CWE190_14-CWE190_Integer_Overflow__int_fscanf_multiply │ └── 1.json ├── CWE190_14-CWE190_Integer_Overflow__int_fscanf_postinc │ └── 1.json ├── CWE190_14-CWE190_Integer_Overflow__int_fscanf_preinc │ └── 1.json ├── CWE190_14-CWE190_Integer_Overflow__int_fscanf_square │ └── 1.json ├── CWE190_14-CWE190_Integer_Overflow__int_listen_socket_add │ └── 1.json ├── CWE190_14-CWE190_Integer_Overflow__int_listen_socket_multiply │ └── 1.json ├── CWE190_14-CWE190_Integer_Overflow__int_listen_socket_postinc │ └── 1.json ├── CWE190_14-CWE190_Integer_Overflow__int_listen_socket_preinc │ └── 1.json ├── CWE190_14-CWE190_Integer_Overflow__int_listen_socket_square │ └── 1.json ├── CWE190_14-CWE190_Integer_Overflow__short_fscanf_add │ └── 1.json ├── CWE190_14-CWE190_Integer_Overflow__short_fscanf_multiply │ └── 1.json ├── CWE190_14-CWE190_Integer_Overflow__short_fscanf_postinc │ └── 1.json ├── CWE190_14-CWE190_Integer_Overflow__short_fscanf_preinc │ └── 1.json ├── CWE190_14-CWE190_Integer_Overflow__short_fscanf_square │ └── 1.json ├── CWE190_14-CWE190_Integer_Overflow__unsigned_int_fscanf_add │ └── 1.json ├── CWE190_14-CWE190_Integer_Overflow__unsigned_int_fscanf_multiply │ └── 1.json ├── CWE190_14-CWE190_Integer_Overflow__unsigned_int_fscanf_postinc │ └── 1.json ├── CWE190_14-CWE190_Integer_Overflow__unsigned_int_fscanf_preinc │ └── 1.json ├── CWE190_14-CWE190_Integer_Overflow__unsigned_int_fscanf_square │ └── 1.json ├── CWE190_15-CWE190_Integer_Overflow__char_fscanf_add │ └── 1.json ├── CWE190_15-CWE190_Integer_Overflow__char_fscanf_multiply │ └── 1.json ├── CWE190_15-CWE190_Integer_Overflow__char_fscanf_postinc │ └── 1.json ├── CWE190_15-CWE190_Integer_Overflow__char_fscanf_preinc │ └── 1.json ├── CWE190_15-CWE190_Integer_Overflow__char_fscanf_square │ └── 1.json ├── CWE190_15-CWE190_Integer_Overflow__int64_t_fscanf_add │ └── 1.json ├── CWE190_15-CWE190_Integer_Overflow__int64_t_fscanf_multiply │ └── 1.json ├── CWE190_15-CWE190_Integer_Overflow__int64_t_fscanf_postinc │ └── 1.json ├── CWE190_15-CWE190_Integer_Overflow__int64_t_fscanf_preinc │ └── 1.json ├── CWE190_15-CWE190_Integer_Overflow__int64_t_fscanf_square │ └── 1.json ├── CWE190_15-CWE190_Integer_Overflow__int_connect_socket_add │ └── 1.json ├── CWE190_15-CWE190_Integer_Overflow__int_connect_socket_multiply │ └── 1.json ├── CWE190_15-CWE190_Integer_Overflow__int_connect_socket_postinc │ └── 1.json ├── CWE190_15-CWE190_Integer_Overflow__int_connect_socket_preinc │ └── 1.json ├── CWE190_15-CWE190_Integer_Overflow__int_connect_socket_square │ └── 1.json ├── CWE190_15-CWE190_Integer_Overflow__int_fgets_add │ └── 1.json ├── CWE190_15-CWE190_Integer_Overflow__int_fgets_multiply │ └── 1.json ├── CWE190_15-CWE190_Integer_Overflow__int_fgets_postinc │ └── 1.json ├── CWE190_15-CWE190_Integer_Overflow__int_fgets_preinc │ └── 1.json ├── CWE190_15-CWE190_Integer_Overflow__int_fgets_square │ └── 1.json ├── CWE190_15-CWE190_Integer_Overflow__int_fscanf_add │ └── 1.json ├── CWE190_15-CWE190_Integer_Overflow__int_fscanf_multiply │ └── 1.json ├── CWE190_15-CWE190_Integer_Overflow__int_fscanf_postinc │ └── 1.json ├── CWE190_15-CWE190_Integer_Overflow__int_fscanf_preinc │ └── 1.json ├── CWE190_15-CWE190_Integer_Overflow__int_fscanf_square │ └── 1.json ├── CWE190_15-CWE190_Integer_Overflow__int_listen_socket_add │ └── 1.json ├── CWE190_15-CWE190_Integer_Overflow__int_listen_socket_multiply │ └── 1.json ├── CWE190_15-CWE190_Integer_Overflow__int_listen_socket_postinc │ └── 1.json ├── CWE190_15-CWE190_Integer_Overflow__int_listen_socket_preinc │ └── 1.json ├── CWE190_15-CWE190_Integer_Overflow__int_listen_socket_square │ └── 1.json ├── CWE190_15-CWE190_Integer_Overflow__short_fscanf_add │ └── 1.json ├── CWE190_15-CWE190_Integer_Overflow__short_fscanf_multiply │ └── 1.json ├── CWE190_15-CWE190_Integer_Overflow__short_fscanf_postinc │ └── 1.json ├── CWE190_15-CWE190_Integer_Overflow__short_fscanf_preinc │ └── 1.json ├── CWE190_15-CWE190_Integer_Overflow__short_fscanf_square │ └── 1.json ├── CWE190_15-CWE190_Integer_Overflow__unsigned_int_fscanf_add │ └── 1.json ├── CWE190_15-CWE190_Integer_Overflow__unsigned_int_fscanf_multiply │ └── 1.json ├── CWE190_15-CWE190_Integer_Overflow__unsigned_int_fscanf_postinc │ └── 1.json ├── CWE190_15-CWE190_Integer_Overflow__unsigned_int_fscanf_preinc │ └── 1.json ├── CWE190_15-CWE190_Integer_Overflow__unsigned_int_fscanf_square │ └── 1.json ├── CWE190_16-CWE190_Integer_Overflow__char_fscanf_add │ └── 1.json ├── CWE190_16-CWE190_Integer_Overflow__char_fscanf_multiply │ └── 1.json ├── CWE190_16-CWE190_Integer_Overflow__char_fscanf_postinc │ └── 1.json ├── CWE190_16-CWE190_Integer_Overflow__char_fscanf_preinc │ └── 1.json ├── CWE190_16-CWE190_Integer_Overflow__char_fscanf_square │ └── 1.json ├── CWE190_16-CWE190_Integer_Overflow__int64_t_fscanf_add │ └── 1.json ├── CWE190_16-CWE190_Integer_Overflow__int64_t_fscanf_multiply │ └── 1.json ├── CWE190_16-CWE190_Integer_Overflow__int64_t_fscanf_postinc │ └── 1.json ├── CWE190_16-CWE190_Integer_Overflow__int64_t_fscanf_preinc │ └── 1.json ├── CWE190_16-CWE190_Integer_Overflow__int64_t_fscanf_square │ └── 1.json ├── CWE190_16-CWE190_Integer_Overflow__int_connect_socket_add │ └── 1.json ├── CWE190_16-CWE190_Integer_Overflow__int_connect_socket_multiply │ └── 1.json ├── CWE190_16-CWE190_Integer_Overflow__int_connect_socket_postinc │ └── 1.json ├── CWE190_16-CWE190_Integer_Overflow__int_connect_socket_preinc │ └── 1.json ├── CWE190_16-CWE190_Integer_Overflow__int_connect_socket_square │ └── 1.json ├── CWE190_16-CWE190_Integer_Overflow__int_fgets_add │ └── 1.json ├── CWE190_16-CWE190_Integer_Overflow__int_fgets_multiply │ └── 1.json ├── CWE190_16-CWE190_Integer_Overflow__int_fgets_postinc │ └── 1.json ├── CWE190_16-CWE190_Integer_Overflow__int_fgets_preinc │ └── 1.json ├── CWE190_16-CWE190_Integer_Overflow__int_fgets_square │ └── 1.json ├── CWE190_16-CWE190_Integer_Overflow__int_fscanf_add │ └── 1.json ├── CWE190_16-CWE190_Integer_Overflow__int_fscanf_multiply │ └── 1.json ├── CWE190_16-CWE190_Integer_Overflow__int_fscanf_postinc │ └── 1.json ├── CWE190_16-CWE190_Integer_Overflow__int_fscanf_preinc │ └── 1.json ├── CWE190_16-CWE190_Integer_Overflow__int_fscanf_square │ └── 1.json ├── CWE190_16-CWE190_Integer_Overflow__int_listen_socket_add │ └── 1.json ├── CWE190_16-CWE190_Integer_Overflow__int_listen_socket_multiply │ └── 1.json ├── CWE190_16-CWE190_Integer_Overflow__int_listen_socket_postinc │ └── 1.json ├── CWE190_16-CWE190_Integer_Overflow__int_listen_socket_preinc │ └── 1.json ├── CWE190_16-CWE190_Integer_Overflow__int_listen_socket_square │ └── 1.json ├── CWE190_16-CWE190_Integer_Overflow__short_fscanf_add │ └── 1.json ├── CWE190_16-CWE190_Integer_Overflow__short_fscanf_multiply │ └── 1.json ├── CWE190_16-CWE190_Integer_Overflow__short_fscanf_postinc │ └── 1.json ├── CWE190_16-CWE190_Integer_Overflow__short_fscanf_preinc │ └── 1.json ├── CWE190_16-CWE190_Integer_Overflow__short_fscanf_square │ └── 1.json ├── CWE190_16-CWE190_Integer_Overflow__unsigned_int_fscanf_add │ └── 1.json ├── CWE190_16-CWE190_Integer_Overflow__unsigned_int_fscanf_multiply │ └── 1.json ├── CWE190_16-CWE190_Integer_Overflow__unsigned_int_fscanf_postinc │ └── 1.json ├── CWE190_16-CWE190_Integer_Overflow__unsigned_int_fscanf_preinc │ └── 1.json ├── CWE190_16-CWE190_Integer_Overflow__unsigned_int_fscanf_square │ └── 1.json ├── CWE190_17-CWE190_Integer_Overflow__char_fscanf_add │ └── 1.json ├── CWE190_17-CWE190_Integer_Overflow__char_fscanf_multiply │ └── 1.json ├── CWE190_17-CWE190_Integer_Overflow__char_fscanf_postinc │ └── 1.json ├── CWE190_17-CWE190_Integer_Overflow__char_fscanf_preinc │ └── 1.json ├── CWE190_17-CWE190_Integer_Overflow__char_fscanf_square │ └── 1.json ├── CWE190_17-CWE190_Integer_Overflow__int64_t_fscanf_add │ └── 1.json ├── CWE190_17-CWE190_Integer_Overflow__int64_t_fscanf_multiply │ └── 1.json ├── CWE190_17-CWE190_Integer_Overflow__int64_t_fscanf_postinc │ └── 1.json ├── CWE190_17-CWE190_Integer_Overflow__int64_t_fscanf_preinc │ └── 1.json ├── CWE190_17-CWE190_Integer_Overflow__int64_t_fscanf_square │ └── 1.json ├── CWE190_17-CWE190_Integer_Overflow__int_connect_socket_add │ └── 1.json ├── CWE190_17-CWE190_Integer_Overflow__int_connect_socket_multiply │ └── 1.json ├── CWE190_17-CWE190_Integer_Overflow__int_connect_socket_postinc │ └── 1.json ├── CWE190_17-CWE190_Integer_Overflow__int_connect_socket_preinc │ └── 1.json ├── CWE190_17-CWE190_Integer_Overflow__int_connect_socket_square │ └── 1.json ├── CWE190_17-CWE190_Integer_Overflow__int_fgets_add │ └── 1.json ├── CWE190_17-CWE190_Integer_Overflow__int_fgets_multiply │ └── 1.json ├── CWE190_17-CWE190_Integer_Overflow__int_fgets_postinc │ └── 1.json ├── CWE190_17-CWE190_Integer_Overflow__int_fgets_preinc │ └── 1.json ├── CWE190_17-CWE190_Integer_Overflow__int_fgets_square │ └── 1.json ├── CWE190_17-CWE190_Integer_Overflow__int_fscanf_add │ └── 1.json ├── CWE190_17-CWE190_Integer_Overflow__int_fscanf_multiply │ └── 1.json ├── CWE190_17-CWE190_Integer_Overflow__int_fscanf_postinc │ └── 1.json ├── CWE190_17-CWE190_Integer_Overflow__int_fscanf_preinc │ └── 1.json ├── CWE190_17-CWE190_Integer_Overflow__int_fscanf_square │ └── 1.json ├── CWE190_17-CWE190_Integer_Overflow__int_listen_socket_add │ └── 1.json ├── CWE190_17-CWE190_Integer_Overflow__int_listen_socket_multiply │ └── 1.json ├── CWE190_17-CWE190_Integer_Overflow__int_listen_socket_postinc │ └── 1.json ├── CWE190_17-CWE190_Integer_Overflow__int_listen_socket_preinc │ └── 1.json ├── CWE190_17-CWE190_Integer_Overflow__int_listen_socket_square │ └── 1.json ├── CWE190_17-CWE190_Integer_Overflow__short_fscanf_add │ └── 1.json ├── CWE190_17-CWE190_Integer_Overflow__short_fscanf_multiply │ └── 1.json ├── CWE190_17-CWE190_Integer_Overflow__short_fscanf_postinc │ └── 1.json ├── CWE190_17-CWE190_Integer_Overflow__short_fscanf_preinc │ └── 1.json ├── CWE190_17-CWE190_Integer_Overflow__short_fscanf_square │ └── 1.json ├── CWE190_17-CWE190_Integer_Overflow__unsigned_int_fscanf_add │ └── 1.json ├── CWE190_17-CWE190_Integer_Overflow__unsigned_int_fscanf_multiply │ └── 1.json ├── CWE190_17-CWE190_Integer_Overflow__unsigned_int_fscanf_postinc │ └── 1.json ├── CWE190_17-CWE190_Integer_Overflow__unsigned_int_fscanf_preinc │ └── 1.json ├── CWE190_17-CWE190_Integer_Overflow__unsigned_int_fscanf_square │ └── 1.json ├── CWE190_18-CWE190_Integer_Overflow__char_fscanf_add │ └── 1.json ├── CWE190_18-CWE190_Integer_Overflow__char_fscanf_multiply │ └── 1.json ├── CWE190_18-CWE190_Integer_Overflow__char_fscanf_postinc │ └── 1.json ├── CWE190_18-CWE190_Integer_Overflow__char_fscanf_preinc │ └── 1.json ├── CWE190_18-CWE190_Integer_Overflow__char_fscanf_square │ └── 1.json ├── CWE190_18-CWE190_Integer_Overflow__int64_t_fscanf_add │ └── 1.json ├── CWE190_18-CWE190_Integer_Overflow__int64_t_fscanf_multiply │ └── 1.json ├── CWE190_18-CWE190_Integer_Overflow__int64_t_fscanf_postinc │ └── 1.json ├── CWE190_18-CWE190_Integer_Overflow__int64_t_fscanf_preinc │ └── 1.json ├── CWE190_18-CWE190_Integer_Overflow__int64_t_fscanf_square │ └── 1.json ├── CWE190_18-CWE190_Integer_Overflow__int_connect_socket_add │ └── 1.json ├── CWE190_18-CWE190_Integer_Overflow__int_connect_socket_multiply │ └── 1.json ├── CWE190_18-CWE190_Integer_Overflow__int_connect_socket_postinc │ └── 1.json ├── CWE190_18-CWE190_Integer_Overflow__int_connect_socket_preinc │ └── 1.json ├── CWE190_18-CWE190_Integer_Overflow__int_connect_socket_square │ └── 1.json ├── CWE190_18-CWE190_Integer_Overflow__int_fgets_add │ └── 1.json ├── CWE190_18-CWE190_Integer_Overflow__int_fgets_multiply │ └── 1.json ├── CWE190_18-CWE190_Integer_Overflow__int_fgets_postinc │ └── 1.json ├── CWE190_18-CWE190_Integer_Overflow__int_fgets_preinc │ └── 1.json ├── CWE190_18-CWE190_Integer_Overflow__int_fgets_square │ └── 1.json ├── CWE190_18-CWE190_Integer_Overflow__int_fscanf_add │ └── 1.json ├── CWE190_18-CWE190_Integer_Overflow__int_fscanf_multiply │ └── 1.json ├── CWE190_18-CWE190_Integer_Overflow__int_fscanf_postinc │ └── 1.json ├── CWE190_18-CWE190_Integer_Overflow__int_fscanf_preinc │ └── 1.json ├── CWE190_18-CWE190_Integer_Overflow__int_fscanf_square │ └── 1.json ├── CWE190_18-CWE190_Integer_Overflow__int_listen_socket_add │ └── 1.json ├── CWE190_18-CWE190_Integer_Overflow__int_listen_socket_multiply │ └── 1.json ├── CWE190_18-CWE190_Integer_Overflow__int_listen_socket_postinc │ └── 1.json ├── CWE190_18-CWE190_Integer_Overflow__int_listen_socket_preinc │ └── 1.json ├── CWE190_18-CWE190_Integer_Overflow__int_listen_socket_square │ └── 1.json ├── CWE190_18-CWE190_Integer_Overflow__short_fscanf_add │ └── 1.json ├── CWE190_18-CWE190_Integer_Overflow__short_fscanf_multiply │ └── 1.json ├── CWE190_18-CWE190_Integer_Overflow__short_fscanf_postinc │ └── 1.json ├── CWE190_18-CWE190_Integer_Overflow__short_fscanf_preinc │ └── 1.json ├── CWE190_18-CWE190_Integer_Overflow__short_fscanf_square │ └── 1.json ├── CWE190_18-CWE190_Integer_Overflow__unsigned_int_fscanf_add │ └── 1.json ├── CWE190_18-CWE190_Integer_Overflow__unsigned_int_fscanf_multiply │ └── 1.json ├── CWE190_18-CWE190_Integer_Overflow__unsigned_int_fscanf_postinc │ └── 1.json ├── CWE190_18-CWE190_Integer_Overflow__unsigned_int_fscanf_preinc │ └── 1.json ├── CWE190_18-CWE190_Integer_Overflow__unsigned_int_fscanf_square │ └── 1.json ├── CWE190_21-CWE190_Integer_Overflow__char_fscanf_add │ └── 1.json ├── CWE190_21-CWE190_Integer_Overflow__char_fscanf_multiply │ └── 1.json ├── CWE190_21-CWE190_Integer_Overflow__char_fscanf_postinc │ └── 1.json ├── CWE190_21-CWE190_Integer_Overflow__char_fscanf_preinc │ └── 1.json ├── CWE190_21-CWE190_Integer_Overflow__char_fscanf_square │ └── 1.json ├── CWE190_21-CWE190_Integer_Overflow__int64_t_fscanf_add │ └── 1.json ├── CWE190_21-CWE190_Integer_Overflow__int64_t_fscanf_multiply │ └── 1.json ├── CWE190_21-CWE190_Integer_Overflow__int64_t_fscanf_postinc │ └── 1.json ├── CWE190_21-CWE190_Integer_Overflow__int64_t_fscanf_preinc │ └── 1.json ├── CWE190_21-CWE190_Integer_Overflow__int64_t_fscanf_square │ └── 1.json ├── CWE190_21-CWE190_Integer_Overflow__int_connect_socket_add │ └── 1.json ├── CWE190_21-CWE190_Integer_Overflow__int_connect_socket_multiply │ └── 1.json ├── CWE190_21-CWE190_Integer_Overflow__int_connect_socket_postinc │ └── 1.json ├── CWE190_21-CWE190_Integer_Overflow__int_connect_socket_preinc │ └── 1.json ├── CWE190_21-CWE190_Integer_Overflow__int_connect_socket_square │ └── 1.json ├── CWE190_21-CWE190_Integer_Overflow__int_fgets_add │ └── 1.json ├── CWE190_21-CWE190_Integer_Overflow__int_fgets_multiply │ └── 1.json ├── CWE190_21-CWE190_Integer_Overflow__int_fgets_postinc │ └── 1.json ├── CWE190_21-CWE190_Integer_Overflow__int_fgets_preinc │ └── 1.json ├── CWE190_21-CWE190_Integer_Overflow__int_fgets_square │ └── 1.json ├── CWE190_21-CWE190_Integer_Overflow__int_fscanf_add │ └── 1.json ├── CWE190_21-CWE190_Integer_Overflow__int_fscanf_multiply │ └── 1.json ├── CWE190_21-CWE190_Integer_Overflow__int_fscanf_postinc │ └── 1.json ├── CWE190_21-CWE190_Integer_Overflow__int_fscanf_preinc │ └── 1.json ├── CWE190_21-CWE190_Integer_Overflow__int_fscanf_square │ └── 1.json ├── CWE190_21-CWE190_Integer_Overflow__int_listen_socket_add │ └── 1.json ├── CWE190_21-CWE190_Integer_Overflow__int_listen_socket_multiply │ └── 1.json ├── CWE190_21-CWE190_Integer_Overflow__int_listen_socket_postinc │ └── 1.json ├── CWE190_21-CWE190_Integer_Overflow__int_listen_socket_preinc │ └── 1.json ├── CWE190_21-CWE190_Integer_Overflow__int_listen_socket_square │ └── 1.json ├── CWE190_21-CWE190_Integer_Overflow__short_fscanf_add │ └── 1.json ├── CWE190_21-CWE190_Integer_Overflow__short_fscanf_multiply │ └── 1.json ├── CWE190_21-CWE190_Integer_Overflow__short_fscanf_postinc │ └── 1.json ├── CWE190_21-CWE190_Integer_Overflow__short_fscanf_preinc │ └── 1.json ├── CWE190_21-CWE190_Integer_Overflow__short_fscanf_square │ └── 1.json ├── CWE190_21-CWE190_Integer_Overflow__unsigned_int_fscanf_add │ └── 1.json ├── CWE190_21-CWE190_Integer_Overflow__unsigned_int_fscanf_multiply │ └── 1.json ├── CWE190_21-CWE190_Integer_Overflow__unsigned_int_fscanf_postinc │ └── 1.json ├── CWE190_21-CWE190_Integer_Overflow__unsigned_int_fscanf_preinc │ └── 1.json ├── CWE190_21-CWE190_Integer_Overflow__unsigned_int_fscanf_square │ └── 1.json ├── CWE190_22-CWE190_Integer_Overflow__char_fscanf_add │ └── 1.json ├── CWE190_22-CWE190_Integer_Overflow__char_fscanf_multiply │ └── 1.json ├── CWE190_22-CWE190_Integer_Overflow__char_fscanf_postinc │ └── 1.json ├── CWE190_22-CWE190_Integer_Overflow__char_fscanf_preinc │ └── 1.json ├── CWE190_22-CWE190_Integer_Overflow__char_fscanf_square │ └── 1.json ├── CWE190_22-CWE190_Integer_Overflow__int64_t_fscanf_add │ └── 1.json ├── CWE190_22-CWE190_Integer_Overflow__int64_t_fscanf_multiply │ └── 1.json ├── CWE190_22-CWE190_Integer_Overflow__int64_t_fscanf_postinc │ └── 1.json ├── CWE190_22-CWE190_Integer_Overflow__int64_t_fscanf_preinc │ └── 1.json ├── CWE190_22-CWE190_Integer_Overflow__int64_t_fscanf_square │ └── 1.json ├── CWE190_22-CWE190_Integer_Overflow__int_connect_socket_add │ └── 1.json ├── CWE190_22-CWE190_Integer_Overflow__int_connect_socket_multiply │ └── 1.json ├── CWE190_22-CWE190_Integer_Overflow__int_connect_socket_postinc │ └── 1.json ├── CWE190_22-CWE190_Integer_Overflow__int_connect_socket_preinc │ └── 1.json ├── CWE190_22-CWE190_Integer_Overflow__int_connect_socket_square │ └── 1.json ├── CWE190_22-CWE190_Integer_Overflow__int_fgets_add │ └── 1.json ├── CWE190_22-CWE190_Integer_Overflow__int_fgets_multiply │ └── 1.json ├── CWE190_22-CWE190_Integer_Overflow__int_fgets_postinc │ └── 1.json ├── CWE190_22-CWE190_Integer_Overflow__int_fgets_preinc │ └── 1.json ├── CWE190_22-CWE190_Integer_Overflow__int_fgets_square │ └── 1.json ├── CWE190_22-CWE190_Integer_Overflow__int_fscanf_add │ └── 1.json ├── CWE190_22-CWE190_Integer_Overflow__int_fscanf_multiply │ └── 1.json ├── CWE190_22-CWE190_Integer_Overflow__int_fscanf_postinc │ └── 1.json ├── CWE190_22-CWE190_Integer_Overflow__int_fscanf_preinc │ └── 1.json ├── CWE190_22-CWE190_Integer_Overflow__int_fscanf_square │ └── 1.json ├── CWE190_22-CWE190_Integer_Overflow__int_listen_socket_add │ └── 1.json ├── CWE190_22-CWE190_Integer_Overflow__int_listen_socket_multiply │ └── 1.json ├── CWE190_22-CWE190_Integer_Overflow__int_listen_socket_postinc │ └── 1.json ├── CWE190_22-CWE190_Integer_Overflow__int_listen_socket_preinc │ └── 1.json ├── CWE190_22-CWE190_Integer_Overflow__int_listen_socket_square │ └── 1.json ├── CWE190_22-CWE190_Integer_Overflow__short_fscanf_add │ └── 1.json ├── CWE190_22-CWE190_Integer_Overflow__short_fscanf_multiply │ └── 1.json ├── CWE190_22-CWE190_Integer_Overflow__short_fscanf_postinc │ └── 1.json ├── CWE190_22-CWE190_Integer_Overflow__short_fscanf_preinc │ └── 1.json ├── CWE190_22-CWE190_Integer_Overflow__short_fscanf_square │ └── 1.json ├── CWE190_22-CWE190_Integer_Overflow__unsigned_int_fscanf_add │ └── 1.json ├── CWE190_22-CWE190_Integer_Overflow__unsigned_int_fscanf_multiply │ └── 1.json ├── CWE190_22-CWE190_Integer_Overflow__unsigned_int_fscanf_postinc │ └── 1.json ├── CWE190_22-CWE190_Integer_Overflow__unsigned_int_fscanf_preinc │ └── 1.json ├── CWE190_22-CWE190_Integer_Overflow__unsigned_int_fscanf_square │ └── 1.json ├── CWE190_31-CWE190_Integer_Overflow__char_fscanf_add │ └── 1.json ├── CWE190_31-CWE190_Integer_Overflow__char_fscanf_multiply │ └── 1.json ├── CWE190_31-CWE190_Integer_Overflow__char_fscanf_postinc │ └── 1.json ├── CWE190_31-CWE190_Integer_Overflow__char_fscanf_preinc │ └── 1.json ├── CWE190_31-CWE190_Integer_Overflow__char_fscanf_square │ └── 1.json ├── CWE190_31-CWE190_Integer_Overflow__int64_t_fscanf_add │ └── 1.json ├── CWE190_31-CWE190_Integer_Overflow__int64_t_fscanf_multiply │ └── 1.json ├── CWE190_31-CWE190_Integer_Overflow__int64_t_fscanf_postinc │ └── 1.json ├── CWE190_31-CWE190_Integer_Overflow__int64_t_fscanf_preinc │ └── 1.json ├── CWE190_31-CWE190_Integer_Overflow__int64_t_fscanf_square │ └── 1.json ├── CWE190_31-CWE190_Integer_Overflow__int_connect_socket_add │ └── 1.json ├── CWE190_31-CWE190_Integer_Overflow__int_connect_socket_multiply │ └── 1.json ├── CWE190_31-CWE190_Integer_Overflow__int_connect_socket_postinc │ └── 1.json ├── CWE190_31-CWE190_Integer_Overflow__int_connect_socket_preinc │ └── 1.json ├── CWE190_31-CWE190_Integer_Overflow__int_connect_socket_square │ └── 1.json ├── CWE190_31-CWE190_Integer_Overflow__int_fgets_add │ └── 1.json ├── CWE190_31-CWE190_Integer_Overflow__int_fgets_multiply │ └── 1.json ├── CWE190_31-CWE190_Integer_Overflow__int_fgets_postinc │ └── 1.json ├── CWE190_31-CWE190_Integer_Overflow__int_fgets_preinc │ └── 1.json ├── CWE190_31-CWE190_Integer_Overflow__int_fgets_square │ └── 1.json ├── CWE190_31-CWE190_Integer_Overflow__int_fscanf_add │ └── 1.json ├── CWE190_31-CWE190_Integer_Overflow__int_fscanf_multiply │ └── 1.json ├── CWE190_31-CWE190_Integer_Overflow__int_fscanf_postinc │ └── 1.json ├── CWE190_31-CWE190_Integer_Overflow__int_fscanf_preinc │ └── 1.json ├── CWE190_31-CWE190_Integer_Overflow__int_fscanf_square │ └── 1.json ├── CWE190_31-CWE190_Integer_Overflow__int_listen_socket_add │ └── 1.json ├── CWE190_31-CWE190_Integer_Overflow__int_listen_socket_multiply │ └── 1.json ├── CWE190_31-CWE190_Integer_Overflow__int_listen_socket_postinc │ └── 1.json ├── CWE190_31-CWE190_Integer_Overflow__int_listen_socket_preinc │ └── 1.json ├── CWE190_31-CWE190_Integer_Overflow__int_listen_socket_square │ └── 1.json ├── CWE190_31-CWE190_Integer_Overflow__short_fscanf_add │ └── 1.json ├── CWE190_31-CWE190_Integer_Overflow__short_fscanf_multiply │ └── 1.json ├── CWE190_31-CWE190_Integer_Overflow__short_fscanf_postinc │ └── 1.json ├── CWE190_31-CWE190_Integer_Overflow__short_fscanf_preinc │ └── 1.json ├── CWE190_31-CWE190_Integer_Overflow__short_fscanf_square │ └── 1.json ├── CWE190_31-CWE190_Integer_Overflow__unsigned_int_fscanf_add │ └── 1.json ├── CWE190_31-CWE190_Integer_Overflow__unsigned_int_fscanf_multiply │ └── 1.json ├── CWE190_31-CWE190_Integer_Overflow__unsigned_int_fscanf_postinc │ └── 1.json ├── CWE190_31-CWE190_Integer_Overflow__unsigned_int_fscanf_preinc │ └── 1.json ├── CWE190_31-CWE190_Integer_Overflow__unsigned_int_fscanf_square │ └── 1.json ├── CWE190_32-CWE190_Integer_Overflow__char_fscanf_add │ └── 1.json ├── CWE190_32-CWE190_Integer_Overflow__char_fscanf_multiply │ └── 1.json ├── CWE190_32-CWE190_Integer_Overflow__char_fscanf_postinc │ └── 1.json ├── CWE190_32-CWE190_Integer_Overflow__char_fscanf_preinc │ └── 1.json ├── CWE190_32-CWE190_Integer_Overflow__char_fscanf_square │ └── 1.json ├── CWE190_32-CWE190_Integer_Overflow__int64_t_fscanf_add │ └── 1.json ├── CWE190_32-CWE190_Integer_Overflow__int64_t_fscanf_multiply │ └── 1.json ├── CWE190_32-CWE190_Integer_Overflow__int64_t_fscanf_postinc │ └── 1.json ├── CWE190_32-CWE190_Integer_Overflow__int64_t_fscanf_preinc │ └── 1.json ├── CWE190_32-CWE190_Integer_Overflow__int64_t_fscanf_square │ └── 1.json ├── CWE190_32-CWE190_Integer_Overflow__int_connect_socket_add │ └── 1.json ├── CWE190_32-CWE190_Integer_Overflow__int_connect_socket_multiply │ └── 1.json ├── CWE190_32-CWE190_Integer_Overflow__int_connect_socket_postinc │ └── 1.json ├── CWE190_32-CWE190_Integer_Overflow__int_connect_socket_preinc │ └── 1.json ├── CWE190_32-CWE190_Integer_Overflow__int_connect_socket_square │ └── 1.json ├── CWE190_32-CWE190_Integer_Overflow__int_fgets_add │ └── 1.json ├── CWE190_32-CWE190_Integer_Overflow__int_fgets_multiply │ └── 1.json ├── CWE190_32-CWE190_Integer_Overflow__int_fgets_postinc │ └── 1.json ├── CWE190_32-CWE190_Integer_Overflow__int_fgets_preinc │ └── 1.json ├── CWE190_32-CWE190_Integer_Overflow__int_fgets_square │ └── 1.json ├── CWE190_32-CWE190_Integer_Overflow__int_fscanf_add │ └── 1.json ├── CWE190_32-CWE190_Integer_Overflow__int_fscanf_multiply │ └── 1.json ├── CWE190_32-CWE190_Integer_Overflow__int_fscanf_postinc │ └── 1.json ├── CWE190_32-CWE190_Integer_Overflow__int_fscanf_preinc │ └── 1.json ├── CWE190_32-CWE190_Integer_Overflow__int_fscanf_square │ └── 1.json ├── CWE190_32-CWE190_Integer_Overflow__int_listen_socket_add │ └── 1.json ├── CWE190_32-CWE190_Integer_Overflow__int_listen_socket_multiply │ └── 1.json ├── CWE190_32-CWE190_Integer_Overflow__int_listen_socket_postinc │ └── 1.json ├── CWE190_32-CWE190_Integer_Overflow__int_listen_socket_preinc │ └── 1.json ├── CWE190_32-CWE190_Integer_Overflow__int_listen_socket_square │ └── 1.json ├── CWE190_32-CWE190_Integer_Overflow__short_fscanf_add │ └── 1.json ├── CWE190_32-CWE190_Integer_Overflow__short_fscanf_multiply │ └── 1.json ├── CWE190_32-CWE190_Integer_Overflow__short_fscanf_postinc │ └── 1.json ├── CWE190_32-CWE190_Integer_Overflow__short_fscanf_preinc │ └── 1.json ├── CWE190_32-CWE190_Integer_Overflow__short_fscanf_square │ └── 1.json ├── CWE190_32-CWE190_Integer_Overflow__unsigned_int_fscanf_add │ └── 1.json ├── CWE190_32-CWE190_Integer_Overflow__unsigned_int_fscanf_multiply │ └── 1.json ├── CWE190_32-CWE190_Integer_Overflow__unsigned_int_fscanf_postinc │ └── 1.json ├── CWE190_32-CWE190_Integer_Overflow__unsigned_int_fscanf_preinc │ └── 1.json ├── CWE190_32-CWE190_Integer_Overflow__unsigned_int_fscanf_square │ └── 1.json ├── CWE190_33-CWE190_Integer_Overflow__char_fscanf_add │ └── 1.json ├── CWE190_33-CWE190_Integer_Overflow__char_fscanf_multiply │ └── 1.json ├── CWE190_33-CWE190_Integer_Overflow__char_fscanf_square │ └── 1.json ├── CWE190_33-CWE190_Integer_Overflow__int64_t_fscanf_add │ └── 1.json ├── CWE190_33-CWE190_Integer_Overflow__int64_t_fscanf_multiply │ └── 1.json ├── CWE190_33-CWE190_Integer_Overflow__int64_t_fscanf_square │ └── 1.json ├── CWE190_33-CWE190_Integer_Overflow__int_connect_socket_add │ └── 1.json ├── CWE190_33-CWE190_Integer_Overflow__int_connect_socket_multiply │ └── 1.json ├── CWE190_33-CWE190_Integer_Overflow__int_connect_socket_square │ └── 1.json ├── CWE190_33-CWE190_Integer_Overflow__int_fgets_add │ └── 1.json ├── CWE190_33-CWE190_Integer_Overflow__int_fgets_multiply │ └── 1.json ├── CWE190_33-CWE190_Integer_Overflow__int_fgets_square │ └── 1.json ├── CWE190_33-CWE190_Integer_Overflow__int_fscanf_add │ └── 1.json ├── CWE190_33-CWE190_Integer_Overflow__int_fscanf_multiply │ └── 1.json ├── CWE190_33-CWE190_Integer_Overflow__int_fscanf_square │ └── 1.json ├── CWE190_33-CWE190_Integer_Overflow__int_listen_socket_add │ └── 1.json ├── CWE190_33-CWE190_Integer_Overflow__int_listen_socket_multiply │ └── 1.json ├── CWE190_33-CWE190_Integer_Overflow__int_listen_socket_square │ └── 1.json ├── CWE190_33-CWE190_Integer_Overflow__short_fscanf_add │ └── 1.json ├── CWE190_33-CWE190_Integer_Overflow__short_fscanf_multiply │ └── 1.json ├── CWE190_33-CWE190_Integer_Overflow__short_fscanf_square │ └── 1.json ├── CWE190_33-CWE190_Integer_Overflow__unsigned_int_fscanf_add │ └── 1.json ├── CWE190_33-CWE190_Integer_Overflow__unsigned_int_fscanf_multiply │ └── 1.json ├── CWE190_33-CWE190_Integer_Overflow__unsigned_int_fscanf_square │ └── 1.json ├── CWE190_41-CWE190_Integer_Overflow__char_fscanf_add │ └── 1.json ├── CWE190_41-CWE190_Integer_Overflow__char_fscanf_multiply │ └── 1.json ├── CWE190_41-CWE190_Integer_Overflow__char_fscanf_postinc │ └── 1.json ├── CWE190_41-CWE190_Integer_Overflow__char_fscanf_preinc │ └── 1.json ├── CWE190_41-CWE190_Integer_Overflow__char_fscanf_square │ └── 1.json ├── CWE190_41-CWE190_Integer_Overflow__int64_t_fscanf_add │ └── 1.json ├── CWE190_41-CWE190_Integer_Overflow__int64_t_fscanf_multiply │ └── 1.json ├── CWE190_41-CWE190_Integer_Overflow__int64_t_fscanf_postinc │ └── 1.json ├── CWE190_41-CWE190_Integer_Overflow__int64_t_fscanf_preinc │ └── 1.json ├── CWE190_41-CWE190_Integer_Overflow__int64_t_fscanf_square │ └── 1.json ├── CWE190_41-CWE190_Integer_Overflow__int_connect_socket_add │ └── 1.json ├── CWE190_41-CWE190_Integer_Overflow__int_connect_socket_multiply │ └── 1.json ├── CWE190_41-CWE190_Integer_Overflow__int_connect_socket_postinc │ └── 1.json ├── CWE190_41-CWE190_Integer_Overflow__int_connect_socket_preinc │ └── 1.json ├── CWE190_41-CWE190_Integer_Overflow__int_connect_socket_square │ └── 1.json ├── CWE190_41-CWE190_Integer_Overflow__int_fgets_add │ └── 1.json ├── CWE190_41-CWE190_Integer_Overflow__int_fgets_multiply │ └── 1.json ├── CWE190_41-CWE190_Integer_Overflow__int_fgets_postinc │ └── 1.json ├── CWE190_41-CWE190_Integer_Overflow__int_fgets_preinc │ └── 1.json ├── CWE190_41-CWE190_Integer_Overflow__int_fgets_square │ └── 1.json ├── CWE190_41-CWE190_Integer_Overflow__int_fscanf_add │ └── 1.json ├── CWE190_41-CWE190_Integer_Overflow__int_fscanf_multiply │ └── 1.json ├── CWE190_41-CWE190_Integer_Overflow__int_fscanf_postinc │ └── 1.json ├── CWE190_41-CWE190_Integer_Overflow__int_fscanf_preinc │ └── 1.json ├── CWE190_41-CWE190_Integer_Overflow__int_fscanf_square │ └── 1.json ├── CWE190_41-CWE190_Integer_Overflow__int_listen_socket_add │ └── 1.json ├── CWE190_41-CWE190_Integer_Overflow__int_listen_socket_multiply │ └── 1.json ├── CWE190_41-CWE190_Integer_Overflow__int_listen_socket_postinc │ └── 1.json ├── CWE190_41-CWE190_Integer_Overflow__int_listen_socket_preinc │ └── 1.json ├── CWE190_41-CWE190_Integer_Overflow__int_listen_socket_square │ └── 1.json ├── CWE190_41-CWE190_Integer_Overflow__short_fscanf_add │ └── 1.json ├── CWE190_41-CWE190_Integer_Overflow__short_fscanf_multiply │ └── 1.json ├── CWE190_41-CWE190_Integer_Overflow__short_fscanf_postinc │ └── 1.json ├── CWE190_41-CWE190_Integer_Overflow__short_fscanf_preinc │ └── 1.json ├── CWE190_41-CWE190_Integer_Overflow__short_fscanf_square │ └── 1.json ├── CWE190_41-CWE190_Integer_Overflow__unsigned_int_fscanf_add │ └── 1.json ├── CWE190_41-CWE190_Integer_Overflow__unsigned_int_fscanf_multiply │ └── 1.json ├── CWE190_41-CWE190_Integer_Overflow__unsigned_int_fscanf_postinc │ └── 1.json ├── CWE190_41-CWE190_Integer_Overflow__unsigned_int_fscanf_preinc │ └── 1.json ├── CWE190_41-CWE190_Integer_Overflow__unsigned_int_fscanf_square │ └── 1.json ├── CWE190_42-CWE190_Integer_Overflow__char_fscanf_add │ └── 1.json ├── CWE190_42-CWE190_Integer_Overflow__char_fscanf_multiply │ └── 1.json ├── CWE190_42-CWE190_Integer_Overflow__char_fscanf_postinc │ └── 1.json ├── CWE190_42-CWE190_Integer_Overflow__char_fscanf_preinc │ └── 1.json ├── CWE190_42-CWE190_Integer_Overflow__char_fscanf_square │ └── 1.json ├── CWE190_42-CWE190_Integer_Overflow__int64_t_fscanf_add │ └── 1.json ├── CWE190_42-CWE190_Integer_Overflow__int64_t_fscanf_multiply │ └── 1.json ├── CWE190_42-CWE190_Integer_Overflow__int64_t_fscanf_postinc │ └── 1.json ├── CWE190_42-CWE190_Integer_Overflow__int64_t_fscanf_preinc │ └── 1.json ├── CWE190_42-CWE190_Integer_Overflow__int64_t_fscanf_square │ └── 1.json ├── CWE190_42-CWE190_Integer_Overflow__int_connect_socket_add │ └── 1.json ├── CWE190_42-CWE190_Integer_Overflow__int_connect_socket_multiply │ └── 1.json ├── CWE190_42-CWE190_Integer_Overflow__int_connect_socket_postinc │ └── 1.json ├── CWE190_42-CWE190_Integer_Overflow__int_connect_socket_preinc │ └── 1.json ├── CWE190_42-CWE190_Integer_Overflow__int_connect_socket_square │ └── 1.json ├── CWE190_42-CWE190_Integer_Overflow__int_fgets_add │ └── 1.json ├── CWE190_42-CWE190_Integer_Overflow__int_fgets_multiply │ └── 1.json ├── CWE190_42-CWE190_Integer_Overflow__int_fgets_postinc │ └── 1.json ├── CWE190_42-CWE190_Integer_Overflow__int_fgets_preinc │ └── 1.json ├── CWE190_42-CWE190_Integer_Overflow__int_fgets_square │ └── 1.json ├── CWE190_42-CWE190_Integer_Overflow__int_fscanf_add │ └── 1.json ├── CWE190_42-CWE190_Integer_Overflow__int_fscanf_multiply │ └── 1.json ├── CWE190_42-CWE190_Integer_Overflow__int_fscanf_postinc │ └── 1.json ├── CWE190_42-CWE190_Integer_Overflow__int_fscanf_preinc │ └── 1.json ├── CWE190_42-CWE190_Integer_Overflow__int_fscanf_square │ └── 1.json ├── CWE190_42-CWE190_Integer_Overflow__int_listen_socket_add │ └── 1.json ├── CWE190_42-CWE190_Integer_Overflow__int_listen_socket_multiply │ └── 1.json ├── CWE190_42-CWE190_Integer_Overflow__int_listen_socket_postinc │ └── 1.json ├── CWE190_42-CWE190_Integer_Overflow__int_listen_socket_preinc │ └── 1.json ├── CWE190_42-CWE190_Integer_Overflow__int_listen_socket_square │ └── 1.json ├── CWE190_42-CWE190_Integer_Overflow__short_fscanf_add │ └── 1.json ├── CWE190_42-CWE190_Integer_Overflow__short_fscanf_multiply │ └── 1.json ├── CWE190_42-CWE190_Integer_Overflow__short_fscanf_postinc │ └── 1.json ├── CWE190_42-CWE190_Integer_Overflow__short_fscanf_preinc │ └── 1.json ├── CWE190_42-CWE190_Integer_Overflow__short_fscanf_square │ └── 1.json ├── CWE190_42-CWE190_Integer_Overflow__unsigned_int_fscanf_add │ └── 1.json ├── CWE190_42-CWE190_Integer_Overflow__unsigned_int_fscanf_multiply │ └── 1.json ├── CWE190_42-CWE190_Integer_Overflow__unsigned_int_fscanf_postinc │ └── 1.json ├── CWE190_42-CWE190_Integer_Overflow__unsigned_int_fscanf_preinc │ └── 1.json ├── CWE190_42-CWE190_Integer_Overflow__unsigned_int_fscanf_square │ └── 1.json ├── CWE190_43-CWE190_Integer_Overflow__char_fscanf_add │ └── 1.json ├── CWE190_43-CWE190_Integer_Overflow__char_fscanf_multiply │ └── 1.json ├── CWE190_43-CWE190_Integer_Overflow__char_fscanf_square │ └── 1.json ├── CWE190_43-CWE190_Integer_Overflow__int64_t_fscanf_add │ └── 1.json ├── CWE190_43-CWE190_Integer_Overflow__int64_t_fscanf_multiply │ └── 1.json ├── CWE190_43-CWE190_Integer_Overflow__int64_t_fscanf_square │ └── 1.json ├── CWE190_43-CWE190_Integer_Overflow__int_connect_socket_add │ └── 1.json ├── CWE190_43-CWE190_Integer_Overflow__int_connect_socket_multiply │ └── 1.json ├── CWE190_43-CWE190_Integer_Overflow__int_connect_socket_square │ └── 1.json ├── CWE190_43-CWE190_Integer_Overflow__int_fgets_add │ └── 1.json ├── CWE190_43-CWE190_Integer_Overflow__int_fgets_multiply │ └── 1.json ├── CWE190_43-CWE190_Integer_Overflow__int_fgets_square │ └── 1.json ├── CWE190_43-CWE190_Integer_Overflow__int_fscanf_add │ └── 1.json ├── CWE190_43-CWE190_Integer_Overflow__int_fscanf_multiply │ └── 1.json ├── CWE190_43-CWE190_Integer_Overflow__int_fscanf_square │ └── 1.json ├── CWE190_43-CWE190_Integer_Overflow__int_listen_socket_add │ └── 1.json ├── CWE190_43-CWE190_Integer_Overflow__int_listen_socket_multiply │ └── 1.json ├── CWE190_43-CWE190_Integer_Overflow__int_listen_socket_square │ └── 1.json ├── CWE190_43-CWE190_Integer_Overflow__short_fscanf_add │ └── 1.json ├── CWE190_43-CWE190_Integer_Overflow__short_fscanf_multiply │ └── 1.json ├── CWE190_43-CWE190_Integer_Overflow__short_fscanf_square │ └── 1.json ├── CWE190_43-CWE190_Integer_Overflow__unsigned_int_fscanf_add │ └── 1.json ├── CWE190_43-CWE190_Integer_Overflow__unsigned_int_fscanf_multiply │ └── 1.json ├── CWE190_43-CWE190_Integer_Overflow__unsigned_int_fscanf_square │ └── 1.json ├── CWE190_44-CWE190_Integer_Overflow__char_fscanf_add │ └── 1.json ├── CWE190_44-CWE190_Integer_Overflow__char_fscanf_multiply │ └── 1.json ├── CWE190_44-CWE190_Integer_Overflow__char_fscanf_postinc │ └── 1.json ├── CWE190_44-CWE190_Integer_Overflow__char_fscanf_preinc │ └── 1.json ├── CWE190_44-CWE190_Integer_Overflow__char_fscanf_square │ └── 1.json ├── CWE190_44-CWE190_Integer_Overflow__int64_t_fscanf_add │ └── 1.json ├── CWE190_44-CWE190_Integer_Overflow__int64_t_fscanf_multiply │ └── 1.json ├── CWE190_44-CWE190_Integer_Overflow__int64_t_fscanf_postinc │ └── 1.json ├── CWE190_44-CWE190_Integer_Overflow__int64_t_fscanf_preinc │ └── 1.json ├── CWE190_44-CWE190_Integer_Overflow__int64_t_fscanf_square │ └── 1.json ├── CWE190_44-CWE190_Integer_Overflow__int_connect_socket_add │ └── 1.json ├── CWE190_44-CWE190_Integer_Overflow__int_connect_socket_multiply │ └── 1.json ├── CWE190_44-CWE190_Integer_Overflow__int_connect_socket_postinc │ └── 1.json ├── CWE190_44-CWE190_Integer_Overflow__int_connect_socket_preinc │ └── 1.json ├── CWE190_44-CWE190_Integer_Overflow__int_connect_socket_square │ └── 1.json ├── CWE190_44-CWE190_Integer_Overflow__int_fgets_add │ └── 1.json ├── CWE190_44-CWE190_Integer_Overflow__int_fgets_multiply │ └── 1.json ├── CWE190_44-CWE190_Integer_Overflow__int_fgets_postinc │ └── 1.json ├── CWE190_44-CWE190_Integer_Overflow__int_fgets_preinc │ └── 1.json ├── CWE190_44-CWE190_Integer_Overflow__int_fgets_square │ └── 1.json ├── CWE190_44-CWE190_Integer_Overflow__int_fscanf_add │ └── 1.json ├── CWE190_44-CWE190_Integer_Overflow__int_fscanf_multiply │ └── 1.json ├── CWE190_44-CWE190_Integer_Overflow__int_fscanf_postinc │ └── 1.json ├── CWE190_44-CWE190_Integer_Overflow__int_fscanf_preinc │ └── 1.json ├── CWE190_44-CWE190_Integer_Overflow__int_fscanf_square │ └── 1.json ├── CWE190_44-CWE190_Integer_Overflow__int_listen_socket_add │ └── 1.json ├── CWE190_44-CWE190_Integer_Overflow__int_listen_socket_multiply │ └── 1.json ├── CWE190_44-CWE190_Integer_Overflow__int_listen_socket_postinc │ └── 1.json ├── CWE190_44-CWE190_Integer_Overflow__int_listen_socket_preinc │ └── 1.json ├── CWE190_44-CWE190_Integer_Overflow__int_listen_socket_square │ └── 1.json ├── CWE190_44-CWE190_Integer_Overflow__short_fscanf_add │ └── 1.json ├── CWE190_44-CWE190_Integer_Overflow__short_fscanf_multiply │ └── 1.json ├── CWE190_44-CWE190_Integer_Overflow__short_fscanf_postinc │ └── 1.json ├── CWE190_44-CWE190_Integer_Overflow__short_fscanf_preinc │ └── 1.json ├── CWE190_44-CWE190_Integer_Overflow__short_fscanf_square │ └── 1.json ├── CWE190_44-CWE190_Integer_Overflow__unsigned_int_fscanf_add │ └── 1.json ├── CWE190_44-CWE190_Integer_Overflow__unsigned_int_fscanf_multiply │ └── 1.json ├── CWE190_44-CWE190_Integer_Overflow__unsigned_int_fscanf_postinc │ └── 1.json ├── CWE190_44-CWE190_Integer_Overflow__unsigned_int_fscanf_preinc │ └── 1.json ├── CWE190_44-CWE190_Integer_Overflow__unsigned_int_fscanf_square │ └── 1.json ├── CWE190_51-CWE190_Integer_Overflow__char_fscanf_add │ └── 1.json ├── CWE190_51-CWE190_Integer_Overflow__char_fscanf_multiply │ └── 1.json ├── CWE190_51-CWE190_Integer_Overflow__char_fscanf_postinc │ └── 1.json ├── CWE190_51-CWE190_Integer_Overflow__char_fscanf_preinc │ └── 1.json ├── CWE190_51-CWE190_Integer_Overflow__char_fscanf_square │ └── 1.json ├── CWE190_51-CWE190_Integer_Overflow__int64_t_fscanf_add │ └── 1.json ├── CWE190_51-CWE190_Integer_Overflow__int64_t_fscanf_multiply │ └── 1.json ├── CWE190_51-CWE190_Integer_Overflow__int64_t_fscanf_postinc │ └── 1.json ├── CWE190_51-CWE190_Integer_Overflow__int64_t_fscanf_preinc │ └── 1.json ├── CWE190_51-CWE190_Integer_Overflow__int64_t_fscanf_square │ └── 1.json ├── CWE190_51-CWE190_Integer_Overflow__int_connect_socket_add │ └── 1.json ├── CWE190_51-CWE190_Integer_Overflow__int_connect_socket_multiply │ └── 1.json ├── CWE190_51-CWE190_Integer_Overflow__int_connect_socket_postinc │ └── 1.json ├── CWE190_51-CWE190_Integer_Overflow__int_connect_socket_preinc │ └── 1.json ├── CWE190_51-CWE190_Integer_Overflow__int_connect_socket_square │ └── 1.json ├── CWE190_51-CWE190_Integer_Overflow__int_fgets_add │ └── 1.json ├── CWE190_51-CWE190_Integer_Overflow__int_fgets_multiply │ └── 1.json ├── CWE190_51-CWE190_Integer_Overflow__int_fgets_postinc │ └── 1.json ├── CWE190_51-CWE190_Integer_Overflow__int_fgets_preinc │ └── 1.json ├── CWE190_51-CWE190_Integer_Overflow__int_fgets_square │ └── 1.json ├── CWE190_51-CWE190_Integer_Overflow__int_fscanf_add │ └── 1.json ├── CWE190_51-CWE190_Integer_Overflow__int_fscanf_multiply │ └── 1.json ├── CWE190_51-CWE190_Integer_Overflow__int_fscanf_postinc │ └── 1.json ├── CWE190_51-CWE190_Integer_Overflow__int_fscanf_preinc │ └── 1.json ├── CWE190_51-CWE190_Integer_Overflow__int_fscanf_square │ └── 1.json ├── CWE190_51-CWE190_Integer_Overflow__int_listen_socket_add │ └── 1.json ├── CWE190_51-CWE190_Integer_Overflow__int_listen_socket_multiply │ └── 1.json ├── CWE190_51-CWE190_Integer_Overflow__int_listen_socket_postinc │ └── 1.json ├── CWE190_51-CWE190_Integer_Overflow__int_listen_socket_preinc │ └── 1.json ├── CWE190_51-CWE190_Integer_Overflow__int_listen_socket_square │ └── 1.json ├── CWE190_51-CWE190_Integer_Overflow__short_fscanf_add │ └── 1.json ├── CWE190_51-CWE190_Integer_Overflow__short_fscanf_multiply │ └── 1.json ├── CWE190_51-CWE190_Integer_Overflow__short_fscanf_postinc │ └── 1.json ├── CWE190_51-CWE190_Integer_Overflow__short_fscanf_preinc │ └── 1.json ├── CWE190_51-CWE190_Integer_Overflow__short_fscanf_square │ └── 1.json ├── CWE190_51-CWE190_Integer_Overflow__unsigned_int_fscanf_add │ └── 1.json ├── CWE190_51-CWE190_Integer_Overflow__unsigned_int_fscanf_multiply │ └── 1.json ├── CWE190_51-CWE190_Integer_Overflow__unsigned_int_fscanf_postinc │ └── 1.json ├── CWE190_51-CWE190_Integer_Overflow__unsigned_int_fscanf_preinc │ └── 1.json ├── CWE190_51-CWE190_Integer_Overflow__unsigned_int_fscanf_square │ └── 1.json ├── CWE190_52-CWE190_Integer_Overflow__char_fscanf_add │ └── 1.json ├── CWE190_52-CWE190_Integer_Overflow__char_fscanf_multiply │ └── 1.json ├── CWE190_52-CWE190_Integer_Overflow__char_fscanf_postinc │ └── 1.json ├── CWE190_52-CWE190_Integer_Overflow__char_fscanf_preinc │ └── 1.json ├── CWE190_52-CWE190_Integer_Overflow__char_fscanf_square │ └── 1.json ├── CWE190_52-CWE190_Integer_Overflow__int64_t_fscanf_add │ └── 1.json ├── CWE190_52-CWE190_Integer_Overflow__int64_t_fscanf_multiply │ └── 1.json ├── CWE190_52-CWE190_Integer_Overflow__int64_t_fscanf_postinc │ └── 1.json ├── CWE190_52-CWE190_Integer_Overflow__int64_t_fscanf_preinc │ └── 1.json ├── CWE190_52-CWE190_Integer_Overflow__int64_t_fscanf_square │ └── 1.json ├── CWE190_52-CWE190_Integer_Overflow__int_connect_socket_add │ └── 1.json ├── CWE190_52-CWE190_Integer_Overflow__int_connect_socket_multiply │ └── 1.json ├── CWE190_52-CWE190_Integer_Overflow__int_connect_socket_postinc │ └── 1.json ├── CWE190_52-CWE190_Integer_Overflow__int_connect_socket_preinc │ └── 1.json ├── CWE190_52-CWE190_Integer_Overflow__int_connect_socket_square │ └── 1.json ├── CWE190_52-CWE190_Integer_Overflow__int_fgets_add │ └── 1.json ├── CWE190_52-CWE190_Integer_Overflow__int_fgets_multiply │ └── 1.json ├── CWE190_52-CWE190_Integer_Overflow__int_fgets_postinc │ └── 1.json ├── CWE190_52-CWE190_Integer_Overflow__int_fgets_preinc │ └── 1.json ├── CWE190_52-CWE190_Integer_Overflow__int_fgets_square │ └── 1.json ├── CWE190_52-CWE190_Integer_Overflow__int_fscanf_add │ └── 1.json ├── CWE190_52-CWE190_Integer_Overflow__int_fscanf_multiply │ └── 1.json ├── CWE190_52-CWE190_Integer_Overflow__int_fscanf_postinc │ └── 1.json ├── CWE190_52-CWE190_Integer_Overflow__int_fscanf_preinc │ └── 1.json ├── CWE190_52-CWE190_Integer_Overflow__int_fscanf_square │ └── 1.json ├── CWE190_52-CWE190_Integer_Overflow__int_listen_socket_add │ └── 1.json ├── CWE190_52-CWE190_Integer_Overflow__int_listen_socket_multiply │ └── 1.json ├── CWE190_52-CWE190_Integer_Overflow__int_listen_socket_postinc │ └── 1.json ├── CWE190_52-CWE190_Integer_Overflow__int_listen_socket_preinc │ └── 1.json ├── CWE190_52-CWE190_Integer_Overflow__int_listen_socket_square │ └── 1.json ├── CWE190_52-CWE190_Integer_Overflow__short_fscanf_add │ └── 1.json ├── CWE190_52-CWE190_Integer_Overflow__short_fscanf_multiply │ └── 1.json ├── CWE190_52-CWE190_Integer_Overflow__short_fscanf_postinc │ └── 1.json ├── CWE190_52-CWE190_Integer_Overflow__short_fscanf_preinc │ └── 1.json ├── CWE190_52-CWE190_Integer_Overflow__short_fscanf_square │ └── 1.json ├── CWE190_52-CWE190_Integer_Overflow__unsigned_int_fscanf_add │ └── 1.json ├── CWE190_52-CWE190_Integer_Overflow__unsigned_int_fscanf_multiply │ └── 1.json ├── CWE190_52-CWE190_Integer_Overflow__unsigned_int_fscanf_postinc │ └── 1.json ├── CWE190_52-CWE190_Integer_Overflow__unsigned_int_fscanf_preinc │ └── 1.json ├── CWE190_52-CWE190_Integer_Overflow__unsigned_int_fscanf_square │ └── 1.json ├── CWE190_53-CWE190_Integer_Overflow__char_fscanf_add │ └── 1.json ├── CWE190_53-CWE190_Integer_Overflow__char_fscanf_multiply │ └── 1.json ├── CWE190_53-CWE190_Integer_Overflow__char_fscanf_postinc │ └── 1.json ├── CWE190_53-CWE190_Integer_Overflow__char_fscanf_preinc │ └── 1.json ├── CWE190_53-CWE190_Integer_Overflow__char_fscanf_square │ └── 1.json ├── CWE190_53-CWE190_Integer_Overflow__int64_t_fscanf_add │ └── 1.json ├── CWE190_53-CWE190_Integer_Overflow__int64_t_fscanf_multiply │ └── 1.json ├── CWE190_53-CWE190_Integer_Overflow__int64_t_fscanf_postinc │ └── 1.json ├── CWE190_53-CWE190_Integer_Overflow__int64_t_fscanf_preinc │ └── 1.json ├── CWE190_53-CWE190_Integer_Overflow__int64_t_fscanf_square │ └── 1.json ├── CWE190_53-CWE190_Integer_Overflow__int_connect_socket_add │ └── 1.json ├── CWE190_53-CWE190_Integer_Overflow__int_connect_socket_multiply │ └── 1.json ├── CWE190_53-CWE190_Integer_Overflow__int_connect_socket_postinc │ └── 1.json ├── CWE190_53-CWE190_Integer_Overflow__int_connect_socket_preinc │ └── 1.json ├── CWE190_53-CWE190_Integer_Overflow__int_connect_socket_square │ └── 1.json ├── CWE190_53-CWE190_Integer_Overflow__int_fgets_add │ └── 1.json ├── CWE190_53-CWE190_Integer_Overflow__int_fgets_multiply │ └── 1.json ├── CWE190_53-CWE190_Integer_Overflow__int_fgets_postinc │ └── 1.json ├── CWE190_53-CWE190_Integer_Overflow__int_fgets_preinc │ └── 1.json ├── CWE190_53-CWE190_Integer_Overflow__int_fgets_square │ └── 1.json ├── CWE190_53-CWE190_Integer_Overflow__int_fscanf_add │ └── 1.json ├── CWE190_53-CWE190_Integer_Overflow__int_fscanf_multiply │ └── 1.json ├── CWE190_53-CWE190_Integer_Overflow__int_fscanf_postinc │ └── 1.json ├── CWE190_53-CWE190_Integer_Overflow__int_fscanf_preinc │ └── 1.json ├── CWE190_53-CWE190_Integer_Overflow__int_fscanf_square │ └── 1.json ├── CWE190_53-CWE190_Integer_Overflow__int_listen_socket_add │ └── 1.json ├── CWE190_53-CWE190_Integer_Overflow__int_listen_socket_multiply │ └── 1.json ├── CWE190_53-CWE190_Integer_Overflow__int_listen_socket_postinc │ └── 1.json ├── CWE190_53-CWE190_Integer_Overflow__int_listen_socket_preinc │ └── 1.json ├── CWE190_53-CWE190_Integer_Overflow__int_listen_socket_square │ └── 1.json ├── CWE190_53-CWE190_Integer_Overflow__short_fscanf_add │ └── 1.json ├── CWE190_53-CWE190_Integer_Overflow__short_fscanf_multiply │ └── 1.json ├── CWE190_53-CWE190_Integer_Overflow__short_fscanf_postinc │ └── 1.json ├── CWE190_53-CWE190_Integer_Overflow__short_fscanf_preinc │ └── 1.json ├── CWE190_53-CWE190_Integer_Overflow__short_fscanf_square │ └── 1.json ├── CWE190_53-CWE190_Integer_Overflow__unsigned_int_fscanf_add │ └── 1.json ├── CWE190_53-CWE190_Integer_Overflow__unsigned_int_fscanf_multiply │ └── 1.json ├── CWE190_53-CWE190_Integer_Overflow__unsigned_int_fscanf_postinc │ └── 1.json ├── CWE190_53-CWE190_Integer_Overflow__unsigned_int_fscanf_preinc │ └── 1.json ├── CWE190_53-CWE190_Integer_Overflow__unsigned_int_fscanf_square │ └── 1.json ├── CWE190_54-CWE190_Integer_Overflow__char_fscanf_add │ └── 1.json ├── CWE190_54-CWE190_Integer_Overflow__char_fscanf_multiply │ └── 1.json ├── CWE190_54-CWE190_Integer_Overflow__char_fscanf_postinc │ └── 1.json ├── CWE190_54-CWE190_Integer_Overflow__char_fscanf_preinc │ └── 1.json ├── CWE190_54-CWE190_Integer_Overflow__char_fscanf_square │ └── 1.json ├── CWE190_54-CWE190_Integer_Overflow__int64_t_fscanf_add │ └── 1.json ├── CWE190_54-CWE190_Integer_Overflow__int64_t_fscanf_multiply │ └── 1.json ├── CWE190_54-CWE190_Integer_Overflow__int64_t_fscanf_postinc │ └── 1.json ├── CWE190_54-CWE190_Integer_Overflow__int64_t_fscanf_preinc │ └── 1.json ├── CWE190_54-CWE190_Integer_Overflow__int64_t_fscanf_square │ └── 1.json ├── CWE190_54-CWE190_Integer_Overflow__int_connect_socket_add │ └── 1.json ├── CWE190_54-CWE190_Integer_Overflow__int_connect_socket_multiply │ └── 1.json ├── CWE190_54-CWE190_Integer_Overflow__int_connect_socket_postinc │ └── 1.json ├── CWE190_54-CWE190_Integer_Overflow__int_connect_socket_preinc │ └── 1.json ├── CWE190_54-CWE190_Integer_Overflow__int_connect_socket_square │ └── 1.json ├── CWE190_54-CWE190_Integer_Overflow__int_fgets_add │ └── 1.json ├── CWE190_54-CWE190_Integer_Overflow__int_fgets_multiply │ └── 1.json ├── CWE190_54-CWE190_Integer_Overflow__int_fgets_postinc │ └── 1.json ├── CWE190_54-CWE190_Integer_Overflow__int_fgets_preinc │ └── 1.json ├── CWE190_54-CWE190_Integer_Overflow__int_fgets_square │ └── 1.json ├── CWE190_54-CWE190_Integer_Overflow__int_fscanf_add │ └── 1.json ├── CWE190_54-CWE190_Integer_Overflow__int_fscanf_multiply │ └── 1.json ├── CWE190_54-CWE190_Integer_Overflow__int_fscanf_postinc │ └── 1.json ├── CWE190_54-CWE190_Integer_Overflow__int_fscanf_preinc │ └── 1.json ├── CWE190_54-CWE190_Integer_Overflow__int_fscanf_square │ └── 1.json ├── CWE190_54-CWE190_Integer_Overflow__int_listen_socket_add │ └── 1.json ├── CWE190_54-CWE190_Integer_Overflow__int_listen_socket_multiply │ └── 1.json ├── CWE190_54-CWE190_Integer_Overflow__int_listen_socket_postinc │ └── 1.json ├── CWE190_54-CWE190_Integer_Overflow__int_listen_socket_preinc │ └── 1.json ├── CWE190_54-CWE190_Integer_Overflow__int_listen_socket_square │ └── 1.json ├── CWE190_54-CWE190_Integer_Overflow__short_fscanf_add │ └── 1.json ├── CWE190_54-CWE190_Integer_Overflow__short_fscanf_multiply │ └── 1.json ├── CWE190_54-CWE190_Integer_Overflow__short_fscanf_postinc │ └── 1.json ├── CWE190_54-CWE190_Integer_Overflow__short_fscanf_preinc │ └── 1.json ├── CWE190_54-CWE190_Integer_Overflow__short_fscanf_square │ └── 1.json ├── CWE190_54-CWE190_Integer_Overflow__unsigned_int_fscanf_add │ └── 1.json ├── CWE190_54-CWE190_Integer_Overflow__unsigned_int_fscanf_multiply │ └── 1.json ├── CWE190_54-CWE190_Integer_Overflow__unsigned_int_fscanf_postinc │ └── 1.json ├── CWE190_54-CWE190_Integer_Overflow__unsigned_int_fscanf_preinc │ └── 1.json ├── CWE190_54-CWE190_Integer_Overflow__unsigned_int_fscanf_square │ └── 1.json ├── CWE190_61-CWE190_Integer_Overflow__char_fscanf_add │ └── 1.json ├── CWE190_61-CWE190_Integer_Overflow__char_fscanf_multiply │ └── 1.json ├── CWE190_61-CWE190_Integer_Overflow__char_fscanf_postinc │ └── 1.json ├── CWE190_61-CWE190_Integer_Overflow__char_fscanf_preinc │ └── 1.json ├── CWE190_61-CWE190_Integer_Overflow__char_fscanf_square │ └── 1.json ├── CWE190_61-CWE190_Integer_Overflow__int64_t_fscanf_add │ └── 1.json ├── CWE190_61-CWE190_Integer_Overflow__int64_t_fscanf_multiply │ └── 1.json ├── CWE190_61-CWE190_Integer_Overflow__int64_t_fscanf_postinc │ └── 1.json ├── CWE190_61-CWE190_Integer_Overflow__int64_t_fscanf_preinc │ └── 1.json ├── CWE190_61-CWE190_Integer_Overflow__int64_t_fscanf_square │ └── 1.json ├── CWE190_61-CWE190_Integer_Overflow__int_connect_socket_add │ └── 1.json ├── CWE190_61-CWE190_Integer_Overflow__int_connect_socket_multiply │ └── 1.json ├── CWE190_61-CWE190_Integer_Overflow__int_connect_socket_postinc │ └── 1.json ├── CWE190_61-CWE190_Integer_Overflow__int_connect_socket_preinc │ └── 1.json ├── CWE190_61-CWE190_Integer_Overflow__int_connect_socket_square │ └── 1.json ├── CWE190_61-CWE190_Integer_Overflow__int_fgets_add │ └── 1.json ├── CWE190_61-CWE190_Integer_Overflow__int_fgets_multiply │ └── 1.json ├── CWE190_61-CWE190_Integer_Overflow__int_fgets_postinc │ └── 1.json ├── CWE190_61-CWE190_Integer_Overflow__int_fgets_preinc │ └── 1.json ├── CWE190_61-CWE190_Integer_Overflow__int_fgets_square │ └── 1.json ├── CWE190_61-CWE190_Integer_Overflow__int_fscanf_add │ └── 1.json ├── CWE190_61-CWE190_Integer_Overflow__int_fscanf_multiply │ └── 1.json ├── CWE190_61-CWE190_Integer_Overflow__int_fscanf_postinc │ └── 1.json ├── CWE190_61-CWE190_Integer_Overflow__int_fscanf_preinc │ └── 1.json ├── CWE190_61-CWE190_Integer_Overflow__int_fscanf_square │ └── 1.json ├── CWE190_61-CWE190_Integer_Overflow__int_listen_socket_add │ └── 1.json ├── CWE190_61-CWE190_Integer_Overflow__int_listen_socket_multiply │ └── 1.json ├── CWE190_61-CWE190_Integer_Overflow__int_listen_socket_postinc │ └── 1.json ├── CWE190_61-CWE190_Integer_Overflow__int_listen_socket_preinc │ └── 1.json ├── CWE190_61-CWE190_Integer_Overflow__int_listen_socket_square │ └── 1.json ├── CWE190_61-CWE190_Integer_Overflow__short_fscanf_add │ └── 1.json ├── CWE190_61-CWE190_Integer_Overflow__short_fscanf_multiply │ └── 1.json ├── CWE190_61-CWE190_Integer_Overflow__short_fscanf_postinc │ └── 1.json ├── CWE190_61-CWE190_Integer_Overflow__short_fscanf_preinc │ └── 1.json ├── CWE190_61-CWE190_Integer_Overflow__short_fscanf_square │ └── 1.json ├── CWE190_61-CWE190_Integer_Overflow__unsigned_int_fscanf_add │ └── 1.json ├── CWE190_61-CWE190_Integer_Overflow__unsigned_int_fscanf_multiply │ └── 1.json ├── CWE190_61-CWE190_Integer_Overflow__unsigned_int_fscanf_postinc │ └── 1.json ├── CWE190_61-CWE190_Integer_Overflow__unsigned_int_fscanf_preinc │ └── 1.json ├── CWE190_61-CWE190_Integer_Overflow__unsigned_int_fscanf_square │ └── 1.json ├── CWE190_62-CWE190_Integer_Overflow__char_fscanf_add │ └── 1.json ├── CWE190_62-CWE190_Integer_Overflow__char_fscanf_multiply │ └── 1.json ├── CWE190_62-CWE190_Integer_Overflow__char_fscanf_square │ └── 1.json ├── CWE190_62-CWE190_Integer_Overflow__int64_t_fscanf_add │ └── 1.json ├── CWE190_62-CWE190_Integer_Overflow__int64_t_fscanf_multiply │ └── 1.json ├── CWE190_62-CWE190_Integer_Overflow__int64_t_fscanf_square │ └── 1.json ├── CWE190_62-CWE190_Integer_Overflow__int_connect_socket_add │ └── 1.json ├── CWE190_62-CWE190_Integer_Overflow__int_connect_socket_multiply │ └── 1.json ├── CWE190_62-CWE190_Integer_Overflow__int_connect_socket_square │ └── 1.json ├── CWE190_62-CWE190_Integer_Overflow__int_fgets_add │ └── 1.json ├── CWE190_62-CWE190_Integer_Overflow__int_fgets_multiply │ └── 1.json ├── CWE190_62-CWE190_Integer_Overflow__int_fgets_square │ └── 1.json ├── CWE190_62-CWE190_Integer_Overflow__int_fscanf_add │ └── 1.json ├── CWE190_62-CWE190_Integer_Overflow__int_fscanf_multiply │ └── 1.json ├── CWE190_62-CWE190_Integer_Overflow__int_fscanf_square │ └── 1.json ├── CWE190_62-CWE190_Integer_Overflow__int_listen_socket_add │ └── 1.json ├── CWE190_62-CWE190_Integer_Overflow__int_listen_socket_multiply │ └── 1.json ├── CWE190_62-CWE190_Integer_Overflow__int_listen_socket_square │ └── 1.json ├── CWE190_62-CWE190_Integer_Overflow__short_fscanf_add │ └── 1.json ├── CWE190_62-CWE190_Integer_Overflow__short_fscanf_multiply │ └── 1.json ├── CWE190_62-CWE190_Integer_Overflow__short_fscanf_square │ └── 1.json ├── CWE190_62-CWE190_Integer_Overflow__unsigned_int_fscanf_add │ └── 1.json ├── CWE190_62-CWE190_Integer_Overflow__unsigned_int_fscanf_multiply │ └── 1.json ├── CWE190_62-CWE190_Integer_Overflow__unsigned_int_fscanf_square │ └── 1.json ├── CWE190_63-CWE190_Integer_Overflow__char_fscanf_add │ └── 1.json ├── CWE190_63-CWE190_Integer_Overflow__char_fscanf_multiply │ └── 1.json ├── CWE190_63-CWE190_Integer_Overflow__char_fscanf_postinc │ └── 1.json ├── CWE190_63-CWE190_Integer_Overflow__char_fscanf_preinc │ └── 1.json ├── CWE190_63-CWE190_Integer_Overflow__char_fscanf_square │ └── 1.json ├── CWE190_63-CWE190_Integer_Overflow__int64_t_fscanf_add │ └── 1.json ├── CWE190_63-CWE190_Integer_Overflow__int64_t_fscanf_multiply │ └── 1.json ├── CWE190_63-CWE190_Integer_Overflow__int64_t_fscanf_postinc │ └── 1.json ├── CWE190_63-CWE190_Integer_Overflow__int64_t_fscanf_preinc │ └── 1.json ├── CWE190_63-CWE190_Integer_Overflow__int64_t_fscanf_square │ └── 1.json ├── CWE190_63-CWE190_Integer_Overflow__int_connect_socket_add │ └── 1.json ├── CWE190_63-CWE190_Integer_Overflow__int_connect_socket_multiply │ └── 1.json ├── CWE190_63-CWE190_Integer_Overflow__int_connect_socket_postinc │ └── 1.json ├── CWE190_63-CWE190_Integer_Overflow__int_connect_socket_preinc │ └── 1.json ├── CWE190_63-CWE190_Integer_Overflow__int_connect_socket_square │ └── 1.json ├── CWE190_63-CWE190_Integer_Overflow__int_fgets_add │ └── 1.json ├── CWE190_63-CWE190_Integer_Overflow__int_fgets_multiply │ └── 1.json ├── CWE190_63-CWE190_Integer_Overflow__int_fgets_postinc │ └── 1.json ├── CWE190_63-CWE190_Integer_Overflow__int_fgets_preinc │ └── 1.json ├── CWE190_63-CWE190_Integer_Overflow__int_fgets_square │ └── 1.json ├── CWE190_63-CWE190_Integer_Overflow__int_fscanf_add │ └── 1.json ├── CWE190_63-CWE190_Integer_Overflow__int_fscanf_multiply │ └── 1.json ├── CWE190_63-CWE190_Integer_Overflow__int_fscanf_postinc │ └── 1.json ├── CWE190_63-CWE190_Integer_Overflow__int_fscanf_preinc │ └── 1.json ├── CWE190_63-CWE190_Integer_Overflow__int_fscanf_square │ └── 1.json ├── CWE190_63-CWE190_Integer_Overflow__int_listen_socket_add │ └── 1.json ├── CWE190_63-CWE190_Integer_Overflow__int_listen_socket_multiply │ └── 1.json ├── CWE190_63-CWE190_Integer_Overflow__int_listen_socket_postinc │ └── 1.json ├── CWE190_63-CWE190_Integer_Overflow__int_listen_socket_preinc │ └── 1.json ├── CWE190_63-CWE190_Integer_Overflow__int_listen_socket_square │ └── 1.json ├── CWE190_63-CWE190_Integer_Overflow__short_fscanf_add │ └── 1.json ├── CWE190_63-CWE190_Integer_Overflow__short_fscanf_multiply │ └── 1.json ├── CWE190_63-CWE190_Integer_Overflow__short_fscanf_postinc │ └── 1.json ├── CWE190_63-CWE190_Integer_Overflow__short_fscanf_preinc │ └── 1.json ├── CWE190_63-CWE190_Integer_Overflow__short_fscanf_square │ └── 1.json ├── CWE190_63-CWE190_Integer_Overflow__unsigned_int_fscanf_add │ └── 1.json ├── CWE190_63-CWE190_Integer_Overflow__unsigned_int_fscanf_multiply │ └── 1.json ├── CWE190_63-CWE190_Integer_Overflow__unsigned_int_fscanf_postinc │ └── 1.json ├── CWE190_63-CWE190_Integer_Overflow__unsigned_int_fscanf_preinc │ └── 1.json ├── CWE190_63-CWE190_Integer_Overflow__unsigned_int_fscanf_square │ └── 1.json ├── CWE190_64-CWE190_Integer_Overflow__char_fscanf_add │ └── 1.json ├── CWE190_64-CWE190_Integer_Overflow__char_fscanf_multiply │ └── 1.json ├── CWE190_64-CWE190_Integer_Overflow__char_fscanf_postinc │ └── 1.json ├── CWE190_64-CWE190_Integer_Overflow__char_fscanf_preinc │ └── 1.json ├── CWE190_64-CWE190_Integer_Overflow__char_fscanf_square │ └── 1.json ├── CWE190_64-CWE190_Integer_Overflow__int64_t_fscanf_add │ └── 1.json ├── CWE190_64-CWE190_Integer_Overflow__int64_t_fscanf_multiply │ └── 1.json ├── CWE190_64-CWE190_Integer_Overflow__int64_t_fscanf_postinc │ └── 1.json ├── CWE190_64-CWE190_Integer_Overflow__int64_t_fscanf_preinc │ └── 1.json ├── CWE190_64-CWE190_Integer_Overflow__int64_t_fscanf_square │ └── 1.json ├── CWE190_64-CWE190_Integer_Overflow__int_connect_socket_add │ └── 1.json ├── CWE190_64-CWE190_Integer_Overflow__int_connect_socket_multiply │ └── 1.json ├── CWE190_64-CWE190_Integer_Overflow__int_connect_socket_postinc │ └── 1.json ├── CWE190_64-CWE190_Integer_Overflow__int_connect_socket_preinc │ └── 1.json ├── CWE190_64-CWE190_Integer_Overflow__int_connect_socket_square │ └── 1.json ├── CWE190_64-CWE190_Integer_Overflow__int_fgets_add │ └── 1.json ├── CWE190_64-CWE190_Integer_Overflow__int_fgets_multiply │ └── 1.json ├── CWE190_64-CWE190_Integer_Overflow__int_fgets_postinc │ └── 1.json ├── CWE190_64-CWE190_Integer_Overflow__int_fgets_preinc │ └── 1.json ├── CWE190_64-CWE190_Integer_Overflow__int_fgets_square │ └── 1.json ├── CWE190_64-CWE190_Integer_Overflow__int_fscanf_add │ └── 1.json ├── CWE190_64-CWE190_Integer_Overflow__int_fscanf_multiply │ └── 1.json ├── CWE190_64-CWE190_Integer_Overflow__int_fscanf_postinc │ └── 1.json ├── CWE190_64-CWE190_Integer_Overflow__int_fscanf_preinc │ └── 1.json ├── CWE190_64-CWE190_Integer_Overflow__int_fscanf_square │ └── 1.json ├── CWE190_64-CWE190_Integer_Overflow__int_listen_socket_add │ └── 1.json ├── CWE190_64-CWE190_Integer_Overflow__int_listen_socket_multiply │ └── 1.json ├── CWE190_64-CWE190_Integer_Overflow__int_listen_socket_postinc │ └── 1.json ├── CWE190_64-CWE190_Integer_Overflow__int_listen_socket_preinc │ └── 1.json ├── CWE190_64-CWE190_Integer_Overflow__int_listen_socket_square │ └── 1.json ├── CWE190_64-CWE190_Integer_Overflow__short_fscanf_add │ └── 1.json ├── CWE190_64-CWE190_Integer_Overflow__short_fscanf_multiply │ └── 1.json ├── CWE190_64-CWE190_Integer_Overflow__short_fscanf_postinc │ └── 1.json ├── CWE190_64-CWE190_Integer_Overflow__short_fscanf_preinc │ └── 1.json ├── CWE190_64-CWE190_Integer_Overflow__short_fscanf_square │ └── 1.json ├── CWE190_64-CWE190_Integer_Overflow__unsigned_int_fscanf_add │ └── 1.json ├── CWE190_64-CWE190_Integer_Overflow__unsigned_int_fscanf_multiply │ └── 1.json ├── CWE190_64-CWE190_Integer_Overflow__unsigned_int_fscanf_postinc │ └── 1.json ├── CWE190_64-CWE190_Integer_Overflow__unsigned_int_fscanf_preinc │ └── 1.json ├── CWE190_64-CWE190_Integer_Overflow__unsigned_int_fscanf_square │ └── 1.json ├── CWE190_65-CWE190_Integer_Overflow__char_fscanf_add │ └── 1.json ├── CWE190_65-CWE190_Integer_Overflow__char_fscanf_multiply │ └── 1.json ├── CWE190_65-CWE190_Integer_Overflow__char_fscanf_postinc │ └── 1.json ├── CWE190_65-CWE190_Integer_Overflow__char_fscanf_preinc │ └── 1.json ├── CWE190_65-CWE190_Integer_Overflow__char_fscanf_square │ └── 1.json ├── CWE190_65-CWE190_Integer_Overflow__int64_t_fscanf_add │ └── 1.json ├── CWE190_65-CWE190_Integer_Overflow__int64_t_fscanf_multiply │ └── 1.json ├── CWE190_65-CWE190_Integer_Overflow__int64_t_fscanf_postinc │ └── 1.json ├── CWE190_65-CWE190_Integer_Overflow__int64_t_fscanf_preinc │ └── 1.json ├── CWE190_65-CWE190_Integer_Overflow__int64_t_fscanf_square │ └── 1.json ├── CWE190_65-CWE190_Integer_Overflow__int_connect_socket_add │ └── 1.json ├── CWE190_65-CWE190_Integer_Overflow__int_connect_socket_multiply │ └── 1.json ├── CWE190_65-CWE190_Integer_Overflow__int_connect_socket_postinc │ └── 1.json ├── CWE190_65-CWE190_Integer_Overflow__int_connect_socket_preinc │ └── 1.json ├── CWE190_65-CWE190_Integer_Overflow__int_connect_socket_square │ └── 1.json ├── CWE190_65-CWE190_Integer_Overflow__int_fgets_add │ └── 1.json ├── CWE190_65-CWE190_Integer_Overflow__int_fgets_multiply │ └── 1.json ├── CWE190_65-CWE190_Integer_Overflow__int_fgets_postinc │ └── 1.json ├── CWE190_65-CWE190_Integer_Overflow__int_fgets_preinc │ └── 1.json ├── CWE190_65-CWE190_Integer_Overflow__int_fgets_square │ └── 1.json ├── CWE190_65-CWE190_Integer_Overflow__int_fscanf_add │ └── 1.json ├── CWE190_65-CWE190_Integer_Overflow__int_fscanf_multiply │ └── 1.json ├── CWE190_65-CWE190_Integer_Overflow__int_fscanf_postinc │ └── 1.json ├── CWE190_65-CWE190_Integer_Overflow__int_fscanf_preinc │ └── 1.json ├── CWE190_65-CWE190_Integer_Overflow__int_fscanf_square │ └── 1.json ├── CWE190_65-CWE190_Integer_Overflow__int_listen_socket_add │ └── 1.json ├── CWE190_65-CWE190_Integer_Overflow__int_listen_socket_multiply │ └── 1.json ├── CWE190_65-CWE190_Integer_Overflow__int_listen_socket_postinc │ └── 1.json ├── CWE190_65-CWE190_Integer_Overflow__int_listen_socket_preinc │ └── 1.json ├── CWE190_65-CWE190_Integer_Overflow__int_listen_socket_square │ └── 1.json ├── CWE190_65-CWE190_Integer_Overflow__short_fscanf_add │ └── 1.json ├── CWE190_65-CWE190_Integer_Overflow__short_fscanf_multiply │ └── 1.json ├── CWE190_65-CWE190_Integer_Overflow__short_fscanf_postinc │ └── 1.json ├── CWE190_65-CWE190_Integer_Overflow__short_fscanf_preinc │ └── 1.json ├── CWE190_65-CWE190_Integer_Overflow__short_fscanf_square │ └── 1.json ├── CWE190_65-CWE190_Integer_Overflow__unsigned_int_fscanf_add │ └── 1.json ├── CWE190_65-CWE190_Integer_Overflow__unsigned_int_fscanf_multiply │ └── 1.json ├── CWE190_65-CWE190_Integer_Overflow__unsigned_int_fscanf_postinc │ └── 1.json ├── CWE190_65-CWE190_Integer_Overflow__unsigned_int_fscanf_preinc │ └── 1.json ├── CWE190_65-CWE190_Integer_Overflow__unsigned_int_fscanf_square │ └── 1.json ├── CWE190_66-CWE190_Integer_Overflow__char_fscanf_add │ └── 1.json ├── CWE190_66-CWE190_Integer_Overflow__char_fscanf_multiply │ └── 1.json ├── CWE190_66-CWE190_Integer_Overflow__char_fscanf_postinc │ └── 1.json ├── CWE190_66-CWE190_Integer_Overflow__char_fscanf_preinc │ └── 1.json ├── CWE190_66-CWE190_Integer_Overflow__char_fscanf_square │ └── 1.json ├── CWE190_66-CWE190_Integer_Overflow__int64_t_fscanf_add │ └── 1.json ├── CWE190_66-CWE190_Integer_Overflow__int64_t_fscanf_multiply │ └── 1.json ├── CWE190_66-CWE190_Integer_Overflow__int64_t_fscanf_postinc │ └── 1.json ├── CWE190_66-CWE190_Integer_Overflow__int64_t_fscanf_preinc │ └── 1.json ├── CWE190_66-CWE190_Integer_Overflow__int64_t_fscanf_square │ └── 1.json ├── CWE190_66-CWE190_Integer_Overflow__int_connect_socket_add │ └── 1.json ├── CWE190_66-CWE190_Integer_Overflow__int_connect_socket_multiply │ └── 1.json ├── CWE190_66-CWE190_Integer_Overflow__int_connect_socket_postinc │ └── 1.json ├── CWE190_66-CWE190_Integer_Overflow__int_connect_socket_preinc │ └── 1.json ├── CWE190_66-CWE190_Integer_Overflow__int_connect_socket_square │ └── 1.json ├── CWE190_66-CWE190_Integer_Overflow__int_fgets_add │ └── 1.json ├── CWE190_66-CWE190_Integer_Overflow__int_fgets_multiply │ └── 1.json ├── CWE190_66-CWE190_Integer_Overflow__int_fgets_postinc │ └── 1.json ├── CWE190_66-CWE190_Integer_Overflow__int_fgets_preinc │ └── 1.json ├── CWE190_66-CWE190_Integer_Overflow__int_fgets_square │ └── 1.json ├── CWE190_66-CWE190_Integer_Overflow__int_fscanf_add │ └── 1.json ├── CWE190_66-CWE190_Integer_Overflow__int_fscanf_multiply │ └── 1.json ├── CWE190_66-CWE190_Integer_Overflow__int_fscanf_postinc │ └── 1.json ├── CWE190_66-CWE190_Integer_Overflow__int_fscanf_preinc │ └── 1.json ├── CWE190_66-CWE190_Integer_Overflow__int_fscanf_square │ └── 1.json ├── CWE190_66-CWE190_Integer_Overflow__int_listen_socket_add │ └── 1.json ├── CWE190_66-CWE190_Integer_Overflow__int_listen_socket_multiply │ └── 1.json ├── CWE190_66-CWE190_Integer_Overflow__int_listen_socket_postinc │ └── 1.json ├── CWE190_66-CWE190_Integer_Overflow__int_listen_socket_preinc │ └── 1.json ├── CWE190_66-CWE190_Integer_Overflow__int_listen_socket_square │ └── 1.json ├── CWE190_66-CWE190_Integer_Overflow__short_fscanf_add │ └── 1.json ├── CWE190_66-CWE190_Integer_Overflow__short_fscanf_multiply │ └── 1.json ├── CWE190_66-CWE190_Integer_Overflow__short_fscanf_postinc │ └── 1.json ├── CWE190_66-CWE190_Integer_Overflow__short_fscanf_preinc │ └── 1.json ├── CWE190_66-CWE190_Integer_Overflow__short_fscanf_square │ └── 1.json ├── CWE190_66-CWE190_Integer_Overflow__unsigned_int_fscanf_add │ └── 1.json ├── CWE190_66-CWE190_Integer_Overflow__unsigned_int_fscanf_multiply │ └── 1.json ├── CWE190_66-CWE190_Integer_Overflow__unsigned_int_fscanf_postinc │ └── 1.json ├── CWE190_66-CWE190_Integer_Overflow__unsigned_int_fscanf_preinc │ └── 1.json ├── CWE190_66-CWE190_Integer_Overflow__unsigned_int_fscanf_square │ └── 1.json ├── CWE190_83-CWE190_Integer_Overflow__char_fscanf_add │ └── 1.json ├── CWE190_83-CWE190_Integer_Overflow__char_fscanf_multiply │ └── 1.json ├── CWE190_83-CWE190_Integer_Overflow__char_fscanf_square │ └── 1.json ├── CWE190_83-CWE190_Integer_Overflow__int64_t_fscanf_add │ └── 1.json ├── CWE190_83-CWE190_Integer_Overflow__int64_t_fscanf_multiply │ └── 1.json ├── CWE190_83-CWE190_Integer_Overflow__int64_t_fscanf_square │ └── 1.json ├── CWE190_83-CWE190_Integer_Overflow__int_connect_socket_add │ └── 1.json ├── CWE190_83-CWE190_Integer_Overflow__int_connect_socket_multiply │ └── 1.json ├── CWE190_83-CWE190_Integer_Overflow__int_connect_socket_square │ └── 1.json ├── CWE190_83-CWE190_Integer_Overflow__int_fgets_add │ └── 1.json ├── CWE190_83-CWE190_Integer_Overflow__int_fgets_multiply │ └── 1.json ├── CWE190_83-CWE190_Integer_Overflow__int_fgets_square │ └── 1.json ├── CWE190_83-CWE190_Integer_Overflow__int_fscanf_add │ └── 1.json ├── CWE190_83-CWE190_Integer_Overflow__int_fscanf_multiply │ └── 1.json ├── CWE190_83-CWE190_Integer_Overflow__int_fscanf_square │ └── 1.json ├── CWE190_83-CWE190_Integer_Overflow__int_listen_socket_add │ └── 1.json ├── CWE190_83-CWE190_Integer_Overflow__int_listen_socket_multiply │ └── 1.json ├── CWE190_83-CWE190_Integer_Overflow__int_listen_socket_square │ └── 1.json ├── CWE190_83-CWE190_Integer_Overflow__short_fscanf_add │ └── 1.json ├── CWE190_83-CWE190_Integer_Overflow__short_fscanf_multiply │ └── 1.json ├── CWE190_83-CWE190_Integer_Overflow__short_fscanf_square │ └── 1.json ├── CWE190_83-CWE190_Integer_Overflow__unsigned_int_fscanf_add │ └── 1.json ├── CWE190_83-CWE190_Integer_Overflow__unsigned_int_fscanf_multiply │ └── 1.json ├── CWE190_83-CWE190_Integer_Overflow__unsigned_int_fscanf_square │ └── 1.json ├── CWE191_01-CWE191_Integer_Underflow__char_fscanf_multiply │ └── 1.json ├── CWE191_01-CWE191_Integer_Underflow__char_fscanf_postdec │ └── 1.json ├── CWE191_01-CWE191_Integer_Underflow__char_fscanf_predec │ └── 1.json ├── CWE191_01-CWE191_Integer_Underflow__char_fscanf_sub │ └── 1.json ├── CWE191_01-CWE191_Integer_Underflow__int64_t_fscanf_multiply │ └── 1.json ├── CWE191_01-CWE191_Integer_Underflow__int64_t_fscanf_postdec │ └── 1.json ├── CWE191_01-CWE191_Integer_Underflow__int64_t_fscanf_predec │ └── 1.json ├── CWE191_01-CWE191_Integer_Underflow__int64_t_fscanf_sub │ └── 1.json ├── CWE191_01-CWE191_Integer_Underflow__int_connect_socket_multiply │ └── 1.json ├── CWE191_01-CWE191_Integer_Underflow__int_connect_socket_postdec │ └── 1.json ├── CWE191_01-CWE191_Integer_Underflow__int_connect_socket_predec │ └── 1.json ├── CWE191_01-CWE191_Integer_Underflow__int_connect_socket_sub │ └── 1.json ├── CWE191_01-CWE191_Integer_Underflow__int_fgets_multiply │ └── 1.json ├── CWE191_01-CWE191_Integer_Underflow__int_fgets_postdec │ └── 1.json ├── CWE191_01-CWE191_Integer_Underflow__int_fgets_predec │ └── 1.json ├── CWE191_01-CWE191_Integer_Underflow__int_fgets_sub │ └── 1.json ├── CWE191_01-CWE191_Integer_Underflow__int_fscanf_multiply │ └── 1.json ├── CWE191_01-CWE191_Integer_Underflow__int_fscanf_postdec │ └── 1.json ├── CWE191_01-CWE191_Integer_Underflow__int_fscanf_predec │ └── 1.json ├── CWE191_01-CWE191_Integer_Underflow__int_fscanf_sub │ └── 1.json ├── CWE191_01-CWE191_Integer_Underflow__int_listen_socket_multiply │ └── 1.json ├── CWE191_01-CWE191_Integer_Underflow__int_listen_socket_postdec │ └── 1.json ├── CWE191_01-CWE191_Integer_Underflow__int_listen_socket_predec │ └── 1.json ├── CWE191_01-CWE191_Integer_Underflow__int_listen_socket_sub │ └── 1.json ├── CWE191_01-CWE191_Integer_Underflow__short_fscanf_multiply │ └── 1.json ├── CWE191_01-CWE191_Integer_Underflow__short_fscanf_postdec │ └── 1.json ├── CWE191_01-CWE191_Integer_Underflow__short_fscanf_predec │ └── 1.json ├── CWE191_01-CWE191_Integer_Underflow__short_fscanf_sub │ └── 1.json ├── CWE191_01-CWE191_Integer_Underflow__unsigned_int_fscanf_postdec │ └── 1.json ├── CWE191_01-CWE191_Integer_Underflow__unsigned_int_fscanf_predec │ └── 1.json ├── CWE191_01-CWE191_Integer_Underflow__unsigned_int_fscanf_sub │ └── 1.json ├── CWE191_02-CWE191_Integer_Underflow__char_fscanf_multiply │ └── 1.json ├── CWE191_02-CWE191_Integer_Underflow__char_fscanf_postdec │ └── 1.json ├── CWE191_02-CWE191_Integer_Underflow__char_fscanf_predec │ └── 1.json ├── CWE191_02-CWE191_Integer_Underflow__char_fscanf_sub │ └── 1.json ├── CWE191_02-CWE191_Integer_Underflow__int64_t_fscanf_multiply │ └── 1.json ├── CWE191_02-CWE191_Integer_Underflow__int64_t_fscanf_postdec │ └── 1.json ├── CWE191_02-CWE191_Integer_Underflow__int64_t_fscanf_predec │ └── 1.json ├── CWE191_02-CWE191_Integer_Underflow__int64_t_fscanf_sub │ └── 1.json ├── CWE191_02-CWE191_Integer_Underflow__int_connect_socket_multiply │ └── 1.json ├── CWE191_02-CWE191_Integer_Underflow__int_connect_socket_postdec │ └── 1.json ├── CWE191_02-CWE191_Integer_Underflow__int_connect_socket_predec │ └── 1.json ├── CWE191_02-CWE191_Integer_Underflow__int_connect_socket_sub │ └── 1.json ├── CWE191_02-CWE191_Integer_Underflow__int_fgets_multiply │ └── 1.json ├── CWE191_02-CWE191_Integer_Underflow__int_fgets_postdec │ └── 1.json ├── CWE191_02-CWE191_Integer_Underflow__int_fgets_predec │ └── 1.json ├── CWE191_02-CWE191_Integer_Underflow__int_fgets_sub │ └── 1.json ├── CWE191_02-CWE191_Integer_Underflow__int_fscanf_multiply │ └── 1.json ├── CWE191_02-CWE191_Integer_Underflow__int_fscanf_postdec │ └── 1.json ├── CWE191_02-CWE191_Integer_Underflow__int_fscanf_predec │ └── 1.json ├── CWE191_02-CWE191_Integer_Underflow__int_fscanf_sub │ └── 1.json ├── CWE191_02-CWE191_Integer_Underflow__int_listen_socket_multiply │ └── 1.json ├── CWE191_02-CWE191_Integer_Underflow__int_listen_socket_postdec │ └── 1.json ├── CWE191_02-CWE191_Integer_Underflow__int_listen_socket_predec │ └── 1.json ├── CWE191_02-CWE191_Integer_Underflow__int_listen_socket_sub │ └── 1.json ├── CWE191_02-CWE191_Integer_Underflow__short_fscanf_multiply │ └── 1.json ├── CWE191_02-CWE191_Integer_Underflow__short_fscanf_postdec │ └── 1.json ├── CWE191_02-CWE191_Integer_Underflow__short_fscanf_predec │ └── 1.json ├── CWE191_02-CWE191_Integer_Underflow__short_fscanf_sub │ └── 1.json ├── CWE191_02-CWE191_Integer_Underflow__unsigned_int_fscanf_postdec │ └── 1.json ├── CWE191_02-CWE191_Integer_Underflow__unsigned_int_fscanf_predec │ └── 1.json ├── CWE191_02-CWE191_Integer_Underflow__unsigned_int_fscanf_sub │ └── 1.json ├── CWE191_03-CWE191_Integer_Underflow__char_fscanf_multiply │ └── 1.json ├── CWE191_03-CWE191_Integer_Underflow__char_fscanf_postdec │ └── 1.json ├── CWE191_03-CWE191_Integer_Underflow__char_fscanf_predec │ └── 1.json ├── CWE191_03-CWE191_Integer_Underflow__char_fscanf_sub │ └── 1.json ├── CWE191_03-CWE191_Integer_Underflow__int64_t_fscanf_multiply │ └── 1.json ├── CWE191_03-CWE191_Integer_Underflow__int64_t_fscanf_postdec │ └── 1.json ├── CWE191_03-CWE191_Integer_Underflow__int64_t_fscanf_predec │ └── 1.json ├── CWE191_03-CWE191_Integer_Underflow__int64_t_fscanf_sub │ └── 1.json ├── CWE191_03-CWE191_Integer_Underflow__int_connect_socket_multiply │ └── 1.json ├── CWE191_03-CWE191_Integer_Underflow__int_connect_socket_postdec │ └── 1.json ├── CWE191_03-CWE191_Integer_Underflow__int_connect_socket_predec │ └── 1.json ├── CWE191_03-CWE191_Integer_Underflow__int_connect_socket_sub │ └── 1.json ├── CWE191_03-CWE191_Integer_Underflow__int_fgets_multiply │ └── 1.json ├── CWE191_03-CWE191_Integer_Underflow__int_fgets_postdec │ └── 1.json ├── CWE191_03-CWE191_Integer_Underflow__int_fgets_predec │ └── 1.json ├── CWE191_03-CWE191_Integer_Underflow__int_fgets_sub │ └── 1.json ├── CWE191_03-CWE191_Integer_Underflow__int_fscanf_multiply │ └── 1.json ├── CWE191_03-CWE191_Integer_Underflow__int_fscanf_postdec │ └── 1.json ├── CWE191_03-CWE191_Integer_Underflow__int_fscanf_predec │ └── 1.json ├── CWE191_03-CWE191_Integer_Underflow__int_fscanf_sub │ └── 1.json ├── CWE191_03-CWE191_Integer_Underflow__int_listen_socket_multiply │ └── 1.json ├── CWE191_03-CWE191_Integer_Underflow__int_listen_socket_postdec │ └── 1.json ├── CWE191_03-CWE191_Integer_Underflow__int_listen_socket_predec │ └── 1.json ├── CWE191_03-CWE191_Integer_Underflow__int_listen_socket_sub │ └── 1.json ├── CWE191_03-CWE191_Integer_Underflow__short_fscanf_multiply │ └── 1.json ├── CWE191_03-CWE191_Integer_Underflow__short_fscanf_postdec │ └── 1.json ├── CWE191_03-CWE191_Integer_Underflow__short_fscanf_predec │ └── 1.json ├── CWE191_03-CWE191_Integer_Underflow__short_fscanf_sub │ └── 1.json ├── CWE191_03-CWE191_Integer_Underflow__unsigned_int_fscanf_postdec │ └── 1.json ├── CWE191_03-CWE191_Integer_Underflow__unsigned_int_fscanf_predec │ └── 1.json ├── CWE191_03-CWE191_Integer_Underflow__unsigned_int_fscanf_sub │ └── 1.json ├── CWE191_04-CWE191_Integer_Underflow__char_fscanf_multiply │ └── 1.json ├── CWE191_04-CWE191_Integer_Underflow__char_fscanf_postdec │ └── 1.json ├── CWE191_04-CWE191_Integer_Underflow__char_fscanf_predec │ └── 1.json ├── CWE191_04-CWE191_Integer_Underflow__char_fscanf_sub │ └── 1.json ├── CWE191_04-CWE191_Integer_Underflow__int64_t_fscanf_multiply │ └── 1.json ├── CWE191_04-CWE191_Integer_Underflow__int64_t_fscanf_postdec │ └── 1.json ├── CWE191_04-CWE191_Integer_Underflow__int64_t_fscanf_predec │ └── 1.json ├── CWE191_04-CWE191_Integer_Underflow__int64_t_fscanf_sub │ └── 1.json ├── CWE191_04-CWE191_Integer_Underflow__int_connect_socket_multiply │ └── 1.json ├── CWE191_04-CWE191_Integer_Underflow__int_connect_socket_postdec │ └── 1.json ├── CWE191_04-CWE191_Integer_Underflow__int_connect_socket_predec │ └── 1.json ├── CWE191_04-CWE191_Integer_Underflow__int_connect_socket_sub │ └── 1.json ├── CWE191_04-CWE191_Integer_Underflow__int_fgets_multiply │ └── 1.json ├── CWE191_04-CWE191_Integer_Underflow__int_fgets_postdec │ └── 1.json ├── CWE191_04-CWE191_Integer_Underflow__int_fgets_predec │ └── 1.json ├── CWE191_04-CWE191_Integer_Underflow__int_fgets_sub │ └── 1.json ├── CWE191_04-CWE191_Integer_Underflow__int_fscanf_multiply │ └── 1.json ├── CWE191_04-CWE191_Integer_Underflow__int_fscanf_postdec │ └── 1.json ├── CWE191_04-CWE191_Integer_Underflow__int_fscanf_predec │ └── 1.json ├── CWE191_04-CWE191_Integer_Underflow__int_fscanf_sub │ └── 1.json ├── CWE191_04-CWE191_Integer_Underflow__int_listen_socket_multiply │ └── 1.json ├── CWE191_04-CWE191_Integer_Underflow__int_listen_socket_postdec │ └── 1.json ├── CWE191_04-CWE191_Integer_Underflow__int_listen_socket_predec │ └── 1.json ├── CWE191_04-CWE191_Integer_Underflow__int_listen_socket_sub │ └── 1.json ├── CWE191_04-CWE191_Integer_Underflow__short_fscanf_multiply │ └── 1.json ├── CWE191_04-CWE191_Integer_Underflow__short_fscanf_postdec │ └── 1.json ├── CWE191_04-CWE191_Integer_Underflow__short_fscanf_predec │ └── 1.json ├── CWE191_04-CWE191_Integer_Underflow__short_fscanf_sub │ └── 1.json ├── CWE191_04-CWE191_Integer_Underflow__unsigned_int_fscanf_postdec │ └── 1.json ├── CWE191_04-CWE191_Integer_Underflow__unsigned_int_fscanf_predec │ └── 1.json ├── CWE191_04-CWE191_Integer_Underflow__unsigned_int_fscanf_sub │ └── 1.json ├── CWE191_05-CWE191_Integer_Underflow__char_fscanf_multiply │ └── 1.json ├── CWE191_05-CWE191_Integer_Underflow__char_fscanf_postdec │ └── 1.json ├── CWE191_05-CWE191_Integer_Underflow__char_fscanf_predec │ └── 1.json ├── CWE191_05-CWE191_Integer_Underflow__char_fscanf_sub │ └── 1.json ├── CWE191_05-CWE191_Integer_Underflow__int64_t_fscanf_multiply │ └── 1.json ├── CWE191_05-CWE191_Integer_Underflow__int64_t_fscanf_postdec │ └── 1.json ├── CWE191_05-CWE191_Integer_Underflow__int64_t_fscanf_predec │ └── 1.json ├── CWE191_05-CWE191_Integer_Underflow__int64_t_fscanf_sub │ └── 1.json ├── CWE191_05-CWE191_Integer_Underflow__int_connect_socket_multiply │ └── 1.json ├── CWE191_05-CWE191_Integer_Underflow__int_connect_socket_postdec │ └── 1.json ├── CWE191_05-CWE191_Integer_Underflow__int_connect_socket_predec │ └── 1.json ├── CWE191_05-CWE191_Integer_Underflow__int_connect_socket_sub │ └── 1.json ├── CWE191_05-CWE191_Integer_Underflow__int_fgets_multiply │ └── 1.json ├── CWE191_05-CWE191_Integer_Underflow__int_fgets_postdec │ └── 1.json ├── CWE191_05-CWE191_Integer_Underflow__int_fgets_predec │ └── 1.json ├── CWE191_05-CWE191_Integer_Underflow__int_fgets_sub │ └── 1.json ├── CWE191_05-CWE191_Integer_Underflow__int_fscanf_multiply │ └── 1.json ├── CWE191_05-CWE191_Integer_Underflow__int_fscanf_postdec │ └── 1.json ├── CWE191_05-CWE191_Integer_Underflow__int_fscanf_predec │ └── 1.json ├── CWE191_05-CWE191_Integer_Underflow__int_fscanf_sub │ └── 1.json ├── CWE191_05-CWE191_Integer_Underflow__int_listen_socket_multiply │ └── 1.json ├── CWE191_05-CWE191_Integer_Underflow__int_listen_socket_postdec │ └── 1.json ├── CWE191_05-CWE191_Integer_Underflow__int_listen_socket_predec │ └── 1.json ├── CWE191_05-CWE191_Integer_Underflow__int_listen_socket_sub │ └── 1.json ├── CWE191_05-CWE191_Integer_Underflow__short_fscanf_multiply │ └── 1.json ├── CWE191_05-CWE191_Integer_Underflow__short_fscanf_postdec │ └── 1.json ├── CWE191_05-CWE191_Integer_Underflow__short_fscanf_predec │ └── 1.json ├── CWE191_05-CWE191_Integer_Underflow__short_fscanf_sub │ └── 1.json ├── CWE191_05-CWE191_Integer_Underflow__unsigned_int_fscanf_postdec │ └── 1.json ├── CWE191_05-CWE191_Integer_Underflow__unsigned_int_fscanf_predec │ └── 1.json ├── CWE191_05-CWE191_Integer_Underflow__unsigned_int_fscanf_sub │ └── 1.json ├── CWE191_06-CWE191_Integer_Underflow__char_fscanf_multiply │ └── 1.json ├── CWE191_06-CWE191_Integer_Underflow__char_fscanf_postdec │ └── 1.json ├── CWE191_06-CWE191_Integer_Underflow__char_fscanf_predec │ └── 1.json ├── CWE191_06-CWE191_Integer_Underflow__char_fscanf_sub │ └── 1.json ├── CWE191_06-CWE191_Integer_Underflow__int64_t_fscanf_multiply │ └── 1.json ├── CWE191_06-CWE191_Integer_Underflow__int64_t_fscanf_postdec │ └── 1.json ├── CWE191_06-CWE191_Integer_Underflow__int64_t_fscanf_predec │ └── 1.json ├── CWE191_06-CWE191_Integer_Underflow__int64_t_fscanf_sub │ └── 1.json ├── CWE191_06-CWE191_Integer_Underflow__int_connect_socket_multiply │ └── 1.json ├── CWE191_06-CWE191_Integer_Underflow__int_connect_socket_postdec │ └── 1.json ├── CWE191_06-CWE191_Integer_Underflow__int_connect_socket_predec │ └── 1.json ├── CWE191_06-CWE191_Integer_Underflow__int_connect_socket_sub │ └── 1.json ├── CWE191_06-CWE191_Integer_Underflow__int_fgets_multiply │ └── 1.json ├── CWE191_06-CWE191_Integer_Underflow__int_fgets_postdec │ └── 1.json ├── CWE191_06-CWE191_Integer_Underflow__int_fgets_predec │ └── 1.json ├── CWE191_06-CWE191_Integer_Underflow__int_fgets_sub │ └── 1.json ├── CWE191_06-CWE191_Integer_Underflow__int_fscanf_multiply │ └── 1.json ├── CWE191_06-CWE191_Integer_Underflow__int_fscanf_postdec │ └── 1.json ├── CWE191_06-CWE191_Integer_Underflow__int_fscanf_predec │ └── 1.json ├── CWE191_06-CWE191_Integer_Underflow__int_fscanf_sub │ └── 1.json ├── CWE191_06-CWE191_Integer_Underflow__int_listen_socket_multiply │ └── 1.json ├── CWE191_06-CWE191_Integer_Underflow__int_listen_socket_postdec │ └── 1.json ├── CWE191_06-CWE191_Integer_Underflow__int_listen_socket_predec │ └── 1.json ├── CWE191_06-CWE191_Integer_Underflow__int_listen_socket_sub │ └── 1.json ├── CWE191_06-CWE191_Integer_Underflow__short_fscanf_multiply │ └── 1.json ├── CWE191_06-CWE191_Integer_Underflow__short_fscanf_postdec │ └── 1.json ├── CWE191_06-CWE191_Integer_Underflow__short_fscanf_predec │ └── 1.json ├── CWE191_06-CWE191_Integer_Underflow__short_fscanf_sub │ └── 1.json ├── CWE191_06-CWE191_Integer_Underflow__unsigned_int_fscanf_postdec │ └── 1.json ├── CWE191_06-CWE191_Integer_Underflow__unsigned_int_fscanf_predec │ └── 1.json ├── CWE191_06-CWE191_Integer_Underflow__unsigned_int_fscanf_sub │ └── 1.json ├── CWE191_07-CWE191_Integer_Underflow__char_fscanf_multiply │ └── 1.json ├── CWE191_07-CWE191_Integer_Underflow__char_fscanf_postdec │ └── 1.json ├── CWE191_07-CWE191_Integer_Underflow__char_fscanf_predec │ └── 1.json ├── CWE191_07-CWE191_Integer_Underflow__char_fscanf_sub │ └── 1.json ├── CWE191_07-CWE191_Integer_Underflow__int64_t_fscanf_multiply │ └── 1.json ├── CWE191_07-CWE191_Integer_Underflow__int64_t_fscanf_postdec │ └── 1.json ├── CWE191_07-CWE191_Integer_Underflow__int64_t_fscanf_predec │ └── 1.json ├── CWE191_07-CWE191_Integer_Underflow__int64_t_fscanf_sub │ └── 1.json ├── CWE191_07-CWE191_Integer_Underflow__int_connect_socket_multiply │ └── 1.json ├── CWE191_07-CWE191_Integer_Underflow__int_connect_socket_postdec │ └── 1.json ├── CWE191_07-CWE191_Integer_Underflow__int_connect_socket_predec │ └── 1.json ├── CWE191_07-CWE191_Integer_Underflow__int_connect_socket_sub │ └── 1.json ├── CWE191_07-CWE191_Integer_Underflow__int_fgets_multiply │ └── 1.json ├── CWE191_07-CWE191_Integer_Underflow__int_fgets_postdec │ └── 1.json ├── CWE191_07-CWE191_Integer_Underflow__int_fgets_predec │ └── 1.json ├── CWE191_07-CWE191_Integer_Underflow__int_fgets_sub │ └── 1.json ├── CWE191_07-CWE191_Integer_Underflow__int_fscanf_multiply │ └── 1.json ├── CWE191_07-CWE191_Integer_Underflow__int_fscanf_postdec │ └── 1.json ├── CWE191_07-CWE191_Integer_Underflow__int_fscanf_predec │ └── 1.json ├── CWE191_07-CWE191_Integer_Underflow__int_fscanf_sub │ └── 1.json ├── CWE191_07-CWE191_Integer_Underflow__int_listen_socket_multiply │ └── 1.json ├── CWE191_07-CWE191_Integer_Underflow__int_listen_socket_postdec │ └── 1.json ├── CWE191_07-CWE191_Integer_Underflow__int_listen_socket_predec │ └── 1.json ├── CWE191_07-CWE191_Integer_Underflow__int_listen_socket_sub │ └── 1.json ├── CWE191_07-CWE191_Integer_Underflow__short_fscanf_multiply │ └── 1.json ├── CWE191_07-CWE191_Integer_Underflow__short_fscanf_postdec │ └── 1.json ├── CWE191_07-CWE191_Integer_Underflow__short_fscanf_predec │ └── 1.json ├── CWE191_07-CWE191_Integer_Underflow__short_fscanf_sub │ └── 1.json ├── CWE191_07-CWE191_Integer_Underflow__unsigned_int_fscanf_postdec │ └── 1.json ├── CWE191_07-CWE191_Integer_Underflow__unsigned_int_fscanf_predec │ └── 1.json ├── CWE191_07-CWE191_Integer_Underflow__unsigned_int_fscanf_sub │ └── 1.json ├── CWE191_08-CWE191_Integer_Underflow__char_fscanf_multiply │ └── 1.json ├── CWE191_08-CWE191_Integer_Underflow__char_fscanf_postdec │ └── 1.json ├── CWE191_08-CWE191_Integer_Underflow__char_fscanf_predec │ └── 1.json ├── CWE191_08-CWE191_Integer_Underflow__char_fscanf_sub │ └── 1.json ├── CWE191_08-CWE191_Integer_Underflow__int64_t_fscanf_multiply │ └── 1.json ├── CWE191_08-CWE191_Integer_Underflow__int64_t_fscanf_postdec │ └── 1.json ├── CWE191_08-CWE191_Integer_Underflow__int64_t_fscanf_predec │ └── 1.json ├── CWE191_08-CWE191_Integer_Underflow__int64_t_fscanf_sub │ └── 1.json ├── CWE191_08-CWE191_Integer_Underflow__int_connect_socket_multiply │ └── 1.json ├── CWE191_08-CWE191_Integer_Underflow__int_connect_socket_postdec │ └── 1.json ├── CWE191_08-CWE191_Integer_Underflow__int_connect_socket_predec │ └── 1.json ├── CWE191_08-CWE191_Integer_Underflow__int_connect_socket_sub │ └── 1.json ├── CWE191_08-CWE191_Integer_Underflow__int_fgets_multiply │ └── 1.json ├── CWE191_08-CWE191_Integer_Underflow__int_fgets_postdec │ └── 1.json ├── CWE191_08-CWE191_Integer_Underflow__int_fgets_predec │ └── 1.json ├── CWE191_08-CWE191_Integer_Underflow__int_fgets_sub │ └── 1.json ├── CWE191_08-CWE191_Integer_Underflow__int_fscanf_multiply │ └── 1.json ├── CWE191_08-CWE191_Integer_Underflow__int_fscanf_postdec │ └── 1.json ├── CWE191_08-CWE191_Integer_Underflow__int_fscanf_predec │ └── 1.json ├── CWE191_08-CWE191_Integer_Underflow__int_fscanf_sub │ └── 1.json ├── CWE191_08-CWE191_Integer_Underflow__int_listen_socket_multiply │ └── 1.json ├── CWE191_08-CWE191_Integer_Underflow__int_listen_socket_postdec │ └── 1.json ├── CWE191_08-CWE191_Integer_Underflow__int_listen_socket_predec │ └── 1.json ├── CWE191_08-CWE191_Integer_Underflow__int_listen_socket_sub │ └── 1.json ├── CWE191_08-CWE191_Integer_Underflow__short_fscanf_multiply │ └── 1.json ├── CWE191_08-CWE191_Integer_Underflow__short_fscanf_postdec │ └── 1.json ├── CWE191_08-CWE191_Integer_Underflow__short_fscanf_predec │ └── 1.json ├── CWE191_08-CWE191_Integer_Underflow__short_fscanf_sub │ └── 1.json ├── CWE191_08-CWE191_Integer_Underflow__unsigned_int_fscanf_postdec │ └── 1.json ├── CWE191_08-CWE191_Integer_Underflow__unsigned_int_fscanf_predec │ └── 1.json ├── CWE191_08-CWE191_Integer_Underflow__unsigned_int_fscanf_sub │ └── 1.json ├── CWE191_09-CWE191_Integer_Underflow__char_fscanf_multiply │ └── 1.json ├── CWE191_09-CWE191_Integer_Underflow__char_fscanf_postdec │ └── 1.json ├── CWE191_09-CWE191_Integer_Underflow__char_fscanf_predec │ └── 1.json ├── CWE191_09-CWE191_Integer_Underflow__char_fscanf_sub │ └── 1.json ├── CWE191_09-CWE191_Integer_Underflow__int64_t_fscanf_multiply │ └── 1.json ├── CWE191_09-CWE191_Integer_Underflow__int64_t_fscanf_postdec │ └── 1.json ├── CWE191_09-CWE191_Integer_Underflow__int64_t_fscanf_predec │ └── 1.json ├── CWE191_09-CWE191_Integer_Underflow__int64_t_fscanf_sub │ └── 1.json ├── CWE191_09-CWE191_Integer_Underflow__int_connect_socket_multiply │ └── 1.json ├── CWE191_09-CWE191_Integer_Underflow__int_connect_socket_postdec │ └── 1.json ├── CWE191_09-CWE191_Integer_Underflow__int_connect_socket_predec │ └── 1.json ├── CWE191_09-CWE191_Integer_Underflow__int_connect_socket_sub │ └── 1.json ├── CWE191_09-CWE191_Integer_Underflow__int_fgets_multiply │ └── 1.json ├── CWE191_09-CWE191_Integer_Underflow__int_fgets_postdec │ └── 1.json ├── CWE191_09-CWE191_Integer_Underflow__int_fgets_predec │ └── 1.json ├── CWE191_09-CWE191_Integer_Underflow__int_fgets_sub │ └── 1.json ├── CWE191_09-CWE191_Integer_Underflow__int_fscanf_multiply │ └── 1.json ├── CWE191_09-CWE191_Integer_Underflow__int_fscanf_postdec │ └── 1.json ├── CWE191_09-CWE191_Integer_Underflow__int_fscanf_predec │ └── 1.json ├── CWE191_09-CWE191_Integer_Underflow__int_fscanf_sub │ └── 1.json ├── CWE191_09-CWE191_Integer_Underflow__int_listen_socket_multiply │ └── 1.json ├── CWE191_09-CWE191_Integer_Underflow__int_listen_socket_postdec │ └── 1.json ├── CWE191_09-CWE191_Integer_Underflow__int_listen_socket_predec │ └── 1.json ├── CWE191_09-CWE191_Integer_Underflow__int_listen_socket_sub │ └── 1.json ├── CWE191_09-CWE191_Integer_Underflow__short_fscanf_multiply │ └── 1.json ├── CWE191_09-CWE191_Integer_Underflow__short_fscanf_postdec │ └── 1.json ├── CWE191_09-CWE191_Integer_Underflow__short_fscanf_predec │ └── 1.json ├── CWE191_09-CWE191_Integer_Underflow__short_fscanf_sub │ └── 1.json ├── CWE191_09-CWE191_Integer_Underflow__unsigned_int_fscanf_postdec │ └── 1.json ├── CWE191_09-CWE191_Integer_Underflow__unsigned_int_fscanf_predec │ └── 1.json ├── CWE191_09-CWE191_Integer_Underflow__unsigned_int_fscanf_sub │ └── 1.json ├── CWE191_10-CWE191_Integer_Underflow__char_fscanf_multiply │ └── 1.json ├── CWE191_10-CWE191_Integer_Underflow__char_fscanf_postdec │ └── 1.json ├── CWE191_10-CWE191_Integer_Underflow__char_fscanf_predec │ └── 1.json ├── CWE191_10-CWE191_Integer_Underflow__char_fscanf_sub │ └── 1.json ├── CWE191_10-CWE191_Integer_Underflow__int64_t_fscanf_multiply │ └── 1.json ├── CWE191_10-CWE191_Integer_Underflow__int64_t_fscanf_postdec │ └── 1.json ├── CWE191_10-CWE191_Integer_Underflow__int64_t_fscanf_predec │ └── 1.json ├── CWE191_10-CWE191_Integer_Underflow__int64_t_fscanf_sub │ └── 1.json ├── CWE191_10-CWE191_Integer_Underflow__int_connect_socket_multiply │ └── 1.json ├── CWE191_10-CWE191_Integer_Underflow__int_connect_socket_postdec │ └── 1.json ├── CWE191_10-CWE191_Integer_Underflow__int_connect_socket_predec │ └── 1.json ├── CWE191_10-CWE191_Integer_Underflow__int_connect_socket_sub │ └── 1.json ├── CWE191_10-CWE191_Integer_Underflow__int_fgets_multiply │ └── 1.json ├── CWE191_10-CWE191_Integer_Underflow__int_fgets_postdec │ └── 1.json ├── CWE191_10-CWE191_Integer_Underflow__int_fgets_predec │ └── 1.json ├── CWE191_10-CWE191_Integer_Underflow__int_fgets_sub │ └── 1.json ├── CWE191_10-CWE191_Integer_Underflow__int_fscanf_multiply │ └── 1.json ├── CWE191_10-CWE191_Integer_Underflow__int_fscanf_postdec │ └── 1.json ├── CWE191_10-CWE191_Integer_Underflow__int_fscanf_predec │ └── 1.json ├── CWE191_10-CWE191_Integer_Underflow__int_fscanf_sub │ └── 1.json ├── CWE191_10-CWE191_Integer_Underflow__int_listen_socket_multiply │ └── 1.json ├── CWE191_10-CWE191_Integer_Underflow__int_listen_socket_postdec │ └── 1.json ├── CWE191_10-CWE191_Integer_Underflow__int_listen_socket_predec │ └── 1.json ├── CWE191_10-CWE191_Integer_Underflow__int_listen_socket_sub │ └── 1.json ├── CWE191_10-CWE191_Integer_Underflow__short_fscanf_multiply │ └── 1.json ├── CWE191_10-CWE191_Integer_Underflow__short_fscanf_postdec │ └── 1.json ├── CWE191_10-CWE191_Integer_Underflow__short_fscanf_predec │ └── 1.json ├── CWE191_10-CWE191_Integer_Underflow__short_fscanf_sub │ └── 1.json ├── CWE191_10-CWE191_Integer_Underflow__unsigned_int_fscanf_postdec │ └── 1.json ├── CWE191_10-CWE191_Integer_Underflow__unsigned_int_fscanf_predec │ └── 1.json ├── CWE191_10-CWE191_Integer_Underflow__unsigned_int_fscanf_sub │ └── 1.json ├── CWE191_11-CWE191_Integer_Underflow__char_fscanf_multiply │ └── 1.json ├── CWE191_11-CWE191_Integer_Underflow__char_fscanf_postdec │ └── 1.json ├── CWE191_11-CWE191_Integer_Underflow__char_fscanf_predec │ └── 1.json ├── CWE191_11-CWE191_Integer_Underflow__char_fscanf_sub │ └── 1.json ├── CWE191_11-CWE191_Integer_Underflow__int64_t_fscanf_multiply │ └── 1.json ├── CWE191_11-CWE191_Integer_Underflow__int64_t_fscanf_postdec │ └── 1.json ├── CWE191_11-CWE191_Integer_Underflow__int64_t_fscanf_predec │ └── 1.json ├── CWE191_11-CWE191_Integer_Underflow__int64_t_fscanf_sub │ └── 1.json ├── CWE191_11-CWE191_Integer_Underflow__int_connect_socket_multiply │ └── 1.json ├── CWE191_11-CWE191_Integer_Underflow__int_connect_socket_postdec │ └── 1.json ├── CWE191_11-CWE191_Integer_Underflow__int_connect_socket_predec │ └── 1.json ├── CWE191_11-CWE191_Integer_Underflow__int_connect_socket_sub │ └── 1.json ├── CWE191_11-CWE191_Integer_Underflow__int_fgets_multiply │ └── 1.json ├── CWE191_11-CWE191_Integer_Underflow__int_fgets_postdec │ └── 1.json ├── CWE191_11-CWE191_Integer_Underflow__int_fgets_predec │ └── 1.json ├── CWE191_11-CWE191_Integer_Underflow__int_fgets_sub │ └── 1.json ├── CWE191_11-CWE191_Integer_Underflow__int_fscanf_multiply │ └── 1.json ├── CWE191_11-CWE191_Integer_Underflow__int_fscanf_postdec │ └── 1.json ├── CWE191_11-CWE191_Integer_Underflow__int_fscanf_predec │ └── 1.json ├── CWE191_11-CWE191_Integer_Underflow__int_fscanf_sub │ └── 1.json ├── CWE191_11-CWE191_Integer_Underflow__int_listen_socket_multiply │ └── 1.json ├── CWE191_11-CWE191_Integer_Underflow__int_listen_socket_postdec │ └── 1.json ├── CWE191_11-CWE191_Integer_Underflow__int_listen_socket_predec │ └── 1.json ├── CWE191_11-CWE191_Integer_Underflow__int_listen_socket_sub │ └── 1.json ├── CWE191_11-CWE191_Integer_Underflow__short_fscanf_multiply │ └── 1.json ├── CWE191_11-CWE191_Integer_Underflow__short_fscanf_postdec │ └── 1.json ├── CWE191_11-CWE191_Integer_Underflow__short_fscanf_predec │ └── 1.json ├── CWE191_11-CWE191_Integer_Underflow__short_fscanf_sub │ └── 1.json ├── CWE191_11-CWE191_Integer_Underflow__unsigned_int_fscanf_postdec │ └── 1.json ├── CWE191_11-CWE191_Integer_Underflow__unsigned_int_fscanf_predec │ └── 1.json ├── CWE191_11-CWE191_Integer_Underflow__unsigned_int_fscanf_sub │ └── 1.json ├── CWE191_12-CWE191_Integer_Underflow__char_fscanf_multiply │ ├── 1.json │ └── 2.json ├── CWE191_12-CWE191_Integer_Underflow__char_fscanf_postdec │ ├── 1.json │ └── 2.json ├── CWE191_12-CWE191_Integer_Underflow__char_fscanf_predec │ ├── 1.json │ └── 2.json ├── CWE191_12-CWE191_Integer_Underflow__char_fscanf_sub │ ├── 1.json │ └── 2.json ├── CWE191_12-CWE191_Integer_Underflow__int64_t_fscanf_multiply │ ├── 1.json │ └── 2.json ├── CWE191_12-CWE191_Integer_Underflow__int64_t_fscanf_postdec │ ├── 1.json │ └── 2.json ├── CWE191_12-CWE191_Integer_Underflow__int64_t_fscanf_predec │ ├── 1.json │ └── 2.json ├── CWE191_12-CWE191_Integer_Underflow__int64_t_fscanf_sub │ ├── 1.json │ └── 2.json ├── CWE191_12-CWE191_Integer_Underflow__int_connect_socket_multiply │ ├── 1.json │ └── 2.json ├── CWE191_12-CWE191_Integer_Underflow__int_connect_socket_postdec │ ├── 1.json │ └── 2.json ├── CWE191_12-CWE191_Integer_Underflow__int_connect_socket_predec │ ├── 1.json │ └── 2.json ├── CWE191_12-CWE191_Integer_Underflow__int_connect_socket_sub │ ├── 1.json │ └── 2.json ├── CWE191_12-CWE191_Integer_Underflow__int_fgets_multiply │ ├── 1.json │ └── 2.json ├── CWE191_12-CWE191_Integer_Underflow__int_fgets_postdec │ ├── 1.json │ └── 2.json ├── CWE191_12-CWE191_Integer_Underflow__int_fgets_predec │ ├── 1.json │ └── 2.json ├── CWE191_12-CWE191_Integer_Underflow__int_fgets_sub │ ├── 1.json │ └── 2.json ├── CWE191_12-CWE191_Integer_Underflow__int_fscanf_multiply │ ├── 1.json │ └── 2.json ├── CWE191_12-CWE191_Integer_Underflow__int_fscanf_postdec │ ├── 1.json │ └── 2.json ├── CWE191_12-CWE191_Integer_Underflow__int_fscanf_predec │ ├── 1.json │ └── 2.json ├── CWE191_12-CWE191_Integer_Underflow__int_fscanf_sub │ ├── 1.json │ └── 2.json ├── CWE191_12-CWE191_Integer_Underflow__int_listen_socket_multiply │ ├── 1.json │ └── 2.json ├── CWE191_12-CWE191_Integer_Underflow__int_listen_socket_postdec │ ├── 1.json │ └── 2.json ├── CWE191_12-CWE191_Integer_Underflow__int_listen_socket_predec │ ├── 1.json │ └── 2.json ├── CWE191_12-CWE191_Integer_Underflow__int_listen_socket_sub │ ├── 1.json │ └── 2.json ├── CWE191_12-CWE191_Integer_Underflow__short_fscanf_multiply │ ├── 1.json │ └── 2.json ├── CWE191_12-CWE191_Integer_Underflow__short_fscanf_postdec │ ├── 1.json │ └── 2.json ├── CWE191_12-CWE191_Integer_Underflow__short_fscanf_predec │ ├── 1.json │ └── 2.json ├── CWE191_12-CWE191_Integer_Underflow__short_fscanf_sub │ ├── 1.json │ └── 2.json ├── CWE191_12-CWE191_Integer_Underflow__unsigned_int_fscanf_postdec │ ├── 1.json │ └── 2.json ├── CWE191_12-CWE191_Integer_Underflow__unsigned_int_fscanf_predec │ ├── 1.json │ └── 2.json ├── CWE191_12-CWE191_Integer_Underflow__unsigned_int_fscanf_sub │ ├── 1.json │ └── 2.json ├── CWE191_13-CWE191_Integer_Underflow__char_fscanf_multiply │ └── 1.json ├── CWE191_13-CWE191_Integer_Underflow__char_fscanf_postdec │ └── 1.json ├── CWE191_13-CWE191_Integer_Underflow__char_fscanf_predec │ └── 1.json ├── CWE191_13-CWE191_Integer_Underflow__char_fscanf_sub │ └── 1.json ├── CWE191_13-CWE191_Integer_Underflow__int64_t_fscanf_multiply │ └── 1.json ├── CWE191_13-CWE191_Integer_Underflow__int64_t_fscanf_postdec │ └── 1.json ├── CWE191_13-CWE191_Integer_Underflow__int64_t_fscanf_predec │ └── 1.json ├── CWE191_13-CWE191_Integer_Underflow__int64_t_fscanf_sub │ └── 1.json ├── CWE191_13-CWE191_Integer_Underflow__int_connect_socket_multiply │ └── 1.json ├── CWE191_13-CWE191_Integer_Underflow__int_connect_socket_postdec │ └── 1.json ├── CWE191_13-CWE191_Integer_Underflow__int_connect_socket_predec │ └── 1.json ├── CWE191_13-CWE191_Integer_Underflow__int_connect_socket_sub │ └── 1.json ├── CWE191_13-CWE191_Integer_Underflow__int_fgets_multiply │ └── 1.json ├── CWE191_13-CWE191_Integer_Underflow__int_fgets_postdec │ └── 1.json ├── CWE191_13-CWE191_Integer_Underflow__int_fgets_predec │ └── 1.json ├── CWE191_13-CWE191_Integer_Underflow__int_fgets_sub │ └── 1.json ├── CWE191_13-CWE191_Integer_Underflow__int_fscanf_multiply │ └── 1.json ├── CWE191_13-CWE191_Integer_Underflow__int_fscanf_postdec │ └── 1.json ├── CWE191_13-CWE191_Integer_Underflow__int_fscanf_predec │ └── 1.json ├── CWE191_13-CWE191_Integer_Underflow__int_fscanf_sub │ └── 1.json ├── CWE191_13-CWE191_Integer_Underflow__int_listen_socket_multiply │ └── 1.json ├── CWE191_13-CWE191_Integer_Underflow__int_listen_socket_postdec │ └── 1.json ├── CWE191_13-CWE191_Integer_Underflow__int_listen_socket_predec │ └── 1.json ├── CWE191_13-CWE191_Integer_Underflow__int_listen_socket_sub │ └── 1.json ├── CWE191_13-CWE191_Integer_Underflow__short_fscanf_multiply │ └── 1.json ├── CWE191_13-CWE191_Integer_Underflow__short_fscanf_postdec │ └── 1.json ├── CWE191_13-CWE191_Integer_Underflow__short_fscanf_predec │ └── 1.json ├── CWE191_13-CWE191_Integer_Underflow__short_fscanf_sub │ └── 1.json ├── CWE191_13-CWE191_Integer_Underflow__unsigned_int_fscanf_postdec │ └── 1.json ├── CWE191_13-CWE191_Integer_Underflow__unsigned_int_fscanf_predec │ └── 1.json ├── CWE191_13-CWE191_Integer_Underflow__unsigned_int_fscanf_sub │ └── 1.json ├── CWE191_14-CWE191_Integer_Underflow__char_fscanf_multiply │ └── 1.json ├── CWE191_14-CWE191_Integer_Underflow__char_fscanf_postdec │ └── 1.json ├── CWE191_14-CWE191_Integer_Underflow__char_fscanf_predec │ └── 1.json ├── CWE191_14-CWE191_Integer_Underflow__char_fscanf_sub │ └── 1.json ├── CWE191_14-CWE191_Integer_Underflow__int64_t_fscanf_multiply │ └── 1.json ├── CWE191_14-CWE191_Integer_Underflow__int64_t_fscanf_postdec │ └── 1.json ├── CWE191_14-CWE191_Integer_Underflow__int64_t_fscanf_predec │ └── 1.json ├── CWE191_14-CWE191_Integer_Underflow__int64_t_fscanf_sub │ └── 1.json ├── CWE191_14-CWE191_Integer_Underflow__int_connect_socket_multiply │ └── 1.json ├── CWE191_14-CWE191_Integer_Underflow__int_connect_socket_postdec │ └── 1.json ├── CWE191_14-CWE191_Integer_Underflow__int_connect_socket_predec │ └── 1.json ├── CWE191_14-CWE191_Integer_Underflow__int_connect_socket_sub │ └── 1.json ├── CWE191_14-CWE191_Integer_Underflow__int_fgets_multiply │ └── 1.json ├── CWE191_14-CWE191_Integer_Underflow__int_fgets_postdec │ └── 1.json ├── CWE191_14-CWE191_Integer_Underflow__int_fgets_predec │ └── 1.json ├── CWE191_14-CWE191_Integer_Underflow__int_fgets_sub │ └── 1.json ├── CWE191_14-CWE191_Integer_Underflow__int_fscanf_multiply │ └── 1.json ├── CWE191_14-CWE191_Integer_Underflow__int_fscanf_postdec │ └── 1.json ├── CWE191_14-CWE191_Integer_Underflow__int_fscanf_predec │ └── 1.json ├── CWE191_14-CWE191_Integer_Underflow__int_fscanf_sub │ └── 1.json ├── CWE191_14-CWE191_Integer_Underflow__int_listen_socket_multiply │ └── 1.json ├── CWE191_14-CWE191_Integer_Underflow__int_listen_socket_postdec │ └── 1.json ├── CWE191_14-CWE191_Integer_Underflow__int_listen_socket_predec │ └── 1.json ├── CWE191_14-CWE191_Integer_Underflow__int_listen_socket_sub │ └── 1.json ├── CWE191_14-CWE191_Integer_Underflow__short_fscanf_multiply │ └── 1.json ├── CWE191_14-CWE191_Integer_Underflow__short_fscanf_postdec │ └── 1.json ├── CWE191_14-CWE191_Integer_Underflow__short_fscanf_predec │ └── 1.json ├── CWE191_14-CWE191_Integer_Underflow__short_fscanf_sub │ └── 1.json ├── CWE191_14-CWE191_Integer_Underflow__unsigned_int_fscanf_postdec │ └── 1.json ├── CWE191_14-CWE191_Integer_Underflow__unsigned_int_fscanf_predec │ └── 1.json ├── CWE191_14-CWE191_Integer_Underflow__unsigned_int_fscanf_sub │ └── 1.json ├── CWE191_15-CWE191_Integer_Underflow__char_fscanf_multiply │ └── 1.json ├── CWE191_15-CWE191_Integer_Underflow__char_fscanf_postdec │ └── 1.json ├── CWE191_15-CWE191_Integer_Underflow__char_fscanf_predec │ └── 1.json ├── CWE191_15-CWE191_Integer_Underflow__char_fscanf_sub │ └── 1.json ├── CWE191_15-CWE191_Integer_Underflow__int64_t_fscanf_multiply │ └── 1.json ├── CWE191_15-CWE191_Integer_Underflow__int64_t_fscanf_postdec │ └── 1.json ├── CWE191_15-CWE191_Integer_Underflow__int64_t_fscanf_predec │ └── 1.json ├── CWE191_15-CWE191_Integer_Underflow__int64_t_fscanf_sub │ └── 1.json ├── CWE191_15-CWE191_Integer_Underflow__int_connect_socket_multiply │ └── 1.json ├── CWE191_15-CWE191_Integer_Underflow__int_connect_socket_postdec │ └── 1.json ├── CWE191_15-CWE191_Integer_Underflow__int_connect_socket_predec │ └── 1.json ├── CWE191_15-CWE191_Integer_Underflow__int_connect_socket_sub │ └── 1.json ├── CWE191_15-CWE191_Integer_Underflow__int_fgets_multiply │ └── 1.json ├── CWE191_15-CWE191_Integer_Underflow__int_fgets_postdec │ └── 1.json ├── CWE191_15-CWE191_Integer_Underflow__int_fgets_predec │ └── 1.json ├── CWE191_15-CWE191_Integer_Underflow__int_fgets_sub │ └── 1.json ├── CWE191_15-CWE191_Integer_Underflow__int_fscanf_multiply │ └── 1.json ├── CWE191_15-CWE191_Integer_Underflow__int_fscanf_postdec │ └── 1.json ├── CWE191_15-CWE191_Integer_Underflow__int_fscanf_predec │ └── 1.json ├── CWE191_15-CWE191_Integer_Underflow__int_fscanf_sub │ └── 1.json ├── CWE191_15-CWE191_Integer_Underflow__int_listen_socket_multiply │ └── 1.json ├── CWE191_15-CWE191_Integer_Underflow__int_listen_socket_postdec │ └── 1.json ├── CWE191_15-CWE191_Integer_Underflow__int_listen_socket_predec │ └── 1.json ├── CWE191_15-CWE191_Integer_Underflow__int_listen_socket_sub │ └── 1.json ├── CWE191_15-CWE191_Integer_Underflow__short_fscanf_multiply │ └── 1.json ├── CWE191_15-CWE191_Integer_Underflow__short_fscanf_postdec │ └── 1.json ├── CWE191_15-CWE191_Integer_Underflow__short_fscanf_predec │ └── 1.json ├── CWE191_15-CWE191_Integer_Underflow__short_fscanf_sub │ └── 1.json ├── CWE191_15-CWE191_Integer_Underflow__unsigned_int_fscanf_postdec │ └── 1.json ├── CWE191_15-CWE191_Integer_Underflow__unsigned_int_fscanf_predec │ └── 1.json ├── CWE191_15-CWE191_Integer_Underflow__unsigned_int_fscanf_sub │ └── 1.json ├── CWE191_16-CWE191_Integer_Underflow__char_fscanf_multiply │ └── 1.json ├── CWE191_16-CWE191_Integer_Underflow__char_fscanf_postdec │ └── 1.json ├── CWE191_16-CWE191_Integer_Underflow__char_fscanf_predec │ └── 1.json ├── CWE191_16-CWE191_Integer_Underflow__char_fscanf_sub │ └── 1.json ├── CWE191_16-CWE191_Integer_Underflow__int64_t_fscanf_multiply │ └── 1.json ├── CWE191_16-CWE191_Integer_Underflow__int64_t_fscanf_postdec │ └── 1.json ├── CWE191_16-CWE191_Integer_Underflow__int64_t_fscanf_predec │ └── 1.json ├── CWE191_16-CWE191_Integer_Underflow__int64_t_fscanf_sub │ └── 1.json ├── CWE191_16-CWE191_Integer_Underflow__int_connect_socket_multiply │ └── 1.json ├── CWE191_16-CWE191_Integer_Underflow__int_connect_socket_postdec │ └── 1.json ├── CWE191_16-CWE191_Integer_Underflow__int_connect_socket_predec │ └── 1.json ├── CWE191_16-CWE191_Integer_Underflow__int_connect_socket_sub │ └── 1.json ├── CWE191_16-CWE191_Integer_Underflow__int_fgets_multiply │ └── 1.json ├── CWE191_16-CWE191_Integer_Underflow__int_fgets_postdec │ └── 1.json ├── CWE191_16-CWE191_Integer_Underflow__int_fgets_predec │ └── 1.json ├── CWE191_16-CWE191_Integer_Underflow__int_fgets_sub │ └── 1.json ├── CWE191_16-CWE191_Integer_Underflow__int_fscanf_multiply │ └── 1.json ├── CWE191_16-CWE191_Integer_Underflow__int_fscanf_postdec │ └── 1.json ├── CWE191_16-CWE191_Integer_Underflow__int_fscanf_predec │ └── 1.json ├── CWE191_16-CWE191_Integer_Underflow__int_fscanf_sub │ └── 1.json ├── CWE191_16-CWE191_Integer_Underflow__int_listen_socket_multiply │ └── 1.json ├── CWE191_16-CWE191_Integer_Underflow__int_listen_socket_postdec │ └── 1.json ├── CWE191_16-CWE191_Integer_Underflow__int_listen_socket_predec │ └── 1.json ├── CWE191_16-CWE191_Integer_Underflow__int_listen_socket_sub │ └── 1.json ├── CWE191_16-CWE191_Integer_Underflow__short_fscanf_multiply │ └── 1.json ├── CWE191_16-CWE191_Integer_Underflow__short_fscanf_postdec │ └── 1.json ├── CWE191_16-CWE191_Integer_Underflow__short_fscanf_predec │ └── 1.json ├── CWE191_16-CWE191_Integer_Underflow__short_fscanf_sub │ └── 1.json ├── CWE191_16-CWE191_Integer_Underflow__unsigned_int_fscanf_postdec │ └── 1.json ├── CWE191_16-CWE191_Integer_Underflow__unsigned_int_fscanf_predec │ └── 1.json ├── CWE191_16-CWE191_Integer_Underflow__unsigned_int_fscanf_sub │ └── 1.json ├── CWE191_17-CWE191_Integer_Underflow__char_fscanf_multiply │ └── 1.json ├── CWE191_17-CWE191_Integer_Underflow__char_fscanf_postdec │ └── 1.json ├── CWE191_17-CWE191_Integer_Underflow__char_fscanf_predec │ └── 1.json ├── CWE191_17-CWE191_Integer_Underflow__char_fscanf_sub │ └── 1.json ├── CWE191_17-CWE191_Integer_Underflow__int64_t_fscanf_multiply │ └── 1.json ├── CWE191_17-CWE191_Integer_Underflow__int64_t_fscanf_postdec │ └── 1.json ├── CWE191_17-CWE191_Integer_Underflow__int64_t_fscanf_predec │ └── 1.json ├── CWE191_17-CWE191_Integer_Underflow__int64_t_fscanf_sub │ └── 1.json ├── CWE191_17-CWE191_Integer_Underflow__int_connect_socket_multiply │ └── 1.json ├── CWE191_17-CWE191_Integer_Underflow__int_connect_socket_postdec │ └── 1.json ├── CWE191_17-CWE191_Integer_Underflow__int_connect_socket_predec │ └── 1.json ├── CWE191_17-CWE191_Integer_Underflow__int_connect_socket_sub │ └── 1.json ├── CWE191_17-CWE191_Integer_Underflow__int_fgets_multiply │ └── 1.json ├── CWE191_17-CWE191_Integer_Underflow__int_fgets_postdec │ └── 1.json ├── CWE191_17-CWE191_Integer_Underflow__int_fgets_predec │ └── 1.json ├── CWE191_17-CWE191_Integer_Underflow__int_fgets_sub │ └── 1.json ├── CWE191_17-CWE191_Integer_Underflow__int_fscanf_multiply │ └── 1.json ├── CWE191_17-CWE191_Integer_Underflow__int_fscanf_postdec │ └── 1.json ├── CWE191_17-CWE191_Integer_Underflow__int_fscanf_predec │ └── 1.json ├── CWE191_17-CWE191_Integer_Underflow__int_fscanf_sub │ └── 1.json ├── CWE191_17-CWE191_Integer_Underflow__int_listen_socket_multiply │ └── 1.json ├── CWE191_17-CWE191_Integer_Underflow__int_listen_socket_postdec │ └── 1.json ├── CWE191_17-CWE191_Integer_Underflow__int_listen_socket_predec │ └── 1.json ├── CWE191_17-CWE191_Integer_Underflow__int_listen_socket_sub │ └── 1.json ├── CWE191_17-CWE191_Integer_Underflow__short_fscanf_multiply │ └── 1.json ├── CWE191_17-CWE191_Integer_Underflow__short_fscanf_postdec │ └── 1.json ├── CWE191_17-CWE191_Integer_Underflow__short_fscanf_predec │ └── 1.json ├── CWE191_17-CWE191_Integer_Underflow__short_fscanf_sub │ └── 1.json ├── CWE191_17-CWE191_Integer_Underflow__unsigned_int_fscanf_postdec │ └── 1.json ├── CWE191_17-CWE191_Integer_Underflow__unsigned_int_fscanf_predec │ └── 1.json ├── CWE191_17-CWE191_Integer_Underflow__unsigned_int_fscanf_sub │ └── 1.json ├── CWE191_18-CWE191_Integer_Underflow__char_fscanf_multiply │ └── 1.json ├── CWE191_18-CWE191_Integer_Underflow__char_fscanf_postdec │ └── 1.json ├── CWE191_18-CWE191_Integer_Underflow__char_fscanf_predec │ └── 1.json ├── CWE191_18-CWE191_Integer_Underflow__char_fscanf_sub │ └── 1.json ├── CWE191_18-CWE191_Integer_Underflow__int64_t_fscanf_multiply │ └── 1.json ├── CWE191_18-CWE191_Integer_Underflow__int64_t_fscanf_postdec │ └── 1.json ├── CWE191_18-CWE191_Integer_Underflow__int64_t_fscanf_predec │ └── 1.json ├── CWE191_18-CWE191_Integer_Underflow__int64_t_fscanf_sub │ └── 1.json ├── CWE191_18-CWE191_Integer_Underflow__int_connect_socket_multiply │ └── 1.json ├── CWE191_18-CWE191_Integer_Underflow__int_connect_socket_postdec │ └── 1.json ├── CWE191_18-CWE191_Integer_Underflow__int_connect_socket_predec │ └── 1.json ├── CWE191_18-CWE191_Integer_Underflow__int_connect_socket_sub │ └── 1.json ├── CWE191_18-CWE191_Integer_Underflow__int_fgets_multiply │ └── 1.json ├── CWE191_18-CWE191_Integer_Underflow__int_fgets_postdec │ └── 1.json ├── CWE191_18-CWE191_Integer_Underflow__int_fgets_predec │ └── 1.json ├── CWE191_18-CWE191_Integer_Underflow__int_fgets_sub │ └── 1.json ├── CWE191_18-CWE191_Integer_Underflow__int_fscanf_multiply │ └── 1.json ├── CWE191_18-CWE191_Integer_Underflow__int_fscanf_postdec │ └── 1.json ├── CWE191_18-CWE191_Integer_Underflow__int_fscanf_predec │ └── 1.json ├── CWE191_18-CWE191_Integer_Underflow__int_fscanf_sub │ └── 1.json ├── CWE191_18-CWE191_Integer_Underflow__int_listen_socket_multiply │ └── 1.json ├── CWE191_18-CWE191_Integer_Underflow__int_listen_socket_postdec │ └── 1.json ├── CWE191_18-CWE191_Integer_Underflow__int_listen_socket_predec │ └── 1.json ├── CWE191_18-CWE191_Integer_Underflow__int_listen_socket_sub │ └── 1.json ├── CWE191_18-CWE191_Integer_Underflow__short_fscanf_multiply │ └── 1.json ├── CWE191_18-CWE191_Integer_Underflow__short_fscanf_postdec │ └── 1.json ├── CWE191_18-CWE191_Integer_Underflow__short_fscanf_predec │ └── 1.json ├── CWE191_18-CWE191_Integer_Underflow__short_fscanf_sub │ └── 1.json ├── CWE191_18-CWE191_Integer_Underflow__unsigned_int_fscanf_postdec │ └── 1.json ├── CWE191_18-CWE191_Integer_Underflow__unsigned_int_fscanf_predec │ └── 1.json ├── CWE191_18-CWE191_Integer_Underflow__unsigned_int_fscanf_sub │ └── 1.json ├── CWE191_21-CWE191_Integer_Underflow__char_fscanf_multiply │ └── 1.json ├── CWE191_21-CWE191_Integer_Underflow__char_fscanf_postdec │ └── 1.json ├── CWE191_21-CWE191_Integer_Underflow__char_fscanf_predec │ └── 1.json ├── CWE191_21-CWE191_Integer_Underflow__char_fscanf_sub │ └── 1.json ├── CWE191_21-CWE191_Integer_Underflow__int64_t_fscanf_multiply │ └── 1.json ├── CWE191_21-CWE191_Integer_Underflow__int64_t_fscanf_postdec │ └── 1.json ├── CWE191_21-CWE191_Integer_Underflow__int64_t_fscanf_predec │ └── 1.json ├── CWE191_21-CWE191_Integer_Underflow__int64_t_fscanf_sub │ └── 1.json ├── CWE191_21-CWE191_Integer_Underflow__int_connect_socket_multiply │ └── 1.json ├── CWE191_21-CWE191_Integer_Underflow__int_connect_socket_postdec │ └── 1.json ├── CWE191_21-CWE191_Integer_Underflow__int_connect_socket_predec │ └── 1.json ├── CWE191_21-CWE191_Integer_Underflow__int_connect_socket_sub │ └── 1.json ├── CWE191_21-CWE191_Integer_Underflow__int_fgets_multiply │ └── 1.json ├── CWE191_21-CWE191_Integer_Underflow__int_fgets_postdec │ └── 1.json ├── CWE191_21-CWE191_Integer_Underflow__int_fgets_predec │ └── 1.json ├── CWE191_21-CWE191_Integer_Underflow__int_fgets_sub │ └── 1.json ├── CWE191_21-CWE191_Integer_Underflow__int_fscanf_multiply │ └── 1.json ├── CWE191_21-CWE191_Integer_Underflow__int_fscanf_postdec │ └── 1.json ├── CWE191_21-CWE191_Integer_Underflow__int_fscanf_predec │ └── 1.json ├── CWE191_21-CWE191_Integer_Underflow__int_fscanf_sub │ └── 1.json ├── CWE191_21-CWE191_Integer_Underflow__int_listen_socket_multiply │ └── 1.json ├── CWE191_21-CWE191_Integer_Underflow__int_listen_socket_postdec │ └── 1.json ├── CWE191_21-CWE191_Integer_Underflow__int_listen_socket_predec │ └── 1.json ├── CWE191_21-CWE191_Integer_Underflow__int_listen_socket_sub │ └── 1.json ├── CWE191_21-CWE191_Integer_Underflow__short_fscanf_multiply │ └── 1.json ├── CWE191_21-CWE191_Integer_Underflow__short_fscanf_postdec │ └── 1.json ├── CWE191_21-CWE191_Integer_Underflow__short_fscanf_predec │ └── 1.json ├── CWE191_21-CWE191_Integer_Underflow__short_fscanf_sub │ └── 1.json ├── CWE191_21-CWE191_Integer_Underflow__unsigned_int_fscanf_postdec │ └── 1.json ├── CWE191_21-CWE191_Integer_Underflow__unsigned_int_fscanf_predec │ └── 1.json ├── CWE191_21-CWE191_Integer_Underflow__unsigned_int_fscanf_sub │ └── 1.json ├── CWE191_22-CWE191_Integer_Underflow__char_fscanf_multiply │ └── 1.json ├── CWE191_22-CWE191_Integer_Underflow__char_fscanf_postdec │ └── 1.json ├── CWE191_22-CWE191_Integer_Underflow__char_fscanf_predec │ └── 1.json ├── CWE191_22-CWE191_Integer_Underflow__char_fscanf_sub │ └── 1.json ├── CWE191_22-CWE191_Integer_Underflow__int64_t_fscanf_multiply │ └── 1.json ├── CWE191_22-CWE191_Integer_Underflow__int64_t_fscanf_postdec │ └── 1.json ├── CWE191_22-CWE191_Integer_Underflow__int64_t_fscanf_predec │ └── 1.json ├── CWE191_22-CWE191_Integer_Underflow__int64_t_fscanf_sub │ └── 1.json ├── CWE191_22-CWE191_Integer_Underflow__int_connect_socket_multiply │ └── 1.json ├── CWE191_22-CWE191_Integer_Underflow__int_connect_socket_postdec │ └── 1.json ├── CWE191_22-CWE191_Integer_Underflow__int_connect_socket_predec │ └── 1.json ├── CWE191_22-CWE191_Integer_Underflow__int_connect_socket_sub │ └── 1.json ├── CWE191_22-CWE191_Integer_Underflow__int_fgets_multiply │ └── 1.json ├── CWE191_22-CWE191_Integer_Underflow__int_fgets_postdec │ └── 1.json ├── CWE191_22-CWE191_Integer_Underflow__int_fgets_predec │ └── 1.json ├── CWE191_22-CWE191_Integer_Underflow__int_fgets_sub │ └── 1.json ├── CWE191_22-CWE191_Integer_Underflow__int_fscanf_multiply │ └── 1.json ├── CWE191_22-CWE191_Integer_Underflow__int_fscanf_postdec │ └── 1.json ├── CWE191_22-CWE191_Integer_Underflow__int_fscanf_predec │ └── 1.json ├── CWE191_22-CWE191_Integer_Underflow__int_fscanf_sub │ └── 1.json ├── CWE191_22-CWE191_Integer_Underflow__int_listen_socket_multiply │ └── 1.json ├── CWE191_22-CWE191_Integer_Underflow__int_listen_socket_postdec │ └── 1.json ├── CWE191_22-CWE191_Integer_Underflow__int_listen_socket_predec │ └── 1.json ├── CWE191_22-CWE191_Integer_Underflow__int_listen_socket_sub │ └── 1.json ├── CWE191_22-CWE191_Integer_Underflow__short_fscanf_multiply │ └── 1.json ├── CWE191_22-CWE191_Integer_Underflow__short_fscanf_postdec │ └── 1.json ├── CWE191_22-CWE191_Integer_Underflow__short_fscanf_predec │ └── 1.json ├── CWE191_22-CWE191_Integer_Underflow__short_fscanf_sub │ └── 1.json ├── CWE191_22-CWE191_Integer_Underflow__unsigned_int_fscanf_postdec │ └── 1.json ├── CWE191_22-CWE191_Integer_Underflow__unsigned_int_fscanf_predec │ └── 1.json ├── CWE191_22-CWE191_Integer_Underflow__unsigned_int_fscanf_sub │ └── 1.json ├── CWE191_31-CWE191_Integer_Underflow__char_fscanf_multiply │ └── 1.json ├── CWE191_31-CWE191_Integer_Underflow__char_fscanf_postdec │ └── 1.json ├── CWE191_31-CWE191_Integer_Underflow__char_fscanf_predec │ └── 1.json ├── CWE191_31-CWE191_Integer_Underflow__char_fscanf_sub │ └── 1.json ├── CWE191_31-CWE191_Integer_Underflow__int64_t_fscanf_multiply │ └── 1.json ├── CWE191_31-CWE191_Integer_Underflow__int64_t_fscanf_postdec │ └── 1.json ├── CWE191_31-CWE191_Integer_Underflow__int64_t_fscanf_predec │ └── 1.json ├── CWE191_31-CWE191_Integer_Underflow__int64_t_fscanf_sub │ └── 1.json ├── CWE191_31-CWE191_Integer_Underflow__int_connect_socket_multiply │ └── 1.json ├── CWE191_31-CWE191_Integer_Underflow__int_connect_socket_postdec │ └── 1.json ├── CWE191_31-CWE191_Integer_Underflow__int_connect_socket_predec │ └── 1.json ├── CWE191_31-CWE191_Integer_Underflow__int_connect_socket_sub │ └── 1.json ├── CWE191_31-CWE191_Integer_Underflow__int_fgets_multiply │ └── 1.json ├── CWE191_31-CWE191_Integer_Underflow__int_fgets_postdec │ └── 1.json ├── CWE191_31-CWE191_Integer_Underflow__int_fgets_predec │ └── 1.json ├── CWE191_31-CWE191_Integer_Underflow__int_fgets_sub │ └── 1.json ├── CWE191_31-CWE191_Integer_Underflow__int_fscanf_multiply │ └── 1.json ├── CWE191_31-CWE191_Integer_Underflow__int_fscanf_postdec │ └── 1.json ├── CWE191_31-CWE191_Integer_Underflow__int_fscanf_predec │ └── 1.json ├── CWE191_31-CWE191_Integer_Underflow__int_fscanf_sub │ └── 1.json ├── CWE191_31-CWE191_Integer_Underflow__int_listen_socket_multiply │ └── 1.json ├── CWE191_31-CWE191_Integer_Underflow__int_listen_socket_postdec │ └── 1.json ├── CWE191_31-CWE191_Integer_Underflow__int_listen_socket_predec │ └── 1.json ├── CWE191_31-CWE191_Integer_Underflow__int_listen_socket_sub │ └── 1.json ├── CWE191_31-CWE191_Integer_Underflow__short_fscanf_multiply │ └── 1.json ├── CWE191_31-CWE191_Integer_Underflow__short_fscanf_postdec │ └── 1.json ├── CWE191_31-CWE191_Integer_Underflow__short_fscanf_predec │ └── 1.json ├── CWE191_31-CWE191_Integer_Underflow__short_fscanf_sub │ └── 1.json ├── CWE191_31-CWE191_Integer_Underflow__unsigned_int_fscanf_postdec │ └── 1.json ├── CWE191_31-CWE191_Integer_Underflow__unsigned_int_fscanf_predec │ └── 1.json ├── CWE191_31-CWE191_Integer_Underflow__unsigned_int_fscanf_sub │ └── 1.json ├── CWE191_32-CWE191_Integer_Underflow__char_fscanf_multiply │ └── 1.json ├── CWE191_32-CWE191_Integer_Underflow__char_fscanf_postdec │ └── 1.json ├── CWE191_32-CWE191_Integer_Underflow__char_fscanf_predec │ └── 1.json ├── CWE191_32-CWE191_Integer_Underflow__char_fscanf_sub │ └── 1.json ├── CWE191_32-CWE191_Integer_Underflow__int64_t_fscanf_multiply │ └── 1.json ├── CWE191_32-CWE191_Integer_Underflow__int64_t_fscanf_postdec │ └── 1.json ├── CWE191_32-CWE191_Integer_Underflow__int64_t_fscanf_predec │ └── 1.json ├── CWE191_32-CWE191_Integer_Underflow__int64_t_fscanf_sub │ └── 1.json ├── CWE191_32-CWE191_Integer_Underflow__int_connect_socket_multiply │ └── 1.json ├── CWE191_32-CWE191_Integer_Underflow__int_connect_socket_postdec │ └── 1.json ├── CWE191_32-CWE191_Integer_Underflow__int_connect_socket_predec │ └── 1.json ├── CWE191_32-CWE191_Integer_Underflow__int_connect_socket_sub │ └── 1.json ├── CWE191_32-CWE191_Integer_Underflow__int_fgets_multiply │ └── 1.json ├── CWE191_32-CWE191_Integer_Underflow__int_fgets_postdec │ └── 1.json ├── CWE191_32-CWE191_Integer_Underflow__int_fgets_predec │ └── 1.json ├── CWE191_32-CWE191_Integer_Underflow__int_fgets_sub │ └── 1.json ├── CWE191_32-CWE191_Integer_Underflow__int_fscanf_multiply │ └── 1.json ├── CWE191_32-CWE191_Integer_Underflow__int_fscanf_postdec │ └── 1.json ├── CWE191_32-CWE191_Integer_Underflow__int_fscanf_predec │ └── 1.json ├── CWE191_32-CWE191_Integer_Underflow__int_fscanf_sub │ └── 1.json ├── CWE191_32-CWE191_Integer_Underflow__int_listen_socket_multiply │ └── 1.json ├── CWE191_32-CWE191_Integer_Underflow__int_listen_socket_postdec │ └── 1.json ├── CWE191_32-CWE191_Integer_Underflow__int_listen_socket_predec │ └── 1.json ├── CWE191_32-CWE191_Integer_Underflow__int_listen_socket_sub │ └── 1.json ├── CWE191_32-CWE191_Integer_Underflow__short_fscanf_multiply │ └── 1.json ├── CWE191_32-CWE191_Integer_Underflow__short_fscanf_postdec │ └── 1.json ├── CWE191_32-CWE191_Integer_Underflow__short_fscanf_predec │ └── 1.json ├── CWE191_32-CWE191_Integer_Underflow__short_fscanf_sub │ └── 1.json ├── CWE191_32-CWE191_Integer_Underflow__unsigned_int_fscanf_postdec │ └── 1.json ├── CWE191_32-CWE191_Integer_Underflow__unsigned_int_fscanf_predec │ └── 1.json ├── CWE191_32-CWE191_Integer_Underflow__unsigned_int_fscanf_sub │ └── 1.json ├── CWE191_33-CWE191_Integer_Underflow__char_fscanf_multiply │ └── 1.json ├── CWE191_33-CWE191_Integer_Underflow__char_fscanf_sub │ └── 1.json ├── CWE191_33-CWE191_Integer_Underflow__int64_t_fscanf_multiply │ └── 1.json ├── CWE191_33-CWE191_Integer_Underflow__int64_t_fscanf_sub │ └── 1.json ├── CWE191_33-CWE191_Integer_Underflow__int_connect_socket_multiply │ └── 1.json ├── CWE191_33-CWE191_Integer_Underflow__int_connect_socket_sub │ └── 1.json ├── CWE191_33-CWE191_Integer_Underflow__int_fgets_multiply │ └── 1.json ├── CWE191_33-CWE191_Integer_Underflow__int_fgets_sub │ └── 1.json ├── CWE191_33-CWE191_Integer_Underflow__int_fscanf_multiply │ └── 1.json ├── CWE191_33-CWE191_Integer_Underflow__int_fscanf_sub │ └── 1.json ├── CWE191_33-CWE191_Integer_Underflow__int_listen_socket_multiply │ └── 1.json ├── CWE191_33-CWE191_Integer_Underflow__int_listen_socket_sub │ └── 1.json ├── CWE191_33-CWE191_Integer_Underflow__short_fscanf_multiply │ └── 1.json ├── CWE191_33-CWE191_Integer_Underflow__short_fscanf_sub │ └── 1.json ├── CWE191_33-CWE191_Integer_Underflow__unsigned_int_fscanf_sub │ └── 1.json ├── CWE191_41-CWE191_Integer_Underflow__char_fscanf_multiply │ └── 1.json ├── CWE191_41-CWE191_Integer_Underflow__char_fscanf_postdec │ └── 1.json ├── CWE191_41-CWE191_Integer_Underflow__char_fscanf_predec │ └── 1.json ├── CWE191_41-CWE191_Integer_Underflow__char_fscanf_sub │ └── 1.json ├── CWE191_41-CWE191_Integer_Underflow__int64_t_fscanf_multiply │ └── 1.json ├── CWE191_41-CWE191_Integer_Underflow__int64_t_fscanf_postdec │ └── 1.json ├── CWE191_41-CWE191_Integer_Underflow__int64_t_fscanf_predec │ └── 1.json ├── CWE191_41-CWE191_Integer_Underflow__int64_t_fscanf_sub │ └── 1.json ├── CWE191_41-CWE191_Integer_Underflow__int_connect_socket_multiply │ └── 1.json ├── CWE191_41-CWE191_Integer_Underflow__int_connect_socket_postdec │ └── 1.json ├── CWE191_41-CWE191_Integer_Underflow__int_connect_socket_predec │ └── 1.json ├── CWE191_41-CWE191_Integer_Underflow__int_connect_socket_sub │ └── 1.json ├── CWE191_41-CWE191_Integer_Underflow__int_fgets_multiply │ └── 1.json ├── CWE191_41-CWE191_Integer_Underflow__int_fgets_postdec │ └── 1.json ├── CWE191_41-CWE191_Integer_Underflow__int_fgets_predec │ └── 1.json ├── CWE191_41-CWE191_Integer_Underflow__int_fgets_sub │ └── 1.json ├── CWE191_41-CWE191_Integer_Underflow__int_fscanf_multiply │ └── 1.json ├── CWE191_41-CWE191_Integer_Underflow__int_fscanf_postdec │ └── 1.json ├── CWE191_41-CWE191_Integer_Underflow__int_fscanf_predec │ └── 1.json ├── CWE191_41-CWE191_Integer_Underflow__int_fscanf_sub │ └── 1.json ├── CWE191_41-CWE191_Integer_Underflow__int_listen_socket_multiply │ └── 1.json ├── CWE191_41-CWE191_Integer_Underflow__int_listen_socket_postdec │ └── 1.json ├── CWE191_41-CWE191_Integer_Underflow__int_listen_socket_predec │ └── 1.json ├── CWE191_41-CWE191_Integer_Underflow__int_listen_socket_sub │ └── 1.json ├── CWE191_41-CWE191_Integer_Underflow__short_fscanf_multiply │ └── 1.json ├── CWE191_41-CWE191_Integer_Underflow__short_fscanf_postdec │ └── 1.json ├── CWE191_41-CWE191_Integer_Underflow__short_fscanf_predec │ └── 1.json ├── CWE191_41-CWE191_Integer_Underflow__short_fscanf_sub │ └── 1.json ├── CWE191_41-CWE191_Integer_Underflow__unsigned_int_fscanf_postdec │ └── 1.json ├── CWE191_41-CWE191_Integer_Underflow__unsigned_int_fscanf_predec │ └── 1.json ├── CWE191_41-CWE191_Integer_Underflow__unsigned_int_fscanf_sub │ └── 1.json ├── CWE191_42-CWE191_Integer_Underflow__char_fscanf_multiply │ └── 1.json ├── CWE191_42-CWE191_Integer_Underflow__char_fscanf_postdec │ └── 1.json ├── CWE191_42-CWE191_Integer_Underflow__char_fscanf_predec │ └── 1.json ├── CWE191_42-CWE191_Integer_Underflow__char_fscanf_sub │ └── 1.json ├── CWE191_42-CWE191_Integer_Underflow__int64_t_fscanf_multiply │ └── 1.json ├── CWE191_42-CWE191_Integer_Underflow__int64_t_fscanf_postdec │ └── 1.json ├── CWE191_42-CWE191_Integer_Underflow__int64_t_fscanf_predec │ └── 1.json ├── CWE191_42-CWE191_Integer_Underflow__int64_t_fscanf_sub │ └── 1.json ├── CWE191_42-CWE191_Integer_Underflow__int_connect_socket_multiply │ └── 1.json ├── CWE191_42-CWE191_Integer_Underflow__int_connect_socket_postdec │ └── 1.json ├── CWE191_42-CWE191_Integer_Underflow__int_connect_socket_predec │ └── 1.json ├── CWE191_42-CWE191_Integer_Underflow__int_connect_socket_sub │ └── 1.json ├── CWE191_42-CWE191_Integer_Underflow__int_fgets_multiply │ └── 1.json ├── CWE191_42-CWE191_Integer_Underflow__int_fgets_postdec │ └── 1.json ├── CWE191_42-CWE191_Integer_Underflow__int_fgets_predec │ └── 1.json ├── CWE191_42-CWE191_Integer_Underflow__int_fgets_sub │ └── 1.json ├── CWE191_42-CWE191_Integer_Underflow__int_fscanf_multiply │ └── 1.json ├── CWE191_42-CWE191_Integer_Underflow__int_fscanf_postdec │ └── 1.json ├── CWE191_42-CWE191_Integer_Underflow__int_fscanf_predec │ └── 1.json ├── CWE191_42-CWE191_Integer_Underflow__int_fscanf_sub │ └── 1.json ├── CWE191_42-CWE191_Integer_Underflow__int_listen_socket_multiply │ └── 1.json ├── CWE191_42-CWE191_Integer_Underflow__int_listen_socket_postdec │ └── 1.json ├── CWE191_42-CWE191_Integer_Underflow__int_listen_socket_predec │ └── 1.json ├── CWE191_42-CWE191_Integer_Underflow__int_listen_socket_sub │ └── 1.json ├── CWE191_42-CWE191_Integer_Underflow__short_fscanf_multiply │ └── 1.json ├── CWE191_42-CWE191_Integer_Underflow__short_fscanf_postdec │ └── 1.json ├── CWE191_42-CWE191_Integer_Underflow__short_fscanf_predec │ └── 1.json ├── CWE191_42-CWE191_Integer_Underflow__short_fscanf_sub │ └── 1.json ├── CWE191_42-CWE191_Integer_Underflow__unsigned_int_fscanf_postdec │ └── 1.json ├── CWE191_42-CWE191_Integer_Underflow__unsigned_int_fscanf_predec │ └── 1.json ├── CWE191_42-CWE191_Integer_Underflow__unsigned_int_fscanf_sub │ └── 1.json ├── CWE191_43-CWE191_Integer_Underflow__char_fscanf_multiply │ └── 1.json ├── CWE191_43-CWE191_Integer_Underflow__char_fscanf_sub │ └── 1.json ├── CWE191_43-CWE191_Integer_Underflow__int64_t_fscanf_multiply │ └── 1.json ├── CWE191_43-CWE191_Integer_Underflow__int64_t_fscanf_sub │ └── 1.json ├── CWE191_43-CWE191_Integer_Underflow__int_connect_socket_multiply │ └── 1.json ├── CWE191_43-CWE191_Integer_Underflow__int_connect_socket_sub │ └── 1.json ├── CWE191_43-CWE191_Integer_Underflow__int_fgets_multiply │ └── 1.json ├── CWE191_43-CWE191_Integer_Underflow__int_fgets_sub │ └── 1.json ├── CWE191_43-CWE191_Integer_Underflow__int_fscanf_multiply │ └── 1.json ├── CWE191_43-CWE191_Integer_Underflow__int_fscanf_sub │ └── 1.json ├── CWE191_43-CWE191_Integer_Underflow__int_listen_socket_multiply │ └── 1.json ├── CWE191_43-CWE191_Integer_Underflow__int_listen_socket_sub │ └── 1.json ├── CWE191_43-CWE191_Integer_Underflow__short_fscanf_multiply │ └── 1.json ├── CWE191_43-CWE191_Integer_Underflow__short_fscanf_sub │ └── 1.json ├── CWE191_43-CWE191_Integer_Underflow__unsigned_int_fscanf_sub │ └── 1.json ├── CWE191_44-CWE191_Integer_Underflow__char_fscanf_multiply │ └── 1.json ├── CWE191_44-CWE191_Integer_Underflow__char_fscanf_postdec │ └── 1.json ├── CWE191_44-CWE191_Integer_Underflow__char_fscanf_predec │ └── 1.json ├── CWE191_44-CWE191_Integer_Underflow__char_fscanf_sub │ └── 1.json ├── CWE191_44-CWE191_Integer_Underflow__int64_t_fscanf_multiply │ └── 1.json ├── CWE191_44-CWE191_Integer_Underflow__int64_t_fscanf_postdec │ └── 1.json ├── CWE191_44-CWE191_Integer_Underflow__int64_t_fscanf_predec │ └── 1.json ├── CWE191_44-CWE191_Integer_Underflow__int64_t_fscanf_sub │ └── 1.json ├── CWE191_44-CWE191_Integer_Underflow__int_connect_socket_multiply │ └── 1.json ├── CWE191_44-CWE191_Integer_Underflow__int_connect_socket_postdec │ └── 1.json ├── CWE191_44-CWE191_Integer_Underflow__int_connect_socket_predec │ └── 1.json ├── CWE191_44-CWE191_Integer_Underflow__int_connect_socket_sub │ └── 1.json ├── CWE191_44-CWE191_Integer_Underflow__int_fgets_multiply │ └── 1.json ├── CWE191_44-CWE191_Integer_Underflow__int_fgets_postdec │ └── 1.json ├── CWE191_44-CWE191_Integer_Underflow__int_fgets_predec │ └── 1.json ├── CWE191_44-CWE191_Integer_Underflow__int_fgets_sub │ └── 1.json ├── CWE191_44-CWE191_Integer_Underflow__int_fscanf_multiply │ └── 1.json ├── CWE191_44-CWE191_Integer_Underflow__int_fscanf_postdec │ └── 1.json ├── CWE191_44-CWE191_Integer_Underflow__int_fscanf_predec │ └── 1.json ├── CWE191_44-CWE191_Integer_Underflow__int_fscanf_sub │ └── 1.json ├── CWE191_44-CWE191_Integer_Underflow__int_listen_socket_multiply │ └── 1.json ├── CWE191_44-CWE191_Integer_Underflow__int_listen_socket_postdec │ └── 1.json ├── CWE191_44-CWE191_Integer_Underflow__int_listen_socket_predec │ └── 1.json ├── CWE191_44-CWE191_Integer_Underflow__int_listen_socket_sub │ └── 1.json ├── CWE191_44-CWE191_Integer_Underflow__short_fscanf_multiply │ └── 1.json ├── CWE191_44-CWE191_Integer_Underflow__short_fscanf_postdec │ └── 1.json ├── CWE191_44-CWE191_Integer_Underflow__short_fscanf_predec │ └── 1.json ├── CWE191_44-CWE191_Integer_Underflow__short_fscanf_sub │ └── 1.json ├── CWE191_44-CWE191_Integer_Underflow__unsigned_int_fscanf_postdec │ └── 1.json ├── CWE191_44-CWE191_Integer_Underflow__unsigned_int_fscanf_predec │ └── 1.json ├── CWE191_44-CWE191_Integer_Underflow__unsigned_int_fscanf_sub │ └── 1.json ├── CWE191_51-CWE191_Integer_Underflow__char_fscanf_multiply │ └── 1.json ├── CWE191_51-CWE191_Integer_Underflow__char_fscanf_postdec │ └── 1.json ├── CWE191_51-CWE191_Integer_Underflow__char_fscanf_predec │ └── 1.json ├── CWE191_51-CWE191_Integer_Underflow__char_fscanf_sub │ └── 1.json ├── CWE191_51-CWE191_Integer_Underflow__int64_t_fscanf_multiply │ └── 1.json ├── CWE191_51-CWE191_Integer_Underflow__int64_t_fscanf_postdec │ └── 1.json ├── CWE191_51-CWE191_Integer_Underflow__int64_t_fscanf_predec │ └── 1.json ├── CWE191_51-CWE191_Integer_Underflow__int64_t_fscanf_sub │ └── 1.json ├── CWE191_51-CWE191_Integer_Underflow__int_connect_socket_multiply │ └── 1.json ├── CWE191_51-CWE191_Integer_Underflow__int_connect_socket_postdec │ └── 1.json ├── CWE191_51-CWE191_Integer_Underflow__int_connect_socket_predec │ └── 1.json ├── CWE191_51-CWE191_Integer_Underflow__int_connect_socket_sub │ └── 1.json ├── CWE191_51-CWE191_Integer_Underflow__int_fgets_multiply │ └── 1.json ├── CWE191_51-CWE191_Integer_Underflow__int_fgets_postdec │ └── 1.json ├── CWE191_51-CWE191_Integer_Underflow__int_fgets_predec │ └── 1.json ├── CWE191_51-CWE191_Integer_Underflow__int_fgets_sub │ └── 1.json ├── CWE191_51-CWE191_Integer_Underflow__int_fscanf_multiply │ └── 1.json ├── CWE191_51-CWE191_Integer_Underflow__int_fscanf_postdec │ └── 1.json ├── CWE191_51-CWE191_Integer_Underflow__int_fscanf_predec │ └── 1.json ├── CWE191_51-CWE191_Integer_Underflow__int_fscanf_sub │ └── 1.json ├── CWE191_51-CWE191_Integer_Underflow__int_listen_socket_multiply │ └── 1.json ├── CWE191_51-CWE191_Integer_Underflow__int_listen_socket_postdec │ └── 1.json ├── CWE191_51-CWE191_Integer_Underflow__int_listen_socket_predec │ └── 1.json ├── CWE191_51-CWE191_Integer_Underflow__int_listen_socket_sub │ └── 1.json ├── CWE191_51-CWE191_Integer_Underflow__short_fscanf_multiply │ └── 1.json ├── CWE191_51-CWE191_Integer_Underflow__short_fscanf_postdec │ └── 1.json ├── CWE191_51-CWE191_Integer_Underflow__short_fscanf_predec │ └── 1.json ├── CWE191_51-CWE191_Integer_Underflow__short_fscanf_sub │ └── 1.json ├── CWE191_51-CWE191_Integer_Underflow__unsigned_int_fscanf_postdec │ └── 1.json ├── CWE191_51-CWE191_Integer_Underflow__unsigned_int_fscanf_predec │ └── 1.json ├── CWE191_51-CWE191_Integer_Underflow__unsigned_int_fscanf_sub │ └── 1.json ├── CWE191_52-CWE191_Integer_Underflow__char_fscanf_multiply │ └── 1.json ├── CWE191_52-CWE191_Integer_Underflow__char_fscanf_postdec │ └── 1.json ├── CWE191_52-CWE191_Integer_Underflow__char_fscanf_predec │ └── 1.json ├── CWE191_52-CWE191_Integer_Underflow__char_fscanf_sub │ └── 1.json ├── CWE191_52-CWE191_Integer_Underflow__int64_t_fscanf_multiply │ └── 1.json ├── CWE191_52-CWE191_Integer_Underflow__int64_t_fscanf_postdec │ └── 1.json ├── CWE191_52-CWE191_Integer_Underflow__int64_t_fscanf_predec │ └── 1.json ├── CWE191_52-CWE191_Integer_Underflow__int64_t_fscanf_sub │ └── 1.json ├── CWE191_52-CWE191_Integer_Underflow__int_connect_socket_multiply │ └── 1.json ├── CWE191_52-CWE191_Integer_Underflow__int_connect_socket_postdec │ └── 1.json ├── CWE191_52-CWE191_Integer_Underflow__int_connect_socket_predec │ └── 1.json ├── CWE191_52-CWE191_Integer_Underflow__int_connect_socket_sub │ └── 1.json ├── CWE191_52-CWE191_Integer_Underflow__int_fgets_multiply │ └── 1.json ├── CWE191_52-CWE191_Integer_Underflow__int_fgets_postdec │ └── 1.json ├── CWE191_52-CWE191_Integer_Underflow__int_fgets_predec │ └── 1.json ├── CWE191_52-CWE191_Integer_Underflow__int_fgets_sub │ └── 1.json ├── CWE191_52-CWE191_Integer_Underflow__int_fscanf_multiply │ └── 1.json ├── CWE191_52-CWE191_Integer_Underflow__int_fscanf_postdec │ └── 1.json ├── CWE191_52-CWE191_Integer_Underflow__int_fscanf_predec │ └── 1.json ├── CWE191_52-CWE191_Integer_Underflow__int_fscanf_sub │ └── 1.json ├── CWE191_52-CWE191_Integer_Underflow__int_listen_socket_multiply │ └── 1.json ├── CWE191_52-CWE191_Integer_Underflow__int_listen_socket_postdec │ └── 1.json ├── CWE191_52-CWE191_Integer_Underflow__int_listen_socket_predec │ └── 1.json ├── CWE191_52-CWE191_Integer_Underflow__int_listen_socket_sub │ └── 1.json ├── CWE191_52-CWE191_Integer_Underflow__short_fscanf_multiply │ └── 1.json ├── CWE191_52-CWE191_Integer_Underflow__short_fscanf_postdec │ └── 1.json ├── CWE191_52-CWE191_Integer_Underflow__short_fscanf_predec │ └── 1.json ├── CWE191_52-CWE191_Integer_Underflow__short_fscanf_sub │ └── 1.json ├── CWE191_52-CWE191_Integer_Underflow__unsigned_int_fscanf_postdec │ └── 1.json ├── CWE191_52-CWE191_Integer_Underflow__unsigned_int_fscanf_predec │ └── 1.json ├── CWE191_52-CWE191_Integer_Underflow__unsigned_int_fscanf_sub │ └── 1.json ├── CWE191_53-CWE191_Integer_Underflow__char_fscanf_multiply │ └── 1.json ├── CWE191_53-CWE191_Integer_Underflow__char_fscanf_postdec │ └── 1.json ├── CWE191_53-CWE191_Integer_Underflow__char_fscanf_predec │ └── 1.json ├── CWE191_53-CWE191_Integer_Underflow__char_fscanf_sub │ └── 1.json ├── CWE191_53-CWE191_Integer_Underflow__int64_t_fscanf_multiply │ └── 1.json ├── CWE191_53-CWE191_Integer_Underflow__int64_t_fscanf_postdec │ └── 1.json ├── CWE191_53-CWE191_Integer_Underflow__int64_t_fscanf_predec │ └── 1.json ├── CWE191_53-CWE191_Integer_Underflow__int64_t_fscanf_sub │ └── 1.json ├── CWE191_53-CWE191_Integer_Underflow__int_connect_socket_multiply │ └── 1.json ├── CWE191_53-CWE191_Integer_Underflow__int_connect_socket_postdec │ └── 1.json ├── CWE191_53-CWE191_Integer_Underflow__int_connect_socket_predec │ └── 1.json ├── CWE191_53-CWE191_Integer_Underflow__int_connect_socket_sub │ └── 1.json ├── CWE191_53-CWE191_Integer_Underflow__int_fgets_multiply │ └── 1.json ├── CWE191_53-CWE191_Integer_Underflow__int_fgets_postdec │ └── 1.json ├── CWE191_53-CWE191_Integer_Underflow__int_fgets_predec │ └── 1.json ├── CWE191_53-CWE191_Integer_Underflow__int_fgets_sub │ └── 1.json ├── CWE191_53-CWE191_Integer_Underflow__int_fscanf_multiply │ └── 1.json ├── CWE191_53-CWE191_Integer_Underflow__int_fscanf_postdec │ └── 1.json ├── CWE191_53-CWE191_Integer_Underflow__int_fscanf_predec │ └── 1.json ├── CWE191_53-CWE191_Integer_Underflow__int_fscanf_sub │ └── 1.json ├── CWE191_53-CWE191_Integer_Underflow__int_listen_socket_multiply │ └── 1.json ├── CWE191_53-CWE191_Integer_Underflow__int_listen_socket_postdec │ └── 1.json ├── CWE191_53-CWE191_Integer_Underflow__int_listen_socket_predec │ └── 1.json ├── CWE191_53-CWE191_Integer_Underflow__int_listen_socket_sub │ └── 1.json ├── CWE191_53-CWE191_Integer_Underflow__short_fscanf_multiply │ └── 1.json ├── CWE191_53-CWE191_Integer_Underflow__short_fscanf_postdec │ └── 1.json ├── CWE191_53-CWE191_Integer_Underflow__short_fscanf_predec │ └── 1.json ├── CWE191_53-CWE191_Integer_Underflow__short_fscanf_sub │ └── 1.json ├── CWE191_53-CWE191_Integer_Underflow__unsigned_int_fscanf_postdec │ └── 1.json ├── CWE191_53-CWE191_Integer_Underflow__unsigned_int_fscanf_predec │ └── 1.json ├── CWE191_53-CWE191_Integer_Underflow__unsigned_int_fscanf_sub │ └── 1.json ├── CWE191_54-CWE191_Integer_Underflow__char_fscanf_multiply │ └── 1.json ├── CWE191_54-CWE191_Integer_Underflow__char_fscanf_postdec │ └── 1.json ├── CWE191_54-CWE191_Integer_Underflow__char_fscanf_predec │ └── 1.json ├── CWE191_54-CWE191_Integer_Underflow__char_fscanf_sub │ └── 1.json ├── CWE191_54-CWE191_Integer_Underflow__int64_t_fscanf_multiply │ └── 1.json ├── CWE191_54-CWE191_Integer_Underflow__int64_t_fscanf_postdec │ └── 1.json ├── CWE191_54-CWE191_Integer_Underflow__int64_t_fscanf_predec │ └── 1.json ├── CWE191_54-CWE191_Integer_Underflow__int64_t_fscanf_sub │ └── 1.json ├── CWE191_54-CWE191_Integer_Underflow__int_connect_socket_multiply │ └── 1.json ├── CWE191_54-CWE191_Integer_Underflow__int_connect_socket_postdec │ └── 1.json ├── CWE191_54-CWE191_Integer_Underflow__int_connect_socket_predec │ └── 1.json ├── CWE191_54-CWE191_Integer_Underflow__int_connect_socket_sub │ └── 1.json ├── CWE191_54-CWE191_Integer_Underflow__int_fgets_multiply │ └── 1.json ├── CWE191_54-CWE191_Integer_Underflow__int_fgets_postdec │ └── 1.json ├── CWE191_54-CWE191_Integer_Underflow__int_fgets_predec │ └── 1.json ├── CWE191_54-CWE191_Integer_Underflow__int_fgets_sub │ └── 1.json ├── CWE191_54-CWE191_Integer_Underflow__int_fscanf_multiply │ └── 1.json ├── CWE191_54-CWE191_Integer_Underflow__int_fscanf_postdec │ └── 1.json ├── CWE191_54-CWE191_Integer_Underflow__int_fscanf_predec │ └── 1.json ├── CWE191_54-CWE191_Integer_Underflow__int_fscanf_sub │ └── 1.json ├── CWE191_54-CWE191_Integer_Underflow__int_listen_socket_multiply │ └── 1.json ├── CWE191_54-CWE191_Integer_Underflow__int_listen_socket_postdec │ └── 1.json ├── CWE191_54-CWE191_Integer_Underflow__int_listen_socket_predec │ └── 1.json ├── CWE191_54-CWE191_Integer_Underflow__int_listen_socket_sub │ └── 1.json ├── CWE191_54-CWE191_Integer_Underflow__short_fscanf_multiply │ └── 1.json ├── CWE191_54-CWE191_Integer_Underflow__short_fscanf_postdec │ └── 1.json ├── CWE191_54-CWE191_Integer_Underflow__short_fscanf_predec │ └── 1.json ├── CWE191_54-CWE191_Integer_Underflow__short_fscanf_sub │ └── 1.json ├── CWE191_54-CWE191_Integer_Underflow__unsigned_int_fscanf_postdec │ └── 1.json ├── CWE191_54-CWE191_Integer_Underflow__unsigned_int_fscanf_predec │ └── 1.json ├── CWE191_54-CWE191_Integer_Underflow__unsigned_int_fscanf_sub │ └── 1.json ├── CWE191_61-CWE191_Integer_Underflow__char_fscanf_multiply │ └── 1.json ├── CWE191_61-CWE191_Integer_Underflow__char_fscanf_postdec │ └── 1.json ├── CWE191_61-CWE191_Integer_Underflow__char_fscanf_predec │ └── 1.json ├── CWE191_61-CWE191_Integer_Underflow__char_fscanf_sub │ └── 1.json ├── CWE191_61-CWE191_Integer_Underflow__int64_t_fscanf_multiply │ └── 1.json ├── CWE191_61-CWE191_Integer_Underflow__int64_t_fscanf_postdec │ └── 1.json ├── CWE191_61-CWE191_Integer_Underflow__int64_t_fscanf_predec │ └── 1.json ├── CWE191_61-CWE191_Integer_Underflow__int64_t_fscanf_sub │ └── 1.json ├── CWE191_61-CWE191_Integer_Underflow__int_connect_socket_multiply │ └── 1.json ├── CWE191_61-CWE191_Integer_Underflow__int_connect_socket_postdec │ └── 1.json ├── CWE191_61-CWE191_Integer_Underflow__int_connect_socket_predec │ └── 1.json ├── CWE191_61-CWE191_Integer_Underflow__int_connect_socket_sub │ └── 1.json ├── CWE191_61-CWE191_Integer_Underflow__int_fgets_multiply │ └── 1.json ├── CWE191_61-CWE191_Integer_Underflow__int_fgets_postdec │ └── 1.json ├── CWE191_61-CWE191_Integer_Underflow__int_fgets_predec │ └── 1.json ├── CWE191_61-CWE191_Integer_Underflow__int_fgets_sub │ └── 1.json ├── CWE191_61-CWE191_Integer_Underflow__int_fscanf_multiply │ └── 1.json ├── CWE191_61-CWE191_Integer_Underflow__int_fscanf_postdec │ └── 1.json ├── CWE191_61-CWE191_Integer_Underflow__int_fscanf_predec │ └── 1.json ├── CWE191_61-CWE191_Integer_Underflow__int_fscanf_sub │ └── 1.json ├── CWE191_61-CWE191_Integer_Underflow__int_listen_socket_multiply │ └── 1.json ├── CWE191_61-CWE191_Integer_Underflow__int_listen_socket_postdec │ └── 1.json ├── CWE191_61-CWE191_Integer_Underflow__int_listen_socket_predec │ └── 1.json ├── CWE191_61-CWE191_Integer_Underflow__int_listen_socket_sub │ └── 1.json ├── CWE191_61-CWE191_Integer_Underflow__short_fscanf_multiply │ └── 1.json ├── CWE191_61-CWE191_Integer_Underflow__short_fscanf_postdec │ └── 1.json ├── CWE191_61-CWE191_Integer_Underflow__short_fscanf_predec │ └── 1.json ├── CWE191_61-CWE191_Integer_Underflow__short_fscanf_sub │ └── 1.json ├── CWE191_61-CWE191_Integer_Underflow__unsigned_int_fscanf_postdec │ └── 1.json ├── CWE191_61-CWE191_Integer_Underflow__unsigned_int_fscanf_predec │ └── 1.json ├── CWE191_61-CWE191_Integer_Underflow__unsigned_int_fscanf_sub │ └── 1.json ├── CWE191_62-CWE191_Integer_Underflow__char_fscanf_multiply │ └── 1.json ├── CWE191_62-CWE191_Integer_Underflow__char_fscanf_sub │ └── 1.json ├── CWE191_62-CWE191_Integer_Underflow__int64_t_fscanf_multiply │ └── 1.json ├── CWE191_62-CWE191_Integer_Underflow__int64_t_fscanf_sub │ └── 1.json ├── CWE191_62-CWE191_Integer_Underflow__int_connect_socket_multiply │ └── 1.json ├── CWE191_62-CWE191_Integer_Underflow__int_connect_socket_sub │ └── 1.json ├── CWE191_62-CWE191_Integer_Underflow__int_fgets_multiply │ └── 1.json ├── CWE191_62-CWE191_Integer_Underflow__int_fgets_sub │ └── 1.json ├── CWE191_62-CWE191_Integer_Underflow__int_fscanf_multiply │ └── 1.json ├── CWE191_62-CWE191_Integer_Underflow__int_fscanf_sub │ └── 1.json ├── CWE191_62-CWE191_Integer_Underflow__int_listen_socket_multiply │ └── 1.json ├── CWE191_62-CWE191_Integer_Underflow__int_listen_socket_sub │ └── 1.json ├── CWE191_62-CWE191_Integer_Underflow__short_fscanf_multiply │ └── 1.json ├── CWE191_62-CWE191_Integer_Underflow__short_fscanf_sub │ └── 1.json ├── CWE191_62-CWE191_Integer_Underflow__unsigned_int_fscanf_sub │ └── 1.json ├── CWE191_63-CWE191_Integer_Underflow__char_fscanf_multiply │ └── 1.json ├── CWE191_63-CWE191_Integer_Underflow__char_fscanf_postdec │ └── 1.json ├── CWE191_63-CWE191_Integer_Underflow__char_fscanf_predec │ └── 1.json ├── CWE191_63-CWE191_Integer_Underflow__char_fscanf_sub │ └── 1.json ├── CWE191_63-CWE191_Integer_Underflow__int64_t_fscanf_multiply │ └── 1.json ├── CWE191_63-CWE191_Integer_Underflow__int64_t_fscanf_postdec │ └── 1.json ├── CWE191_63-CWE191_Integer_Underflow__int64_t_fscanf_predec │ └── 1.json ├── CWE191_63-CWE191_Integer_Underflow__int64_t_fscanf_sub │ └── 1.json ├── CWE191_63-CWE191_Integer_Underflow__int_connect_socket_multiply │ └── 1.json ├── CWE191_63-CWE191_Integer_Underflow__int_connect_socket_postdec │ └── 1.json ├── CWE191_63-CWE191_Integer_Underflow__int_connect_socket_predec │ └── 1.json ├── CWE191_63-CWE191_Integer_Underflow__int_connect_socket_sub │ └── 1.json ├── CWE191_63-CWE191_Integer_Underflow__int_fgets_multiply │ └── 1.json ├── CWE191_63-CWE191_Integer_Underflow__int_fgets_postdec │ └── 1.json ├── CWE191_63-CWE191_Integer_Underflow__int_fgets_predec │ └── 1.json ├── CWE191_63-CWE191_Integer_Underflow__int_fgets_sub │ └── 1.json ├── CWE191_63-CWE191_Integer_Underflow__int_fscanf_multiply │ └── 1.json ├── CWE191_63-CWE191_Integer_Underflow__int_fscanf_postdec │ └── 1.json ├── CWE191_63-CWE191_Integer_Underflow__int_fscanf_predec │ └── 1.json ├── CWE191_63-CWE191_Integer_Underflow__int_fscanf_sub │ └── 1.json ├── CWE191_63-CWE191_Integer_Underflow__int_listen_socket_multiply │ └── 1.json ├── CWE191_63-CWE191_Integer_Underflow__int_listen_socket_postdec │ └── 1.json ├── CWE191_63-CWE191_Integer_Underflow__int_listen_socket_predec │ └── 1.json ├── CWE191_63-CWE191_Integer_Underflow__int_listen_socket_sub │ └── 1.json ├── CWE191_63-CWE191_Integer_Underflow__short_fscanf_multiply │ └── 1.json ├── CWE191_63-CWE191_Integer_Underflow__short_fscanf_postdec │ └── 1.json ├── CWE191_63-CWE191_Integer_Underflow__short_fscanf_predec │ └── 1.json ├── CWE191_63-CWE191_Integer_Underflow__short_fscanf_sub │ └── 1.json ├── CWE191_63-CWE191_Integer_Underflow__unsigned_int_fscanf_postdec │ └── 1.json ├── CWE191_63-CWE191_Integer_Underflow__unsigned_int_fscanf_predec │ └── 1.json ├── CWE191_63-CWE191_Integer_Underflow__unsigned_int_fscanf_sub │ └── 1.json ├── CWE191_64-CWE191_Integer_Underflow__char_fscanf_multiply │ └── 1.json ├── CWE191_64-CWE191_Integer_Underflow__char_fscanf_postdec │ └── 1.json ├── CWE191_64-CWE191_Integer_Underflow__char_fscanf_predec │ └── 1.json ├── CWE191_64-CWE191_Integer_Underflow__char_fscanf_sub │ └── 1.json ├── CWE191_64-CWE191_Integer_Underflow__int64_t_fscanf_multiply │ └── 1.json ├── CWE191_64-CWE191_Integer_Underflow__int64_t_fscanf_postdec │ └── 1.json ├── CWE191_64-CWE191_Integer_Underflow__int64_t_fscanf_predec │ └── 1.json ├── CWE191_64-CWE191_Integer_Underflow__int64_t_fscanf_sub │ └── 1.json ├── CWE191_64-CWE191_Integer_Underflow__int_connect_socket_multiply │ └── 1.json ├── CWE191_64-CWE191_Integer_Underflow__int_connect_socket_postdec │ └── 1.json ├── CWE191_64-CWE191_Integer_Underflow__int_connect_socket_predec │ └── 1.json ├── CWE191_64-CWE191_Integer_Underflow__int_connect_socket_sub │ └── 1.json ├── CWE191_64-CWE191_Integer_Underflow__int_fgets_multiply │ └── 1.json ├── CWE191_64-CWE191_Integer_Underflow__int_fgets_postdec │ └── 1.json ├── CWE191_64-CWE191_Integer_Underflow__int_fgets_predec │ └── 1.json ├── CWE191_64-CWE191_Integer_Underflow__int_fgets_sub │ └── 1.json ├── CWE191_64-CWE191_Integer_Underflow__int_fscanf_multiply │ └── 1.json ├── CWE191_64-CWE191_Integer_Underflow__int_fscanf_postdec │ └── 1.json ├── CWE191_64-CWE191_Integer_Underflow__int_fscanf_predec │ └── 1.json ├── CWE191_64-CWE191_Integer_Underflow__int_fscanf_sub │ └── 1.json ├── CWE191_64-CWE191_Integer_Underflow__int_listen_socket_multiply │ └── 1.json ├── CWE191_64-CWE191_Integer_Underflow__int_listen_socket_postdec │ └── 1.json ├── CWE191_64-CWE191_Integer_Underflow__int_listen_socket_predec │ └── 1.json ├── CWE191_64-CWE191_Integer_Underflow__int_listen_socket_sub │ └── 1.json ├── CWE191_64-CWE191_Integer_Underflow__short_fscanf_multiply │ └── 1.json ├── CWE191_64-CWE191_Integer_Underflow__short_fscanf_postdec │ └── 1.json ├── CWE191_64-CWE191_Integer_Underflow__short_fscanf_predec │ └── 1.json ├── CWE191_64-CWE191_Integer_Underflow__short_fscanf_sub │ └── 1.json ├── CWE191_64-CWE191_Integer_Underflow__unsigned_int_fscanf_postdec │ └── 1.json ├── CWE191_64-CWE191_Integer_Underflow__unsigned_int_fscanf_predec │ └── 1.json ├── CWE191_64-CWE191_Integer_Underflow__unsigned_int_fscanf_sub │ └── 1.json ├── CWE191_65-CWE191_Integer_Underflow__char_fscanf_multiply │ └── 1.json ├── CWE191_65-CWE191_Integer_Underflow__char_fscanf_postdec │ └── 1.json ├── CWE191_65-CWE191_Integer_Underflow__char_fscanf_predec │ └── 1.json ├── CWE191_65-CWE191_Integer_Underflow__char_fscanf_sub │ └── 1.json ├── CWE191_65-CWE191_Integer_Underflow__int64_t_fscanf_multiply │ └── 1.json ├── CWE191_65-CWE191_Integer_Underflow__int64_t_fscanf_postdec │ └── 1.json ├── CWE191_65-CWE191_Integer_Underflow__int64_t_fscanf_predec │ └── 1.json ├── CWE191_65-CWE191_Integer_Underflow__int64_t_fscanf_sub │ └── 1.json ├── CWE191_65-CWE191_Integer_Underflow__int_connect_socket_multiply │ └── 1.json ├── CWE191_65-CWE191_Integer_Underflow__int_connect_socket_postdec │ └── 1.json ├── CWE191_65-CWE191_Integer_Underflow__int_connect_socket_predec │ └── 1.json ├── CWE191_65-CWE191_Integer_Underflow__int_connect_socket_sub │ └── 1.json ├── CWE191_65-CWE191_Integer_Underflow__int_fgets_multiply │ └── 1.json ├── CWE191_65-CWE191_Integer_Underflow__int_fgets_postdec │ └── 1.json ├── CWE191_65-CWE191_Integer_Underflow__int_fgets_predec │ └── 1.json ├── CWE191_65-CWE191_Integer_Underflow__int_fgets_sub │ └── 1.json ├── CWE191_65-CWE191_Integer_Underflow__int_fscanf_multiply │ └── 1.json ├── CWE191_65-CWE191_Integer_Underflow__int_fscanf_postdec │ └── 1.json ├── CWE191_65-CWE191_Integer_Underflow__int_fscanf_predec │ └── 1.json ├── CWE191_65-CWE191_Integer_Underflow__int_fscanf_sub │ └── 1.json ├── CWE191_65-CWE191_Integer_Underflow__int_listen_socket_multiply │ └── 1.json ├── CWE191_65-CWE191_Integer_Underflow__int_listen_socket_postdec │ └── 1.json ├── CWE191_65-CWE191_Integer_Underflow__int_listen_socket_predec │ └── 1.json ├── CWE191_65-CWE191_Integer_Underflow__int_listen_socket_sub │ └── 1.json ├── CWE191_65-CWE191_Integer_Underflow__short_fscanf_multiply │ └── 1.json ├── CWE191_65-CWE191_Integer_Underflow__short_fscanf_postdec │ └── 1.json ├── CWE191_65-CWE191_Integer_Underflow__short_fscanf_predec │ └── 1.json ├── CWE191_65-CWE191_Integer_Underflow__short_fscanf_sub │ └── 1.json ├── CWE191_65-CWE191_Integer_Underflow__unsigned_int_fscanf_postdec │ └── 1.json ├── CWE191_65-CWE191_Integer_Underflow__unsigned_int_fscanf_predec │ └── 1.json ├── CWE191_65-CWE191_Integer_Underflow__unsigned_int_fscanf_sub │ └── 1.json ├── CWE191_66-CWE191_Integer_Underflow__char_fscanf_multiply │ └── 1.json ├── CWE191_66-CWE191_Integer_Underflow__char_fscanf_postdec │ └── 1.json ├── CWE191_66-CWE191_Integer_Underflow__char_fscanf_predec │ └── 1.json ├── CWE191_66-CWE191_Integer_Underflow__char_fscanf_sub │ └── 1.json ├── CWE191_66-CWE191_Integer_Underflow__int64_t_fscanf_multiply │ └── 1.json ├── CWE191_66-CWE191_Integer_Underflow__int64_t_fscanf_postdec │ └── 1.json ├── CWE191_66-CWE191_Integer_Underflow__int64_t_fscanf_predec │ └── 1.json ├── CWE191_66-CWE191_Integer_Underflow__int64_t_fscanf_sub │ └── 1.json ├── CWE191_66-CWE191_Integer_Underflow__int_connect_socket_multiply │ └── 1.json ├── CWE191_66-CWE191_Integer_Underflow__int_connect_socket_postdec │ └── 1.json ├── CWE191_66-CWE191_Integer_Underflow__int_connect_socket_predec │ └── 1.json ├── CWE191_66-CWE191_Integer_Underflow__int_connect_socket_sub │ └── 1.json ├── CWE191_66-CWE191_Integer_Underflow__int_fgets_multiply │ └── 1.json ├── CWE191_66-CWE191_Integer_Underflow__int_fgets_postdec │ └── 1.json ├── CWE191_66-CWE191_Integer_Underflow__int_fgets_predec │ └── 1.json ├── CWE191_66-CWE191_Integer_Underflow__int_fgets_sub │ └── 1.json ├── CWE191_66-CWE191_Integer_Underflow__int_fscanf_multiply │ └── 1.json ├── CWE191_66-CWE191_Integer_Underflow__int_fscanf_postdec │ └── 1.json ├── CWE191_66-CWE191_Integer_Underflow__int_fscanf_predec │ └── 1.json ├── CWE191_66-CWE191_Integer_Underflow__int_fscanf_sub │ └── 1.json ├── CWE191_66-CWE191_Integer_Underflow__int_listen_socket_multiply │ └── 1.json ├── CWE191_66-CWE191_Integer_Underflow__int_listen_socket_postdec │ └── 1.json ├── CWE191_66-CWE191_Integer_Underflow__int_listen_socket_predec │ └── 1.json ├── CWE191_66-CWE191_Integer_Underflow__int_listen_socket_sub │ └── 1.json ├── CWE191_66-CWE191_Integer_Underflow__short_fscanf_multiply │ └── 1.json ├── CWE191_66-CWE191_Integer_Underflow__short_fscanf_postdec │ └── 1.json ├── CWE191_66-CWE191_Integer_Underflow__short_fscanf_predec │ └── 1.json ├── CWE191_66-CWE191_Integer_Underflow__short_fscanf_sub │ └── 1.json ├── CWE191_66-CWE191_Integer_Underflow__unsigned_int_fscanf_postdec │ └── 1.json ├── CWE191_66-CWE191_Integer_Underflow__unsigned_int_fscanf_predec │ └── 1.json ├── CWE191_66-CWE191_Integer_Underflow__unsigned_int_fscanf_sub │ └── 1.json ├── CWE191_83-CWE191_Integer_Underflow__char_fscanf_multiply │ └── 1.json ├── CWE191_83-CWE191_Integer_Underflow__char_fscanf_sub │ └── 1.json ├── CWE191_83-CWE191_Integer_Underflow__int64_t_fscanf_multiply │ └── 1.json ├── CWE191_83-CWE191_Integer_Underflow__int64_t_fscanf_sub │ └── 1.json ├── CWE191_83-CWE191_Integer_Underflow__int_connect_socket_multiply │ └── 1.json ├── CWE191_83-CWE191_Integer_Underflow__int_connect_socket_sub │ └── 1.json ├── CWE191_83-CWE191_Integer_Underflow__int_fgets_multiply │ └── 1.json ├── CWE191_83-CWE191_Integer_Underflow__int_fgets_sub │ └── 1.json ├── CWE191_83-CWE191_Integer_Underflow__int_fscanf_multiply │ └── 1.json ├── CWE191_83-CWE191_Integer_Underflow__int_fscanf_sub │ └── 1.json ├── CWE191_83-CWE191_Integer_Underflow__int_listen_socket_multiply │ └── 1.json ├── CWE191_83-CWE191_Integer_Underflow__int_listen_socket_sub │ └── 1.json ├── CWE191_83-CWE191_Integer_Underflow__short_fscanf_multiply │ └── 1.json ├── CWE191_83-CWE191_Integer_Underflow__short_fscanf_sub │ └── 1.json ├── CWE191_83-CWE191_Integer_Underflow__unsigned_int_fscanf_sub │ └── 1.json ├── CWE415_01-CWE415_Double_Free__malloc_free_char │ ├── 1.json │ └── 2.json ├── CWE415_01-CWE415_Double_Free__malloc_free_int │ ├── 1.json │ └── 2.json ├── CWE415_01-CWE415_Double_Free__malloc_free_int64_t │ ├── 1.json │ └── 2.json ├── CWE415_01-CWE415_Double_Free__malloc_free_long │ ├── 1.json │ └── 2.json ├── CWE415_01-CWE415_Double_Free__malloc_free_struct │ ├── 1.json │ └── 2.json ├── CWE415_01-CWE415_Double_Free__new_delete_array_char │ ├── 1.json │ └── 2.json ├── CWE415_01-CWE415_Double_Free__new_delete_array_class │ ├── 1.json │ └── 2.json ├── CWE415_01-CWE415_Double_Free__new_delete_array_int │ ├── 1.json │ └── 2.json ├── CWE415_01-CWE415_Double_Free__new_delete_array_int64_t │ ├── 1.json │ └── 2.json ├── CWE415_01-CWE415_Double_Free__new_delete_array_long │ ├── 1.json │ └── 2.json ├── CWE415_01-CWE415_Double_Free__new_delete_array_struct │ ├── 1.json │ └── 2.json ├── CWE415_01-CWE415_Double_Free__new_delete_char │ ├── 1.json │ └── 2.json ├── CWE415_01-CWE415_Double_Free__new_delete_class │ ├── 1.json │ └── 2.json ├── CWE415_01-CWE415_Double_Free__new_delete_int │ ├── 1.json │ └── 2.json ├── CWE415_01-CWE415_Double_Free__new_delete_int64_t │ ├── 1.json │ └── 2.json ├── CWE415_01-CWE415_Double_Free__new_delete_long │ ├── 1.json │ └── 2.json ├── CWE415_01-CWE415_Double_Free__new_delete_struct │ ├── 1.json │ └── 2.json ├── CWE415_02-CWE415_Double_Free__malloc_free_char │ ├── 1.json │ └── 2.json ├── CWE415_02-CWE415_Double_Free__malloc_free_int │ ├── 1.json │ └── 2.json ├── CWE415_02-CWE415_Double_Free__malloc_free_int64_t │ ├── 1.json │ └── 2.json ├── CWE415_02-CWE415_Double_Free__malloc_free_long │ ├── 1.json │ └── 2.json ├── CWE415_02-CWE415_Double_Free__malloc_free_struct │ ├── 1.json │ └── 2.json ├── CWE415_02-CWE415_Double_Free__new_delete_array_char │ ├── 1.json │ └── 2.json ├── CWE415_02-CWE415_Double_Free__new_delete_array_class │ ├── 1.json │ └── 2.json ├── CWE415_02-CWE415_Double_Free__new_delete_array_int │ ├── 1.json │ └── 2.json ├── CWE415_02-CWE415_Double_Free__new_delete_array_int64_t │ ├── 1.json │ └── 2.json ├── CWE415_02-CWE415_Double_Free__new_delete_array_long │ ├── 1.json │ └── 2.json ├── CWE415_02-CWE415_Double_Free__new_delete_array_struct │ ├── 1.json │ └── 2.json ├── CWE415_02-CWE415_Double_Free__new_delete_char │ ├── 1.json │ └── 2.json ├── CWE415_02-CWE415_Double_Free__new_delete_class │ ├── 1.json │ └── 2.json ├── CWE415_02-CWE415_Double_Free__new_delete_int │ ├── 1.json │ └── 2.json ├── CWE415_02-CWE415_Double_Free__new_delete_int64_t │ ├── 1.json │ └── 2.json ├── CWE415_02-CWE415_Double_Free__new_delete_long │ ├── 1.json │ └── 2.json ├── CWE415_02-CWE415_Double_Free__new_delete_struct │ ├── 1.json │ └── 2.json ├── CWE415_03-CWE415_Double_Free__malloc_free_char │ ├── 1.json │ └── 2.json ├── CWE415_03-CWE415_Double_Free__malloc_free_int │ ├── 1.json │ └── 2.json ├── CWE415_03-CWE415_Double_Free__malloc_free_int64_t │ ├── 1.json │ └── 2.json ├── CWE415_03-CWE415_Double_Free__malloc_free_long │ ├── 1.json │ └── 2.json ├── CWE415_03-CWE415_Double_Free__malloc_free_struct │ ├── 1.json │ └── 2.json ├── CWE415_03-CWE415_Double_Free__new_delete_array_char │ ├── 1.json │ └── 2.json ├── CWE415_03-CWE415_Double_Free__new_delete_array_class │ ├── 1.json │ └── 2.json ├── CWE415_03-CWE415_Double_Free__new_delete_array_int │ ├── 1.json │ └── 2.json ├── CWE415_03-CWE415_Double_Free__new_delete_array_int64_t │ ├── 1.json │ └── 2.json ├── CWE415_03-CWE415_Double_Free__new_delete_array_long │ ├── 1.json │ └── 2.json ├── CWE415_03-CWE415_Double_Free__new_delete_array_struct │ ├── 1.json │ └── 2.json ├── CWE415_03-CWE415_Double_Free__new_delete_char │ ├── 1.json │ └── 2.json ├── CWE415_03-CWE415_Double_Free__new_delete_class │ ├── 1.json │ └── 2.json ├── CWE415_03-CWE415_Double_Free__new_delete_int │ ├── 1.json │ └── 2.json ├── CWE415_03-CWE415_Double_Free__new_delete_int64_t │ ├── 1.json │ └── 2.json ├── CWE415_03-CWE415_Double_Free__new_delete_long │ ├── 1.json │ └── 2.json ├── CWE415_03-CWE415_Double_Free__new_delete_struct │ ├── 1.json │ └── 2.json ├── CWE415_04-CWE415_Double_Free__malloc_free_char │ ├── 1.json │ └── 2.json ├── CWE415_04-CWE415_Double_Free__malloc_free_int │ ├── 1.json │ └── 2.json ├── CWE415_04-CWE415_Double_Free__malloc_free_int64_t │ ├── 1.json │ └── 2.json ├── CWE415_04-CWE415_Double_Free__malloc_free_long │ ├── 1.json │ └── 2.json ├── CWE415_04-CWE415_Double_Free__malloc_free_struct │ ├── 1.json │ └── 2.json ├── CWE415_04-CWE415_Double_Free__new_delete_array_char │ ├── 1.json │ └── 2.json ├── CWE415_04-CWE415_Double_Free__new_delete_array_class │ ├── 1.json │ └── 2.json ├── CWE415_04-CWE415_Double_Free__new_delete_array_int │ ├── 1.json │ └── 2.json ├── CWE415_04-CWE415_Double_Free__new_delete_array_int64_t │ ├── 1.json │ └── 2.json ├── CWE415_04-CWE415_Double_Free__new_delete_array_long │ ├── 1.json │ └── 2.json ├── CWE415_04-CWE415_Double_Free__new_delete_array_struct │ ├── 1.json │ └── 2.json ├── CWE415_04-CWE415_Double_Free__new_delete_char │ ├── 1.json │ └── 2.json ├── CWE415_04-CWE415_Double_Free__new_delete_class │ ├── 1.json │ └── 2.json ├── CWE415_04-CWE415_Double_Free__new_delete_int │ ├── 1.json │ └── 2.json ├── CWE415_04-CWE415_Double_Free__new_delete_int64_t │ ├── 1.json │ └── 2.json ├── CWE415_04-CWE415_Double_Free__new_delete_long │ ├── 1.json │ └── 2.json ├── CWE415_04-CWE415_Double_Free__new_delete_struct │ ├── 1.json │ └── 2.json ├── CWE415_05-CWE415_Double_Free__malloc_free_char │ ├── 1.json │ └── 2.json ├── CWE415_05-CWE415_Double_Free__malloc_free_int │ ├── 1.json │ └── 2.json ├── CWE415_05-CWE415_Double_Free__malloc_free_int64_t │ ├── 1.json │ └── 2.json ├── CWE415_05-CWE415_Double_Free__malloc_free_long │ ├── 1.json │ └── 2.json ├── CWE415_05-CWE415_Double_Free__malloc_free_struct │ ├── 1.json │ └── 2.json ├── CWE415_05-CWE415_Double_Free__new_delete_array_char │ ├── 1.json │ └── 2.json ├── CWE415_05-CWE415_Double_Free__new_delete_array_class │ ├── 1.json │ └── 2.json ├── CWE415_05-CWE415_Double_Free__new_delete_array_int │ ├── 1.json │ └── 2.json ├── CWE415_05-CWE415_Double_Free__new_delete_array_int64_t │ ├── 1.json │ └── 2.json ├── CWE415_05-CWE415_Double_Free__new_delete_array_long │ ├── 1.json │ └── 2.json ├── CWE415_05-CWE415_Double_Free__new_delete_array_struct │ ├── 1.json │ └── 2.json ├── CWE415_05-CWE415_Double_Free__new_delete_char │ ├── 1.json │ └── 2.json ├── CWE415_05-CWE415_Double_Free__new_delete_class │ ├── 1.json │ └── 2.json ├── CWE415_05-CWE415_Double_Free__new_delete_int │ ├── 1.json │ └── 2.json ├── CWE415_05-CWE415_Double_Free__new_delete_int64_t │ ├── 1.json │ └── 2.json ├── CWE415_05-CWE415_Double_Free__new_delete_long │ ├── 1.json │ └── 2.json ├── CWE415_05-CWE415_Double_Free__new_delete_struct │ ├── 1.json │ └── 2.json ├── CWE415_06-CWE415_Double_Free__malloc_free_char │ ├── 1.json │ └── 2.json ├── CWE415_06-CWE415_Double_Free__malloc_free_int │ ├── 1.json │ └── 2.json ├── CWE415_06-CWE415_Double_Free__malloc_free_int64_t │ ├── 1.json │ └── 2.json ├── CWE415_06-CWE415_Double_Free__malloc_free_long │ ├── 1.json │ └── 2.json ├── CWE415_06-CWE415_Double_Free__malloc_free_struct │ ├── 1.json │ └── 2.json ├── CWE415_06-CWE415_Double_Free__new_delete_array_char │ ├── 1.json │ └── 2.json ├── CWE415_06-CWE415_Double_Free__new_delete_array_class │ ├── 1.json │ └── 2.json ├── CWE415_06-CWE415_Double_Free__new_delete_array_int │ ├── 1.json │ └── 2.json ├── CWE415_06-CWE415_Double_Free__new_delete_array_int64_t │ ├── 1.json │ └── 2.json ├── CWE415_06-CWE415_Double_Free__new_delete_array_long │ ├── 1.json │ └── 2.json ├── CWE415_06-CWE415_Double_Free__new_delete_array_struct │ ├── 1.json │ └── 2.json ├── CWE415_06-CWE415_Double_Free__new_delete_char │ ├── 1.json │ └── 2.json ├── CWE415_06-CWE415_Double_Free__new_delete_class │ ├── 1.json │ └── 2.json ├── CWE415_06-CWE415_Double_Free__new_delete_int │ ├── 1.json │ └── 2.json ├── CWE415_06-CWE415_Double_Free__new_delete_int64_t │ ├── 1.json │ └── 2.json ├── CWE415_06-CWE415_Double_Free__new_delete_long │ ├── 1.json │ └── 2.json ├── CWE415_06-CWE415_Double_Free__new_delete_struct │ ├── 1.json │ └── 2.json ├── CWE415_07-CWE415_Double_Free__malloc_free_char │ ├── 1.json │ └── 2.json ├── CWE415_07-CWE415_Double_Free__malloc_free_int │ ├── 1.json │ └── 2.json ├── CWE415_07-CWE415_Double_Free__malloc_free_int64_t │ ├── 1.json │ └── 2.json ├── CWE415_07-CWE415_Double_Free__malloc_free_long │ ├── 1.json │ └── 2.json ├── CWE415_07-CWE415_Double_Free__malloc_free_struct │ ├── 1.json │ └── 2.json ├── CWE415_07-CWE415_Double_Free__new_delete_array_char │ ├── 1.json │ └── 2.json ├── CWE415_07-CWE415_Double_Free__new_delete_array_class │ ├── 1.json │ └── 2.json ├── CWE415_07-CWE415_Double_Free__new_delete_array_int │ ├── 1.json │ └── 2.json ├── CWE415_07-CWE415_Double_Free__new_delete_array_int64_t │ ├── 1.json │ └── 2.json ├── CWE415_07-CWE415_Double_Free__new_delete_array_long │ ├── 1.json │ └── 2.json ├── CWE415_07-CWE415_Double_Free__new_delete_array_struct │ ├── 1.json │ └── 2.json ├── CWE415_07-CWE415_Double_Free__new_delete_char │ ├── 1.json │ └── 2.json ├── CWE415_07-CWE415_Double_Free__new_delete_class │ ├── 1.json │ └── 2.json ├── CWE415_07-CWE415_Double_Free__new_delete_int │ ├── 1.json │ └── 2.json ├── CWE415_07-CWE415_Double_Free__new_delete_int64_t │ ├── 1.json │ └── 2.json ├── CWE415_07-CWE415_Double_Free__new_delete_long │ ├── 1.json │ └── 2.json ├── CWE415_07-CWE415_Double_Free__new_delete_struct │ ├── 1.json │ └── 2.json ├── CWE415_08-CWE415_Double_Free__malloc_free_char │ ├── 1.json │ └── 2.json ├── CWE415_08-CWE415_Double_Free__malloc_free_int │ ├── 1.json │ └── 2.json ├── CWE415_08-CWE415_Double_Free__malloc_free_int64_t │ ├── 1.json │ └── 2.json ├── CWE415_08-CWE415_Double_Free__malloc_free_long │ ├── 1.json │ └── 2.json ├── CWE415_08-CWE415_Double_Free__malloc_free_struct │ ├── 1.json │ └── 2.json ├── CWE415_08-CWE415_Double_Free__new_delete_array_char │ ├── 1.json │ └── 2.json ├── CWE415_08-CWE415_Double_Free__new_delete_array_class │ ├── 1.json │ └── 2.json ├── CWE415_08-CWE415_Double_Free__new_delete_array_int │ ├── 1.json │ └── 2.json ├── CWE415_08-CWE415_Double_Free__new_delete_array_int64_t │ ├── 1.json │ └── 2.json ├── CWE415_08-CWE415_Double_Free__new_delete_array_long │ ├── 1.json │ └── 2.json ├── CWE415_08-CWE415_Double_Free__new_delete_array_struct │ ├── 1.json │ └── 2.json ├── CWE415_08-CWE415_Double_Free__new_delete_char │ ├── 1.json │ └── 2.json ├── CWE415_08-CWE415_Double_Free__new_delete_class │ ├── 1.json │ └── 2.json ├── CWE415_08-CWE415_Double_Free__new_delete_int │ ├── 1.json │ └── 2.json ├── CWE415_08-CWE415_Double_Free__new_delete_int64_t │ ├── 1.json │ └── 2.json ├── CWE415_08-CWE415_Double_Free__new_delete_long │ ├── 1.json │ └── 2.json ├── CWE415_08-CWE415_Double_Free__new_delete_struct │ ├── 1.json │ └── 2.json ├── CWE415_09-CWE415_Double_Free__malloc_free_char │ ├── 1.json │ └── 2.json ├── CWE415_09-CWE415_Double_Free__malloc_free_int │ ├── 1.json │ └── 2.json ├── CWE415_09-CWE415_Double_Free__malloc_free_int64_t │ ├── 1.json │ └── 2.json ├── CWE415_09-CWE415_Double_Free__malloc_free_long │ ├── 1.json │ └── 2.json ├── CWE415_09-CWE415_Double_Free__malloc_free_struct │ ├── 1.json │ └── 2.json ├── CWE415_09-CWE415_Double_Free__new_delete_array_char │ ├── 1.json │ └── 2.json ├── CWE415_09-CWE415_Double_Free__new_delete_array_class │ ├── 1.json │ └── 2.json ├── CWE415_09-CWE415_Double_Free__new_delete_array_int │ ├── 1.json │ └── 2.json ├── CWE415_09-CWE415_Double_Free__new_delete_array_int64_t │ ├── 1.json │ └── 2.json ├── CWE415_09-CWE415_Double_Free__new_delete_array_long │ ├── 1.json │ └── 2.json ├── CWE415_09-CWE415_Double_Free__new_delete_array_struct │ ├── 1.json │ └── 2.json ├── CWE415_09-CWE415_Double_Free__new_delete_char │ ├── 1.json │ └── 2.json ├── CWE415_09-CWE415_Double_Free__new_delete_class │ ├── 1.json │ └── 2.json ├── CWE415_09-CWE415_Double_Free__new_delete_int │ ├── 1.json │ └── 2.json ├── CWE415_09-CWE415_Double_Free__new_delete_int64_t │ ├── 1.json │ └── 2.json ├── CWE415_09-CWE415_Double_Free__new_delete_long │ ├── 1.json │ └── 2.json ├── CWE415_09-CWE415_Double_Free__new_delete_struct │ ├── 1.json │ └── 2.json ├── CWE415_10-CWE415_Double_Free__malloc_free_char │ ├── 1.json │ └── 2.json ├── CWE415_10-CWE415_Double_Free__malloc_free_int │ ├── 1.json │ └── 2.json ├── CWE415_10-CWE415_Double_Free__malloc_free_int64_t │ ├── 1.json │ └── 2.json ├── CWE415_10-CWE415_Double_Free__malloc_free_long │ ├── 1.json │ └── 2.json ├── CWE415_10-CWE415_Double_Free__malloc_free_struct │ ├── 1.json │ └── 2.json ├── CWE415_10-CWE415_Double_Free__new_delete_array_char │ ├── 1.json │ └── 2.json ├── CWE415_10-CWE415_Double_Free__new_delete_array_class │ ├── 1.json │ └── 2.json ├── CWE415_10-CWE415_Double_Free__new_delete_array_int │ ├── 1.json │ └── 2.json ├── CWE415_10-CWE415_Double_Free__new_delete_array_int64_t │ ├── 1.json │ └── 2.json ├── CWE415_10-CWE415_Double_Free__new_delete_array_long │ ├── 1.json │ └── 2.json ├── CWE415_10-CWE415_Double_Free__new_delete_array_struct │ ├── 1.json │ └── 2.json ├── CWE415_10-CWE415_Double_Free__new_delete_char │ ├── 1.json │ └── 2.json ├── CWE415_10-CWE415_Double_Free__new_delete_class │ ├── 1.json │ └── 2.json ├── CWE415_10-CWE415_Double_Free__new_delete_int │ ├── 1.json │ └── 2.json ├── CWE415_10-CWE415_Double_Free__new_delete_int64_t │ ├── 1.json │ └── 2.json ├── CWE415_10-CWE415_Double_Free__new_delete_long │ ├── 1.json │ └── 2.json ├── CWE415_10-CWE415_Double_Free__new_delete_struct │ ├── 1.json │ └── 2.json ├── CWE415_11-CWE415_Double_Free__malloc_free_char │ ├── 1.json │ └── 2.json ├── CWE415_11-CWE415_Double_Free__malloc_free_int │ ├── 1.json │ └── 2.json ├── CWE415_11-CWE415_Double_Free__malloc_free_int64_t │ ├── 1.json │ └── 2.json ├── CWE415_11-CWE415_Double_Free__malloc_free_long │ ├── 1.json │ └── 2.json ├── CWE415_11-CWE415_Double_Free__malloc_free_struct │ ├── 1.json │ └── 2.json ├── CWE415_11-CWE415_Double_Free__new_delete_array_char │ ├── 1.json │ └── 2.json ├── CWE415_11-CWE415_Double_Free__new_delete_array_class │ ├── 1.json │ └── 2.json ├── CWE415_11-CWE415_Double_Free__new_delete_array_int │ ├── 1.json │ └── 2.json ├── CWE415_11-CWE415_Double_Free__new_delete_array_int64_t │ ├── 1.json │ └── 2.json ├── CWE415_11-CWE415_Double_Free__new_delete_array_long │ ├── 1.json │ └── 2.json ├── CWE415_11-CWE415_Double_Free__new_delete_array_struct │ ├── 1.json │ └── 2.json ├── CWE415_11-CWE415_Double_Free__new_delete_char │ ├── 1.json │ └── 2.json ├── CWE415_11-CWE415_Double_Free__new_delete_class │ ├── 1.json │ └── 2.json ├── CWE415_11-CWE415_Double_Free__new_delete_int │ ├── 1.json │ └── 2.json ├── CWE415_11-CWE415_Double_Free__new_delete_int64_t │ ├── 1.json │ └── 2.json ├── CWE415_11-CWE415_Double_Free__new_delete_long │ ├── 1.json │ └── 2.json ├── CWE415_11-CWE415_Double_Free__new_delete_struct │ ├── 1.json │ └── 2.json ├── CWE415_12-CWE415_Double_Free__malloc_free_char │ └── 1.json ├── CWE415_12-CWE415_Double_Free__malloc_free_int │ └── 1.json ├── CWE415_12-CWE415_Double_Free__malloc_free_int64_t │ └── 1.json ├── CWE415_12-CWE415_Double_Free__malloc_free_long │ └── 1.json ├── CWE415_12-CWE415_Double_Free__malloc_free_struct │ └── 1.json ├── CWE415_12-CWE415_Double_Free__new_delete_array_char │ └── 1.json ├── CWE415_12-CWE415_Double_Free__new_delete_array_class │ └── 1.json ├── CWE415_12-CWE415_Double_Free__new_delete_array_int │ └── 1.json ├── CWE415_12-CWE415_Double_Free__new_delete_array_int64_t │ └── 1.json ├── CWE415_12-CWE415_Double_Free__new_delete_array_long │ └── 1.json ├── CWE415_12-CWE415_Double_Free__new_delete_array_struct │ └── 1.json ├── CWE415_12-CWE415_Double_Free__new_delete_char │ └── 1.json ├── CWE415_12-CWE415_Double_Free__new_delete_class │ └── 1.json ├── CWE415_12-CWE415_Double_Free__new_delete_int │ └── 1.json ├── CWE415_12-CWE415_Double_Free__new_delete_int64_t │ └── 1.json ├── CWE415_12-CWE415_Double_Free__new_delete_long │ └── 1.json ├── CWE415_12-CWE415_Double_Free__new_delete_struct │ └── 1.json ├── CWE415_13-CWE415_Double_Free__malloc_free_char │ ├── 1.json │ └── 2.json ├── CWE415_13-CWE415_Double_Free__malloc_free_int │ ├── 1.json │ └── 2.json ├── CWE415_13-CWE415_Double_Free__malloc_free_int64_t │ ├── 1.json │ └── 2.json ├── CWE415_13-CWE415_Double_Free__malloc_free_long │ ├── 1.json │ └── 2.json ├── CWE415_13-CWE415_Double_Free__malloc_free_struct │ ├── 1.json │ └── 2.json ├── CWE415_13-CWE415_Double_Free__new_delete_array_char │ ├── 1.json │ └── 2.json ├── CWE415_13-CWE415_Double_Free__new_delete_array_class │ ├── 1.json │ └── 2.json ├── CWE415_13-CWE415_Double_Free__new_delete_array_int │ ├── 1.json │ └── 2.json ├── CWE415_13-CWE415_Double_Free__new_delete_array_int64_t │ ├── 1.json │ └── 2.json ├── CWE415_13-CWE415_Double_Free__new_delete_array_long │ ├── 1.json │ └── 2.json ├── CWE415_13-CWE415_Double_Free__new_delete_array_struct │ ├── 1.json │ └── 2.json ├── CWE415_13-CWE415_Double_Free__new_delete_char │ ├── 1.json │ └── 2.json ├── CWE415_13-CWE415_Double_Free__new_delete_class │ ├── 1.json │ └── 2.json ├── CWE415_13-CWE415_Double_Free__new_delete_int │ ├── 1.json │ └── 2.json ├── CWE415_13-CWE415_Double_Free__new_delete_int64_t │ ├── 1.json │ └── 2.json ├── CWE415_13-CWE415_Double_Free__new_delete_long │ ├── 1.json │ └── 2.json ├── CWE415_13-CWE415_Double_Free__new_delete_struct │ ├── 1.json │ └── 2.json ├── CWE415_14-CWE415_Double_Free__malloc_free_char │ ├── 1.json │ └── 2.json ├── CWE415_14-CWE415_Double_Free__malloc_free_int │ ├── 1.json │ └── 2.json ├── CWE415_14-CWE415_Double_Free__malloc_free_int64_t │ ├── 1.json │ └── 2.json ├── CWE415_14-CWE415_Double_Free__malloc_free_long │ ├── 1.json │ └── 2.json ├── CWE415_14-CWE415_Double_Free__malloc_free_struct │ ├── 1.json │ └── 2.json ├── CWE415_14-CWE415_Double_Free__new_delete_array_char │ ├── 1.json │ └── 2.json ├── CWE415_14-CWE415_Double_Free__new_delete_array_class │ ├── 1.json │ └── 2.json ├── CWE415_14-CWE415_Double_Free__new_delete_array_int │ ├── 1.json │ └── 2.json ├── CWE415_14-CWE415_Double_Free__new_delete_array_int64_t │ ├── 1.json │ └── 2.json ├── CWE415_14-CWE415_Double_Free__new_delete_array_long │ ├── 1.json │ └── 2.json ├── CWE415_14-CWE415_Double_Free__new_delete_array_struct │ ├── 1.json │ └── 2.json ├── CWE415_14-CWE415_Double_Free__new_delete_char │ ├── 1.json │ └── 2.json ├── CWE415_14-CWE415_Double_Free__new_delete_class │ ├── 1.json │ └── 2.json ├── CWE415_14-CWE415_Double_Free__new_delete_int │ ├── 1.json │ └── 2.json ├── CWE415_14-CWE415_Double_Free__new_delete_int64_t │ ├── 1.json │ └── 2.json ├── CWE415_14-CWE415_Double_Free__new_delete_long │ ├── 1.json │ └── 2.json ├── CWE415_14-CWE415_Double_Free__new_delete_struct │ ├── 1.json │ └── 2.json ├── CWE415_15-CWE415_Double_Free__malloc_free_char │ ├── 1.json │ └── 2.json ├── CWE415_15-CWE415_Double_Free__malloc_free_int │ ├── 1.json │ └── 2.json ├── CWE415_15-CWE415_Double_Free__malloc_free_int64_t │ ├── 1.json │ └── 2.json ├── CWE415_15-CWE415_Double_Free__malloc_free_long │ ├── 1.json │ └── 2.json ├── CWE415_15-CWE415_Double_Free__malloc_free_struct │ ├── 1.json │ └── 2.json ├── CWE415_15-CWE415_Double_Free__new_delete_array_char │ ├── 1.json │ └── 2.json ├── CWE415_15-CWE415_Double_Free__new_delete_array_class │ ├── 1.json │ └── 2.json ├── CWE415_15-CWE415_Double_Free__new_delete_array_int │ ├── 1.json │ └── 2.json ├── CWE415_15-CWE415_Double_Free__new_delete_array_int64_t │ ├── 1.json │ └── 2.json ├── CWE415_15-CWE415_Double_Free__new_delete_array_long │ ├── 1.json │ └── 2.json ├── CWE415_15-CWE415_Double_Free__new_delete_array_struct │ ├── 1.json │ └── 2.json ├── CWE415_15-CWE415_Double_Free__new_delete_char │ ├── 1.json │ └── 2.json ├── CWE415_15-CWE415_Double_Free__new_delete_class │ ├── 1.json │ └── 2.json ├── CWE415_15-CWE415_Double_Free__new_delete_int │ ├── 1.json │ └── 2.json ├── CWE415_15-CWE415_Double_Free__new_delete_int64_t │ ├── 1.json │ └── 2.json ├── CWE415_15-CWE415_Double_Free__new_delete_long │ ├── 1.json │ └── 2.json ├── CWE415_15-CWE415_Double_Free__new_delete_struct │ ├── 1.json │ └── 2.json ├── CWE415_16-CWE415_Double_Free__malloc_free_char │ ├── 1.json │ └── 2.json ├── CWE415_16-CWE415_Double_Free__malloc_free_int │ ├── 1.json │ └── 2.json ├── CWE415_16-CWE415_Double_Free__malloc_free_int64_t │ ├── 1.json │ └── 2.json ├── CWE415_16-CWE415_Double_Free__malloc_free_long │ ├── 1.json │ └── 2.json ├── CWE415_16-CWE415_Double_Free__malloc_free_struct │ ├── 1.json │ └── 2.json ├── CWE415_16-CWE415_Double_Free__new_delete_array_char │ ├── 1.json │ └── 2.json ├── CWE415_16-CWE415_Double_Free__new_delete_array_class │ ├── 1.json │ └── 2.json ├── CWE415_16-CWE415_Double_Free__new_delete_array_int │ ├── 1.json │ └── 2.json ├── CWE415_16-CWE415_Double_Free__new_delete_array_int64_t │ ├── 1.json │ └── 2.json ├── CWE415_16-CWE415_Double_Free__new_delete_array_long │ ├── 1.json │ └── 2.json ├── CWE415_16-CWE415_Double_Free__new_delete_array_struct │ ├── 1.json │ └── 2.json ├── CWE415_16-CWE415_Double_Free__new_delete_char │ ├── 1.json │ └── 2.json ├── CWE415_16-CWE415_Double_Free__new_delete_class │ ├── 1.json │ └── 2.json ├── CWE415_16-CWE415_Double_Free__new_delete_int │ ├── 1.json │ └── 2.json ├── CWE415_16-CWE415_Double_Free__new_delete_int64_t │ ├── 1.json │ └── 2.json ├── CWE415_16-CWE415_Double_Free__new_delete_long │ ├── 1.json │ └── 2.json ├── CWE415_16-CWE415_Double_Free__new_delete_struct │ ├── 1.json │ └── 2.json ├── CWE415_17-CWE415_Double_Free__malloc_free_char │ ├── 1.json │ └── 2.json ├── CWE415_17-CWE415_Double_Free__malloc_free_int │ ├── 1.json │ └── 2.json ├── CWE415_17-CWE415_Double_Free__malloc_free_int64_t │ ├── 1.json │ └── 2.json ├── CWE415_17-CWE415_Double_Free__malloc_free_long │ ├── 1.json │ └── 2.json ├── CWE415_17-CWE415_Double_Free__malloc_free_struct │ ├── 1.json │ └── 2.json ├── CWE415_17-CWE415_Double_Free__new_delete_array_char │ ├── 1.json │ └── 2.json ├── CWE415_17-CWE415_Double_Free__new_delete_array_class │ ├── 1.json │ └── 2.json ├── CWE415_17-CWE415_Double_Free__new_delete_array_int │ ├── 1.json │ └── 2.json ├── CWE415_17-CWE415_Double_Free__new_delete_array_int64_t │ ├── 1.json │ └── 2.json ├── CWE415_17-CWE415_Double_Free__new_delete_array_long │ ├── 1.json │ └── 2.json ├── CWE415_17-CWE415_Double_Free__new_delete_array_struct │ ├── 1.json │ └── 2.json ├── CWE415_17-CWE415_Double_Free__new_delete_char │ ├── 1.json │ └── 2.json ├── CWE415_17-CWE415_Double_Free__new_delete_class │ ├── 1.json │ └── 2.json ├── CWE415_17-CWE415_Double_Free__new_delete_int │ ├── 1.json │ └── 2.json ├── CWE415_17-CWE415_Double_Free__new_delete_int64_t │ ├── 1.json │ └── 2.json ├── CWE415_17-CWE415_Double_Free__new_delete_long │ ├── 1.json │ └── 2.json ├── CWE415_17-CWE415_Double_Free__new_delete_struct │ ├── 1.json │ └── 2.json ├── CWE415_18-CWE415_Double_Free__malloc_free_char │ ├── 1.json │ └── 2.json ├── CWE415_18-CWE415_Double_Free__malloc_free_int │ ├── 1.json │ └── 2.json ├── CWE415_18-CWE415_Double_Free__malloc_free_int64_t │ ├── 1.json │ └── 2.json ├── CWE415_18-CWE415_Double_Free__malloc_free_long │ ├── 1.json │ └── 2.json ├── CWE415_18-CWE415_Double_Free__malloc_free_struct │ ├── 1.json │ └── 2.json ├── CWE415_18-CWE415_Double_Free__new_delete_array_char │ ├── 1.json │ └── 2.json ├── CWE415_18-CWE415_Double_Free__new_delete_array_class │ ├── 1.json │ └── 2.json ├── CWE415_18-CWE415_Double_Free__new_delete_array_int │ ├── 1.json │ └── 2.json ├── CWE415_18-CWE415_Double_Free__new_delete_array_int64_t │ ├── 1.json │ └── 2.json ├── CWE415_18-CWE415_Double_Free__new_delete_array_long │ ├── 1.json │ └── 2.json ├── CWE415_18-CWE415_Double_Free__new_delete_array_struct │ ├── 1.json │ └── 2.json ├── CWE415_18-CWE415_Double_Free__new_delete_char │ ├── 1.json │ └── 2.json ├── CWE415_18-CWE415_Double_Free__new_delete_class │ ├── 1.json │ └── 2.json ├── CWE415_18-CWE415_Double_Free__new_delete_int │ ├── 1.json │ └── 2.json ├── CWE415_18-CWE415_Double_Free__new_delete_int64_t │ ├── 1.json │ └── 2.json ├── CWE415_18-CWE415_Double_Free__new_delete_long │ ├── 1.json │ └── 2.json ├── CWE415_18-CWE415_Double_Free__new_delete_struct │ ├── 1.json │ └── 2.json ├── CWE415_21-CWE415_Double_Free__malloc_free_char │ ├── 1.json │ ├── 2.json │ └── 3.json ├── CWE415_21-CWE415_Double_Free__malloc_free_int │ ├── 1.json │ ├── 2.json │ └── 3.json ├── CWE415_21-CWE415_Double_Free__malloc_free_int64_t │ ├── 1.json │ ├── 2.json │ └── 3.json ├── CWE415_21-CWE415_Double_Free__malloc_free_long │ ├── 1.json │ ├── 2.json │ └── 3.json ├── CWE415_21-CWE415_Double_Free__malloc_free_struct │ ├── 1.json │ ├── 2.json │ └── 3.json ├── CWE415_21-CWE415_Double_Free__new_delete_array_char │ ├── 1.json │ ├── 2.json │ └── 3.json ├── CWE415_21-CWE415_Double_Free__new_delete_array_class │ ├── 1.json │ ├── 2.json │ └── 3.json ├── CWE415_21-CWE415_Double_Free__new_delete_array_int │ ├── 1.json │ ├── 2.json │ └── 3.json ├── CWE415_21-CWE415_Double_Free__new_delete_array_int64_t │ ├── 1.json │ ├── 2.json │ └── 3.json ├── CWE415_21-CWE415_Double_Free__new_delete_array_long │ ├── 1.json │ ├── 2.json │ └── 3.json ├── CWE415_21-CWE415_Double_Free__new_delete_array_struct │ ├── 1.json │ ├── 2.json │ └── 3.json ├── CWE415_21-CWE415_Double_Free__new_delete_char │ ├── 1.json │ ├── 2.json │ └── 3.json ├── CWE415_21-CWE415_Double_Free__new_delete_class │ ├── 1.json │ ├── 2.json │ └── 3.json ├── CWE415_21-CWE415_Double_Free__new_delete_int │ ├── 1.json │ ├── 2.json │ └── 3.json ├── CWE415_21-CWE415_Double_Free__new_delete_int64_t │ ├── 1.json │ ├── 2.json │ └── 3.json ├── CWE415_21-CWE415_Double_Free__new_delete_long │ ├── 1.json │ ├── 2.json │ └── 3.json ├── CWE415_21-CWE415_Double_Free__new_delete_struct │ ├── 1.json │ ├── 2.json │ └── 3.json ├── CWE415_22-CWE415_Double_Free__malloc_free_char │ ├── 1.json │ ├── 2.json │ └── 3.json ├── CWE415_22-CWE415_Double_Free__malloc_free_int │ ├── 1.json │ ├── 2.json │ └── 3.json ├── CWE415_22-CWE415_Double_Free__malloc_free_int64_t │ ├── 1.json │ ├── 2.json │ └── 3.json ├── CWE415_22-CWE415_Double_Free__malloc_free_long │ ├── 1.json │ ├── 2.json │ └── 3.json ├── CWE415_22-CWE415_Double_Free__malloc_free_struct │ ├── 1.json │ ├── 2.json │ └── 3.json ├── CWE415_22-CWE415_Double_Free__new_delete_array_char │ ├── 1.json │ ├── 2.json │ └── 3.json ├── CWE415_22-CWE415_Double_Free__new_delete_array_class │ ├── 1.json │ ├── 2.json │ └── 3.json ├── CWE415_22-CWE415_Double_Free__new_delete_array_int │ ├── 1.json │ ├── 2.json │ └── 3.json ├── CWE415_22-CWE415_Double_Free__new_delete_array_int64_t │ ├── 1.json │ ├── 2.json │ └── 3.json ├── CWE415_22-CWE415_Double_Free__new_delete_array_long │ ├── 1.json │ ├── 2.json │ └── 3.json ├── CWE415_22-CWE415_Double_Free__new_delete_array_struct │ ├── 1.json │ ├── 2.json │ └── 3.json ├── CWE415_22-CWE415_Double_Free__new_delete_char │ ├── 1.json │ ├── 2.json │ └── 3.json ├── CWE415_22-CWE415_Double_Free__new_delete_class │ ├── 1.json │ ├── 2.json │ └── 3.json ├── CWE415_22-CWE415_Double_Free__new_delete_int │ ├── 1.json │ ├── 2.json │ └── 3.json ├── CWE415_22-CWE415_Double_Free__new_delete_int64_t │ ├── 1.json │ ├── 2.json │ └── 3.json ├── CWE415_22-CWE415_Double_Free__new_delete_long │ ├── 1.json │ ├── 2.json │ └── 3.json ├── CWE415_22-CWE415_Double_Free__new_delete_struct │ ├── 1.json │ ├── 2.json │ └── 3.json ├── CWE415_31-CWE415_Double_Free__malloc_free_char │ ├── 1.json │ └── 2.json ├── CWE415_31-CWE415_Double_Free__malloc_free_int │ ├── 1.json │ └── 2.json ├── CWE415_31-CWE415_Double_Free__malloc_free_int64_t │ ├── 1.json │ └── 2.json ├── CWE415_31-CWE415_Double_Free__malloc_free_long │ ├── 1.json │ └── 2.json ├── CWE415_31-CWE415_Double_Free__malloc_free_struct │ ├── 1.json │ └── 2.json ├── CWE415_31-CWE415_Double_Free__new_delete_array_char │ ├── 1.json │ └── 2.json ├── CWE415_31-CWE415_Double_Free__new_delete_array_class │ ├── 1.json │ └── 2.json ├── CWE415_31-CWE415_Double_Free__new_delete_array_int │ ├── 1.json │ └── 2.json ├── CWE415_31-CWE415_Double_Free__new_delete_array_int64_t │ ├── 1.json │ └── 2.json ├── CWE415_31-CWE415_Double_Free__new_delete_array_long │ ├── 1.json │ └── 2.json ├── CWE415_31-CWE415_Double_Free__new_delete_array_struct │ ├── 1.json │ └── 2.json ├── CWE415_31-CWE415_Double_Free__new_delete_char │ ├── 1.json │ └── 2.json ├── CWE415_31-CWE415_Double_Free__new_delete_class │ ├── 1.json │ └── 2.json ├── CWE415_31-CWE415_Double_Free__new_delete_int │ ├── 1.json │ └── 2.json ├── CWE415_31-CWE415_Double_Free__new_delete_int64_t │ ├── 1.json │ └── 2.json ├── CWE415_31-CWE415_Double_Free__new_delete_long │ ├── 1.json │ └── 2.json ├── CWE415_31-CWE415_Double_Free__new_delete_struct │ ├── 1.json │ └── 2.json ├── CWE415_32-CWE415_Double_Free__malloc_free_char │ ├── 1.json │ └── 2.json ├── CWE415_32-CWE415_Double_Free__malloc_free_int │ ├── 1.json │ └── 2.json ├── CWE415_32-CWE415_Double_Free__malloc_free_int64_t │ ├── 1.json │ └── 2.json ├── CWE415_32-CWE415_Double_Free__malloc_free_long │ ├── 1.json │ └── 2.json ├── CWE415_32-CWE415_Double_Free__malloc_free_struct │ ├── 1.json │ └── 2.json ├── CWE415_32-CWE415_Double_Free__new_delete_array_char │ ├── 1.json │ └── 2.json ├── CWE415_32-CWE415_Double_Free__new_delete_array_class │ ├── 1.json │ └── 2.json ├── CWE415_32-CWE415_Double_Free__new_delete_array_int │ ├── 1.json │ └── 2.json ├── CWE415_32-CWE415_Double_Free__new_delete_array_int64_t │ ├── 1.json │ └── 2.json ├── CWE415_32-CWE415_Double_Free__new_delete_array_long │ ├── 1.json │ └── 2.json ├── CWE415_32-CWE415_Double_Free__new_delete_array_struct │ ├── 1.json │ └── 2.json ├── CWE415_32-CWE415_Double_Free__new_delete_char │ ├── 1.json │ └── 2.json ├── CWE415_32-CWE415_Double_Free__new_delete_class │ ├── 1.json │ └── 2.json ├── CWE415_32-CWE415_Double_Free__new_delete_int │ ├── 1.json │ └── 2.json ├── CWE415_32-CWE415_Double_Free__new_delete_int64_t │ ├── 1.json │ └── 2.json ├── CWE415_32-CWE415_Double_Free__new_delete_long │ ├── 1.json │ └── 2.json ├── CWE415_32-CWE415_Double_Free__new_delete_struct │ ├── 1.json │ └── 2.json ├── CWE415_33-CWE415_Double_Free__malloc_free_char │ ├── 1.json │ └── 2.json ├── CWE415_33-CWE415_Double_Free__malloc_free_int │ ├── 1.json │ └── 2.json ├── CWE415_33-CWE415_Double_Free__malloc_free_int64_t │ ├── 1.json │ └── 2.json ├── CWE415_33-CWE415_Double_Free__malloc_free_long │ ├── 1.json │ └── 2.json ├── CWE415_33-CWE415_Double_Free__malloc_free_struct │ ├── 1.json │ └── 2.json ├── CWE415_33-CWE415_Double_Free__new_delete_array_char │ ├── 1.json │ └── 2.json ├── CWE415_33-CWE415_Double_Free__new_delete_array_class │ ├── 1.json │ └── 2.json ├── CWE415_33-CWE415_Double_Free__new_delete_array_int │ ├── 1.json │ └── 2.json ├── CWE415_33-CWE415_Double_Free__new_delete_array_int64_t │ ├── 1.json │ └── 2.json ├── CWE415_33-CWE415_Double_Free__new_delete_array_long │ ├── 1.json │ └── 2.json ├── CWE415_33-CWE415_Double_Free__new_delete_array_struct │ ├── 1.json │ └── 2.json ├── CWE415_33-CWE415_Double_Free__new_delete_char │ ├── 1.json │ └── 2.json ├── CWE415_33-CWE415_Double_Free__new_delete_class │ ├── 1.json │ └── 2.json ├── CWE415_33-CWE415_Double_Free__new_delete_int │ ├── 1.json │ └── 2.json ├── CWE415_33-CWE415_Double_Free__new_delete_int64_t │ ├── 1.json │ └── 2.json ├── CWE415_33-CWE415_Double_Free__new_delete_long │ ├── 1.json │ └── 2.json ├── CWE415_33-CWE415_Double_Free__new_delete_struct │ ├── 1.json │ └── 2.json ├── CWE415_41-CWE415_Double_Free__malloc_free_char │ ├── 1.json │ ├── 2.json │ └── 3.json ├── CWE415_41-CWE415_Double_Free__malloc_free_int │ ├── 1.json │ ├── 2.json │ └── 3.json ├── CWE415_41-CWE415_Double_Free__malloc_free_int64_t │ ├── 1.json │ ├── 2.json │ └── 3.json ├── CWE415_41-CWE415_Double_Free__malloc_free_long │ ├── 1.json │ ├── 2.json │ └── 3.json ├── CWE415_41-CWE415_Double_Free__malloc_free_struct │ ├── 1.json │ ├── 2.json │ └── 3.json ├── CWE415_41-CWE415_Double_Free__new_delete_array_char │ ├── 1.json │ ├── 2.json │ └── 3.json ├── CWE415_41-CWE415_Double_Free__new_delete_array_class │ ├── 1.json │ ├── 2.json │ └── 3.json ├── CWE415_41-CWE415_Double_Free__new_delete_array_int │ ├── 1.json │ ├── 2.json │ └── 3.json ├── CWE415_41-CWE415_Double_Free__new_delete_array_int64_t │ ├── 1.json │ ├── 2.json │ └── 3.json ├── CWE415_41-CWE415_Double_Free__new_delete_array_long │ ├── 1.json │ ├── 2.json │ └── 3.json ├── CWE415_41-CWE415_Double_Free__new_delete_array_struct │ ├── 1.json │ ├── 2.json │ └── 3.json ├── CWE415_41-CWE415_Double_Free__new_delete_char │ ├── 1.json │ ├── 2.json │ └── 3.json ├── CWE415_41-CWE415_Double_Free__new_delete_class │ ├── 1.json │ ├── 2.json │ └── 3.json ├── CWE415_41-CWE415_Double_Free__new_delete_int │ ├── 1.json │ ├── 2.json │ └── 3.json ├── CWE415_41-CWE415_Double_Free__new_delete_int64_t │ ├── 1.json │ ├── 2.json │ └── 3.json ├── CWE415_41-CWE415_Double_Free__new_delete_long │ ├── 1.json │ ├── 2.json │ └── 3.json ├── CWE415_41-CWE415_Double_Free__new_delete_struct │ ├── 1.json │ ├── 2.json │ └── 3.json ├── CWE415_42-CWE415_Double_Free__new_delete_array_char │ ├── 1.json │ └── 2.json ├── CWE415_42-CWE415_Double_Free__new_delete_array_class │ ├── 1.json │ └── 2.json ├── CWE415_42-CWE415_Double_Free__new_delete_array_int │ ├── 1.json │ └── 2.json ├── CWE415_42-CWE415_Double_Free__new_delete_array_int64_t │ ├── 1.json │ └── 2.json ├── CWE415_42-CWE415_Double_Free__new_delete_array_long │ ├── 1.json │ └── 2.json ├── CWE415_42-CWE415_Double_Free__new_delete_array_struct │ ├── 1.json │ └── 2.json ├── CWE415_42-CWE415_Double_Free__new_delete_char │ ├── 1.json │ └── 2.json ├── CWE415_42-CWE415_Double_Free__new_delete_class │ ├── 1.json │ └── 2.json ├── CWE415_42-CWE415_Double_Free__new_delete_int │ ├── 1.json │ └── 2.json ├── CWE415_42-CWE415_Double_Free__new_delete_int64_t │ ├── 1.json │ └── 2.json ├── CWE415_42-CWE415_Double_Free__new_delete_long │ ├── 1.json │ └── 2.json ├── CWE415_42-CWE415_Double_Free__new_delete_struct │ ├── 1.json │ └── 2.json ├── CWE415_44-CWE415_Double_Free__malloc_free_char │ ├── 1.json │ └── 2.json ├── CWE415_44-CWE415_Double_Free__malloc_free_int │ ├── 1.json │ └── 2.json ├── CWE415_44-CWE415_Double_Free__malloc_free_int64_t │ ├── 1.json │ └── 2.json ├── CWE415_44-CWE415_Double_Free__malloc_free_long │ ├── 1.json │ └── 2.json ├── CWE415_44-CWE415_Double_Free__malloc_free_struct │ ├── 1.json │ └── 2.json ├── CWE415_44-CWE415_Double_Free__new_delete_array_char │ ├── 1.json │ └── 2.json ├── CWE415_44-CWE415_Double_Free__new_delete_array_class │ ├── 1.json │ └── 2.json ├── CWE415_44-CWE415_Double_Free__new_delete_array_int │ ├── 1.json │ └── 2.json ├── CWE415_44-CWE415_Double_Free__new_delete_array_int64_t │ ├── 1.json │ └── 2.json ├── CWE415_44-CWE415_Double_Free__new_delete_array_long │ ├── 1.json │ └── 2.json ├── CWE415_44-CWE415_Double_Free__new_delete_array_struct │ ├── 1.json │ └── 2.json ├── CWE415_44-CWE415_Double_Free__new_delete_char │ ├── 1.json │ └── 2.json ├── CWE415_44-CWE415_Double_Free__new_delete_class │ ├── 1.json │ └── 2.json ├── CWE415_44-CWE415_Double_Free__new_delete_int │ ├── 1.json │ └── 2.json ├── CWE415_44-CWE415_Double_Free__new_delete_int64_t │ ├── 1.json │ └── 2.json ├── CWE415_44-CWE415_Double_Free__new_delete_long │ ├── 1.json │ └── 2.json ├── CWE415_44-CWE415_Double_Free__new_delete_struct │ ├── 1.json │ └── 2.json ├── CWE415_51-CWE415_Double_Free__malloc_free_char │ ├── 1.json │ ├── 2.json │ └── 3.json ├── CWE415_51-CWE415_Double_Free__malloc_free_int │ ├── 1.json │ ├── 2.json │ └── 3.json ├── CWE415_51-CWE415_Double_Free__malloc_free_int64_t │ ├── 1.json │ ├── 2.json │ └── 3.json ├── CWE415_51-CWE415_Double_Free__malloc_free_long │ ├── 1.json │ ├── 2.json │ └── 3.json ├── CWE415_51-CWE415_Double_Free__malloc_free_struct │ ├── 1.json │ ├── 2.json │ └── 3.json ├── CWE415_51-CWE415_Double_Free__new_delete_array_char │ ├── 1.json │ ├── 2.json │ └── 3.json ├── CWE415_51-CWE415_Double_Free__new_delete_array_class │ ├── 1.json │ ├── 2.json │ └── 3.json ├── CWE415_51-CWE415_Double_Free__new_delete_array_int │ ├── 1.json │ ├── 2.json │ └── 3.json ├── CWE415_51-CWE415_Double_Free__new_delete_array_int64_t │ ├── 1.json │ ├── 2.json │ └── 3.json ├── CWE415_51-CWE415_Double_Free__new_delete_array_long │ ├── 1.json │ ├── 2.json │ └── 3.json ├── CWE415_51-CWE415_Double_Free__new_delete_array_struct │ ├── 1.json │ ├── 2.json │ └── 3.json ├── CWE415_51-CWE415_Double_Free__new_delete_char │ ├── 1.json │ ├── 2.json │ └── 3.json ├── CWE415_51-CWE415_Double_Free__new_delete_class │ ├── 1.json │ ├── 2.json │ └── 3.json ├── CWE415_51-CWE415_Double_Free__new_delete_int │ ├── 1.json │ ├── 2.json │ └── 3.json ├── CWE415_51-CWE415_Double_Free__new_delete_int64_t │ ├── 1.json │ ├── 2.json │ └── 3.json ├── CWE415_51-CWE415_Double_Free__new_delete_long │ ├── 1.json │ ├── 2.json │ └── 3.json ├── CWE415_51-CWE415_Double_Free__new_delete_struct │ ├── 1.json │ ├── 2.json │ └── 3.json ├── CWE415_52-CWE415_Double_Free__malloc_free_char │ ├── 1.json │ ├── 2.json │ ├── 3.json │ └── 4.json ├── CWE415_52-CWE415_Double_Free__malloc_free_int │ ├── 1.json │ ├── 2.json │ ├── 3.json │ └── 4.json ├── CWE415_52-CWE415_Double_Free__malloc_free_int64_t │ ├── 1.json │ ├── 2.json │ ├── 3.json │ └── 4.json ├── CWE415_52-CWE415_Double_Free__malloc_free_long │ ├── 1.json │ ├── 2.json │ ├── 3.json │ └── 4.json ├── CWE415_52-CWE415_Double_Free__malloc_free_struct │ ├── 1.json │ ├── 2.json │ ├── 3.json │ └── 4.json ├── CWE415_52-CWE415_Double_Free__new_delete_array_char │ ├── 1.json │ ├── 2.json │ ├── 3.json │ └── 4.json ├── CWE415_52-CWE415_Double_Free__new_delete_array_class │ ├── 1.json │ ├── 2.json │ ├── 3.json │ └── 4.json ├── CWE415_52-CWE415_Double_Free__new_delete_array_int │ ├── 1.json │ ├── 2.json │ ├── 3.json │ └── 4.json ├── CWE415_52-CWE415_Double_Free__new_delete_array_int64_t │ ├── 1.json │ ├── 2.json │ ├── 3.json │ └── 4.json ├── CWE415_52-CWE415_Double_Free__new_delete_array_long │ ├── 1.json │ ├── 2.json │ ├── 3.json │ └── 4.json ├── CWE415_52-CWE415_Double_Free__new_delete_array_struct │ ├── 1.json │ ├── 2.json │ ├── 3.json │ └── 4.json ├── CWE415_52-CWE415_Double_Free__new_delete_char │ ├── 1.json │ ├── 2.json │ ├── 3.json │ └── 4.json ├── CWE415_52-CWE415_Double_Free__new_delete_class │ ├── 1.json │ ├── 2.json │ ├── 3.json │ └── 4.json ├── CWE415_52-CWE415_Double_Free__new_delete_int │ ├── 1.json │ ├── 2.json │ ├── 3.json │ └── 4.json ├── CWE415_52-CWE415_Double_Free__new_delete_int64_t │ ├── 1.json │ ├── 2.json │ ├── 3.json │ └── 4.json ├── CWE415_52-CWE415_Double_Free__new_delete_long │ ├── 1.json │ ├── 2.json │ ├── 3.json │ └── 4.json ├── CWE415_52-CWE415_Double_Free__new_delete_struct │ ├── 1.json │ ├── 2.json │ ├── 3.json │ └── 4.json ├── CWE415_53-CWE415_Double_Free__malloc_free_char │ ├── 1.json │ ├── 2.json │ ├── 3.json │ ├── 4.json │ └── 5.json ├── CWE415_53-CWE415_Double_Free__malloc_free_int │ ├── 1.json │ ├── 2.json │ ├── 3.json │ ├── 4.json │ └── 5.json ├── CWE415_53-CWE415_Double_Free__malloc_free_int64_t │ ├── 1.json │ ├── 2.json │ ├── 3.json │ ├── 4.json │ └── 5.json ├── CWE415_53-CWE415_Double_Free__malloc_free_long │ ├── 1.json │ ├── 2.json │ ├── 3.json │ ├── 4.json │ └── 5.json ├── CWE415_53-CWE415_Double_Free__malloc_free_struct │ ├── 1.json │ ├── 2.json │ ├── 3.json │ ├── 4.json │ └── 5.json ├── CWE415_53-CWE415_Double_Free__new_delete_array_char │ ├── 1.json │ ├── 2.json │ ├── 3.json │ ├── 4.json │ └── 5.json ├── CWE415_53-CWE415_Double_Free__new_delete_array_class │ ├── 1.json │ ├── 2.json │ ├── 3.json │ ├── 4.json │ └── 5.json ├── CWE415_53-CWE415_Double_Free__new_delete_array_int │ ├── 1.json │ ├── 2.json │ ├── 3.json │ ├── 4.json │ └── 5.json ├── CWE415_53-CWE415_Double_Free__new_delete_array_int64_t │ ├── 1.json │ ├── 2.json │ ├── 3.json │ ├── 4.json │ └── 5.json ├── CWE415_53-CWE415_Double_Free__new_delete_array_long │ ├── 1.json │ ├── 2.json │ ├── 3.json │ ├── 4.json │ └── 5.json ├── CWE415_53-CWE415_Double_Free__new_delete_array_struct │ ├── 1.json │ ├── 2.json │ ├── 3.json │ ├── 4.json │ └── 5.json ├── CWE415_53-CWE415_Double_Free__new_delete_char │ ├── 1.json │ ├── 2.json │ ├── 3.json │ ├── 4.json │ └── 5.json ├── CWE415_53-CWE415_Double_Free__new_delete_class │ ├── 1.json │ ├── 2.json │ ├── 3.json │ ├── 4.json │ └── 5.json ├── CWE415_53-CWE415_Double_Free__new_delete_int │ ├── 1.json │ ├── 2.json │ ├── 3.json │ ├── 4.json │ └── 5.json ├── CWE415_53-CWE415_Double_Free__new_delete_int64_t │ ├── 1.json │ ├── 2.json │ ├── 3.json │ ├── 4.json │ └── 5.json ├── CWE415_53-CWE415_Double_Free__new_delete_long │ ├── 1.json │ ├── 2.json │ ├── 3.json │ ├── 4.json │ └── 5.json ├── CWE415_53-CWE415_Double_Free__new_delete_struct │ ├── 1.json │ ├── 2.json │ ├── 3.json │ ├── 4.json │ └── 5.json ├── CWE415_54-CWE415_Double_Free__malloc_free_char │ ├── 1.json │ ├── 2.json │ ├── 3.json │ ├── 4.json │ ├── 5.json │ └── 6.json ├── CWE415_54-CWE415_Double_Free__malloc_free_int │ ├── 1.json │ ├── 2.json │ ├── 3.json │ ├── 4.json │ ├── 5.json │ └── 6.json ├── CWE415_54-CWE415_Double_Free__malloc_free_int64_t │ ├── 1.json │ ├── 2.json │ ├── 3.json │ ├── 4.json │ ├── 5.json │ └── 6.json ├── CWE415_54-CWE415_Double_Free__malloc_free_long │ ├── 1.json │ ├── 2.json │ ├── 3.json │ ├── 4.json │ ├── 5.json │ └── 6.json ├── CWE415_54-CWE415_Double_Free__malloc_free_struct │ ├── 1.json │ ├── 2.json │ ├── 3.json │ ├── 4.json │ ├── 5.json │ └── 6.json ├── CWE415_54-CWE415_Double_Free__new_delete_array_char │ ├── 1.json │ ├── 2.json │ ├── 3.json │ ├── 4.json │ ├── 5.json │ └── 6.json ├── CWE415_54-CWE415_Double_Free__new_delete_array_class │ ├── 1.json │ ├── 2.json │ ├── 3.json │ ├── 4.json │ ├── 5.json │ └── 6.json ├── CWE415_54-CWE415_Double_Free__new_delete_array_int │ ├── 1.json │ ├── 2.json │ ├── 3.json │ ├── 4.json │ ├── 5.json │ └── 6.json ├── CWE415_54-CWE415_Double_Free__new_delete_array_int64_t │ ├── 1.json │ ├── 2.json │ ├── 3.json │ ├── 4.json │ ├── 5.json │ └── 6.json ├── CWE415_54-CWE415_Double_Free__new_delete_array_long │ ├── 1.json │ ├── 2.json │ ├── 3.json │ ├── 4.json │ ├── 5.json │ └── 6.json ├── CWE415_54-CWE415_Double_Free__new_delete_array_struct │ ├── 1.json │ ├── 2.json │ ├── 3.json │ ├── 4.json │ ├── 5.json │ └── 6.json ├── CWE415_54-CWE415_Double_Free__new_delete_char │ ├── 1.json │ ├── 2.json │ ├── 3.json │ ├── 4.json │ ├── 5.json │ └── 6.json ├── CWE415_54-CWE415_Double_Free__new_delete_class │ ├── 1.json │ ├── 2.json │ ├── 3.json │ ├── 4.json │ ├── 5.json │ └── 6.json ├── CWE415_54-CWE415_Double_Free__new_delete_int │ ├── 1.json │ ├── 2.json │ ├── 3.json │ ├── 4.json │ ├── 5.json │ └── 6.json ├── CWE415_54-CWE415_Double_Free__new_delete_int64_t │ ├── 1.json │ ├── 2.json │ ├── 3.json │ ├── 4.json │ ├── 5.json │ └── 6.json ├── CWE415_54-CWE415_Double_Free__new_delete_long │ ├── 1.json │ ├── 2.json │ ├── 3.json │ ├── 4.json │ ├── 5.json │ └── 6.json ├── CWE415_54-CWE415_Double_Free__new_delete_struct │ ├── 1.json │ ├── 2.json │ ├── 3.json │ ├── 4.json │ ├── 5.json │ └── 6.json ├── CWE415_61-CWE415_Double_Free__new_delete_array_char │ ├── 1.json │ └── 2.json ├── CWE415_61-CWE415_Double_Free__new_delete_array_class │ ├── 1.json │ └── 2.json ├── CWE415_61-CWE415_Double_Free__new_delete_array_int │ ├── 1.json │ └── 2.json ├── CWE415_61-CWE415_Double_Free__new_delete_array_int64_t │ ├── 1.json │ └── 2.json ├── CWE415_61-CWE415_Double_Free__new_delete_array_long │ ├── 1.json │ └── 2.json ├── CWE415_61-CWE415_Double_Free__new_delete_array_struct │ ├── 1.json │ └── 2.json ├── CWE415_61-CWE415_Double_Free__new_delete_char │ ├── 1.json │ └── 2.json ├── CWE415_61-CWE415_Double_Free__new_delete_class │ ├── 1.json │ └── 2.json ├── CWE415_61-CWE415_Double_Free__new_delete_int │ ├── 1.json │ └── 2.json ├── CWE415_61-CWE415_Double_Free__new_delete_int64_t │ ├── 1.json │ └── 2.json ├── CWE415_61-CWE415_Double_Free__new_delete_long │ ├── 1.json │ └── 2.json ├── CWE415_61-CWE415_Double_Free__new_delete_struct │ ├── 1.json │ └── 2.json ├── CWE415_63-CWE415_Double_Free__malloc_free_char │ ├── 1.json │ └── 2.json ├── CWE415_63-CWE415_Double_Free__malloc_free_int │ ├── 1.json │ └── 2.json ├── CWE415_63-CWE415_Double_Free__malloc_free_int64_t │ ├── 1.json │ └── 2.json ├── CWE415_63-CWE415_Double_Free__malloc_free_long │ ├── 1.json │ └── 2.json ├── CWE415_63-CWE415_Double_Free__malloc_free_struct │ ├── 1.json │ └── 2.json ├── CWE415_63-CWE415_Double_Free__new_delete_array_char │ ├── 1.json │ └── 2.json ├── CWE415_63-CWE415_Double_Free__new_delete_array_class │ ├── 1.json │ └── 2.json ├── CWE415_63-CWE415_Double_Free__new_delete_array_int │ ├── 1.json │ └── 2.json ├── CWE415_63-CWE415_Double_Free__new_delete_array_int64_t │ ├── 1.json │ └── 2.json ├── CWE415_63-CWE415_Double_Free__new_delete_array_long │ ├── 1.json │ └── 2.json ├── CWE415_63-CWE415_Double_Free__new_delete_array_struct │ ├── 1.json │ └── 2.json ├── CWE415_63-CWE415_Double_Free__new_delete_char │ ├── 1.json │ └── 2.json ├── CWE415_63-CWE415_Double_Free__new_delete_class │ ├── 1.json │ └── 2.json ├── CWE415_63-CWE415_Double_Free__new_delete_int │ ├── 1.json │ └── 2.json ├── CWE415_63-CWE415_Double_Free__new_delete_int64_t │ ├── 1.json │ └── 2.json ├── CWE415_63-CWE415_Double_Free__new_delete_long │ ├── 1.json │ └── 2.json ├── CWE415_63-CWE415_Double_Free__new_delete_struct │ ├── 1.json │ └── 2.json ├── CWE415_64-CWE415_Double_Free__malloc_free_char │ ├── 1.json │ └── 2.json ├── CWE415_64-CWE415_Double_Free__malloc_free_int │ ├── 1.json │ └── 2.json ├── CWE415_64-CWE415_Double_Free__malloc_free_int64_t │ ├── 1.json │ └── 2.json ├── CWE415_64-CWE415_Double_Free__malloc_free_long │ ├── 1.json │ └── 2.json ├── CWE415_64-CWE415_Double_Free__malloc_free_struct │ ├── 1.json │ └── 2.json ├── CWE415_64-CWE415_Double_Free__new_delete_array_char │ ├── 1.json │ └── 2.json ├── CWE415_64-CWE415_Double_Free__new_delete_array_class │ ├── 1.json │ └── 2.json ├── CWE415_64-CWE415_Double_Free__new_delete_array_int │ ├── 1.json │ └── 2.json ├── CWE415_64-CWE415_Double_Free__new_delete_array_int64_t │ ├── 1.json │ └── 2.json ├── CWE415_64-CWE415_Double_Free__new_delete_array_long │ ├── 1.json │ └── 2.json ├── CWE415_64-CWE415_Double_Free__new_delete_array_struct │ ├── 1.json │ └── 2.json ├── CWE415_64-CWE415_Double_Free__new_delete_char │ ├── 1.json │ └── 2.json ├── CWE415_64-CWE415_Double_Free__new_delete_class │ ├── 1.json │ └── 2.json ├── CWE415_64-CWE415_Double_Free__new_delete_int │ ├── 1.json │ └── 2.json ├── CWE415_64-CWE415_Double_Free__new_delete_int64_t │ ├── 1.json │ └── 2.json ├── CWE415_64-CWE415_Double_Free__new_delete_long │ ├── 1.json │ └── 2.json ├── CWE415_64-CWE415_Double_Free__new_delete_struct │ ├── 1.json │ └── 2.json ├── CWE415_65-CWE415_Double_Free__malloc_free_char │ ├── 1.json │ └── 2.json ├── CWE415_65-CWE415_Double_Free__malloc_free_int │ ├── 1.json │ └── 2.json ├── CWE415_65-CWE415_Double_Free__malloc_free_int64_t │ ├── 1.json │ └── 2.json ├── CWE415_65-CWE415_Double_Free__malloc_free_long │ ├── 1.json │ └── 2.json ├── CWE415_65-CWE415_Double_Free__malloc_free_struct │ ├── 1.json │ └── 2.json ├── CWE415_65-CWE415_Double_Free__new_delete_array_char │ ├── 1.json │ └── 2.json ├── CWE415_65-CWE415_Double_Free__new_delete_array_class │ ├── 1.json │ └── 2.json ├── CWE415_65-CWE415_Double_Free__new_delete_array_int │ ├── 1.json │ └── 2.json ├── CWE415_65-CWE415_Double_Free__new_delete_array_int64_t │ ├── 1.json │ └── 2.json ├── CWE415_65-CWE415_Double_Free__new_delete_array_long │ ├── 1.json │ └── 2.json ├── CWE415_65-CWE415_Double_Free__new_delete_array_struct │ ├── 1.json │ └── 2.json ├── CWE415_65-CWE415_Double_Free__new_delete_char │ ├── 1.json │ └── 2.json ├── CWE415_65-CWE415_Double_Free__new_delete_class │ ├── 1.json │ └── 2.json ├── CWE415_65-CWE415_Double_Free__new_delete_int │ ├── 1.json │ └── 2.json ├── CWE415_65-CWE415_Double_Free__new_delete_int64_t │ ├── 1.json │ └── 2.json ├── CWE415_65-CWE415_Double_Free__new_delete_long │ ├── 1.json │ └── 2.json ├── CWE415_65-CWE415_Double_Free__new_delete_struct │ ├── 1.json │ └── 2.json ├── CWE415_66-CWE415_Double_Free__malloc_free_char │ ├── 1.json │ └── 2.json ├── CWE415_66-CWE415_Double_Free__malloc_free_int │ ├── 1.json │ └── 2.json ├── CWE415_66-CWE415_Double_Free__malloc_free_int64_t │ ├── 1.json │ └── 2.json ├── CWE415_66-CWE415_Double_Free__malloc_free_long │ ├── 1.json │ └── 2.json ├── CWE415_66-CWE415_Double_Free__malloc_free_struct │ ├── 1.json │ └── 2.json ├── CWE415_66-CWE415_Double_Free__new_delete_array_char │ ├── 1.json │ └── 2.json ├── CWE415_66-CWE415_Double_Free__new_delete_array_class │ ├── 1.json │ └── 2.json ├── CWE415_66-CWE415_Double_Free__new_delete_array_int │ ├── 1.json │ └── 2.json ├── CWE415_66-CWE415_Double_Free__new_delete_array_int64_t │ ├── 1.json │ └── 2.json ├── CWE415_66-CWE415_Double_Free__new_delete_array_long │ ├── 1.json │ └── 2.json ├── CWE415_66-CWE415_Double_Free__new_delete_array_struct │ ├── 1.json │ └── 2.json ├── CWE415_66-CWE415_Double_Free__new_delete_char │ ├── 1.json │ └── 2.json ├── CWE415_66-CWE415_Double_Free__new_delete_class │ ├── 1.json │ └── 2.json ├── CWE415_66-CWE415_Double_Free__new_delete_int │ ├── 1.json │ └── 2.json ├── CWE415_66-CWE415_Double_Free__new_delete_int64_t │ ├── 1.json │ └── 2.json ├── CWE415_66-CWE415_Double_Free__new_delete_long │ ├── 1.json │ └── 2.json ├── CWE415_66-CWE415_Double_Free__new_delete_struct │ ├── 1.json │ └── 2.json ├── CWE415_81-CWE415_Double_Free__malloc_free_char │ └── 1.json ├── CWE415_81-CWE415_Double_Free__malloc_free_int │ └── 1.json ├── CWE415_81-CWE415_Double_Free__malloc_free_int64_t │ └── 1.json ├── CWE415_81-CWE415_Double_Free__malloc_free_long │ └── 1.json ├── CWE415_81-CWE415_Double_Free__malloc_free_struct │ └── 1.json ├── CWE415_81-CWE415_Double_Free__new_delete_array_char │ └── 1.json ├── CWE415_81-CWE415_Double_Free__new_delete_array_class │ └── 1.json ├── CWE415_81-CWE415_Double_Free__new_delete_array_int │ └── 1.json ├── CWE415_81-CWE415_Double_Free__new_delete_array_int64_t │ └── 1.json ├── CWE415_81-CWE415_Double_Free__new_delete_array_long │ └── 1.json ├── CWE415_81-CWE415_Double_Free__new_delete_array_struct │ └── 1.json ├── CWE415_81-CWE415_Double_Free__new_delete_char │ └── 1.json ├── CWE415_81-CWE415_Double_Free__new_delete_class │ └── 1.json ├── CWE415_81-CWE415_Double_Free__new_delete_int │ └── 1.json ├── CWE415_81-CWE415_Double_Free__new_delete_int64_t │ └── 1.json ├── CWE415_81-CWE415_Double_Free__new_delete_long │ └── 1.json ├── CWE415_81-CWE415_Double_Free__new_delete_struct │ └── 1.json ├── CWE415_82-CWE415_Double_Free__malloc_free_char │ └── 1.json ├── CWE415_82-CWE415_Double_Free__malloc_free_int │ └── 1.json ├── CWE415_82-CWE415_Double_Free__malloc_free_int64_t │ └── 1.json ├── CWE415_82-CWE415_Double_Free__malloc_free_long │ └── 1.json ├── CWE415_82-CWE415_Double_Free__malloc_free_struct │ └── 1.json ├── CWE415_82-CWE415_Double_Free__new_delete_array_char │ └── 1.json ├── CWE415_82-CWE415_Double_Free__new_delete_array_class │ └── 1.json ├── CWE415_82-CWE415_Double_Free__new_delete_array_int │ └── 1.json ├── CWE415_82-CWE415_Double_Free__new_delete_array_int64_t │ └── 1.json ├── CWE415_82-CWE415_Double_Free__new_delete_array_long │ └── 1.json ├── CWE415_82-CWE415_Double_Free__new_delete_array_struct │ └── 1.json ├── CWE415_82-CWE415_Double_Free__new_delete_char │ └── 1.json ├── CWE415_82-CWE415_Double_Free__new_delete_class │ └── 1.json ├── CWE415_82-CWE415_Double_Free__new_delete_int │ └── 1.json ├── CWE415_82-CWE415_Double_Free__new_delete_int64_t │ └── 1.json ├── CWE415_82-CWE415_Double_Free__new_delete_long │ └── 1.json ├── CWE415_82-CWE415_Double_Free__new_delete_struct │ └── 1.json ├── CWE416_01-CWE416_Use_After_Free__malloc_free_char │ └── 1.json ├── CWE416_01-CWE416_Use_After_Free__malloc_free_int │ ├── 1.json │ └── 2.json ├── CWE416_01-CWE416_Use_After_Free__malloc_free_int64_t │ ├── 1.json │ └── 2.json ├── CWE416_01-CWE416_Use_After_Free__malloc_free_long │ ├── 1.json │ └── 2.json ├── CWE416_01-CWE416_Use_After_Free__malloc_free_struct │ └── 1.json ├── CWE416_01-CWE416_Use_After_Free__new_delete_array_char │ └── 1.json ├── CWE416_01-CWE416_Use_After_Free__new_delete_array_class │ └── 1.json ├── CWE416_01-CWE416_Use_After_Free__new_delete_array_int │ ├── 1.json │ └── 2.json ├── CWE416_01-CWE416_Use_After_Free__new_delete_array_int64_t │ ├── 1.json │ └── 2.json ├── CWE416_01-CWE416_Use_After_Free__new_delete_array_long │ ├── 1.json │ └── 2.json ├── CWE416_01-CWE416_Use_After_Free__new_delete_array_struct │ └── 1.json ├── CWE416_01-CWE416_Use_After_Free__new_delete_char │ ├── 1.json │ └── 2.json ├── CWE416_01-CWE416_Use_After_Free__new_delete_class │ └── 1.json ├── CWE416_01-CWE416_Use_After_Free__new_delete_int │ ├── 1.json │ └── 2.json ├── CWE416_01-CWE416_Use_After_Free__new_delete_int64_t │ ├── 1.json │ └── 2.json ├── CWE416_01-CWE416_Use_After_Free__new_delete_long │ ├── 1.json │ └── 2.json ├── CWE416_01-CWE416_Use_After_Free__new_delete_struct │ └── 1.json ├── CWE416_02-CWE416_Use_After_Free__malloc_free_char │ └── 1.json ├── CWE416_02-CWE416_Use_After_Free__malloc_free_int │ ├── 1.json │ └── 2.json ├── CWE416_02-CWE416_Use_After_Free__malloc_free_int64_t │ ├── 1.json │ └── 2.json ├── CWE416_02-CWE416_Use_After_Free__malloc_free_long │ ├── 1.json │ └── 2.json ├── CWE416_02-CWE416_Use_After_Free__malloc_free_struct │ └── 1.json ├── CWE416_02-CWE416_Use_After_Free__new_delete_array_char │ └── 1.json ├── CWE416_02-CWE416_Use_After_Free__new_delete_array_class │ └── 1.json ├── CWE416_02-CWE416_Use_After_Free__new_delete_array_int │ ├── 1.json │ └── 2.json ├── CWE416_02-CWE416_Use_After_Free__new_delete_array_int64_t │ ├── 1.json │ └── 2.json ├── CWE416_02-CWE416_Use_After_Free__new_delete_array_long │ ├── 1.json │ └── 2.json ├── CWE416_02-CWE416_Use_After_Free__new_delete_array_struct │ └── 1.json ├── CWE416_02-CWE416_Use_After_Free__new_delete_char │ ├── 1.json │ └── 2.json ├── CWE416_02-CWE416_Use_After_Free__new_delete_class │ └── 1.json ├── CWE416_02-CWE416_Use_After_Free__new_delete_int │ ├── 1.json │ └── 2.json ├── CWE416_02-CWE416_Use_After_Free__new_delete_int64_t │ ├── 1.json │ └── 2.json ├── CWE416_02-CWE416_Use_After_Free__new_delete_long │ ├── 1.json │ └── 2.json ├── CWE416_02-CWE416_Use_After_Free__new_delete_struct │ └── 1.json ├── CWE416_03-CWE416_Use_After_Free__malloc_free_char │ └── 1.json ├── CWE416_03-CWE416_Use_After_Free__malloc_free_int │ ├── 1.json │ └── 2.json ├── CWE416_03-CWE416_Use_After_Free__malloc_free_int64_t │ ├── 1.json │ └── 2.json ├── CWE416_03-CWE416_Use_After_Free__malloc_free_long │ ├── 1.json │ └── 2.json ├── CWE416_03-CWE416_Use_After_Free__malloc_free_struct │ └── 1.json ├── CWE416_03-CWE416_Use_After_Free__new_delete_array_char │ └── 1.json ├── CWE416_03-CWE416_Use_After_Free__new_delete_array_class │ └── 1.json ├── CWE416_03-CWE416_Use_After_Free__new_delete_array_int │ ├── 1.json │ └── 2.json ├── CWE416_03-CWE416_Use_After_Free__new_delete_array_int64_t │ ├── 1.json │ └── 2.json ├── CWE416_03-CWE416_Use_After_Free__new_delete_array_long │ ├── 1.json │ └── 2.json ├── CWE416_03-CWE416_Use_After_Free__new_delete_array_struct │ └── 1.json ├── CWE416_03-CWE416_Use_After_Free__new_delete_char │ ├── 1.json │ └── 2.json ├── CWE416_03-CWE416_Use_After_Free__new_delete_class │ └── 1.json ├── CWE416_03-CWE416_Use_After_Free__new_delete_int │ ├── 1.json │ └── 2.json ├── CWE416_03-CWE416_Use_After_Free__new_delete_int64_t │ ├── 1.json │ └── 2.json ├── CWE416_03-CWE416_Use_After_Free__new_delete_long │ ├── 1.json │ └── 2.json ├── CWE416_03-CWE416_Use_After_Free__new_delete_struct │ └── 1.json ├── CWE416_04-CWE416_Use_After_Free__malloc_free_char │ └── 1.json ├── CWE416_04-CWE416_Use_After_Free__malloc_free_int │ ├── 1.json │ └── 2.json ├── CWE416_04-CWE416_Use_After_Free__malloc_free_int64_t │ ├── 1.json │ └── 2.json ├── CWE416_04-CWE416_Use_After_Free__malloc_free_long │ ├── 1.json │ └── 2.json ├── CWE416_04-CWE416_Use_After_Free__malloc_free_struct │ └── 1.json ├── CWE416_04-CWE416_Use_After_Free__new_delete_array_char │ └── 1.json ├── CWE416_04-CWE416_Use_After_Free__new_delete_array_class │ └── 1.json ├── CWE416_04-CWE416_Use_After_Free__new_delete_array_int │ ├── 1.json │ └── 2.json ├── CWE416_04-CWE416_Use_After_Free__new_delete_array_int64_t │ ├── 1.json │ └── 2.json ├── CWE416_04-CWE416_Use_After_Free__new_delete_array_long │ ├── 1.json │ └── 2.json ├── CWE416_04-CWE416_Use_After_Free__new_delete_array_struct │ └── 1.json ├── CWE416_04-CWE416_Use_After_Free__new_delete_char │ ├── 1.json │ └── 2.json ├── CWE416_04-CWE416_Use_After_Free__new_delete_class │ └── 1.json ├── CWE416_04-CWE416_Use_After_Free__new_delete_int │ ├── 1.json │ └── 2.json ├── CWE416_04-CWE416_Use_After_Free__new_delete_int64_t │ ├── 1.json │ └── 2.json ├── CWE416_04-CWE416_Use_After_Free__new_delete_long │ ├── 1.json │ └── 2.json ├── CWE416_04-CWE416_Use_After_Free__new_delete_struct │ └── 1.json ├── CWE416_05-CWE416_Use_After_Free__malloc_free_char │ └── 1.json ├── CWE416_05-CWE416_Use_After_Free__malloc_free_int │ ├── 1.json │ └── 2.json ├── CWE416_05-CWE416_Use_After_Free__malloc_free_int64_t │ ├── 1.json │ └── 2.json ├── CWE416_05-CWE416_Use_After_Free__malloc_free_long │ ├── 1.json │ └── 2.json ├── CWE416_05-CWE416_Use_After_Free__malloc_free_struct │ └── 1.json ├── CWE416_05-CWE416_Use_After_Free__new_delete_array_char │ └── 1.json ├── CWE416_05-CWE416_Use_After_Free__new_delete_array_class │ └── 1.json ├── CWE416_05-CWE416_Use_After_Free__new_delete_array_int │ ├── 1.json │ └── 2.json ├── CWE416_05-CWE416_Use_After_Free__new_delete_array_int64_t │ ├── 1.json │ └── 2.json ├── CWE416_05-CWE416_Use_After_Free__new_delete_array_long │ ├── 1.json │ └── 2.json ├── CWE416_05-CWE416_Use_After_Free__new_delete_array_struct │ └── 1.json ├── CWE416_05-CWE416_Use_After_Free__new_delete_char │ ├── 1.json │ └── 2.json ├── CWE416_05-CWE416_Use_After_Free__new_delete_class │ └── 1.json ├── CWE416_05-CWE416_Use_After_Free__new_delete_int │ ├── 1.json │ └── 2.json ├── CWE416_05-CWE416_Use_After_Free__new_delete_int64_t │ ├── 1.json │ └── 2.json ├── CWE416_05-CWE416_Use_After_Free__new_delete_long │ ├── 1.json │ └── 2.json ├── CWE416_05-CWE416_Use_After_Free__new_delete_struct │ └── 1.json ├── CWE416_06-CWE416_Use_After_Free__malloc_free_char │ └── 1.json ├── CWE416_06-CWE416_Use_After_Free__malloc_free_int │ ├── 1.json │ └── 2.json ├── CWE416_06-CWE416_Use_After_Free__malloc_free_int64_t │ ├── 1.json │ └── 2.json ├── CWE416_06-CWE416_Use_After_Free__malloc_free_long │ ├── 1.json │ └── 2.json ├── CWE416_06-CWE416_Use_After_Free__malloc_free_struct │ └── 1.json ├── CWE416_06-CWE416_Use_After_Free__new_delete_array_char │ └── 1.json ├── CWE416_06-CWE416_Use_After_Free__new_delete_array_class │ └── 1.json ├── CWE416_06-CWE416_Use_After_Free__new_delete_array_int │ ├── 1.json │ └── 2.json ├── CWE416_06-CWE416_Use_After_Free__new_delete_array_int64_t │ ├── 1.json │ └── 2.json ├── CWE416_06-CWE416_Use_After_Free__new_delete_array_long │ ├── 1.json │ └── 2.json ├── CWE416_06-CWE416_Use_After_Free__new_delete_array_struct │ └── 1.json ├── CWE416_06-CWE416_Use_After_Free__new_delete_char │ ├── 1.json │ └── 2.json ├── CWE416_06-CWE416_Use_After_Free__new_delete_class │ └── 1.json ├── CWE416_06-CWE416_Use_After_Free__new_delete_int │ ├── 1.json │ └── 2.json ├── CWE416_06-CWE416_Use_After_Free__new_delete_int64_t │ ├── 1.json │ └── 2.json ├── CWE416_06-CWE416_Use_After_Free__new_delete_long │ ├── 1.json │ └── 2.json ├── CWE416_06-CWE416_Use_After_Free__new_delete_struct │ └── 1.json ├── CWE416_07-CWE416_Use_After_Free__malloc_free_char │ └── 1.json ├── CWE416_07-CWE416_Use_After_Free__malloc_free_int │ ├── 1.json │ └── 2.json ├── CWE416_07-CWE416_Use_After_Free__malloc_free_int64_t │ ├── 1.json │ └── 2.json ├── CWE416_07-CWE416_Use_After_Free__malloc_free_long │ ├── 1.json │ └── 2.json ├── CWE416_07-CWE416_Use_After_Free__malloc_free_struct │ └── 1.json ├── CWE416_07-CWE416_Use_After_Free__new_delete_array_char │ └── 1.json ├── CWE416_07-CWE416_Use_After_Free__new_delete_array_class │ └── 1.json ├── CWE416_07-CWE416_Use_After_Free__new_delete_array_int │ ├── 1.json │ └── 2.json ├── CWE416_07-CWE416_Use_After_Free__new_delete_array_int64_t │ ├── 1.json │ └── 2.json ├── CWE416_07-CWE416_Use_After_Free__new_delete_array_long │ ├── 1.json │ └── 2.json ├── CWE416_07-CWE416_Use_After_Free__new_delete_array_struct │ └── 1.json ├── CWE416_07-CWE416_Use_After_Free__new_delete_char │ ├── 1.json │ └── 2.json ├── CWE416_07-CWE416_Use_After_Free__new_delete_class │ └── 1.json ├── CWE416_07-CWE416_Use_After_Free__new_delete_int │ ├── 1.json │ └── 2.json ├── CWE416_07-CWE416_Use_After_Free__new_delete_int64_t │ ├── 1.json │ └── 2.json ├── CWE416_07-CWE416_Use_After_Free__new_delete_long │ ├── 1.json │ └── 2.json ├── CWE416_07-CWE416_Use_After_Free__new_delete_struct │ └── 1.json ├── CWE416_08-CWE416_Use_After_Free__malloc_free_char │ └── 1.json ├── CWE416_08-CWE416_Use_After_Free__malloc_free_int │ ├── 1.json │ └── 2.json ├── CWE416_08-CWE416_Use_After_Free__malloc_free_int64_t │ ├── 1.json │ └── 2.json ├── CWE416_08-CWE416_Use_After_Free__malloc_free_long │ ├── 1.json │ └── 2.json ├── CWE416_08-CWE416_Use_After_Free__malloc_free_struct │ └── 1.json ├── CWE416_08-CWE416_Use_After_Free__new_delete_array_char │ └── 1.json ├── CWE416_08-CWE416_Use_After_Free__new_delete_array_class │ └── 1.json ├── CWE416_08-CWE416_Use_After_Free__new_delete_array_int │ ├── 1.json │ └── 2.json ├── CWE416_08-CWE416_Use_After_Free__new_delete_array_int64_t │ ├── 1.json │ └── 2.json ├── CWE416_08-CWE416_Use_After_Free__new_delete_array_long │ ├── 1.json │ └── 2.json ├── CWE416_08-CWE416_Use_After_Free__new_delete_array_struct │ └── 1.json ├── CWE416_08-CWE416_Use_After_Free__new_delete_char │ ├── 1.json │ └── 2.json ├── CWE416_08-CWE416_Use_After_Free__new_delete_class │ └── 1.json ├── CWE416_08-CWE416_Use_After_Free__new_delete_int │ ├── 1.json │ └── 2.json ├── CWE416_08-CWE416_Use_After_Free__new_delete_int64_t │ ├── 1.json │ └── 2.json ├── CWE416_08-CWE416_Use_After_Free__new_delete_long │ ├── 1.json │ └── 2.json ├── CWE416_08-CWE416_Use_After_Free__new_delete_struct │ └── 1.json ├── CWE416_09-CWE416_Use_After_Free__malloc_free_char │ └── 1.json ├── CWE416_09-CWE416_Use_After_Free__malloc_free_int │ ├── 1.json │ └── 2.json ├── CWE416_09-CWE416_Use_After_Free__malloc_free_int64_t │ ├── 1.json │ └── 2.json ├── CWE416_09-CWE416_Use_After_Free__malloc_free_long │ ├── 1.json │ └── 2.json ├── CWE416_09-CWE416_Use_After_Free__malloc_free_struct │ └── 1.json ├── CWE416_09-CWE416_Use_After_Free__new_delete_array_char │ └── 1.json ├── CWE416_09-CWE416_Use_After_Free__new_delete_array_class │ └── 1.json ├── CWE416_09-CWE416_Use_After_Free__new_delete_array_int │ ├── 1.json │ └── 2.json ├── CWE416_09-CWE416_Use_After_Free__new_delete_array_int64_t │ ├── 1.json │ └── 2.json ├── CWE416_09-CWE416_Use_After_Free__new_delete_array_long │ ├── 1.json │ └── 2.json ├── CWE416_09-CWE416_Use_After_Free__new_delete_array_struct │ └── 1.json ├── CWE416_09-CWE416_Use_After_Free__new_delete_char │ ├── 1.json │ └── 2.json ├── CWE416_09-CWE416_Use_After_Free__new_delete_class │ └── 1.json ├── CWE416_09-CWE416_Use_After_Free__new_delete_int │ ├── 1.json │ └── 2.json ├── CWE416_09-CWE416_Use_After_Free__new_delete_int64_t │ ├── 1.json │ └── 2.json ├── CWE416_09-CWE416_Use_After_Free__new_delete_long │ ├── 1.json │ └── 2.json ├── CWE416_09-CWE416_Use_After_Free__new_delete_struct │ └── 1.json ├── CWE416_10-CWE416_Use_After_Free__malloc_free_char │ └── 1.json ├── CWE416_10-CWE416_Use_After_Free__malloc_free_int │ ├── 1.json │ └── 2.json ├── CWE416_10-CWE416_Use_After_Free__malloc_free_int64_t │ ├── 1.json │ └── 2.json ├── CWE416_10-CWE416_Use_After_Free__malloc_free_long │ ├── 1.json │ └── 2.json ├── CWE416_10-CWE416_Use_After_Free__malloc_free_struct │ └── 1.json ├── CWE416_10-CWE416_Use_After_Free__new_delete_array_char │ └── 1.json ├── CWE416_10-CWE416_Use_After_Free__new_delete_array_class │ └── 1.json ├── CWE416_10-CWE416_Use_After_Free__new_delete_array_int │ ├── 1.json │ └── 2.json ├── CWE416_10-CWE416_Use_After_Free__new_delete_array_int64_t │ ├── 1.json │ └── 2.json ├── CWE416_10-CWE416_Use_After_Free__new_delete_array_long │ ├── 1.json │ └── 2.json ├── CWE416_10-CWE416_Use_After_Free__new_delete_array_struct │ └── 1.json ├── CWE416_10-CWE416_Use_After_Free__new_delete_char │ ├── 1.json │ └── 2.json ├── CWE416_10-CWE416_Use_After_Free__new_delete_class │ └── 1.json ├── CWE416_10-CWE416_Use_After_Free__new_delete_int │ ├── 1.json │ └── 2.json ├── CWE416_10-CWE416_Use_After_Free__new_delete_int64_t │ ├── 1.json │ └── 2.json ├── CWE416_10-CWE416_Use_After_Free__new_delete_long │ ├── 1.json │ └── 2.json ├── CWE416_10-CWE416_Use_After_Free__new_delete_struct │ └── 1.json ├── CWE416_11-CWE416_Use_After_Free__malloc_free_char │ └── 1.json ├── CWE416_11-CWE416_Use_After_Free__malloc_free_int │ ├── 1.json │ └── 2.json ├── CWE416_11-CWE416_Use_After_Free__malloc_free_int64_t │ ├── 1.json │ └── 2.json ├── CWE416_11-CWE416_Use_After_Free__malloc_free_long │ ├── 1.json │ └── 2.json ├── CWE416_11-CWE416_Use_After_Free__malloc_free_struct │ └── 1.json ├── CWE416_11-CWE416_Use_After_Free__new_delete_array_char │ └── 1.json ├── CWE416_11-CWE416_Use_After_Free__new_delete_array_class │ └── 1.json ├── CWE416_11-CWE416_Use_After_Free__new_delete_array_int │ ├── 1.json │ └── 2.json ├── CWE416_11-CWE416_Use_After_Free__new_delete_array_int64_t │ ├── 1.json │ └── 2.json ├── CWE416_11-CWE416_Use_After_Free__new_delete_array_long │ ├── 1.json │ └── 2.json ├── CWE416_11-CWE416_Use_After_Free__new_delete_array_struct │ └── 1.json ├── CWE416_11-CWE416_Use_After_Free__new_delete_char │ ├── 1.json │ └── 2.json ├── CWE416_11-CWE416_Use_After_Free__new_delete_class │ └── 1.json ├── CWE416_11-CWE416_Use_After_Free__new_delete_int │ ├── 1.json │ └── 2.json ├── CWE416_11-CWE416_Use_After_Free__new_delete_int64_t │ ├── 1.json │ └── 2.json ├── CWE416_11-CWE416_Use_After_Free__new_delete_long │ ├── 1.json │ └── 2.json ├── CWE416_11-CWE416_Use_After_Free__new_delete_struct │ └── 1.json ├── CWE416_12-CWE416_Use_After_Free__malloc_free_char │ └── 1.json ├── CWE416_12-CWE416_Use_After_Free__malloc_free_struct │ └── 1.json ├── CWE416_12-CWE416_Use_After_Free__new_delete_array_char │ └── 1.json ├── CWE416_12-CWE416_Use_After_Free__new_delete_array_struct │ └── 1.json ├── CWE416_12-CWE416_Use_After_Free__new_delete_struct │ └── 1.json ├── CWE416_13-CWE416_Use_After_Free__malloc_free_char │ └── 1.json ├── CWE416_13-CWE416_Use_After_Free__malloc_free_int │ ├── 1.json │ └── 2.json ├── CWE416_13-CWE416_Use_After_Free__malloc_free_int64_t │ ├── 1.json │ └── 2.json ├── CWE416_13-CWE416_Use_After_Free__malloc_free_long │ ├── 1.json │ └── 2.json ├── CWE416_13-CWE416_Use_After_Free__malloc_free_struct │ └── 1.json ├── CWE416_13-CWE416_Use_After_Free__new_delete_array_char │ └── 1.json ├── CWE416_13-CWE416_Use_After_Free__new_delete_array_class │ └── 1.json ├── CWE416_13-CWE416_Use_After_Free__new_delete_array_int │ ├── 1.json │ └── 2.json ├── CWE416_13-CWE416_Use_After_Free__new_delete_array_int64_t │ ├── 1.json │ └── 2.json ├── CWE416_13-CWE416_Use_After_Free__new_delete_array_long │ ├── 1.json │ └── 2.json ├── CWE416_13-CWE416_Use_After_Free__new_delete_array_struct │ └── 1.json ├── CWE416_13-CWE416_Use_After_Free__new_delete_char │ ├── 1.json │ └── 2.json ├── CWE416_13-CWE416_Use_After_Free__new_delete_class │ └── 1.json ├── CWE416_13-CWE416_Use_After_Free__new_delete_int │ ├── 1.json │ └── 2.json ├── CWE416_13-CWE416_Use_After_Free__new_delete_int64_t │ ├── 1.json │ └── 2.json ├── CWE416_13-CWE416_Use_After_Free__new_delete_long │ ├── 1.json │ └── 2.json ├── CWE416_13-CWE416_Use_After_Free__new_delete_struct │ └── 1.json ├── CWE416_14-CWE416_Use_After_Free__malloc_free_char │ └── 1.json ├── CWE416_14-CWE416_Use_After_Free__malloc_free_int │ ├── 1.json │ └── 2.json ├── CWE416_14-CWE416_Use_After_Free__malloc_free_int64_t │ ├── 1.json │ └── 2.json ├── CWE416_14-CWE416_Use_After_Free__malloc_free_long │ ├── 1.json │ └── 2.json ├── CWE416_14-CWE416_Use_After_Free__malloc_free_struct │ └── 1.json ├── CWE416_14-CWE416_Use_After_Free__new_delete_array_char │ └── 1.json ├── CWE416_14-CWE416_Use_After_Free__new_delete_array_class │ └── 1.json ├── CWE416_14-CWE416_Use_After_Free__new_delete_array_int │ ├── 1.json │ └── 2.json ├── CWE416_14-CWE416_Use_After_Free__new_delete_array_int64_t │ ├── 1.json │ └── 2.json ├── CWE416_14-CWE416_Use_After_Free__new_delete_array_long │ ├── 1.json │ └── 2.json ├── CWE416_14-CWE416_Use_After_Free__new_delete_array_struct │ └── 1.json ├── CWE416_14-CWE416_Use_After_Free__new_delete_char │ ├── 1.json │ └── 2.json ├── CWE416_14-CWE416_Use_After_Free__new_delete_class │ └── 1.json ├── CWE416_14-CWE416_Use_After_Free__new_delete_int │ ├── 1.json │ └── 2.json ├── CWE416_14-CWE416_Use_After_Free__new_delete_int64_t │ ├── 1.json │ └── 2.json ├── CWE416_14-CWE416_Use_After_Free__new_delete_long │ ├── 1.json │ └── 2.json ├── CWE416_14-CWE416_Use_After_Free__new_delete_struct │ └── 1.json ├── CWE416_15-CWE416_Use_After_Free__malloc_free_char │ └── 1.json ├── CWE416_15-CWE416_Use_After_Free__malloc_free_int │ ├── 1.json │ └── 2.json ├── CWE416_15-CWE416_Use_After_Free__malloc_free_int64_t │ ├── 1.json │ └── 2.json ├── CWE416_15-CWE416_Use_After_Free__malloc_free_long │ ├── 1.json │ └── 2.json ├── CWE416_15-CWE416_Use_After_Free__malloc_free_struct │ └── 1.json ├── CWE416_15-CWE416_Use_After_Free__new_delete_array_char │ └── 1.json ├── CWE416_15-CWE416_Use_After_Free__new_delete_array_class │ └── 1.json ├── CWE416_15-CWE416_Use_After_Free__new_delete_array_int │ ├── 1.json │ └── 2.json ├── CWE416_15-CWE416_Use_After_Free__new_delete_array_int64_t │ ├── 1.json │ └── 2.json ├── CWE416_15-CWE416_Use_After_Free__new_delete_array_long │ ├── 1.json │ └── 2.json ├── CWE416_15-CWE416_Use_After_Free__new_delete_array_struct │ └── 1.json ├── CWE416_15-CWE416_Use_After_Free__new_delete_char │ ├── 1.json │ └── 2.json ├── CWE416_15-CWE416_Use_After_Free__new_delete_class │ └── 1.json ├── CWE416_15-CWE416_Use_After_Free__new_delete_int │ ├── 1.json │ └── 2.json ├── CWE416_15-CWE416_Use_After_Free__new_delete_int64_t │ ├── 1.json │ └── 2.json ├── CWE416_15-CWE416_Use_After_Free__new_delete_long │ ├── 1.json │ └── 2.json ├── CWE416_15-CWE416_Use_After_Free__new_delete_struct │ └── 1.json ├── CWE416_16-CWE416_Use_After_Free__malloc_free_char │ └── 1.json ├── CWE416_16-CWE416_Use_After_Free__malloc_free_int │ ├── 1.json │ └── 2.json ├── CWE416_16-CWE416_Use_After_Free__malloc_free_int64_t │ ├── 1.json │ └── 2.json ├── CWE416_16-CWE416_Use_After_Free__malloc_free_long │ ├── 1.json │ └── 2.json ├── CWE416_16-CWE416_Use_After_Free__malloc_free_struct │ └── 1.json ├── CWE416_16-CWE416_Use_After_Free__new_delete_array_char │ └── 1.json ├── CWE416_16-CWE416_Use_After_Free__new_delete_array_class │ └── 1.json ├── CWE416_16-CWE416_Use_After_Free__new_delete_array_int │ ├── 1.json │ └── 2.json ├── CWE416_16-CWE416_Use_After_Free__new_delete_array_int64_t │ ├── 1.json │ └── 2.json ├── CWE416_16-CWE416_Use_After_Free__new_delete_array_long │ ├── 1.json │ └── 2.json ├── CWE416_16-CWE416_Use_After_Free__new_delete_array_struct │ └── 1.json ├── CWE416_16-CWE416_Use_After_Free__new_delete_char │ ├── 1.json │ └── 2.json ├── CWE416_16-CWE416_Use_After_Free__new_delete_class │ └── 1.json ├── CWE416_16-CWE416_Use_After_Free__new_delete_int │ ├── 1.json │ └── 2.json ├── CWE416_16-CWE416_Use_After_Free__new_delete_int64_t │ ├── 1.json │ └── 2.json ├── CWE416_16-CWE416_Use_After_Free__new_delete_long │ ├── 1.json │ └── 2.json ├── CWE416_16-CWE416_Use_After_Free__new_delete_struct │ └── 1.json ├── CWE416_17-CWE416_Use_After_Free__malloc_free_char │ └── 1.json ├── CWE416_17-CWE416_Use_After_Free__malloc_free_int │ ├── 1.json │ └── 2.json ├── CWE416_17-CWE416_Use_After_Free__malloc_free_int64_t │ ├── 1.json │ └── 2.json ├── CWE416_17-CWE416_Use_After_Free__malloc_free_long │ ├── 1.json │ └── 2.json ├── CWE416_17-CWE416_Use_After_Free__malloc_free_struct │ └── 1.json ├── CWE416_17-CWE416_Use_After_Free__new_delete_array_char │ └── 1.json ├── CWE416_17-CWE416_Use_After_Free__new_delete_array_class │ └── 1.json ├── CWE416_17-CWE416_Use_After_Free__new_delete_array_int │ ├── 1.json │ └── 2.json ├── CWE416_17-CWE416_Use_After_Free__new_delete_array_int64_t │ ├── 1.json │ └── 2.json ├── CWE416_17-CWE416_Use_After_Free__new_delete_array_long │ ├── 1.json │ └── 2.json ├── CWE416_17-CWE416_Use_After_Free__new_delete_array_struct │ └── 1.json ├── CWE416_17-CWE416_Use_After_Free__new_delete_char │ ├── 1.json │ └── 2.json ├── CWE416_17-CWE416_Use_After_Free__new_delete_class │ └── 1.json ├── CWE416_17-CWE416_Use_After_Free__new_delete_int │ ├── 1.json │ └── 2.json ├── CWE416_17-CWE416_Use_After_Free__new_delete_int64_t │ ├── 1.json │ └── 2.json ├── CWE416_17-CWE416_Use_After_Free__new_delete_long │ ├── 1.json │ └── 2.json ├── CWE416_17-CWE416_Use_After_Free__new_delete_struct │ └── 1.json ├── CWE416_18-CWE416_Use_After_Free__malloc_free_char │ └── 1.json ├── CWE416_18-CWE416_Use_After_Free__malloc_free_int │ ├── 1.json │ └── 2.json ├── CWE416_18-CWE416_Use_After_Free__malloc_free_int64_t │ ├── 1.json │ └── 2.json ├── CWE416_18-CWE416_Use_After_Free__malloc_free_long │ ├── 1.json │ └── 2.json ├── CWE416_18-CWE416_Use_After_Free__malloc_free_struct │ └── 1.json ├── CWE416_18-CWE416_Use_After_Free__new_delete_array_char │ └── 1.json ├── CWE416_18-CWE416_Use_After_Free__new_delete_array_class │ └── 1.json ├── CWE416_18-CWE416_Use_After_Free__new_delete_array_int │ ├── 1.json │ └── 2.json ├── CWE416_18-CWE416_Use_After_Free__new_delete_array_int64_t │ ├── 1.json │ └── 2.json ├── CWE416_18-CWE416_Use_After_Free__new_delete_array_long │ ├── 1.json │ └── 2.json ├── CWE416_18-CWE416_Use_After_Free__new_delete_array_struct │ └── 1.json ├── CWE416_18-CWE416_Use_After_Free__new_delete_char │ ├── 1.json │ └── 2.json ├── CWE416_18-CWE416_Use_After_Free__new_delete_class │ └── 1.json ├── CWE416_18-CWE416_Use_After_Free__new_delete_int │ ├── 1.json │ └── 2.json ├── CWE416_18-CWE416_Use_After_Free__new_delete_int64_t │ ├── 1.json │ └── 2.json ├── CWE416_18-CWE416_Use_After_Free__new_delete_long │ ├── 1.json │ └── 2.json ├── CWE416_18-CWE416_Use_After_Free__new_delete_struct │ └── 1.json ├── CWE416_63-CWE416_Use_After_Free__malloc_free_char │ └── 1.json ├── CWE416_63-CWE416_Use_After_Free__malloc_free_int │ ├── 1.json │ └── 2.json ├── CWE416_63-CWE416_Use_After_Free__malloc_free_int64_t │ ├── 1.json │ └── 2.json ├── CWE416_63-CWE416_Use_After_Free__malloc_free_long │ ├── 1.json │ └── 2.json ├── CWE416_63-CWE416_Use_After_Free__malloc_free_struct │ └── 1.json ├── CWE416_63-CWE416_Use_After_Free__new_delete_array_char │ └── 1.json ├── CWE416_63-CWE416_Use_After_Free__new_delete_array_class │ └── 1.json ├── CWE416_63-CWE416_Use_After_Free__new_delete_array_int │ ├── 1.json │ └── 2.json ├── CWE416_63-CWE416_Use_After_Free__new_delete_array_int64_t │ ├── 1.json │ └── 2.json ├── CWE416_63-CWE416_Use_After_Free__new_delete_array_long │ ├── 1.json │ └── 2.json ├── CWE416_63-CWE416_Use_After_Free__new_delete_array_struct │ └── 1.json ├── CWE416_63-CWE416_Use_After_Free__new_delete_char │ ├── 1.json │ └── 2.json ├── CWE416_63-CWE416_Use_After_Free__new_delete_class │ └── 1.json ├── CWE416_63-CWE416_Use_After_Free__new_delete_int │ ├── 1.json │ └── 2.json ├── CWE416_63-CWE416_Use_After_Free__new_delete_int64_t │ ├── 1.json │ └── 2.json ├── CWE416_63-CWE416_Use_After_Free__new_delete_long │ ├── 1.json │ └── 2.json ├── CWE416_63-CWE416_Use_After_Free__new_delete_struct │ └── 1.json ├── CWE416_64-CWE416_Use_After_Free__malloc_free_char │ └── 1.json ├── CWE416_64-CWE416_Use_After_Free__malloc_free_int │ └── 1.json ├── CWE416_64-CWE416_Use_After_Free__malloc_free_int64_t │ └── 1.json ├── CWE416_64-CWE416_Use_After_Free__malloc_free_long │ └── 1.json ├── CWE416_64-CWE416_Use_After_Free__malloc_free_struct │ └── 1.json ├── CWE416_64-CWE416_Use_After_Free__new_delete_array_char │ └── 1.json ├── CWE416_64-CWE416_Use_After_Free__new_delete_array_int │ └── 1.json ├── CWE416_64-CWE416_Use_After_Free__new_delete_array_int64_t │ └── 1.json ├── CWE416_64-CWE416_Use_After_Free__new_delete_array_long │ └── 1.json ├── CWE416_64-CWE416_Use_After_Free__new_delete_array_struct │ └── 1.json ├── CWE416_64-CWE416_Use_After_Free__new_delete_char │ ├── 1.json │ └── 2.json ├── CWE416_64-CWE416_Use_After_Free__new_delete_class │ └── 1.json ├── CWE416_64-CWE416_Use_After_Free__new_delete_int │ ├── 1.json │ └── 2.json ├── CWE416_64-CWE416_Use_After_Free__new_delete_int64_t │ ├── 1.json │ └── 2.json ├── CWE416_64-CWE416_Use_After_Free__new_delete_long │ ├── 1.json │ └── 2.json ├── CWE416_64-CWE416_Use_After_Free__new_delete_struct │ └── 1.json ├── CWE680_01-CWE680_Integer_Overflow_to_Buffer_Overflow__malloc_connect_socket │ └── 1.json ├── CWE680_01-CWE680_Integer_Overflow_to_Buffer_Overflow__malloc_fgets │ └── 1.json ├── CWE680_01-CWE680_Integer_Overflow_to_Buffer_Overflow__malloc_fscanf │ └── 1.json ├── CWE680_01-CWE680_Integer_Overflow_to_Buffer_Overflow__malloc_listen_socket │ └── 1.json ├── CWE680_01-CWE680_Integer_Overflow_to_Buffer_Overflow__new_connect_socket │ └── 1.json ├── CWE680_01-CWE680_Integer_Overflow_to_Buffer_Overflow__new_fgets │ └── 1.json ├── CWE680_01-CWE680_Integer_Overflow_to_Buffer_Overflow__new_fscanf │ └── 1.json ├── CWE680_01-CWE680_Integer_Overflow_to_Buffer_Overflow__new_listen_socket │ └── 1.json ├── CWE680_02-CWE680_Integer_Overflow_to_Buffer_Overflow__malloc_connect_socket │ └── 1.json ├── CWE680_02-CWE680_Integer_Overflow_to_Buffer_Overflow__malloc_fgets │ └── 1.json ├── CWE680_02-CWE680_Integer_Overflow_to_Buffer_Overflow__malloc_fscanf │ └── 1.json ├── CWE680_02-CWE680_Integer_Overflow_to_Buffer_Overflow__malloc_listen_socket │ └── 1.json ├── CWE680_02-CWE680_Integer_Overflow_to_Buffer_Overflow__new_connect_socket │ └── 1.json ├── CWE680_02-CWE680_Integer_Overflow_to_Buffer_Overflow__new_fgets │ └── 1.json ├── CWE680_02-CWE680_Integer_Overflow_to_Buffer_Overflow__new_fscanf │ └── 1.json ├── CWE680_02-CWE680_Integer_Overflow_to_Buffer_Overflow__new_listen_socket │ └── 1.json ├── CWE680_03-CWE680_Integer_Overflow_to_Buffer_Overflow__malloc_connect_socket │ └── 1.json ├── CWE680_03-CWE680_Integer_Overflow_to_Buffer_Overflow__malloc_fgets │ └── 1.json ├── CWE680_03-CWE680_Integer_Overflow_to_Buffer_Overflow__malloc_fscanf │ └── 1.json ├── CWE680_03-CWE680_Integer_Overflow_to_Buffer_Overflow__malloc_listen_socket │ └── 1.json ├── CWE680_03-CWE680_Integer_Overflow_to_Buffer_Overflow__new_connect_socket │ └── 1.json ├── CWE680_03-CWE680_Integer_Overflow_to_Buffer_Overflow__new_fgets │ └── 1.json ├── CWE680_03-CWE680_Integer_Overflow_to_Buffer_Overflow__new_fscanf │ └── 1.json ├── CWE680_03-CWE680_Integer_Overflow_to_Buffer_Overflow__new_listen_socket │ └── 1.json ├── CWE680_04-CWE680_Integer_Overflow_to_Buffer_Overflow__malloc_connect_socket │ └── 1.json ├── CWE680_04-CWE680_Integer_Overflow_to_Buffer_Overflow__malloc_fgets │ └── 1.json ├── CWE680_04-CWE680_Integer_Overflow_to_Buffer_Overflow__malloc_fscanf │ └── 1.json ├── CWE680_04-CWE680_Integer_Overflow_to_Buffer_Overflow__malloc_listen_socket │ └── 1.json ├── CWE680_04-CWE680_Integer_Overflow_to_Buffer_Overflow__new_connect_socket │ └── 1.json ├── CWE680_04-CWE680_Integer_Overflow_to_Buffer_Overflow__new_fgets │ └── 1.json ├── CWE680_04-CWE680_Integer_Overflow_to_Buffer_Overflow__new_fscanf │ └── 1.json ├── CWE680_04-CWE680_Integer_Overflow_to_Buffer_Overflow__new_listen_socket │ └── 1.json ├── CWE680_05-CWE680_Integer_Overflow_to_Buffer_Overflow__malloc_connect_socket │ └── 1.json ├── CWE680_05-CWE680_Integer_Overflow_to_Buffer_Overflow__malloc_fgets │ └── 1.json ├── CWE680_05-CWE680_Integer_Overflow_to_Buffer_Overflow__malloc_fscanf │ └── 1.json ├── CWE680_05-CWE680_Integer_Overflow_to_Buffer_Overflow__malloc_listen_socket │ └── 1.json ├── CWE680_05-CWE680_Integer_Overflow_to_Buffer_Overflow__new_connect_socket │ └── 1.json ├── CWE680_05-CWE680_Integer_Overflow_to_Buffer_Overflow__new_fgets │ └── 1.json ├── CWE680_05-CWE680_Integer_Overflow_to_Buffer_Overflow__new_fscanf │ └── 1.json ├── CWE680_05-CWE680_Integer_Overflow_to_Buffer_Overflow__new_listen_socket │ └── 1.json ├── CWE680_06-CWE680_Integer_Overflow_to_Buffer_Overflow__malloc_connect_socket │ └── 1.json ├── CWE680_06-CWE680_Integer_Overflow_to_Buffer_Overflow__malloc_fgets │ └── 1.json ├── CWE680_06-CWE680_Integer_Overflow_to_Buffer_Overflow__malloc_fscanf │ └── 1.json ├── CWE680_06-CWE680_Integer_Overflow_to_Buffer_Overflow__malloc_listen_socket │ └── 1.json ├── CWE680_06-CWE680_Integer_Overflow_to_Buffer_Overflow__new_connect_socket │ └── 1.json ├── CWE680_06-CWE680_Integer_Overflow_to_Buffer_Overflow__new_fgets │ └── 1.json ├── CWE680_06-CWE680_Integer_Overflow_to_Buffer_Overflow__new_fscanf │ └── 1.json ├── CWE680_06-CWE680_Integer_Overflow_to_Buffer_Overflow__new_listen_socket │ └── 1.json ├── CWE680_07-CWE680_Integer_Overflow_to_Buffer_Overflow__malloc_connect_socket │ └── 1.json ├── CWE680_07-CWE680_Integer_Overflow_to_Buffer_Overflow__malloc_fgets │ └── 1.json ├── CWE680_07-CWE680_Integer_Overflow_to_Buffer_Overflow__malloc_fscanf │ └── 1.json ├── CWE680_07-CWE680_Integer_Overflow_to_Buffer_Overflow__malloc_listen_socket │ └── 1.json ├── CWE680_07-CWE680_Integer_Overflow_to_Buffer_Overflow__new_connect_socket │ └── 1.json ├── CWE680_07-CWE680_Integer_Overflow_to_Buffer_Overflow__new_fgets │ └── 1.json ├── CWE680_07-CWE680_Integer_Overflow_to_Buffer_Overflow__new_fscanf │ └── 1.json ├── CWE680_07-CWE680_Integer_Overflow_to_Buffer_Overflow__new_listen_socket │ └── 1.json ├── CWE680_08-CWE680_Integer_Overflow_to_Buffer_Overflow__malloc_connect_socket │ └── 1.json ├── CWE680_08-CWE680_Integer_Overflow_to_Buffer_Overflow__malloc_fgets │ └── 1.json ├── CWE680_08-CWE680_Integer_Overflow_to_Buffer_Overflow__malloc_fscanf │ └── 1.json ├── CWE680_08-CWE680_Integer_Overflow_to_Buffer_Overflow__malloc_listen_socket │ └── 1.json ├── CWE680_08-CWE680_Integer_Overflow_to_Buffer_Overflow__new_connect_socket │ └── 1.json ├── CWE680_08-CWE680_Integer_Overflow_to_Buffer_Overflow__new_fgets │ └── 1.json ├── CWE680_08-CWE680_Integer_Overflow_to_Buffer_Overflow__new_fscanf │ └── 1.json ├── CWE680_08-CWE680_Integer_Overflow_to_Buffer_Overflow__new_listen_socket │ └── 1.json ├── CWE680_09-CWE680_Integer_Overflow_to_Buffer_Overflow__malloc_connect_socket │ └── 1.json ├── CWE680_09-CWE680_Integer_Overflow_to_Buffer_Overflow__malloc_fgets │ └── 1.json ├── CWE680_09-CWE680_Integer_Overflow_to_Buffer_Overflow__malloc_fscanf │ └── 1.json ├── CWE680_09-CWE680_Integer_Overflow_to_Buffer_Overflow__malloc_listen_socket │ └── 1.json ├── CWE680_09-CWE680_Integer_Overflow_to_Buffer_Overflow__new_connect_socket │ └── 1.json ├── CWE680_09-CWE680_Integer_Overflow_to_Buffer_Overflow__new_fgets │ └── 1.json ├── CWE680_09-CWE680_Integer_Overflow_to_Buffer_Overflow__new_fscanf │ └── 1.json ├── CWE680_09-CWE680_Integer_Overflow_to_Buffer_Overflow__new_listen_socket │ └── 1.json ├── CWE680_10-CWE680_Integer_Overflow_to_Buffer_Overflow__malloc_connect_socket │ └── 1.json ├── CWE680_10-CWE680_Integer_Overflow_to_Buffer_Overflow__malloc_fgets │ └── 1.json ├── CWE680_10-CWE680_Integer_Overflow_to_Buffer_Overflow__malloc_fscanf │ └── 1.json ├── CWE680_10-CWE680_Integer_Overflow_to_Buffer_Overflow__malloc_listen_socket │ └── 1.json ├── CWE680_10-CWE680_Integer_Overflow_to_Buffer_Overflow__new_connect_socket │ └── 1.json ├── CWE680_10-CWE680_Integer_Overflow_to_Buffer_Overflow__new_fgets │ └── 1.json ├── CWE680_10-CWE680_Integer_Overflow_to_Buffer_Overflow__new_fscanf │ └── 1.json ├── CWE680_10-CWE680_Integer_Overflow_to_Buffer_Overflow__new_listen_socket │ └── 1.json ├── CWE680_11-CWE680_Integer_Overflow_to_Buffer_Overflow__malloc_connect_socket │ └── 1.json ├── CWE680_11-CWE680_Integer_Overflow_to_Buffer_Overflow__malloc_fgets │ └── 1.json ├── CWE680_11-CWE680_Integer_Overflow_to_Buffer_Overflow__malloc_fscanf │ └── 1.json ├── CWE680_11-CWE680_Integer_Overflow_to_Buffer_Overflow__malloc_listen_socket │ └── 1.json ├── CWE680_11-CWE680_Integer_Overflow_to_Buffer_Overflow__new_connect_socket │ └── 1.json ├── CWE680_11-CWE680_Integer_Overflow_to_Buffer_Overflow__new_fgets │ └── 1.json ├── CWE680_11-CWE680_Integer_Overflow_to_Buffer_Overflow__new_fscanf │ └── 1.json ├── CWE680_11-CWE680_Integer_Overflow_to_Buffer_Overflow__new_listen_socket │ └── 1.json ├── CWE680_12-CWE680_Integer_Overflow_to_Buffer_Overflow__malloc_connect_socket │ └── 1.json ├── CWE680_12-CWE680_Integer_Overflow_to_Buffer_Overflow__malloc_fgets │ └── 1.json ├── CWE680_12-CWE680_Integer_Overflow_to_Buffer_Overflow__malloc_fscanf │ └── 1.json ├── CWE680_12-CWE680_Integer_Overflow_to_Buffer_Overflow__malloc_listen_socket │ └── 1.json ├── CWE680_12-CWE680_Integer_Overflow_to_Buffer_Overflow__new_connect_socket │ └── 1.json ├── CWE680_12-CWE680_Integer_Overflow_to_Buffer_Overflow__new_fgets │ └── 1.json ├── CWE680_12-CWE680_Integer_Overflow_to_Buffer_Overflow__new_fscanf │ └── 1.json ├── CWE680_12-CWE680_Integer_Overflow_to_Buffer_Overflow__new_listen_socket │ └── 1.json ├── CWE680_13-CWE680_Integer_Overflow_to_Buffer_Overflow__malloc_connect_socket │ └── 1.json ├── CWE680_13-CWE680_Integer_Overflow_to_Buffer_Overflow__malloc_fgets │ └── 1.json ├── CWE680_13-CWE680_Integer_Overflow_to_Buffer_Overflow__malloc_fscanf │ └── 1.json ├── CWE680_13-CWE680_Integer_Overflow_to_Buffer_Overflow__malloc_listen_socket │ └── 1.json ├── CWE680_13-CWE680_Integer_Overflow_to_Buffer_Overflow__new_connect_socket │ └── 1.json ├── CWE680_13-CWE680_Integer_Overflow_to_Buffer_Overflow__new_fgets │ └── 1.json ├── CWE680_13-CWE680_Integer_Overflow_to_Buffer_Overflow__new_fscanf │ └── 1.json ├── CWE680_13-CWE680_Integer_Overflow_to_Buffer_Overflow__new_listen_socket │ └── 1.json ├── CWE680_14-CWE680_Integer_Overflow_to_Buffer_Overflow__malloc_connect_socket │ └── 1.json ├── CWE680_14-CWE680_Integer_Overflow_to_Buffer_Overflow__malloc_fgets │ └── 1.json ├── CWE680_14-CWE680_Integer_Overflow_to_Buffer_Overflow__malloc_fscanf │ └── 1.json ├── CWE680_14-CWE680_Integer_Overflow_to_Buffer_Overflow__malloc_listen_socket │ └── 1.json ├── CWE680_14-CWE680_Integer_Overflow_to_Buffer_Overflow__new_connect_socket │ └── 1.json ├── CWE680_14-CWE680_Integer_Overflow_to_Buffer_Overflow__new_fgets │ └── 1.json ├── CWE680_14-CWE680_Integer_Overflow_to_Buffer_Overflow__new_fscanf │ └── 1.json ├── CWE680_14-CWE680_Integer_Overflow_to_Buffer_Overflow__new_listen_socket │ └── 1.json ├── CWE680_15-CWE680_Integer_Overflow_to_Buffer_Overflow__malloc_connect_socket │ └── 1.json ├── CWE680_15-CWE680_Integer_Overflow_to_Buffer_Overflow__malloc_fgets │ └── 1.json ├── CWE680_15-CWE680_Integer_Overflow_to_Buffer_Overflow__malloc_fscanf │ └── 1.json ├── CWE680_15-CWE680_Integer_Overflow_to_Buffer_Overflow__malloc_listen_socket │ └── 1.json ├── CWE680_15-CWE680_Integer_Overflow_to_Buffer_Overflow__new_connect_socket │ └── 1.json ├── CWE680_15-CWE680_Integer_Overflow_to_Buffer_Overflow__new_fgets │ └── 1.json ├── CWE680_15-CWE680_Integer_Overflow_to_Buffer_Overflow__new_fscanf │ └── 1.json ├── CWE680_15-CWE680_Integer_Overflow_to_Buffer_Overflow__new_listen_socket │ └── 1.json ├── CWE680_16-CWE680_Integer_Overflow_to_Buffer_Overflow__malloc_connect_socket │ └── 1.json ├── CWE680_16-CWE680_Integer_Overflow_to_Buffer_Overflow__malloc_fgets │ └── 1.json ├── CWE680_16-CWE680_Integer_Overflow_to_Buffer_Overflow__malloc_fscanf │ └── 1.json ├── CWE680_16-CWE680_Integer_Overflow_to_Buffer_Overflow__malloc_listen_socket │ └── 1.json ├── CWE680_16-CWE680_Integer_Overflow_to_Buffer_Overflow__new_connect_socket │ └── 1.json ├── CWE680_16-CWE680_Integer_Overflow_to_Buffer_Overflow__new_fgets │ └── 1.json ├── CWE680_16-CWE680_Integer_Overflow_to_Buffer_Overflow__new_fscanf │ └── 1.json ├── CWE680_16-CWE680_Integer_Overflow_to_Buffer_Overflow__new_listen_socket │ └── 1.json ├── CWE680_17-CWE680_Integer_Overflow_to_Buffer_Overflow__malloc_connect_socket │ └── 1.json ├── CWE680_17-CWE680_Integer_Overflow_to_Buffer_Overflow__malloc_fgets │ └── 1.json ├── CWE680_17-CWE680_Integer_Overflow_to_Buffer_Overflow__malloc_fscanf │ └── 1.json ├── CWE680_17-CWE680_Integer_Overflow_to_Buffer_Overflow__malloc_listen_socket │ └── 1.json ├── CWE680_17-CWE680_Integer_Overflow_to_Buffer_Overflow__new_connect_socket │ └── 1.json ├── CWE680_17-CWE680_Integer_Overflow_to_Buffer_Overflow__new_fgets │ └── 1.json ├── CWE680_17-CWE680_Integer_Overflow_to_Buffer_Overflow__new_fscanf │ └── 1.json ├── CWE680_17-CWE680_Integer_Overflow_to_Buffer_Overflow__new_listen_socket │ └── 1.json ├── CWE680_18-CWE680_Integer_Overflow_to_Buffer_Overflow__malloc_connect_socket │ └── 1.json ├── CWE680_18-CWE680_Integer_Overflow_to_Buffer_Overflow__malloc_fgets │ └── 1.json ├── CWE680_18-CWE680_Integer_Overflow_to_Buffer_Overflow__malloc_fscanf │ └── 1.json ├── CWE680_18-CWE680_Integer_Overflow_to_Buffer_Overflow__malloc_listen_socket │ └── 1.json ├── CWE680_18-CWE680_Integer_Overflow_to_Buffer_Overflow__new_connect_socket │ └── 1.json ├── CWE680_18-CWE680_Integer_Overflow_to_Buffer_Overflow__new_fgets │ └── 1.json ├── CWE680_18-CWE680_Integer_Overflow_to_Buffer_Overflow__new_fscanf │ └── 1.json ├── CWE680_18-CWE680_Integer_Overflow_to_Buffer_Overflow__new_listen_socket │ └── 1.json ├── CWE680_21-CWE680_Integer_Overflow_to_Buffer_Overflow__malloc_connect_socket │ └── 1.json ├── CWE680_21-CWE680_Integer_Overflow_to_Buffer_Overflow__malloc_fgets │ └── 1.json ├── CWE680_21-CWE680_Integer_Overflow_to_Buffer_Overflow__malloc_fscanf │ └── 1.json ├── CWE680_21-CWE680_Integer_Overflow_to_Buffer_Overflow__malloc_listen_socket │ └── 1.json ├── CWE680_21-CWE680_Integer_Overflow_to_Buffer_Overflow__new_fgets │ └── 1.json ├── CWE680_21-CWE680_Integer_Overflow_to_Buffer_Overflow__new_fscanf │ └── 1.json ├── CWE680_22-CWE680_Integer_Overflow_to_Buffer_Overflow__malloc_connect_socket │ └── 1.json ├── CWE680_22-CWE680_Integer_Overflow_to_Buffer_Overflow__malloc_fgets │ └── 1.json ├── CWE680_22-CWE680_Integer_Overflow_to_Buffer_Overflow__malloc_fscanf │ └── 1.json ├── CWE680_22-CWE680_Integer_Overflow_to_Buffer_Overflow__malloc_listen_socket │ └── 1.json ├── CWE680_22-CWE680_Integer_Overflow_to_Buffer_Overflow__new_connect_socket │ └── 1.json ├── CWE680_22-CWE680_Integer_Overflow_to_Buffer_Overflow__new_fgets │ └── 1.json ├── CWE680_22-CWE680_Integer_Overflow_to_Buffer_Overflow__new_fscanf │ └── 1.json ├── CWE680_22-CWE680_Integer_Overflow_to_Buffer_Overflow__new_listen_socket │ └── 1.json ├── CWE680_31-CWE680_Integer_Overflow_to_Buffer_Overflow__malloc_connect_socket │ └── 1.json ├── CWE680_31-CWE680_Integer_Overflow_to_Buffer_Overflow__malloc_fgets │ └── 1.json ├── CWE680_31-CWE680_Integer_Overflow_to_Buffer_Overflow__malloc_fscanf │ └── 1.json ├── CWE680_31-CWE680_Integer_Overflow_to_Buffer_Overflow__malloc_listen_socket │ └── 1.json ├── CWE680_31-CWE680_Integer_Overflow_to_Buffer_Overflow__new_connect_socket │ └── 1.json ├── CWE680_31-CWE680_Integer_Overflow_to_Buffer_Overflow__new_fgets │ └── 1.json ├── CWE680_31-CWE680_Integer_Overflow_to_Buffer_Overflow__new_fscanf │ └── 1.json ├── CWE680_31-CWE680_Integer_Overflow_to_Buffer_Overflow__new_listen_socket │ └── 1.json ├── CWE680_32-CWE680_Integer_Overflow_to_Buffer_Overflow__malloc_connect_socket │ └── 1.json ├── CWE680_32-CWE680_Integer_Overflow_to_Buffer_Overflow__malloc_fgets │ └── 1.json ├── CWE680_32-CWE680_Integer_Overflow_to_Buffer_Overflow__malloc_fscanf │ └── 1.json ├── CWE680_32-CWE680_Integer_Overflow_to_Buffer_Overflow__malloc_listen_socket │ └── 1.json ├── CWE680_32-CWE680_Integer_Overflow_to_Buffer_Overflow__new_connect_socket │ └── 1.json ├── CWE680_32-CWE680_Integer_Overflow_to_Buffer_Overflow__new_fgets │ └── 1.json ├── CWE680_32-CWE680_Integer_Overflow_to_Buffer_Overflow__new_fscanf │ └── 1.json ├── CWE680_32-CWE680_Integer_Overflow_to_Buffer_Overflow__new_listen_socket │ └── 1.json ├── CWE680_33-CWE680_Integer_Overflow_to_Buffer_Overflow__malloc_connect_socket │ └── 1.json ├── CWE680_33-CWE680_Integer_Overflow_to_Buffer_Overflow__malloc_fgets │ └── 1.json ├── CWE680_33-CWE680_Integer_Overflow_to_Buffer_Overflow__malloc_fscanf │ └── 1.json ├── CWE680_33-CWE680_Integer_Overflow_to_Buffer_Overflow__malloc_listen_socket │ └── 1.json ├── CWE680_33-CWE680_Integer_Overflow_to_Buffer_Overflow__new_connect_socket │ └── 1.json ├── CWE680_33-CWE680_Integer_Overflow_to_Buffer_Overflow__new_fgets │ └── 1.json ├── CWE680_33-CWE680_Integer_Overflow_to_Buffer_Overflow__new_fscanf │ └── 1.json ├── CWE680_33-CWE680_Integer_Overflow_to_Buffer_Overflow__new_listen_socket │ └── 1.json ├── CWE680_41-CWE680_Integer_Overflow_to_Buffer_Overflow__malloc_connect_socket │ └── 1.json ├── CWE680_41-CWE680_Integer_Overflow_to_Buffer_Overflow__malloc_fgets │ └── 1.json ├── CWE680_41-CWE680_Integer_Overflow_to_Buffer_Overflow__malloc_fscanf │ └── 1.json ├── CWE680_41-CWE680_Integer_Overflow_to_Buffer_Overflow__malloc_listen_socket │ └── 1.json ├── CWE680_41-CWE680_Integer_Overflow_to_Buffer_Overflow__new_connect_socket │ └── 1.json ├── CWE680_41-CWE680_Integer_Overflow_to_Buffer_Overflow__new_fgets │ └── 1.json ├── CWE680_41-CWE680_Integer_Overflow_to_Buffer_Overflow__new_fscanf │ └── 1.json ├── CWE680_41-CWE680_Integer_Overflow_to_Buffer_Overflow__new_listen_socket │ └── 1.json ├── CWE680_42-CWE680_Integer_Overflow_to_Buffer_Overflow__malloc_connect_socket │ └── 1.json ├── CWE680_42-CWE680_Integer_Overflow_to_Buffer_Overflow__malloc_fgets │ └── 1.json ├── CWE680_42-CWE680_Integer_Overflow_to_Buffer_Overflow__malloc_fscanf │ └── 1.json ├── CWE680_42-CWE680_Integer_Overflow_to_Buffer_Overflow__malloc_listen_socket │ └── 1.json ├── CWE680_42-CWE680_Integer_Overflow_to_Buffer_Overflow__new_connect_socket │ └── 1.json ├── CWE680_42-CWE680_Integer_Overflow_to_Buffer_Overflow__new_fgets │ └── 1.json ├── CWE680_42-CWE680_Integer_Overflow_to_Buffer_Overflow__new_fscanf │ └── 1.json ├── CWE680_42-CWE680_Integer_Overflow_to_Buffer_Overflow__new_listen_socket │ └── 1.json ├── CWE680_43-CWE680_Integer_Overflow_to_Buffer_Overflow__malloc_connect_socket │ └── 1.json ├── CWE680_43-CWE680_Integer_Overflow_to_Buffer_Overflow__malloc_fgets │ └── 1.json ├── CWE680_43-CWE680_Integer_Overflow_to_Buffer_Overflow__malloc_fscanf │ └── 1.json ├── CWE680_43-CWE680_Integer_Overflow_to_Buffer_Overflow__malloc_listen_socket │ └── 1.json ├── CWE680_43-CWE680_Integer_Overflow_to_Buffer_Overflow__new_connect_socket │ └── 1.json ├── CWE680_43-CWE680_Integer_Overflow_to_Buffer_Overflow__new_fgets │ └── 1.json ├── CWE680_43-CWE680_Integer_Overflow_to_Buffer_Overflow__new_fscanf │ └── 1.json ├── CWE680_43-CWE680_Integer_Overflow_to_Buffer_Overflow__new_listen_socket │ └── 1.json ├── CWE680_44-CWE680_Integer_Overflow_to_Buffer_Overflow__malloc_connect_socket │ └── 1.json ├── CWE680_44-CWE680_Integer_Overflow_to_Buffer_Overflow__malloc_fgets │ └── 1.json ├── CWE680_44-CWE680_Integer_Overflow_to_Buffer_Overflow__malloc_fscanf │ └── 1.json ├── CWE680_44-CWE680_Integer_Overflow_to_Buffer_Overflow__malloc_listen_socket │ └── 1.json ├── CWE680_44-CWE680_Integer_Overflow_to_Buffer_Overflow__new_connect_socket │ └── 1.json ├── CWE680_44-CWE680_Integer_Overflow_to_Buffer_Overflow__new_fgets │ └── 1.json ├── CWE680_44-CWE680_Integer_Overflow_to_Buffer_Overflow__new_fscanf │ └── 1.json ├── CWE680_44-CWE680_Integer_Overflow_to_Buffer_Overflow__new_listen_socket │ └── 1.json ├── CWE680_51-CWE680_Integer_Overflow_to_Buffer_Overflow__malloc_connect_socket │ └── 1.json ├── CWE680_51-CWE680_Integer_Overflow_to_Buffer_Overflow__malloc_fgets │ └── 1.json ├── CWE680_51-CWE680_Integer_Overflow_to_Buffer_Overflow__malloc_fscanf │ └── 1.json ├── CWE680_51-CWE680_Integer_Overflow_to_Buffer_Overflow__malloc_listen_socket │ └── 1.json ├── CWE680_51-CWE680_Integer_Overflow_to_Buffer_Overflow__new_connect_socket │ └── 1.json ├── CWE680_51-CWE680_Integer_Overflow_to_Buffer_Overflow__new_fgets │ └── 1.json ├── CWE680_51-CWE680_Integer_Overflow_to_Buffer_Overflow__new_fscanf │ └── 1.json ├── CWE680_51-CWE680_Integer_Overflow_to_Buffer_Overflow__new_listen_socket │ └── 1.json ├── CWE680_52-CWE680_Integer_Overflow_to_Buffer_Overflow__malloc_connect_socket │ └── 1.json ├── CWE680_52-CWE680_Integer_Overflow_to_Buffer_Overflow__malloc_fgets │ └── 1.json ├── CWE680_52-CWE680_Integer_Overflow_to_Buffer_Overflow__malloc_fscanf │ └── 1.json ├── CWE680_52-CWE680_Integer_Overflow_to_Buffer_Overflow__malloc_listen_socket │ └── 1.json ├── CWE680_52-CWE680_Integer_Overflow_to_Buffer_Overflow__new_connect_socket │ └── 1.json ├── CWE680_52-CWE680_Integer_Overflow_to_Buffer_Overflow__new_fgets │ └── 1.json ├── CWE680_52-CWE680_Integer_Overflow_to_Buffer_Overflow__new_fscanf │ └── 1.json ├── CWE680_52-CWE680_Integer_Overflow_to_Buffer_Overflow__new_listen_socket │ └── 1.json ├── CWE680_53-CWE680_Integer_Overflow_to_Buffer_Overflow__malloc_connect_socket │ └── 1.json ├── CWE680_53-CWE680_Integer_Overflow_to_Buffer_Overflow__malloc_fgets │ └── 1.json ├── CWE680_53-CWE680_Integer_Overflow_to_Buffer_Overflow__malloc_fscanf │ └── 1.json ├── CWE680_53-CWE680_Integer_Overflow_to_Buffer_Overflow__malloc_listen_socket │ └── 1.json ├── CWE680_53-CWE680_Integer_Overflow_to_Buffer_Overflow__new_connect_socket │ └── 1.json ├── CWE680_53-CWE680_Integer_Overflow_to_Buffer_Overflow__new_fgets │ └── 1.json ├── CWE680_53-CWE680_Integer_Overflow_to_Buffer_Overflow__new_fscanf │ └── 1.json ├── CWE680_53-CWE680_Integer_Overflow_to_Buffer_Overflow__new_listen_socket │ └── 1.json ├── CWE680_54-CWE680_Integer_Overflow_to_Buffer_Overflow__malloc_connect_socket │ └── 1.json ├── CWE680_54-CWE680_Integer_Overflow_to_Buffer_Overflow__malloc_fgets │ └── 1.json ├── CWE680_54-CWE680_Integer_Overflow_to_Buffer_Overflow__malloc_fscanf │ └── 1.json ├── CWE680_54-CWE680_Integer_Overflow_to_Buffer_Overflow__malloc_listen_socket │ └── 1.json ├── CWE680_54-CWE680_Integer_Overflow_to_Buffer_Overflow__new_connect_socket │ └── 1.json ├── CWE680_54-CWE680_Integer_Overflow_to_Buffer_Overflow__new_fgets │ └── 1.json ├── CWE680_54-CWE680_Integer_Overflow_to_Buffer_Overflow__new_fscanf │ └── 1.json ├── CWE680_54-CWE680_Integer_Overflow_to_Buffer_Overflow__new_listen_socket │ └── 1.json ├── CWE680_61-CWE680_Integer_Overflow_to_Buffer_Overflow__malloc_connect_socket │ └── 1.json ├── CWE680_61-CWE680_Integer_Overflow_to_Buffer_Overflow__malloc_fgets │ └── 1.json ├── CWE680_61-CWE680_Integer_Overflow_to_Buffer_Overflow__malloc_fscanf │ └── 1.json ├── CWE680_61-CWE680_Integer_Overflow_to_Buffer_Overflow__malloc_listen_socket │ └── 1.json ├── CWE680_61-CWE680_Integer_Overflow_to_Buffer_Overflow__new_connect_socket │ └── 1.json ├── CWE680_61-CWE680_Integer_Overflow_to_Buffer_Overflow__new_fgets │ └── 1.json ├── CWE680_61-CWE680_Integer_Overflow_to_Buffer_Overflow__new_fscanf │ └── 1.json ├── CWE680_61-CWE680_Integer_Overflow_to_Buffer_Overflow__new_listen_socket │ └── 1.json ├── CWE680_62-CWE680_Integer_Overflow_to_Buffer_Overflow__malloc_connect_socket │ └── 1.json ├── CWE680_62-CWE680_Integer_Overflow_to_Buffer_Overflow__malloc_fgets │ └── 1.json ├── CWE680_62-CWE680_Integer_Overflow_to_Buffer_Overflow__malloc_fscanf │ └── 1.json ├── CWE680_62-CWE680_Integer_Overflow_to_Buffer_Overflow__malloc_listen_socket │ └── 1.json ├── CWE680_62-CWE680_Integer_Overflow_to_Buffer_Overflow__new_connect_socket │ └── 1.json ├── CWE680_62-CWE680_Integer_Overflow_to_Buffer_Overflow__new_fgets │ └── 1.json ├── CWE680_62-CWE680_Integer_Overflow_to_Buffer_Overflow__new_fscanf │ └── 1.json ├── CWE680_62-CWE680_Integer_Overflow_to_Buffer_Overflow__new_listen_socket │ └── 1.json ├── CWE680_63-CWE680_Integer_Overflow_to_Buffer_Overflow__malloc_connect_socket │ └── 1.json ├── CWE680_63-CWE680_Integer_Overflow_to_Buffer_Overflow__malloc_fgets │ └── 1.json ├── CWE680_63-CWE680_Integer_Overflow_to_Buffer_Overflow__malloc_fscanf │ └── 1.json ├── CWE680_63-CWE680_Integer_Overflow_to_Buffer_Overflow__malloc_listen_socket │ └── 1.json ├── CWE680_63-CWE680_Integer_Overflow_to_Buffer_Overflow__new_connect_socket │ └── 1.json ├── CWE680_63-CWE680_Integer_Overflow_to_Buffer_Overflow__new_fgets │ └── 1.json ├── CWE680_63-CWE680_Integer_Overflow_to_Buffer_Overflow__new_fscanf │ └── 1.json ├── CWE680_63-CWE680_Integer_Overflow_to_Buffer_Overflow__new_listen_socket │ └── 1.json ├── CWE680_64-CWE680_Integer_Overflow_to_Buffer_Overflow__malloc_connect_socket │ └── 1.json ├── CWE680_64-CWE680_Integer_Overflow_to_Buffer_Overflow__malloc_fgets │ └── 1.json ├── CWE680_64-CWE680_Integer_Overflow_to_Buffer_Overflow__malloc_fscanf │ └── 1.json ├── CWE680_64-CWE680_Integer_Overflow_to_Buffer_Overflow__malloc_listen_socket │ └── 1.json ├── CWE680_64-CWE680_Integer_Overflow_to_Buffer_Overflow__new_connect_socket │ └── 1.json ├── CWE680_64-CWE680_Integer_Overflow_to_Buffer_Overflow__new_fgets │ └── 1.json ├── CWE680_64-CWE680_Integer_Overflow_to_Buffer_Overflow__new_fscanf │ └── 1.json ├── CWE680_64-CWE680_Integer_Overflow_to_Buffer_Overflow__new_listen_socket │ └── 1.json ├── CWE680_65-CWE680_Integer_Overflow_to_Buffer_Overflow__malloc_connect_socket │ └── 1.json ├── CWE680_65-CWE680_Integer_Overflow_to_Buffer_Overflow__malloc_fgets │ └── 1.json ├── CWE680_65-CWE680_Integer_Overflow_to_Buffer_Overflow__malloc_fscanf │ └── 1.json ├── CWE680_65-CWE680_Integer_Overflow_to_Buffer_Overflow__malloc_listen_socket │ └── 1.json ├── CWE680_65-CWE680_Integer_Overflow_to_Buffer_Overflow__new_connect_socket │ └── 1.json ├── CWE680_65-CWE680_Integer_Overflow_to_Buffer_Overflow__new_fgets │ └── 1.json ├── CWE680_65-CWE680_Integer_Overflow_to_Buffer_Overflow__new_fscanf │ └── 1.json ├── CWE680_65-CWE680_Integer_Overflow_to_Buffer_Overflow__new_listen_socket │ └── 1.json ├── CWE680_66-CWE680_Integer_Overflow_to_Buffer_Overflow__malloc_connect_socket │ └── 1.json ├── CWE680_66-CWE680_Integer_Overflow_to_Buffer_Overflow__malloc_fgets │ └── 1.json ├── CWE680_66-CWE680_Integer_Overflow_to_Buffer_Overflow__malloc_fscanf │ └── 1.json ├── CWE680_66-CWE680_Integer_Overflow_to_Buffer_Overflow__malloc_listen_socket │ └── 1.json ├── CWE680_66-CWE680_Integer_Overflow_to_Buffer_Overflow__new_connect_socket │ └── 1.json ├── CWE680_66-CWE680_Integer_Overflow_to_Buffer_Overflow__new_fgets │ └── 1.json ├── CWE680_66-CWE680_Integer_Overflow_to_Buffer_Overflow__new_fscanf │ └── 1.json ├── CWE680_66-CWE680_Integer_Overflow_to_Buffer_Overflow__new_listen_socket │ └── 1.json ├── CWE680_83-CWE680_Integer_Overflow_to_Buffer_Overflow__malloc_connect_socket │ └── 1.json ├── CWE680_83-CWE680_Integer_Overflow_to_Buffer_Overflow__malloc_fgets │ └── 1.json ├── CWE680_83-CWE680_Integer_Overflow_to_Buffer_Overflow__malloc_fscanf │ └── 1.json ├── CWE680_83-CWE680_Integer_Overflow_to_Buffer_Overflow__malloc_listen_socket │ └── 1.json ├── CWE680_83-CWE680_Integer_Overflow_to_Buffer_Overflow__new_connect_socket │ └── 1.json ├── CWE680_83-CWE680_Integer_Overflow_to_Buffer_Overflow__new_fgets │ └── 1.json ├── CWE680_83-CWE680_Integer_Overflow_to_Buffer_Overflow__new_fscanf │ └── 1.json ├── CWE680_83-CWE680_Integer_Overflow_to_Buffer_Overflow__new_listen_socket │ └── 1.json ├── CWE78_01-CWE78_OS_Command_Injection__char_connect_socket_execl │ └── 1.json ├── CWE78_01-CWE78_OS_Command_Injection__char_connect_socket_execlp │ └── 1.json ├── CWE78_01-CWE78_OS_Command_Injection__char_connect_socket_popen │ └── 1.json ├── CWE78_01-CWE78_OS_Command_Injection__char_connect_socket_system │ └── 1.json ├── CWE78_01-CWE78_OS_Command_Injection__char_console_execl │ └── 1.json ├── CWE78_01-CWE78_OS_Command_Injection__char_console_execlp │ └── 1.json ├── CWE78_01-CWE78_OS_Command_Injection__char_console_popen │ └── 1.json ├── CWE78_01-CWE78_OS_Command_Injection__char_console_system │ └── 1.json ├── CWE78_01-CWE78_OS_Command_Injection__char_environment_execl │ └── 1.json ├── CWE78_01-CWE78_OS_Command_Injection__char_environment_execlp │ └── 1.json ├── CWE78_01-CWE78_OS_Command_Injection__char_environment_popen │ └── 1.json ├── CWE78_01-CWE78_OS_Command_Injection__char_environment_system │ └── 1.json ├── CWE78_01-CWE78_OS_Command_Injection__char_file_execl │ └── 1.json ├── CWE78_01-CWE78_OS_Command_Injection__char_file_execlp │ └── 1.json ├── CWE78_01-CWE78_OS_Command_Injection__char_file_popen │ └── 1.json ├── CWE78_01-CWE78_OS_Command_Injection__char_file_system │ └── 1.json ├── CWE78_01-CWE78_OS_Command_Injection__char_listen_socket_execl │ └── 1.json ├── CWE78_01-CWE78_OS_Command_Injection__char_listen_socket_execlp │ └── 1.json ├── CWE78_01-CWE78_OS_Command_Injection__char_listen_socket_popen │ └── 1.json ├── CWE78_01-CWE78_OS_Command_Injection__char_listen_socket_system │ └── 1.json ├── CWE78_02-CWE78_OS_Command_Injection__char_connect_socket_execl │ └── 1.json ├── CWE78_02-CWE78_OS_Command_Injection__char_connect_socket_execlp │ └── 1.json ├── CWE78_02-CWE78_OS_Command_Injection__char_connect_socket_popen │ └── 1.json ├── CWE78_02-CWE78_OS_Command_Injection__char_connect_socket_system │ └── 1.json ├── CWE78_02-CWE78_OS_Command_Injection__char_console_execl │ └── 1.json ├── CWE78_02-CWE78_OS_Command_Injection__char_console_execlp │ └── 1.json ├── CWE78_02-CWE78_OS_Command_Injection__char_console_popen │ └── 1.json ├── CWE78_02-CWE78_OS_Command_Injection__char_console_system │ └── 1.json ├── CWE78_02-CWE78_OS_Command_Injection__char_environment_execl │ └── 1.json ├── CWE78_02-CWE78_OS_Command_Injection__char_environment_execlp │ └── 1.json ├── CWE78_02-CWE78_OS_Command_Injection__char_environment_popen │ └── 1.json ├── CWE78_02-CWE78_OS_Command_Injection__char_environment_system │ └── 1.json ├── CWE78_02-CWE78_OS_Command_Injection__char_file_execl │ └── 1.json ├── CWE78_02-CWE78_OS_Command_Injection__char_file_execlp │ └── 1.json ├── CWE78_02-CWE78_OS_Command_Injection__char_file_popen │ └── 1.json ├── CWE78_02-CWE78_OS_Command_Injection__char_file_system │ └── 1.json ├── CWE78_02-CWE78_OS_Command_Injection__char_listen_socket_execl │ └── 1.json ├── CWE78_02-CWE78_OS_Command_Injection__char_listen_socket_execlp │ └── 1.json ├── CWE78_02-CWE78_OS_Command_Injection__char_listen_socket_popen │ └── 1.json ├── CWE78_02-CWE78_OS_Command_Injection__char_listen_socket_system │ └── 1.json ├── CWE78_03-CWE78_OS_Command_Injection__char_connect_socket_execl │ └── 1.json ├── CWE78_03-CWE78_OS_Command_Injection__char_connect_socket_execlp │ └── 1.json ├── CWE78_03-CWE78_OS_Command_Injection__char_connect_socket_popen │ └── 1.json ├── CWE78_03-CWE78_OS_Command_Injection__char_connect_socket_system │ └── 1.json ├── CWE78_03-CWE78_OS_Command_Injection__char_console_execl │ └── 1.json ├── CWE78_03-CWE78_OS_Command_Injection__char_console_execlp │ └── 1.json ├── CWE78_03-CWE78_OS_Command_Injection__char_console_popen │ └── 1.json ├── CWE78_03-CWE78_OS_Command_Injection__char_console_system │ └── 1.json ├── CWE78_03-CWE78_OS_Command_Injection__char_environment_execl │ └── 1.json ├── CWE78_03-CWE78_OS_Command_Injection__char_environment_execlp │ └── 1.json ├── CWE78_03-CWE78_OS_Command_Injection__char_environment_popen │ └── 1.json ├── CWE78_03-CWE78_OS_Command_Injection__char_environment_system │ └── 1.json ├── CWE78_03-CWE78_OS_Command_Injection__char_file_execl │ └── 1.json ├── CWE78_03-CWE78_OS_Command_Injection__char_file_execlp │ └── 1.json ├── CWE78_03-CWE78_OS_Command_Injection__char_file_popen │ └── 1.json ├── CWE78_03-CWE78_OS_Command_Injection__char_file_system │ └── 1.json ├── CWE78_03-CWE78_OS_Command_Injection__char_listen_socket_execl │ └── 1.json ├── CWE78_03-CWE78_OS_Command_Injection__char_listen_socket_execlp │ └── 1.json ├── CWE78_03-CWE78_OS_Command_Injection__char_listen_socket_popen │ └── 1.json ├── CWE78_03-CWE78_OS_Command_Injection__char_listen_socket_system │ └── 1.json ├── CWE78_04-CWE78_OS_Command_Injection__char_connect_socket_execl │ └── 1.json ├── CWE78_04-CWE78_OS_Command_Injection__char_connect_socket_execlp │ └── 1.json ├── CWE78_04-CWE78_OS_Command_Injection__char_connect_socket_popen │ └── 1.json ├── CWE78_04-CWE78_OS_Command_Injection__char_connect_socket_system │ └── 1.json ├── CWE78_04-CWE78_OS_Command_Injection__char_console_execl │ └── 1.json ├── CWE78_04-CWE78_OS_Command_Injection__char_console_execlp │ └── 1.json ├── CWE78_04-CWE78_OS_Command_Injection__char_console_popen │ └── 1.json ├── CWE78_04-CWE78_OS_Command_Injection__char_console_system │ └── 1.json ├── CWE78_04-CWE78_OS_Command_Injection__char_environment_execl │ └── 1.json ├── CWE78_04-CWE78_OS_Command_Injection__char_environment_execlp │ └── 1.json ├── CWE78_04-CWE78_OS_Command_Injection__char_environment_popen │ └── 1.json ├── CWE78_04-CWE78_OS_Command_Injection__char_environment_system │ └── 1.json ├── CWE78_04-CWE78_OS_Command_Injection__char_file_execl │ └── 1.json ├── CWE78_04-CWE78_OS_Command_Injection__char_file_execlp │ └── 1.json ├── CWE78_04-CWE78_OS_Command_Injection__char_file_popen │ └── 1.json ├── CWE78_04-CWE78_OS_Command_Injection__char_file_system │ └── 1.json ├── CWE78_04-CWE78_OS_Command_Injection__char_listen_socket_execl │ └── 1.json ├── CWE78_04-CWE78_OS_Command_Injection__char_listen_socket_execlp │ └── 1.json ├── CWE78_04-CWE78_OS_Command_Injection__char_listen_socket_popen │ └── 1.json ├── CWE78_04-CWE78_OS_Command_Injection__char_listen_socket_system │ └── 1.json ├── CWE78_05-CWE78_OS_Command_Injection__char_connect_socket_execl │ └── 1.json ├── CWE78_05-CWE78_OS_Command_Injection__char_connect_socket_execlp │ └── 1.json ├── CWE78_05-CWE78_OS_Command_Injection__char_connect_socket_popen │ └── 1.json ├── CWE78_05-CWE78_OS_Command_Injection__char_connect_socket_system │ └── 1.json ├── CWE78_05-CWE78_OS_Command_Injection__char_console_execl │ └── 1.json ├── CWE78_05-CWE78_OS_Command_Injection__char_console_execlp │ └── 1.json ├── CWE78_05-CWE78_OS_Command_Injection__char_console_popen │ └── 1.json ├── CWE78_05-CWE78_OS_Command_Injection__char_console_system │ └── 1.json ├── CWE78_05-CWE78_OS_Command_Injection__char_environment_execl │ └── 1.json ├── CWE78_05-CWE78_OS_Command_Injection__char_environment_execlp │ └── 1.json ├── CWE78_05-CWE78_OS_Command_Injection__char_environment_popen │ └── 1.json ├── CWE78_05-CWE78_OS_Command_Injection__char_environment_system │ └── 1.json ├── CWE78_05-CWE78_OS_Command_Injection__char_file_execl │ └── 1.json ├── CWE78_05-CWE78_OS_Command_Injection__char_file_execlp │ └── 1.json ├── CWE78_05-CWE78_OS_Command_Injection__char_file_popen │ └── 1.json ├── CWE78_05-CWE78_OS_Command_Injection__char_file_system │ └── 1.json ├── CWE78_05-CWE78_OS_Command_Injection__char_listen_socket_execl │ └── 1.json ├── CWE78_05-CWE78_OS_Command_Injection__char_listen_socket_execlp │ └── 1.json ├── CWE78_05-CWE78_OS_Command_Injection__char_listen_socket_popen │ └── 1.json ├── CWE78_05-CWE78_OS_Command_Injection__char_listen_socket_system │ └── 1.json ├── CWE78_06-CWE78_OS_Command_Injection__char_connect_socket_execl │ └── 1.json ├── CWE78_06-CWE78_OS_Command_Injection__char_connect_socket_execlp │ └── 1.json ├── CWE78_06-CWE78_OS_Command_Injection__char_connect_socket_popen │ └── 1.json ├── CWE78_06-CWE78_OS_Command_Injection__char_connect_socket_system │ └── 1.json ├── CWE78_06-CWE78_OS_Command_Injection__char_console_execl │ └── 1.json ├── CWE78_06-CWE78_OS_Command_Injection__char_console_execlp │ └── 1.json ├── CWE78_06-CWE78_OS_Command_Injection__char_console_popen │ └── 1.json ├── CWE78_06-CWE78_OS_Command_Injection__char_console_system │ └── 1.json ├── CWE78_06-CWE78_OS_Command_Injection__char_environment_execl │ └── 1.json ├── CWE78_06-CWE78_OS_Command_Injection__char_environment_execlp │ └── 1.json ├── CWE78_06-CWE78_OS_Command_Injection__char_environment_popen │ └── 1.json ├── CWE78_06-CWE78_OS_Command_Injection__char_environment_system │ └── 1.json ├── CWE78_06-CWE78_OS_Command_Injection__char_file_execl │ └── 1.json ├── CWE78_06-CWE78_OS_Command_Injection__char_file_execlp │ └── 1.json ├── CWE78_06-CWE78_OS_Command_Injection__char_file_popen │ └── 1.json ├── CWE78_06-CWE78_OS_Command_Injection__char_file_system │ └── 1.json ├── CWE78_06-CWE78_OS_Command_Injection__char_listen_socket_execl │ └── 1.json ├── CWE78_06-CWE78_OS_Command_Injection__char_listen_socket_execlp │ └── 1.json ├── CWE78_06-CWE78_OS_Command_Injection__char_listen_socket_popen │ └── 1.json ├── CWE78_06-CWE78_OS_Command_Injection__char_listen_socket_system │ └── 1.json ├── CWE78_07-CWE78_OS_Command_Injection__char_connect_socket_execl │ └── 1.json ├── CWE78_07-CWE78_OS_Command_Injection__char_connect_socket_execlp │ └── 1.json ├── CWE78_07-CWE78_OS_Command_Injection__char_connect_socket_popen │ └── 1.json ├── CWE78_07-CWE78_OS_Command_Injection__char_connect_socket_system │ └── 1.json ├── CWE78_07-CWE78_OS_Command_Injection__char_console_execl │ └── 1.json ├── CWE78_07-CWE78_OS_Command_Injection__char_console_execlp │ └── 1.json ├── CWE78_07-CWE78_OS_Command_Injection__char_console_popen │ └── 1.json ├── CWE78_07-CWE78_OS_Command_Injection__char_console_system │ └── 1.json ├── CWE78_07-CWE78_OS_Command_Injection__char_environment_execl │ └── 1.json ├── CWE78_07-CWE78_OS_Command_Injection__char_environment_execlp │ └── 1.json ├── CWE78_07-CWE78_OS_Command_Injection__char_environment_popen │ └── 1.json ├── CWE78_07-CWE78_OS_Command_Injection__char_environment_system │ └── 1.json ├── CWE78_07-CWE78_OS_Command_Injection__char_file_execl │ └── 1.json ├── CWE78_07-CWE78_OS_Command_Injection__char_file_execlp │ └── 1.json ├── CWE78_07-CWE78_OS_Command_Injection__char_file_popen │ └── 1.json ├── CWE78_07-CWE78_OS_Command_Injection__char_file_system │ └── 1.json ├── CWE78_07-CWE78_OS_Command_Injection__char_listen_socket_execl │ └── 1.json ├── CWE78_07-CWE78_OS_Command_Injection__char_listen_socket_execlp │ └── 1.json ├── CWE78_07-CWE78_OS_Command_Injection__char_listen_socket_popen │ └── 1.json ├── CWE78_07-CWE78_OS_Command_Injection__char_listen_socket_system │ └── 1.json ├── CWE78_08-CWE78_OS_Command_Injection__char_connect_socket_execl │ └── 1.json ├── CWE78_08-CWE78_OS_Command_Injection__char_connect_socket_execlp │ └── 1.json ├── CWE78_08-CWE78_OS_Command_Injection__char_connect_socket_popen │ └── 1.json ├── CWE78_08-CWE78_OS_Command_Injection__char_connect_socket_system │ └── 1.json ├── CWE78_08-CWE78_OS_Command_Injection__char_console_execl │ └── 1.json ├── CWE78_08-CWE78_OS_Command_Injection__char_console_execlp │ └── 1.json ├── CWE78_08-CWE78_OS_Command_Injection__char_console_popen │ └── 1.json ├── CWE78_08-CWE78_OS_Command_Injection__char_console_system │ └── 1.json ├── CWE78_08-CWE78_OS_Command_Injection__char_environment_execl │ └── 1.json ├── CWE78_08-CWE78_OS_Command_Injection__char_environment_execlp │ └── 1.json ├── CWE78_08-CWE78_OS_Command_Injection__char_environment_popen │ └── 1.json ├── CWE78_08-CWE78_OS_Command_Injection__char_environment_system │ └── 1.json ├── CWE78_08-CWE78_OS_Command_Injection__char_file_execl │ └── 1.json ├── CWE78_08-CWE78_OS_Command_Injection__char_file_execlp │ └── 1.json ├── CWE78_08-CWE78_OS_Command_Injection__char_file_popen │ └── 1.json ├── CWE78_08-CWE78_OS_Command_Injection__char_file_system │ └── 1.json ├── CWE78_08-CWE78_OS_Command_Injection__char_listen_socket_execl │ └── 1.json ├── CWE78_08-CWE78_OS_Command_Injection__char_listen_socket_execlp │ └── 1.json ├── CWE78_08-CWE78_OS_Command_Injection__char_listen_socket_popen │ └── 1.json ├── CWE78_08-CWE78_OS_Command_Injection__char_listen_socket_system │ └── 1.json ├── CWE78_09-CWE78_OS_Command_Injection__char_connect_socket_execl │ └── 1.json ├── CWE78_09-CWE78_OS_Command_Injection__char_connect_socket_execlp │ └── 1.json ├── CWE78_09-CWE78_OS_Command_Injection__char_connect_socket_popen │ └── 1.json ├── CWE78_09-CWE78_OS_Command_Injection__char_connect_socket_system │ └── 1.json ├── CWE78_09-CWE78_OS_Command_Injection__char_console_execl │ └── 1.json ├── CWE78_09-CWE78_OS_Command_Injection__char_console_execlp │ └── 1.json ├── CWE78_09-CWE78_OS_Command_Injection__char_console_popen │ └── 1.json ├── CWE78_09-CWE78_OS_Command_Injection__char_console_system │ └── 1.json ├── CWE78_09-CWE78_OS_Command_Injection__char_environment_execl │ └── 1.json ├── CWE78_09-CWE78_OS_Command_Injection__char_environment_execlp │ └── 1.json ├── CWE78_09-CWE78_OS_Command_Injection__char_environment_popen │ └── 1.json ├── CWE78_09-CWE78_OS_Command_Injection__char_environment_system │ └── 1.json ├── CWE78_09-CWE78_OS_Command_Injection__char_file_execl │ └── 1.json ├── CWE78_09-CWE78_OS_Command_Injection__char_file_execlp │ └── 1.json ├── CWE78_09-CWE78_OS_Command_Injection__char_file_popen │ └── 1.json ├── CWE78_09-CWE78_OS_Command_Injection__char_file_system │ └── 1.json ├── CWE78_09-CWE78_OS_Command_Injection__char_listen_socket_execl │ └── 1.json ├── CWE78_09-CWE78_OS_Command_Injection__char_listen_socket_execlp │ └── 1.json ├── CWE78_09-CWE78_OS_Command_Injection__char_listen_socket_popen │ └── 1.json ├── CWE78_09-CWE78_OS_Command_Injection__char_listen_socket_system │ └── 1.json ├── CWE78_10-CWE78_OS_Command_Injection__char_connect_socket_execl │ └── 1.json ├── CWE78_10-CWE78_OS_Command_Injection__char_connect_socket_execlp │ └── 1.json ├── CWE78_10-CWE78_OS_Command_Injection__char_connect_socket_popen │ └── 1.json ├── CWE78_10-CWE78_OS_Command_Injection__char_connect_socket_system │ └── 1.json ├── CWE78_10-CWE78_OS_Command_Injection__char_console_execl │ └── 1.json ├── CWE78_10-CWE78_OS_Command_Injection__char_console_execlp │ └── 1.json ├── CWE78_10-CWE78_OS_Command_Injection__char_console_popen │ └── 1.json ├── CWE78_10-CWE78_OS_Command_Injection__char_console_system │ └── 1.json ├── CWE78_10-CWE78_OS_Command_Injection__char_environment_execl │ └── 1.json ├── CWE78_10-CWE78_OS_Command_Injection__char_environment_execlp │ └── 1.json ├── CWE78_10-CWE78_OS_Command_Injection__char_environment_popen │ └── 1.json ├── CWE78_10-CWE78_OS_Command_Injection__char_environment_system │ └── 1.json ├── CWE78_10-CWE78_OS_Command_Injection__char_file_execl │ └── 1.json ├── CWE78_10-CWE78_OS_Command_Injection__char_file_execlp │ └── 1.json ├── CWE78_10-CWE78_OS_Command_Injection__char_file_popen │ └── 1.json ├── CWE78_10-CWE78_OS_Command_Injection__char_file_system │ └── 1.json ├── CWE78_10-CWE78_OS_Command_Injection__char_listen_socket_execl │ └── 1.json ├── CWE78_10-CWE78_OS_Command_Injection__char_listen_socket_execlp │ └── 1.json ├── CWE78_10-CWE78_OS_Command_Injection__char_listen_socket_popen │ └── 1.json ├── CWE78_10-CWE78_OS_Command_Injection__char_listen_socket_system │ └── 1.json ├── CWE78_11-CWE78_OS_Command_Injection__char_connect_socket_execl │ └── 1.json ├── CWE78_11-CWE78_OS_Command_Injection__char_connect_socket_execlp │ └── 1.json ├── CWE78_11-CWE78_OS_Command_Injection__char_connect_socket_popen │ └── 1.json ├── CWE78_11-CWE78_OS_Command_Injection__char_connect_socket_system │ └── 1.json ├── CWE78_11-CWE78_OS_Command_Injection__char_console_execl │ └── 1.json ├── CWE78_11-CWE78_OS_Command_Injection__char_console_execlp │ └── 1.json ├── CWE78_11-CWE78_OS_Command_Injection__char_console_popen │ └── 1.json ├── CWE78_11-CWE78_OS_Command_Injection__char_console_system │ └── 1.json ├── CWE78_11-CWE78_OS_Command_Injection__char_environment_execl │ └── 1.json ├── CWE78_11-CWE78_OS_Command_Injection__char_environment_execlp │ └── 1.json ├── CWE78_11-CWE78_OS_Command_Injection__char_environment_popen │ └── 1.json ├── CWE78_11-CWE78_OS_Command_Injection__char_environment_system │ └── 1.json ├── CWE78_11-CWE78_OS_Command_Injection__char_file_execl │ └── 1.json ├── CWE78_11-CWE78_OS_Command_Injection__char_file_execlp │ └── 1.json ├── CWE78_11-CWE78_OS_Command_Injection__char_file_popen │ └── 1.json ├── CWE78_11-CWE78_OS_Command_Injection__char_file_system │ └── 1.json ├── CWE78_11-CWE78_OS_Command_Injection__char_listen_socket_execl │ └── 1.json ├── CWE78_11-CWE78_OS_Command_Injection__char_listen_socket_execlp │ └── 1.json ├── CWE78_11-CWE78_OS_Command_Injection__char_listen_socket_popen │ └── 1.json ├── CWE78_11-CWE78_OS_Command_Injection__char_listen_socket_system │ └── 1.json ├── CWE78_12-CWE78_OS_Command_Injection__char_connect_socket_execl │ └── 1.json ├── CWE78_12-CWE78_OS_Command_Injection__char_connect_socket_execlp │ └── 1.json ├── CWE78_12-CWE78_OS_Command_Injection__char_connect_socket_popen │ └── 1.json ├── CWE78_12-CWE78_OS_Command_Injection__char_connect_socket_system │ └── 1.json ├── CWE78_12-CWE78_OS_Command_Injection__char_console_execl │ └── 1.json ├── CWE78_12-CWE78_OS_Command_Injection__char_console_execlp │ └── 1.json ├── CWE78_12-CWE78_OS_Command_Injection__char_console_popen │ └── 1.json ├── CWE78_12-CWE78_OS_Command_Injection__char_console_system │ └── 1.json ├── CWE78_12-CWE78_OS_Command_Injection__char_environment_execl │ └── 1.json ├── CWE78_12-CWE78_OS_Command_Injection__char_environment_execlp │ └── 1.json ├── CWE78_12-CWE78_OS_Command_Injection__char_environment_popen │ └── 1.json ├── CWE78_12-CWE78_OS_Command_Injection__char_environment_system │ └── 1.json ├── CWE78_12-CWE78_OS_Command_Injection__char_file_execl │ └── 1.json ├── CWE78_12-CWE78_OS_Command_Injection__char_file_execlp │ └── 1.json ├── CWE78_12-CWE78_OS_Command_Injection__char_file_popen │ └── 1.json ├── CWE78_12-CWE78_OS_Command_Injection__char_file_system │ └── 1.json ├── CWE78_12-CWE78_OS_Command_Injection__char_listen_socket_execl │ └── 1.json ├── CWE78_12-CWE78_OS_Command_Injection__char_listen_socket_execlp │ └── 1.json ├── CWE78_12-CWE78_OS_Command_Injection__char_listen_socket_popen │ └── 1.json ├── CWE78_12-CWE78_OS_Command_Injection__char_listen_socket_system │ └── 1.json ├── CWE78_13-CWE78_OS_Command_Injection__char_connect_socket_execl │ └── 1.json ├── CWE78_13-CWE78_OS_Command_Injection__char_connect_socket_execlp │ └── 1.json ├── CWE78_13-CWE78_OS_Command_Injection__char_connect_socket_popen │ └── 1.json ├── CWE78_13-CWE78_OS_Command_Injection__char_connect_socket_system │ └── 1.json ├── CWE78_13-CWE78_OS_Command_Injection__char_console_execl │ └── 1.json ├── CWE78_13-CWE78_OS_Command_Injection__char_console_execlp │ └── 1.json ├── CWE78_13-CWE78_OS_Command_Injection__char_console_popen │ └── 1.json ├── CWE78_13-CWE78_OS_Command_Injection__char_console_system │ └── 1.json ├── CWE78_13-CWE78_OS_Command_Injection__char_environment_execl │ └── 1.json ├── CWE78_13-CWE78_OS_Command_Injection__char_environment_execlp │ └── 1.json ├── CWE78_13-CWE78_OS_Command_Injection__char_environment_popen │ └── 1.json ├── CWE78_13-CWE78_OS_Command_Injection__char_environment_system │ └── 1.json ├── CWE78_13-CWE78_OS_Command_Injection__char_file_execl │ └── 1.json ├── CWE78_13-CWE78_OS_Command_Injection__char_file_execlp │ └── 1.json ├── CWE78_13-CWE78_OS_Command_Injection__char_file_popen │ └── 1.json ├── CWE78_13-CWE78_OS_Command_Injection__char_file_system │ └── 1.json ├── CWE78_13-CWE78_OS_Command_Injection__char_listen_socket_execl │ └── 1.json ├── CWE78_13-CWE78_OS_Command_Injection__char_listen_socket_execlp │ └── 1.json ├── CWE78_13-CWE78_OS_Command_Injection__char_listen_socket_popen │ └── 1.json ├── CWE78_13-CWE78_OS_Command_Injection__char_listen_socket_system │ └── 1.json ├── CWE78_14-CWE78_OS_Command_Injection__char_connect_socket_execl │ └── 1.json ├── CWE78_14-CWE78_OS_Command_Injection__char_connect_socket_execlp │ └── 1.json ├── CWE78_14-CWE78_OS_Command_Injection__char_connect_socket_popen │ └── 1.json ├── CWE78_14-CWE78_OS_Command_Injection__char_connect_socket_system │ └── 1.json ├── CWE78_14-CWE78_OS_Command_Injection__char_console_execl │ └── 1.json ├── CWE78_14-CWE78_OS_Command_Injection__char_console_execlp │ └── 1.json ├── CWE78_14-CWE78_OS_Command_Injection__char_console_popen │ └── 1.json ├── CWE78_14-CWE78_OS_Command_Injection__char_console_system │ └── 1.json ├── CWE78_14-CWE78_OS_Command_Injection__char_environment_execl │ └── 1.json ├── CWE78_14-CWE78_OS_Command_Injection__char_environment_execlp │ └── 1.json ├── CWE78_14-CWE78_OS_Command_Injection__char_environment_popen │ └── 1.json ├── CWE78_14-CWE78_OS_Command_Injection__char_environment_system │ └── 1.json ├── CWE78_14-CWE78_OS_Command_Injection__char_file_execl │ └── 1.json ├── CWE78_14-CWE78_OS_Command_Injection__char_file_execlp │ └── 1.json ├── CWE78_14-CWE78_OS_Command_Injection__char_file_popen │ └── 1.json ├── CWE78_14-CWE78_OS_Command_Injection__char_file_system │ └── 1.json ├── CWE78_14-CWE78_OS_Command_Injection__char_listen_socket_execl │ └── 1.json ├── CWE78_14-CWE78_OS_Command_Injection__char_listen_socket_execlp │ └── 1.json ├── CWE78_14-CWE78_OS_Command_Injection__char_listen_socket_popen │ └── 1.json ├── CWE78_14-CWE78_OS_Command_Injection__char_listen_socket_system │ └── 1.json ├── CWE78_15-CWE78_OS_Command_Injection__char_connect_socket_execl │ └── 1.json ├── CWE78_15-CWE78_OS_Command_Injection__char_connect_socket_execlp │ └── 1.json ├── CWE78_15-CWE78_OS_Command_Injection__char_connect_socket_popen │ └── 1.json ├── CWE78_15-CWE78_OS_Command_Injection__char_connect_socket_system │ └── 1.json ├── CWE78_15-CWE78_OS_Command_Injection__char_console_execl │ └── 1.json ├── CWE78_15-CWE78_OS_Command_Injection__char_console_execlp │ └── 1.json ├── CWE78_15-CWE78_OS_Command_Injection__char_console_popen │ └── 1.json ├── CWE78_15-CWE78_OS_Command_Injection__char_console_system │ └── 1.json ├── CWE78_15-CWE78_OS_Command_Injection__char_environment_execl │ └── 1.json ├── CWE78_15-CWE78_OS_Command_Injection__char_environment_execlp │ └── 1.json ├── CWE78_15-CWE78_OS_Command_Injection__char_environment_popen │ └── 1.json ├── CWE78_15-CWE78_OS_Command_Injection__char_environment_system │ └── 1.json ├── CWE78_15-CWE78_OS_Command_Injection__char_file_execl │ └── 1.json ├── CWE78_15-CWE78_OS_Command_Injection__char_file_execlp │ └── 1.json ├── CWE78_15-CWE78_OS_Command_Injection__char_file_popen │ └── 1.json ├── CWE78_15-CWE78_OS_Command_Injection__char_file_system │ └── 1.json ├── CWE78_15-CWE78_OS_Command_Injection__char_listen_socket_execl │ └── 1.json ├── CWE78_15-CWE78_OS_Command_Injection__char_listen_socket_execlp │ └── 1.json ├── CWE78_15-CWE78_OS_Command_Injection__char_listen_socket_popen │ └── 1.json ├── CWE78_15-CWE78_OS_Command_Injection__char_listen_socket_system │ └── 1.json ├── CWE78_16-CWE78_OS_Command_Injection__char_connect_socket_execl │ └── 1.json ├── CWE78_16-CWE78_OS_Command_Injection__char_connect_socket_execlp │ └── 1.json ├── CWE78_16-CWE78_OS_Command_Injection__char_connect_socket_popen │ └── 1.json ├── CWE78_16-CWE78_OS_Command_Injection__char_connect_socket_system │ └── 1.json ├── CWE78_16-CWE78_OS_Command_Injection__char_console_execl │ └── 1.json ├── CWE78_16-CWE78_OS_Command_Injection__char_console_execlp │ └── 1.json ├── CWE78_16-CWE78_OS_Command_Injection__char_console_popen │ └── 1.json ├── CWE78_16-CWE78_OS_Command_Injection__char_console_system │ └── 1.json ├── CWE78_16-CWE78_OS_Command_Injection__char_environment_execl │ └── 1.json ├── CWE78_16-CWE78_OS_Command_Injection__char_environment_execlp │ └── 1.json ├── CWE78_16-CWE78_OS_Command_Injection__char_environment_popen │ └── 1.json ├── CWE78_16-CWE78_OS_Command_Injection__char_environment_system │ └── 1.json ├── CWE78_16-CWE78_OS_Command_Injection__char_file_execl │ └── 1.json ├── CWE78_16-CWE78_OS_Command_Injection__char_file_execlp │ └── 1.json ├── CWE78_16-CWE78_OS_Command_Injection__char_file_popen │ └── 1.json ├── CWE78_16-CWE78_OS_Command_Injection__char_file_system │ └── 1.json ├── CWE78_16-CWE78_OS_Command_Injection__char_listen_socket_execl │ └── 1.json ├── CWE78_16-CWE78_OS_Command_Injection__char_listen_socket_execlp │ └── 1.json ├── CWE78_16-CWE78_OS_Command_Injection__char_listen_socket_popen │ └── 1.json ├── CWE78_16-CWE78_OS_Command_Injection__char_listen_socket_system │ └── 1.json ├── CWE78_17-CWE78_OS_Command_Injection__char_connect_socket_execl │ └── 1.json ├── CWE78_17-CWE78_OS_Command_Injection__char_connect_socket_execlp │ └── 1.json ├── CWE78_17-CWE78_OS_Command_Injection__char_connect_socket_popen │ └── 1.json ├── CWE78_17-CWE78_OS_Command_Injection__char_connect_socket_system │ └── 1.json ├── CWE78_17-CWE78_OS_Command_Injection__char_console_execl │ └── 1.json ├── CWE78_17-CWE78_OS_Command_Injection__char_console_execlp │ └── 1.json ├── CWE78_17-CWE78_OS_Command_Injection__char_console_popen │ └── 1.json ├── CWE78_17-CWE78_OS_Command_Injection__char_console_system │ └── 1.json ├── CWE78_17-CWE78_OS_Command_Injection__char_environment_execl │ └── 1.json ├── CWE78_17-CWE78_OS_Command_Injection__char_environment_execlp │ └── 1.json ├── CWE78_17-CWE78_OS_Command_Injection__char_environment_popen │ └── 1.json ├── CWE78_17-CWE78_OS_Command_Injection__char_environment_system │ └── 1.json ├── CWE78_17-CWE78_OS_Command_Injection__char_file_execl │ └── 1.json ├── CWE78_17-CWE78_OS_Command_Injection__char_file_execlp │ └── 1.json ├── CWE78_17-CWE78_OS_Command_Injection__char_file_popen │ └── 1.json ├── CWE78_17-CWE78_OS_Command_Injection__char_file_system │ └── 1.json ├── CWE78_17-CWE78_OS_Command_Injection__char_listen_socket_execl │ └── 1.json ├── CWE78_17-CWE78_OS_Command_Injection__char_listen_socket_execlp │ └── 1.json ├── CWE78_17-CWE78_OS_Command_Injection__char_listen_socket_popen │ └── 1.json ├── CWE78_17-CWE78_OS_Command_Injection__char_listen_socket_system │ └── 1.json ├── CWE78_18-CWE78_OS_Command_Injection__char_connect_socket_execl │ └── 1.json ├── CWE78_18-CWE78_OS_Command_Injection__char_connect_socket_execlp │ └── 1.json ├── CWE78_18-CWE78_OS_Command_Injection__char_connect_socket_popen │ └── 1.json ├── CWE78_18-CWE78_OS_Command_Injection__char_connect_socket_system │ └── 1.json ├── CWE78_18-CWE78_OS_Command_Injection__char_console_execl │ └── 1.json ├── CWE78_18-CWE78_OS_Command_Injection__char_console_execlp │ └── 1.json ├── CWE78_18-CWE78_OS_Command_Injection__char_console_popen │ └── 1.json ├── CWE78_18-CWE78_OS_Command_Injection__char_console_system │ └── 1.json ├── CWE78_18-CWE78_OS_Command_Injection__char_environment_execl │ └── 1.json ├── CWE78_18-CWE78_OS_Command_Injection__char_environment_execlp │ └── 1.json ├── CWE78_18-CWE78_OS_Command_Injection__char_environment_popen │ └── 1.json ├── CWE78_18-CWE78_OS_Command_Injection__char_environment_system │ └── 1.json ├── CWE78_18-CWE78_OS_Command_Injection__char_file_execl │ └── 1.json ├── CWE78_18-CWE78_OS_Command_Injection__char_file_execlp │ └── 1.json ├── CWE78_18-CWE78_OS_Command_Injection__char_file_popen │ └── 1.json ├── CWE78_18-CWE78_OS_Command_Injection__char_file_system │ └── 1.json ├── CWE78_18-CWE78_OS_Command_Injection__char_listen_socket_execl │ └── 1.json ├── CWE78_18-CWE78_OS_Command_Injection__char_listen_socket_execlp │ └── 1.json ├── CWE78_18-CWE78_OS_Command_Injection__char_listen_socket_popen │ └── 1.json ├── CWE78_18-CWE78_OS_Command_Injection__char_listen_socket_system │ └── 1.json ├── CWE78_21-CWE78_OS_Command_Injection__char_connect_socket_execl │ └── 1.json ├── CWE78_21-CWE78_OS_Command_Injection__char_connect_socket_execlp │ └── 1.json ├── CWE78_21-CWE78_OS_Command_Injection__char_connect_socket_popen │ └── 1.json ├── CWE78_21-CWE78_OS_Command_Injection__char_connect_socket_system │ └── 1.json ├── CWE78_21-CWE78_OS_Command_Injection__char_console_execl │ └── 1.json ├── CWE78_21-CWE78_OS_Command_Injection__char_console_execlp │ └── 1.json ├── CWE78_21-CWE78_OS_Command_Injection__char_console_popen │ └── 1.json ├── CWE78_21-CWE78_OS_Command_Injection__char_console_system │ └── 1.json ├── CWE78_21-CWE78_OS_Command_Injection__char_environment_execl │ └── 1.json ├── CWE78_21-CWE78_OS_Command_Injection__char_environment_execlp │ └── 1.json ├── CWE78_21-CWE78_OS_Command_Injection__char_environment_popen │ └── 1.json ├── CWE78_21-CWE78_OS_Command_Injection__char_environment_system │ └── 1.json ├── CWE78_21-CWE78_OS_Command_Injection__char_file_execl │ └── 1.json ├── CWE78_21-CWE78_OS_Command_Injection__char_file_execlp │ └── 1.json ├── CWE78_21-CWE78_OS_Command_Injection__char_file_popen │ └── 1.json ├── CWE78_21-CWE78_OS_Command_Injection__char_file_system │ └── 1.json ├── CWE78_21-CWE78_OS_Command_Injection__char_listen_socket_execl │ └── 1.json ├── CWE78_21-CWE78_OS_Command_Injection__char_listen_socket_execlp │ └── 1.json ├── CWE78_21-CWE78_OS_Command_Injection__char_listen_socket_popen │ └── 1.json ├── CWE78_21-CWE78_OS_Command_Injection__char_listen_socket_system │ └── 1.json ├── CWE78_22-CWE78_OS_Command_Injection__char_connect_socket_execl │ └── 1.json ├── CWE78_22-CWE78_OS_Command_Injection__char_connect_socket_execlp │ └── 1.json ├── CWE78_22-CWE78_OS_Command_Injection__char_connect_socket_popen │ └── 1.json ├── CWE78_22-CWE78_OS_Command_Injection__char_connect_socket_system │ └── 1.json ├── CWE78_22-CWE78_OS_Command_Injection__char_console_execl │ └── 1.json ├── CWE78_22-CWE78_OS_Command_Injection__char_console_execlp │ └── 1.json ├── CWE78_22-CWE78_OS_Command_Injection__char_console_popen │ └── 1.json ├── CWE78_22-CWE78_OS_Command_Injection__char_console_system │ └── 1.json ├── CWE78_22-CWE78_OS_Command_Injection__char_environment_execl │ └── 1.json ├── CWE78_22-CWE78_OS_Command_Injection__char_environment_execlp │ └── 1.json ├── CWE78_22-CWE78_OS_Command_Injection__char_environment_popen │ └── 1.json ├── CWE78_22-CWE78_OS_Command_Injection__char_environment_system │ └── 1.json ├── CWE78_22-CWE78_OS_Command_Injection__char_file_execl │ └── 1.json ├── CWE78_22-CWE78_OS_Command_Injection__char_file_execlp │ └── 1.json ├── CWE78_22-CWE78_OS_Command_Injection__char_file_popen │ └── 1.json ├── CWE78_22-CWE78_OS_Command_Injection__char_file_system │ └── 1.json ├── CWE78_22-CWE78_OS_Command_Injection__char_listen_socket_execl │ └── 1.json ├── CWE78_22-CWE78_OS_Command_Injection__char_listen_socket_execlp │ └── 1.json ├── CWE78_22-CWE78_OS_Command_Injection__char_listen_socket_popen │ └── 1.json ├── CWE78_22-CWE78_OS_Command_Injection__char_listen_socket_system │ └── 1.json ├── CWE78_31-CWE78_OS_Command_Injection__char_connect_socket_execl │ └── 1.json ├── CWE78_31-CWE78_OS_Command_Injection__char_connect_socket_execlp │ └── 1.json ├── CWE78_31-CWE78_OS_Command_Injection__char_connect_socket_popen │ └── 1.json ├── CWE78_31-CWE78_OS_Command_Injection__char_connect_socket_system │ └── 1.json ├── CWE78_31-CWE78_OS_Command_Injection__char_console_execl │ └── 1.json ├── CWE78_31-CWE78_OS_Command_Injection__char_console_execlp │ └── 1.json ├── CWE78_31-CWE78_OS_Command_Injection__char_console_popen │ └── 1.json ├── CWE78_31-CWE78_OS_Command_Injection__char_console_system │ └── 1.json ├── CWE78_31-CWE78_OS_Command_Injection__char_environment_execl │ └── 1.json ├── CWE78_31-CWE78_OS_Command_Injection__char_environment_execlp │ └── 1.json ├── CWE78_31-CWE78_OS_Command_Injection__char_environment_popen │ └── 1.json ├── CWE78_31-CWE78_OS_Command_Injection__char_environment_system │ └── 1.json ├── CWE78_31-CWE78_OS_Command_Injection__char_file_execl │ └── 1.json ├── CWE78_31-CWE78_OS_Command_Injection__char_file_execlp │ └── 1.json ├── CWE78_31-CWE78_OS_Command_Injection__char_file_popen │ └── 1.json ├── CWE78_31-CWE78_OS_Command_Injection__char_file_system │ └── 1.json ├── CWE78_31-CWE78_OS_Command_Injection__char_listen_socket_execl │ └── 1.json ├── CWE78_31-CWE78_OS_Command_Injection__char_listen_socket_execlp │ └── 1.json ├── CWE78_31-CWE78_OS_Command_Injection__char_listen_socket_popen │ └── 1.json ├── CWE78_31-CWE78_OS_Command_Injection__char_listen_socket_system │ └── 1.json ├── CWE78_32-CWE78_OS_Command_Injection__char_connect_socket_execl │ └── 1.json ├── CWE78_32-CWE78_OS_Command_Injection__char_connect_socket_execlp │ └── 1.json ├── CWE78_32-CWE78_OS_Command_Injection__char_connect_socket_popen │ └── 1.json ├── CWE78_32-CWE78_OS_Command_Injection__char_connect_socket_system │ └── 1.json ├── CWE78_32-CWE78_OS_Command_Injection__char_console_execl │ └── 1.json ├── CWE78_32-CWE78_OS_Command_Injection__char_console_execlp │ └── 1.json ├── CWE78_32-CWE78_OS_Command_Injection__char_console_popen │ └── 1.json ├── CWE78_32-CWE78_OS_Command_Injection__char_console_system │ └── 1.json ├── CWE78_32-CWE78_OS_Command_Injection__char_environment_execl │ └── 1.json ├── CWE78_32-CWE78_OS_Command_Injection__char_environment_execlp │ └── 1.json ├── CWE78_32-CWE78_OS_Command_Injection__char_environment_popen │ └── 1.json ├── CWE78_32-CWE78_OS_Command_Injection__char_environment_system │ └── 1.json ├── CWE78_32-CWE78_OS_Command_Injection__char_file_execl │ └── 1.json ├── CWE78_32-CWE78_OS_Command_Injection__char_file_execlp │ └── 1.json ├── CWE78_32-CWE78_OS_Command_Injection__char_file_popen │ └── 1.json ├── CWE78_32-CWE78_OS_Command_Injection__char_file_system │ └── 1.json ├── CWE78_32-CWE78_OS_Command_Injection__char_listen_socket_execl │ └── 1.json ├── CWE78_32-CWE78_OS_Command_Injection__char_listen_socket_execlp │ └── 1.json ├── CWE78_32-CWE78_OS_Command_Injection__char_listen_socket_popen │ └── 1.json ├── CWE78_32-CWE78_OS_Command_Injection__char_listen_socket_system │ └── 1.json ├── CWE78_33-CWE78_OS_Command_Injection__char_connect_socket_execl │ └── 1.json ├── CWE78_33-CWE78_OS_Command_Injection__char_connect_socket_execlp │ └── 1.json ├── CWE78_33-CWE78_OS_Command_Injection__char_connect_socket_popen │ └── 1.json ├── CWE78_33-CWE78_OS_Command_Injection__char_connect_socket_system │ └── 1.json ├── CWE78_33-CWE78_OS_Command_Injection__char_console_execl │ └── 1.json ├── CWE78_33-CWE78_OS_Command_Injection__char_console_execlp │ └── 1.json ├── CWE78_33-CWE78_OS_Command_Injection__char_console_popen │ └── 1.json ├── CWE78_33-CWE78_OS_Command_Injection__char_console_system │ └── 1.json ├── CWE78_33-CWE78_OS_Command_Injection__char_environment_execl │ └── 1.json ├── CWE78_33-CWE78_OS_Command_Injection__char_environment_execlp │ └── 1.json ├── CWE78_33-CWE78_OS_Command_Injection__char_environment_popen │ └── 1.json ├── CWE78_33-CWE78_OS_Command_Injection__char_environment_system │ └── 1.json ├── CWE78_33-CWE78_OS_Command_Injection__char_file_execl │ └── 1.json ├── CWE78_33-CWE78_OS_Command_Injection__char_file_execlp │ └── 1.json ├── CWE78_33-CWE78_OS_Command_Injection__char_file_popen │ └── 1.json ├── CWE78_33-CWE78_OS_Command_Injection__char_file_system │ └── 1.json ├── CWE78_33-CWE78_OS_Command_Injection__char_listen_socket_execl │ └── 1.json ├── CWE78_33-CWE78_OS_Command_Injection__char_listen_socket_execlp │ └── 1.json ├── CWE78_33-CWE78_OS_Command_Injection__char_listen_socket_popen │ └── 1.json ├── CWE78_33-CWE78_OS_Command_Injection__char_listen_socket_system │ └── 1.json ├── CWE78_41-CWE78_OS_Command_Injection__char_connect_socket_execl │ └── 1.json ├── CWE78_41-CWE78_OS_Command_Injection__char_connect_socket_execlp │ └── 1.json ├── CWE78_41-CWE78_OS_Command_Injection__char_connect_socket_popen │ └── 1.json ├── CWE78_41-CWE78_OS_Command_Injection__char_connect_socket_system │ └── 1.json ├── CWE78_41-CWE78_OS_Command_Injection__char_console_execl │ └── 1.json ├── CWE78_41-CWE78_OS_Command_Injection__char_console_execlp │ └── 1.json ├── CWE78_41-CWE78_OS_Command_Injection__char_console_popen │ └── 1.json ├── CWE78_41-CWE78_OS_Command_Injection__char_console_system │ └── 1.json ├── CWE78_41-CWE78_OS_Command_Injection__char_environment_execl │ └── 1.json ├── CWE78_41-CWE78_OS_Command_Injection__char_environment_execlp │ └── 1.json ├── CWE78_41-CWE78_OS_Command_Injection__char_environment_popen │ └── 1.json ├── CWE78_41-CWE78_OS_Command_Injection__char_environment_system │ └── 1.json ├── CWE78_41-CWE78_OS_Command_Injection__char_file_execl │ └── 1.json ├── CWE78_41-CWE78_OS_Command_Injection__char_file_execlp │ └── 1.json ├── CWE78_41-CWE78_OS_Command_Injection__char_file_popen │ └── 1.json ├── CWE78_41-CWE78_OS_Command_Injection__char_file_system │ └── 1.json ├── CWE78_41-CWE78_OS_Command_Injection__char_listen_socket_execl │ └── 1.json ├── CWE78_41-CWE78_OS_Command_Injection__char_listen_socket_execlp │ └── 1.json ├── CWE78_41-CWE78_OS_Command_Injection__char_listen_socket_popen │ └── 1.json ├── CWE78_41-CWE78_OS_Command_Injection__char_listen_socket_system │ └── 1.json ├── CWE78_42-CWE78_OS_Command_Injection__char_connect_socket_execl │ └── 1.json ├── CWE78_42-CWE78_OS_Command_Injection__char_connect_socket_execlp │ └── 1.json ├── CWE78_42-CWE78_OS_Command_Injection__char_connect_socket_popen │ └── 1.json ├── CWE78_42-CWE78_OS_Command_Injection__char_connect_socket_system │ └── 1.json ├── CWE78_42-CWE78_OS_Command_Injection__char_console_execl │ └── 1.json ├── CWE78_42-CWE78_OS_Command_Injection__char_console_execlp │ └── 1.json ├── CWE78_42-CWE78_OS_Command_Injection__char_console_popen │ └── 1.json ├── CWE78_42-CWE78_OS_Command_Injection__char_console_system │ └── 1.json ├── CWE78_42-CWE78_OS_Command_Injection__char_environment_execl │ └── 1.json ├── CWE78_42-CWE78_OS_Command_Injection__char_environment_execlp │ └── 1.json ├── CWE78_42-CWE78_OS_Command_Injection__char_environment_popen │ └── 1.json ├── CWE78_42-CWE78_OS_Command_Injection__char_environment_system │ └── 1.json ├── CWE78_42-CWE78_OS_Command_Injection__char_file_execl │ └── 1.json ├── CWE78_42-CWE78_OS_Command_Injection__char_file_execlp │ └── 1.json ├── CWE78_42-CWE78_OS_Command_Injection__char_file_popen │ └── 1.json ├── CWE78_42-CWE78_OS_Command_Injection__char_file_system │ └── 1.json ├── CWE78_42-CWE78_OS_Command_Injection__char_listen_socket_execl │ └── 1.json ├── CWE78_42-CWE78_OS_Command_Injection__char_listen_socket_execlp │ └── 1.json ├── CWE78_42-CWE78_OS_Command_Injection__char_listen_socket_popen │ └── 1.json ├── CWE78_42-CWE78_OS_Command_Injection__char_listen_socket_system │ └── 1.json ├── CWE78_44-CWE78_OS_Command_Injection__char_connect_socket_execl │ └── 1.json ├── CWE78_44-CWE78_OS_Command_Injection__char_connect_socket_execlp │ └── 1.json ├── CWE78_44-CWE78_OS_Command_Injection__char_connect_socket_popen │ └── 1.json ├── CWE78_44-CWE78_OS_Command_Injection__char_connect_socket_system │ └── 1.json ├── CWE78_44-CWE78_OS_Command_Injection__char_console_execl │ └── 1.json ├── CWE78_44-CWE78_OS_Command_Injection__char_console_execlp │ └── 1.json ├── CWE78_44-CWE78_OS_Command_Injection__char_console_popen │ └── 1.json ├── CWE78_44-CWE78_OS_Command_Injection__char_console_system │ └── 1.json ├── CWE78_44-CWE78_OS_Command_Injection__char_environment_execl │ └── 1.json ├── CWE78_44-CWE78_OS_Command_Injection__char_environment_execlp │ └── 1.json ├── CWE78_44-CWE78_OS_Command_Injection__char_environment_popen │ └── 1.json ├── CWE78_44-CWE78_OS_Command_Injection__char_environment_system │ └── 1.json ├── CWE78_44-CWE78_OS_Command_Injection__char_file_execl │ └── 1.json ├── CWE78_44-CWE78_OS_Command_Injection__char_file_execlp │ └── 1.json ├── CWE78_44-CWE78_OS_Command_Injection__char_file_popen │ └── 1.json ├── CWE78_44-CWE78_OS_Command_Injection__char_file_system │ └── 1.json ├── CWE78_44-CWE78_OS_Command_Injection__char_listen_socket_execl │ └── 1.json ├── CWE78_44-CWE78_OS_Command_Injection__char_listen_socket_execlp │ └── 1.json ├── CWE78_44-CWE78_OS_Command_Injection__char_listen_socket_popen │ └── 1.json ├── CWE78_44-CWE78_OS_Command_Injection__char_listen_socket_system │ └── 1.json ├── CWE78_51-CWE78_OS_Command_Injection__char_connect_socket_execl │ └── 1.json ├── CWE78_51-CWE78_OS_Command_Injection__char_connect_socket_execlp │ └── 1.json ├── CWE78_51-CWE78_OS_Command_Injection__char_connect_socket_popen │ └── 1.json ├── CWE78_51-CWE78_OS_Command_Injection__char_connect_socket_system │ └── 1.json ├── CWE78_51-CWE78_OS_Command_Injection__char_console_execl │ └── 1.json ├── CWE78_51-CWE78_OS_Command_Injection__char_console_execlp │ └── 1.json ├── CWE78_51-CWE78_OS_Command_Injection__char_console_popen │ └── 1.json ├── CWE78_51-CWE78_OS_Command_Injection__char_console_system │ └── 1.json ├── CWE78_51-CWE78_OS_Command_Injection__char_environment_execl │ └── 1.json ├── CWE78_51-CWE78_OS_Command_Injection__char_environment_execlp │ └── 1.json ├── CWE78_51-CWE78_OS_Command_Injection__char_environment_popen │ └── 1.json ├── CWE78_51-CWE78_OS_Command_Injection__char_environment_system │ └── 1.json ├── CWE78_51-CWE78_OS_Command_Injection__char_file_execl │ └── 1.json ├── CWE78_51-CWE78_OS_Command_Injection__char_file_execlp │ └── 1.json ├── CWE78_51-CWE78_OS_Command_Injection__char_file_popen │ └── 1.json ├── CWE78_51-CWE78_OS_Command_Injection__char_file_system │ └── 1.json ├── CWE78_51-CWE78_OS_Command_Injection__char_listen_socket_execl │ └── 1.json ├── CWE78_51-CWE78_OS_Command_Injection__char_listen_socket_execlp │ └── 1.json ├── CWE78_51-CWE78_OS_Command_Injection__char_listen_socket_popen │ └── 1.json ├── CWE78_51-CWE78_OS_Command_Injection__char_listen_socket_system │ └── 1.json ├── CWE78_52-CWE78_OS_Command_Injection__char_connect_socket_execl │ └── 1.json ├── CWE78_52-CWE78_OS_Command_Injection__char_connect_socket_execlp │ └── 1.json ├── CWE78_52-CWE78_OS_Command_Injection__char_connect_socket_popen │ └── 1.json ├── CWE78_52-CWE78_OS_Command_Injection__char_connect_socket_system │ └── 1.json ├── CWE78_52-CWE78_OS_Command_Injection__char_console_execl │ └── 1.json ├── CWE78_52-CWE78_OS_Command_Injection__char_console_execlp │ └── 1.json ├── CWE78_52-CWE78_OS_Command_Injection__char_console_popen │ └── 1.json ├── CWE78_52-CWE78_OS_Command_Injection__char_console_system │ └── 1.json ├── CWE78_52-CWE78_OS_Command_Injection__char_environment_execl │ └── 1.json ├── CWE78_52-CWE78_OS_Command_Injection__char_environment_execlp │ └── 1.json ├── CWE78_52-CWE78_OS_Command_Injection__char_environment_popen │ └── 1.json ├── CWE78_52-CWE78_OS_Command_Injection__char_environment_system │ └── 1.json ├── CWE78_52-CWE78_OS_Command_Injection__char_file_execl │ └── 1.json ├── CWE78_52-CWE78_OS_Command_Injection__char_file_execlp │ └── 1.json ├── CWE78_52-CWE78_OS_Command_Injection__char_file_popen │ └── 1.json ├── CWE78_52-CWE78_OS_Command_Injection__char_file_system │ └── 1.json ├── CWE78_52-CWE78_OS_Command_Injection__char_listen_socket_execl │ └── 1.json ├── CWE78_52-CWE78_OS_Command_Injection__char_listen_socket_execlp │ └── 1.json ├── CWE78_52-CWE78_OS_Command_Injection__char_listen_socket_popen │ └── 1.json ├── CWE78_52-CWE78_OS_Command_Injection__char_listen_socket_system │ └── 1.json ├── CWE78_53-CWE78_OS_Command_Injection__char_connect_socket_execl │ └── 1.json ├── CWE78_53-CWE78_OS_Command_Injection__char_connect_socket_execlp │ └── 1.json ├── CWE78_53-CWE78_OS_Command_Injection__char_connect_socket_popen │ └── 1.json ├── CWE78_53-CWE78_OS_Command_Injection__char_connect_socket_system │ └── 1.json ├── CWE78_53-CWE78_OS_Command_Injection__char_console_execl │ └── 1.json ├── CWE78_53-CWE78_OS_Command_Injection__char_console_execlp │ └── 1.json ├── CWE78_53-CWE78_OS_Command_Injection__char_console_popen │ └── 1.json ├── CWE78_53-CWE78_OS_Command_Injection__char_console_system │ └── 1.json ├── CWE78_53-CWE78_OS_Command_Injection__char_environment_execl │ └── 1.json ├── CWE78_53-CWE78_OS_Command_Injection__char_environment_execlp │ └── 1.json ├── CWE78_53-CWE78_OS_Command_Injection__char_environment_popen │ └── 1.json ├── CWE78_53-CWE78_OS_Command_Injection__char_environment_system │ └── 1.json ├── CWE78_53-CWE78_OS_Command_Injection__char_file_execl │ └── 1.json ├── CWE78_53-CWE78_OS_Command_Injection__char_file_execlp │ └── 1.json ├── CWE78_53-CWE78_OS_Command_Injection__char_file_popen │ └── 1.json ├── CWE78_53-CWE78_OS_Command_Injection__char_file_system │ └── 1.json ├── CWE78_53-CWE78_OS_Command_Injection__char_listen_socket_execl │ └── 1.json ├── CWE78_53-CWE78_OS_Command_Injection__char_listen_socket_execlp │ └── 1.json ├── CWE78_53-CWE78_OS_Command_Injection__char_listen_socket_popen │ └── 1.json ├── CWE78_53-CWE78_OS_Command_Injection__char_listen_socket_system │ └── 1.json ├── CWE78_54-CWE78_OS_Command_Injection__char_connect_socket_execl │ └── 1.json ├── CWE78_54-CWE78_OS_Command_Injection__char_connect_socket_execlp │ └── 1.json ├── CWE78_54-CWE78_OS_Command_Injection__char_connect_socket_popen │ └── 1.json ├── CWE78_54-CWE78_OS_Command_Injection__char_connect_socket_system │ └── 1.json ├── CWE78_54-CWE78_OS_Command_Injection__char_console_execl │ └── 1.json ├── CWE78_54-CWE78_OS_Command_Injection__char_console_execlp │ └── 1.json ├── CWE78_54-CWE78_OS_Command_Injection__char_console_popen │ └── 1.json ├── CWE78_54-CWE78_OS_Command_Injection__char_console_system │ └── 1.json ├── CWE78_54-CWE78_OS_Command_Injection__char_environment_execl │ └── 1.json ├── CWE78_54-CWE78_OS_Command_Injection__char_environment_execlp │ └── 1.json ├── CWE78_54-CWE78_OS_Command_Injection__char_environment_popen │ └── 1.json ├── CWE78_54-CWE78_OS_Command_Injection__char_environment_system │ └── 1.json ├── CWE78_54-CWE78_OS_Command_Injection__char_file_execl │ └── 1.json ├── CWE78_54-CWE78_OS_Command_Injection__char_file_execlp │ └── 1.json ├── CWE78_54-CWE78_OS_Command_Injection__char_file_popen │ └── 1.json ├── CWE78_54-CWE78_OS_Command_Injection__char_file_system │ └── 1.json ├── CWE78_54-CWE78_OS_Command_Injection__char_listen_socket_execl │ └── 1.json ├── CWE78_54-CWE78_OS_Command_Injection__char_listen_socket_execlp │ └── 1.json ├── CWE78_54-CWE78_OS_Command_Injection__char_listen_socket_popen │ └── 1.json ├── CWE78_54-CWE78_OS_Command_Injection__char_listen_socket_system │ └── 1.json ├── CWE78_61-CWE78_OS_Command_Injection__char_connect_socket_execl │ └── 1.json ├── CWE78_61-CWE78_OS_Command_Injection__char_connect_socket_execlp │ └── 1.json ├── CWE78_61-CWE78_OS_Command_Injection__char_connect_socket_popen │ └── 1.json ├── CWE78_61-CWE78_OS_Command_Injection__char_connect_socket_system │ └── 1.json ├── CWE78_61-CWE78_OS_Command_Injection__char_console_execl │ └── 1.json ├── CWE78_61-CWE78_OS_Command_Injection__char_console_execlp │ └── 1.json ├── CWE78_61-CWE78_OS_Command_Injection__char_console_popen │ └── 1.json ├── CWE78_61-CWE78_OS_Command_Injection__char_console_system │ └── 1.json ├── CWE78_61-CWE78_OS_Command_Injection__char_environment_execl │ └── 1.json ├── CWE78_61-CWE78_OS_Command_Injection__char_environment_execlp │ └── 1.json ├── CWE78_61-CWE78_OS_Command_Injection__char_environment_popen │ └── 1.json ├── CWE78_61-CWE78_OS_Command_Injection__char_environment_system │ └── 1.json ├── CWE78_61-CWE78_OS_Command_Injection__char_file_execl │ └── 1.json ├── CWE78_61-CWE78_OS_Command_Injection__char_file_execlp │ └── 1.json ├── CWE78_61-CWE78_OS_Command_Injection__char_file_popen │ └── 1.json ├── CWE78_61-CWE78_OS_Command_Injection__char_file_system │ └── 1.json ├── CWE78_61-CWE78_OS_Command_Injection__char_listen_socket_execl │ └── 1.json ├── CWE78_61-CWE78_OS_Command_Injection__char_listen_socket_execlp │ └── 1.json ├── CWE78_61-CWE78_OS_Command_Injection__char_listen_socket_popen │ └── 1.json ├── CWE78_61-CWE78_OS_Command_Injection__char_listen_socket_system │ └── 1.json ├── CWE78_63-CWE78_OS_Command_Injection__char_connect_socket_execl │ └── 1.json ├── CWE78_63-CWE78_OS_Command_Injection__char_connect_socket_execlp │ └── 1.json ├── CWE78_63-CWE78_OS_Command_Injection__char_connect_socket_popen │ └── 1.json ├── CWE78_63-CWE78_OS_Command_Injection__char_connect_socket_system │ └── 1.json ├── CWE78_63-CWE78_OS_Command_Injection__char_console_execl │ └── 1.json ├── CWE78_63-CWE78_OS_Command_Injection__char_console_execlp │ └── 1.json ├── CWE78_63-CWE78_OS_Command_Injection__char_console_popen │ └── 1.json ├── CWE78_63-CWE78_OS_Command_Injection__char_console_system │ └── 1.json ├── CWE78_63-CWE78_OS_Command_Injection__char_environment_execl │ └── 1.json ├── CWE78_63-CWE78_OS_Command_Injection__char_environment_execlp │ └── 1.json ├── CWE78_63-CWE78_OS_Command_Injection__char_environment_popen │ └── 1.json ├── CWE78_63-CWE78_OS_Command_Injection__char_environment_system │ └── 1.json ├── CWE78_63-CWE78_OS_Command_Injection__char_file_execl │ └── 1.json ├── CWE78_63-CWE78_OS_Command_Injection__char_file_execlp │ └── 1.json ├── CWE78_63-CWE78_OS_Command_Injection__char_file_popen │ └── 1.json ├── CWE78_63-CWE78_OS_Command_Injection__char_file_system │ └── 1.json ├── CWE78_63-CWE78_OS_Command_Injection__char_listen_socket_execl │ └── 1.json ├── CWE78_63-CWE78_OS_Command_Injection__char_listen_socket_execlp │ └── 1.json ├── CWE78_63-CWE78_OS_Command_Injection__char_listen_socket_popen │ └── 1.json ├── CWE78_63-CWE78_OS_Command_Injection__char_listen_socket_system │ └── 1.json ├── CWE78_64-CWE78_OS_Command_Injection__char_connect_socket_execl │ └── 1.json ├── CWE78_64-CWE78_OS_Command_Injection__char_connect_socket_execlp │ └── 1.json ├── CWE78_64-CWE78_OS_Command_Injection__char_connect_socket_popen │ └── 1.json ├── CWE78_64-CWE78_OS_Command_Injection__char_connect_socket_system │ └── 1.json ├── CWE78_64-CWE78_OS_Command_Injection__char_console_execl │ └── 1.json ├── CWE78_64-CWE78_OS_Command_Injection__char_console_execlp │ └── 1.json ├── CWE78_64-CWE78_OS_Command_Injection__char_console_popen │ └── 1.json ├── CWE78_64-CWE78_OS_Command_Injection__char_console_system │ └── 1.json ├── CWE78_64-CWE78_OS_Command_Injection__char_environment_execl │ └── 1.json ├── CWE78_64-CWE78_OS_Command_Injection__char_environment_execlp │ └── 1.json ├── CWE78_64-CWE78_OS_Command_Injection__char_environment_popen │ └── 1.json ├── CWE78_64-CWE78_OS_Command_Injection__char_environment_system │ └── 1.json ├── CWE78_64-CWE78_OS_Command_Injection__char_file_execl │ └── 1.json ├── CWE78_64-CWE78_OS_Command_Injection__char_file_execlp │ └── 1.json ├── CWE78_64-CWE78_OS_Command_Injection__char_file_popen │ └── 1.json ├── CWE78_64-CWE78_OS_Command_Injection__char_file_system │ └── 1.json ├── CWE78_64-CWE78_OS_Command_Injection__char_listen_socket_execl │ └── 1.json ├── CWE78_64-CWE78_OS_Command_Injection__char_listen_socket_execlp │ └── 1.json ├── CWE78_64-CWE78_OS_Command_Injection__char_listen_socket_popen │ └── 1.json ├── CWE78_64-CWE78_OS_Command_Injection__char_listen_socket_system │ └── 1.json ├── CWE78_65-CWE78_OS_Command_Injection__char_connect_socket_execl │ └── 1.json ├── CWE78_65-CWE78_OS_Command_Injection__char_connect_socket_execlp │ └── 1.json ├── CWE78_65-CWE78_OS_Command_Injection__char_connect_socket_popen │ └── 1.json ├── CWE78_65-CWE78_OS_Command_Injection__char_connect_socket_system │ └── 1.json ├── CWE78_65-CWE78_OS_Command_Injection__char_console_execl │ └── 1.json ├── CWE78_65-CWE78_OS_Command_Injection__char_console_execlp │ └── 1.json ├── CWE78_65-CWE78_OS_Command_Injection__char_console_popen │ └── 1.json ├── CWE78_65-CWE78_OS_Command_Injection__char_console_system │ └── 1.json ├── CWE78_65-CWE78_OS_Command_Injection__char_environment_execl │ └── 1.json ├── CWE78_65-CWE78_OS_Command_Injection__char_environment_execlp │ └── 1.json ├── CWE78_65-CWE78_OS_Command_Injection__char_environment_popen │ └── 1.json ├── CWE78_65-CWE78_OS_Command_Injection__char_environment_system │ └── 1.json ├── CWE78_65-CWE78_OS_Command_Injection__char_file_execl │ └── 1.json ├── CWE78_65-CWE78_OS_Command_Injection__char_file_execlp │ └── 1.json ├── CWE78_65-CWE78_OS_Command_Injection__char_file_popen │ └── 1.json ├── CWE78_65-CWE78_OS_Command_Injection__char_file_system │ └── 1.json ├── CWE78_65-CWE78_OS_Command_Injection__char_listen_socket_execl │ └── 1.json ├── CWE78_65-CWE78_OS_Command_Injection__char_listen_socket_execlp │ └── 1.json ├── CWE78_65-CWE78_OS_Command_Injection__char_listen_socket_popen │ └── 1.json ├── CWE78_65-CWE78_OS_Command_Injection__char_listen_socket_system │ └── 1.json ├── CWE78_66-CWE78_OS_Command_Injection__char_connect_socket_execl │ └── 1.json ├── CWE78_66-CWE78_OS_Command_Injection__char_connect_socket_execlp │ └── 1.json ├── CWE78_66-CWE78_OS_Command_Injection__char_connect_socket_popen │ └── 1.json ├── CWE78_66-CWE78_OS_Command_Injection__char_connect_socket_system │ └── 1.json ├── CWE78_66-CWE78_OS_Command_Injection__char_console_execl │ └── 1.json ├── CWE78_66-CWE78_OS_Command_Injection__char_console_execlp │ └── 1.json ├── CWE78_66-CWE78_OS_Command_Injection__char_console_popen │ └── 1.json ├── CWE78_66-CWE78_OS_Command_Injection__char_console_system │ └── 1.json ├── CWE78_66-CWE78_OS_Command_Injection__char_environment_execl │ └── 1.json ├── CWE78_66-CWE78_OS_Command_Injection__char_environment_execlp │ └── 1.json ├── CWE78_66-CWE78_OS_Command_Injection__char_environment_popen │ └── 1.json ├── CWE78_66-CWE78_OS_Command_Injection__char_environment_system │ └── 1.json ├── CWE78_66-CWE78_OS_Command_Injection__char_file_execl │ └── 1.json ├── CWE78_66-CWE78_OS_Command_Injection__char_file_execlp │ └── 1.json ├── CWE78_66-CWE78_OS_Command_Injection__char_file_popen │ └── 1.json ├── CWE78_66-CWE78_OS_Command_Injection__char_file_system │ └── 1.json ├── CWE78_66-CWE78_OS_Command_Injection__char_listen_socket_execl │ └── 1.json ├── CWE78_66-CWE78_OS_Command_Injection__char_listen_socket_execlp │ └── 1.json ├── CWE78_66-CWE78_OS_Command_Injection__char_listen_socket_popen │ └── 1.json ├── CWE78_66-CWE78_OS_Command_Injection__char_listen_socket_system │ └── 1.json ├── amanda-3.3.1 │ └── 1.json ├── autotrace-20200219.65 │ ├── 1.json │ ├── 10.json │ ├── 11.json │ ├── 12.json │ ├── 13.json │ ├── 14.json │ ├── 15.json │ ├── 16.json │ ├── 17.json │ ├── 18.json │ ├── 2.json │ ├── 3.json │ ├── 4.json │ ├── 5.json │ ├── 6.json │ ├── 7.json │ ├── 8.json │ └── 9.json ├── buffer-overflow1 │ └── 1.json ├── command-injection1 │ └── 1.json ├── command-injection2 │ └── 1.json ├── command-injection3 │ └── 1.json ├── command-injection4 │ └── 1.json ├── firejail-0.9.62 │ └── 1.json ├── gdk-pixbuf-2.36.11 │ └── 1.json ├── gimp-2.6.7 │ ├── 1.json │ ├── 2.json │ └── 3.json ├── gocr-0.40 │ └── 1.json ├── latex2rtf-2.1.1 │ └── 1.json ├── libxcursor-1.1.14 │ └── 1.json ├── mp3rename-0.6 │ ├── 1.json │ ├── 2.json │ └── 3.json ├── optipng-0.5.3 │ └── 1.json ├── picocom-2.0a │ ├── 1.json │ └── 2.json ├── sam2p-0.49.4 │ ├── 1.json │ ├── 10.json │ ├── 11.json │ ├── 12.json │ ├── 13.json │ ├── 14.json │ ├── 15.json │ ├── 2.json │ ├── 3.json │ ├── 4.json │ ├── 5.json │ ├── 6.json │ ├── 7.json │ ├── 8.json │ └── 9.json ├── schismtracker-20190722 │ └── 1.json ├── shntool-3.0.5 │ ├── 1.json │ ├── 2.json │ ├── 3.json │ └── 4.json ├── urjtag-0.8 │ ├── 1.json │ ├── 2.json │ ├── 3.json │ ├── 4.json │ ├── 5.json │ └── 6.json └── zsh-5.4.2 │ ├── 1.json │ └── 2.json └── test ├── Makefile └── test.c /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prosyslab/tracer/HEAD/.gitignore -------------------------------------------------------------------------------- /.gitmodules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prosyslab/tracer/HEAD/.gitmodules -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prosyslab/tracer/HEAD/README.md -------------------------------------------------------------------------------- /bin/run-infer-debian.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prosyslab/tracer/HEAD/bin/run-infer-debian.sh -------------------------------------------------------------------------------- /bin/run-infer.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prosyslab/tracer/HEAD/bin/run-infer.sh -------------------------------------------------------------------------------- /bin/tracer: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prosyslab/tracer/HEAD/bin/tracer -------------------------------------------------------------------------------- /rank/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prosyslab/tracer/HEAD/rank/Makefile -------------------------------------------------------------------------------- /rank/bin/result.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prosyslab/tracer/HEAD/rank/bin/result.py -------------------------------------------------------------------------------- /rank/bin/visualizer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prosyslab/tracer/HEAD/rank/bin/visualizer.py -------------------------------------------------------------------------------- /rank/dune: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prosyslab/tracer/HEAD/rank/dune -------------------------------------------------------------------------------- /rank/dune-project: -------------------------------------------------------------------------------- 1 | (lang dune 2.7) 2 | -------------------------------------------------------------------------------- /rank/src/dune: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prosyslab/tracer/HEAD/rank/src/dune -------------------------------------------------------------------------------- /rank/src/feature.ml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prosyslab/tracer/HEAD/rank/src/feature.ml -------------------------------------------------------------------------------- /rank/src/infer.ml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prosyslab/tracer/HEAD/rank/src/infer.ml -------------------------------------------------------------------------------- /rank/src/location.ml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prosyslab/tracer/HEAD/rank/src/location.ml -------------------------------------------------------------------------------- /rank/src/main.ml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prosyslab/tracer/HEAD/rank/src/main.ml -------------------------------------------------------------------------------- /rank/src/options.ml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prosyslab/tracer/HEAD/rank/src/options.ml -------------------------------------------------------------------------------- /rank/src/rank.ml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prosyslab/tracer/HEAD/rank/src/rank.ml -------------------------------------------------------------------------------- /rank/src/viz.ml: -------------------------------------------------------------------------------- 1 | module T = Trace 2 | -------------------------------------------------------------------------------- /signature-db/CWE190_01-CWE190_Integer_Overflow__int_fgets_add/1.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prosyslab/tracer/HEAD/signature-db/CWE190_01-CWE190_Integer_Overflow__int_fgets_add/1.json -------------------------------------------------------------------------------- /signature-db/CWE190_02-CWE190_Integer_Overflow__int_fgets_add/1.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prosyslab/tracer/HEAD/signature-db/CWE190_02-CWE190_Integer_Overflow__int_fgets_add/1.json -------------------------------------------------------------------------------- /signature-db/CWE190_03-CWE190_Integer_Overflow__int_fgets_add/1.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prosyslab/tracer/HEAD/signature-db/CWE190_03-CWE190_Integer_Overflow__int_fgets_add/1.json -------------------------------------------------------------------------------- /signature-db/CWE190_04-CWE190_Integer_Overflow__int_fgets_add/1.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prosyslab/tracer/HEAD/signature-db/CWE190_04-CWE190_Integer_Overflow__int_fgets_add/1.json -------------------------------------------------------------------------------- /signature-db/CWE190_05-CWE190_Integer_Overflow__int_fgets_add/1.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prosyslab/tracer/HEAD/signature-db/CWE190_05-CWE190_Integer_Overflow__int_fgets_add/1.json -------------------------------------------------------------------------------- /signature-db/CWE190_06-CWE190_Integer_Overflow__int_fgets_add/1.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prosyslab/tracer/HEAD/signature-db/CWE190_06-CWE190_Integer_Overflow__int_fgets_add/1.json -------------------------------------------------------------------------------- /signature-db/CWE190_07-CWE190_Integer_Overflow__int_fgets_add/1.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prosyslab/tracer/HEAD/signature-db/CWE190_07-CWE190_Integer_Overflow__int_fgets_add/1.json -------------------------------------------------------------------------------- /signature-db/CWE190_08-CWE190_Integer_Overflow__int_fgets_add/1.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prosyslab/tracer/HEAD/signature-db/CWE190_08-CWE190_Integer_Overflow__int_fgets_add/1.json -------------------------------------------------------------------------------- /signature-db/CWE190_09-CWE190_Integer_Overflow__int_fgets_add/1.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prosyslab/tracer/HEAD/signature-db/CWE190_09-CWE190_Integer_Overflow__int_fgets_add/1.json -------------------------------------------------------------------------------- /signature-db/CWE190_10-CWE190_Integer_Overflow__int_fgets_add/1.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prosyslab/tracer/HEAD/signature-db/CWE190_10-CWE190_Integer_Overflow__int_fgets_add/1.json -------------------------------------------------------------------------------- /signature-db/CWE190_11-CWE190_Integer_Overflow__int_fgets_add/1.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prosyslab/tracer/HEAD/signature-db/CWE190_11-CWE190_Integer_Overflow__int_fgets_add/1.json -------------------------------------------------------------------------------- /signature-db/CWE190_12-CWE190_Integer_Overflow__int_fgets_add/1.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prosyslab/tracer/HEAD/signature-db/CWE190_12-CWE190_Integer_Overflow__int_fgets_add/1.json -------------------------------------------------------------------------------- /signature-db/CWE190_12-CWE190_Integer_Overflow__int_fgets_add/2.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prosyslab/tracer/HEAD/signature-db/CWE190_12-CWE190_Integer_Overflow__int_fgets_add/2.json -------------------------------------------------------------------------------- /signature-db/CWE190_13-CWE190_Integer_Overflow__int_fgets_add/1.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prosyslab/tracer/HEAD/signature-db/CWE190_13-CWE190_Integer_Overflow__int_fgets_add/1.json -------------------------------------------------------------------------------- /signature-db/CWE190_14-CWE190_Integer_Overflow__int_fgets_add/1.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prosyslab/tracer/HEAD/signature-db/CWE190_14-CWE190_Integer_Overflow__int_fgets_add/1.json -------------------------------------------------------------------------------- /signature-db/CWE190_15-CWE190_Integer_Overflow__int_fgets_add/1.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prosyslab/tracer/HEAD/signature-db/CWE190_15-CWE190_Integer_Overflow__int_fgets_add/1.json -------------------------------------------------------------------------------- /signature-db/CWE190_16-CWE190_Integer_Overflow__int_fgets_add/1.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prosyslab/tracer/HEAD/signature-db/CWE190_16-CWE190_Integer_Overflow__int_fgets_add/1.json -------------------------------------------------------------------------------- /signature-db/CWE190_17-CWE190_Integer_Overflow__int_fgets_add/1.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prosyslab/tracer/HEAD/signature-db/CWE190_17-CWE190_Integer_Overflow__int_fgets_add/1.json -------------------------------------------------------------------------------- /signature-db/CWE190_18-CWE190_Integer_Overflow__int_fgets_add/1.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prosyslab/tracer/HEAD/signature-db/CWE190_18-CWE190_Integer_Overflow__int_fgets_add/1.json -------------------------------------------------------------------------------- /signature-db/CWE190_21-CWE190_Integer_Overflow__int_fgets_add/1.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prosyslab/tracer/HEAD/signature-db/CWE190_21-CWE190_Integer_Overflow__int_fgets_add/1.json -------------------------------------------------------------------------------- /signature-db/CWE190_22-CWE190_Integer_Overflow__int_fgets_add/1.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prosyslab/tracer/HEAD/signature-db/CWE190_22-CWE190_Integer_Overflow__int_fgets_add/1.json -------------------------------------------------------------------------------- /signature-db/CWE190_31-CWE190_Integer_Overflow__int_fgets_add/1.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prosyslab/tracer/HEAD/signature-db/CWE190_31-CWE190_Integer_Overflow__int_fgets_add/1.json -------------------------------------------------------------------------------- /signature-db/CWE190_32-CWE190_Integer_Overflow__int_fgets_add/1.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prosyslab/tracer/HEAD/signature-db/CWE190_32-CWE190_Integer_Overflow__int_fgets_add/1.json -------------------------------------------------------------------------------- /signature-db/CWE190_33-CWE190_Integer_Overflow__int_fgets_add/1.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prosyslab/tracer/HEAD/signature-db/CWE190_33-CWE190_Integer_Overflow__int_fgets_add/1.json -------------------------------------------------------------------------------- /signature-db/CWE190_41-CWE190_Integer_Overflow__int_fgets_add/1.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prosyslab/tracer/HEAD/signature-db/CWE190_41-CWE190_Integer_Overflow__int_fgets_add/1.json -------------------------------------------------------------------------------- /signature-db/CWE190_42-CWE190_Integer_Overflow__int_fgets_add/1.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prosyslab/tracer/HEAD/signature-db/CWE190_42-CWE190_Integer_Overflow__int_fgets_add/1.json -------------------------------------------------------------------------------- /signature-db/CWE190_43-CWE190_Integer_Overflow__int_fgets_add/1.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prosyslab/tracer/HEAD/signature-db/CWE190_43-CWE190_Integer_Overflow__int_fgets_add/1.json -------------------------------------------------------------------------------- /signature-db/CWE190_44-CWE190_Integer_Overflow__int_fgets_add/1.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prosyslab/tracer/HEAD/signature-db/CWE190_44-CWE190_Integer_Overflow__int_fgets_add/1.json -------------------------------------------------------------------------------- /signature-db/CWE190_51-CWE190_Integer_Overflow__int_fgets_add/1.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prosyslab/tracer/HEAD/signature-db/CWE190_51-CWE190_Integer_Overflow__int_fgets_add/1.json -------------------------------------------------------------------------------- /signature-db/CWE190_52-CWE190_Integer_Overflow__int_fgets_add/1.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prosyslab/tracer/HEAD/signature-db/CWE190_52-CWE190_Integer_Overflow__int_fgets_add/1.json -------------------------------------------------------------------------------- /signature-db/CWE190_53-CWE190_Integer_Overflow__int_fgets_add/1.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prosyslab/tracer/HEAD/signature-db/CWE190_53-CWE190_Integer_Overflow__int_fgets_add/1.json -------------------------------------------------------------------------------- /signature-db/CWE190_54-CWE190_Integer_Overflow__int_fgets_add/1.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prosyslab/tracer/HEAD/signature-db/CWE190_54-CWE190_Integer_Overflow__int_fgets_add/1.json -------------------------------------------------------------------------------- /signature-db/CWE190_61-CWE190_Integer_Overflow__int_fgets_add/1.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prosyslab/tracer/HEAD/signature-db/CWE190_61-CWE190_Integer_Overflow__int_fgets_add/1.json -------------------------------------------------------------------------------- /signature-db/CWE190_62-CWE190_Integer_Overflow__int_fgets_add/1.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prosyslab/tracer/HEAD/signature-db/CWE190_62-CWE190_Integer_Overflow__int_fgets_add/1.json -------------------------------------------------------------------------------- /signature-db/CWE190_63-CWE190_Integer_Overflow__int_fgets_add/1.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prosyslab/tracer/HEAD/signature-db/CWE190_63-CWE190_Integer_Overflow__int_fgets_add/1.json -------------------------------------------------------------------------------- /signature-db/CWE190_64-CWE190_Integer_Overflow__int_fgets_add/1.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prosyslab/tracer/HEAD/signature-db/CWE190_64-CWE190_Integer_Overflow__int_fgets_add/1.json -------------------------------------------------------------------------------- /signature-db/CWE190_65-CWE190_Integer_Overflow__int_fgets_add/1.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prosyslab/tracer/HEAD/signature-db/CWE190_65-CWE190_Integer_Overflow__int_fgets_add/1.json -------------------------------------------------------------------------------- /signature-db/CWE190_66-CWE190_Integer_Overflow__int_fgets_add/1.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prosyslab/tracer/HEAD/signature-db/CWE190_66-CWE190_Integer_Overflow__int_fgets_add/1.json -------------------------------------------------------------------------------- /signature-db/CWE190_83-CWE190_Integer_Overflow__int_fgets_add/1.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prosyslab/tracer/HEAD/signature-db/CWE190_83-CWE190_Integer_Overflow__int_fgets_add/1.json -------------------------------------------------------------------------------- /signature-db/CWE415_01-CWE415_Double_Free__malloc_free_char/1.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prosyslab/tracer/HEAD/signature-db/CWE415_01-CWE415_Double_Free__malloc_free_char/1.json -------------------------------------------------------------------------------- /signature-db/CWE415_01-CWE415_Double_Free__malloc_free_char/2.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prosyslab/tracer/HEAD/signature-db/CWE415_01-CWE415_Double_Free__malloc_free_char/2.json -------------------------------------------------------------------------------- /signature-db/CWE415_01-CWE415_Double_Free__malloc_free_int/1.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prosyslab/tracer/HEAD/signature-db/CWE415_01-CWE415_Double_Free__malloc_free_int/1.json -------------------------------------------------------------------------------- /signature-db/CWE415_01-CWE415_Double_Free__malloc_free_int/2.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prosyslab/tracer/HEAD/signature-db/CWE415_01-CWE415_Double_Free__malloc_free_int/2.json -------------------------------------------------------------------------------- /signature-db/CWE415_01-CWE415_Double_Free__malloc_free_long/1.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prosyslab/tracer/HEAD/signature-db/CWE415_01-CWE415_Double_Free__malloc_free_long/1.json -------------------------------------------------------------------------------- /signature-db/CWE415_01-CWE415_Double_Free__malloc_free_long/2.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prosyslab/tracer/HEAD/signature-db/CWE415_01-CWE415_Double_Free__malloc_free_long/2.json -------------------------------------------------------------------------------- /signature-db/CWE415_01-CWE415_Double_Free__malloc_free_struct/1.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prosyslab/tracer/HEAD/signature-db/CWE415_01-CWE415_Double_Free__malloc_free_struct/1.json -------------------------------------------------------------------------------- /signature-db/CWE415_01-CWE415_Double_Free__malloc_free_struct/2.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prosyslab/tracer/HEAD/signature-db/CWE415_01-CWE415_Double_Free__malloc_free_struct/2.json -------------------------------------------------------------------------------- /signature-db/CWE415_01-CWE415_Double_Free__new_delete_char/1.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prosyslab/tracer/HEAD/signature-db/CWE415_01-CWE415_Double_Free__new_delete_char/1.json -------------------------------------------------------------------------------- /signature-db/CWE415_01-CWE415_Double_Free__new_delete_char/2.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prosyslab/tracer/HEAD/signature-db/CWE415_01-CWE415_Double_Free__new_delete_char/2.json -------------------------------------------------------------------------------- /signature-db/CWE415_01-CWE415_Double_Free__new_delete_class/1.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prosyslab/tracer/HEAD/signature-db/CWE415_01-CWE415_Double_Free__new_delete_class/1.json -------------------------------------------------------------------------------- /signature-db/CWE415_01-CWE415_Double_Free__new_delete_class/2.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prosyslab/tracer/HEAD/signature-db/CWE415_01-CWE415_Double_Free__new_delete_class/2.json -------------------------------------------------------------------------------- /signature-db/CWE415_01-CWE415_Double_Free__new_delete_int/1.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prosyslab/tracer/HEAD/signature-db/CWE415_01-CWE415_Double_Free__new_delete_int/1.json -------------------------------------------------------------------------------- /signature-db/CWE415_01-CWE415_Double_Free__new_delete_int/2.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prosyslab/tracer/HEAD/signature-db/CWE415_01-CWE415_Double_Free__new_delete_int/2.json -------------------------------------------------------------------------------- /signature-db/CWE415_01-CWE415_Double_Free__new_delete_int64_t/1.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prosyslab/tracer/HEAD/signature-db/CWE415_01-CWE415_Double_Free__new_delete_int64_t/1.json -------------------------------------------------------------------------------- /signature-db/CWE415_01-CWE415_Double_Free__new_delete_int64_t/2.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prosyslab/tracer/HEAD/signature-db/CWE415_01-CWE415_Double_Free__new_delete_int64_t/2.json -------------------------------------------------------------------------------- /signature-db/CWE415_01-CWE415_Double_Free__new_delete_long/1.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prosyslab/tracer/HEAD/signature-db/CWE415_01-CWE415_Double_Free__new_delete_long/1.json -------------------------------------------------------------------------------- /signature-db/CWE415_01-CWE415_Double_Free__new_delete_long/2.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prosyslab/tracer/HEAD/signature-db/CWE415_01-CWE415_Double_Free__new_delete_long/2.json -------------------------------------------------------------------------------- /signature-db/CWE415_01-CWE415_Double_Free__new_delete_struct/1.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prosyslab/tracer/HEAD/signature-db/CWE415_01-CWE415_Double_Free__new_delete_struct/1.json -------------------------------------------------------------------------------- /signature-db/CWE415_01-CWE415_Double_Free__new_delete_struct/2.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prosyslab/tracer/HEAD/signature-db/CWE415_01-CWE415_Double_Free__new_delete_struct/2.json -------------------------------------------------------------------------------- /signature-db/CWE415_02-CWE415_Double_Free__malloc_free_char/1.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prosyslab/tracer/HEAD/signature-db/CWE415_02-CWE415_Double_Free__malloc_free_char/1.json -------------------------------------------------------------------------------- /signature-db/CWE415_02-CWE415_Double_Free__malloc_free_char/2.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prosyslab/tracer/HEAD/signature-db/CWE415_02-CWE415_Double_Free__malloc_free_char/2.json -------------------------------------------------------------------------------- /signature-db/CWE415_02-CWE415_Double_Free__malloc_free_int/1.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prosyslab/tracer/HEAD/signature-db/CWE415_02-CWE415_Double_Free__malloc_free_int/1.json -------------------------------------------------------------------------------- /signature-db/CWE415_02-CWE415_Double_Free__malloc_free_int/2.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prosyslab/tracer/HEAD/signature-db/CWE415_02-CWE415_Double_Free__malloc_free_int/2.json -------------------------------------------------------------------------------- /signature-db/CWE415_02-CWE415_Double_Free__malloc_free_long/1.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prosyslab/tracer/HEAD/signature-db/CWE415_02-CWE415_Double_Free__malloc_free_long/1.json -------------------------------------------------------------------------------- /signature-db/CWE415_02-CWE415_Double_Free__malloc_free_long/2.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prosyslab/tracer/HEAD/signature-db/CWE415_02-CWE415_Double_Free__malloc_free_long/2.json -------------------------------------------------------------------------------- /signature-db/CWE415_02-CWE415_Double_Free__malloc_free_struct/1.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prosyslab/tracer/HEAD/signature-db/CWE415_02-CWE415_Double_Free__malloc_free_struct/1.json -------------------------------------------------------------------------------- /signature-db/CWE415_02-CWE415_Double_Free__malloc_free_struct/2.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prosyslab/tracer/HEAD/signature-db/CWE415_02-CWE415_Double_Free__malloc_free_struct/2.json -------------------------------------------------------------------------------- /signature-db/CWE415_02-CWE415_Double_Free__new_delete_char/1.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prosyslab/tracer/HEAD/signature-db/CWE415_02-CWE415_Double_Free__new_delete_char/1.json -------------------------------------------------------------------------------- /signature-db/CWE415_02-CWE415_Double_Free__new_delete_char/2.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prosyslab/tracer/HEAD/signature-db/CWE415_02-CWE415_Double_Free__new_delete_char/2.json -------------------------------------------------------------------------------- /signature-db/CWE415_02-CWE415_Double_Free__new_delete_class/1.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prosyslab/tracer/HEAD/signature-db/CWE415_02-CWE415_Double_Free__new_delete_class/1.json -------------------------------------------------------------------------------- /signature-db/CWE415_02-CWE415_Double_Free__new_delete_class/2.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prosyslab/tracer/HEAD/signature-db/CWE415_02-CWE415_Double_Free__new_delete_class/2.json -------------------------------------------------------------------------------- /signature-db/CWE415_02-CWE415_Double_Free__new_delete_int/1.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prosyslab/tracer/HEAD/signature-db/CWE415_02-CWE415_Double_Free__new_delete_int/1.json -------------------------------------------------------------------------------- /signature-db/CWE415_02-CWE415_Double_Free__new_delete_int/2.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prosyslab/tracer/HEAD/signature-db/CWE415_02-CWE415_Double_Free__new_delete_int/2.json -------------------------------------------------------------------------------- /signature-db/CWE415_02-CWE415_Double_Free__new_delete_int64_t/1.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prosyslab/tracer/HEAD/signature-db/CWE415_02-CWE415_Double_Free__new_delete_int64_t/1.json -------------------------------------------------------------------------------- /signature-db/CWE415_02-CWE415_Double_Free__new_delete_int64_t/2.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prosyslab/tracer/HEAD/signature-db/CWE415_02-CWE415_Double_Free__new_delete_int64_t/2.json -------------------------------------------------------------------------------- /signature-db/CWE415_02-CWE415_Double_Free__new_delete_long/1.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prosyslab/tracer/HEAD/signature-db/CWE415_02-CWE415_Double_Free__new_delete_long/1.json -------------------------------------------------------------------------------- /signature-db/CWE415_02-CWE415_Double_Free__new_delete_long/2.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prosyslab/tracer/HEAD/signature-db/CWE415_02-CWE415_Double_Free__new_delete_long/2.json -------------------------------------------------------------------------------- /signature-db/CWE415_02-CWE415_Double_Free__new_delete_struct/1.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prosyslab/tracer/HEAD/signature-db/CWE415_02-CWE415_Double_Free__new_delete_struct/1.json -------------------------------------------------------------------------------- /signature-db/CWE415_02-CWE415_Double_Free__new_delete_struct/2.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prosyslab/tracer/HEAD/signature-db/CWE415_02-CWE415_Double_Free__new_delete_struct/2.json -------------------------------------------------------------------------------- /signature-db/CWE415_03-CWE415_Double_Free__malloc_free_char/1.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prosyslab/tracer/HEAD/signature-db/CWE415_03-CWE415_Double_Free__malloc_free_char/1.json -------------------------------------------------------------------------------- /signature-db/CWE415_03-CWE415_Double_Free__malloc_free_char/2.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prosyslab/tracer/HEAD/signature-db/CWE415_03-CWE415_Double_Free__malloc_free_char/2.json -------------------------------------------------------------------------------- /signature-db/CWE415_03-CWE415_Double_Free__malloc_free_int/1.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prosyslab/tracer/HEAD/signature-db/CWE415_03-CWE415_Double_Free__malloc_free_int/1.json -------------------------------------------------------------------------------- /signature-db/CWE415_03-CWE415_Double_Free__malloc_free_int/2.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prosyslab/tracer/HEAD/signature-db/CWE415_03-CWE415_Double_Free__malloc_free_int/2.json -------------------------------------------------------------------------------- /signature-db/CWE415_03-CWE415_Double_Free__malloc_free_long/1.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prosyslab/tracer/HEAD/signature-db/CWE415_03-CWE415_Double_Free__malloc_free_long/1.json -------------------------------------------------------------------------------- /signature-db/CWE415_03-CWE415_Double_Free__malloc_free_long/2.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prosyslab/tracer/HEAD/signature-db/CWE415_03-CWE415_Double_Free__malloc_free_long/2.json -------------------------------------------------------------------------------- /signature-db/CWE415_03-CWE415_Double_Free__malloc_free_struct/1.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prosyslab/tracer/HEAD/signature-db/CWE415_03-CWE415_Double_Free__malloc_free_struct/1.json -------------------------------------------------------------------------------- /signature-db/CWE415_03-CWE415_Double_Free__malloc_free_struct/2.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prosyslab/tracer/HEAD/signature-db/CWE415_03-CWE415_Double_Free__malloc_free_struct/2.json -------------------------------------------------------------------------------- /signature-db/CWE415_03-CWE415_Double_Free__new_delete_char/1.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prosyslab/tracer/HEAD/signature-db/CWE415_03-CWE415_Double_Free__new_delete_char/1.json -------------------------------------------------------------------------------- /signature-db/CWE415_03-CWE415_Double_Free__new_delete_char/2.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prosyslab/tracer/HEAD/signature-db/CWE415_03-CWE415_Double_Free__new_delete_char/2.json -------------------------------------------------------------------------------- /signature-db/CWE415_03-CWE415_Double_Free__new_delete_class/1.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prosyslab/tracer/HEAD/signature-db/CWE415_03-CWE415_Double_Free__new_delete_class/1.json -------------------------------------------------------------------------------- /signature-db/CWE415_03-CWE415_Double_Free__new_delete_class/2.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prosyslab/tracer/HEAD/signature-db/CWE415_03-CWE415_Double_Free__new_delete_class/2.json -------------------------------------------------------------------------------- /signature-db/CWE415_03-CWE415_Double_Free__new_delete_int/1.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prosyslab/tracer/HEAD/signature-db/CWE415_03-CWE415_Double_Free__new_delete_int/1.json -------------------------------------------------------------------------------- /signature-db/CWE415_03-CWE415_Double_Free__new_delete_int/2.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prosyslab/tracer/HEAD/signature-db/CWE415_03-CWE415_Double_Free__new_delete_int/2.json -------------------------------------------------------------------------------- /signature-db/CWE415_03-CWE415_Double_Free__new_delete_int64_t/1.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prosyslab/tracer/HEAD/signature-db/CWE415_03-CWE415_Double_Free__new_delete_int64_t/1.json -------------------------------------------------------------------------------- /signature-db/CWE415_03-CWE415_Double_Free__new_delete_int64_t/2.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prosyslab/tracer/HEAD/signature-db/CWE415_03-CWE415_Double_Free__new_delete_int64_t/2.json -------------------------------------------------------------------------------- /signature-db/CWE415_03-CWE415_Double_Free__new_delete_long/1.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prosyslab/tracer/HEAD/signature-db/CWE415_03-CWE415_Double_Free__new_delete_long/1.json -------------------------------------------------------------------------------- /signature-db/CWE415_03-CWE415_Double_Free__new_delete_long/2.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prosyslab/tracer/HEAD/signature-db/CWE415_03-CWE415_Double_Free__new_delete_long/2.json -------------------------------------------------------------------------------- /signature-db/CWE415_03-CWE415_Double_Free__new_delete_struct/1.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prosyslab/tracer/HEAD/signature-db/CWE415_03-CWE415_Double_Free__new_delete_struct/1.json -------------------------------------------------------------------------------- /signature-db/CWE415_03-CWE415_Double_Free__new_delete_struct/2.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prosyslab/tracer/HEAD/signature-db/CWE415_03-CWE415_Double_Free__new_delete_struct/2.json -------------------------------------------------------------------------------- /signature-db/CWE415_04-CWE415_Double_Free__malloc_free_char/1.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prosyslab/tracer/HEAD/signature-db/CWE415_04-CWE415_Double_Free__malloc_free_char/1.json -------------------------------------------------------------------------------- /signature-db/CWE415_04-CWE415_Double_Free__malloc_free_char/2.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prosyslab/tracer/HEAD/signature-db/CWE415_04-CWE415_Double_Free__malloc_free_char/2.json -------------------------------------------------------------------------------- /signature-db/CWE415_04-CWE415_Double_Free__malloc_free_int/1.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prosyslab/tracer/HEAD/signature-db/CWE415_04-CWE415_Double_Free__malloc_free_int/1.json -------------------------------------------------------------------------------- /signature-db/CWE415_04-CWE415_Double_Free__malloc_free_int/2.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prosyslab/tracer/HEAD/signature-db/CWE415_04-CWE415_Double_Free__malloc_free_int/2.json -------------------------------------------------------------------------------- /signature-db/CWE415_04-CWE415_Double_Free__malloc_free_long/1.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prosyslab/tracer/HEAD/signature-db/CWE415_04-CWE415_Double_Free__malloc_free_long/1.json -------------------------------------------------------------------------------- /signature-db/CWE415_04-CWE415_Double_Free__malloc_free_long/2.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prosyslab/tracer/HEAD/signature-db/CWE415_04-CWE415_Double_Free__malloc_free_long/2.json -------------------------------------------------------------------------------- /signature-db/CWE415_04-CWE415_Double_Free__malloc_free_struct/1.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prosyslab/tracer/HEAD/signature-db/CWE415_04-CWE415_Double_Free__malloc_free_struct/1.json -------------------------------------------------------------------------------- /signature-db/CWE415_04-CWE415_Double_Free__malloc_free_struct/2.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prosyslab/tracer/HEAD/signature-db/CWE415_04-CWE415_Double_Free__malloc_free_struct/2.json -------------------------------------------------------------------------------- /signature-db/CWE415_04-CWE415_Double_Free__new_delete_char/1.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prosyslab/tracer/HEAD/signature-db/CWE415_04-CWE415_Double_Free__new_delete_char/1.json -------------------------------------------------------------------------------- /signature-db/CWE415_04-CWE415_Double_Free__new_delete_char/2.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prosyslab/tracer/HEAD/signature-db/CWE415_04-CWE415_Double_Free__new_delete_char/2.json -------------------------------------------------------------------------------- /signature-db/CWE415_04-CWE415_Double_Free__new_delete_class/1.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prosyslab/tracer/HEAD/signature-db/CWE415_04-CWE415_Double_Free__new_delete_class/1.json -------------------------------------------------------------------------------- /signature-db/CWE415_04-CWE415_Double_Free__new_delete_class/2.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prosyslab/tracer/HEAD/signature-db/CWE415_04-CWE415_Double_Free__new_delete_class/2.json -------------------------------------------------------------------------------- /signature-db/CWE415_04-CWE415_Double_Free__new_delete_int/1.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prosyslab/tracer/HEAD/signature-db/CWE415_04-CWE415_Double_Free__new_delete_int/1.json -------------------------------------------------------------------------------- /signature-db/CWE415_04-CWE415_Double_Free__new_delete_int/2.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prosyslab/tracer/HEAD/signature-db/CWE415_04-CWE415_Double_Free__new_delete_int/2.json -------------------------------------------------------------------------------- /signature-db/CWE415_04-CWE415_Double_Free__new_delete_int64_t/1.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prosyslab/tracer/HEAD/signature-db/CWE415_04-CWE415_Double_Free__new_delete_int64_t/1.json -------------------------------------------------------------------------------- /signature-db/CWE415_04-CWE415_Double_Free__new_delete_int64_t/2.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prosyslab/tracer/HEAD/signature-db/CWE415_04-CWE415_Double_Free__new_delete_int64_t/2.json -------------------------------------------------------------------------------- /signature-db/CWE415_04-CWE415_Double_Free__new_delete_long/1.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prosyslab/tracer/HEAD/signature-db/CWE415_04-CWE415_Double_Free__new_delete_long/1.json -------------------------------------------------------------------------------- /signature-db/CWE415_04-CWE415_Double_Free__new_delete_long/2.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prosyslab/tracer/HEAD/signature-db/CWE415_04-CWE415_Double_Free__new_delete_long/2.json -------------------------------------------------------------------------------- /signature-db/CWE415_04-CWE415_Double_Free__new_delete_struct/1.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prosyslab/tracer/HEAD/signature-db/CWE415_04-CWE415_Double_Free__new_delete_struct/1.json -------------------------------------------------------------------------------- /signature-db/CWE415_04-CWE415_Double_Free__new_delete_struct/2.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prosyslab/tracer/HEAD/signature-db/CWE415_04-CWE415_Double_Free__new_delete_struct/2.json -------------------------------------------------------------------------------- /signature-db/CWE415_05-CWE415_Double_Free__malloc_free_char/1.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prosyslab/tracer/HEAD/signature-db/CWE415_05-CWE415_Double_Free__malloc_free_char/1.json -------------------------------------------------------------------------------- /signature-db/CWE415_05-CWE415_Double_Free__malloc_free_char/2.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prosyslab/tracer/HEAD/signature-db/CWE415_05-CWE415_Double_Free__malloc_free_char/2.json -------------------------------------------------------------------------------- /signature-db/CWE415_05-CWE415_Double_Free__malloc_free_int/1.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prosyslab/tracer/HEAD/signature-db/CWE415_05-CWE415_Double_Free__malloc_free_int/1.json -------------------------------------------------------------------------------- /signature-db/CWE415_05-CWE415_Double_Free__malloc_free_int/2.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prosyslab/tracer/HEAD/signature-db/CWE415_05-CWE415_Double_Free__malloc_free_int/2.json -------------------------------------------------------------------------------- /signature-db/CWE415_05-CWE415_Double_Free__malloc_free_long/1.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prosyslab/tracer/HEAD/signature-db/CWE415_05-CWE415_Double_Free__malloc_free_long/1.json -------------------------------------------------------------------------------- /signature-db/CWE415_05-CWE415_Double_Free__malloc_free_long/2.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prosyslab/tracer/HEAD/signature-db/CWE415_05-CWE415_Double_Free__malloc_free_long/2.json -------------------------------------------------------------------------------- /signature-db/CWE415_05-CWE415_Double_Free__malloc_free_struct/1.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prosyslab/tracer/HEAD/signature-db/CWE415_05-CWE415_Double_Free__malloc_free_struct/1.json -------------------------------------------------------------------------------- /signature-db/CWE415_05-CWE415_Double_Free__malloc_free_struct/2.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prosyslab/tracer/HEAD/signature-db/CWE415_05-CWE415_Double_Free__malloc_free_struct/2.json -------------------------------------------------------------------------------- /signature-db/CWE415_05-CWE415_Double_Free__new_delete_char/1.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prosyslab/tracer/HEAD/signature-db/CWE415_05-CWE415_Double_Free__new_delete_char/1.json -------------------------------------------------------------------------------- /signature-db/CWE415_05-CWE415_Double_Free__new_delete_char/2.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prosyslab/tracer/HEAD/signature-db/CWE415_05-CWE415_Double_Free__new_delete_char/2.json -------------------------------------------------------------------------------- /signature-db/CWE415_05-CWE415_Double_Free__new_delete_class/1.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prosyslab/tracer/HEAD/signature-db/CWE415_05-CWE415_Double_Free__new_delete_class/1.json -------------------------------------------------------------------------------- /signature-db/CWE415_05-CWE415_Double_Free__new_delete_class/2.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prosyslab/tracer/HEAD/signature-db/CWE415_05-CWE415_Double_Free__new_delete_class/2.json -------------------------------------------------------------------------------- /signature-db/CWE415_05-CWE415_Double_Free__new_delete_int/1.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prosyslab/tracer/HEAD/signature-db/CWE415_05-CWE415_Double_Free__new_delete_int/1.json -------------------------------------------------------------------------------- /signature-db/CWE415_05-CWE415_Double_Free__new_delete_int/2.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prosyslab/tracer/HEAD/signature-db/CWE415_05-CWE415_Double_Free__new_delete_int/2.json -------------------------------------------------------------------------------- /signature-db/CWE415_05-CWE415_Double_Free__new_delete_int64_t/1.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prosyslab/tracer/HEAD/signature-db/CWE415_05-CWE415_Double_Free__new_delete_int64_t/1.json -------------------------------------------------------------------------------- /signature-db/CWE415_05-CWE415_Double_Free__new_delete_int64_t/2.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prosyslab/tracer/HEAD/signature-db/CWE415_05-CWE415_Double_Free__new_delete_int64_t/2.json -------------------------------------------------------------------------------- /signature-db/CWE415_05-CWE415_Double_Free__new_delete_long/1.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prosyslab/tracer/HEAD/signature-db/CWE415_05-CWE415_Double_Free__new_delete_long/1.json -------------------------------------------------------------------------------- /signature-db/CWE415_05-CWE415_Double_Free__new_delete_long/2.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prosyslab/tracer/HEAD/signature-db/CWE415_05-CWE415_Double_Free__new_delete_long/2.json -------------------------------------------------------------------------------- /signature-db/CWE415_05-CWE415_Double_Free__new_delete_struct/1.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prosyslab/tracer/HEAD/signature-db/CWE415_05-CWE415_Double_Free__new_delete_struct/1.json -------------------------------------------------------------------------------- /signature-db/CWE415_05-CWE415_Double_Free__new_delete_struct/2.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prosyslab/tracer/HEAD/signature-db/CWE415_05-CWE415_Double_Free__new_delete_struct/2.json -------------------------------------------------------------------------------- /signature-db/CWE415_06-CWE415_Double_Free__malloc_free_char/1.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prosyslab/tracer/HEAD/signature-db/CWE415_06-CWE415_Double_Free__malloc_free_char/1.json -------------------------------------------------------------------------------- /signature-db/CWE415_06-CWE415_Double_Free__malloc_free_char/2.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prosyslab/tracer/HEAD/signature-db/CWE415_06-CWE415_Double_Free__malloc_free_char/2.json -------------------------------------------------------------------------------- /signature-db/CWE415_06-CWE415_Double_Free__malloc_free_int/1.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prosyslab/tracer/HEAD/signature-db/CWE415_06-CWE415_Double_Free__malloc_free_int/1.json -------------------------------------------------------------------------------- /signature-db/CWE415_06-CWE415_Double_Free__malloc_free_int/2.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prosyslab/tracer/HEAD/signature-db/CWE415_06-CWE415_Double_Free__malloc_free_int/2.json -------------------------------------------------------------------------------- /signature-db/CWE415_06-CWE415_Double_Free__malloc_free_long/1.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prosyslab/tracer/HEAD/signature-db/CWE415_06-CWE415_Double_Free__malloc_free_long/1.json -------------------------------------------------------------------------------- /signature-db/CWE415_06-CWE415_Double_Free__malloc_free_long/2.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prosyslab/tracer/HEAD/signature-db/CWE415_06-CWE415_Double_Free__malloc_free_long/2.json -------------------------------------------------------------------------------- /signature-db/CWE415_06-CWE415_Double_Free__malloc_free_struct/1.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prosyslab/tracer/HEAD/signature-db/CWE415_06-CWE415_Double_Free__malloc_free_struct/1.json -------------------------------------------------------------------------------- /signature-db/CWE415_06-CWE415_Double_Free__malloc_free_struct/2.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prosyslab/tracer/HEAD/signature-db/CWE415_06-CWE415_Double_Free__malloc_free_struct/2.json -------------------------------------------------------------------------------- /signature-db/CWE415_06-CWE415_Double_Free__new_delete_char/1.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prosyslab/tracer/HEAD/signature-db/CWE415_06-CWE415_Double_Free__new_delete_char/1.json -------------------------------------------------------------------------------- /signature-db/CWE415_06-CWE415_Double_Free__new_delete_char/2.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prosyslab/tracer/HEAD/signature-db/CWE415_06-CWE415_Double_Free__new_delete_char/2.json -------------------------------------------------------------------------------- /signature-db/CWE415_06-CWE415_Double_Free__new_delete_class/1.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prosyslab/tracer/HEAD/signature-db/CWE415_06-CWE415_Double_Free__new_delete_class/1.json -------------------------------------------------------------------------------- /signature-db/CWE415_06-CWE415_Double_Free__new_delete_class/2.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prosyslab/tracer/HEAD/signature-db/CWE415_06-CWE415_Double_Free__new_delete_class/2.json -------------------------------------------------------------------------------- /signature-db/CWE415_06-CWE415_Double_Free__new_delete_int/1.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prosyslab/tracer/HEAD/signature-db/CWE415_06-CWE415_Double_Free__new_delete_int/1.json -------------------------------------------------------------------------------- /signature-db/CWE415_06-CWE415_Double_Free__new_delete_int/2.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prosyslab/tracer/HEAD/signature-db/CWE415_06-CWE415_Double_Free__new_delete_int/2.json -------------------------------------------------------------------------------- /signature-db/CWE415_06-CWE415_Double_Free__new_delete_int64_t/1.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prosyslab/tracer/HEAD/signature-db/CWE415_06-CWE415_Double_Free__new_delete_int64_t/1.json -------------------------------------------------------------------------------- /signature-db/CWE415_06-CWE415_Double_Free__new_delete_int64_t/2.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prosyslab/tracer/HEAD/signature-db/CWE415_06-CWE415_Double_Free__new_delete_int64_t/2.json -------------------------------------------------------------------------------- /signature-db/CWE415_06-CWE415_Double_Free__new_delete_long/1.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prosyslab/tracer/HEAD/signature-db/CWE415_06-CWE415_Double_Free__new_delete_long/1.json -------------------------------------------------------------------------------- /signature-db/CWE415_06-CWE415_Double_Free__new_delete_long/2.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prosyslab/tracer/HEAD/signature-db/CWE415_06-CWE415_Double_Free__new_delete_long/2.json -------------------------------------------------------------------------------- /signature-db/CWE415_06-CWE415_Double_Free__new_delete_struct/1.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prosyslab/tracer/HEAD/signature-db/CWE415_06-CWE415_Double_Free__new_delete_struct/1.json -------------------------------------------------------------------------------- /signature-db/CWE415_06-CWE415_Double_Free__new_delete_struct/2.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prosyslab/tracer/HEAD/signature-db/CWE415_06-CWE415_Double_Free__new_delete_struct/2.json -------------------------------------------------------------------------------- /signature-db/CWE415_07-CWE415_Double_Free__malloc_free_char/1.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prosyslab/tracer/HEAD/signature-db/CWE415_07-CWE415_Double_Free__malloc_free_char/1.json -------------------------------------------------------------------------------- /signature-db/CWE415_07-CWE415_Double_Free__malloc_free_char/2.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prosyslab/tracer/HEAD/signature-db/CWE415_07-CWE415_Double_Free__malloc_free_char/2.json -------------------------------------------------------------------------------- /signature-db/CWE415_07-CWE415_Double_Free__malloc_free_int/1.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prosyslab/tracer/HEAD/signature-db/CWE415_07-CWE415_Double_Free__malloc_free_int/1.json -------------------------------------------------------------------------------- /signature-db/CWE415_07-CWE415_Double_Free__malloc_free_int/2.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prosyslab/tracer/HEAD/signature-db/CWE415_07-CWE415_Double_Free__malloc_free_int/2.json -------------------------------------------------------------------------------- /signature-db/CWE415_07-CWE415_Double_Free__malloc_free_long/1.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prosyslab/tracer/HEAD/signature-db/CWE415_07-CWE415_Double_Free__malloc_free_long/1.json -------------------------------------------------------------------------------- /signature-db/CWE415_07-CWE415_Double_Free__malloc_free_long/2.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prosyslab/tracer/HEAD/signature-db/CWE415_07-CWE415_Double_Free__malloc_free_long/2.json -------------------------------------------------------------------------------- /signature-db/CWE415_07-CWE415_Double_Free__malloc_free_struct/1.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prosyslab/tracer/HEAD/signature-db/CWE415_07-CWE415_Double_Free__malloc_free_struct/1.json -------------------------------------------------------------------------------- /signature-db/CWE415_07-CWE415_Double_Free__malloc_free_struct/2.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prosyslab/tracer/HEAD/signature-db/CWE415_07-CWE415_Double_Free__malloc_free_struct/2.json -------------------------------------------------------------------------------- /signature-db/CWE415_07-CWE415_Double_Free__new_delete_char/1.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prosyslab/tracer/HEAD/signature-db/CWE415_07-CWE415_Double_Free__new_delete_char/1.json -------------------------------------------------------------------------------- /signature-db/CWE415_07-CWE415_Double_Free__new_delete_char/2.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prosyslab/tracer/HEAD/signature-db/CWE415_07-CWE415_Double_Free__new_delete_char/2.json -------------------------------------------------------------------------------- /signature-db/CWE415_07-CWE415_Double_Free__new_delete_class/1.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prosyslab/tracer/HEAD/signature-db/CWE415_07-CWE415_Double_Free__new_delete_class/1.json -------------------------------------------------------------------------------- /signature-db/CWE415_07-CWE415_Double_Free__new_delete_class/2.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prosyslab/tracer/HEAD/signature-db/CWE415_07-CWE415_Double_Free__new_delete_class/2.json -------------------------------------------------------------------------------- /signature-db/CWE415_07-CWE415_Double_Free__new_delete_int/1.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prosyslab/tracer/HEAD/signature-db/CWE415_07-CWE415_Double_Free__new_delete_int/1.json -------------------------------------------------------------------------------- /signature-db/CWE415_07-CWE415_Double_Free__new_delete_int/2.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prosyslab/tracer/HEAD/signature-db/CWE415_07-CWE415_Double_Free__new_delete_int/2.json -------------------------------------------------------------------------------- /signature-db/CWE415_07-CWE415_Double_Free__new_delete_int64_t/1.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prosyslab/tracer/HEAD/signature-db/CWE415_07-CWE415_Double_Free__new_delete_int64_t/1.json -------------------------------------------------------------------------------- /signature-db/CWE415_07-CWE415_Double_Free__new_delete_int64_t/2.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prosyslab/tracer/HEAD/signature-db/CWE415_07-CWE415_Double_Free__new_delete_int64_t/2.json -------------------------------------------------------------------------------- /signature-db/CWE415_07-CWE415_Double_Free__new_delete_long/1.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prosyslab/tracer/HEAD/signature-db/CWE415_07-CWE415_Double_Free__new_delete_long/1.json -------------------------------------------------------------------------------- /signature-db/CWE415_07-CWE415_Double_Free__new_delete_long/2.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prosyslab/tracer/HEAD/signature-db/CWE415_07-CWE415_Double_Free__new_delete_long/2.json -------------------------------------------------------------------------------- /signature-db/CWE415_07-CWE415_Double_Free__new_delete_struct/1.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prosyslab/tracer/HEAD/signature-db/CWE415_07-CWE415_Double_Free__new_delete_struct/1.json -------------------------------------------------------------------------------- /signature-db/CWE415_07-CWE415_Double_Free__new_delete_struct/2.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prosyslab/tracer/HEAD/signature-db/CWE415_07-CWE415_Double_Free__new_delete_struct/2.json -------------------------------------------------------------------------------- /signature-db/CWE415_08-CWE415_Double_Free__malloc_free_char/1.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prosyslab/tracer/HEAD/signature-db/CWE415_08-CWE415_Double_Free__malloc_free_char/1.json -------------------------------------------------------------------------------- /signature-db/CWE415_08-CWE415_Double_Free__malloc_free_char/2.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prosyslab/tracer/HEAD/signature-db/CWE415_08-CWE415_Double_Free__malloc_free_char/2.json -------------------------------------------------------------------------------- /signature-db/CWE415_08-CWE415_Double_Free__malloc_free_int/1.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prosyslab/tracer/HEAD/signature-db/CWE415_08-CWE415_Double_Free__malloc_free_int/1.json -------------------------------------------------------------------------------- /signature-db/CWE415_08-CWE415_Double_Free__malloc_free_int/2.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prosyslab/tracer/HEAD/signature-db/CWE415_08-CWE415_Double_Free__malloc_free_int/2.json -------------------------------------------------------------------------------- /signature-db/CWE415_08-CWE415_Double_Free__malloc_free_long/1.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prosyslab/tracer/HEAD/signature-db/CWE415_08-CWE415_Double_Free__malloc_free_long/1.json -------------------------------------------------------------------------------- /signature-db/CWE415_08-CWE415_Double_Free__malloc_free_long/2.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prosyslab/tracer/HEAD/signature-db/CWE415_08-CWE415_Double_Free__malloc_free_long/2.json -------------------------------------------------------------------------------- /signature-db/CWE415_08-CWE415_Double_Free__malloc_free_struct/1.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prosyslab/tracer/HEAD/signature-db/CWE415_08-CWE415_Double_Free__malloc_free_struct/1.json -------------------------------------------------------------------------------- /signature-db/CWE415_08-CWE415_Double_Free__malloc_free_struct/2.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prosyslab/tracer/HEAD/signature-db/CWE415_08-CWE415_Double_Free__malloc_free_struct/2.json -------------------------------------------------------------------------------- /signature-db/CWE415_08-CWE415_Double_Free__new_delete_char/1.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prosyslab/tracer/HEAD/signature-db/CWE415_08-CWE415_Double_Free__new_delete_char/1.json -------------------------------------------------------------------------------- /signature-db/CWE415_08-CWE415_Double_Free__new_delete_char/2.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prosyslab/tracer/HEAD/signature-db/CWE415_08-CWE415_Double_Free__new_delete_char/2.json -------------------------------------------------------------------------------- /signature-db/CWE415_08-CWE415_Double_Free__new_delete_class/1.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prosyslab/tracer/HEAD/signature-db/CWE415_08-CWE415_Double_Free__new_delete_class/1.json -------------------------------------------------------------------------------- /signature-db/CWE415_08-CWE415_Double_Free__new_delete_class/2.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prosyslab/tracer/HEAD/signature-db/CWE415_08-CWE415_Double_Free__new_delete_class/2.json -------------------------------------------------------------------------------- /signature-db/CWE415_08-CWE415_Double_Free__new_delete_int/1.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prosyslab/tracer/HEAD/signature-db/CWE415_08-CWE415_Double_Free__new_delete_int/1.json -------------------------------------------------------------------------------- /signature-db/CWE415_08-CWE415_Double_Free__new_delete_int/2.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prosyslab/tracer/HEAD/signature-db/CWE415_08-CWE415_Double_Free__new_delete_int/2.json -------------------------------------------------------------------------------- /signature-db/CWE415_08-CWE415_Double_Free__new_delete_int64_t/1.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prosyslab/tracer/HEAD/signature-db/CWE415_08-CWE415_Double_Free__new_delete_int64_t/1.json -------------------------------------------------------------------------------- /signature-db/CWE415_08-CWE415_Double_Free__new_delete_int64_t/2.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prosyslab/tracer/HEAD/signature-db/CWE415_08-CWE415_Double_Free__new_delete_int64_t/2.json -------------------------------------------------------------------------------- /signature-db/CWE415_08-CWE415_Double_Free__new_delete_long/1.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prosyslab/tracer/HEAD/signature-db/CWE415_08-CWE415_Double_Free__new_delete_long/1.json -------------------------------------------------------------------------------- /signature-db/CWE415_08-CWE415_Double_Free__new_delete_long/2.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prosyslab/tracer/HEAD/signature-db/CWE415_08-CWE415_Double_Free__new_delete_long/2.json -------------------------------------------------------------------------------- /signature-db/CWE415_08-CWE415_Double_Free__new_delete_struct/1.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prosyslab/tracer/HEAD/signature-db/CWE415_08-CWE415_Double_Free__new_delete_struct/1.json -------------------------------------------------------------------------------- /signature-db/CWE415_08-CWE415_Double_Free__new_delete_struct/2.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prosyslab/tracer/HEAD/signature-db/CWE415_08-CWE415_Double_Free__new_delete_struct/2.json -------------------------------------------------------------------------------- /signature-db/CWE415_09-CWE415_Double_Free__malloc_free_char/1.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prosyslab/tracer/HEAD/signature-db/CWE415_09-CWE415_Double_Free__malloc_free_char/1.json -------------------------------------------------------------------------------- /signature-db/CWE415_09-CWE415_Double_Free__malloc_free_char/2.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prosyslab/tracer/HEAD/signature-db/CWE415_09-CWE415_Double_Free__malloc_free_char/2.json -------------------------------------------------------------------------------- /signature-db/CWE415_09-CWE415_Double_Free__malloc_free_int/1.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prosyslab/tracer/HEAD/signature-db/CWE415_09-CWE415_Double_Free__malloc_free_int/1.json -------------------------------------------------------------------------------- /signature-db/CWE415_09-CWE415_Double_Free__malloc_free_int/2.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prosyslab/tracer/HEAD/signature-db/CWE415_09-CWE415_Double_Free__malloc_free_int/2.json -------------------------------------------------------------------------------- /signature-db/CWE415_09-CWE415_Double_Free__malloc_free_long/1.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prosyslab/tracer/HEAD/signature-db/CWE415_09-CWE415_Double_Free__malloc_free_long/1.json -------------------------------------------------------------------------------- /signature-db/CWE415_09-CWE415_Double_Free__malloc_free_long/2.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prosyslab/tracer/HEAD/signature-db/CWE415_09-CWE415_Double_Free__malloc_free_long/2.json -------------------------------------------------------------------------------- /signature-db/CWE415_09-CWE415_Double_Free__malloc_free_struct/1.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prosyslab/tracer/HEAD/signature-db/CWE415_09-CWE415_Double_Free__malloc_free_struct/1.json -------------------------------------------------------------------------------- /signature-db/CWE415_09-CWE415_Double_Free__malloc_free_struct/2.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prosyslab/tracer/HEAD/signature-db/CWE415_09-CWE415_Double_Free__malloc_free_struct/2.json -------------------------------------------------------------------------------- /signature-db/CWE415_09-CWE415_Double_Free__new_delete_char/1.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prosyslab/tracer/HEAD/signature-db/CWE415_09-CWE415_Double_Free__new_delete_char/1.json -------------------------------------------------------------------------------- /signature-db/CWE415_09-CWE415_Double_Free__new_delete_char/2.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prosyslab/tracer/HEAD/signature-db/CWE415_09-CWE415_Double_Free__new_delete_char/2.json -------------------------------------------------------------------------------- /signature-db/CWE415_09-CWE415_Double_Free__new_delete_class/1.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prosyslab/tracer/HEAD/signature-db/CWE415_09-CWE415_Double_Free__new_delete_class/1.json -------------------------------------------------------------------------------- /signature-db/CWE415_09-CWE415_Double_Free__new_delete_class/2.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prosyslab/tracer/HEAD/signature-db/CWE415_09-CWE415_Double_Free__new_delete_class/2.json -------------------------------------------------------------------------------- /signature-db/CWE415_09-CWE415_Double_Free__new_delete_int/1.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prosyslab/tracer/HEAD/signature-db/CWE415_09-CWE415_Double_Free__new_delete_int/1.json -------------------------------------------------------------------------------- /signature-db/CWE415_09-CWE415_Double_Free__new_delete_int/2.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prosyslab/tracer/HEAD/signature-db/CWE415_09-CWE415_Double_Free__new_delete_int/2.json -------------------------------------------------------------------------------- /signature-db/CWE415_09-CWE415_Double_Free__new_delete_int64_t/1.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prosyslab/tracer/HEAD/signature-db/CWE415_09-CWE415_Double_Free__new_delete_int64_t/1.json -------------------------------------------------------------------------------- /signature-db/CWE415_09-CWE415_Double_Free__new_delete_int64_t/2.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prosyslab/tracer/HEAD/signature-db/CWE415_09-CWE415_Double_Free__new_delete_int64_t/2.json -------------------------------------------------------------------------------- /signature-db/CWE415_09-CWE415_Double_Free__new_delete_long/1.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prosyslab/tracer/HEAD/signature-db/CWE415_09-CWE415_Double_Free__new_delete_long/1.json -------------------------------------------------------------------------------- /signature-db/CWE415_09-CWE415_Double_Free__new_delete_long/2.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prosyslab/tracer/HEAD/signature-db/CWE415_09-CWE415_Double_Free__new_delete_long/2.json -------------------------------------------------------------------------------- /signature-db/CWE415_09-CWE415_Double_Free__new_delete_struct/1.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prosyslab/tracer/HEAD/signature-db/CWE415_09-CWE415_Double_Free__new_delete_struct/1.json -------------------------------------------------------------------------------- /signature-db/CWE415_09-CWE415_Double_Free__new_delete_struct/2.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prosyslab/tracer/HEAD/signature-db/CWE415_09-CWE415_Double_Free__new_delete_struct/2.json -------------------------------------------------------------------------------- /signature-db/CWE415_10-CWE415_Double_Free__malloc_free_char/1.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prosyslab/tracer/HEAD/signature-db/CWE415_10-CWE415_Double_Free__malloc_free_char/1.json -------------------------------------------------------------------------------- /signature-db/CWE415_10-CWE415_Double_Free__malloc_free_char/2.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prosyslab/tracer/HEAD/signature-db/CWE415_10-CWE415_Double_Free__malloc_free_char/2.json -------------------------------------------------------------------------------- /signature-db/CWE415_10-CWE415_Double_Free__malloc_free_int/1.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prosyslab/tracer/HEAD/signature-db/CWE415_10-CWE415_Double_Free__malloc_free_int/1.json -------------------------------------------------------------------------------- /signature-db/CWE415_10-CWE415_Double_Free__malloc_free_int/2.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prosyslab/tracer/HEAD/signature-db/CWE415_10-CWE415_Double_Free__malloc_free_int/2.json -------------------------------------------------------------------------------- /signature-db/CWE415_10-CWE415_Double_Free__malloc_free_long/1.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prosyslab/tracer/HEAD/signature-db/CWE415_10-CWE415_Double_Free__malloc_free_long/1.json -------------------------------------------------------------------------------- /signature-db/CWE415_10-CWE415_Double_Free__malloc_free_long/2.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prosyslab/tracer/HEAD/signature-db/CWE415_10-CWE415_Double_Free__malloc_free_long/2.json -------------------------------------------------------------------------------- /signature-db/CWE415_10-CWE415_Double_Free__malloc_free_struct/1.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prosyslab/tracer/HEAD/signature-db/CWE415_10-CWE415_Double_Free__malloc_free_struct/1.json -------------------------------------------------------------------------------- /signature-db/CWE415_10-CWE415_Double_Free__malloc_free_struct/2.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prosyslab/tracer/HEAD/signature-db/CWE415_10-CWE415_Double_Free__malloc_free_struct/2.json -------------------------------------------------------------------------------- /signature-db/CWE415_10-CWE415_Double_Free__new_delete_char/1.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prosyslab/tracer/HEAD/signature-db/CWE415_10-CWE415_Double_Free__new_delete_char/1.json -------------------------------------------------------------------------------- /signature-db/CWE415_10-CWE415_Double_Free__new_delete_char/2.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prosyslab/tracer/HEAD/signature-db/CWE415_10-CWE415_Double_Free__new_delete_char/2.json -------------------------------------------------------------------------------- /signature-db/CWE415_10-CWE415_Double_Free__new_delete_class/1.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prosyslab/tracer/HEAD/signature-db/CWE415_10-CWE415_Double_Free__new_delete_class/1.json -------------------------------------------------------------------------------- /signature-db/CWE415_10-CWE415_Double_Free__new_delete_class/2.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prosyslab/tracer/HEAD/signature-db/CWE415_10-CWE415_Double_Free__new_delete_class/2.json -------------------------------------------------------------------------------- /signature-db/CWE415_10-CWE415_Double_Free__new_delete_int/1.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prosyslab/tracer/HEAD/signature-db/CWE415_10-CWE415_Double_Free__new_delete_int/1.json -------------------------------------------------------------------------------- /signature-db/CWE415_10-CWE415_Double_Free__new_delete_int/2.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prosyslab/tracer/HEAD/signature-db/CWE415_10-CWE415_Double_Free__new_delete_int/2.json -------------------------------------------------------------------------------- /signature-db/CWE415_10-CWE415_Double_Free__new_delete_int64_t/1.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prosyslab/tracer/HEAD/signature-db/CWE415_10-CWE415_Double_Free__new_delete_int64_t/1.json -------------------------------------------------------------------------------- /signature-db/CWE415_10-CWE415_Double_Free__new_delete_int64_t/2.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prosyslab/tracer/HEAD/signature-db/CWE415_10-CWE415_Double_Free__new_delete_int64_t/2.json -------------------------------------------------------------------------------- /signature-db/CWE415_10-CWE415_Double_Free__new_delete_long/1.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prosyslab/tracer/HEAD/signature-db/CWE415_10-CWE415_Double_Free__new_delete_long/1.json -------------------------------------------------------------------------------- /signature-db/CWE415_10-CWE415_Double_Free__new_delete_long/2.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prosyslab/tracer/HEAD/signature-db/CWE415_10-CWE415_Double_Free__new_delete_long/2.json -------------------------------------------------------------------------------- /signature-db/CWE415_10-CWE415_Double_Free__new_delete_struct/1.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prosyslab/tracer/HEAD/signature-db/CWE415_10-CWE415_Double_Free__new_delete_struct/1.json -------------------------------------------------------------------------------- /signature-db/CWE415_10-CWE415_Double_Free__new_delete_struct/2.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prosyslab/tracer/HEAD/signature-db/CWE415_10-CWE415_Double_Free__new_delete_struct/2.json -------------------------------------------------------------------------------- /signature-db/CWE415_11-CWE415_Double_Free__malloc_free_char/1.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prosyslab/tracer/HEAD/signature-db/CWE415_11-CWE415_Double_Free__malloc_free_char/1.json -------------------------------------------------------------------------------- /signature-db/CWE415_11-CWE415_Double_Free__malloc_free_char/2.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prosyslab/tracer/HEAD/signature-db/CWE415_11-CWE415_Double_Free__malloc_free_char/2.json -------------------------------------------------------------------------------- /signature-db/CWE415_11-CWE415_Double_Free__malloc_free_int/1.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prosyslab/tracer/HEAD/signature-db/CWE415_11-CWE415_Double_Free__malloc_free_int/1.json -------------------------------------------------------------------------------- /signature-db/CWE415_11-CWE415_Double_Free__malloc_free_int/2.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prosyslab/tracer/HEAD/signature-db/CWE415_11-CWE415_Double_Free__malloc_free_int/2.json -------------------------------------------------------------------------------- /signature-db/CWE415_11-CWE415_Double_Free__malloc_free_long/1.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prosyslab/tracer/HEAD/signature-db/CWE415_11-CWE415_Double_Free__malloc_free_long/1.json -------------------------------------------------------------------------------- /signature-db/CWE415_11-CWE415_Double_Free__malloc_free_long/2.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prosyslab/tracer/HEAD/signature-db/CWE415_11-CWE415_Double_Free__malloc_free_long/2.json -------------------------------------------------------------------------------- /signature-db/CWE415_11-CWE415_Double_Free__malloc_free_struct/1.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prosyslab/tracer/HEAD/signature-db/CWE415_11-CWE415_Double_Free__malloc_free_struct/1.json -------------------------------------------------------------------------------- /signature-db/CWE415_11-CWE415_Double_Free__malloc_free_struct/2.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prosyslab/tracer/HEAD/signature-db/CWE415_11-CWE415_Double_Free__malloc_free_struct/2.json -------------------------------------------------------------------------------- /signature-db/CWE415_11-CWE415_Double_Free__new_delete_char/1.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prosyslab/tracer/HEAD/signature-db/CWE415_11-CWE415_Double_Free__new_delete_char/1.json -------------------------------------------------------------------------------- /signature-db/CWE415_11-CWE415_Double_Free__new_delete_char/2.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prosyslab/tracer/HEAD/signature-db/CWE415_11-CWE415_Double_Free__new_delete_char/2.json -------------------------------------------------------------------------------- /signature-db/CWE415_11-CWE415_Double_Free__new_delete_class/1.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prosyslab/tracer/HEAD/signature-db/CWE415_11-CWE415_Double_Free__new_delete_class/1.json -------------------------------------------------------------------------------- /signature-db/CWE415_11-CWE415_Double_Free__new_delete_class/2.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prosyslab/tracer/HEAD/signature-db/CWE415_11-CWE415_Double_Free__new_delete_class/2.json -------------------------------------------------------------------------------- /signature-db/CWE415_11-CWE415_Double_Free__new_delete_int/1.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prosyslab/tracer/HEAD/signature-db/CWE415_11-CWE415_Double_Free__new_delete_int/1.json -------------------------------------------------------------------------------- /signature-db/CWE415_11-CWE415_Double_Free__new_delete_int/2.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prosyslab/tracer/HEAD/signature-db/CWE415_11-CWE415_Double_Free__new_delete_int/2.json -------------------------------------------------------------------------------- /signature-db/CWE415_11-CWE415_Double_Free__new_delete_int64_t/1.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prosyslab/tracer/HEAD/signature-db/CWE415_11-CWE415_Double_Free__new_delete_int64_t/1.json -------------------------------------------------------------------------------- /signature-db/CWE415_11-CWE415_Double_Free__new_delete_int64_t/2.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prosyslab/tracer/HEAD/signature-db/CWE415_11-CWE415_Double_Free__new_delete_int64_t/2.json -------------------------------------------------------------------------------- /signature-db/CWE415_11-CWE415_Double_Free__new_delete_long/1.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prosyslab/tracer/HEAD/signature-db/CWE415_11-CWE415_Double_Free__new_delete_long/1.json -------------------------------------------------------------------------------- /signature-db/CWE415_11-CWE415_Double_Free__new_delete_long/2.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prosyslab/tracer/HEAD/signature-db/CWE415_11-CWE415_Double_Free__new_delete_long/2.json -------------------------------------------------------------------------------- /signature-db/CWE415_11-CWE415_Double_Free__new_delete_struct/1.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prosyslab/tracer/HEAD/signature-db/CWE415_11-CWE415_Double_Free__new_delete_struct/1.json -------------------------------------------------------------------------------- /signature-db/CWE415_11-CWE415_Double_Free__new_delete_struct/2.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prosyslab/tracer/HEAD/signature-db/CWE415_11-CWE415_Double_Free__new_delete_struct/2.json -------------------------------------------------------------------------------- /signature-db/CWE415_12-CWE415_Double_Free__malloc_free_char/1.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prosyslab/tracer/HEAD/signature-db/CWE415_12-CWE415_Double_Free__malloc_free_char/1.json -------------------------------------------------------------------------------- /signature-db/CWE415_12-CWE415_Double_Free__malloc_free_int/1.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prosyslab/tracer/HEAD/signature-db/CWE415_12-CWE415_Double_Free__malloc_free_int/1.json -------------------------------------------------------------------------------- /signature-db/CWE415_12-CWE415_Double_Free__malloc_free_long/1.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prosyslab/tracer/HEAD/signature-db/CWE415_12-CWE415_Double_Free__malloc_free_long/1.json -------------------------------------------------------------------------------- /signature-db/CWE415_12-CWE415_Double_Free__malloc_free_struct/1.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prosyslab/tracer/HEAD/signature-db/CWE415_12-CWE415_Double_Free__malloc_free_struct/1.json -------------------------------------------------------------------------------- /signature-db/CWE415_12-CWE415_Double_Free__new_delete_char/1.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prosyslab/tracer/HEAD/signature-db/CWE415_12-CWE415_Double_Free__new_delete_char/1.json -------------------------------------------------------------------------------- /signature-db/CWE415_12-CWE415_Double_Free__new_delete_class/1.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prosyslab/tracer/HEAD/signature-db/CWE415_12-CWE415_Double_Free__new_delete_class/1.json -------------------------------------------------------------------------------- /signature-db/CWE415_12-CWE415_Double_Free__new_delete_int/1.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prosyslab/tracer/HEAD/signature-db/CWE415_12-CWE415_Double_Free__new_delete_int/1.json -------------------------------------------------------------------------------- /signature-db/CWE415_12-CWE415_Double_Free__new_delete_int64_t/1.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prosyslab/tracer/HEAD/signature-db/CWE415_12-CWE415_Double_Free__new_delete_int64_t/1.json -------------------------------------------------------------------------------- /signature-db/CWE415_12-CWE415_Double_Free__new_delete_long/1.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prosyslab/tracer/HEAD/signature-db/CWE415_12-CWE415_Double_Free__new_delete_long/1.json -------------------------------------------------------------------------------- /signature-db/CWE415_12-CWE415_Double_Free__new_delete_struct/1.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prosyslab/tracer/HEAD/signature-db/CWE415_12-CWE415_Double_Free__new_delete_struct/1.json -------------------------------------------------------------------------------- /signature-db/CWE415_13-CWE415_Double_Free__malloc_free_char/1.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prosyslab/tracer/HEAD/signature-db/CWE415_13-CWE415_Double_Free__malloc_free_char/1.json -------------------------------------------------------------------------------- /signature-db/CWE415_13-CWE415_Double_Free__malloc_free_char/2.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prosyslab/tracer/HEAD/signature-db/CWE415_13-CWE415_Double_Free__malloc_free_char/2.json -------------------------------------------------------------------------------- /signature-db/CWE415_13-CWE415_Double_Free__malloc_free_int/1.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prosyslab/tracer/HEAD/signature-db/CWE415_13-CWE415_Double_Free__malloc_free_int/1.json -------------------------------------------------------------------------------- /signature-db/CWE415_13-CWE415_Double_Free__malloc_free_int/2.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prosyslab/tracer/HEAD/signature-db/CWE415_13-CWE415_Double_Free__malloc_free_int/2.json -------------------------------------------------------------------------------- /signature-db/CWE415_13-CWE415_Double_Free__malloc_free_long/1.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prosyslab/tracer/HEAD/signature-db/CWE415_13-CWE415_Double_Free__malloc_free_long/1.json -------------------------------------------------------------------------------- /signature-db/CWE415_13-CWE415_Double_Free__malloc_free_long/2.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prosyslab/tracer/HEAD/signature-db/CWE415_13-CWE415_Double_Free__malloc_free_long/2.json -------------------------------------------------------------------------------- /signature-db/CWE415_13-CWE415_Double_Free__malloc_free_struct/1.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prosyslab/tracer/HEAD/signature-db/CWE415_13-CWE415_Double_Free__malloc_free_struct/1.json -------------------------------------------------------------------------------- /signature-db/CWE415_13-CWE415_Double_Free__malloc_free_struct/2.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prosyslab/tracer/HEAD/signature-db/CWE415_13-CWE415_Double_Free__malloc_free_struct/2.json -------------------------------------------------------------------------------- /signature-db/CWE415_13-CWE415_Double_Free__new_delete_char/1.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prosyslab/tracer/HEAD/signature-db/CWE415_13-CWE415_Double_Free__new_delete_char/1.json -------------------------------------------------------------------------------- /signature-db/CWE415_13-CWE415_Double_Free__new_delete_char/2.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prosyslab/tracer/HEAD/signature-db/CWE415_13-CWE415_Double_Free__new_delete_char/2.json -------------------------------------------------------------------------------- /signature-db/CWE415_13-CWE415_Double_Free__new_delete_class/1.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prosyslab/tracer/HEAD/signature-db/CWE415_13-CWE415_Double_Free__new_delete_class/1.json -------------------------------------------------------------------------------- /signature-db/CWE415_13-CWE415_Double_Free__new_delete_class/2.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prosyslab/tracer/HEAD/signature-db/CWE415_13-CWE415_Double_Free__new_delete_class/2.json -------------------------------------------------------------------------------- /signature-db/CWE415_13-CWE415_Double_Free__new_delete_int/1.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prosyslab/tracer/HEAD/signature-db/CWE415_13-CWE415_Double_Free__new_delete_int/1.json -------------------------------------------------------------------------------- /signature-db/CWE415_13-CWE415_Double_Free__new_delete_int/2.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prosyslab/tracer/HEAD/signature-db/CWE415_13-CWE415_Double_Free__new_delete_int/2.json -------------------------------------------------------------------------------- /signature-db/CWE415_13-CWE415_Double_Free__new_delete_int64_t/1.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prosyslab/tracer/HEAD/signature-db/CWE415_13-CWE415_Double_Free__new_delete_int64_t/1.json -------------------------------------------------------------------------------- /signature-db/CWE415_13-CWE415_Double_Free__new_delete_int64_t/2.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prosyslab/tracer/HEAD/signature-db/CWE415_13-CWE415_Double_Free__new_delete_int64_t/2.json -------------------------------------------------------------------------------- /signature-db/CWE415_13-CWE415_Double_Free__new_delete_long/1.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prosyslab/tracer/HEAD/signature-db/CWE415_13-CWE415_Double_Free__new_delete_long/1.json -------------------------------------------------------------------------------- /signature-db/CWE415_13-CWE415_Double_Free__new_delete_long/2.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prosyslab/tracer/HEAD/signature-db/CWE415_13-CWE415_Double_Free__new_delete_long/2.json -------------------------------------------------------------------------------- /signature-db/CWE415_13-CWE415_Double_Free__new_delete_struct/1.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prosyslab/tracer/HEAD/signature-db/CWE415_13-CWE415_Double_Free__new_delete_struct/1.json -------------------------------------------------------------------------------- /signature-db/CWE415_13-CWE415_Double_Free__new_delete_struct/2.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prosyslab/tracer/HEAD/signature-db/CWE415_13-CWE415_Double_Free__new_delete_struct/2.json -------------------------------------------------------------------------------- /signature-db/CWE415_14-CWE415_Double_Free__malloc_free_char/1.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prosyslab/tracer/HEAD/signature-db/CWE415_14-CWE415_Double_Free__malloc_free_char/1.json -------------------------------------------------------------------------------- /signature-db/CWE415_14-CWE415_Double_Free__malloc_free_char/2.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prosyslab/tracer/HEAD/signature-db/CWE415_14-CWE415_Double_Free__malloc_free_char/2.json -------------------------------------------------------------------------------- /signature-db/CWE415_14-CWE415_Double_Free__malloc_free_int/1.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prosyslab/tracer/HEAD/signature-db/CWE415_14-CWE415_Double_Free__malloc_free_int/1.json -------------------------------------------------------------------------------- /signature-db/CWE415_14-CWE415_Double_Free__malloc_free_int/2.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prosyslab/tracer/HEAD/signature-db/CWE415_14-CWE415_Double_Free__malloc_free_int/2.json -------------------------------------------------------------------------------- /signature-db/CWE415_14-CWE415_Double_Free__malloc_free_long/1.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prosyslab/tracer/HEAD/signature-db/CWE415_14-CWE415_Double_Free__malloc_free_long/1.json -------------------------------------------------------------------------------- /signature-db/CWE415_14-CWE415_Double_Free__malloc_free_long/2.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prosyslab/tracer/HEAD/signature-db/CWE415_14-CWE415_Double_Free__malloc_free_long/2.json -------------------------------------------------------------------------------- /signature-db/CWE415_14-CWE415_Double_Free__malloc_free_struct/1.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prosyslab/tracer/HEAD/signature-db/CWE415_14-CWE415_Double_Free__malloc_free_struct/1.json -------------------------------------------------------------------------------- /signature-db/CWE415_14-CWE415_Double_Free__malloc_free_struct/2.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prosyslab/tracer/HEAD/signature-db/CWE415_14-CWE415_Double_Free__malloc_free_struct/2.json -------------------------------------------------------------------------------- /signature-db/CWE415_14-CWE415_Double_Free__new_delete_char/1.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prosyslab/tracer/HEAD/signature-db/CWE415_14-CWE415_Double_Free__new_delete_char/1.json -------------------------------------------------------------------------------- /signature-db/CWE415_14-CWE415_Double_Free__new_delete_char/2.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prosyslab/tracer/HEAD/signature-db/CWE415_14-CWE415_Double_Free__new_delete_char/2.json -------------------------------------------------------------------------------- /signature-db/CWE415_14-CWE415_Double_Free__new_delete_class/1.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prosyslab/tracer/HEAD/signature-db/CWE415_14-CWE415_Double_Free__new_delete_class/1.json -------------------------------------------------------------------------------- /signature-db/CWE415_14-CWE415_Double_Free__new_delete_class/2.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prosyslab/tracer/HEAD/signature-db/CWE415_14-CWE415_Double_Free__new_delete_class/2.json -------------------------------------------------------------------------------- /signature-db/CWE415_14-CWE415_Double_Free__new_delete_int/1.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prosyslab/tracer/HEAD/signature-db/CWE415_14-CWE415_Double_Free__new_delete_int/1.json -------------------------------------------------------------------------------- /signature-db/CWE415_14-CWE415_Double_Free__new_delete_int/2.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prosyslab/tracer/HEAD/signature-db/CWE415_14-CWE415_Double_Free__new_delete_int/2.json -------------------------------------------------------------------------------- /signature-db/CWE415_14-CWE415_Double_Free__new_delete_int64_t/1.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prosyslab/tracer/HEAD/signature-db/CWE415_14-CWE415_Double_Free__new_delete_int64_t/1.json -------------------------------------------------------------------------------- /signature-db/CWE415_14-CWE415_Double_Free__new_delete_int64_t/2.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prosyslab/tracer/HEAD/signature-db/CWE415_14-CWE415_Double_Free__new_delete_int64_t/2.json -------------------------------------------------------------------------------- /signature-db/CWE415_14-CWE415_Double_Free__new_delete_long/1.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prosyslab/tracer/HEAD/signature-db/CWE415_14-CWE415_Double_Free__new_delete_long/1.json -------------------------------------------------------------------------------- /signature-db/CWE415_14-CWE415_Double_Free__new_delete_long/2.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prosyslab/tracer/HEAD/signature-db/CWE415_14-CWE415_Double_Free__new_delete_long/2.json -------------------------------------------------------------------------------- /signature-db/CWE415_14-CWE415_Double_Free__new_delete_struct/1.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prosyslab/tracer/HEAD/signature-db/CWE415_14-CWE415_Double_Free__new_delete_struct/1.json -------------------------------------------------------------------------------- /signature-db/CWE415_14-CWE415_Double_Free__new_delete_struct/2.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prosyslab/tracer/HEAD/signature-db/CWE415_14-CWE415_Double_Free__new_delete_struct/2.json -------------------------------------------------------------------------------- /signature-db/CWE415_15-CWE415_Double_Free__malloc_free_char/1.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prosyslab/tracer/HEAD/signature-db/CWE415_15-CWE415_Double_Free__malloc_free_char/1.json -------------------------------------------------------------------------------- /signature-db/CWE415_15-CWE415_Double_Free__malloc_free_char/2.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prosyslab/tracer/HEAD/signature-db/CWE415_15-CWE415_Double_Free__malloc_free_char/2.json -------------------------------------------------------------------------------- /signature-db/CWE415_15-CWE415_Double_Free__malloc_free_int/1.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prosyslab/tracer/HEAD/signature-db/CWE415_15-CWE415_Double_Free__malloc_free_int/1.json -------------------------------------------------------------------------------- /signature-db/CWE415_15-CWE415_Double_Free__malloc_free_int/2.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prosyslab/tracer/HEAD/signature-db/CWE415_15-CWE415_Double_Free__malloc_free_int/2.json -------------------------------------------------------------------------------- /signature-db/CWE415_15-CWE415_Double_Free__malloc_free_long/1.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prosyslab/tracer/HEAD/signature-db/CWE415_15-CWE415_Double_Free__malloc_free_long/1.json -------------------------------------------------------------------------------- /signature-db/CWE415_15-CWE415_Double_Free__malloc_free_long/2.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prosyslab/tracer/HEAD/signature-db/CWE415_15-CWE415_Double_Free__malloc_free_long/2.json -------------------------------------------------------------------------------- /signature-db/CWE415_15-CWE415_Double_Free__malloc_free_struct/1.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prosyslab/tracer/HEAD/signature-db/CWE415_15-CWE415_Double_Free__malloc_free_struct/1.json -------------------------------------------------------------------------------- /signature-db/CWE415_15-CWE415_Double_Free__malloc_free_struct/2.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prosyslab/tracer/HEAD/signature-db/CWE415_15-CWE415_Double_Free__malloc_free_struct/2.json -------------------------------------------------------------------------------- /signature-db/CWE415_15-CWE415_Double_Free__new_delete_char/1.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prosyslab/tracer/HEAD/signature-db/CWE415_15-CWE415_Double_Free__new_delete_char/1.json -------------------------------------------------------------------------------- /signature-db/CWE415_15-CWE415_Double_Free__new_delete_char/2.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prosyslab/tracer/HEAD/signature-db/CWE415_15-CWE415_Double_Free__new_delete_char/2.json -------------------------------------------------------------------------------- /signature-db/CWE415_15-CWE415_Double_Free__new_delete_class/1.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prosyslab/tracer/HEAD/signature-db/CWE415_15-CWE415_Double_Free__new_delete_class/1.json -------------------------------------------------------------------------------- /signature-db/CWE415_15-CWE415_Double_Free__new_delete_class/2.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prosyslab/tracer/HEAD/signature-db/CWE415_15-CWE415_Double_Free__new_delete_class/2.json -------------------------------------------------------------------------------- /signature-db/CWE415_15-CWE415_Double_Free__new_delete_int/1.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prosyslab/tracer/HEAD/signature-db/CWE415_15-CWE415_Double_Free__new_delete_int/1.json -------------------------------------------------------------------------------- /signature-db/CWE415_15-CWE415_Double_Free__new_delete_int/2.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prosyslab/tracer/HEAD/signature-db/CWE415_15-CWE415_Double_Free__new_delete_int/2.json -------------------------------------------------------------------------------- /signature-db/CWE415_15-CWE415_Double_Free__new_delete_int64_t/1.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prosyslab/tracer/HEAD/signature-db/CWE415_15-CWE415_Double_Free__new_delete_int64_t/1.json -------------------------------------------------------------------------------- /signature-db/CWE415_15-CWE415_Double_Free__new_delete_int64_t/2.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prosyslab/tracer/HEAD/signature-db/CWE415_15-CWE415_Double_Free__new_delete_int64_t/2.json -------------------------------------------------------------------------------- /signature-db/CWE415_15-CWE415_Double_Free__new_delete_long/1.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prosyslab/tracer/HEAD/signature-db/CWE415_15-CWE415_Double_Free__new_delete_long/1.json -------------------------------------------------------------------------------- /signature-db/CWE415_15-CWE415_Double_Free__new_delete_long/2.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prosyslab/tracer/HEAD/signature-db/CWE415_15-CWE415_Double_Free__new_delete_long/2.json -------------------------------------------------------------------------------- /signature-db/CWE415_15-CWE415_Double_Free__new_delete_struct/1.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prosyslab/tracer/HEAD/signature-db/CWE415_15-CWE415_Double_Free__new_delete_struct/1.json -------------------------------------------------------------------------------- /signature-db/CWE415_15-CWE415_Double_Free__new_delete_struct/2.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prosyslab/tracer/HEAD/signature-db/CWE415_15-CWE415_Double_Free__new_delete_struct/2.json -------------------------------------------------------------------------------- /signature-db/CWE415_16-CWE415_Double_Free__malloc_free_char/1.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prosyslab/tracer/HEAD/signature-db/CWE415_16-CWE415_Double_Free__malloc_free_char/1.json -------------------------------------------------------------------------------- /signature-db/CWE415_16-CWE415_Double_Free__malloc_free_char/2.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prosyslab/tracer/HEAD/signature-db/CWE415_16-CWE415_Double_Free__malloc_free_char/2.json -------------------------------------------------------------------------------- /signature-db/CWE415_16-CWE415_Double_Free__malloc_free_int/1.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prosyslab/tracer/HEAD/signature-db/CWE415_16-CWE415_Double_Free__malloc_free_int/1.json -------------------------------------------------------------------------------- /signature-db/CWE415_16-CWE415_Double_Free__malloc_free_int/2.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prosyslab/tracer/HEAD/signature-db/CWE415_16-CWE415_Double_Free__malloc_free_int/2.json -------------------------------------------------------------------------------- /signature-db/CWE415_16-CWE415_Double_Free__malloc_free_long/1.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prosyslab/tracer/HEAD/signature-db/CWE415_16-CWE415_Double_Free__malloc_free_long/1.json -------------------------------------------------------------------------------- /signature-db/CWE415_16-CWE415_Double_Free__malloc_free_long/2.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prosyslab/tracer/HEAD/signature-db/CWE415_16-CWE415_Double_Free__malloc_free_long/2.json -------------------------------------------------------------------------------- /signature-db/CWE415_16-CWE415_Double_Free__malloc_free_struct/1.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prosyslab/tracer/HEAD/signature-db/CWE415_16-CWE415_Double_Free__malloc_free_struct/1.json -------------------------------------------------------------------------------- /signature-db/CWE415_16-CWE415_Double_Free__malloc_free_struct/2.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prosyslab/tracer/HEAD/signature-db/CWE415_16-CWE415_Double_Free__malloc_free_struct/2.json -------------------------------------------------------------------------------- /signature-db/CWE415_16-CWE415_Double_Free__new_delete_char/1.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prosyslab/tracer/HEAD/signature-db/CWE415_16-CWE415_Double_Free__new_delete_char/1.json -------------------------------------------------------------------------------- /signature-db/CWE415_16-CWE415_Double_Free__new_delete_char/2.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prosyslab/tracer/HEAD/signature-db/CWE415_16-CWE415_Double_Free__new_delete_char/2.json -------------------------------------------------------------------------------- /signature-db/CWE415_16-CWE415_Double_Free__new_delete_class/1.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prosyslab/tracer/HEAD/signature-db/CWE415_16-CWE415_Double_Free__new_delete_class/1.json -------------------------------------------------------------------------------- /signature-db/CWE415_16-CWE415_Double_Free__new_delete_class/2.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prosyslab/tracer/HEAD/signature-db/CWE415_16-CWE415_Double_Free__new_delete_class/2.json -------------------------------------------------------------------------------- /signature-db/CWE415_16-CWE415_Double_Free__new_delete_int/1.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prosyslab/tracer/HEAD/signature-db/CWE415_16-CWE415_Double_Free__new_delete_int/1.json -------------------------------------------------------------------------------- /signature-db/CWE415_16-CWE415_Double_Free__new_delete_int/2.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prosyslab/tracer/HEAD/signature-db/CWE415_16-CWE415_Double_Free__new_delete_int/2.json -------------------------------------------------------------------------------- /signature-db/CWE415_16-CWE415_Double_Free__new_delete_int64_t/1.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prosyslab/tracer/HEAD/signature-db/CWE415_16-CWE415_Double_Free__new_delete_int64_t/1.json -------------------------------------------------------------------------------- /signature-db/CWE415_16-CWE415_Double_Free__new_delete_int64_t/2.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prosyslab/tracer/HEAD/signature-db/CWE415_16-CWE415_Double_Free__new_delete_int64_t/2.json -------------------------------------------------------------------------------- /signature-db/CWE415_16-CWE415_Double_Free__new_delete_long/1.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prosyslab/tracer/HEAD/signature-db/CWE415_16-CWE415_Double_Free__new_delete_long/1.json -------------------------------------------------------------------------------- /signature-db/CWE415_16-CWE415_Double_Free__new_delete_long/2.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prosyslab/tracer/HEAD/signature-db/CWE415_16-CWE415_Double_Free__new_delete_long/2.json -------------------------------------------------------------------------------- /signature-db/CWE415_16-CWE415_Double_Free__new_delete_struct/1.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prosyslab/tracer/HEAD/signature-db/CWE415_16-CWE415_Double_Free__new_delete_struct/1.json -------------------------------------------------------------------------------- /signature-db/CWE415_16-CWE415_Double_Free__new_delete_struct/2.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prosyslab/tracer/HEAD/signature-db/CWE415_16-CWE415_Double_Free__new_delete_struct/2.json -------------------------------------------------------------------------------- /signature-db/CWE415_17-CWE415_Double_Free__malloc_free_char/1.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prosyslab/tracer/HEAD/signature-db/CWE415_17-CWE415_Double_Free__malloc_free_char/1.json -------------------------------------------------------------------------------- /signature-db/CWE415_17-CWE415_Double_Free__malloc_free_char/2.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prosyslab/tracer/HEAD/signature-db/CWE415_17-CWE415_Double_Free__malloc_free_char/2.json -------------------------------------------------------------------------------- /signature-db/CWE415_17-CWE415_Double_Free__malloc_free_int/1.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prosyslab/tracer/HEAD/signature-db/CWE415_17-CWE415_Double_Free__malloc_free_int/1.json -------------------------------------------------------------------------------- /signature-db/CWE415_17-CWE415_Double_Free__malloc_free_int/2.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prosyslab/tracer/HEAD/signature-db/CWE415_17-CWE415_Double_Free__malloc_free_int/2.json -------------------------------------------------------------------------------- /signature-db/CWE415_17-CWE415_Double_Free__malloc_free_long/1.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prosyslab/tracer/HEAD/signature-db/CWE415_17-CWE415_Double_Free__malloc_free_long/1.json -------------------------------------------------------------------------------- /signature-db/CWE415_17-CWE415_Double_Free__malloc_free_long/2.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prosyslab/tracer/HEAD/signature-db/CWE415_17-CWE415_Double_Free__malloc_free_long/2.json -------------------------------------------------------------------------------- /signature-db/CWE415_17-CWE415_Double_Free__malloc_free_struct/1.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prosyslab/tracer/HEAD/signature-db/CWE415_17-CWE415_Double_Free__malloc_free_struct/1.json -------------------------------------------------------------------------------- /signature-db/CWE415_17-CWE415_Double_Free__malloc_free_struct/2.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prosyslab/tracer/HEAD/signature-db/CWE415_17-CWE415_Double_Free__malloc_free_struct/2.json -------------------------------------------------------------------------------- /signature-db/CWE415_17-CWE415_Double_Free__new_delete_char/1.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prosyslab/tracer/HEAD/signature-db/CWE415_17-CWE415_Double_Free__new_delete_char/1.json -------------------------------------------------------------------------------- /signature-db/CWE415_17-CWE415_Double_Free__new_delete_char/2.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prosyslab/tracer/HEAD/signature-db/CWE415_17-CWE415_Double_Free__new_delete_char/2.json -------------------------------------------------------------------------------- /signature-db/CWE415_17-CWE415_Double_Free__new_delete_class/1.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prosyslab/tracer/HEAD/signature-db/CWE415_17-CWE415_Double_Free__new_delete_class/1.json -------------------------------------------------------------------------------- /signature-db/CWE415_17-CWE415_Double_Free__new_delete_class/2.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prosyslab/tracer/HEAD/signature-db/CWE415_17-CWE415_Double_Free__new_delete_class/2.json -------------------------------------------------------------------------------- /signature-db/CWE415_17-CWE415_Double_Free__new_delete_int/1.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prosyslab/tracer/HEAD/signature-db/CWE415_17-CWE415_Double_Free__new_delete_int/1.json -------------------------------------------------------------------------------- /signature-db/CWE415_17-CWE415_Double_Free__new_delete_int/2.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prosyslab/tracer/HEAD/signature-db/CWE415_17-CWE415_Double_Free__new_delete_int/2.json -------------------------------------------------------------------------------- /signature-db/CWE415_17-CWE415_Double_Free__new_delete_int64_t/1.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prosyslab/tracer/HEAD/signature-db/CWE415_17-CWE415_Double_Free__new_delete_int64_t/1.json -------------------------------------------------------------------------------- /signature-db/CWE415_17-CWE415_Double_Free__new_delete_int64_t/2.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prosyslab/tracer/HEAD/signature-db/CWE415_17-CWE415_Double_Free__new_delete_int64_t/2.json -------------------------------------------------------------------------------- /signature-db/CWE415_17-CWE415_Double_Free__new_delete_long/1.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prosyslab/tracer/HEAD/signature-db/CWE415_17-CWE415_Double_Free__new_delete_long/1.json -------------------------------------------------------------------------------- /signature-db/CWE415_17-CWE415_Double_Free__new_delete_long/2.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prosyslab/tracer/HEAD/signature-db/CWE415_17-CWE415_Double_Free__new_delete_long/2.json -------------------------------------------------------------------------------- /signature-db/CWE415_17-CWE415_Double_Free__new_delete_struct/1.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prosyslab/tracer/HEAD/signature-db/CWE415_17-CWE415_Double_Free__new_delete_struct/1.json -------------------------------------------------------------------------------- /signature-db/CWE415_17-CWE415_Double_Free__new_delete_struct/2.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prosyslab/tracer/HEAD/signature-db/CWE415_17-CWE415_Double_Free__new_delete_struct/2.json -------------------------------------------------------------------------------- /signature-db/CWE415_18-CWE415_Double_Free__malloc_free_char/1.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prosyslab/tracer/HEAD/signature-db/CWE415_18-CWE415_Double_Free__malloc_free_char/1.json -------------------------------------------------------------------------------- /signature-db/CWE415_18-CWE415_Double_Free__malloc_free_char/2.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prosyslab/tracer/HEAD/signature-db/CWE415_18-CWE415_Double_Free__malloc_free_char/2.json -------------------------------------------------------------------------------- /signature-db/CWE415_18-CWE415_Double_Free__malloc_free_int/1.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prosyslab/tracer/HEAD/signature-db/CWE415_18-CWE415_Double_Free__malloc_free_int/1.json -------------------------------------------------------------------------------- /signature-db/CWE415_18-CWE415_Double_Free__malloc_free_int/2.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prosyslab/tracer/HEAD/signature-db/CWE415_18-CWE415_Double_Free__malloc_free_int/2.json -------------------------------------------------------------------------------- /signature-db/CWE415_18-CWE415_Double_Free__malloc_free_long/1.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prosyslab/tracer/HEAD/signature-db/CWE415_18-CWE415_Double_Free__malloc_free_long/1.json -------------------------------------------------------------------------------- /signature-db/CWE415_18-CWE415_Double_Free__malloc_free_long/2.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prosyslab/tracer/HEAD/signature-db/CWE415_18-CWE415_Double_Free__malloc_free_long/2.json -------------------------------------------------------------------------------- /signature-db/CWE415_18-CWE415_Double_Free__malloc_free_struct/1.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prosyslab/tracer/HEAD/signature-db/CWE415_18-CWE415_Double_Free__malloc_free_struct/1.json -------------------------------------------------------------------------------- /signature-db/CWE415_18-CWE415_Double_Free__malloc_free_struct/2.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prosyslab/tracer/HEAD/signature-db/CWE415_18-CWE415_Double_Free__malloc_free_struct/2.json -------------------------------------------------------------------------------- /signature-db/CWE415_18-CWE415_Double_Free__new_delete_char/1.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prosyslab/tracer/HEAD/signature-db/CWE415_18-CWE415_Double_Free__new_delete_char/1.json -------------------------------------------------------------------------------- /signature-db/CWE415_18-CWE415_Double_Free__new_delete_char/2.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prosyslab/tracer/HEAD/signature-db/CWE415_18-CWE415_Double_Free__new_delete_char/2.json -------------------------------------------------------------------------------- /signature-db/CWE415_18-CWE415_Double_Free__new_delete_class/1.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prosyslab/tracer/HEAD/signature-db/CWE415_18-CWE415_Double_Free__new_delete_class/1.json -------------------------------------------------------------------------------- /signature-db/CWE415_18-CWE415_Double_Free__new_delete_class/2.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prosyslab/tracer/HEAD/signature-db/CWE415_18-CWE415_Double_Free__new_delete_class/2.json -------------------------------------------------------------------------------- /signature-db/CWE415_18-CWE415_Double_Free__new_delete_int/1.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prosyslab/tracer/HEAD/signature-db/CWE415_18-CWE415_Double_Free__new_delete_int/1.json -------------------------------------------------------------------------------- /signature-db/CWE415_18-CWE415_Double_Free__new_delete_int/2.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prosyslab/tracer/HEAD/signature-db/CWE415_18-CWE415_Double_Free__new_delete_int/2.json -------------------------------------------------------------------------------- /signature-db/CWE415_18-CWE415_Double_Free__new_delete_int64_t/1.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prosyslab/tracer/HEAD/signature-db/CWE415_18-CWE415_Double_Free__new_delete_int64_t/1.json -------------------------------------------------------------------------------- /signature-db/CWE415_18-CWE415_Double_Free__new_delete_int64_t/2.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prosyslab/tracer/HEAD/signature-db/CWE415_18-CWE415_Double_Free__new_delete_int64_t/2.json -------------------------------------------------------------------------------- /signature-db/CWE415_18-CWE415_Double_Free__new_delete_long/1.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prosyslab/tracer/HEAD/signature-db/CWE415_18-CWE415_Double_Free__new_delete_long/1.json -------------------------------------------------------------------------------- /signature-db/CWE415_18-CWE415_Double_Free__new_delete_long/2.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prosyslab/tracer/HEAD/signature-db/CWE415_18-CWE415_Double_Free__new_delete_long/2.json -------------------------------------------------------------------------------- /signature-db/CWE415_18-CWE415_Double_Free__new_delete_struct/1.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prosyslab/tracer/HEAD/signature-db/CWE415_18-CWE415_Double_Free__new_delete_struct/1.json -------------------------------------------------------------------------------- /signature-db/CWE415_18-CWE415_Double_Free__new_delete_struct/2.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prosyslab/tracer/HEAD/signature-db/CWE415_18-CWE415_Double_Free__new_delete_struct/2.json -------------------------------------------------------------------------------- /signature-db/CWE415_21-CWE415_Double_Free__malloc_free_char/1.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prosyslab/tracer/HEAD/signature-db/CWE415_21-CWE415_Double_Free__malloc_free_char/1.json -------------------------------------------------------------------------------- /signature-db/CWE415_21-CWE415_Double_Free__malloc_free_char/2.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prosyslab/tracer/HEAD/signature-db/CWE415_21-CWE415_Double_Free__malloc_free_char/2.json -------------------------------------------------------------------------------- /signature-db/CWE415_21-CWE415_Double_Free__malloc_free_char/3.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prosyslab/tracer/HEAD/signature-db/CWE415_21-CWE415_Double_Free__malloc_free_char/3.json -------------------------------------------------------------------------------- /signature-db/CWE415_21-CWE415_Double_Free__malloc_free_int/1.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prosyslab/tracer/HEAD/signature-db/CWE415_21-CWE415_Double_Free__malloc_free_int/1.json -------------------------------------------------------------------------------- /signature-db/CWE415_21-CWE415_Double_Free__malloc_free_int/2.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prosyslab/tracer/HEAD/signature-db/CWE415_21-CWE415_Double_Free__malloc_free_int/2.json -------------------------------------------------------------------------------- /signature-db/CWE415_21-CWE415_Double_Free__malloc_free_int/3.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prosyslab/tracer/HEAD/signature-db/CWE415_21-CWE415_Double_Free__malloc_free_int/3.json -------------------------------------------------------------------------------- /signature-db/CWE415_21-CWE415_Double_Free__malloc_free_long/1.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prosyslab/tracer/HEAD/signature-db/CWE415_21-CWE415_Double_Free__malloc_free_long/1.json -------------------------------------------------------------------------------- /signature-db/CWE415_21-CWE415_Double_Free__malloc_free_long/2.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prosyslab/tracer/HEAD/signature-db/CWE415_21-CWE415_Double_Free__malloc_free_long/2.json -------------------------------------------------------------------------------- /signature-db/CWE415_21-CWE415_Double_Free__malloc_free_long/3.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prosyslab/tracer/HEAD/signature-db/CWE415_21-CWE415_Double_Free__malloc_free_long/3.json -------------------------------------------------------------------------------- /signature-db/CWE415_21-CWE415_Double_Free__malloc_free_struct/1.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prosyslab/tracer/HEAD/signature-db/CWE415_21-CWE415_Double_Free__malloc_free_struct/1.json -------------------------------------------------------------------------------- /signature-db/CWE415_21-CWE415_Double_Free__malloc_free_struct/2.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prosyslab/tracer/HEAD/signature-db/CWE415_21-CWE415_Double_Free__malloc_free_struct/2.json -------------------------------------------------------------------------------- /signature-db/CWE415_21-CWE415_Double_Free__malloc_free_struct/3.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prosyslab/tracer/HEAD/signature-db/CWE415_21-CWE415_Double_Free__malloc_free_struct/3.json -------------------------------------------------------------------------------- /signature-db/CWE415_21-CWE415_Double_Free__new_delete_char/1.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prosyslab/tracer/HEAD/signature-db/CWE415_21-CWE415_Double_Free__new_delete_char/1.json -------------------------------------------------------------------------------- /signature-db/CWE415_21-CWE415_Double_Free__new_delete_char/2.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prosyslab/tracer/HEAD/signature-db/CWE415_21-CWE415_Double_Free__new_delete_char/2.json -------------------------------------------------------------------------------- /signature-db/CWE415_21-CWE415_Double_Free__new_delete_char/3.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prosyslab/tracer/HEAD/signature-db/CWE415_21-CWE415_Double_Free__new_delete_char/3.json -------------------------------------------------------------------------------- /signature-db/CWE415_21-CWE415_Double_Free__new_delete_class/1.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prosyslab/tracer/HEAD/signature-db/CWE415_21-CWE415_Double_Free__new_delete_class/1.json -------------------------------------------------------------------------------- /signature-db/CWE415_21-CWE415_Double_Free__new_delete_class/2.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prosyslab/tracer/HEAD/signature-db/CWE415_21-CWE415_Double_Free__new_delete_class/2.json -------------------------------------------------------------------------------- /signature-db/CWE415_21-CWE415_Double_Free__new_delete_class/3.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prosyslab/tracer/HEAD/signature-db/CWE415_21-CWE415_Double_Free__new_delete_class/3.json -------------------------------------------------------------------------------- /signature-db/CWE415_21-CWE415_Double_Free__new_delete_int/1.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prosyslab/tracer/HEAD/signature-db/CWE415_21-CWE415_Double_Free__new_delete_int/1.json -------------------------------------------------------------------------------- /signature-db/CWE415_21-CWE415_Double_Free__new_delete_int/2.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prosyslab/tracer/HEAD/signature-db/CWE415_21-CWE415_Double_Free__new_delete_int/2.json -------------------------------------------------------------------------------- /signature-db/CWE415_21-CWE415_Double_Free__new_delete_int/3.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prosyslab/tracer/HEAD/signature-db/CWE415_21-CWE415_Double_Free__new_delete_int/3.json -------------------------------------------------------------------------------- /signature-db/CWE415_21-CWE415_Double_Free__new_delete_int64_t/1.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prosyslab/tracer/HEAD/signature-db/CWE415_21-CWE415_Double_Free__new_delete_int64_t/1.json -------------------------------------------------------------------------------- /signature-db/CWE415_21-CWE415_Double_Free__new_delete_int64_t/2.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prosyslab/tracer/HEAD/signature-db/CWE415_21-CWE415_Double_Free__new_delete_int64_t/2.json -------------------------------------------------------------------------------- /signature-db/CWE415_21-CWE415_Double_Free__new_delete_int64_t/3.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prosyslab/tracer/HEAD/signature-db/CWE415_21-CWE415_Double_Free__new_delete_int64_t/3.json -------------------------------------------------------------------------------- /signature-db/CWE415_21-CWE415_Double_Free__new_delete_long/1.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prosyslab/tracer/HEAD/signature-db/CWE415_21-CWE415_Double_Free__new_delete_long/1.json -------------------------------------------------------------------------------- /signature-db/CWE415_21-CWE415_Double_Free__new_delete_long/2.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prosyslab/tracer/HEAD/signature-db/CWE415_21-CWE415_Double_Free__new_delete_long/2.json -------------------------------------------------------------------------------- /signature-db/CWE415_21-CWE415_Double_Free__new_delete_long/3.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prosyslab/tracer/HEAD/signature-db/CWE415_21-CWE415_Double_Free__new_delete_long/3.json -------------------------------------------------------------------------------- /signature-db/CWE415_21-CWE415_Double_Free__new_delete_struct/1.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prosyslab/tracer/HEAD/signature-db/CWE415_21-CWE415_Double_Free__new_delete_struct/1.json -------------------------------------------------------------------------------- /signature-db/CWE415_21-CWE415_Double_Free__new_delete_struct/2.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prosyslab/tracer/HEAD/signature-db/CWE415_21-CWE415_Double_Free__new_delete_struct/2.json -------------------------------------------------------------------------------- /signature-db/CWE415_21-CWE415_Double_Free__new_delete_struct/3.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prosyslab/tracer/HEAD/signature-db/CWE415_21-CWE415_Double_Free__new_delete_struct/3.json -------------------------------------------------------------------------------- /signature-db/CWE415_22-CWE415_Double_Free__malloc_free_char/1.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prosyslab/tracer/HEAD/signature-db/CWE415_22-CWE415_Double_Free__malloc_free_char/1.json -------------------------------------------------------------------------------- /signature-db/CWE415_22-CWE415_Double_Free__malloc_free_char/2.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prosyslab/tracer/HEAD/signature-db/CWE415_22-CWE415_Double_Free__malloc_free_char/2.json -------------------------------------------------------------------------------- /signature-db/CWE415_22-CWE415_Double_Free__malloc_free_char/3.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prosyslab/tracer/HEAD/signature-db/CWE415_22-CWE415_Double_Free__malloc_free_char/3.json -------------------------------------------------------------------------------- /signature-db/CWE415_22-CWE415_Double_Free__malloc_free_int/1.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prosyslab/tracer/HEAD/signature-db/CWE415_22-CWE415_Double_Free__malloc_free_int/1.json -------------------------------------------------------------------------------- /signature-db/CWE415_22-CWE415_Double_Free__malloc_free_int/2.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prosyslab/tracer/HEAD/signature-db/CWE415_22-CWE415_Double_Free__malloc_free_int/2.json -------------------------------------------------------------------------------- /signature-db/CWE415_22-CWE415_Double_Free__malloc_free_int/3.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prosyslab/tracer/HEAD/signature-db/CWE415_22-CWE415_Double_Free__malloc_free_int/3.json -------------------------------------------------------------------------------- /signature-db/CWE415_22-CWE415_Double_Free__malloc_free_long/1.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prosyslab/tracer/HEAD/signature-db/CWE415_22-CWE415_Double_Free__malloc_free_long/1.json -------------------------------------------------------------------------------- /signature-db/CWE415_22-CWE415_Double_Free__malloc_free_long/2.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prosyslab/tracer/HEAD/signature-db/CWE415_22-CWE415_Double_Free__malloc_free_long/2.json -------------------------------------------------------------------------------- /signature-db/CWE415_22-CWE415_Double_Free__malloc_free_long/3.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prosyslab/tracer/HEAD/signature-db/CWE415_22-CWE415_Double_Free__malloc_free_long/3.json -------------------------------------------------------------------------------- /signature-db/CWE415_22-CWE415_Double_Free__malloc_free_struct/1.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prosyslab/tracer/HEAD/signature-db/CWE415_22-CWE415_Double_Free__malloc_free_struct/1.json -------------------------------------------------------------------------------- /signature-db/CWE415_22-CWE415_Double_Free__malloc_free_struct/2.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prosyslab/tracer/HEAD/signature-db/CWE415_22-CWE415_Double_Free__malloc_free_struct/2.json -------------------------------------------------------------------------------- /signature-db/CWE415_22-CWE415_Double_Free__malloc_free_struct/3.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prosyslab/tracer/HEAD/signature-db/CWE415_22-CWE415_Double_Free__malloc_free_struct/3.json -------------------------------------------------------------------------------- /signature-db/CWE415_22-CWE415_Double_Free__new_delete_char/1.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prosyslab/tracer/HEAD/signature-db/CWE415_22-CWE415_Double_Free__new_delete_char/1.json -------------------------------------------------------------------------------- /signature-db/CWE415_22-CWE415_Double_Free__new_delete_char/2.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prosyslab/tracer/HEAD/signature-db/CWE415_22-CWE415_Double_Free__new_delete_char/2.json -------------------------------------------------------------------------------- /signature-db/CWE415_22-CWE415_Double_Free__new_delete_char/3.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prosyslab/tracer/HEAD/signature-db/CWE415_22-CWE415_Double_Free__new_delete_char/3.json -------------------------------------------------------------------------------- /signature-db/CWE415_22-CWE415_Double_Free__new_delete_class/1.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prosyslab/tracer/HEAD/signature-db/CWE415_22-CWE415_Double_Free__new_delete_class/1.json -------------------------------------------------------------------------------- /signature-db/CWE415_22-CWE415_Double_Free__new_delete_class/2.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prosyslab/tracer/HEAD/signature-db/CWE415_22-CWE415_Double_Free__new_delete_class/2.json -------------------------------------------------------------------------------- /signature-db/CWE415_22-CWE415_Double_Free__new_delete_class/3.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prosyslab/tracer/HEAD/signature-db/CWE415_22-CWE415_Double_Free__new_delete_class/3.json -------------------------------------------------------------------------------- /signature-db/CWE415_22-CWE415_Double_Free__new_delete_int/1.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prosyslab/tracer/HEAD/signature-db/CWE415_22-CWE415_Double_Free__new_delete_int/1.json -------------------------------------------------------------------------------- /signature-db/CWE415_22-CWE415_Double_Free__new_delete_int/2.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prosyslab/tracer/HEAD/signature-db/CWE415_22-CWE415_Double_Free__new_delete_int/2.json -------------------------------------------------------------------------------- /signature-db/CWE415_22-CWE415_Double_Free__new_delete_int/3.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prosyslab/tracer/HEAD/signature-db/CWE415_22-CWE415_Double_Free__new_delete_int/3.json -------------------------------------------------------------------------------- /signature-db/CWE415_22-CWE415_Double_Free__new_delete_int64_t/1.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prosyslab/tracer/HEAD/signature-db/CWE415_22-CWE415_Double_Free__new_delete_int64_t/1.json -------------------------------------------------------------------------------- /signature-db/CWE415_22-CWE415_Double_Free__new_delete_int64_t/2.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prosyslab/tracer/HEAD/signature-db/CWE415_22-CWE415_Double_Free__new_delete_int64_t/2.json -------------------------------------------------------------------------------- /signature-db/CWE415_22-CWE415_Double_Free__new_delete_int64_t/3.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prosyslab/tracer/HEAD/signature-db/CWE415_22-CWE415_Double_Free__new_delete_int64_t/3.json -------------------------------------------------------------------------------- /signature-db/CWE415_22-CWE415_Double_Free__new_delete_long/1.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prosyslab/tracer/HEAD/signature-db/CWE415_22-CWE415_Double_Free__new_delete_long/1.json -------------------------------------------------------------------------------- /signature-db/CWE415_22-CWE415_Double_Free__new_delete_long/2.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prosyslab/tracer/HEAD/signature-db/CWE415_22-CWE415_Double_Free__new_delete_long/2.json -------------------------------------------------------------------------------- /signature-db/CWE415_22-CWE415_Double_Free__new_delete_long/3.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prosyslab/tracer/HEAD/signature-db/CWE415_22-CWE415_Double_Free__new_delete_long/3.json -------------------------------------------------------------------------------- /signature-db/CWE415_22-CWE415_Double_Free__new_delete_struct/1.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prosyslab/tracer/HEAD/signature-db/CWE415_22-CWE415_Double_Free__new_delete_struct/1.json -------------------------------------------------------------------------------- /signature-db/CWE415_22-CWE415_Double_Free__new_delete_struct/2.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prosyslab/tracer/HEAD/signature-db/CWE415_22-CWE415_Double_Free__new_delete_struct/2.json -------------------------------------------------------------------------------- /signature-db/CWE415_22-CWE415_Double_Free__new_delete_struct/3.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prosyslab/tracer/HEAD/signature-db/CWE415_22-CWE415_Double_Free__new_delete_struct/3.json -------------------------------------------------------------------------------- /signature-db/CWE415_31-CWE415_Double_Free__malloc_free_char/1.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prosyslab/tracer/HEAD/signature-db/CWE415_31-CWE415_Double_Free__malloc_free_char/1.json -------------------------------------------------------------------------------- /signature-db/CWE415_31-CWE415_Double_Free__malloc_free_char/2.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prosyslab/tracer/HEAD/signature-db/CWE415_31-CWE415_Double_Free__malloc_free_char/2.json -------------------------------------------------------------------------------- /signature-db/CWE415_31-CWE415_Double_Free__malloc_free_int/1.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prosyslab/tracer/HEAD/signature-db/CWE415_31-CWE415_Double_Free__malloc_free_int/1.json -------------------------------------------------------------------------------- /signature-db/CWE415_31-CWE415_Double_Free__malloc_free_int/2.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prosyslab/tracer/HEAD/signature-db/CWE415_31-CWE415_Double_Free__malloc_free_int/2.json -------------------------------------------------------------------------------- /signature-db/CWE415_31-CWE415_Double_Free__malloc_free_long/1.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prosyslab/tracer/HEAD/signature-db/CWE415_31-CWE415_Double_Free__malloc_free_long/1.json -------------------------------------------------------------------------------- /signature-db/CWE415_31-CWE415_Double_Free__malloc_free_long/2.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prosyslab/tracer/HEAD/signature-db/CWE415_31-CWE415_Double_Free__malloc_free_long/2.json -------------------------------------------------------------------------------- /signature-db/CWE415_31-CWE415_Double_Free__malloc_free_struct/1.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prosyslab/tracer/HEAD/signature-db/CWE415_31-CWE415_Double_Free__malloc_free_struct/1.json -------------------------------------------------------------------------------- /signature-db/CWE415_31-CWE415_Double_Free__malloc_free_struct/2.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prosyslab/tracer/HEAD/signature-db/CWE415_31-CWE415_Double_Free__malloc_free_struct/2.json -------------------------------------------------------------------------------- /signature-db/CWE415_31-CWE415_Double_Free__new_delete_char/1.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prosyslab/tracer/HEAD/signature-db/CWE415_31-CWE415_Double_Free__new_delete_char/1.json -------------------------------------------------------------------------------- /signature-db/CWE415_31-CWE415_Double_Free__new_delete_char/2.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prosyslab/tracer/HEAD/signature-db/CWE415_31-CWE415_Double_Free__new_delete_char/2.json -------------------------------------------------------------------------------- /signature-db/CWE415_31-CWE415_Double_Free__new_delete_class/1.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prosyslab/tracer/HEAD/signature-db/CWE415_31-CWE415_Double_Free__new_delete_class/1.json -------------------------------------------------------------------------------- /signature-db/CWE415_31-CWE415_Double_Free__new_delete_class/2.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prosyslab/tracer/HEAD/signature-db/CWE415_31-CWE415_Double_Free__new_delete_class/2.json -------------------------------------------------------------------------------- /signature-db/CWE415_31-CWE415_Double_Free__new_delete_int/1.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prosyslab/tracer/HEAD/signature-db/CWE415_31-CWE415_Double_Free__new_delete_int/1.json -------------------------------------------------------------------------------- /signature-db/CWE415_31-CWE415_Double_Free__new_delete_int/2.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prosyslab/tracer/HEAD/signature-db/CWE415_31-CWE415_Double_Free__new_delete_int/2.json -------------------------------------------------------------------------------- /signature-db/CWE415_31-CWE415_Double_Free__new_delete_int64_t/1.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prosyslab/tracer/HEAD/signature-db/CWE415_31-CWE415_Double_Free__new_delete_int64_t/1.json -------------------------------------------------------------------------------- /signature-db/CWE415_31-CWE415_Double_Free__new_delete_int64_t/2.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prosyslab/tracer/HEAD/signature-db/CWE415_31-CWE415_Double_Free__new_delete_int64_t/2.json -------------------------------------------------------------------------------- /signature-db/CWE415_31-CWE415_Double_Free__new_delete_long/1.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prosyslab/tracer/HEAD/signature-db/CWE415_31-CWE415_Double_Free__new_delete_long/1.json -------------------------------------------------------------------------------- /signature-db/CWE415_31-CWE415_Double_Free__new_delete_long/2.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prosyslab/tracer/HEAD/signature-db/CWE415_31-CWE415_Double_Free__new_delete_long/2.json -------------------------------------------------------------------------------- /signature-db/CWE415_31-CWE415_Double_Free__new_delete_struct/1.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prosyslab/tracer/HEAD/signature-db/CWE415_31-CWE415_Double_Free__new_delete_struct/1.json -------------------------------------------------------------------------------- /signature-db/CWE415_31-CWE415_Double_Free__new_delete_struct/2.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prosyslab/tracer/HEAD/signature-db/CWE415_31-CWE415_Double_Free__new_delete_struct/2.json -------------------------------------------------------------------------------- /signature-db/CWE415_32-CWE415_Double_Free__malloc_free_char/1.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prosyslab/tracer/HEAD/signature-db/CWE415_32-CWE415_Double_Free__malloc_free_char/1.json -------------------------------------------------------------------------------- /signature-db/CWE415_32-CWE415_Double_Free__malloc_free_int/1.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prosyslab/tracer/HEAD/signature-db/CWE415_32-CWE415_Double_Free__malloc_free_int/1.json -------------------------------------------------------------------------------- /signature-db/CWE415_32-CWE415_Double_Free__malloc_free_int/2.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prosyslab/tracer/HEAD/signature-db/CWE415_32-CWE415_Double_Free__malloc_free_int/2.json -------------------------------------------------------------------------------- /signature-db/CWE415_32-CWE415_Double_Free__new_delete_char/1.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prosyslab/tracer/HEAD/signature-db/CWE415_32-CWE415_Double_Free__new_delete_char/1.json -------------------------------------------------------------------------------- /signature-db/CWE415_32-CWE415_Double_Free__new_delete_char/2.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prosyslab/tracer/HEAD/signature-db/CWE415_32-CWE415_Double_Free__new_delete_char/2.json -------------------------------------------------------------------------------- /signature-db/CWE415_32-CWE415_Double_Free__new_delete_int/1.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prosyslab/tracer/HEAD/signature-db/CWE415_32-CWE415_Double_Free__new_delete_int/1.json -------------------------------------------------------------------------------- /signature-db/CWE415_32-CWE415_Double_Free__new_delete_int/2.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prosyslab/tracer/HEAD/signature-db/CWE415_32-CWE415_Double_Free__new_delete_int/2.json -------------------------------------------------------------------------------- /signature-db/CWE415_32-CWE415_Double_Free__new_delete_long/1.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prosyslab/tracer/HEAD/signature-db/CWE415_32-CWE415_Double_Free__new_delete_long/1.json -------------------------------------------------------------------------------- /signature-db/CWE415_32-CWE415_Double_Free__new_delete_long/2.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prosyslab/tracer/HEAD/signature-db/CWE415_32-CWE415_Double_Free__new_delete_long/2.json -------------------------------------------------------------------------------- /signature-db/CWE415_33-CWE415_Double_Free__malloc_free_int/1.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prosyslab/tracer/HEAD/signature-db/CWE415_33-CWE415_Double_Free__malloc_free_int/1.json -------------------------------------------------------------------------------- /signature-db/CWE415_33-CWE415_Double_Free__malloc_free_int/2.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prosyslab/tracer/HEAD/signature-db/CWE415_33-CWE415_Double_Free__malloc_free_int/2.json -------------------------------------------------------------------------------- /signature-db/CWE415_33-CWE415_Double_Free__new_delete_char/1.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prosyslab/tracer/HEAD/signature-db/CWE415_33-CWE415_Double_Free__new_delete_char/1.json -------------------------------------------------------------------------------- /signature-db/CWE415_33-CWE415_Double_Free__new_delete_char/2.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prosyslab/tracer/HEAD/signature-db/CWE415_33-CWE415_Double_Free__new_delete_char/2.json -------------------------------------------------------------------------------- /signature-db/CWE415_33-CWE415_Double_Free__new_delete_int/1.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prosyslab/tracer/HEAD/signature-db/CWE415_33-CWE415_Double_Free__new_delete_int/1.json -------------------------------------------------------------------------------- /signature-db/CWE415_33-CWE415_Double_Free__new_delete_int/2.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prosyslab/tracer/HEAD/signature-db/CWE415_33-CWE415_Double_Free__new_delete_int/2.json -------------------------------------------------------------------------------- /signature-db/CWE415_33-CWE415_Double_Free__new_delete_long/1.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prosyslab/tracer/HEAD/signature-db/CWE415_33-CWE415_Double_Free__new_delete_long/1.json -------------------------------------------------------------------------------- /signature-db/CWE415_33-CWE415_Double_Free__new_delete_long/2.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prosyslab/tracer/HEAD/signature-db/CWE415_33-CWE415_Double_Free__new_delete_long/2.json -------------------------------------------------------------------------------- /signature-db/CWE415_41-CWE415_Double_Free__malloc_free_int/1.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prosyslab/tracer/HEAD/signature-db/CWE415_41-CWE415_Double_Free__malloc_free_int/1.json -------------------------------------------------------------------------------- /signature-db/CWE415_41-CWE415_Double_Free__malloc_free_int/2.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prosyslab/tracer/HEAD/signature-db/CWE415_41-CWE415_Double_Free__malloc_free_int/2.json -------------------------------------------------------------------------------- /signature-db/CWE415_41-CWE415_Double_Free__malloc_free_int/3.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prosyslab/tracer/HEAD/signature-db/CWE415_41-CWE415_Double_Free__malloc_free_int/3.json -------------------------------------------------------------------------------- /signature-db/CWE415_41-CWE415_Double_Free__new_delete_char/1.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prosyslab/tracer/HEAD/signature-db/CWE415_41-CWE415_Double_Free__new_delete_char/1.json -------------------------------------------------------------------------------- /signature-db/CWE415_41-CWE415_Double_Free__new_delete_char/2.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prosyslab/tracer/HEAD/signature-db/CWE415_41-CWE415_Double_Free__new_delete_char/2.json -------------------------------------------------------------------------------- /signature-db/CWE415_41-CWE415_Double_Free__new_delete_char/3.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prosyslab/tracer/HEAD/signature-db/CWE415_41-CWE415_Double_Free__new_delete_char/3.json -------------------------------------------------------------------------------- /signature-db/CWE415_41-CWE415_Double_Free__new_delete_int/1.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prosyslab/tracer/HEAD/signature-db/CWE415_41-CWE415_Double_Free__new_delete_int/1.json -------------------------------------------------------------------------------- /signature-db/CWE415_41-CWE415_Double_Free__new_delete_int/2.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prosyslab/tracer/HEAD/signature-db/CWE415_41-CWE415_Double_Free__new_delete_int/2.json -------------------------------------------------------------------------------- /signature-db/CWE415_41-CWE415_Double_Free__new_delete_int/3.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prosyslab/tracer/HEAD/signature-db/CWE415_41-CWE415_Double_Free__new_delete_int/3.json -------------------------------------------------------------------------------- /signature-db/CWE415_41-CWE415_Double_Free__new_delete_long/1.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prosyslab/tracer/HEAD/signature-db/CWE415_41-CWE415_Double_Free__new_delete_long/1.json -------------------------------------------------------------------------------- /signature-db/CWE415_41-CWE415_Double_Free__new_delete_long/2.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prosyslab/tracer/HEAD/signature-db/CWE415_41-CWE415_Double_Free__new_delete_long/2.json -------------------------------------------------------------------------------- /signature-db/CWE415_41-CWE415_Double_Free__new_delete_long/3.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prosyslab/tracer/HEAD/signature-db/CWE415_41-CWE415_Double_Free__new_delete_long/3.json -------------------------------------------------------------------------------- /signature-db/CWE415_42-CWE415_Double_Free__new_delete_char/1.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prosyslab/tracer/HEAD/signature-db/CWE415_42-CWE415_Double_Free__new_delete_char/1.json -------------------------------------------------------------------------------- /signature-db/CWE415_42-CWE415_Double_Free__new_delete_char/2.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prosyslab/tracer/HEAD/signature-db/CWE415_42-CWE415_Double_Free__new_delete_char/2.json -------------------------------------------------------------------------------- /signature-db/CWE415_42-CWE415_Double_Free__new_delete_int/1.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prosyslab/tracer/HEAD/signature-db/CWE415_42-CWE415_Double_Free__new_delete_int/1.json -------------------------------------------------------------------------------- /signature-db/CWE415_42-CWE415_Double_Free__new_delete_int/2.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prosyslab/tracer/HEAD/signature-db/CWE415_42-CWE415_Double_Free__new_delete_int/2.json -------------------------------------------------------------------------------- /signature-db/CWE415_42-CWE415_Double_Free__new_delete_long/1.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prosyslab/tracer/HEAD/signature-db/CWE415_42-CWE415_Double_Free__new_delete_long/1.json -------------------------------------------------------------------------------- /signature-db/CWE415_42-CWE415_Double_Free__new_delete_long/2.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prosyslab/tracer/HEAD/signature-db/CWE415_42-CWE415_Double_Free__new_delete_long/2.json -------------------------------------------------------------------------------- /signature-db/CWE415_44-CWE415_Double_Free__malloc_free_int/1.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prosyslab/tracer/HEAD/signature-db/CWE415_44-CWE415_Double_Free__malloc_free_int/1.json -------------------------------------------------------------------------------- /signature-db/CWE415_44-CWE415_Double_Free__malloc_free_int/2.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prosyslab/tracer/HEAD/signature-db/CWE415_44-CWE415_Double_Free__malloc_free_int/2.json -------------------------------------------------------------------------------- /signature-db/CWE415_44-CWE415_Double_Free__new_delete_char/1.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prosyslab/tracer/HEAD/signature-db/CWE415_44-CWE415_Double_Free__new_delete_char/1.json -------------------------------------------------------------------------------- /signature-db/CWE415_44-CWE415_Double_Free__new_delete_char/2.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prosyslab/tracer/HEAD/signature-db/CWE415_44-CWE415_Double_Free__new_delete_char/2.json -------------------------------------------------------------------------------- /signature-db/CWE415_44-CWE415_Double_Free__new_delete_int/1.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prosyslab/tracer/HEAD/signature-db/CWE415_44-CWE415_Double_Free__new_delete_int/1.json -------------------------------------------------------------------------------- /signature-db/CWE415_44-CWE415_Double_Free__new_delete_int/2.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prosyslab/tracer/HEAD/signature-db/CWE415_44-CWE415_Double_Free__new_delete_int/2.json -------------------------------------------------------------------------------- /signature-db/CWE415_44-CWE415_Double_Free__new_delete_long/1.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prosyslab/tracer/HEAD/signature-db/CWE415_44-CWE415_Double_Free__new_delete_long/1.json -------------------------------------------------------------------------------- /signature-db/CWE415_44-CWE415_Double_Free__new_delete_long/2.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prosyslab/tracer/HEAD/signature-db/CWE415_44-CWE415_Double_Free__new_delete_long/2.json -------------------------------------------------------------------------------- /signature-db/CWE415_51-CWE415_Double_Free__malloc_free_int/1.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prosyslab/tracer/HEAD/signature-db/CWE415_51-CWE415_Double_Free__malloc_free_int/1.json -------------------------------------------------------------------------------- /signature-db/CWE415_51-CWE415_Double_Free__malloc_free_int/2.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prosyslab/tracer/HEAD/signature-db/CWE415_51-CWE415_Double_Free__malloc_free_int/2.json -------------------------------------------------------------------------------- /signature-db/CWE415_51-CWE415_Double_Free__malloc_free_int/3.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prosyslab/tracer/HEAD/signature-db/CWE415_51-CWE415_Double_Free__malloc_free_int/3.json -------------------------------------------------------------------------------- /signature-db/CWE415_51-CWE415_Double_Free__new_delete_char/1.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prosyslab/tracer/HEAD/signature-db/CWE415_51-CWE415_Double_Free__new_delete_char/1.json -------------------------------------------------------------------------------- /signature-db/CWE415_51-CWE415_Double_Free__new_delete_char/2.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prosyslab/tracer/HEAD/signature-db/CWE415_51-CWE415_Double_Free__new_delete_char/2.json -------------------------------------------------------------------------------- /signature-db/CWE415_51-CWE415_Double_Free__new_delete_char/3.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prosyslab/tracer/HEAD/signature-db/CWE415_51-CWE415_Double_Free__new_delete_char/3.json -------------------------------------------------------------------------------- /signature-db/CWE415_51-CWE415_Double_Free__new_delete_int/1.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prosyslab/tracer/HEAD/signature-db/CWE415_51-CWE415_Double_Free__new_delete_int/1.json -------------------------------------------------------------------------------- /signature-db/CWE415_51-CWE415_Double_Free__new_delete_int/2.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prosyslab/tracer/HEAD/signature-db/CWE415_51-CWE415_Double_Free__new_delete_int/2.json -------------------------------------------------------------------------------- /signature-db/CWE415_51-CWE415_Double_Free__new_delete_int/3.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prosyslab/tracer/HEAD/signature-db/CWE415_51-CWE415_Double_Free__new_delete_int/3.json -------------------------------------------------------------------------------- /signature-db/CWE415_51-CWE415_Double_Free__new_delete_long/1.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prosyslab/tracer/HEAD/signature-db/CWE415_51-CWE415_Double_Free__new_delete_long/1.json -------------------------------------------------------------------------------- /signature-db/CWE415_51-CWE415_Double_Free__new_delete_long/2.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prosyslab/tracer/HEAD/signature-db/CWE415_51-CWE415_Double_Free__new_delete_long/2.json -------------------------------------------------------------------------------- /signature-db/CWE415_51-CWE415_Double_Free__new_delete_long/3.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prosyslab/tracer/HEAD/signature-db/CWE415_51-CWE415_Double_Free__new_delete_long/3.json -------------------------------------------------------------------------------- /signature-db/CWE415_52-CWE415_Double_Free__malloc_free_int/1.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prosyslab/tracer/HEAD/signature-db/CWE415_52-CWE415_Double_Free__malloc_free_int/1.json -------------------------------------------------------------------------------- /signature-db/CWE415_52-CWE415_Double_Free__malloc_free_int/2.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prosyslab/tracer/HEAD/signature-db/CWE415_52-CWE415_Double_Free__malloc_free_int/2.json -------------------------------------------------------------------------------- /signature-db/CWE415_52-CWE415_Double_Free__malloc_free_int/3.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prosyslab/tracer/HEAD/signature-db/CWE415_52-CWE415_Double_Free__malloc_free_int/3.json -------------------------------------------------------------------------------- /signature-db/CWE415_52-CWE415_Double_Free__malloc_free_int/4.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prosyslab/tracer/HEAD/signature-db/CWE415_52-CWE415_Double_Free__malloc_free_int/4.json -------------------------------------------------------------------------------- /signature-db/CWE415_52-CWE415_Double_Free__new_delete_char/1.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prosyslab/tracer/HEAD/signature-db/CWE415_52-CWE415_Double_Free__new_delete_char/1.json -------------------------------------------------------------------------------- /signature-db/CWE415_52-CWE415_Double_Free__new_delete_char/2.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prosyslab/tracer/HEAD/signature-db/CWE415_52-CWE415_Double_Free__new_delete_char/2.json -------------------------------------------------------------------------------- /signature-db/CWE415_52-CWE415_Double_Free__new_delete_char/3.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prosyslab/tracer/HEAD/signature-db/CWE415_52-CWE415_Double_Free__new_delete_char/3.json -------------------------------------------------------------------------------- /signature-db/CWE415_52-CWE415_Double_Free__new_delete_char/4.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prosyslab/tracer/HEAD/signature-db/CWE415_52-CWE415_Double_Free__new_delete_char/4.json -------------------------------------------------------------------------------- /signature-db/CWE415_52-CWE415_Double_Free__new_delete_int/1.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prosyslab/tracer/HEAD/signature-db/CWE415_52-CWE415_Double_Free__new_delete_int/1.json -------------------------------------------------------------------------------- /signature-db/CWE415_52-CWE415_Double_Free__new_delete_int/2.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prosyslab/tracer/HEAD/signature-db/CWE415_52-CWE415_Double_Free__new_delete_int/2.json -------------------------------------------------------------------------------- /signature-db/CWE415_52-CWE415_Double_Free__new_delete_int/3.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prosyslab/tracer/HEAD/signature-db/CWE415_52-CWE415_Double_Free__new_delete_int/3.json -------------------------------------------------------------------------------- /signature-db/CWE415_52-CWE415_Double_Free__new_delete_int/4.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prosyslab/tracer/HEAD/signature-db/CWE415_52-CWE415_Double_Free__new_delete_int/4.json -------------------------------------------------------------------------------- /signature-db/CWE415_52-CWE415_Double_Free__new_delete_long/1.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prosyslab/tracer/HEAD/signature-db/CWE415_52-CWE415_Double_Free__new_delete_long/1.json -------------------------------------------------------------------------------- /signature-db/CWE415_52-CWE415_Double_Free__new_delete_long/2.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prosyslab/tracer/HEAD/signature-db/CWE415_52-CWE415_Double_Free__new_delete_long/2.json -------------------------------------------------------------------------------- /signature-db/CWE415_52-CWE415_Double_Free__new_delete_long/3.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prosyslab/tracer/HEAD/signature-db/CWE415_52-CWE415_Double_Free__new_delete_long/3.json -------------------------------------------------------------------------------- /signature-db/CWE415_52-CWE415_Double_Free__new_delete_long/4.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prosyslab/tracer/HEAD/signature-db/CWE415_52-CWE415_Double_Free__new_delete_long/4.json -------------------------------------------------------------------------------- /signature-db/CWE415_53-CWE415_Double_Free__malloc_free_int/1.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prosyslab/tracer/HEAD/signature-db/CWE415_53-CWE415_Double_Free__malloc_free_int/1.json -------------------------------------------------------------------------------- /signature-db/CWE415_53-CWE415_Double_Free__malloc_free_int/2.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prosyslab/tracer/HEAD/signature-db/CWE415_53-CWE415_Double_Free__malloc_free_int/2.json -------------------------------------------------------------------------------- /signature-db/CWE415_53-CWE415_Double_Free__malloc_free_int/3.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prosyslab/tracer/HEAD/signature-db/CWE415_53-CWE415_Double_Free__malloc_free_int/3.json -------------------------------------------------------------------------------- /signature-db/CWE415_53-CWE415_Double_Free__malloc_free_int/4.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prosyslab/tracer/HEAD/signature-db/CWE415_53-CWE415_Double_Free__malloc_free_int/4.json -------------------------------------------------------------------------------- /signature-db/CWE415_53-CWE415_Double_Free__malloc_free_int/5.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prosyslab/tracer/HEAD/signature-db/CWE415_53-CWE415_Double_Free__malloc_free_int/5.json -------------------------------------------------------------------------------- /signature-db/CWE415_53-CWE415_Double_Free__new_delete_char/1.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prosyslab/tracer/HEAD/signature-db/CWE415_53-CWE415_Double_Free__new_delete_char/1.json -------------------------------------------------------------------------------- /signature-db/CWE415_53-CWE415_Double_Free__new_delete_char/2.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prosyslab/tracer/HEAD/signature-db/CWE415_53-CWE415_Double_Free__new_delete_char/2.json -------------------------------------------------------------------------------- /signature-db/CWE415_53-CWE415_Double_Free__new_delete_char/3.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prosyslab/tracer/HEAD/signature-db/CWE415_53-CWE415_Double_Free__new_delete_char/3.json -------------------------------------------------------------------------------- /signature-db/CWE415_53-CWE415_Double_Free__new_delete_char/4.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prosyslab/tracer/HEAD/signature-db/CWE415_53-CWE415_Double_Free__new_delete_char/4.json -------------------------------------------------------------------------------- /signature-db/CWE415_53-CWE415_Double_Free__new_delete_char/5.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prosyslab/tracer/HEAD/signature-db/CWE415_53-CWE415_Double_Free__new_delete_char/5.json -------------------------------------------------------------------------------- /signature-db/CWE415_53-CWE415_Double_Free__new_delete_int/1.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prosyslab/tracer/HEAD/signature-db/CWE415_53-CWE415_Double_Free__new_delete_int/1.json -------------------------------------------------------------------------------- /signature-db/CWE415_53-CWE415_Double_Free__new_delete_int/2.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prosyslab/tracer/HEAD/signature-db/CWE415_53-CWE415_Double_Free__new_delete_int/2.json -------------------------------------------------------------------------------- /signature-db/CWE415_53-CWE415_Double_Free__new_delete_int/3.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prosyslab/tracer/HEAD/signature-db/CWE415_53-CWE415_Double_Free__new_delete_int/3.json -------------------------------------------------------------------------------- /signature-db/CWE415_53-CWE415_Double_Free__new_delete_int/4.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prosyslab/tracer/HEAD/signature-db/CWE415_53-CWE415_Double_Free__new_delete_int/4.json -------------------------------------------------------------------------------- /signature-db/CWE415_53-CWE415_Double_Free__new_delete_int/5.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prosyslab/tracer/HEAD/signature-db/CWE415_53-CWE415_Double_Free__new_delete_int/5.json -------------------------------------------------------------------------------- /signature-db/CWE415_53-CWE415_Double_Free__new_delete_long/1.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prosyslab/tracer/HEAD/signature-db/CWE415_53-CWE415_Double_Free__new_delete_long/1.json -------------------------------------------------------------------------------- /signature-db/CWE415_53-CWE415_Double_Free__new_delete_long/2.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prosyslab/tracer/HEAD/signature-db/CWE415_53-CWE415_Double_Free__new_delete_long/2.json -------------------------------------------------------------------------------- /signature-db/CWE415_53-CWE415_Double_Free__new_delete_long/3.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prosyslab/tracer/HEAD/signature-db/CWE415_53-CWE415_Double_Free__new_delete_long/3.json -------------------------------------------------------------------------------- /signature-db/CWE415_53-CWE415_Double_Free__new_delete_long/4.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prosyslab/tracer/HEAD/signature-db/CWE415_53-CWE415_Double_Free__new_delete_long/4.json -------------------------------------------------------------------------------- /signature-db/CWE415_53-CWE415_Double_Free__new_delete_long/5.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prosyslab/tracer/HEAD/signature-db/CWE415_53-CWE415_Double_Free__new_delete_long/5.json -------------------------------------------------------------------------------- /signature-db/CWE415_54-CWE415_Double_Free__malloc_free_int/1.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prosyslab/tracer/HEAD/signature-db/CWE415_54-CWE415_Double_Free__malloc_free_int/1.json -------------------------------------------------------------------------------- /signature-db/CWE415_54-CWE415_Double_Free__malloc_free_int/2.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prosyslab/tracer/HEAD/signature-db/CWE415_54-CWE415_Double_Free__malloc_free_int/2.json -------------------------------------------------------------------------------- /signature-db/CWE415_54-CWE415_Double_Free__malloc_free_int/3.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prosyslab/tracer/HEAD/signature-db/CWE415_54-CWE415_Double_Free__malloc_free_int/3.json -------------------------------------------------------------------------------- /signature-db/CWE415_54-CWE415_Double_Free__malloc_free_int/4.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prosyslab/tracer/HEAD/signature-db/CWE415_54-CWE415_Double_Free__malloc_free_int/4.json -------------------------------------------------------------------------------- /signature-db/CWE415_54-CWE415_Double_Free__malloc_free_int/5.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prosyslab/tracer/HEAD/signature-db/CWE415_54-CWE415_Double_Free__malloc_free_int/5.json -------------------------------------------------------------------------------- /signature-db/CWE415_54-CWE415_Double_Free__malloc_free_int/6.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prosyslab/tracer/HEAD/signature-db/CWE415_54-CWE415_Double_Free__malloc_free_int/6.json -------------------------------------------------------------------------------- /signature-db/CWE415_54-CWE415_Double_Free__new_delete_char/1.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prosyslab/tracer/HEAD/signature-db/CWE415_54-CWE415_Double_Free__new_delete_char/1.json -------------------------------------------------------------------------------- /signature-db/CWE415_54-CWE415_Double_Free__new_delete_char/2.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prosyslab/tracer/HEAD/signature-db/CWE415_54-CWE415_Double_Free__new_delete_char/2.json -------------------------------------------------------------------------------- /signature-db/CWE415_54-CWE415_Double_Free__new_delete_char/3.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prosyslab/tracer/HEAD/signature-db/CWE415_54-CWE415_Double_Free__new_delete_char/3.json -------------------------------------------------------------------------------- /signature-db/CWE415_54-CWE415_Double_Free__new_delete_char/4.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prosyslab/tracer/HEAD/signature-db/CWE415_54-CWE415_Double_Free__new_delete_char/4.json -------------------------------------------------------------------------------- /signature-db/CWE415_54-CWE415_Double_Free__new_delete_char/5.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prosyslab/tracer/HEAD/signature-db/CWE415_54-CWE415_Double_Free__new_delete_char/5.json -------------------------------------------------------------------------------- /signature-db/CWE415_54-CWE415_Double_Free__new_delete_char/6.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prosyslab/tracer/HEAD/signature-db/CWE415_54-CWE415_Double_Free__new_delete_char/6.json -------------------------------------------------------------------------------- /signature-db/CWE415_54-CWE415_Double_Free__new_delete_int/1.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prosyslab/tracer/HEAD/signature-db/CWE415_54-CWE415_Double_Free__new_delete_int/1.json -------------------------------------------------------------------------------- /signature-db/CWE415_54-CWE415_Double_Free__new_delete_int/2.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prosyslab/tracer/HEAD/signature-db/CWE415_54-CWE415_Double_Free__new_delete_int/2.json -------------------------------------------------------------------------------- /signature-db/CWE415_54-CWE415_Double_Free__new_delete_int/3.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prosyslab/tracer/HEAD/signature-db/CWE415_54-CWE415_Double_Free__new_delete_int/3.json -------------------------------------------------------------------------------- /signature-db/CWE415_54-CWE415_Double_Free__new_delete_int/4.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prosyslab/tracer/HEAD/signature-db/CWE415_54-CWE415_Double_Free__new_delete_int/4.json -------------------------------------------------------------------------------- /signature-db/CWE415_54-CWE415_Double_Free__new_delete_int/5.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prosyslab/tracer/HEAD/signature-db/CWE415_54-CWE415_Double_Free__new_delete_int/5.json -------------------------------------------------------------------------------- /signature-db/CWE415_54-CWE415_Double_Free__new_delete_int/6.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prosyslab/tracer/HEAD/signature-db/CWE415_54-CWE415_Double_Free__new_delete_int/6.json -------------------------------------------------------------------------------- /signature-db/CWE415_54-CWE415_Double_Free__new_delete_long/1.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prosyslab/tracer/HEAD/signature-db/CWE415_54-CWE415_Double_Free__new_delete_long/1.json -------------------------------------------------------------------------------- /signature-db/CWE415_54-CWE415_Double_Free__new_delete_long/2.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prosyslab/tracer/HEAD/signature-db/CWE415_54-CWE415_Double_Free__new_delete_long/2.json -------------------------------------------------------------------------------- /signature-db/CWE415_54-CWE415_Double_Free__new_delete_long/3.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prosyslab/tracer/HEAD/signature-db/CWE415_54-CWE415_Double_Free__new_delete_long/3.json -------------------------------------------------------------------------------- /signature-db/CWE415_54-CWE415_Double_Free__new_delete_long/4.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prosyslab/tracer/HEAD/signature-db/CWE415_54-CWE415_Double_Free__new_delete_long/4.json -------------------------------------------------------------------------------- /signature-db/CWE415_54-CWE415_Double_Free__new_delete_long/5.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prosyslab/tracer/HEAD/signature-db/CWE415_54-CWE415_Double_Free__new_delete_long/5.json -------------------------------------------------------------------------------- /signature-db/CWE415_54-CWE415_Double_Free__new_delete_long/6.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prosyslab/tracer/HEAD/signature-db/CWE415_54-CWE415_Double_Free__new_delete_long/6.json -------------------------------------------------------------------------------- /signature-db/CWE415_61-CWE415_Double_Free__new_delete_char/1.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prosyslab/tracer/HEAD/signature-db/CWE415_61-CWE415_Double_Free__new_delete_char/1.json -------------------------------------------------------------------------------- /signature-db/CWE415_61-CWE415_Double_Free__new_delete_char/2.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prosyslab/tracer/HEAD/signature-db/CWE415_61-CWE415_Double_Free__new_delete_char/2.json -------------------------------------------------------------------------------- /signature-db/CWE415_61-CWE415_Double_Free__new_delete_int/1.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prosyslab/tracer/HEAD/signature-db/CWE415_61-CWE415_Double_Free__new_delete_int/1.json -------------------------------------------------------------------------------- /signature-db/CWE415_61-CWE415_Double_Free__new_delete_int/2.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prosyslab/tracer/HEAD/signature-db/CWE415_61-CWE415_Double_Free__new_delete_int/2.json -------------------------------------------------------------------------------- /signature-db/CWE415_61-CWE415_Double_Free__new_delete_long/1.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prosyslab/tracer/HEAD/signature-db/CWE415_61-CWE415_Double_Free__new_delete_long/1.json -------------------------------------------------------------------------------- /signature-db/CWE415_61-CWE415_Double_Free__new_delete_long/2.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prosyslab/tracer/HEAD/signature-db/CWE415_61-CWE415_Double_Free__new_delete_long/2.json -------------------------------------------------------------------------------- /signature-db/CWE415_63-CWE415_Double_Free__malloc_free_int/1.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prosyslab/tracer/HEAD/signature-db/CWE415_63-CWE415_Double_Free__malloc_free_int/1.json -------------------------------------------------------------------------------- /signature-db/CWE415_63-CWE415_Double_Free__malloc_free_int/2.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prosyslab/tracer/HEAD/signature-db/CWE415_63-CWE415_Double_Free__malloc_free_int/2.json -------------------------------------------------------------------------------- /signature-db/CWE415_63-CWE415_Double_Free__new_delete_char/1.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prosyslab/tracer/HEAD/signature-db/CWE415_63-CWE415_Double_Free__new_delete_char/1.json -------------------------------------------------------------------------------- /signature-db/CWE415_63-CWE415_Double_Free__new_delete_char/2.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prosyslab/tracer/HEAD/signature-db/CWE415_63-CWE415_Double_Free__new_delete_char/2.json -------------------------------------------------------------------------------- /signature-db/CWE415_63-CWE415_Double_Free__new_delete_int/1.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prosyslab/tracer/HEAD/signature-db/CWE415_63-CWE415_Double_Free__new_delete_int/1.json -------------------------------------------------------------------------------- /signature-db/CWE415_63-CWE415_Double_Free__new_delete_int/2.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prosyslab/tracer/HEAD/signature-db/CWE415_63-CWE415_Double_Free__new_delete_int/2.json -------------------------------------------------------------------------------- /signature-db/CWE415_63-CWE415_Double_Free__new_delete_long/1.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prosyslab/tracer/HEAD/signature-db/CWE415_63-CWE415_Double_Free__new_delete_long/1.json -------------------------------------------------------------------------------- /signature-db/CWE415_63-CWE415_Double_Free__new_delete_long/2.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prosyslab/tracer/HEAD/signature-db/CWE415_63-CWE415_Double_Free__new_delete_long/2.json -------------------------------------------------------------------------------- /signature-db/CWE415_64-CWE415_Double_Free__malloc_free_int/1.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prosyslab/tracer/HEAD/signature-db/CWE415_64-CWE415_Double_Free__malloc_free_int/1.json -------------------------------------------------------------------------------- /signature-db/CWE415_64-CWE415_Double_Free__malloc_free_int/2.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prosyslab/tracer/HEAD/signature-db/CWE415_64-CWE415_Double_Free__malloc_free_int/2.json -------------------------------------------------------------------------------- /signature-db/CWE415_64-CWE415_Double_Free__new_delete_char/1.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prosyslab/tracer/HEAD/signature-db/CWE415_64-CWE415_Double_Free__new_delete_char/1.json -------------------------------------------------------------------------------- /signature-db/CWE415_64-CWE415_Double_Free__new_delete_char/2.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prosyslab/tracer/HEAD/signature-db/CWE415_64-CWE415_Double_Free__new_delete_char/2.json -------------------------------------------------------------------------------- /signature-db/CWE415_64-CWE415_Double_Free__new_delete_int/1.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prosyslab/tracer/HEAD/signature-db/CWE415_64-CWE415_Double_Free__new_delete_int/1.json -------------------------------------------------------------------------------- /signature-db/CWE415_64-CWE415_Double_Free__new_delete_int/2.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prosyslab/tracer/HEAD/signature-db/CWE415_64-CWE415_Double_Free__new_delete_int/2.json -------------------------------------------------------------------------------- /signature-db/CWE415_64-CWE415_Double_Free__new_delete_long/1.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prosyslab/tracer/HEAD/signature-db/CWE415_64-CWE415_Double_Free__new_delete_long/1.json -------------------------------------------------------------------------------- /signature-db/CWE415_64-CWE415_Double_Free__new_delete_long/2.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prosyslab/tracer/HEAD/signature-db/CWE415_64-CWE415_Double_Free__new_delete_long/2.json -------------------------------------------------------------------------------- /signature-db/CWE415_65-CWE415_Double_Free__malloc_free_int/1.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prosyslab/tracer/HEAD/signature-db/CWE415_65-CWE415_Double_Free__malloc_free_int/1.json -------------------------------------------------------------------------------- /signature-db/CWE415_65-CWE415_Double_Free__malloc_free_int/2.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prosyslab/tracer/HEAD/signature-db/CWE415_65-CWE415_Double_Free__malloc_free_int/2.json -------------------------------------------------------------------------------- /signature-db/CWE415_65-CWE415_Double_Free__new_delete_char/1.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prosyslab/tracer/HEAD/signature-db/CWE415_65-CWE415_Double_Free__new_delete_char/1.json -------------------------------------------------------------------------------- /signature-db/CWE415_65-CWE415_Double_Free__new_delete_char/2.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prosyslab/tracer/HEAD/signature-db/CWE415_65-CWE415_Double_Free__new_delete_char/2.json -------------------------------------------------------------------------------- /signature-db/CWE415_65-CWE415_Double_Free__new_delete_int/1.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prosyslab/tracer/HEAD/signature-db/CWE415_65-CWE415_Double_Free__new_delete_int/1.json -------------------------------------------------------------------------------- /signature-db/CWE415_65-CWE415_Double_Free__new_delete_int/2.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prosyslab/tracer/HEAD/signature-db/CWE415_65-CWE415_Double_Free__new_delete_int/2.json -------------------------------------------------------------------------------- /signature-db/CWE415_65-CWE415_Double_Free__new_delete_long/1.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prosyslab/tracer/HEAD/signature-db/CWE415_65-CWE415_Double_Free__new_delete_long/1.json -------------------------------------------------------------------------------- /signature-db/CWE415_65-CWE415_Double_Free__new_delete_long/2.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prosyslab/tracer/HEAD/signature-db/CWE415_65-CWE415_Double_Free__new_delete_long/2.json -------------------------------------------------------------------------------- /signature-db/CWE415_66-CWE415_Double_Free__malloc_free_int/1.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prosyslab/tracer/HEAD/signature-db/CWE415_66-CWE415_Double_Free__malloc_free_int/1.json -------------------------------------------------------------------------------- /signature-db/CWE415_66-CWE415_Double_Free__malloc_free_int/2.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prosyslab/tracer/HEAD/signature-db/CWE415_66-CWE415_Double_Free__malloc_free_int/2.json -------------------------------------------------------------------------------- /signature-db/CWE415_66-CWE415_Double_Free__new_delete_char/1.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prosyslab/tracer/HEAD/signature-db/CWE415_66-CWE415_Double_Free__new_delete_char/1.json -------------------------------------------------------------------------------- /signature-db/CWE415_66-CWE415_Double_Free__new_delete_char/2.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prosyslab/tracer/HEAD/signature-db/CWE415_66-CWE415_Double_Free__new_delete_char/2.json -------------------------------------------------------------------------------- /signature-db/CWE415_66-CWE415_Double_Free__new_delete_int/1.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prosyslab/tracer/HEAD/signature-db/CWE415_66-CWE415_Double_Free__new_delete_int/1.json -------------------------------------------------------------------------------- /signature-db/CWE415_66-CWE415_Double_Free__new_delete_int/2.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prosyslab/tracer/HEAD/signature-db/CWE415_66-CWE415_Double_Free__new_delete_int/2.json -------------------------------------------------------------------------------- /signature-db/CWE415_66-CWE415_Double_Free__new_delete_long/1.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prosyslab/tracer/HEAD/signature-db/CWE415_66-CWE415_Double_Free__new_delete_long/1.json -------------------------------------------------------------------------------- /signature-db/CWE415_66-CWE415_Double_Free__new_delete_long/2.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prosyslab/tracer/HEAD/signature-db/CWE415_66-CWE415_Double_Free__new_delete_long/2.json -------------------------------------------------------------------------------- /signature-db/CWE415_81-CWE415_Double_Free__malloc_free_int/1.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prosyslab/tracer/HEAD/signature-db/CWE415_81-CWE415_Double_Free__malloc_free_int/1.json -------------------------------------------------------------------------------- /signature-db/CWE415_81-CWE415_Double_Free__new_delete_char/1.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prosyslab/tracer/HEAD/signature-db/CWE415_81-CWE415_Double_Free__new_delete_char/1.json -------------------------------------------------------------------------------- /signature-db/CWE415_81-CWE415_Double_Free__new_delete_int/1.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prosyslab/tracer/HEAD/signature-db/CWE415_81-CWE415_Double_Free__new_delete_int/1.json -------------------------------------------------------------------------------- /signature-db/CWE415_81-CWE415_Double_Free__new_delete_long/1.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prosyslab/tracer/HEAD/signature-db/CWE415_81-CWE415_Double_Free__new_delete_long/1.json -------------------------------------------------------------------------------- /signature-db/CWE415_82-CWE415_Double_Free__malloc_free_int/1.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prosyslab/tracer/HEAD/signature-db/CWE415_82-CWE415_Double_Free__malloc_free_int/1.json -------------------------------------------------------------------------------- /signature-db/CWE415_82-CWE415_Double_Free__new_delete_char/1.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prosyslab/tracer/HEAD/signature-db/CWE415_82-CWE415_Double_Free__new_delete_char/1.json -------------------------------------------------------------------------------- /signature-db/CWE415_82-CWE415_Double_Free__new_delete_int/1.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prosyslab/tracer/HEAD/signature-db/CWE415_82-CWE415_Double_Free__new_delete_int/1.json -------------------------------------------------------------------------------- /signature-db/CWE415_82-CWE415_Double_Free__new_delete_long/1.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prosyslab/tracer/HEAD/signature-db/CWE415_82-CWE415_Double_Free__new_delete_long/1.json -------------------------------------------------------------------------------- /signature-db/amanda-3.3.1/1.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prosyslab/tracer/HEAD/signature-db/amanda-3.3.1/1.json -------------------------------------------------------------------------------- /signature-db/autotrace-20200219.65/1.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prosyslab/tracer/HEAD/signature-db/autotrace-20200219.65/1.json -------------------------------------------------------------------------------- /signature-db/autotrace-20200219.65/10.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prosyslab/tracer/HEAD/signature-db/autotrace-20200219.65/10.json -------------------------------------------------------------------------------- /signature-db/autotrace-20200219.65/11.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prosyslab/tracer/HEAD/signature-db/autotrace-20200219.65/11.json -------------------------------------------------------------------------------- /signature-db/autotrace-20200219.65/12.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prosyslab/tracer/HEAD/signature-db/autotrace-20200219.65/12.json -------------------------------------------------------------------------------- /signature-db/autotrace-20200219.65/13.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prosyslab/tracer/HEAD/signature-db/autotrace-20200219.65/13.json -------------------------------------------------------------------------------- /signature-db/autotrace-20200219.65/14.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prosyslab/tracer/HEAD/signature-db/autotrace-20200219.65/14.json -------------------------------------------------------------------------------- /signature-db/autotrace-20200219.65/15.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prosyslab/tracer/HEAD/signature-db/autotrace-20200219.65/15.json -------------------------------------------------------------------------------- /signature-db/autotrace-20200219.65/16.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prosyslab/tracer/HEAD/signature-db/autotrace-20200219.65/16.json -------------------------------------------------------------------------------- /signature-db/autotrace-20200219.65/17.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prosyslab/tracer/HEAD/signature-db/autotrace-20200219.65/17.json -------------------------------------------------------------------------------- /signature-db/autotrace-20200219.65/18.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prosyslab/tracer/HEAD/signature-db/autotrace-20200219.65/18.json -------------------------------------------------------------------------------- /signature-db/autotrace-20200219.65/2.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prosyslab/tracer/HEAD/signature-db/autotrace-20200219.65/2.json -------------------------------------------------------------------------------- /signature-db/autotrace-20200219.65/3.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prosyslab/tracer/HEAD/signature-db/autotrace-20200219.65/3.json -------------------------------------------------------------------------------- /signature-db/autotrace-20200219.65/4.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prosyslab/tracer/HEAD/signature-db/autotrace-20200219.65/4.json -------------------------------------------------------------------------------- /signature-db/autotrace-20200219.65/5.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prosyslab/tracer/HEAD/signature-db/autotrace-20200219.65/5.json -------------------------------------------------------------------------------- /signature-db/autotrace-20200219.65/6.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prosyslab/tracer/HEAD/signature-db/autotrace-20200219.65/6.json -------------------------------------------------------------------------------- /signature-db/autotrace-20200219.65/7.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prosyslab/tracer/HEAD/signature-db/autotrace-20200219.65/7.json -------------------------------------------------------------------------------- /signature-db/autotrace-20200219.65/8.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prosyslab/tracer/HEAD/signature-db/autotrace-20200219.65/8.json -------------------------------------------------------------------------------- /signature-db/autotrace-20200219.65/9.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prosyslab/tracer/HEAD/signature-db/autotrace-20200219.65/9.json -------------------------------------------------------------------------------- /signature-db/buffer-overflow1/1.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prosyslab/tracer/HEAD/signature-db/buffer-overflow1/1.json -------------------------------------------------------------------------------- /signature-db/command-injection1/1.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prosyslab/tracer/HEAD/signature-db/command-injection1/1.json -------------------------------------------------------------------------------- /signature-db/command-injection2/1.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prosyslab/tracer/HEAD/signature-db/command-injection2/1.json -------------------------------------------------------------------------------- /signature-db/command-injection3/1.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prosyslab/tracer/HEAD/signature-db/command-injection3/1.json -------------------------------------------------------------------------------- /signature-db/command-injection4/1.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prosyslab/tracer/HEAD/signature-db/command-injection4/1.json -------------------------------------------------------------------------------- /signature-db/firejail-0.9.62/1.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prosyslab/tracer/HEAD/signature-db/firejail-0.9.62/1.json -------------------------------------------------------------------------------- /signature-db/gdk-pixbuf-2.36.11/1.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prosyslab/tracer/HEAD/signature-db/gdk-pixbuf-2.36.11/1.json -------------------------------------------------------------------------------- /signature-db/gimp-2.6.7/1.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prosyslab/tracer/HEAD/signature-db/gimp-2.6.7/1.json -------------------------------------------------------------------------------- /signature-db/gimp-2.6.7/2.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prosyslab/tracer/HEAD/signature-db/gimp-2.6.7/2.json -------------------------------------------------------------------------------- /signature-db/gimp-2.6.7/3.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prosyslab/tracer/HEAD/signature-db/gimp-2.6.7/3.json -------------------------------------------------------------------------------- /signature-db/gocr-0.40/1.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prosyslab/tracer/HEAD/signature-db/gocr-0.40/1.json -------------------------------------------------------------------------------- /signature-db/latex2rtf-2.1.1/1.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prosyslab/tracer/HEAD/signature-db/latex2rtf-2.1.1/1.json -------------------------------------------------------------------------------- /signature-db/libxcursor-1.1.14/1.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prosyslab/tracer/HEAD/signature-db/libxcursor-1.1.14/1.json -------------------------------------------------------------------------------- /signature-db/mp3rename-0.6/1.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prosyslab/tracer/HEAD/signature-db/mp3rename-0.6/1.json -------------------------------------------------------------------------------- /signature-db/mp3rename-0.6/2.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prosyslab/tracer/HEAD/signature-db/mp3rename-0.6/2.json -------------------------------------------------------------------------------- /signature-db/mp3rename-0.6/3.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prosyslab/tracer/HEAD/signature-db/mp3rename-0.6/3.json -------------------------------------------------------------------------------- /signature-db/optipng-0.5.3/1.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prosyslab/tracer/HEAD/signature-db/optipng-0.5.3/1.json -------------------------------------------------------------------------------- /signature-db/picocom-2.0a/1.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prosyslab/tracer/HEAD/signature-db/picocom-2.0a/1.json -------------------------------------------------------------------------------- /signature-db/picocom-2.0a/2.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prosyslab/tracer/HEAD/signature-db/picocom-2.0a/2.json -------------------------------------------------------------------------------- /signature-db/sam2p-0.49.4/1.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prosyslab/tracer/HEAD/signature-db/sam2p-0.49.4/1.json -------------------------------------------------------------------------------- /signature-db/sam2p-0.49.4/10.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prosyslab/tracer/HEAD/signature-db/sam2p-0.49.4/10.json -------------------------------------------------------------------------------- /signature-db/sam2p-0.49.4/11.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prosyslab/tracer/HEAD/signature-db/sam2p-0.49.4/11.json -------------------------------------------------------------------------------- /signature-db/sam2p-0.49.4/12.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prosyslab/tracer/HEAD/signature-db/sam2p-0.49.4/12.json -------------------------------------------------------------------------------- /signature-db/sam2p-0.49.4/13.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prosyslab/tracer/HEAD/signature-db/sam2p-0.49.4/13.json -------------------------------------------------------------------------------- /signature-db/sam2p-0.49.4/14.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prosyslab/tracer/HEAD/signature-db/sam2p-0.49.4/14.json -------------------------------------------------------------------------------- /signature-db/sam2p-0.49.4/15.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prosyslab/tracer/HEAD/signature-db/sam2p-0.49.4/15.json -------------------------------------------------------------------------------- /signature-db/sam2p-0.49.4/2.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prosyslab/tracer/HEAD/signature-db/sam2p-0.49.4/2.json -------------------------------------------------------------------------------- /signature-db/sam2p-0.49.4/3.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prosyslab/tracer/HEAD/signature-db/sam2p-0.49.4/3.json -------------------------------------------------------------------------------- /signature-db/sam2p-0.49.4/4.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prosyslab/tracer/HEAD/signature-db/sam2p-0.49.4/4.json -------------------------------------------------------------------------------- /signature-db/sam2p-0.49.4/5.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prosyslab/tracer/HEAD/signature-db/sam2p-0.49.4/5.json -------------------------------------------------------------------------------- /signature-db/sam2p-0.49.4/6.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prosyslab/tracer/HEAD/signature-db/sam2p-0.49.4/6.json -------------------------------------------------------------------------------- /signature-db/sam2p-0.49.4/7.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prosyslab/tracer/HEAD/signature-db/sam2p-0.49.4/7.json -------------------------------------------------------------------------------- /signature-db/sam2p-0.49.4/8.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prosyslab/tracer/HEAD/signature-db/sam2p-0.49.4/8.json -------------------------------------------------------------------------------- /signature-db/sam2p-0.49.4/9.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prosyslab/tracer/HEAD/signature-db/sam2p-0.49.4/9.json -------------------------------------------------------------------------------- /signature-db/schismtracker-20190722/1.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prosyslab/tracer/HEAD/signature-db/schismtracker-20190722/1.json -------------------------------------------------------------------------------- /signature-db/shntool-3.0.5/1.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prosyslab/tracer/HEAD/signature-db/shntool-3.0.5/1.json -------------------------------------------------------------------------------- /signature-db/shntool-3.0.5/2.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prosyslab/tracer/HEAD/signature-db/shntool-3.0.5/2.json -------------------------------------------------------------------------------- /signature-db/shntool-3.0.5/3.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prosyslab/tracer/HEAD/signature-db/shntool-3.0.5/3.json -------------------------------------------------------------------------------- /signature-db/shntool-3.0.5/4.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prosyslab/tracer/HEAD/signature-db/shntool-3.0.5/4.json -------------------------------------------------------------------------------- /signature-db/urjtag-0.8/1.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prosyslab/tracer/HEAD/signature-db/urjtag-0.8/1.json -------------------------------------------------------------------------------- /signature-db/urjtag-0.8/2.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prosyslab/tracer/HEAD/signature-db/urjtag-0.8/2.json -------------------------------------------------------------------------------- /signature-db/urjtag-0.8/3.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prosyslab/tracer/HEAD/signature-db/urjtag-0.8/3.json -------------------------------------------------------------------------------- /signature-db/urjtag-0.8/4.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prosyslab/tracer/HEAD/signature-db/urjtag-0.8/4.json -------------------------------------------------------------------------------- /signature-db/urjtag-0.8/5.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prosyslab/tracer/HEAD/signature-db/urjtag-0.8/5.json -------------------------------------------------------------------------------- /signature-db/urjtag-0.8/6.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prosyslab/tracer/HEAD/signature-db/urjtag-0.8/6.json -------------------------------------------------------------------------------- /signature-db/zsh-5.4.2/1.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prosyslab/tracer/HEAD/signature-db/zsh-5.4.2/1.json -------------------------------------------------------------------------------- /signature-db/zsh-5.4.2/2.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prosyslab/tracer/HEAD/signature-db/zsh-5.4.2/2.json -------------------------------------------------------------------------------- /test/Makefile: -------------------------------------------------------------------------------- 1 | all: 2 | clang -c test.c 3 | -------------------------------------------------------------------------------- /test/test.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prosyslab/tracer/HEAD/test/test.c --------------------------------------------------------------------------------