Linux vps-61133.fhnet.fr 4.9.0-19-amd64 #1 SMP Debian 4.9.320-2 (2022-06-30) x86_64
Apache/2.4.25 (Debian)
Server IP : 93.113.207.21 & Your IP : 216.73.216.112
Domains :
Cant Read [ /etc/named.conf ]
User : www-data
Terminal
Auto Root
Create File
Create Folder
Localroot Suggester
Backdoor Destroyer
Readme
/
usr /
share /
phpmyadmin /
templates /
privileges /
Delete
Unzip
Name
Size
Permission
Date
Action
add_privileges_database.phtml
702
B
-rw-r--r--
2017-01-23 20:20
add_privileges_routine.phtml
631
B
-rw-r--r--
2017-01-23 20:20
add_privileges_table.phtml
611
B
-rw-r--r--
2017-01-23 20:20
edit_routine_privileges.phtml
1.27
KB
-rw-r--r--
2017-01-23 20:20
privileges_summary.phtml
2.89
KB
-rw-r--r--
2017-01-23 20:20
privileges_summary_row.phtml
486
B
-rw-r--r--
2017-01-23 20:20
Save
Rename
<?php use PMA\libraries\Template; ?> <form class="submenu-item" action="server_privileges.php" id="<?= $formId; ?>" method="post"> <?= PMA_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 class="odd"> <td colspan="<?= $colspan; ?>"><center><i><?= __('None') ?></i></center></td> </tr> <?php else : ?> <?php $odd = true; ?> <?php foreach ($privileges as $privilege) : ?> <?= Template::get('privileges/privileges_summary_row') ->render( array_merge( $privilege, array( 'odd' => $odd, 'type' => $type, ) ) ); ?> <?php $odd = !$odd; ?> <?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>