コード例 #1
0
ファイル: addkey.php プロジェクト: nanch/tarbackup
function getArg($argname)
{
    if (empty($_POST[$argname])) {
        echo "no {$argname}";
        return "";
    } else {
        $arg = $_POST[$argname];
        if (!isStringAllowed($arg)) {
            echo "illegal character in {$argname}";
            return "";
        }
    }
    return $_POST[$argname];
}
コード例 #2
0
ファイル: backup.php プロジェクト: nanch/tarbackup
}
if (empty($user)) {
    echo "no user specified.\n";
    return;
}
if (empty($pw)) {
    echo "no password specified.\n";
    return;
}
// authorize this request
$connection = ssh2_connect('localhost', 22);
if (!ssh2_auth_password($connection, $user, $pw)) {
    echo "user/password could not be authenticated\n";
    return;
}
// compute the save path from $saveto
if (!empty($saveto)) {
    $savepath = "/mnt/r6/{$user}/storage/" . $saveto;
} else {
    $filename = $_FILES["file"]["name"];
    if (!isStringAllowed($filename)) {
        echo "failing on filename";
        return;
    }
    $savepath = "/mnt/r6/{$user}/storage/" . $filename;
}
shell_exec("sudo chown apache /mnt/r6/{$user}/storage/");
move_uploaded_file($_FILES["file"]["tmp_name"], $savepath);
shell_exec("sudo chown {$user}:targroup /mnt/r6/{$user}/storage/");
shell_exec("sudo chown {$user}:targroup {$savepath}");
echo "success\n";