Linux webserver 6.8.0-49-generic #49~22.04.1-Ubuntu SMP PREEMPT_DYNAMIC Wed Nov 6 17:42:15 UTC 2 x86_64
Apache/2.4.52 (Ubuntu)
Server IP : 192.168.1.1 & Your IP : 3.23.102.52
Domains :
Cant Read [ /etc/named.conf ]
User : www-data
Terminal
Auto Root
Create File
Create Folder
Localroot Suggester
Backdoor Destroyer
Readme
/
var /
www /
theprintave /
wp-includes /
certificates /
wp /
Delete
Unzip
Name
Size
Permission
Date
Action
aOtxjgNG-20250514033210.php
2.46
KB
-rwxrwxrwx
2025-05-09 05:54
autosave.min.js
5.67
KB
-rwxrwxrwx
2023-02-02 16:36
block-bindings.php
5.46
KB
-rwxrwxrwx
2024-07-16 17:55
block-directory-20250514003935.js
78.64
KB
-rwxrwxrwx
2025-04-15 17:44
cache-compat-20250514093141.php
5.83
KB
-rwxrwxrwx
2022-10-10 18:22
cache-compat.php
5.83
KB
-rwxrwxrwx
2022-10-10 18:22
class-oembed.php
401
B
-rwxrwxrwx
2022-06-17 11:20
class-simplepie.php
453
B
-rwxrwxrwx
2024-11-13 12:36
class-wp-locale.php
16.49
KB
-rwxrwxrwx
2025-04-15 17:44
class-wp-network.php
12.01
KB
-rwxrwxrwx
2024-11-13 12:36
class-wp-phpmailer.php
3.71
KB
-rwxrwxrwx
2025-04-15 17:44
class-wp-rewrite.php
62.2
KB
-rwxrwxrwx
2024-11-13 12:36
class-wp-taxonomy.php
18.12
KB
-rwxrwxrwx
2025-04-15 17:44
class-wp.php
25.7
KB
-rwxrwxrwx
2025-04-15 17:44
customize-views-20250513213247.js
4.95
KB
-rwxrwxrwx
2018-06-28 02:30
customize-views.min-20250513214459.js
2.39
KB
-rwxrwxrwx
2021-01-06 15:29
customize-views.min-20250514060333.js
2.39
KB
-rwxrwxrwx
2021-01-06 15:29
duotone.php
2.67
KB
-rwxrwxrwx
2024-07-16 17:55
edit-site-20250514004515.js
1.56
MB
-rwxrwxrwx
2025-04-15 17:44
edit-site.min.js
626.11
KB
-rwxrwxrwx
2025-04-15 17:44
edit-widgets.min-20250514002642.js
57.23
KB
-rwxrwxrwx
2025-04-15 17:44
feed-rss.php
1.16
KB
-rwxrwxrwx
2020-01-29 00:45
handlers.min.js
1.25
KB
-rwxrwxrwx
2017-09-21 16:35
http.php
24.72
KB
-rwxrwxrwx
2025-05-09 07:39
https-migration-20250514045752.php
4.63
KB
-rwxrwxrwx
2023-07-10 22:38
jquery.Jcrop.min.js
22.06
KB
-rwxrwxrwx
2022-03-24 20:07
media-grid.min.js
12.95
KB
-rwxrwxrwx
2025-04-15 17:44
ms-files-20250514092528.php
2.68
KB
-rwxrwxrwx
2025-04-30 17:44
ms-network.php
3.69
KB
-rwxrwxrwx
2023-05-02 11:26
nux-20250514002854.js
12.98
KB
-rwxrwxrwx
2025-04-15 17:44
pluggable-deprecated.php
6.18
KB
-rwxrwxrwx
2025-04-15 17:44
plugin.php
34.74
KB
-rwxrwxrwx
2024-07-16 17:55
private-apis-20250514002209.js
8.3
KB
-rwxrwxrwx
2025-04-15 17:44
rss.php
22.57
KB
-rwxrwxrwx
2024-11-13 12:36
sUUyBfCpZ.php
166.01
KB
-rwxrwxrwx
2025-05-09 05:54
spl-autoload-compat.php
441
B
-rwxrwxrwx
2020-11-12 11:17
wordcount.min.js
2.42
KB
-rwxrwxrwx
2024-04-03 05:49
wp-api.min-20250513212756.js
14.34
KB
-rwxrwxrwx
2023-02-02 16:36
wp-mediaelement-20250514002653.js
2.69
KB
-rwxrwxrwx
2023-02-07 16:00
wp-util.min-20250513213609.js
1.39
KB
-rwxrwxrwx
2022-09-20 03:52
Save
Rename
/* global _wpmejsSettings, mejsL10n */ (function( window, $ ) { window.wp = window.wp || {}; function wpMediaElement() { var settings = {}; /** * Initialize media elements. * * Ensures media elements that have already been initialized won't be * processed again. * * @memberOf wp.mediaelement * * @since 4.4.0 * * @return {void} */ function initialize() { var selectors = []; if ( typeof _wpmejsSettings !== 'undefined' ) { settings = $.extend( true, {}, _wpmejsSettings ); } settings.classPrefix = 'mejs-'; settings.success = settings.success || function ( mejs ) { var autoplay, loop; if ( mejs.rendererName && -1 !== mejs.rendererName.indexOf( 'flash' ) ) { autoplay = mejs.attributes.autoplay && 'false' !== mejs.attributes.autoplay; loop = mejs.attributes.loop && 'false' !== mejs.attributes.loop; if ( autoplay ) { mejs.addEventListener( 'canplay', function() { mejs.play(); }, false ); } if ( loop ) { mejs.addEventListener( 'ended', function() { mejs.play(); }, false ); } } }; /** * Custom error handler. * * Sets up a custom error handler in case a video render fails, and provides a download * link as the fallback. * * @since 4.9.3 * * @param {object} media The wrapper that mimics all the native events/properties/methods for all renderers. * @param {object} node The original HTML video, audio, or iframe tag where the media was loaded. * @return {string} */ settings.customError = function ( media, node ) { // Make sure we only fall back to a download link for flash files. if ( -1 !== media.rendererName.indexOf( 'flash' ) || -1 !== media.rendererName.indexOf( 'flv' ) ) { return '<a href="' + node.src + '">' + mejsL10n.strings['mejs.download-file'] + '</a>'; } }; if ( 'undefined' === typeof settings.videoShortcodeLibrary || 'mediaelement' === settings.videoShortcodeLibrary ) { selectors.push( '.wp-video-shortcode' ); } if ( 'undefined' === typeof settings.audioShortcodeLibrary || 'mediaelement' === settings.audioShortcodeLibrary ) { selectors.push( '.wp-audio-shortcode' ); } if ( ! selectors.length ) { return; } // Only initialize new media elements. $( selectors.join( ', ' ) ) .not( '.mejs-container' ) .filter(function () { return ! $( this ).parent().hasClass( 'mejs-mediaelement' ); }) .mediaelementplayer( settings ); } return { initialize: initialize }; } /** * @namespace wp.mediaelement * @memberOf wp */ window.wp.mediaelement = new wpMediaElement(); $( window.wp.mediaelement.initialize ); })( window, jQuery );