diff --git a/usr/local/sbin/pfSsh.php b/usr/local/sbin/pfSsh.php new file mode 100755 index 0000000000..e2f9a05f7c --- /dev/null +++ b/usr/local/sbin/pfSsh.php @@ -0,0 +1,36 @@ +#!/usr/local/bin/php -f + + "; + $command = chop(fgets($fp)); + if($command == "exit") { + $shell_active = false; + echo "\n"; + break; + } + eval($command); +}