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
/
home /
insepet /
wp-content /
themes /
micron /
js /
[ HOME SHELL ]
Name
Size
Permission
Action
admin-scripts.js
7.23
KB
-rw-r--r--
controller.js
23.97
KB
-rw-r--r--
fromTo.js
914
B
-rw-r--r--
imagesloaded.pkgd.min.js
6.42
KB
-rw-r--r--
jquery.animate-colors-min.js
2.69
KB
-rw-r--r--
jquery.colorbox-min.js
10.64
KB
-rw-r--r--
jquery.contentcarousel.js
5.38
KB
-rw-r--r--
jquery.easing.min.js
5.42
KB
-rw-r--r--
jquery.easy-pie-chart.js
6.44
KB
-rw-r--r--
jquery.flexslider-min.js
20.92
KB
-rw-r--r--
jquery.inview.min.js
1.23
KB
-rw-r--r--
jquery.mobile-events.min.js
13.29
KB
-rw-r--r--
jquery.mousewheel.js
7.18
KB
-rw-r--r--
jquery.ninzio-slider-preview.j...
2.55
KB
-rw-r--r--
jquery.ninzio-slider.js
9.37
KB
-rw-r--r--
jquery.simplr.smoothscroll.js
1.26
KB
-rw-r--r--
jquery.singlePageNav.min.js
2.49
KB
-rw-r--r--
jquery.ui.totop.min.js
1.3
KB
-rw-r--r--
masonry.pkgd.min.js
24.1
KB
-rw-r--r--
media-modal.js
1.78
KB
-rw-r--r--
modernizer.js
14.27
KB
-rw-r--r--
multi-post-thumbnails-admin.js
1.89
KB
-rw-r--r--
retina-1.1.0.min.js
2.92
KB
-rw-r--r--
Delete
Unzip
Zip
${this.title}
Close
Code Editor : media-modal.js
/*global window,jQuery,wp */ var MediaModal = function (options) { 'use strict'; this.settings = { calling_selector: false, cb: function (attachment) {} }; var that = this, frame = wp.media.frames.file_frame; this.attachEvents = function attachEvents() { jQuery(this.settings.calling_selector).on('click', this.openFrame); }; this.openFrame = function openFrame(e) { e.preventDefault(); // Create the media frame. frame = wp.media.frames.file_frame = wp.media({ title: jQuery(this).data('uploader_title'), button: { text: jQuery(this).data('uploader_button_text') }, library : { type : 'image' } }); // Set filterable state to uploaded to get select to show (setting this // when creating the frame doesn't work) frame.on('toolbar:create:select', function(){ frame.state().set('filterable', 'uploaded'); }); // When an image is selected, run the callback. frame.on('select', function () { // We set multiple to false so only get one image from the uploader var attachment = frame.state().get('selection').first().toJSON(); that.settings.cb(attachment); }); frame.on('open activate', function() { // Get the link/button/etc that called us var $caller = jQuery(that.settings.calling_selector); // Select the thumbnail if we have one if ($caller.data('thumbnail_id')) { var Attachment = wp.media.model.Attachment; var selection = frame.state().get('selection'); selection.add(Attachment.get($caller.data('thumbnail_id'))); } }); frame.open(); }; this.init = function init() { this.settings = jQuery.extend(this.settings, options); this.attachEvents(); }; this.init(); return this; };
Close