Passwords are passed as command line arguments to external programs in several places, which is insecure:
|
`$mysql_command --host=$host --port=$port --user=$dbuser --password=$dbpass $db < $global_sql_file`; |
|
`$mysqldump_command --host=$host --port=$port --user=$dbuser --password=$dbpass $db OPL_local_statistics > $output_file`; |
More instances of this form are suggested in #985.
Passwords are passed as command line arguments to external programs in several places, which is insecure:
webwork2/bin/update-OPL-statistics
Line 210 in db7eb3b
webwork2/bin/upload-OPL-statistics
Line 54 in db7eb3b
More instances of this form are suggested in #985.