├── .profile ├── LICENSE ├── README.md ├── _config.yml ├── admin.php ├── css ├── editor.min.css ├── font-awesome │ ├── css │ │ ├── font-awesome.css │ │ └── font-awesome.min.css │ ├── fonts │ │ ├── FontAwesome.otf │ │ ├── fontawesome-webfont.eot │ │ ├── fontawesome-webfont.svg │ │ ├── fontawesome-webfont.ttf │ │ ├── fontawesome-webfont.woff │ │ └── fontawesome-webfont.woff2 │ ├── less │ │ ├── animated.less │ │ ├── bordered-pulled.less │ │ ├── core.less │ │ ├── fixed-width.less │ │ ├── font-awesome.less │ │ ├── icons.less │ │ ├── larger.less │ │ ├── list.less │ │ ├── mixins.less │ │ ├── path.less │ │ ├── rotated-flipped.less │ │ ├── screen-reader.less │ │ ├── stacked.less │ │ └── variables.less │ └── scss │ │ ├── _animated.scss │ │ ├── _bordered-pulled.scss │ │ ├── _core.scss │ │ ├── _fixed-width.scss │ │ ├── _icons.scss │ │ ├── _larger.scss │ │ ├── _list.scss │ │ ├── _mixins.scss │ │ ├── _path.scss │ │ ├── _rotated-flipped.scss │ │ ├── _screen-reader.scss │ │ ├── _stacked.scss │ │ ├── _variables.scss │ │ └── font-awesome.scss ├── index.php ├── mikhmon-ui.blue.min.css ├── mikhmon-ui.dark.min.css ├── mikhmon-ui.green.min.css ├── mikhmon-ui.light.min.css ├── mikhmon-ui.pink.min.css ├── pace.blue.css ├── pace.css ├── pace.dark.css ├── pace.green.css ├── pace.light.css └── pace.pink.css ├── dashboard ├── aload.php ├── home.php └── index.php ├── dhcp ├── dhcpleases.php └── index.php ├── docker-compose.yml ├── hotspot ├── adduser.php ├── adduserprofile.php ├── cookies.php ├── exportusers.php ├── generateuser.php ├── hosts.php ├── hotspotactive.php ├── index.php ├── ipbinding.php ├── listquickprint.php ├── log.php ├── quickprint.php ├── quickuser.php ├── userbyname.php ├── userbyprofile.php ├── userprofile.php ├── userprofilebyname.php └── users.php ├── img ├── favicon.png ├── index.php ├── logo-kemangi41.png └── logo.png ├── include ├── about.php ├── config.php ├── headhtml.php ├── index.php ├── lang.php ├── login.php ├── menu.php ├── quickbt.php ├── readcfg.php ├── theme.php ├── userlog.php └── version.php ├── index.php ├── js ├── editor.min.js ├── highcharts │ ├── highcharts.js │ └── themes │ │ ├── hc.blue.js │ │ ├── hc.dark.js │ │ ├── hc.green.js │ │ ├── hc.light.js │ │ └── hc.pink.js ├── index.php ├── jquery.min.js ├── mikhmon-ui.blue.min.js ├── mikhmon-ui.dark.min.js ├── mikhmon-ui.green.min.js ├── mikhmon-ui.light.min.js ├── mikhmon-ui.pink.min.js ├── mikhmon.js ├── pace.min.js └── qrious.min.js ├── lang ├── en.php ├── es.php ├── id.php ├── isocodelang.php ├── tl.php └── tr.php ├── lib ├── formatbytesbites.php ├── index.php └── routeros_api.class.php ├── nginx.conf ├── process ├── disablehotspotuser.php ├── enablehotspotuser.php ├── getvalidprice.php ├── index.php ├── pipbinding.php ├── pscheduler.php ├── reboot.php ├── removecookie.php ├── removeexpiredhotspotuser.php ├── removehost.php ├── removehotspotuser.php ├── removehotspotuserbycomment.php ├── removepactive.php ├── removereport.php ├── removeuseractive.php ├── removeuserprofile.php ├── resethotspotuser.php └── shutdown.php ├── report ├── index.php ├── livereport.php ├── print.php ├── resumereport.php ├── selling.php └── userlog.php ├── settings ├── index.php ├── sessions.php ├── setlang.php ├── settheme.php ├── settings.php ├── uplogo.php └── vouchereditor.php ├── status ├── index.php ├── ping-test.php └── status.php ├── system ├── index.php └── scheduler.php ├── traffic ├── index.php ├── traffic.php └── trafficmonitor.php ├── verson.txt └── voucher ├── default-small.php ├── default-thermal.php ├── default.php ├── index.php ├── print.php ├── printbt.php ├── temp.php ├── template-small.php ├── template-thermal.php ├── template.php ├── variable.php └── vpreview.php /.profile: -------------------------------------------------------------------------------- 1 | chmod -R 777 Storage 2 | -------------------------------------------------------------------------------- /_config.yml: -------------------------------------------------------------------------------- 1 | #Jekyll configuration 2 | url: "https://laksa19.github.io/mikhmonv3" 3 | title: Changelog Mikhmon V3 4 | highlighter: rouge 5 | -------------------------------------------------------------------------------- /admin.php: -------------------------------------------------------------------------------- 1 | . 17 | */ 18 | session_start(); 19 | // hide all error 20 | error_reporting(0); 21 | 22 | ob_start("ob_gzhandler"); 23 | 24 | // check url 25 | $url = $_SERVER['REQUEST_URI']; 26 | 27 | // load session MikroTik 28 | $session = $_GET['session']; 29 | $id = $_GET['id']; 30 | $c = $_GET['c']; 31 | $router = $_GET['router']; 32 | $logo = $_GET['logo']; 33 | 34 | $ids = array( 35 | "editor", 36 | "uplogo", 37 | "settings", 38 | ); 39 | 40 | // lang 41 | include('./lang/isocodelang.php'); 42 | include('./include/lang.php'); 43 | include('./lang/'.$langid.'.php'); 44 | 45 | // quick bt 46 | include('./include/quickbt.php'); 47 | 48 | // theme 49 | include('./include/theme.php'); 50 | include('./settings/settheme.php'); 51 | include('./settings/setlang.php'); 52 | if ($_SESSION['theme'] == "") { 53 | $theme = $theme; 54 | $themecolor = $themecolor; 55 | } else { 56 | $theme = $_SESSION['theme']; 57 | $themecolor = $_SESSION['themecolor']; 58 | } 59 | 60 | 61 | // load config 62 | include_once('./include/headhtml.php'); 63 | include('./include/config.php'); 64 | include('./include/readcfg.php'); 65 | 66 | include_once('./lib/routeros_api.class.php'); 67 | include_once('./lib/formatbytesbites.php'); 68 | ?> 69 | 70 | window.location='./admin.php?id=sessions'"; 80 | 81 | } else { 82 | $error = '