mirror of
https://github.com/serghey-rodin/vesta.git
synced 2025-07-16 10:03:21 -07:00
7 lines
135 B
PHP
7 lines
135 B
PHP
<?php
|
|
|
|
$arg1 = escapeshellarg($_GET['arg1']);
|
|
$arg2 = escapeshellarg($_GET['arg2']);
|
|
|
|
echo "/root/bin/test.sh ".$arg1." ".$arg2."\n";
|
|
|