mirror of
https://github.com/serghey-rodin/vesta.git
synced 2026-02-02 12:39:31 +01:00
8 lines
135 B
PHP
8 lines
135 B
PHP
<?php
|
|
|
|
$arg1 = escapeshellarg($_GET['arg1']);
|
|
$arg2 = escapeshellarg($_GET['arg2']);
|
|
|
|
echo "/root/bin/test.sh ".$arg1." ".$arg2."\n";
|
|
|