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 /
recibos /
subir /
js /
[ HOME SHELL ]
Name
Size
Permission
Action
bootstrap.min.js
27.96
KB
-rwxrwxr-x
jquery-2.0.2.js
237.22
KB
-rwxrwxr-x
upload.js
2.16
KB
-rwxrwxr-x
Delete
Unzip
Zip
${this.title}
Close
Code Editor : upload.js
// Ajax File upload with jQuery and XHR2 // Sean Clark http://square-bracket.com // xhr2 file upload // data is optional $.fn.upload = function(remote, data, successFn, progressFn) { // if we dont have post data, move it along if (typeof data != "object") { progressFn = successFn; successFn = data; } return this.each(function() { if ($(this)[0].files[0]) { var formData = new FormData(); formData.append($(this).attr("name"), $(this)[0].files[0]); // if we have post data too if (typeof data == "object") { for (var i in data) { formData.append(i, data[i]); } } // do the ajax request $.ajax({ url: remote, type: 'POST', xhr: function() { myXhr = $.ajaxSettings.xhr(); if (myXhr.upload && progressFn) { myXhr.upload.addEventListener('progress', function(prog) { var value = ~~((prog.loaded / prog.total) * 100); // if we passed a progress function if (progressFn && typeof progressFn == "function") { progressFn(prog, value); // if we passed a progress element } else if (progressFn) { $(progressFn).val(value); } }, false); } return myXhr; }, data: formData, dataType: "json", cache: false, contentType: false, processData: false, complete: function(res) { var json; try { json = JSON.parse(res.responseText); } catch (e) { json = res.responseText; } if (successFn) successFn(json); } }); } }); };
Close