2020-10-02 23:02:27 +08:00
|
|
|
<?php
|
|
|
|
$csv = array_map('str_getcsv', file('./../../lrr_submission/KeepItSafe.txt'));
|
|
|
|
$mysql_username = $csv[0][0];
|
|
|
|
$mysql_password = $csv[0][1];
|
2022-12-11 18:48:58 +08:00
|
|
|
$salt = $csv[1][1]; // the second column in the second line of KeepItSafe.txt has the salt, e.g., Lrr@2022
|
2020-10-02 23:02:27 +08:00
|
|
|
?>
|