diff options
-rwxr-xr-x | usr/local/sbin/pfSsh.php | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/usr/local/sbin/pfSsh.php b/usr/local/sbin/pfSsh.php index e900b10..7af81fe 100755 --- a/usr/local/sbin/pfSsh.php +++ b/usr/local/sbin/pfSsh.php @@ -168,6 +168,10 @@ $playback_file_split = array(); $playbackbuffer = ""; if($argv[1]=="playback" or $argv[1]=="run") { + if(!file_exists("/etc/phpshellsessions/{$argv[2]}")) { + echo "Could not locate playback file."; + exit; + } playback_file($argv[2]); exit; } |