mirror of
https://github.com/pfsense/pfsense.git
synced 2025-10-26 11:38:35 +00:00
12 lines
190 B
PHP
Executable File
12 lines
190 B
PHP
Executable File
<?php
|
|
|
|
/* make sure we are coming from 127.0.0.1 */
|
|
$ip = $HTTP_SERVER_VARS['REMOTE_ADDR'];
|
|
if($ip <> "127.0.0.1")
|
|
exit;
|
|
|
|
/* preload */
|
|
require("config.inc");
|
|
require("functions.inc");
|
|
|
|
?>
|