mirror of
https://github.com/pi-hole/web.git
synced 2025-12-22 19:58:27 +00:00
29 lines
689 B
PHP
29 lines
689 B
PHP
<?php
|
|
|
|
require_once "func.php";
|
|
|
|
$customDNSFile = "/etc/pihole/custom.list";
|
|
|
|
require_once('auth.php');
|
|
|
|
// Authentication checks
|
|
if (isset($_POST['token'])) {
|
|
check_cors();
|
|
check_csrf($_POST['token']);
|
|
} else {
|
|
log_and_die('Not allowed (login session invalid or expired, please relogin on the Pi-hole dashboard)!');
|
|
}
|
|
|
|
|
|
switch ($_POST['action'])
|
|
{
|
|
case 'get': echo json_encode(echoCustomDNSEntries()); break;
|
|
case 'add': echo json_encode(addCustomDNSEntry()); break;
|
|
case 'delete': echo json_encode(deleteCustomDNSEntry()); break;
|
|
default:
|
|
die("Wrong action");
|
|
}
|
|
|
|
|
|
?>
|