Flawfinder version 2.0.10, (C) 2001-2019 David A. Wheeler.
Number of rules (primarily dangerous function names) in C/C++ ruleset: 223
Examining data/ripperx-2.8.0/plugins/ripperX_plugin-8hz-mp3.c
Examining data/ripperx-2.8.0/plugins/ripperX_plugin-bladeenc.c
Examining data/ripperx-2.8.0/plugins/ripperX_plugin-cdparanoia.c
Examining data/ripperx-2.8.0/plugins/ripperX_plugin-encode.c
Examining data/ripperx-2.8.0/plugins/ripperX_plugin-flac.c
Examining data/ripperx-2.8.0/plugins/ripperX_plugin-gogo.c
Examining data/ripperx-2.8.0/plugins/ripperX_plugin-l3enc.c
Examining data/ripperx-2.8.0/plugins/ripperX_plugin-lame.c
Examining data/ripperx-2.8.0/plugins/ripperX_plugin-mp3enc.c
Examining data/ripperx-2.8.0/plugins/ripperX_plugin-musepack.c
Examining data/ripperx-2.8.0/plugins/ripperX_plugin-oggenc.c
Examining data/ripperx-2.8.0/plugins/ripperX_plugin-toolame.c
Examining data/ripperx-2.8.0/plugins/ripperX_plugin-xingmp3enc.c
Examining data/ripperx-2.8.0/plugins/ripperX_plugin_tester.c
Examining data/ripperx-2.8.0/src/calc_stat.c
Examining data/ripperx-2.8.0/src/calc_stat.h
Examining data/ripperx-2.8.0/src/cddb.c
Examining data/ripperx-2.8.0/src/cddb.h
Examining data/ripperx-2.8.0/src/cddbp.c
Examining data/ripperx-2.8.0/src/cddbp.h
Examining data/ripperx-2.8.0/src/common.h
Examining data/ripperx-2.8.0/src/config_rw.c
Examining data/ripperx-2.8.0/src/config_rw.h
Examining data/ripperx-2.8.0/src/config_window_handler.c
Examining data/ripperx-2.8.0/src/config_window_handler.h
Examining data/ripperx-2.8.0/src/dir_window_handler.c
Examining data/ripperx-2.8.0/src/dir_window_handler.h
Examining data/ripperx-2.8.0/src/err_dialog_handler.c
Examining data/ripperx-2.8.0/src/err_dialog_handler.h
Examining data/ripperx-2.8.0/src/gtk_cpp_workaround.h
Examining data/ripperx-2.8.0/src/interface_common.h
Examining data/ripperx-2.8.0/src/job_control.c
Examining data/ripperx-2.8.0/src/job_control.h
Examining data/ripperx-2.8.0/src/main.c
Examining data/ripperx-2.8.0/src/main.h
Examining data/ripperx-2.8.0/src/main_data.c
Examining data/ripperx-2.8.0/src/main_data.h
Examining data/ripperx-2.8.0/src/main_window_handler.c
Examining data/ripperx-2.8.0/src/main_window_handler.h
Examining data/ripperx-2.8.0/src/misc_utils.c
Examining data/ripperx-2.8.0/src/misc_utils.h
Examining data/ripperx-2.8.0/src/players_manipulation.c
Examining data/ripperx-2.8.0/src/players_manipulation.h
Examining data/ripperx-2.8.0/src/ripper_encoder_manipulation.c
Examining data/ripperx-2.8.0/src/ripper_encoder_manipulation.h
Examining data/ripperx-2.8.0/src/select_frame_handler.c
Examining data/ripperx-2.8.0/src/select_frame_handler.h
Examining data/ripperx-2.8.0/src/status_frame_handler.c
Examining data/ripperx-2.8.0/src/status_frame_handler.h
Examining data/ripperx-2.8.0/src/xpms.c

FINAL RESULTS:

data/ripperx-2.8.0/plugins/ripperX_plugin-bladeenc.c:21:3:  [4] (buffer) sscanf:
  The scanf() family's %s operation, without a limit specification, permits
  buffer overflows (CWE-120, CWE-20). Specify a limit to %s, or use a
  different input function.
		sscanf (temp, "Status:    %s", string);
data/ripperx-2.8.0/plugins/ripperX_plugin-musepack.c:38:5:  [4] (buffer) strcpy:
  Does not check for buffer overflows when copying to destination [MS-banned]
  (CWE-120). Consider using snprintf, strcpy_s, or strlcpy (warning: strncpy
  easily misused).
				strcpy( string , temp_ptr );
data/ripperx-2.8.0/plugins/ripperX_plugin-musepack.c:41:5:  [4] (buffer) strcpy:
  Does not check for buffer overflows when copying to destination [MS-banned]
  (CWE-120). Consider using snprintf, strcpy_s, or strlcpy (warning: strncpy
  easily misused).
				strcpy( string , temp);
data/ripperx-2.8.0/plugins/ripperX_plugin-toolame.c:23:17:  [4] (buffer) sscanf:
  The scanf() family's %s operation, without a limit specification, permits
  buffer overflows (CWE-120, CWE-20). Specify a limit to %s, or use a
  different input function.
                sscanf (&temp[1], "%s]", string);
data/ripperx-2.8.0/plugins/ripperX_plugin-xingmp3enc.c:21:3:  [4] (buffer) sscanf:
  The scanf() family's %s operation, without a limit specification, permits
  buffer overflows (CWE-120, CWE-20). Specify a limit to %s, or use a
  different input function.
		sscanf (temp, " %s%% [", string);
data/ripperx-2.8.0/plugins/ripperX_plugin_tester.c:51:2:  [4] (buffer) strcpy:
  Does not check for buffer overflows when copying to destination [MS-banned]
  (CWE-120). Consider using snprintf, strcpy_s, or strlcpy (warning: strncpy
  easily misused).
	strcpy (*dest, content);
data/ripperx-2.8.0/plugins/ripperX_plugin_tester.c:158:3:  [4] (shell) execvp:
  This causes a new program to execute and is difficult to use safely
  (CWE-78). try using a library call that implements the same functionality
  if available.
		execvp (plugin_argv[0], plugin_argv);
data/ripperx-2.8.0/plugins/ripperX_plugin_tester.c:186:3:  [4] (shell) execvp:
  This causes a new program to execute and is difficult to use safely
  (CWE-78). try using a library call that implements the same functionality
  if available.
		execvp (program_argv[0], program_argv);
data/ripperx-2.8.0/src/calc_stat.c:103:7:  [4] (buffer) strcpy:
  Does not check for buffer overflows when copying to destination [MS-banned]
  (CWE-120). Consider using snprintf, strcpy_s, or strlcpy (warning: strncpy
  easily misused).
      strcpy(stat->dest_file_name,
data/ripperx-2.8.0/src/calc_stat.c:112:7:  [4] (buffer) strcpy:
  Does not check for buffer overflows when copying to destination [MS-banned]
  (CWE-120). Consider using snprintf, strcpy_s, or strlcpy (warning: strncpy
  easily misused).
      strcpy(stat->src_file_name,
data/ripperx-2.8.0/src/calc_stat.c:114:7:  [4] (buffer) strcpy:
  Does not check for buffer overflows when copying to destination [MS-banned]
  (CWE-120). Consider using snprintf, strcpy_s, or strlcpy (warning: strncpy
  easily misused).
      strcpy(stat->dest_file_name,
data/ripperx-2.8.0/src/cddb.c:162:17:  [4] (buffer) strcpy:
  Does not check for buffer overflows when copying to destination [MS-banned]
  (CWE-120). Consider using snprintf, strcpy_s, or strlcpy (warning: strncpy
  easily misused).
                strcpy((*dtitle), mark);
data/ripperx-2.8.0/src/cddb.c:240:23:  [4] (buffer) strcpy:
  Does not check for buffer overflows when copying to destination [MS-banned]
  (CWE-120). Consider using snprintf, strcpy_s, or strlcpy (warning: strncpy
  easily misused).
    wwwserver = uri = strcpy(server_ptr.get(),server);
data/ripperx-2.8.0/src/cddb.c:431:5:  [4] (buffer) strcpy:
  Does not check for buffer overflows when copying to destination [MS-banned]
  (CWE-120). Consider using snprintf, strcpy_s, or strlcpy (warning: strncpy
  easily misused).
    strcpy(file_check, config.cddb_path);		/* start with the base path */
data/ripperx-2.8.0/src/cddb.c:433:5:  [4] (buffer) strcat:
  Does not check for buffer overflows when concatenating to destination
  [MS-banned] (CWE-120). Consider using strcat_s, strncat, strlcat, or
  snprintf (warning: strncat is easily misused).
    strcat(file_check, cd_id);				/* add the filename */
data/ripperx-2.8.0/src/cddb.c:708:17:  [4] (buffer) strcpy:
  Does not check for buffer overflows when copying to destination [MS-banned]
  (CWE-120). Consider using snprintf, strcpy_s, or strlcpy (warning: strncpy
  easily misused).
                strcpy(main_data->disc_artist, artist);
data/ripperx-2.8.0/src/cddb.c:719:17:  [4] (buffer) strcpy:
  Does not check for buffer overflows when copying to destination [MS-banned]
  (CWE-120). Consider using snprintf, strcpy_s, or strlcpy (warning: strncpy
  easily misused).
                strcpy(main_data->disc_title, dtitle);
data/ripperx-2.8.0/src/cddb.c:730:17:  [4] (buffer) strcpy:
  Does not check for buffer overflows when copying to destination [MS-banned]
  (CWE-120). Consider using snprintf, strcpy_s, or strlcpy (warning: strncpy
  easily misused).
                strcpy(main_data->disc_category, dgenre);
data/ripperx-2.8.0/src/cddb.c:741:17:  [4] (buffer) strcpy:
  Does not check for buffer overflows when copying to destination [MS-banned]
  (CWE-120). Consider using snprintf, strcpy_s, or strlcpy (warning: strncpy
  easily misused).
                strcpy(main_data->disc_year, year);
data/ripperx-2.8.0/src/cddbp.c:110:5:  [4] (buffer) sprintf:
  Does not check for buffer overflows (CWE-120). Use sprintf_s, snprintf, or
  vsnprintf.
    sprintf(buffer, "cddb query %s %d ", disk_id, tracknum);
data/ripperx-2.8.0/src/cddbp.c:116:9:  [4] (buffer) strcat:
  Does not check for buffer overflows when concatenating to destination
  [MS-banned] (CWE-120). Consider using strcat_s, strncat, strlcat, or
  snprintf (warning: strncat is easily misused).
        strcat(buffer, tmp);
data/ripperx-2.8.0/src/cddbp.c:120:5:  [4] (buffer) strcat:
  Does not check for buffer overflows when concatenating to destination
  [MS-banned] (CWE-120). Consider using strcat_s, strncat, strlcat, or
  snprintf (warning: strncat is easily misused).
    strcat(buffer, tmp);
data/ripperx-2.8.0/src/cddbp.c:348:5:  [4] (buffer) sprintf:
  Does not check for buffer overflows (CWE-120). Use sprintf_s, snprintf, or
  vsnprintf.
    sprintf(buffer, "GET /%s?cmd=cddb+query+%s+%d", URL, cd_id, tracknum);
data/ripperx-2.8.0/src/cddbp.c:353:9:  [4] (buffer) strcat:
  Does not check for buffer overflows when concatenating to destination
  [MS-banned] (CWE-120). Consider using strcat_s, strncat, strlcat, or
  snprintf (warning: strncat is easily misused).
        strcat(buffer, tmp);
data/ripperx-2.8.0/src/cddbp.c:357:5:  [4] (buffer) sprintf:
  Does not check for buffer overflows (CWE-120). Use sprintf_s, snprintf, or
  vsnprintf.
    sprintf(tmp, "+%d&hello=%s+%s+%s+%s&proto=1 HTTP/1.0\r\n\r\n", duration,
data/ripperx-2.8.0/src/cddbp.c:359:5:  [4] (buffer) strcat:
  Does not check for buffer overflows when concatenating to destination
  [MS-banned] (CWE-120). Consider using strcat_s, strncat, strlcat, or
  snprintf (warning: strncat is easily misused).
    strcat(buffer, tmp);
data/ripperx-2.8.0/src/cddbp.c:480:5:  [4] (buffer) sprintf:
  Does not check for buffer overflows (CWE-120). Use sprintf_s, snprintf, or
  vsnprintf.
    sprintf(buffer, "GET http://%s:%i/%s?cmd=cddb+query+%s+%d", server, port, URL, cd_id, tracknum);
data/ripperx-2.8.0/src/cddbp.c:485:9:  [4] (buffer) strcat:
  Does not check for buffer overflows when concatenating to destination
  [MS-banned] (CWE-120). Consider using strcat_s, strncat, strlcat, or
  snprintf (warning: strncat is easily misused).
        strcat(buffer, tmp);
data/ripperx-2.8.0/src/cddbp.c:489:5:  [4] (buffer) sprintf:
  Does not check for buffer overflows (CWE-120). Use sprintf_s, snprintf, or
  vsnprintf.
    sprintf(tmp, "+%d&hello=%s+%s+%s+%s&proto=1 HTTP/1.0\r\n\r\n", duration,
data/ripperx-2.8.0/src/cddbp.c:491:5:  [4] (buffer) strcat:
  Does not check for buffer overflows when concatenating to destination
  [MS-banned] (CWE-120). Consider using strcat_s, strncat, strlcat, or
  snprintf (warning: strncat is easily misused).
    strcat(buffer, tmp);
data/ripperx-2.8.0/src/config_window_handler.c:239:13:  [4] (buffer) strcpy:
  Does not check for buffer overflows when copying to destination [MS-banned]
  (CWE-120). Consider using snprintf, strcpy_s, or strlcpy (warning: strncpy
  easily misused).
            strcpy(config.wav_file_name_format,
data/ripperx-2.8.0/src/config_window_handler.c:241:13:  [4] (buffer) strcpy:
  Does not check for buffer overflows when copying to destination [MS-banned]
  (CWE-120). Consider using snprintf, strcpy_s, or strlcpy (warning: strncpy
  easily misused).
            strcpy(config.wav_path,
data/ripperx-2.8.0/src/config_window_handler.c:243:13:  [4] (buffer) strcpy:
  Does not check for buffer overflows when copying to destination [MS-banned]
  (CWE-120). Consider using snprintf, strcpy_s, or strlcpy (warning: strncpy
  easily misused).
            strcpy(config.mp3_file_name_format,
data/ripperx-2.8.0/src/config_window_handler.c:245:13:  [4] (buffer) strcpy:
  Does not check for buffer overflows when copying to destination [MS-banned]
  (CWE-120). Consider using snprintf, strcpy_s, or strlcpy (warning: strncpy
  easily misused).
            strcpy(config.mp3_path,
data/ripperx-2.8.0/src/config_window_handler.c:247:13:  [4] (buffer) strcpy:
  Does not check for buffer overflows when copying to destination [MS-banned]
  (CWE-120). Consider using snprintf, strcpy_s, or strlcpy (warning: strncpy
  easily misused).
            strcpy(buf,
data/ripperx-2.8.0/src/config_window_handler.c:393:13:  [4] (buffer) strcpy:
  Does not check for buffer overflows when copying to destination [MS-banned]
  (CWE-120). Consider using snprintf, strcpy_s, or strlcpy (warning: strncpy
  easily misused).
            strcpy(config.ripper.ripper, plugins[ temp ].ripper);
data/ripperx-2.8.0/src/config_window_handler.c:396:13:  [4] (buffer) strcpy:
  Does not check for buffer overflows when copying to destination [MS-banned]
  (CWE-120). Consider using snprintf, strcpy_s, or strlcpy (warning: strncpy
  easily misused).
            strcpy(config.ripper.plugin, plugins[ temp ].plugin);
data/ripperx-2.8.0/src/config_window_handler.c:401:21:  [4] (buffer) sprintf:
  Does not check for buffer overflows (CWE-120). Use sprintf_s, snprintf, or
  vsnprintf.
                    sprintf(config.ripper.ripper + options_offset + option_length * i, "%s",
data/ripperx-2.8.0/src/config_window_handler.c:409:13:  [4] (buffer) strcpy:
  Does not check for buffer overflows when copying to destination [MS-banned]
  (CWE-120). Consider using snprintf, strcpy_s, or strlcpy (warning: strncpy
  easily misused).
            strcpy(config.ripper.ripper + extra_options_offset,
data/ripperx-2.8.0/src/config_window_handler.c:659:13:  [4] (buffer) strcpy:
  Does not check for buffer overflows when copying to destination [MS-banned]
  (CWE-120). Consider using snprintf, strcpy_s, or strlcpy (warning: strncpy
  easily misused).
            strcpy(config.encoder.encoder, plugins[ cur_plugin ].encoder);
data/ripperx-2.8.0/src/config_window_handler.c:660:13:  [4] (buffer) strcpy:
  Does not check for buffer overflows when copying to destination [MS-banned]
  (CWE-120). Consider using snprintf, strcpy_s, or strlcpy (warning: strncpy
  easily misused).
            strcpy(config.encoder.plugin, plugins[ cur_plugin ].plugin);
data/ripperx-2.8.0/src/config_window_handler.c:902:13:  [4] (buffer) strcpy:
  Does not check for buffer overflows when copying to destination [MS-banned]
  (CWE-120). Consider using snprintf, strcpy_s, or strlcpy (warning: strncpy
  easily misused).
            strcpy(config.cd_player.play_command,
data/ripperx-2.8.0/src/config_window_handler.c:904:13:  [4] (buffer) strcpy:
  Does not check for buffer overflows when copying to destination [MS-banned]
  (CWE-120). Consider using snprintf, strcpy_s, or strlcpy (warning: strncpy
  easily misused).
            strcpy(config.cd_player.stop_command,
data/ripperx-2.8.0/src/config_window_handler.c:906:13:  [4] (buffer) strcpy:
  Does not check for buffer overflows when copying to destination [MS-banned]
  (CWE-120). Consider using snprintf, strcpy_s, or strlcpy (warning: strncpy
  easily misused).
            strcpy(config.wav_player.command,
data/ripperx-2.8.0/src/config_window_handler.c:908:13:  [4] (buffer) strcpy:
  Does not check for buffer overflows when copying to destination [MS-banned]
  (CWE-120). Consider using snprintf, strcpy_s, or strlcpy (warning: strncpy
  easily misused).
            strcpy(config.mp3_player.command,
data/ripperx-2.8.0/src/config_window_handler.c:1055:13:  [4] (buffer) strcpy:
  Does not check for buffer overflows when copying to destination [MS-banned]
  (CWE-120). Consider using snprintf, strcpy_s, or strlcpy (warning: strncpy
  easily misused).
            strcpy(config.cddb_config.format_string,
data/ripperx-2.8.0/src/config_window_handler.c:1058:13:  [4] (buffer) strcpy:
  Does not check for buffer overflows when copying to destination [MS-banned]
  (CWE-120). Consider using snprintf, strcpy_s, or strlcpy (warning: strncpy
  easily misused).
            strcpy(config.cddb_config.dir_format_string,
data/ripperx-2.8.0/src/config_window_handler.c:1190:13:  [4] (buffer) strcpy:
  Does not check for buffer overflows when copying to destination [MS-banned]
  (CWE-120). Consider using snprintf, strcpy_s, or strlcpy (warning: strncpy
  easily misused).
            strcpy(config.cddb_config.server,
data/ripperx-2.8.0/src/config_window_handler.c:1195:13:  [4] (buffer) strcpy:
  Does not check for buffer overflows when copying to destination [MS-banned]
  (CWE-120). Consider using snprintf, strcpy_s, or strlcpy (warning: strncpy
  easily misused).
            strcpy(config.cddb_config.proxy_server,
data/ripperx-2.8.0/src/config_window_handler.c:1200:13:  [4] (buffer) strcpy:
  Does not check for buffer overflows when copying to destination [MS-banned]
  (CWE-120). Consider using snprintf, strcpy_s, or strlcpy (warning: strncpy
  easily misused).
            strcpy(config.cddb_path,
data/ripperx-2.8.0/src/err_dialog_handler.c:320:13:  [4] (buffer) strcpy:
  Does not check for buffer overflows when copying to destination [MS-banned]
  (CWE-120). Consider using snprintf, strcpy_s, or strlcpy (warning: strncpy
  easily misused).
            strcpy(saved_entered, gtk_entry_get_text(GTK_ENTRY(entry)));
data/ripperx-2.8.0/src/job_control.c:144:21:  [4] (buffer) strcpy:
  Does not check for buffer overflows when copying to destination [MS-banned]
  (CWE-120). Consider using snprintf, strcpy_s, or strlcpy (warning: strncpy
  easily misused).
                    strcpy(buf, temp);
data/ripperx-2.8.0/src/job_control.c:146:21:  [4] (buffer) strcpy:
  Does not check for buffer overflows when copying to destination [MS-banned]
  (CWE-120). Consider using snprintf, strcpy_s, or strlcpy (warning: strncpy
  easily misused).
                    strcpy(temp + 1, buf);
data/ripperx-2.8.0/src/job_control.c:174:17:  [4] (buffer) strcpy:
  Does not check for buffer overflows when copying to destination [MS-banned]
  (CWE-120). Consider using snprintf, strcpy_s, or strlcpy (warning: strncpy
  easily misused).
                strcpy(buf, temp);
data/ripperx-2.8.0/src/job_control.c:185:17:  [4] (buffer) strcpy:
  Does not check for buffer overflows when copying to destination [MS-banned]
  (CWE-120). Consider using snprintf, strcpy_s, or strlcpy (warning: strncpy
  easily misused).
                strcpy(temp, buf);
data/ripperx-2.8.0/src/main_data.c:142:13:  [4] (buffer) sprintf:
  Does not check for buffer overflows (CWE-120). Use sprintf_s, snprintf, or
  vsnprintf.
            sprintf(&buffer[strlen(buffer)], "%d: %s\n", ++tracksdone, file_name_without_path(wav_file));
data/ripperx-2.8.0/src/main_data.c:175:13:  [4] (buffer) sprintf:
  Does not check for buffer overflows (CWE-120). Use sprintf_s, snprintf, or
  vsnprintf.
            sprintf(&buffer[strlen(buffer)], "%d: %s\n", ++tracksdone, file_name_without_path(enc_file));
data/ripperx-2.8.0/src/main_data.c:182:21:  [4] (buffer) sprintf:
  Does not check for buffer overflows (CWE-120). Use sprintf_s, snprintf, or
  vsnprintf.
                    sprintf(playlist_filespec, "%s/playlist.m3u", file_path_without_name(enc_file));
data/ripperx-2.8.0/src/main_data.c:203:5:  [4] (buffer) sprintf:
  Does not check for buffer overflows (CWE-120). Use sprintf_s, snprintf, or
  vsnprintf.
    sprintf(status_message, _("Tracks Completed: %2d\n\nArtist: %s\nAlbum: %s\n\n%s"),
data/ripperx-2.8.0/src/main_window_handler.c:272:13:  [4] (buffer) sprintf:
  Does not check for buffer overflows (CWE-120). Use sprintf_s, snprintf, or
  vsnprintf.
            sprintf(welcome_msg_buf, " RipperX, v%s", VERSION);
data/ripperx-2.8.0/src/misc_utils.c:72:10:  [4] (shell) execlp:
  This causes a new program to execute and is difficult to use safely
  (CWE-78). try using a library call that implements the same functionality
  if available.
  return execlp(config.shell_for_execution, 
data/ripperx-2.8.0/src/misc_utils.c:165:21:  [4] (buffer) strcpy:
  Does not check for buffer overflows when copying to destination [MS-banned]
  (CWE-120). Consider using snprintf, strcpy_s, or strlcpy (warning: strncpy
  easily misused).
                    strcpy(bp + d, tmp);
data/ripperx-2.8.0/src/misc_utils.c:219:5:  [4] (buffer) strcpy:
  Does not check for buffer overflows when copying to destination [MS-banned]
  (CWE-120). Consider using snprintf, strcpy_s, or strlcpy (warning: strncpy
  easily misused).
    strcpy(buf, getenv("HOME"));
data/ripperx-2.8.0/src/misc_utils.c:220:5:  [4] (buffer) strcpy:
  Does not check for buffer overflows when copying to destination [MS-banned]
  (CWE-120). Consider using snprintf, strcpy_s, or strlcpy (warning: strncpy
  easily misused).
    strcpy(buf + strlen(buf), path + 1);
data/ripperx-2.8.0/src/misc_utils.c:229:5:  [4] (buffer) strcpy:
  Does not check for buffer overflows when copying to destination [MS-banned]
  (CWE-120). Consider using snprintf, strcpy_s, or strlcpy (warning: strncpy
  easily misused).
    strcpy(buf, path);
data/ripperx-2.8.0/src/misc_utils.c:239:5:  [4] (buffer) strcpy:
  Does not check for buffer overflows when copying to destination [MS-banned]
  (CWE-120). Consider using snprintf, strcpy_s, or strlcpy (warning: strncpy
  easily misused).
    strcpy(buf + offset, name);
data/ripperx-2.8.0/src/misc_utils.c:354:13:  [4] (buffer) strcpy:
  Does not check for buffer overflows when copying to destination [MS-banned]
  (CWE-120). Consider using snprintf, strcpy_s, or strlcpy (warning: strncpy
  easily misused).
            strcpy(name_buf + write_offset, track_no_buf);
data/ripperx-2.8.0/src/misc_utils.c:838:9:  [4] (buffer) sprintf:
  Does not check for buffer overflows (CWE-120). Use sprintf_s, snprintf, or
  vsnprintf.
        sprintf(*active, "%s%s", *inactive, tmp.get());
data/ripperx-2.8.0/src/misc_utils.c:884:9:  [4] (buffer) sprintf:
  Does not check for buffer overflows (CWE-120). Use sprintf_s, snprintf, or
  vsnprintf.
        sprintf(*active, "%s%s", *inactive, tmp);
data/ripperx-2.8.0/src/misc_utils.c:940:9:  [4] (buffer) sprintf:
  Does not check for buffer overflows (CWE-120). Use sprintf_s, snprintf, or
  vsnprintf.
        sprintf(*dest, "%s%s", holder, appendage);
data/ripperx-2.8.0/src/misc_utils.c:1009:12:  [4] (shell) popen:
  This causes a new program to execute and is difficult to use safely
  (CWE-78). try using a library call that implements the same functionality
  if available.
    file = popen(cmd, "r");
data/ripperx-2.8.0/src/misc_utils.c:1020:10:  [4] (race) access:
  This usually indicates a security flaw. If an attacker can change anything
  along the path between the call to access() and the file's actual use
  (e.g., by moving files), the attacker can exploit the race condition
  (CWE-362/CWE-367!). Set up the correct permissions (e.g., using setuid())
  and try to open the file directly.
    rc = access(dir, F_OK);
data/ripperx-2.8.0/src/misc_utils.c:1039:10:  [4] (race) access:
  This usually indicates a security flaw. If an attacker can change anything
  along the path between the call to access() and the file's actual use
  (e.g., by moving files), the attacker can exploit the race condition
  (CWE-362/CWE-367!). Set up the correct permissions (e.g., using setuid())
  and try to open the file directly.
    rc = access(dir, X_OK | W_OK | R_OK);
data/ripperx-2.8.0/src/misc_utils.c:1102:10:  [4] (shell) popen:
  This causes a new program to execute and is difficult to use safely
  (CWE-78). try using a library call that implements the same functionality
  if available.
    pf = popen(cmd, "r");
data/ripperx-2.8.0/src/misc_utils.c:1235:9:  [4] (buffer) strcpy:
  Does not check for buffer overflows when copying to destination [MS-banned]
  (CWE-120). Consider using snprintf, strcpy_s, or strlcpy (warning: strncpy
  easily misused).
        strcpy(buffer, main_data->track[ track ].title);
data/ripperx-2.8.0/src/misc_utils.c:1273:9:  [4] (buffer) sprintf:
  Does not check for buffer overflows (CWE-120). Use sprintf_s, snprintf, or
  vsnprintf.
        sprintf(dest, "%s / %s", tk_p->artist, tk_p->title);
data/ripperx-2.8.0/src/misc_utils.c:1338:12:  [4] (buffer) strcpy:
  Does not check for buffer overflows when copying to destination [MS-banned]
  (CWE-120). Consider using snprintf, strcpy_s, or strlcpy (warning: strncpy
  easily misused).
    return strcpy(out, inp);
data/ripperx-2.8.0/src/misc_utils.c:1367:9:  [4] (buffer) strcpy:
  Does not check for buffer overflows when copying to destination [MS-banned]
  (CWE-120). Consider using snprintf, strcpy_s, or strlcpy (warning: strncpy
  easily misused).
        strcpy(*ptr, inp);
data/ripperx-2.8.0/src/misc_utils.c:1398:9:  [4] (buffer) strcpy:
  Does not check for buffer overflows when copying to destination [MS-banned]
  (CWE-120). Consider using snprintf, strcpy_s, or strlcpy (warning: strncpy
  easily misused).
        strcpy(cpb, cp);
data/ripperx-2.8.0/src/players_manipulation.c:80:5:  [4] (buffer) strcpy:
  Does not check for buffer overflows when copying to destination [MS-banned]
  (CWE-120). Consider using snprintf, strcpy_s, or strlcpy (warning: strncpy
  easily misused).
    strcpy(buf, command);
data/ripperx-2.8.0/src/ripper_encoder_manipulation.c:81:9:  [4] (buffer) strcpy:
  Does not check for buffer overflows when copying to destination [MS-banned]
  (CWE-120). Consider using snprintf, strcpy_s, or strlcpy (warning: strncpy
  easily misused).
        strcpy(errmsg, buf);
data/ripperx-2.8.0/src/ripper_encoder_manipulation.c:229:5:  [4] (buffer) sprintf:
  Does not check for buffer overflows (CWE-120). Use sprintf_s, snprintf, or
  vsnprintf.
    sprintf(tmp, "%s -Q", config.ripper.ripper);
data/ripperx-2.8.0/src/ripper_encoder_manipulation.c:385:9:  [4] (buffer) strcat:
  Does not check for buffer overflows when concatenating to destination
  [MS-banned] (CWE-120). Consider using strcat_s, strncat, strlcat, or
  snprintf (warning: strncat is easily misused).
        strcat(debian_path, getenv("PATH"));
data/ripperx-2.8.0/src/select_frame_handler.c:455:13:  [4] (buffer) strcpy:
  Does not check for buffer overflows when copying to destination [MS-banned]
  (CWE-120). Consider using snprintf, strcpy_s, or strlcpy (warning: strncpy
  easily misused).
            strcpy(saved_main_data->disc_artist,
data/ripperx-2.8.0/src/select_frame_handler.c:461:13:  [4] (buffer) strcpy:
  Does not check for buffer overflows when copying to destination [MS-banned]
  (CWE-120). Consider using snprintf, strcpy_s, or strlcpy (warning: strncpy
  easily misused).
            strcpy(saved_main_data->disc_title,
data/ripperx-2.8.0/src/select_frame_handler.c:467:13:  [4] (buffer) strcpy:
  Does not check for buffer overflows when copying to destination [MS-banned]
  (CWE-120). Consider using snprintf, strcpy_s, or strlcpy (warning: strncpy
  easily misused).
            strcpy(saved_main_data->disc_year,
data/ripperx-2.8.0/src/select_frame_handler.c:473:13:  [4] (buffer) strcpy:
  Does not check for buffer overflows when copying to destination [MS-banned]
  (CWE-120). Consider using snprintf, strcpy_s, or strlcpy (warning: strncpy
  easily misused).
            strcpy(saved_main_data->disc_category,
data/ripperx-2.8.0/src/select_frame_handler.c:493:17:  [4] (buffer) strcpy:
  Does not check for buffer overflows when copying to destination [MS-banned]
  (CWE-120). Consider using snprintf, strcpy_s, or strlcpy (warning: strncpy
  easily misused).
                strcpy(saved_filename_entry[ track ],
data/ripperx-2.8.0/src/config_rw.c:266:42:  [3] (buffer) getenv:
  Environment variables are untrustable input if they can be set by an
  attacker. They can have any content and length, and the same variable can
  be set more than once (CWE-807, CWE-20). Check environment variables
  carefully before using them.
  ofstream file(construct_file_name(std::getenv("HOME"), ".ripperXrc"));
data/ripperx-2.8.0/src/config_rw.c:296:42:  [3] (buffer) getenv:
  Environment variables are untrustable input if they can be set by an
  attacker. They can have any content and length, and the same variable can
  be set more than once (CWE-807, CWE-20). Check environment variables
  carefully before using them.
  std::ifstream file(construct_file_name(getenv("HOME"), ".ripperXrc"));
data/ripperx-2.8.0/src/misc_utils.c:219:17:  [3] (buffer) getenv:
  Environment variables are untrustable input if they can be set by an
  attacker. They can have any content and length, and the same variable can
  be set more than once (CWE-807, CWE-20). Check environment variables
  carefully before using them.
    strcpy(buf, getenv("HOME"));
data/ripperx-2.8.0/src/ripper_encoder_manipulation.c:379:18:  [3] (buffer) getenv:
  Environment variables are untrustable input if they can be set by an
  attacker. They can have any content and length, and the same variable can
  be set more than once (CWE-807, CWE-20). Check environment variables
  carefully before using them.
    char *path = getenv("PATH");
data/ripperx-2.8.0/src/ripper_encoder_manipulation.c:385:29:  [3] (buffer) getenv:
  Environment variables are untrustable input if they can be set by an
  attacker. They can have any content and length, and the same variable can
  be set more than once (CWE-807, CWE-20). Check environment variables
  carefully before using them.
        strcat(debian_path, getenv("PATH"));
data/ripperx-2.8.0/plugins/ripperX_plugin-8hz-mp3.c:22:9:  [2] (buffer) char:
  Statically-sized arrays can be improperly restricted, leading to potential
  overflows or other issues (CWE-119!/CWE-120). Perform bounds checking, use
  functions that limit length, or ensure that the size is larger than the
  maximum possible length.
	static char buf[A8HZ_MP3_OUTPUT_BUF_LENGTH];
data/ripperx-2.8.0/plugins/ripperX_plugin-bladeenc.c:15:2:  [2] (buffer) char:
  Statically-sized arrays can be improperly restricted, leading to potential
  overflows or other issues (CWE-119!/CWE-120). Perform bounds checking, use
  functions that limit length, or ensure that the size is larger than the
  maximum possible length.
	char temp[OUTPUT_BUF_LENGTH];
data/ripperx-2.8.0/plugins/ripperX_plugin-bladeenc.c:16:2:  [2] (buffer) char:
  Statically-sized arrays can be improperly restricted, leading to potential
  overflows or other issues (CWE-119!/CWE-120). Perform bounds checking, use
  functions that limit length, or ensure that the size is larger than the
  maximum possible length.
	char string[OUTPUT_BUF_LENGTH];
data/ripperx-2.8.0/plugins/ripperX_plugin-cdparanoia.c:25:9:  [2] (buffer) char:
  Statically-sized arrays can be improperly restricted, leading to potential
  overflows or other issues (CWE-119!/CWE-120). Perform bounds checking, use
  functions that limit length, or ensure that the size is larger than the
  maximum possible length.
	static char buf[CDPARANOIA_OUTPUT_BUF_LENGTH];
data/ripperx-2.8.0/plugins/ripperX_plugin-cdparanoia.c:26:9:  [2] (buffer) char:
  Statically-sized arrays can be improperly restricted, leading to potential
  overflows or other issues (CWE-119!/CWE-120). Perform bounds checking, use
  functions that limit length, or ensure that the size is larger than the
  maximum possible length.
	static char status[CDPARANOIA_STAT_LENGTH + 1];
data/ripperx-2.8.0/plugins/ripperX_plugin-cdparanoia.c:27:9:  [2] (buffer) char:
  Statically-sized arrays can be improperly restricted, leading to potential
  overflows or other issues (CWE-119!/CWE-120). Perform bounds checking, use
  functions that limit length, or ensure that the size is larger than the
  maximum possible length.
	static char graph[CDPARANOIA_GRAPH_LENGTH + 1];
data/ripperx-2.8.0/plugins/ripperX_plugin-encode.c:24:9:  [2] (buffer) char:
  Statically-sized arrays can be improperly restricted, leading to potential
  overflows or other issues (CWE-119!/CWE-120). Perform bounds checking, use
  functions that limit length, or ensure that the size is larger than the
  maximum possible length.
	static char buf[AENCODER_OUTPUT_BUF_LENGTH];
data/ripperx-2.8.0/plugins/ripperX_plugin-encode.c:25:9:  [2] (buffer) char:
  Statically-sized arrays can be improperly restricted, leading to potential
  overflows or other issues (CWE-119!/CWE-120). Perform bounds checking, use
  functions that limit length, or ensure that the size is larger than the
  maximum possible length.
	static char status[AENCODER_STATUS_LENGTH];
data/ripperx-2.8.0/plugins/ripperX_plugin-flac.c:27:2:  [2] (buffer) char:
  Statically-sized arrays can be improperly restricted, leading to potential
  overflows or other issues (CWE-119!/CWE-120). Perform bounds checking, use
  functions that limit length, or ensure that the size is larger than the
  maximum possible length.
	char temp[FLAC_OUTPUT_BUF_LENGTH];
data/ripperx-2.8.0/plugins/ripperX_plugin-flac.c:41:16:  [2] (integer) atoi:
  Unless checked, the resulting number can exceed the expected range
  (CWE-190). If source untrusted, check both minimum and maximum, even if the
  input had no minus sign (large numbers can roll over into negative number;
  consider saving to an unsigned value if that is intended).
				*current = atoi(p);
data/ripperx-2.8.0/plugins/ripperX_plugin-gogo.c:27:2:  [2] (buffer) char:
  Statically-sized arrays can be improperly restricted, leading to potential
  overflows or other issues (CWE-119!/CWE-120). Perform bounds checking, use
  functions that limit length, or ensure that the size is larger than the
  maximum possible length.
	char temp[GOGO_OUTPUT_BUF_LENGTH];
data/ripperx-2.8.0/plugins/ripperX_plugin-l3enc.c:15:2:  [2] (buffer) char:
  Statically-sized arrays can be improperly restricted, leading to potential
  overflows or other issues (CWE-119!/CWE-120). Perform bounds checking, use
  functions that limit length, or ensure that the size is larger than the
  maximum possible length.
	char temp[OUTPUT_BUF_LENGTH];
data/ripperx-2.8.0/plugins/ripperX_plugin-l3enc.c:24:14:  [2] (integer) atoi:
  Unless checked, the resulting number can exceed the expected range
  (CWE-190). If source untrusted, check both minimum and maximum, even if the
  input had no minus sign (large numbers can roll over into negative number;
  consider saving to an unsigned value if that is intended).
		*percent = atoi (string1);
data/ripperx-2.8.0/plugins/ripperX_plugin-lame.c:17:2:  [2] (buffer) char:
  Statically-sized arrays can be improperly restricted, leading to potential
  overflows or other issues (CWE-119!/CWE-120). Perform bounds checking, use
  functions that limit length, or ensure that the size is larger than the
  maximum possible length.
	char temp[OUTPUT_BUF_LENGTH];
data/ripperx-2.8.0/plugins/ripperX_plugin-mp3enc.c:15:2:  [2] (buffer) char:
  Statically-sized arrays can be improperly restricted, leading to potential
  overflows or other issues (CWE-119!/CWE-120). Perform bounds checking, use
  functions that limit length, or ensure that the size is larger than the
  maximum possible length.
	char temp[OUTPUT_BUF_LENGTH];
data/ripperx-2.8.0/plugins/ripperX_plugin-musepack.c:19:2:  [2] (buffer) char:
  Statically-sized arrays can be improperly restricted, leading to potential
  overflows or other issues (CWE-119!/CWE-120). Perform bounds checking, use
  functions that limit length, or ensure that the size is larger than the
  maximum possible length.
	char temp[MUSE_OUTPUT_BUF_LENGTH];
data/ripperx-2.8.0/plugins/ripperX_plugin-musepack.c:20:2:  [2] (buffer) char:
  Statically-sized arrays can be improperly restricted, leading to potential
  overflows or other issues (CWE-119!/CWE-120). Perform bounds checking, use
  functions that limit length, or ensure that the size is larger than the
  maximum possible length.
	char string[MUSE_OUTPUT_BUF_LENGTH];
data/ripperx-2.8.0/plugins/ripperX_plugin-oggenc.c:45:2:  [2] (buffer) char:
  Statically-sized arrays can be improperly restricted, leading to potential
  overflows or other issues (CWE-119!/CWE-120). Perform bounds checking, use
  functions that limit length, or ensure that the size is larger than the
  maximum possible length.
	char temp[OGG_OUTPUT_BUF_LENGTH];
data/ripperx-2.8.0/plugins/ripperX_plugin-oggenc.c:47:2:  [2] (buffer) char:
  Statically-sized arrays can be improperly restricted, leading to potential
  overflows or other issues (CWE-119!/CWE-120). Perform bounds checking, use
  functions that limit length, or ensure that the size is larger than the
  maximum possible length.
	char input[OGG_OUTPUT_BUF_LENGTH];
data/ripperx-2.8.0/plugins/ripperX_plugin-toolame.c:16:2:  [2] (buffer) char:
  Statically-sized arrays can be improperly restricted, leading to potential
  overflows or other issues (CWE-119!/CWE-120). Perform bounds checking, use
  functions that limit length, or ensure that the size is larger than the
  maximum possible length.
	char temp[OUTPUT_BUF_LENGTH];
data/ripperx-2.8.0/plugins/ripperX_plugin-toolame.c:17:2:  [2] (buffer) char:
  Statically-sized arrays can be improperly restricted, leading to potential
  overflows or other issues (CWE-119!/CWE-120). Perform bounds checking, use
  functions that limit length, or ensure that the size is larger than the
  maximum possible length.
	char string[100];
data/ripperx-2.8.0/plugins/ripperX_plugin-toolame.c:24:28:  [2] (integer) atoi:
  Unless checked, the resulting number can exceed the expected range
  (CWE-190). If source untrusted, check both minimum and maximum, even if the
  input had no minus sign (large numbers can roll over into negative number;
  consider saving to an unsigned value if that is intended).
                *current = atoi(string);
data/ripperx-2.8.0/plugins/ripperX_plugin-xingmp3enc.c:15:2:  [2] (buffer) char:
  Statically-sized arrays can be improperly restricted, leading to potential
  overflows or other issues (CWE-119!/CWE-120). Perform bounds checking, use
  functions that limit length, or ensure that the size is larger than the
  maximum possible length.
	char temp[OUTPUT_BUF_LENGTH];
data/ripperx-2.8.0/plugins/ripperX_plugin-xingmp3enc.c:16:2:  [2] (buffer) char:
  Statically-sized arrays can be improperly restricted, leading to potential
  overflows or other issues (CWE-119!/CWE-120). Perform bounds checking, use
  functions that limit length, or ensure that the size is larger than the
  maximum possible length.
	char string[OUTPUT_BUF_LENGTH];
data/ripperx-2.8.0/plugins/ripperX_plugin_tester.c:58:2:  [2] (buffer) char:
  Statically-sized arrays can be improperly restricted, leading to potential
  overflows or other issues (CWE-119!/CWE-120). Perform bounds checking, use
  functions that limit length, or ensure that the size is larger than the
  maximum possible length.
	char line[12];
data/ripperx-2.8.0/plugins/ripperX_plugin_tester.c:63:2:  [2] (buffer) sprintf:
  Does not check for buffer overflows (CWE-120). Use sprintf_s, snprintf, or
  vsnprintf. Risk is low because the source has a constant maximum length.
	sprintf (line, "/dev/ptyXX");
data/ripperx-2.8.0/plugins/ripperX_plugin_tester.c:81:11:  [2] (misc) open:
  Check when opening files - can an attacker redirect it (via symlinks),
  force the opening of special file type (e.g., device files), move things
  around to create a race condition, control its ancestors, or change its
  contents? (CWE-362).
			*pty = open (line, O_RDWR);
data/ripperx-2.8.0/plugins/ripperX_plugin_tester.c:85:17:  [2] (misc) open:
  Check when opening files - can an attacker redirect it (via symlinks),
  force the opening of special file type (e.g., device files), move things
  around to create a race condition, control its ancestors, or change its
  contents? (CWE-362).
				if ((*tty = open (line, O_RDWR)) < 0) {
data/ripperx-2.8.0/plugins/ripperX_plugin_tester.c:201:2:  [2] (buffer) char:
  Statically-sized arrays can be improperly restricted, leading to potential
  overflows or other issues (CWE-119!/CWE-120). Perform bounds checking, use
  functions that limit length, or ensure that the size is larger than the
  maximum possible length.
	char buf[1024];
data/ripperx-2.8.0/plugins/ripperX_plugin_tester.c:312:2:  [2] (buffer) char:
  Statically-sized arrays can be improperly restricted, leading to potential
  overflows or other issues (CWE-119!/CWE-120). Perform bounds checking, use
  functions that limit length, or ensure that the size is larger than the
  maximum possible length.
	char msg[1024];
data/ripperx-2.8.0/src/cddb.c:60:5:  [2] (buffer) char:
  Statically-sized arrays can be improperly restricted, leading to potential
  overflows or other issues (CWE-119!/CWE-120). Perform bounds checking, use
  functions that limit length, or ensure that the size is larger than the
  maximum possible length.
    char tempbuf[ MAX_CDDB_LENGTH+1 ];
data/ripperx-2.8.0/src/cddb.c:244:5:  [2] (buffer) sprintf:
  Does not check for buffer overflows (CWE-120). Use sprintf_s, snprintf, or
  vsnprintf. Risk is low because the source has a constant maximum length.
    sprintf(cd_id, "%08lx", cddb_disk_id(duration, tracknum, offset));
data/ripperx-2.8.0/src/cddb.c:296:5:  [2] (buffer) strcpy:
  Does not check for buffer overflows when copying to destination [MS-banned]
  (CWE-120). Consider using snprintf, strcpy_s, or strlcpy (warning: strncpy
  easily misused). Risk is low because the source is a constant string.
    strcpy(final_cat, "test");
data/ripperx-2.8.0/src/cddb.c:297:5:  [2] (buffer) strcpy:
  Does not check for buffer overflows when copying to destination [MS-banned]
  (CWE-120). Consider using snprintf, strcpy_s, or strlcpy (warning: strncpy
  easily misused). Risk is low because the source is a constant string.
    strcpy(final_id, "test");
data/ripperx-2.8.0/src/cddb.c:423:5:  [2] (buffer) char:
  Statically-sized arrays can be improperly restricted, leading to potential
  overflows or other issues (CWE-119!/CWE-120). Perform bounds checking, use
  functions that limit length, or ensure that the size is larger than the
  maximum possible length.
    char file_check[ MAX_FILE_PATH_LENGTH + MAX_FILE_NAME_LENGTH + 1 ];
data/ripperx-2.8.0/src/cddb.c:424:5:  [2] (buffer) char:
  Statically-sized arrays can be improperly restricted, leading to potential
  overflows or other issues (CWE-119!/CWE-120). Perform bounds checking, use
  functions that limit length, or ensure that the size is larger than the
  maximum possible length.
    char cd_id[ 20 ];
data/ripperx-2.8.0/src/cddb.c:426:5:  [2] (buffer) sprintf:
  Does not check for buffer overflows (CWE-120). Use sprintf_s, snprintf, or
  vsnprintf. Risk is low because the source has a constant maximum length.
    sprintf(cd_id, "%08lx", cddb_disk_id(duration, tracknum, offset));
data/ripperx-2.8.0/src/cddb.c:435:20:  [2] (misc) fopen:
  Check when opening files - can an attacker redirect it (via symlinks),
  force the opening of special file type (e.g., device files), move things
  around to create a race condition, control its ancestors, or change its
  contents? (CWE-362).
    if((datafile = fopen(file_check, "r")) == NULL)
data/ripperx-2.8.0/src/cddb.c:453:19:  [2] (misc) fopen:
  Check when opening files - can an attacker redirect it (via symlinks),
  force the opening of special file type (e.g., device files), move things
  around to create a race condition, control its ancestors, or change its
  contents? (CWE-362).
	  if((datafile = fopen(file_check_genre.c_str(), "r")) != NULL)
data/ripperx-2.8.0/src/cddb.c:487:5:  [2] (buffer) sprintf:
  Does not check for buffer overflows (CWE-120). Use sprintf_s, snprintf, or
  vsnprintf. Risk is low because the source has a constant maximum length.
    sprintf(cd_id, "%08lx", cddb_disk_id(duration, tracknum, offset));
data/ripperx-2.8.0/src/cddb.c:539:5:  [2] (buffer) strcpy:
  Does not check for buffer overflows when copying to destination [MS-banned]
  (CWE-120). Consider using snprintf, strcpy_s, or strlcpy (warning: strncpy
  easily misused). Risk is low because the source is a constant string.
    strcpy(final_cat, "test");
data/ripperx-2.8.0/src/cddb.c:540:5:  [2] (buffer) strcpy:
  Does not check for buffer overflows when copying to destination [MS-banned]
  (CWE-120). Consider using snprintf, strcpy_s, or strlcpy (warning: strncpy
  easily misused). Risk is low because the source is a constant string.
    strcpy(final_id, "test");
data/ripperx-2.8.0/src/cddb.c:655:5:  [2] (buffer) char:
  Statically-sized arrays can be improperly restricted, leading to potential
  overflows or other issues (CWE-119!/CWE-120). Perform bounds checking, use
  functions that limit length, or ensure that the size is larger than the
  maximum possible length.
    char *titles[ MAX_NUM_TRACK ];
data/ripperx-2.8.0/src/cddbp.c:115:9:  [2] (buffer) sprintf:
  Does not check for buffer overflows (CWE-120). Use sprintf_s, snprintf, or
  vsnprintf. Risk is low because the source has a constant maximum length.
        sprintf(tmp, "%ld ", offset[ i ]);
data/ripperx-2.8.0/src/cddbp.c:119:5:  [2] (buffer) sprintf:
  Does not check for buffer overflows (CWE-120). Use sprintf_s, snprintf, or
  vsnprintf. Risk is low because the source has a constant maximum length.
    sprintf(tmp, "%d\n", duration);
data/ripperx-2.8.0/src/cddbp.c:214:5:  [2] (buffer) char:
  Statically-sized arrays can be improperly restricted, leading to potential
  overflows or other issues (CWE-119!/CWE-120). Perform bounds checking, use
  functions that limit length, or ensure that the size is larger than the
  maximum possible length.
    char status_buf[ 36 ];
data/ripperx-2.8.0/src/cddbp.c:253:13:  [2] (buffer) sprintf:
  Does not check for buffer overflows (CWE-120). Use sprintf_s, snprintf, or
  vsnprintf. Risk is low because the source has a constant maximum length.
            sprintf(status_buf, _("Reading Information about track %2d"), count);
data/ripperx-2.8.0/src/cddbp.c:352:9:  [2] (buffer) sprintf:
  Does not check for buffer overflows (CWE-120). Use sprintf_s, snprintf, or
  vsnprintf. Risk is low because the source has a constant maximum length.
        sprintf(tmp, "+%ld", offset[ i ]);
data/ripperx-2.8.0/src/cddbp.c:484:9:  [2] (buffer) sprintf:
  Does not check for buffer overflows (CWE-120). Use sprintf_s, snprintf, or
  vsnprintf. Risk is low because the source has a constant maximum length.
        sprintf(tmp, "+%ld", offset[ i ]);
data/ripperx-2.8.0/src/cddbp.h:14:31:  [2] (buffer) char:
  Statically-sized arrays can be improperly restricted, leading to potential
  overflows or other issues (CWE-119!/CWE-120). Perform bounds checking, use
  functions that limit length, or ensure that the size is larger than the
  maximum possible length.
int cddbp_query(FILE *, const char *disk_id, int tracknum,
data/ripperx-2.8.0/src/cddbp.h:21:22:  [2] (buffer) char:
  Statically-sized arrays can be improperly restricted, leading to potential
  overflows or other issues (CWE-119!/CWE-120). Perform bounds checking, use
  functions that limit length, or ensure that the size is larger than the
  maximum possible length.
int http_query(const char *server, int port, const char *URL,
data/ripperx-2.8.0/src/cddbp.h:21:52:  [2] (buffer) char:
  Statically-sized arrays can be improperly restricted, leading to potential
  overflows or other issues (CWE-119!/CWE-120). Perform bounds checking, use
  functions that limit length, or ensure that the size is larger than the
  maximum possible length.
int http_query(const char *server, int port, const char *URL,
data/ripperx-2.8.0/src/cddbp.h:22:22:  [2] (buffer) char:
  Statically-sized arrays can be improperly restricted, leading to potential
  overflows or other issues (CWE-119!/CWE-120). Perform bounds checking, use
  functions that limit length, or ensure that the size is larger than the
  maximum possible length.
               const char *disk_cd, int tracknum, long int offsets[ ],
data/ripperx-2.8.0/src/cddbp.h:27:28:  [2] (buffer) char:
  Statically-sized arrays can be improperly restricted, leading to potential
  overflows or other issues (CWE-119!/CWE-120). Perform bounds checking, use
  functions that limit length, or ensure that the size is larger than the
  maximum possible length.
int http_query_proxy(const char *server, int port, const char *proxy_server, int proxy_port, const char *URL,
data/ripperx-2.8.0/src/cddbp.h:27:58:  [2] (buffer) char:
  Statically-sized arrays can be improperly restricted, leading to potential
  overflows or other issues (CWE-119!/CWE-120). Perform bounds checking, use
  functions that limit length, or ensure that the size is larger than the
  maximum possible length.
int http_query_proxy(const char *server, int port, const char *proxy_server, int proxy_port, const char *URL,
data/ripperx-2.8.0/src/cddbp.h:27:100:  [2] (buffer) char:
  Statically-sized arrays can be improperly restricted, leading to potential
  overflows or other issues (CWE-119!/CWE-120). Perform bounds checking, use
  functions that limit length, or ensure that the size is larger than the
  maximum possible length.
int http_query_proxy(const char *server, int port, const char *proxy_server, int proxy_port, const char *URL,
data/ripperx-2.8.0/src/cddbp.h:28:28:  [2] (buffer) char:
  Statically-sized arrays can be improperly restricted, leading to potential
  overflows or other issues (CWE-119!/CWE-120). Perform bounds checking, use
  functions that limit length, or ensure that the size is larger than the
  maximum possible length.
                     const char *cd_id, int tracknum, long int offset[ ],
data/ripperx-2.8.0/src/common.h:68:5:  [2] (buffer) char:
  Statically-sized arrays can be improperly restricted, leading to potential
  overflows or other issues (CWE-119!/CWE-120). Perform bounds checking, use
  functions that limit length, or ensure that the size is larger than the
  maximum possible length.
    char shell_for_execution[ MAX_COMMAND_LENGTH ];
data/ripperx-2.8.0/src/common.h:69:5:  [2] (buffer) char:
  Statically-sized arrays can be improperly restricted, leading to potential
  overflows or other issues (CWE-119!/CWE-120). Perform bounds checking, use
  functions that limit length, or ensure that the size is larger than the
  maximum possible length.
    char wav_path[ MAX_FILE_PATH_LENGTH ];
data/ripperx-2.8.0/src/common.h:70:5:  [2] (buffer) char:
  Statically-sized arrays can be improperly restricted, leading to potential
  overflows or other issues (CWE-119!/CWE-120). Perform bounds checking, use
  functions that limit length, or ensure that the size is larger than the
  maximum possible length.
    char mp3_path[ MAX_FILE_PATH_LENGTH ];
data/ripperx-2.8.0/src/common.h:71:5:  [2] (buffer) char:
  Statically-sized arrays can be improperly restricted, leading to potential
  overflows or other issues (CWE-119!/CWE-120). Perform bounds checking, use
  functions that limit length, or ensure that the size is larger than the
  maximum possible length.
    char cddb_path[ MAX_FILE_PATH_LENGTH ];
data/ripperx-2.8.0/src/common.h:72:5:  [2] (buffer) char:
  Statically-sized arrays can be improperly restricted, leading to potential
  overflows or other issues (CWE-119!/CWE-120). Perform bounds checking, use
  functions that limit length, or ensure that the size is larger than the
  maximum possible length.
    char wav_file_name_format[ MAX_FILE_NAME_LENGTH ];
data/ripperx-2.8.0/src/common.h:73:5:  [2] (buffer) char:
  Statically-sized arrays can be improperly restricted, leading to potential
  overflows or other issues (CWE-119!/CWE-120). Perform bounds checking, use
  functions that limit length, or ensure that the size is larger than the
  maximum possible length.
    char mp3_file_name_format[ MAX_FILE_NAME_LENGTH ];
data/ripperx-2.8.0/src/common.h:82:9:  [2] (buffer) char:
  Statically-sized arrays can be improperly restricted, leading to potential
  overflows or other issues (CWE-119!/CWE-120). Perform bounds checking, use
  functions that limit length, or ensure that the size is larger than the
  maximum possible length.
        char ripper[ MAX_COMMAND_LENGTH ];
data/ripperx-2.8.0/src/common.h:83:9:  [2] (buffer) char:
  Statically-sized arrays can be improperly restricted, leading to potential
  overflows or other issues (CWE-119!/CWE-120). Perform bounds checking, use
  functions that limit length, or ensure that the size is larger than the
  maximum possible length.
        char plugin[ MAX_COMMAND_LENGTH ];
data/ripperx-2.8.0/src/common.h:87:9:  [2] (buffer) char:
  Statically-sized arrays can be improperly restricted, leading to potential
  overflows or other issues (CWE-119!/CWE-120). Perform bounds checking, use
  functions that limit length, or ensure that the size is larger than the
  maximum possible length.
        char encoder[ MAX_COMMAND_LENGTH ];
data/ripperx-2.8.0/src/common.h:88:9:  [2] (buffer) char:
  Statically-sized arrays can be improperly restricted, leading to potential
  overflows or other issues (CWE-119!/CWE-120). Perform bounds checking, use
  functions that limit length, or ensure that the size is larger than the
  maximum possible length.
        char plugin[ MAX_COMMAND_LENGTH ];
data/ripperx-2.8.0/src/common.h:96:9:  [2] (buffer) char:
  Statically-sized arrays can be improperly restricted, leading to potential
  overflows or other issues (CWE-119!/CWE-120). Perform bounds checking, use
  functions that limit length, or ensure that the size is larger than the
  maximum possible length.
        char extra_options[ MAX_OPTIONS_LENGTH ];
data/ripperx-2.8.0/src/common.h:97:9:  [2] (buffer) char:
  Statically-sized arrays can be improperly restricted, leading to potential
  overflows or other issues (CWE-119!/CWE-120). Perform bounds checking, use
  functions that limit length, or ensure that the size is larger than the
  maximum possible length.
        char full_command[ MAX_COMMAND_LENGTH ];
data/ripperx-2.8.0/src/common.h:101:9:  [2] (buffer) char:
  Statically-sized arrays can be improperly restricted, leading to potential
  overflows or other issues (CWE-119!/CWE-120). Perform bounds checking, use
  functions that limit length, or ensure that the size is larger than the
  maximum possible length.
        char command[ MAX_COMMAND_LENGTH ];
data/ripperx-2.8.0/src/common.h:105:9:  [2] (buffer) char:
  Statically-sized arrays can be improperly restricted, leading to potential
  overflows or other issues (CWE-119!/CWE-120). Perform bounds checking, use
  functions that limit length, or ensure that the size is larger than the
  maximum possible length.
        char play_command[ MAX_COMMAND_LENGTH ];
data/ripperx-2.8.0/src/common.h:106:9:  [2] (buffer) char:
  Statically-sized arrays can be improperly restricted, leading to potential
  overflows or other issues (CWE-119!/CWE-120). Perform bounds checking, use
  functions that limit length, or ensure that the size is larger than the
  maximum possible length.
        char stop_command[ MAX_COMMAND_LENGTH ];
data/ripperx-2.8.0/src/common.h:110:9:  [2] (buffer) char:
  Statically-sized arrays can be improperly restricted, leading to potential
  overflows or other issues (CWE-119!/CWE-120). Perform bounds checking, use
  functions that limit length, or ensure that the size is larger than the
  maximum possible length.
        char server[ MAX_COMMAND_LENGTH ];
data/ripperx-2.8.0/src/common.h:118:7:  [2] (buffer) char:
  Statically-sized arrays can be improperly restricted, leading to potential
  overflows or other issues (CWE-119!/CWE-120). Perform bounds checking, use
  functions that limit length, or ensure that the size is larger than the
  maximum possible length.
      char format_string[ MainData::MAX_ARTIST_LENGTH ];
data/ripperx-2.8.0/src/common.h:119:7:  [2] (buffer) char:
  Statically-sized arrays can be improperly restricted, leading to potential
  overflows or other issues (CWE-119!/CWE-120). Perform bounds checking, use
  functions that limit length, or ensure that the size is larger than the
  maximum possible length.
      char dir_format_string[ MainData::MAX_ARTIST_LENGTH ];
data/ripperx-2.8.0/src/common.h:120:9:  [2] (buffer) char:
  Statically-sized arrays can be improperly restricted, leading to potential
  overflows or other issues (CWE-119!/CWE-120). Perform bounds checking, use
  functions that limit length, or ensure that the size is larger than the
  maximum possible length.
        char proxy_server[ MAX_COMMAND_LENGTH ];
data/ripperx-2.8.0/src/common.h:139:5:  [2] (buffer) char:
  Statically-sized arrays can be improperly restricted, leading to potential
  overflows or other issues (CWE-119!/CWE-120). Perform bounds checking, use
  functions that limit length, or ensure that the size is larger than the
  maximum possible length.
    char src_file_name[ MAX_FILE_NAME_LENGTH ];
data/ripperx-2.8.0/src/common.h:140:5:  [2] (buffer) char:
  Statically-sized arrays can be improperly restricted, leading to potential
  overflows or other issues (CWE-119!/CWE-120). Perform bounds checking, use
  functions that limit length, or ensure that the size is larger than the
  maximum possible length.
    char dest_file_name[ MAX_FILE_NAME_LENGTH ];
data/ripperx-2.8.0/src/config_window_handler.c:79:5:  [2] (buffer) char:
  Statically-sized arrays can be improperly restricted, leading to potential
  overflows or other issues (CWE-119!/CWE-120). Perform bounds checking, use
  functions that limit length, or ensure that the size is larger than the
  maximum possible length.
    char buf[ 2 ];
data/ripperx-2.8.0/src/config_window_handler.c:405:21:  [2] (buffer) sprintf:
  Does not check for buffer overflows (CWE-120). Use sprintf_s, snprintf, or
  vsnprintf. Risk is low because the source has a constant maximum length.
                    sprintf(config.ripper.ripper + options_offset + option_length * i, "   ");
data/ripperx-2.8.0/src/config_window_handler.c:486:13:  [2] (buffer) char:
  Statically-sized arrays can be improperly restricted, leading to potential
  overflows or other issues (CWE-119!/CWE-120). Perform bounds checking, use
  functions that limit length, or ensure that the size is larger than the
  maximum possible length.
            char buf[ 5 ];
data/ripperx-2.8.0/src/config_window_handler.c:643:13:  [2] (buffer) char:
  Statically-sized arrays can be improperly restricted, leading to potential
  overflows or other issues (CWE-119!/CWE-120). Perform bounds checking, use
  functions that limit length, or ensure that the size is larger than the
  maximum possible length.
            char bitrate_switch [ 12 ];
data/ripperx-2.8.0/src/config_window_handler.c:644:13:  [2] (buffer) char:
  Statically-sized arrays can be improperly restricted, leading to potential
  overflows or other issues (CWE-119!/CWE-120). Perform bounds checking, use
  functions that limit length, or ensure that the size is larger than the
  maximum possible length.
            char vbr_qual_switch [ 5 ];
data/ripperx-2.8.0/src/config_window_handler.c:1193:39:  [2] (integer) atoi:
  Unless checked, the resulting number can exceed the expected range
  (CWE-190). If source untrusted, check both minimum and maximum, even if the
  input had no minus sign (large numbers can roll over into negative number;
  consider saving to an unsigned value if that is intended).
            config.cddb_config.port = atoi(gtk_entry_get_text(GTK_ENTRY(cddb_port_entry)));
data/ripperx-2.8.0/src/config_window_handler.c:1198:45:  [2] (integer) atoi:
  Unless checked, the resulting number can exceed the expected range
  (CWE-190). If source untrusted, check both minimum and maximum, even if the
  input had no minus sign (large numbers can roll over into negative number;
  consider saving to an unsigned value if that is intended).
            config.cddb_config.proxy_port = atoi(gtk_entry_get_text(GTK_ENTRY(cddb_proxy_port_entry)));
data/ripperx-2.8.0/src/dir_window_handler.c:49:12:  [2] (buffer) char:
  Statically-sized arrays can be improperly restricted, leading to potential
  overflows or other issues (CWE-119!/CWE-120). Perform bounds checking, use
  functions that limit length, or ensure that the size is larger than the
  maximum possible length.
    static char buf[ MAX_FILE_PATH_LENGTH ];
data/ripperx-2.8.0/src/dir_window_handler.c:57:13:  [2] (buffer) char:
  Statically-sized arrays can be improperly restricted, leading to potential
  overflows or other issues (CWE-119!/CWE-120). Perform bounds checking, use
  functions that limit length, or ensure that the size is larger than the
  maximum possible length.
            char check_dir[ MAX_FILE_PATH_LENGTH + 1];
data/ripperx-2.8.0/src/err_dialog_handler.c:127:18:  [2] (buffer) sprintf:
  Does not check for buffer overflows (CWE-120). Use sprintf_s, snprintf, or
  vsnprintf. Risk is low because the source has a constant maximum length.
  if (*buf == 0) sprintf(buf, "Error Code %d", err_code);
data/ripperx-2.8.0/src/err_dialog_handler.c:156:5:  [2] (buffer) char:
  Statically-sized arrays can be improperly restricted, leading to potential
  overflows or other issues (CWE-119!/CWE-120). Perform bounds checking, use
  functions that limit length, or ensure that the size is larger than the
  maximum possible length.
    char buf[ 20 ];
data/ripperx-2.8.0/src/err_dialog_handler.h:95:11:  [2] (buffer) char:
  Statically-sized arrays can be improperly restricted, leading to potential
  overflows or other issues (CWE-119!/CWE-120). Perform bounds checking, use
  functions that limit length, or ensure that the size is larger than the
  maximum possible length.
  mutable char buf[20];
data/ripperx-2.8.0/src/job_control.c:114:5:  [2] (buffer) char:
  Statically-sized arrays can be improperly restricted, leading to potential
  overflows or other issues (CWE-119!/CWE-120). Perform bounds checking, use
  functions that limit length, or ensure that the size is larger than the
  maximum possible length.
    char buf[ MAX_FILE_NAME_LENGTH ];
data/ripperx-2.8.0/src/job_control.c:116:10:  [2] (misc) open:
  Check when opening files - can an attacker redirect it (via symlinks),
  force the opening of special file type (e.g., device files), move things
  around to create a race condition, control its ancestors, or change its
  contents? (CWE-362).
    fd = open(file_name,
data/ripperx-2.8.0/src/job_control.c:329:5:  [2] (buffer) char:
  Statically-sized arrays can be improperly restricted, leading to potential
  overflows or other issues (CWE-119!/CWE-120). Perform bounds checking, use
  functions that limit length, or ensure that the size is larger than the
  maximum possible length.
    char msg[ MAX_PLUGIN_OUTPUT_LENGTH ];
data/ripperx-2.8.0/src/main_data.c:83:12:  [2] (buffer) char:
  Statically-sized arrays can be improperly restricted, leading to potential
  overflows or other issues (CWE-119!/CWE-120). Perform bounds checking, use
  functions that limit length, or ensure that the size is larger than the
  maximum possible length.
    static char status_message[(MAX_FILE_PATH_LENGTH + MAX_FILE_NAME_LENGTH) * MAX_NUM_TRACK ];
data/ripperx-2.8.0/src/main_data.c:84:12:  [2] (buffer) char:
  Statically-sized arrays can be improperly restricted, leading to potential
  overflows or other issues (CWE-119!/CWE-120). Perform bounds checking, use
  functions that limit length, or ensure that the size is larger than the
  maximum possible length.
    static char buffer[(MAX_FILE_PATH_LENGTH + MAX_FILE_NAME_LENGTH) * MAX_NUM_TRACK ];
data/ripperx-2.8.0/src/main_data.c:92:5:  [2] (buffer) char:
  Statically-sized arrays can be improperly restricted, leading to potential
  overflows or other issues (CWE-119!/CWE-120). Perform bounds checking, use
  functions that limit length, or ensure that the size is larger than the
  maximum possible length.
    char playlist_filespec[ MAX_FILE_PATH_LENGTH + MAX_FILE_NAME_LENGTH ];
data/ripperx-2.8.0/src/main_data.c:116:24:  [2] (misc) fopen:
  Check when opening files - can an attacker redirect it (via symlinks),
  force the opening of special file type (e.g., device files), move things
  around to create a race condition, control its ancestors, or change its
  contents? (CWE-362).
	      FILE * inf_fp = fopen(inf_file.c_str(), "w");
data/ripperx-2.8.0/src/main_data.c:167:20:  [2] (integer) atoi:
  Unless checked, the resulting number can exceed the expected range
  (CWE-190). If source untrusted, check both minimum and maximum, even if the
  input had no minus sign (large numbers can roll over into negative number;
  consider saving to an unsigned value if that is intended).
		    tag->setYear(atoi(this->disc_year));
data/ripperx-2.8.0/src/main_data.c:183:35:  [2] (misc) fopen:
  Check when opening files - can an attacker redirect it (via symlinks),
  force the opening of special file type (e.g., device files), move things
  around to create a race condition, control its ancestors, or change its
  contents? (CWE-362).
                    fp_playlist = fopen(playlist_filespec, "w");
data/ripperx-2.8.0/src/main_data.h:35:3:  [2] (buffer) char:
  Statically-sized arrays can be improperly restricted, leading to potential
  overflows or other issues (CWE-119!/CWE-120). Perform bounds checking, use
  functions that limit length, or ensure that the size is larger than the
  maximum possible length.
  char disc_artist[ MAX_ARTIST_LENGTH ];
data/ripperx-2.8.0/src/main_data.h:36:3:  [2] (buffer) char:
  Statically-sized arrays can be improperly restricted, leading to potential
  overflows or other issues (CWE-119!/CWE-120). Perform bounds checking, use
  functions that limit length, or ensure that the size is larger than the
  maximum possible length.
  char disc_title[ MAX_ARTIST_LENGTH ];
data/ripperx-2.8.0/src/main_data.h:37:3:  [2] (buffer) char:
  Statically-sized arrays can be improperly restricted, leading to potential
  overflows or other issues (CWE-119!/CWE-120). Perform bounds checking, use
  functions that limit length, or ensure that the size is larger than the
  maximum possible length.
  char disc_year[ MAX_YEAR_LENGTH ];
data/ripperx-2.8.0/src/main_data.h:38:3:  [2] (buffer) char:
  Statically-sized arrays can be improperly restricted, leading to potential
  overflows or other issues (CWE-119!/CWE-120). Perform bounds checking, use
  functions that limit length, or ensure that the size is larger than the
  maximum possible length.
  char disc_category[ MAX_ARTIST_LENGTH ];
data/ripperx-2.8.0/src/main_data.h:41:5:  [2] (buffer) char:
  Statically-sized arrays can be improperly restricted, leading to potential
  overflows or other issues (CWE-119!/CWE-120). Perform bounds checking, use
  functions that limit length, or ensure that the size is larger than the
  maximum possible length.
    char title[ MAX_FILE_NAME_LENGTH ];
data/ripperx-2.8.0/src/main_window_handler.c:180:13:  [2] (buffer) char:
  Statically-sized arrays can be improperly restricted, leading to potential
  overflows or other issues (CWE-119!/CWE-120). Perform bounds checking, use
  functions that limit length, or ensure that the size is larger than the
  maximum possible length.
            char welcome_msg_buf[ 100 ];
data/ripperx-2.8.0/src/misc_utils.c:86:5:  [2] (buffer) char:
  Statically-sized arrays can be improperly restricted, leading to potential
  overflows or other issues (CWE-119!/CWE-120). Perform bounds checking, use
  functions that limit length, or ensure that the size is larger than the
  maximum possible length.
    char track_no_str[ 4 ];
data/ripperx-2.8.0/src/misc_utils.c:195:12:  [2] (buffer) char:
  Statically-sized arrays can be improperly restricted, leading to potential
  overflows or other issues (CWE-119!/CWE-120). Perform bounds checking, use
  functions that limit length, or ensure that the size is larger than the
  maximum possible length.
    static char buf[ 10 ];
data/ripperx-2.8.0/src/misc_utils.c:197:5:  [2] (buffer) sprintf:
  Does not check for buffer overflows (CWE-120). Use sprintf_s, snprintf, or
  vsnprintf. Risk is low because the source has a constant maximum length.
    sprintf(buf, "%2d:%02d", (int) sec / 60, (int) sec % 60);
data/ripperx-2.8.0/src/misc_utils.c:212:12:  [2] (buffer) char:
  Statically-sized arrays can be improperly restricted, leading to potential
  overflows or other issues (CWE-119!/CWE-120). Perform bounds checking, use
  functions that limit length, or ensure that the size is larger than the
  maximum possible length.
    static char buf[ MAX_FILE_PATH_LENGTH + MAX_FILE_NAME_LENGTH ];
data/ripperx-2.8.0/src/misc_utils.c:227:12:  [2] (buffer) char:
  Statically-sized arrays can be improperly restricted, leading to potential
  overflows or other issues (CWE-119!/CWE-120). Perform bounds checking, use
  functions that limit length, or ensure that the size is larger than the
  maximum possible length.
    static char buf[ MAX_FILE_PATH_LENGTH + MAX_FILE_NAME_LENGTH ];
data/ripperx-2.8.0/src/misc_utils.c:259:12:  [2] (buffer) char:
  Statically-sized arrays can be improperly restricted, leading to potential
  overflows or other issues (CWE-119!/CWE-120). Perform bounds checking, use
  functions that limit length, or ensure that the size is larger than the
  maximum possible length.
    static char buf[ MAX_FILE_PATH_LENGTH ];
data/ripperx-2.8.0/src/misc_utils.c:287:13:  [2] (buffer) strcpy:
  Does not check for buffer overflows when copying to destination [MS-banned]
  (CWE-120). Consider using snprintf, strcpy_s, or strlcpy (warning: strncpy
  easily misused). Risk is low because the source is a constant string.
            strcpy(src + offset, ".wav");
data/ripperx-2.8.0/src/misc_utils.c:296:13:  [2] (buffer) strcpy:
  Does not check for buffer overflows when copying to destination [MS-banned]
  (CWE-120). Consider using snprintf, strcpy_s, or strlcpy (warning: strncpy
  easily misused). Risk is low because the source is a constant string.
            strcpy(src + offset, ".ogg");
data/ripperx-2.8.0/src/misc_utils.c:307:13:  [2] (buffer) strcpy:
  Does not check for buffer overflows when copying to destination [MS-banned]
  (CWE-120). Consider using snprintf, strcpy_s, or strlcpy (warning: strncpy
  easily misused). Risk is low because the source is a constant string.
            strcpy(src + offset, ".flac");
data/ripperx-2.8.0/src/misc_utils.c:316:13:  [2] (buffer) strcpy:
  Does not check for buffer overflows when copying to destination [MS-banned]
  (CWE-120). Consider using snprintf, strcpy_s, or strlcpy (warning: strncpy
  easily misused). Risk is low because the source is a constant string.
            strcpy(src + offset, ".mp2");
data/ripperx-2.8.0/src/misc_utils.c:325:13:  [2] (buffer) strcpy:
  Does not check for buffer overflows when copying to destination [MS-banned]
  (CWE-120). Consider using snprintf, strcpy_s, or strlcpy (warning: strncpy
  easily misused). Risk is low because the source is a constant string.
            strcpy(src + offset, ".mpc");
data/ripperx-2.8.0/src/misc_utils.c:334:13:  [2] (buffer) strcpy:
  Does not check for buffer overflows when copying to destination [MS-banned]
  (CWE-120). Consider using snprintf, strcpy_s, or strlcpy (warning: strncpy
  easily misused). Risk is low because the source is a constant string.
            strcpy(src + offset, ".mp3");
data/ripperx-2.8.0/src/misc_utils.c:341:12:  [2] (buffer) char:
  Statically-sized arrays can be improperly restricted, leading to potential
  overflows or other issues (CWE-119!/CWE-120). Perform bounds checking, use
  functions that limit length, or ensure that the size is larger than the
  maximum possible length.
    static char name_buf[ MAX_FILE_NAME_LENGTH ];
data/ripperx-2.8.0/src/misc_utils.c:343:5:  [2] (buffer) char:
  Statically-sized arrays can be improperly restricted, leading to potential
  overflows or other issues (CWE-119!/CWE-120). Perform bounds checking, use
  functions that limit length, or ensure that the size is larger than the
  maximum possible length.
    char track_no_buf[ 5 ];
data/ripperx-2.8.0/src/misc_utils.c:972:5:  [2] (buffer) memcpy:
  Does not check for buffer overflows when copying to destination (CWE-120).
  Make sure destination can always hold the source data.
    memcpy((char *) & socket_address.sin_addr, host->h_addr, host->h_length);
data/ripperx-2.8.0/src/misc_utils.c:998:5:  [2] (buffer) sprintf:
  Does not check for buffer overflows (CWE-120). Use sprintf_s, snprintf, or
  vsnprintf. Risk is low because the source has a constant maximum length.
    sprintf(newstr, "%d", integer);
data/ripperx-2.8.0/src/misc_utils.c:1006:5:  [2] (buffer) char:
  Statically-sized arrays can be improperly restricted, leading to potential
  overflows or other issues (CWE-119!/CWE-120). Perform bounds checking, use
  functions that limit length, or ensure that the size is larger than the
  maximum possible length.
    char cmd[MAX_FILE_NAME_LENGTH];
data/ripperx-2.8.0/src/misc_utils.c:1097:5:  [2] (buffer) char:
  Statically-sized arrays can be improperly restricted, leading to potential
  overflows or other issues (CWE-119!/CWE-120). Perform bounds checking, use
  functions that limit length, or ensure that the size is larger than the
  maximum possible length.
    char buffer[MAX_COMMAND_LENGTH];
data/ripperx-2.8.0/src/misc_utils.c:1098:5:  [2] (buffer) char:
  Statically-sized arrays can be improperly restricted, leading to potential
  overflows or other issues (CWE-119!/CWE-120). Perform bounds checking, use
  functions that limit length, or ensure that the size is larger than the
  maximum possible length.
    char cmd[MAX_COMMAND_LENGTH];
data/ripperx-2.8.0/src/misc_utils.c:1322:5:  [2] (buffer) memcpy:
  Does not check for buffer overflows when copying to destination (CWE-120).
  Make sure destination can always hold the source data.
    memcpy(tk_p->title, sp, ep - sp + 1);
data/ripperx-2.8.0/src/players_manipulation.c:114:23:  [2] (misc) open:
  Check when opening files - can an attacker redirect it (via symlinks),
  force the opening of special file type (e.g., device files), move things
  around to create a race condition, control its ancestors, or change its
  contents? (CWE-362).
        if((null_fd = open("/dev/null", O_WRONLY)) < 0)
data/ripperx-2.8.0/src/ripper_encoder_manipulation.c:63:5:  [2] (buffer) char:
  Statically-sized arrays can be improperly restricted, leading to potential
  overflows or other issues (CWE-119!/CWE-120). Perform bounds checking, use
  functions that limit length, or ensure that the size is larger than the
  maximum possible length.
    char buf[ BUF_LENGTH_FOR_F_SCAN_CD ];
data/ripperx-2.8.0/src/ripper_encoder_manipulation.c:64:5:  [2] (buffer) char:
  Statically-sized arrays can be improperly restricted, leading to potential
  overflows or other issues (CWE-119!/CWE-120). Perform bounds checking, use
  functions that limit length, or ensure that the size is larger than the
  maximum possible length.
    char errmsg[ 1024 ];
data/ripperx-2.8.0/src/ripper_encoder_manipulation.c:210:5:  [2] (buffer) char:
  Statically-sized arrays can be improperly restricted, leading to potential
  overflows or other issues (CWE-119!/CWE-120). Perform bounds checking, use
  functions that limit length, or ensure that the size is larger than the
  maximum possible length.
    char tmp[ MAX_COMMAND_LENGTH ];
data/ripperx-2.8.0/src/ripper_encoder_manipulation.c:222:19:  [2] (misc) open:
  Check when opening files - can an attacker redirect it (via symlinks),
  force the opening of special file type (e.g., device files), move things
  around to create a race condition, control its ancestors, or change its
  contents? (CWE-362).
    if((null_fd = open("/dev/null", O_WRONLY)) < 0)
data/ripperx-2.8.0/src/ripper_encoder_manipulation.c:373:5:  [2] (buffer) char:
  Statically-sized arrays can be improperly restricted, leading to potential
  overflows or other issues (CWE-119!/CWE-120). Perform bounds checking, use
  functions that limit length, or ensure that the size is larger than the
  maximum possible length.
    char plugin[ MAX_COMMAND_LENGTH ];
data/ripperx-2.8.0/src/ripper_encoder_manipulation.c:374:5:  [2] (buffer) char:
  Statically-sized arrays can be improperly restricted, leading to potential
  overflows or other issues (CWE-119!/CWE-120). Perform bounds checking, use
  functions that limit length, or ensure that the size is larger than the
  maximum possible length.
    char command[ MAX_COMMAND_LENGTH ];
data/ripperx-2.8.0/src/ripper_encoder_manipulation.c:378:5:  [2] (buffer) char:
  Statically-sized arrays can be improperly restricted, leading to potential
  overflows or other issues (CWE-119!/CWE-120). Perform bounds checking, use
  functions that limit length, or ensure that the size is larger than the
  maximum possible length.
    char debian_path[ MAX_COMMAND_LENGTH ];
data/ripperx-2.8.0/src/ripper_encoder_manipulation.c:384:9:  [2] (buffer) strcpy:
  Does not check for buffer overflows when copying to destination [MS-banned]
  (CWE-120). Consider using snprintf, strcpy_s, or strlcpy (warning: strncpy
  easily misused). Risk is low because the source is a constant string.
        strcpy(debian_path, "/usr/lib/ripperx:");
data/ripperx-2.8.0/src/ripper_encoder_manipulation.c:537:5:  [2] (buffer) char:
  Statically-sized arrays can be improperly restricted, leading to potential
  overflows or other issues (CWE-119!/CWE-120). Perform bounds checking, use
  functions that limit length, or ensure that the size is larger than the
  maximum possible length.
    char buf[ MAX_PLUGIN_OUTPUT_LENGTH ];
data/ripperx-2.8.0/src/select_frame_handler.c:50:10:  [2] (misc) open:
  Check when opening files - can an attacker redirect it (via symlinks),
  force the opening of special file type (e.g., device files), move things
  around to create a race condition, control its ancestors, or change its
  contents? (CWE-362).
  int fd=open("/dev/cdrom", O_RDWR|O_NONBLOCK);
data/ripperx-2.8.0/src/select_frame_handler.c:104:5:  [2] (buffer) char:
  Statically-sized arrays can be improperly restricted, leading to potential
  overflows or other issues (CWE-119!/CWE-120). Perform bounds checking, use
  functions that limit length, or ensure that the size is larger than the
  maximum possible length.
    char buf[ 5 ];
data/ripperx-2.8.0/src/select_frame_handler.c:141:12:  [2] (buffer) char:
  Statically-sized arrays can be improperly restricted, leading to potential
  overflows or other issues (CWE-119!/CWE-120). Perform bounds checking, use
  functions that limit length, or ensure that the size is larger than the
  maximum possible length.
    static char saved_filename_entry[ MAX_NUM_TRACK ][ MAX_FILE_NAME_LENGTH ];
data/ripperx-2.8.0/src/select_frame_handler.c:155:13:  [2] (buffer) char:
  Statically-sized arrays can be improperly restricted, leading to potential
  overflows or other issues (CWE-119!/CWE-120). Perform bounds checking, use
  functions that limit length, or ensure that the size is larger than the
  maximum possible length.
            char buf[ 5 ];
data/ripperx-2.8.0/src/select_frame_handler.c:280:3:  [2] (buffer) sprintf:
  Does not check for buffer overflows (CWE-120). Use sprintf_s, snprintf, or
  vsnprintf. Risk is low because the source has a constant maximum length.
		sprintf(main_data->disc_year, "2007");
data/ripperx-2.8.0/src/select_frame_handler.c:371:17:  [2] (buffer) sprintf:
  Does not check for buffer overflows (CWE-120). Use sprintf_s, snprintf, or
  vsnprintf. Risk is low because the source has a constant maximum length.
                sprintf(buf, "%d", i + 1);
data/ripperx-2.8.0/src/status_frame_handler.c:37:5:  [2] (buffer) char:
  Statically-sized arrays can be improperly restricted, leading to potential
  overflows or other issues (CWE-119!/CWE-120). Perform bounds checking, use
  functions that limit length, or ensure that the size is larger than the
  maximum possible length.
    char buf[ 100 ];
data/ripperx-2.8.0/src/status_frame_handler.c:142:12:  [2] (buffer) char:
  Statically-sized arrays can be improperly restricted, leading to potential
  overflows or other issues (CWE-119!/CWE-120). Perform bounds checking, use
  functions that limit length, or ensure that the size is larger than the
  maximum possible length.
    static char percentage_buf[ 10 ];
data/ripperx-2.8.0/src/status_frame_handler.c:143:12:  [2] (buffer) char:
  Statically-sized arrays can be improperly restricted, leading to potential
  overflows or other issues (CWE-119!/CWE-120). Perform bounds checking, use
  functions that limit length, or ensure that the size is larger than the
  maximum possible length.
    static char graph_string_buf[ 50 ];
data/ripperx-2.8.0/src/status_frame_handler.c:147:5:  [2] (buffer) char:
  Statically-sized arrays can be improperly restricted, leading to potential
  overflows or other issues (CWE-119!/CWE-120). Perform bounds checking, use
  functions that limit length, or ensure that the size is larger than the
  maximum possible length.
    char buf[ MAX_FILE_NAME_LENGTH + 100 ];
data/ripperx-2.8.0/src/status_frame_handler.c:183:13:  [2] (buffer) sprintf:
  Does not check for buffer overflows (CWE-120). Use sprintf_s, snprintf, or
  vsnprintf. Risk is low because the source has a constant maximum length.
            sprintf(buf, _("Ripping track %d"), stat->wav.track + 1);
data/ripperx-2.8.0/src/status_frame_handler.c:198:13:  [2] (buffer) sprintf:
  Does not check for buffer overflows (CWE-120). Use sprintf_s, snprintf, or
  vsnprintf. Risk is low because the source has a constant maximum length.
            sprintf(buf, _("Encoding track %d"), stat->wav.track + 1);
data/ripperx-2.8.0/src/status_frame_handler.c:287:17:  [2] (buffer) sprintf:
  Does not check for buffer overflows (CWE-120). Use sprintf_s, snprintf, or
  vsnprintf. Risk is low because the source has a constant maximum length.
                sprintf(buf, _("Ripping track %d"), stat->wav.track + 1);
data/ripperx-2.8.0/src/status_frame_handler.c:310:17:  [2] (buffer) sprintf:
  Does not check for buffer overflows (CWE-120). Use sprintf_s, snprintf, or
  vsnprintf. Risk is low because the source has a constant maximum length.
                sprintf(buf, _("Encoding track %d"), stat->mp3.track + 1);
data/ripperx-2.8.0/plugins/ripperX_plugin-8hz-mp3.c:43:16:  [1] (buffer) read:
  Check buffer boundaries if used in a loop including recursive loops
  (CWE-120, CWE-20).
		bytes_read = read (0, (void *) buf, sizeof (buf));
data/ripperx-2.8.0/plugins/ripperX_plugin-8hz-mp3.c:109:3:  [1] (obsolete) usleep:
  This C routine is considered obsolete (as opposed to the shell command by
  the same name). The interaction of this function with SIGALRM and other
  timer functions such as sleep(), alarm(), setitimer(), and nanosleep() is
  unspecified (CWE-676). Use nanosleep(2) or setitimer(2) instead.
		usleep (PRINTOUT_INTERVAL * 1000000);
data/ripperx-2.8.0/plugins/ripperX_plugin-bladeenc.c:19:15:  [1] (buffer) read:
  Check buffer boundaries if used in a loop including recursive loops
  (CWE-120, CWE-20).
	bytes_read = read (0, (void *) temp, sizeof (temp));
data/ripperx-2.8.0/plugins/ripperX_plugin-bladeenc.c:37:3:  [1] (obsolete) usleep:
  This C routine is considered obsolete (as opposed to the shell command by
  the same name). The interaction of this function with SIGALRM and other
  timer functions such as sleep(), alarm(), setitimer(), and nanosleep() is
  unspecified (CWE-676). Use nanosleep(2) or setitimer(2) instead.
		usleep (PRINTOUT_INTERVAL * 1000000);
data/ripperx-2.8.0/plugins/ripperX_plugin-cdparanoia.c:48:16:  [1] (buffer) read:
  Check buffer boundaries if used in a loop including recursive loops
  (CWE-120, CWE-20).
		bytes_read = read (0, (void *) buf, sizeof (buf));
data/ripperx-2.8.0/plugins/ripperX_plugin-cdparanoia.c:61:3:  [1] (buffer) strncpy:
  Easily used incorrectly; doesn't always \0-terminate or check for invalid
  pointers [MS-banned] (CWE-120).
		strncpy (status, buf + read_offset, sizeof (status));
data/ripperx-2.8.0/plugins/ripperX_plugin-cdparanoia.c:66:2:  [1] (buffer) strncpy:
  Easily used incorrectly; doesn't always \0-terminate or check for invalid
  pointers [MS-banned] (CWE-120).
	strncpy (graph, status, sizeof (graph));
data/ripperx-2.8.0/plugins/ripperX_plugin-cdparanoia.c:125:3:  [1] (obsolete) usleep:
  This C routine is considered obsolete (as opposed to the shell command by
  the same name). The interaction of this function with SIGALRM and other
  timer functions such as sleep(), alarm(), setitimer(), and nanosleep() is
  unspecified (CWE-676). Use nanosleep(2) or setitimer(2) instead.
		usleep (PRINTOUT_INTERVAL * 1000000);
data/ripperx-2.8.0/plugins/ripperX_plugin-encode.c:46:16:  [1] (buffer) read:
  Check buffer boundaries if used in a loop including recursive loops
  (CWE-120, CWE-20).
		bytes_read = read (0, (void *) buf, sizeof (buf));
data/ripperx-2.8.0/plugins/ripperX_plugin-encode.c:60:3:  [1] (buffer) strncpy:
  Easily used incorrectly; doesn't always \0-terminate or check for invalid
  pointers [MS-banned] (CWE-120).
		strncpy (status, buf + read_offset, sizeof (status));
data/ripperx-2.8.0/plugins/ripperX_plugin-encode.c:120:3:  [1] (obsolete) usleep:
  This C routine is considered obsolete (as opposed to the shell command by
  the same name). The interaction of this function with SIGALRM and other
  timer functions such as sleep(), alarm(), setitimer(), and nanosleep() is
  unspecified (CWE-676). Use nanosleep(2) or setitimer(2) instead.
		usleep (PRINTOUT_INTERVAL * 1000000);
data/ripperx-2.8.0/plugins/ripperX_plugin-flac.c:33:15:  [1] (buffer) read:
  Check buffer boundaries if used in a loop including recursive loops
  (CWE-120, CWE-20).
	bytes_read = read (0, (void *) temp, sizeof (temp));
data/ripperx-2.8.0/plugins/ripperX_plugin-flac.c:57:3:  [1] (obsolete) usleep:
  This C routine is considered obsolete (as opposed to the shell command by
  the same name). The interaction of this function with SIGALRM and other
  timer functions such as sleep(), alarm(), setitimer(), and nanosleep() is
  unspecified (CWE-676). Use nanosleep(2) or setitimer(2) instead.
		usleep (PRINTOUT_INTERVAL * 1000000);
data/ripperx-2.8.0/plugins/ripperX_plugin-gogo.c:30:15:  [1] (buffer) read:
  Check buffer boundaries if used in a loop including recursive loops
  (CWE-120, CWE-20).
	bytes_read = read (0, (void *) temp, sizeof (temp));
data/ripperx-2.8.0/plugins/ripperX_plugin-gogo.c:49:3:  [1] (obsolete) usleep:
  This C routine is considered obsolete (as opposed to the shell command by
  the same name). The interaction of this function with SIGALRM and other
  timer functions such as sleep(), alarm(), setitimer(), and nanosleep() is
  unspecified (CWE-676). Use nanosleep(2) or setitimer(2) instead.
		usleep (PRINTOUT_INTERVAL * 1000000);
data/ripperx-2.8.0/plugins/ripperX_plugin-l3enc.c:19:15:  [1] (buffer) read:
  Check buffer boundaries if used in a loop including recursive loops
  (CWE-120, CWE-20).
	bytes_read = read (0, (void *) temp, sizeof (temp));
data/ripperx-2.8.0/plugins/ripperX_plugin-l3enc.c:39:3:  [1] (obsolete) usleep:
  This C routine is considered obsolete (as opposed to the shell command by
  the same name). The interaction of this function with SIGALRM and other
  timer functions such as sleep(), alarm(), setitimer(), and nanosleep() is
  unspecified (CWE-676). Use nanosleep(2) or setitimer(2) instead.
		usleep (PRINTOUT_INTERVAL * 1000000);
data/ripperx-2.8.0/plugins/ripperX_plugin-lame.c:21:15:  [1] (buffer) read:
  Check buffer boundaries if used in a loop including recursive loops
  (CWE-120, CWE-20).
	bytes_read = read (0, (void *) temp, sizeof (temp)-1);
data/ripperx-2.8.0/plugins/ripperX_plugin-lame.c:39:3:  [1] (obsolete) usleep:
  This C routine is considered obsolete (as opposed to the shell command by
  the same name). The interaction of this function with SIGALRM and other
  timer functions such as sleep(), alarm(), setitimer(), and nanosleep() is
  unspecified (CWE-676). Use nanosleep(2) or setitimer(2) instead.
		usleep (PRINTOUT_INTERVAL * 1000000);
data/ripperx-2.8.0/plugins/ripperX_plugin-mp3enc.c:18:15:  [1] (buffer) read:
  Check buffer boundaries if used in a loop including recursive loops
  (CWE-120, CWE-20).
	bytes_read = read (0, (void *) temp, sizeof (temp));
data/ripperx-2.8.0/plugins/ripperX_plugin-mp3enc.c:36:3:  [1] (obsolete) usleep:
  This C routine is considered obsolete (as opposed to the shell command by
  the same name). The interaction of this function with SIGALRM and other
  timer functions such as sleep(), alarm(), setitimer(), and nanosleep() is
  unspecified (CWE-676). Use nanosleep(2) or setitimer(2) instead.
		usleep (PRINTOUT_INTERVAL * 1000000);
data/ripperx-2.8.0/plugins/ripperX_plugin-musepack.c:29:15:  [1] (buffer) read:
  Check buffer boundaries if used in a loop including recursive loops
  (CWE-120, CWE-20).
	bytes_read = read (0, (void *) temp, sizeof (temp));
data/ripperx-2.8.0/plugins/ripperX_plugin-musepack.c:62:3:  [1] (obsolete) usleep:
  This C routine is considered obsolete (as opposed to the shell command by
  the same name). The interaction of this function with SIGALRM and other
  timer functions such as sleep(), alarm(), setitimer(), and nanosleep() is
  unspecified (CWE-676). Use nanosleep(2) or setitimer(2) instead.
		usleep (PRINTOUT_INTERVAL * 1000000);
data/ripperx-2.8.0/plugins/ripperX_plugin-oggenc.c:50:15:  [1] (buffer) read:
  Check buffer boundaries if used in a loop including recursive loops
  (CWE-120, CWE-20).
	bytes_read = read (0, (void *) temp, sizeof (temp));
data/ripperx-2.8.0/plugins/ripperX_plugin-oggenc.c:67:3:  [1] (obsolete) usleep:
  This C routine is considered obsolete (as opposed to the shell command by
  the same name). The interaction of this function with SIGALRM and other
  timer functions such as sleep(), alarm(), setitimer(), and nanosleep() is
  unspecified (CWE-676). Use nanosleep(2) or setitimer(2) instead.
		usleep (PRINTOUT_INTERVAL * 1000000);
data/ripperx-2.8.0/plugins/ripperX_plugin-toolame.c:21:15:  [1] (buffer) read:
  Check buffer boundaries if used in a loop including recursive loops
  (CWE-120, CWE-20).
	bytes_read = read (0, (void *) temp, sizeof (temp));
data/ripperx-2.8.0/plugins/ripperX_plugin-toolame.c:43:3:  [1] (obsolete) usleep:
  This C routine is considered obsolete (as opposed to the shell command by
  the same name). The interaction of this function with SIGALRM and other
  timer functions such as sleep(), alarm(), setitimer(), and nanosleep() is
  unspecified (CWE-676). Use nanosleep(2) or setitimer(2) instead.
		usleep (PRINTOUT_INTERVAL * 1000000);
data/ripperx-2.8.0/plugins/ripperX_plugin-xingmp3enc.c:19:15:  [1] (buffer) read:
  Check buffer boundaries if used in a loop including recursive loops
  (CWE-120, CWE-20).
	bytes_read = read (0, (void *) temp, sizeof (temp));
data/ripperx-2.8.0/plugins/ripperX_plugin-xingmp3enc.c:37:3:  [1] (obsolete) usleep:
  This C routine is considered obsolete (as opposed to the shell command by
  the same name). The interaction of this function with SIGALRM and other
  timer functions such as sleep(), alarm(), setitimer(), and nanosleep() is
  unspecified (CWE-676). Use nanosleep(2) or setitimer(2) instead.
		usleep (PRINTOUT_INTERVAL * 1000000);
data/ripperx-2.8.0/plugins/ripperX_plugin_tester.c:336:3:  [1] (obsolete) usleep:
  This C routine is considered obsolete (as opposed to the shell command by
  the same name). The interaction of this function with SIGALRM and other
  timer functions such as sleep(), alarm(), setitimer(), and nanosleep() is
  unspecified (CWE-676). Use nanosleep(2) or setitimer(2) instead.
		usleep (CHECK_INTERVAL * 1000000);
data/ripperx-2.8.0/src/cddb.c:158:17:  [1] (buffer) strncpy:
  Easily used incorrectly; doesn't always \0-terminate or check for invalid
  pointers [MS-banned] (CWE-120).
                strncpy((*artist), mark, j);
data/ripperx-2.8.0/src/cddb.c:160:45:  [1] (buffer) strlen:
  Does not handle strings that are not \0-terminated; if given one it may
  perform an over-read (it could cause a crash if unprotected) (CWE-126).
                (*dtitle) = (char *) malloc(strlen(mark) - j);
data/ripperx-2.8.0/src/cddb.c:169:21:  [1] (buffer) strlen:
  Does not handle strings that are not \0-terminated; if given one it may
  perform an over-read (it could cause a crash if unprotected) (CWE-126).
                j = strlen(mark);
data/ripperx-2.8.0/src/cddb.c:171:17:  [1] (buffer) strncpy:
  Easily used incorrectly; doesn't always \0-terminate or check for invalid
  pointers [MS-banned] (CWE-120).
                strncpy((*artist), mark, j);
data/ripperx-2.8.0/src/cddb.c:174:17:  [1] (buffer) strncpy:
  Easily used incorrectly; doesn't always \0-terminate or check for invalid
  pointers [MS-banned] (CWE-120).
                strncpy((*dtitle), mark, j);
data/ripperx-2.8.0/src/cddb.c:239:47:  [1] (buffer) strlen:
  Does not handle strings that are not \0-terminated; if given one it may
  perform an over-read (it could cause a crash if unprotected) (CWE-126).
    std::auto_ptr <char> server_ptr (new char[strlen(server)+1]);
data/ripperx-2.8.0/src/cddb.c:432:5:  [1] (buffer) strcat:
  Does not check for buffer overflows when concatenating to destination
  [MS-banned] (CWE-120). Consider using strcat_s, strncat, strlcat, or
  snprintf (warning: strncat is easily misused). Risk is low because the
  source is a constant character.
    strcat(file_check, "/");
data/ripperx-2.8.0/src/cddbp.c:107:30:  [1] (buffer) strlen:
  Does not handle strings that are not \0-terminated; if given one it may
  perform an over-read (it could cause a crash if unprotected) (CWE-126).
    buffer = (char *) malloc(strlen("cddb query ") + strlen(disk_id) + 1 + 3 +
data/ripperx-2.8.0/src/cddbp.c:107:54:  [1] (buffer) strlen:
  Does not handle strings that are not \0-terminated; if given one it may
  perform an over-read (it could cause a crash if unprotected) (CWE-126).
    buffer = (char *) malloc(strlen("cddb query ") + strlen(disk_id) + 1 + 3 +
data/ripperx-2.8.0/src/cddbp.c:127:20:  [1] (buffer) strlen:
  Does not handle strings that are not \0-terminated; if given one it may
  perform an over-read (it could cause a crash if unprotected) (CWE-126).
    fwrite(buffer, strlen(buffer)+1, 1, socket);
data/ripperx-2.8.0/src/cddbp.c:181:9:  [1] (buffer) strncpy:
  Easily used incorrectly; doesn't always \0-terminate or check for invalid
  pointers [MS-banned] (CWE-120).
        strncpy((*category_buffer)[ *matches ], buffer, i);
data/ripperx-2.8.0/src/cddbp.c:187:9:  [1] (buffer) strncpy:
  Easily used incorrectly; doesn't always \0-terminate or check for invalid
  pointers [MS-banned] (CWE-120).
        strncpy((*id_buffer)[ *matches ], buffer, 8);
data/ripperx-2.8.0/src/cddbp.c:191:13:  [1] (buffer) strlen:
  Does not handle strings that are not \0-terminated; if given one it may
  perform an over-read (it could cause a crash if unprotected) (CWE-126).
        i = strlen(buffer) - 2;          /*strip the remaining '\r\n' from the
data/ripperx-2.8.0/src/cddbp.c:194:9:  [1] (buffer) strncpy:
  Easily used incorrectly; doesn't always \0-terminate or check for invalid
  pointers [MS-banned] (CWE-120).
        strncpy((*title_buffer)[ *matches ], buffer, i);
data/ripperx-2.8.0/src/cddbp.c:244:5:  [1] (buffer) strcpy:
  Does not check for buffer overflows when copying to destination [MS-banned]
  (CWE-120). Consider using snprintf, strcpy_s, or strlcpy (warning: strncpy
  easily misused). Risk is low because the source is a constant character.
    strcpy(*result_buffer, "");
data/ripperx-2.8.0/src/cddbp.c:354:9:  [1] (buffer) strcpy:
  Does not check for buffer overflows when copying to destination [MS-banned]
  (CWE-120). Consider using snprintf, strcpy_s, or strlcpy (warning: strncpy
  easily misused). Risk is low because the source is a constant character.
        strcpy(tmp, "");
data/ripperx-2.8.0/src/cddbp.c:442:9:  [1] (buffer) strncpy:
  Easily used incorrectly; doesn't always \0-terminate or check for invalid
  pointers [MS-banned] (CWE-120).
        strncpy((*category_buffer)[ *matches ], buffer, i);
data/ripperx-2.8.0/src/cddbp.c:447:9:  [1] (buffer) strncpy:
  Easily used incorrectly; doesn't always \0-terminate or check for invalid
  pointers [MS-banned] (CWE-120).
        strncpy((*id_buffer)[ *matches ], buffer, 8);
data/ripperx-2.8.0/src/cddbp.c:453:9:  [1] (buffer) strncpy:
  Easily used incorrectly; doesn't always \0-terminate or check for invalid
  pointers [MS-banned] (CWE-120).
        strncpy((*title_buffer)[ *matches ], buffer, i);
data/ripperx-2.8.0/src/cddbp.c:486:9:  [1] (buffer) strcpy:
  Does not check for buffer overflows when copying to destination [MS-banned]
  (CWE-120). Consider using snprintf, strcpy_s, or strlcpy (warning: strncpy
  easily misused). Risk is low because the source is a constant character.
        strcpy(tmp, "");
data/ripperx-2.8.0/src/cddbp.c:573:9:  [1] (buffer) strncpy:
  Easily used incorrectly; doesn't always \0-terminate or check for invalid
  pointers [MS-banned] (CWE-120).
        strncpy((*category_buffer)[ *matches ], buffer, i);
data/ripperx-2.8.0/src/cddbp.c:579:9:  [1] (buffer) strncpy:
  Easily used incorrectly; doesn't always \0-terminate or check for invalid
  pointers [MS-banned] (CWE-120).
        strncpy((*id_buffer)[ *matches ], buffer, 8);
data/ripperx-2.8.0/src/cddbp.c:585:9:  [1] (buffer) strncpy:
  Easily used incorrectly; doesn't always \0-terminate or check for invalid
  pointers [MS-banned] (CWE-120).
        strncpy((*title_buffer)[ *matches ], buffer, i);
data/ripperx-2.8.0/src/config_rw.c:85:40:  [1] (buffer) strlen:
  Does not handle strings that are not \0-terminated; if given one it may
  perform an over-read (it could cause a crash if unprotected) (CWE-126).
    copy (default_value, default_value+strlen(default_value)+1, m_id);
data/ripperx-2.8.0/src/config_window_handler.c:224:16:  [1] (buffer) strlen:
  Does not handle strings that are not \0-terminated; if given one it may
  perform an over-read (it could cause a crash if unprotected) (CWE-126).
            if(strlen(gtk_entry_get_text(
data/ripperx-2.8.0/src/config_window_handler.c:226:24:  [1] (buffer) strlen:
  Does not handle strings that are not \0-terminated; if given one it may
  perform an over-read (it could cause a crash if unprotected) (CWE-126).
                    || strlen(gtk_entry_get_text(
data/ripperx-2.8.0/src/config_window_handler.c:228:24:  [1] (buffer) strlen:
  Does not handle strings that are not \0-terminated; if given one it may
  perform an over-read (it could cause a crash if unprotected) (CWE-126).
                    || strlen(gtk_entry_get_text(
data/ripperx-2.8.0/src/config_window_handler.c:230:24:  [1] (buffer) strlen:
  Does not handle strings that are not \0-terminated; if given one it may
  perform an over-read (it could cause a crash if unprotected) (CWE-126).
                    || strlen(gtk_entry_get_text(
data/ripperx-2.8.0/src/config_window_handler.c:232:24:  [1] (buffer) strlen:
  Does not handle strings that are not \0-terminated; if given one it may
  perform an over-read (it could cause a crash if unprotected) (CWE-126).
                    || strlen(gtk_entry_get_text(
data/ripperx-2.8.0/src/config_window_handler.c:317:29:  [1] (buffer) strlen:
  Does not handle strings that are not \0-terminated; if given one it may
  perform an over-read (it could cause a crash if unprotected) (CWE-126).
            option_length = strlen(button[ 0 ].arg);
data/ripperx-2.8.0/src/config_window_handler.c:394:35:  [1] (buffer) strlen:
  Does not handle strings that are not \0-terminated; if given one it may
  perform an over-read (it could cause a crash if unprotected) (CWE-126).
            config.ripper.ripper[ strlen(plugins[ temp ].ripper)] = ' ';
data/ripperx-2.8.0/src/config_window_handler.c:707:13:  [1] (buffer) strncpy:
  Easily used incorrectly; doesn't always \0-terminate or check for invalid
  pointers [MS-banned] (CWE-120).
            strncpy(config.encoder.extra_options, gtk_entry_get_text(GTK_ENTRY(extra_options_entry)), MAX_OPTIONS_LENGTH);
data/ripperx-2.8.0/src/config_window_handler.c:773:51:  [1] (buffer) strlen:
  Does not handle strings that are not \0-terminated; if given one it may
  perform an over-read (it could cause a crash if unprotected) (CWE-126).
            if(plugins[cur_plugin].vbr_qual_op && strlen(plugins[cur_plugin].vbr_qual_op))
data/ripperx-2.8.0/src/config_window_handler.c:779:17:  [1] (buffer) sprintf:
  Does not check for buffer overflows (CWE-120). Use sprintf_s, snprintf, or
  vsnprintf. Risk is low because the source is a constant character.
                sprintf(vbr_qual_switch, "");
data/ripperx-2.8.0/src/config_window_handler.c:889:16:  [1] (buffer) strlen:
  Does not handle strings that are not \0-terminated; if given one it may
  perform an over-read (it could cause a crash if unprotected) (CWE-126).
            if(strlen(gtk_entry_get_text(
data/ripperx-2.8.0/src/config_window_handler.c:891:24:  [1] (buffer) strlen:
  Does not handle strings that are not \0-terminated; if given one it may
  perform an over-read (it could cause a crash if unprotected) (CWE-126).
                    || strlen(gtk_entry_get_text(
data/ripperx-2.8.0/src/config_window_handler.c:893:24:  [1] (buffer) strlen:
  Does not handle strings that are not \0-terminated; if given one it may
  perform an over-read (it could cause a crash if unprotected) (CWE-126).
                    || strlen(gtk_entry_get_text(
data/ripperx-2.8.0/src/config_window_handler.c:895:24:  [1] (buffer) strlen:
  Does not handle strings that are not \0-terminated; if given one it may
  perform an over-read (it could cause a crash if unprotected) (CWE-126).
                    || strlen(gtk_entry_get_text(
data/ripperx-2.8.0/src/config_window_handler.c:1183:16:  [1] (buffer) strlen:
  Does not handle strings that are not \0-terminated; if given one it may
  perform an over-read (it could cause a crash if unprotected) (CWE-126).
            if(strlen(gtk_entry_get_text(GTK_ENTRY(cddb_server_entry))) == 0
data/ripperx-2.8.0/src/config_window_handler.c:1184:24:  [1] (buffer) strlen:
  Does not handle strings that are not \0-terminated; if given one it may
  perform an over-read (it could cause a crash if unprotected) (CWE-126).
                    || strlen(gtk_entry_get_text(GTK_ENTRY(cddb_port_entry))) == 0)
data/ripperx-2.8.0/src/dir_window_handler.c:61:13:  [1] (buffer) strncpy:
  Easily used incorrectly; doesn't always \0-terminate or check for invalid
  pointers [MS-banned] (CWE-120).
            strncpy(check_dir, cur_dir, MAX_FILE_PATH_LENGTH);
data/ripperx-2.8.0/src/dir_window_handler.c:68:32:  [1] (buffer) strlen:
  Does not handle strings that are not \0-terminated; if given one it may
  perform an over-read (it could cause a crash if unprotected) (CWE-126).
                if((check_dir[ strlen(checked_dir) - 1 ] != '/')
data/ripperx-2.8.0/src/dir_window_handler.c:69:29:  [1] (buffer) strlen:
  Does not handle strings that are not \0-terminated; if given one it may
  perform an over-read (it could cause a crash if unprotected) (CWE-126).
                        && (strlen(checked_dir) > 0)
data/ripperx-2.8.0/src/dir_window_handler.c:70:29:  [1] (buffer) strlen:
  Does not handle strings that are not \0-terminated; if given one it may
  perform an over-read (it could cause a crash if unprotected) (CWE-126).
                        && (strlen(checked_dir) < MAX_FILE_PATH_LENGTH))
data/ripperx-2.8.0/src/dir_window_handler.c:72:35:  [1] (buffer) strcat:
  Does not check for buffer overflows when concatenating to destination
  [MS-banned] (CWE-120). Consider using strcat_s, strncat, strlcat, or
  snprintf (warning: strncat is easily misused). Risk is low because the
  source is a constant character.
                    checked_dir = strcat(check_dir, "/");
data/ripperx-2.8.0/src/dir_window_handler.c:98:13:  [1] (buffer) strncpy:
  Easily used incorrectly; doesn't always \0-terminate or check for invalid
  pointers [MS-banned] (CWE-120).
            strncpy(buf,
data/ripperx-2.8.0/src/dir_window_handler.c:125:16:  [1] (buffer) strlen:
  Does not handle strings that are not \0-terminated; if given one it may
  perform an over-read (it could cause a crash if unprotected) (CWE-126).
            if(strlen(temp) > 3)
data/ripperx-2.8.0/src/dir_window_handler.c:127:27:  [1] (buffer) strlen:
  Does not handle strings that are not \0-terminated; if given one it may
  perform an over-read (it could cause a crash if unprotected) (CWE-126).
                if((temp[ strlen(temp) - 1 ] == '/') &&
data/ripperx-2.8.0/src/dir_window_handler.c:128:32:  [1] (buffer) strlen:
  Does not handle strings that are not \0-terminated; if given one it may
  perform an over-read (it could cause a crash if unprotected) (CWE-126).
                        (temp[ strlen(temp) - 2 ] == '.') &&
data/ripperx-2.8.0/src/dir_window_handler.c:129:32:  [1] (buffer) strlen:
  Does not handle strings that are not \0-terminated; if given one it may
  perform an over-read (it could cause a crash if unprotected) (CWE-126).
                        (temp[ strlen(temp) - 3 ] == '.') &&
data/ripperx-2.8.0/src/dir_window_handler.c:130:32:  [1] (buffer) strlen:
  Does not handle strings that are not \0-terminated; if given one it may
  perform an over-read (it could cause a crash if unprotected) (CWE-126).
                        (temp[ strlen(temp) - 4 ] == '/'))
data/ripperx-2.8.0/src/dir_window_handler.c:132:27:  [1] (buffer) strlen:
  Does not handle strings that are not \0-terminated; if given one it may
  perform an over-read (it could cause a crash if unprotected) (CWE-126).
                    temp[ strlen(temp) - 3 ] = '\0';
data/ripperx-2.8.0/src/dir_window_handler.c:139:16:  [1] (buffer) strlen:
  Does not handle strings that are not \0-terminated; if given one it may
  perform an over-read (it could cause a crash if unprotected) (CWE-126).
            if(strlen(temp) > 2)
data/ripperx-2.8.0/src/dir_window_handler.c:141:27:  [1] (buffer) strlen:
  Does not handle strings that are not \0-terminated; if given one it may
  perform an over-read (it could cause a crash if unprotected) (CWE-126).
                if((temp[ strlen(temp) - 1 ] == '/') &&
data/ripperx-2.8.0/src/dir_window_handler.c:142:32:  [1] (buffer) strlen:
  Does not handle strings that are not \0-terminated; if given one it may
  perform an over-read (it could cause a crash if unprotected) (CWE-126).
                        (temp[ strlen(temp) - 2 ] == '.') &&
data/ripperx-2.8.0/src/dir_window_handler.c:143:32:  [1] (buffer) strlen:
  Does not handle strings that are not \0-terminated; if given one it may
  perform an over-read (it could cause a crash if unprotected) (CWE-126).
                        (temp[ strlen(temp) - 3 ] == '/'))
data/ripperx-2.8.0/src/dir_window_handler.c:145:27:  [1] (buffer) strlen:
  Does not handle strings that are not \0-terminated; if given one it may
  perform an over-read (it could cause a crash if unprotected) (CWE-126).
                    temp[ strlen(temp) - 2 ] = '\0';
data/ripperx-2.8.0/src/err_dialog_handler.c:315:16:  [1] (buffer) strlen:
  Does not handle strings that are not \0-terminated; if given one it may
  perform an over-read (it could cause a crash if unprotected) (CWE-126).
            if(strlen(gtk_entry_get_text(GTK_ENTRY(entry))) == 0)
data/ripperx-2.8.0/src/job_control.c:136:20:  [1] (buffer) strlen:
  Does not handle strings that are not \0-terminated; if given one it may
  perform an over-read (it could cause a crash if unprotected) (CWE-126).
                if(strlen(file_name) >
data/ripperx-2.8.0/src/main_data.c:142:29:  [1] (buffer) strlen:
  Does not handle strings that are not \0-terminated; if given one it may
  perform an over-read (it could cause a crash if unprotected) (CWE-126).
            sprintf(&buffer[strlen(buffer)], "%d: %s\n", ++tracksdone, file_name_without_path(wav_file));
data/ripperx-2.8.0/src/main_data.c:175:29:  [1] (buffer) strlen:
  Does not handle strings that are not \0-terminated; if given one it may
  perform an over-read (it could cause a crash if unprotected) (CWE-126).
            sprintf(&buffer[strlen(buffer)], "%d: %s\n", ++tracksdone, file_name_without_path(enc_file));
data/ripperx-2.8.0/src/misc_utils.c:157:21:  [1] (buffer) strlen:
  Does not handle strings that are not \0-terminated; if given one it may
  perform an over-read (it could cause a crash if unprotected) (CWE-126).
                n = strlen(tmp);
data/ripperx-2.8.0/src/misc_utils.c:220:18:  [1] (buffer) strlen:
  Does not handle strings that are not \0-terminated; if given one it may
  perform an over-read (it could cause a crash if unprotected) (CWE-126).
    strcpy(buf + strlen(buf), path + 1);
data/ripperx-2.8.0/src/misc_utils.c:230:14:  [1] (buffer) strlen:
  Does not handle strings that are not \0-terminated; if given one it may
  perform an over-read (it could cause a crash if unprotected) (CWE-126).
    offset = strlen(buf) - 1;
data/ripperx-2.8.0/src/misc_utils.c:247:14:  [1] (buffer) strlen:
  Does not handle strings that are not \0-terminated; if given one it may
  perform an over-read (it could cause a crash if unprotected) (CWE-126).
    offset = strlen(src) - 1;
data/ripperx-2.8.0/src/misc_utils.c:262:14:  [1] (buffer) strlen:
  Does not handle strings that are not \0-terminated; if given one it may
  perform an over-read (it could cause a crash if unprotected) (CWE-126).
    offset = strlen(src) - 1;
data/ripperx-2.8.0/src/misc_utils.c:269:5:  [1] (buffer) strncpy:
  Easily used incorrectly; doesn't always \0-terminate or check for invalid
  pointers [MS-banned] (CWE-120).
    strncpy(buf, src, offset);
data/ripperx-2.8.0/src/misc_utils.c:278:14:  [1] (buffer) strlen:
  Does not handle strings that are not \0-terminated; if given one it may
  perform an over-read (it could cause a crash if unprotected) (CWE-126).
    offset = strlen(src) - 4;
data/ripperx-2.8.0/src/misc_utils.c:355:29:  [1] (buffer) strlen:
  Does not handle strings that are not \0-terminated; if given one it may
  perform an over-read (it could cause a crash if unprotected) (CWE-126).
            write_offset += strlen(track_no_buf);
data/ripperx-2.8.0/src/misc_utils.c:809:5:  [1] (buffer) strcpy:
  Does not check for buffer overflows when copying to destination [MS-banned]
  (CWE-120). Consider using snprintf, strcpy_s, or strlcpy (warning: strncpy
  easily misused). Risk is low because the source is a constant character.
    strcpy(buffer1, "");
data/ripperx-2.8.0/src/misc_utils.c:810:5:  [1] (buffer) strcpy:
  Does not check for buffer overflows when copying to destination [MS-banned]
  (CWE-120). Consider using snprintf, strcpy_s, or strlcpy (warning: strncpy
  easily misused). Risk is low because the source is a constant character.
    strcpy(buffer2, "");
data/ripperx-2.8.0/src/misc_utils.c:811:5:  [1] (buffer) strcpy:
  Does not check for buffer overflows when copying to destination [MS-banned]
  (CWE-120). Consider using snprintf, strcpy_s, or strlcpy (warning: strncpy
  easily misused). Risk is low because the source is a constant character.
    strcpy(tmp.get(), "");
data/ripperx-2.8.0/src/misc_utils.c:891:13:  [1] (buffer) strlen:
  Does not handle strings that are not \0-terminated; if given one it may
  perform an over-read (it could cause a crash if unprotected) (CWE-126).
    int i = strlen(*string) - 1;
data/ripperx-2.8.0/src/misc_utils.c:922:24:  [1] (buffer) strlen:
  Does not handle strings that are not \0-terminated; if given one it may
  perform an over-read (it could cause a crash if unprotected) (CWE-126).
	memmove(*string, tmp, strlen(tmp)+1);
data/ripperx-2.8.0/src/misc_utils.c:939:33:  [1] (buffer) strlen:
  Does not handle strings that are not \0-terminated; if given one it may
  perform an over-read (it could cause a crash if unprotected) (CWE-126).
        *dest = (char *) malloc(strlen(holder) + strlen(appendage) + 1);
data/ripperx-2.8.0/src/misc_utils.c:939:50:  [1] (buffer) strlen:
  Does not handle strings that are not \0-terminated; if given one it may
  perform an over-read (it could cause a crash if unprotected) (CWE-126).
        *dest = (char *) malloc(strlen(holder) + strlen(appendage) + 1);
data/ripperx-2.8.0/src/misc_utils.c:1129:9:  [1] (buffer) strlen:
  Does not handle strings that are not \0-terminated; if given one it may
  perform an over-read (it could cause a crash if unprotected) (CWE-126).
    i = strlen(config.wav_path) - 1;
data/ripperx-2.8.0/src/misc_utils.c:1136:9:  [1] (buffer) strlen:
  Does not handle strings that are not \0-terminated; if given one it may
  perform an over-read (it could cause a crash if unprotected) (CWE-126).
    i = strlen(config.mp3_path) - 1;
data/ripperx-2.8.0/src/misc_utils.c:1162:12:  [1] (buffer) strlen:
  Does not handle strings that are not \0-terminated; if given one it may
  perform an over-read (it could cause a crash if unprotected) (CWE-126).
        if(strlen(df) > 0)
data/ripperx-2.8.0/src/misc_utils.c:1277:9:  [1] (buffer) strncpy:
  Easily used incorrectly; doesn't always \0-terminate or check for invalid
  pointers [MS-banned] (CWE-120).
        strncpy(dest, tk_p->title, MAX_FILE_NAME_LENGTH);
data/ripperx-2.8.0/src/misc_utils.c:1319:19:  [1] (buffer) strlen:
  Does not handle strings that are not \0-terminated; if given one it may
  perform an over-read (it could cause a crash if unprotected) (CWE-126).
    for(ep = sp + strlen(sp) - 1; isspace(*ep); --ep)
data/ripperx-2.8.0/src/misc_utils.c:1332:23:  [1] (buffer) strlen:
  Does not handle strings that are not \0-terminated; if given one it may
  perform an over-read (it could cause a crash if unprotected) (CWE-126).
    if(!inp || (len = strlen(inp)) == 0)
data/ripperx-2.8.0/src/misc_utils.c:1362:13:  [1] (buffer) strlen:
  Does not handle strings that are not \0-terminated; if given one it may
  perform an over-read (it could cause a crash if unprotected) (CWE-126).
    int n = strlen(inp);
data/ripperx-2.8.0/src/misc_utils.c:1389:17:  [1] (buffer) strlen:
  Does not handle strings that are not \0-terminated; if given one it may
  perform an over-read (it could cause a crash if unprotected) (CWE-126).
        tlen += strlen(cp);
data/ripperx-2.8.0/src/misc_utils.c:1396:55:  [1] (buffer) strlen:
  Does not handle strings that are not \0-terminated; if given one it may
  perform an over-read (it could cause a crash if unprotected) (CWE-126).
    for(cpb = *ptr; (cp = va_arg(ap, char *)); cpb += strlen(cp))
data/ripperx-2.8.0/src/ripper_encoder_manipulation.c:160:27:  [1] (buffer) strlen:
  Does not handle strings that are not \0-terminated; if given one it may
  perform an over-read (it could cause a crash if unprotected) (CWE-126).
    while(temp != NULL && strlen(buf) > 5)
data/ripperx-2.8.0/src/ripper_encoder_manipulation.c:184:13:  [1] (buffer) strncpy:
  Easily used incorrectly; doesn't always \0-terminate or check for invalid
  pointers [MS-banned] (CWE-120).
            strncpy(track.title,
data/ripperx-2.8.0/src/ripper_encoder_manipulation.c:556:12:  [1] (buffer) read:
  Check buffer boundaries if used in a loop including recursive loops
  (CWE-120, CWE-20).
        if(read(read_fd, buf + i++, 1) <= 0)
data/ripperx-2.8.0/src/select_frame_handler.c:268:16:  [1] (buffer) strlen:
  Does not handle strings that are not \0-terminated; if given one it may
  perform an over-read (it could cause a crash if unprotected) (CWE-126).
            if(strlen(main_data->disc_year) < 2)
data/ripperx-2.8.0/src/select_frame_handler.c:354:20:  [1] (buffer) strlen:
  Does not handle strings that are not \0-terminated; if given one it may
  perform an over-read (it could cause a crash if unprotected) (CWE-126).
                if(strlen(saved_filename_entry[ i ]) == 0)
data/ripperx-2.8.0/src/select_frame_handler.c:479:16:  [1] (buffer) strlen:
  Does not handle strings that are not \0-terminated; if given one it may
  perform an over-read (it could cause a crash if unprotected) (CWE-126).
            if(strlen(gtk_entry_get_text(GTK_ENTRY(filename_entry[ track ]))) == 0)
data/ripperx-2.8.0/src/select_frame_handler.c:540:20:  [1] (buffer) strlen:
  Does not handle strings that are not \0-terminated; if given one it may
  perform an over-read (it could cause a crash if unprotected) (CWE-126).
                if(strlen(tmp))

ANALYSIS SUMMARY:

Hits = 364
Lines analyzed = 10916 in approximately 0.28 seconds (39014 lines/second)
Physical Source Lines of Code (SLOC) = 8396
Hits@level = [0] 146 [1] 122 [2] 149 [3]   5 [4]  88 [5]   0
Hits@level+ = [0+] 510 [1+] 364 [2+] 242 [3+]  93 [4+]  88 [5+]   0
Hits/KSLOC@level+ = [0+] 60.7432 [1+] 43.354 [2+] 28.8232 [3+] 11.0767 [4+] 10.4812 [5+]   0
Dot directories skipped = 1 (--followdotdir overrides)
Minimum risk level = 1
Not every hit is necessarily a security vulnerability.
There may be other security vulnerabilities; review your code!
See 'Secure Programming HOWTO'
(https://dwheeler.com/secure-programs) for more information.