Linux webserver 6.8.0-49-generic #49~22.04.1-Ubuntu SMP PREEMPT_DYNAMIC Wed Nov 6 17:42:15 UTC 2 x86_64
Apache/2.4.52 (Ubuntu)
Server IP : 192.168.1.1 & Your IP : 3.144.17.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 /
js /
src /
transformations /
Delete
Unzip
Name
Size
Permission
Date
Action
image_upload.js
787
B
-rw-r--r--
2021-06-04 04:20
json.js
628
B
-rw-r--r--
2021-06-04 04:20
json_editor.js
435
B
-rw-r--r--
2021-06-04 04:20
sql_editor.js
276
B
-rw-r--r--
2021-06-04 04:20
xml.js
623
B
-rw-r--r--
2021-06-04 04:20
xml_editor.js
370
B
-rw-r--r--
2021-06-04 04:20
Save
Rename
/** * 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 () { 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'); });