Server IP : 184.154.167.98 / Your IP : 3.144.180.88 Web Server : Apache System : Linux pink.dnsnetservice.com 4.18.0-553.22.1.lve.1.el8.x86_64 #1 SMP Tue Oct 8 15:52:54 UTC 2024 x86_64 User : puertode ( 1767) PHP Version : 8.2.27 Disable Function : NONE MySQL : OFF | cURL : ON | WGET : ON | Perl : ON | Python : ON | Sudo : ON | Pkexec : ON Directory : /usr/share/l.v.e-manager/ispmanager/liblve1.1/addon/ |
Upload File : |
#!/usr/bin/php -n <?php /** * Copyright © Cloud Linux GmbH & Cloud Linux Software, Inc 2010-2019 All Rights Reserved * * Licensed under CLOUD LINUX LICENSE AGREEMENT * http://cloudlinux.com/docs/LICENSE.TXT */ set_time_limit(0); error_reporting(E_ALL ^ E_NOTICE ^ E_WARNING); ini_set('display_errors', 0); //$file = fopen('/usr/local/ispmgr/addon/test.log',"a+"); // Include Commands Class include_once('lvemanager/preset.class.php'); @include_once('lvemanager/mini_kron.php'); $file2 = fopen('/usr/local/ispmgr/addon/lvemanager/mini_kron.php',"w+"); fclose($file2); $stdin=str_replace('<></>','',file_get_contents('php://stdin')); if ($_SERVER['REQUEST_METHOD'] == 'POST') { $commands = new LVEPreset($stdin); $commands->AddUser(); $commands->PrintXml(); } else { $commands = new LVEPreset($stdin); $commands->PrintXml(); } //fclose($file);