mirror of
https://github.com/optim-enterprises-bv/control-pane.git
synced 2025-11-01 18:38:03 +00:00
12 lines
214 B
PHP
12 lines
214 B
PHP
<?php
|
|
if(!isset($_GET['jname']))
|
|
{
|
|
echo 'You forgot to specify a name of jail!';
|
|
exit;
|
|
}
|
|
|
|
$rp=realpath('../');
|
|
include($rp.'/php/clonos.php');
|
|
$clonos=new ClonOS($rp);
|
|
$clonos->runVNC($_GET['jname']);
|