mirror of
https://github.com/Codiad/Codiad.git
synced 2026-03-08 02:06:47 +01:00
21 lines
516 B
PHP
Executable File
21 lines
516 B
PHP
Executable File
<?php
|
|
|
|
/*
|
|
* Copyright (c) Codiad & Kent Safranski (codiad.com), distributed
|
|
* as-is and without warranty under the MIT License. See
|
|
* [root]/license.txt for more. This information must remain intact.
|
|
*/
|
|
|
|
// Enable or disable terminal
|
|
|
|
$terminal_enabled = false;
|
|
|
|
// Terminal password (Leave blank for none)
|
|
|
|
$terminal_password = '';
|
|
|
|
// Restricted and non-functional (require interactive mode) commands
|
|
|
|
$restricted = array('ssh','telnet');
|
|
|
|
?>
|