mirror of
https://github.com/pi-hole/web.git
synced 2026-03-03 16:09:04 +00:00
7 lines
129 B
PHP
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);
|
|
?>
|