phpnuxbill/index.php

32 lines
860 B
PHP
Raw Normal View History

2017-03-11 03:51:06 +08:00
<?php
/**
2023-10-12 16:55:42 +08:00
* PHP Mikrotik Billing (https://github.com/hotspotbilling/phpnuxbill/)
* by https://t.me/ibnux
**/
2023-06-15 16:26:38 +08:00
session_start();
2022-08-23 17:33:21 +08:00
2023-06-15 16:26:38 +08:00
if(isset($_GET['nux-mac']) && !empty($_GET['nux-mac'])){
$_SESSION['nux-mac'] = $_GET['nux-mac'];
}
if(isset($_GET['nux-ip']) && !empty($_GET['nux-ip'])){
$_SESSION['nux-ip'] = $_GET['nux-ip'];
}
2023-09-21 13:09:03 +08:00
if(isset($_GET['nux-router']) && !empty($_GET['nux-router'])){
$_SESSION['nux-router'] = $_GET['nux-router'];
}
//get chap id and chap challenge
if(isset($_GET['nux-key']) && !empty($_GET['nux-key'])){
$_SESSION['nux-key'] = $_GET['nux-key'];
}
//get mikrotik hostname
if(isset($_GET['nux-hostname']) && !empty($_GET['nux-hostname'])){
$_SESSION['nux-hostname'] = $_GET['nux-hostname'];
}
2023-06-15 16:26:38 +08:00
require_once 'system/vendor/autoload.php';
require_once 'system/boot.php';
2017-03-11 03:51:06 +08:00
App::_run();