Windows NT WIN-F6SLGVICLOP 10.0 build 17763 (Windows Server 2016) AMD64
Microsoft-IIS/10.0
Server IP : & Your IP : 18.217.108.153
Domains :
Cant Read [ /etc/named.conf ]
User : elibrary.unsap.ac.id
Terminal
Auto Root
Create File
Create Folder
Localroot Suggester
Backdoor Destroyer
Lock Shell
Lock File++
Readme
D: /
localhost /
elibrary /
admin /
modules /
system /
Delete
Unzip
Name
Size
Permission
Date
Action
app_user.php
21.95
KB
-rw-rw-rw-
2020-02-14 07:54
backup.php
4.21
KB
-rw-rw-rw-
2020-02-14 07:54
backup_proc.php
4.54
KB
-rw-rw-rw-
2020-02-14 07:54
barcode_generator.php
7.27
KB
-rw-rw-rw-
2020-02-14 07:54
biblio_indexer.inc.php
11.69
KB
-rw-rw-rw-
2020-02-14 07:54
biblio_indexer_es.inc.php
593
B
-rw-rw-rw-
2020-02-14 07:54
biblio_indexes.php
6.02
KB
-rw-rw-rw-
2020-02-14 07:54
biblio_indexes.sh
3.88
KB
-rw-rw-rw-
2020-02-14 07:54
biblio_indexes_es.php
9.36
KB
-rw-rw-rw-
2020-02-14 07:54
content.php
11.75
KB
-rw-rw-rw-
2020-02-14 07:54
envinfo.php
3.04
KB
-rw-rw-rw-
2020-02-14 07:54
holiday.php
14.92
KB
-rw-rw-rw-
2020-02-14 07:54
index.php
15.34
KB
-rw-rw-rw-
2020-02-14 07:54
membercard_theme.php
9.16
KB
-rw-rw-rw-
2020-02-14 07:54
module.php
10
KB
-rw-rw-rw-
2020-02-14 07:54
module_priv_form.inc.php
3.61
KB
-rw-rw-rw-
2020-02-14 07:54
shortcut.php
6.56
KB
-rw-rw-rw-
2020-02-14 07:54
submenu.php
2.74
KB
-rw-rw-rw-
2020-02-14 07:54
sys_log.php
5.92
KB
-rw-rw-rw-
2020-02-14 07:54
theme.php
12.3
KB
-rw-rw-rw-
2020-02-14 07:54
ucsetting.php
3.96
KB
-rw-rw-rw-
2020-02-14 07:54
user_group.php
11.27
KB
-rw-rw-rw-
2020-02-14 07:54
Save
Rename
<?php /** * * Copyright (C) 2007,2008 Arie Nugraha (dicarve@yahoo.com) * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by * the Free Software Foundation; either version 3 of the License, or * (at your option) any later version. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * GNU General Public License for more details. * * You should have received a copy of the GNU General Public License * along with this program; if not, write to the Free Software * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA * */ // be sure that this file not accessed directly if (INDEX_AUTH != 1) { die("can not access this file directly"); } // start the output buffer ob_start(); $table = new simbio_table(); $table->table_attr = 'align="center" class="table table-bordered detailTable noAutoFocus" style="width: 100%;" cellpadding="2" cellspacing="0"'; $table->setHeader(array(__('Module Name'), '<a id="allRead" class="notAJAX" href="#">'.__('Read').'</a>', '<a id="allWrite" class="notAJAX" href="#">'.__('Write').'</a>')); $table->table_header_attr = 'class="dataListHeader" style="font-weight: bold;"'; // initial row count $row = 1; $row_class = 'alterCell2'; // database list $module_query = $dbs->query("SELECT * FROM mst_module AS m"); while ($module_data = $module_query->fetch_assoc()) { // alternate the row color if ($row_class == 'alterCell2') { $row_class = 'alterCell'; } else { $row_class = 'alterCell2'; } $read_checked = ''; $write_checked = ''; if (isset($priv_data[$module_data['module_id']]['r']) AND $priv_data[$module_data['module_id']]['r'] == 1) { $read_checked = 'checked'; } if (isset($priv_data[$module_data['module_id']]['w']) AND $priv_data[$module_data['module_id']]['w'] == 1) { $read_checked = 'checked'; $write_checked = 'checked'; } $chbox_read = '<input type="checkbox" class="read" name="read[]" value="'.$module_data['module_id'].'" '.$read_checked.' />'; $chbox_write = '<input type="checkbox" class="write" name="write[]" value="'.$module_data['module_id'].'" '.$write_checked.' />'; $table->appendTableRow(array(__( ucwords(str_replace('_', ' ', $module_data['module_name'])) ), $chbox_read, $chbox_write)); $table->setCellAttr($row, 0, 'valign="top" class="'.$row_class.'" style="font-weight: bold;"'); $table->setCellAttr($row, 1, 'valign="top" class="'.$row_class.'" style="width: 5%;"'); $table->setCellAttr($row, 2, 'valign="top" class="'.$row_class.'" style="width: 5%;"'); $row++; } echo $table->printTable(); ob_start(); ?> <script type="text/javascript"> $(document).ready(function() { // function to toggle check input:checkbox element var toggleChecked = function ($cls) { var elm = $('input:checkbox.' + $cls); var isChecked = elm.is(':checked'); if (isChecked) { elm.prop('checked', false); } else { elm.prop('checked', true); } }; // toggle checked for all read rule $('#allRead').click(function (e) { e.preventDefault(); toggleChecked('read'); }); // toggle checked for all write rule $('#allWrite').click(function (e) { e.preventDefault(); toggleChecked('write'); }); }); </script> <?php echo ob_get_clean(); $priv_table = ob_get_clean();