Forbid non-CLI access to command-line scripts
This commit is contained in:
parent
3bd8b81154
commit
06632536f3
6 changed files with 29 additions and 0 deletions
|
@ -23,6 +23,11 @@
|
|||
* This script was taken from http://php.net/manual/en/function.pcntl-fork.php
|
||||
*/
|
||||
|
||||
if (php_sapi_name() !== 'cli') {
|
||||
header($_SERVER["SERVER_PROTOCOL"] . ' 403 Forbidden');
|
||||
exit();
|
||||
}
|
||||
|
||||
use Dice\Dice;
|
||||
use Friendica\Core\Logger;
|
||||
use Friendica\Core\Worker;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue