Files
web/php/whitelist.php
2016-01-03 15:36:31 -06:00

7 lines
129 B
PHP

<?php
$arg = $_GET['li00'];
$shell_cmd = "/usr/local/bin/whitelist.sh ".$arg;
$to_show = exec($shell_cmd);
print_r($to_show);
?>