Linux ns1.utparral.edu.mx 6.8.0-79-generic #79~22.04.1-Ubuntu SMP PREEMPT_DYNAMIC Fri Aug 15 16:54:53 UTC 2 x86_64
Apache/2.4.58 (Unix) OpenSSL/1.1.1w PHP/8.2.12 mod_perl/2.0.12 Perl/v5.34.1
: 10.10.1.9 | : 10.10.1.254
Cant Read [ /etc/named.conf ]
daemon
Terminal
AUTO ROOT
Adminer
Backdoor Destroyer
Linux Exploit
Lock Shell
Lock File
Create User
README
+ Create Folder
+ Create File
/
opt /
lampp /
htdocs /
phpMyAdmin /
templates /
privileges /
[ HOME SHELL ]
Name
Size
Permission
Action
add_privileges_database.phtml
702
B
-rwxrwxr-x
add_privileges_routine.phtml
631
B
-rwxrwxr-x
add_privileges_table.phtml
611
B
-rwxrwxr-x
add_user_fieldset.phtml
442
B
-rwxrwxr-x
choose_user_group.phtml
474
B
-rwxrwxr-x
column_privileges.phtml
1.03
KB
-rwxrwxr-x
delete_user_fieldset.phtml
876
B
-rwxrwxr-x
edit_routine_privileges.phtml
1.28
KB
-rwxrwxr-x
global_priv_table.phtml
1.02
KB
-rwxrwxr-x
global_priv_tbl_item.phtml
320
B
-rwxrwxr-x
initials_row.phtml
1.09
KB
-rwxrwxr-x
privileges_summary.phtml
2.74
KB
-rwxrwxr-x
privileges_summary_row.phtml
447
B
-rwxrwxr-x
require_options_item.phtml
1
KB
-rwxrwxr-x
require_options.phtml
620
B
-rwxrwxr-x
resource_limit_item.phtml
402
B
-rwxrwxr-x
resource_limits.phtml
445
B
-rwxrwxr-x
Delete
Unzip
Zip
${this.title}
Close
Code Editor : privileges_summary.phtml
<?php use PMA\libraries\Template; ?> <form class="submenu-item" action="server_privileges.php" id="<?= $formId; ?>" method="post"> <?= PMA\libraries\URL::getHiddenInputs(); ?> <input type="hidden" name="username" value="<?= htmlspecialchars($userName); ?>" /> <input type="hidden" name="hostname" value="<?= htmlspecialchars($hostName); ?>" /> <fieldset> <legend data-submenu-label="<?= $subMenuLabel; ?>"> <?= $legend; ?> </legend> <table class="data"> <thead> <tr> <th><?= $typeLabel; ?></th> <th><?= __('Privileges'); ?></th> <th><?= __('Grant'); ?></th> <?php if ($type == 'database') : ?> <th><?= __('Table-specific privileges'); ?></th> <?php elseif ($type == 'table') : ?> <th><?= __('Column-specific privileges'); ?></th> <?php endif; ?> <th colspan="2"><?= __('Action'); ?></th> </tr> </thead> <tbody> <?php if (count($privileges) == 0) : ?> <?php $colspan = ($type == 'database' ? 7 : ($type == 'table' ? 6 : 5)); ?> <tr> <td colspan="<?= $colspan; ?>"><center><i><?= __('None') ?></i></center></td> </tr> <?php else : ?> <?php foreach ($privileges as $privilege) : ?> <?= Template::get('privileges/privileges_summary_row') ->render( array_merge( $privilege, array( 'type' => $type, ) ) ); ?> <?php endforeach; ?> <?php endif; ?> </tbody> </table> <?php if ($type == 'database') : ?> <?= Template::get('privileges/add_privileges_database') ->render(array('databases' => $databases)); ?> <?php elseif ($type == 'table') : ?> <?= Template::get('privileges/add_privileges_table') ->render(array('database' => $database, 'tables' => $tables)); ?> <?php else: // routine ?> <?= Template::get('privileges/add_privileges_routine') ->render(array('database' => $database, 'routines' => $routines)); ?> <?php endif; ?> </fieldset> <fieldset class="tblFooters"> <input type="submit" value="<?= __('Go'); ?>" /> </fieldset> </form>
Close