1
0
mirror of https://github.com/danog/phpseclib.git synced 2024-11-30 04:39:21 +01:00

SCP: issue error if remote_file is empty in put() call

This commit is contained in:
terrafrost 2019-01-27 17:03:53 -06:00
parent 7432a6959a
commit 5b795c18ab

View File

@ -180,6 +180,11 @@ class Net_SCP
return false;
}
if (empty($remote_file)) {
user_error('remote_file cannot be blank', E_USER_NOTICE);
return false;
}
if (!$this->ssh->exec('scp -t ' . escapeshellarg($remote_file), false)) { // -t = to
return false;
}