Linux polon 4.19.0-27-amd64 #1 SMP Debian 4.19.316-1 (2024-06-25) x86_64
Apache/2.4.59 (Debian)
: 10.2.73.233 | : 216.73.216.105
Cant Read [ /etc/named.conf ]
5.6.40-64+0~20230107.71+debian10~1.gbp673146
ifk
Terminal
AUTO ROOT
Adminer
Backdoor Destroyer
Linux Exploit
Lock Shell
Lock File
Create User
CREATE RDP
PHP Mailer
BACKCONNECT
HASH IDENTIFIER
README
+ Create Folder
+ Create File
/
usr /
share /
phpmyadmin /
js /
[ HOME SHELL ]
Name
Size
Permission
Action
codemirror
[ DIR ]
drwxr-xr-x
jqplot
[ DIR ]
drwxr-xr-x
jquery
[ DIR ]
drwxr-xr-x
openlayers
[ DIR ]
drwxr-xr-x
pmd
[ DIR ]
drwxr-xr-x
tracekit
[ DIR ]
drwxr-xr-x
transformations
[ DIR ]
drwxr-xr-x
ajax.js
28.9
KB
-rw-r--r--
big_ints.js
1.88
KB
-rw-r--r--
chart.js
17.84
KB
-rw-r--r--
common.js
18.36
KB
-rw-r--r--
config.js
25.86
KB
-rw-r--r--
console.js
57.53
KB
-rw-r--r--
cross_framing_protection.js
468
B
-rw-r--r--
db_central_columns.js
10.63
KB
-rw-r--r--
db_operations.js
5.76
KB
-rw-r--r--
db_qbe.js
2.04
KB
-rw-r--r--
db_search.js
8.42
KB
-rw-r--r--
db_structure.js
15.42
KB
-rw-r--r--
db_tracking.js
3.22
KB
-rw-r--r--
doclinks.js
20.16
KB
-rw-r--r--
error_report.js
9.87
KB
-rw-r--r--
export.js
28.66
KB
-rw-r--r--
functions.js
162.06
KB
-rw-r--r--
get_image.js.php
4.65
KB
-rw-r--r--
get_scripts.js.php
1.93
KB
-rw-r--r--
gis_data_editor.js
14.33
KB
-rw-r--r--
import.js
5.49
KB
-rw-r--r--
indexes.js
26.3
KB
-rw-r--r--
keyhandler.js
3.25
KB
-rw-r--r--
line_counts.php
36.92
KB
-rw-r--r--
makegrid.js
95.13
KB
-rw-r--r--
menu-resizer.js
6.48
KB
-rw-r--r--
messages.php
38.55
KB
-rw-r--r--
microhistory.js
11.22
KB
-rw-r--r--
multi_column_sort.js
2.83
KB
-rw-r--r--
navigation.js
53.8
KB
-rw-r--r--
normalization.js
26.39
KB
-rw-r--r--
page_settings.js
1.66
KB
-rw-r--r--
replication.js
3.03
KB
-rw-r--r--
rte.js
46.45
KB
-rw-r--r--
server_databases.js
4.96
KB
-rw-r--r--
server_plugins.js
525
B
-rw-r--r--
server_privileges.js
16.23
KB
-rw-r--r--
server_status_advisor.js
3.6
KB
-rw-r--r--
server_status_monitor.js
84.43
KB
-rw-r--r--
server_status_processes.js
5.97
KB
-rw-r--r--
server_status_queries.js
950
B
-rw-r--r--
server_status_sorter.js
2.51
KB
-rw-r--r--
server_status_variables.js
3.57
KB
-rw-r--r--
server_user_groups.js
1.34
KB
-rw-r--r--
server_variables.js
5.93
KB
-rw-r--r--
sprintf.js
7.21
KB
-rw-r--r--
sql.js
32.71
KB
-rw-r--r--
tbl_change.js
27.8
KB
-rw-r--r--
tbl_chart.js
13.61
KB
-rw-r--r--
tbl_find_replace.js
1.55
KB
-rw-r--r--
tbl_gis_visualization.js
10.64
KB
-rw-r--r--
tbl_operations.js
12.99
KB
-rw-r--r--
tbl_relation.js
8.35
KB
-rw-r--r--
tbl_select.js
15.07
KB
-rw-r--r--
tbl_structure.js
20.41
KB
-rw-r--r--
tbl_tracking.js
3.44
KB
-rw-r--r--
tbl_zoom_plot_jqplot.js
22.55
KB
-rw-r--r--
whitelist.php
1.1
KB
-rw-r--r--
Delete
Unzip
Zip
${this.title}
Close
Code Editor : get_scripts.js.php
<?php /* vim: set expandtab sw=4 ts=4 sts=4: */ /** * Concatenates several js files to reduce the number of * http requests sent to the server * * @package PhpMyAdmin */ chdir('..'); // Close session early as we won't write anything there session_write_close(); // Send correct type header('Content-Type: text/javascript; charset=UTF-8'); // Enable browser cache for 1 hour header('Expires: ' . gmdate('D, d M Y H:i:s', time() + 3600) . ' GMT'); // When a token is not presented, even though whitelisted arrays are removed // in PMA_removeRequestVars(). This is a workaround for that. $_GET['scripts'] = json_encode($_GET['scripts']); // Avoid loading the full common.inc.php because this would add many // non-js-compatible stuff like DOCTYPE define('PMA_MINIMUM_COMMON', true); define('PMA_PATH_TO_BASEDIR', '../'); require_once './libraries/common.inc.php'; $buffer = PMA\libraries\OutputBuffering::getInstance(); $buffer->start(); register_shutdown_function( function () { echo PMA\libraries\OutputBuffering::getInstance()->getContents(); } ); $_GET['scripts'] = json_decode($_GET['scripts']); if (! empty($_GET['scripts']) && is_array($_GET['scripts'])) { // Only up to 10 scripts as this is what we generate foreach (array_slice($_GET['scripts'], 0, 10) as $script) { // Sanitise filename $script_name = 'js'; $path = explode("/", $script); foreach ($path as $index => $filename) { // Allow alphanumeric, "." and "-" chars only, no files starting // with . if (preg_match("@^[\w][\w\.-]+$@", $filename)) { $script_name .= DIRECTORY_SEPARATOR . $filename; } } // Output file contents if (preg_match("@\.js$@", $script_name) && is_readable($script_name)) { readfile($script_name); echo ";\n\n"; } } } if (isset($_GET['call_done'])) { echo "AJAX.scriptHandler.done();"; }
Close