Linux amd.servercpanel.com 5.14.0-570.25.1.el9_6.x86_64 #1 SMP PREEMPT_DYNAMIC Wed Jul 9 04:57:09 EDT 2025 x86_64
LiteSpeed
Server IP : 161.248.188.165 & Your IP : 216.73.216.219
Domains :
Cant Read [ /etc/named.conf ]
User : oishifashion
Terminal
Auto Root
Create File
Create Folder
Localroot Suggester
Backdoor Destroyer
Readme
/
usr /
local /
sitepad /
editor /
site-inc /
js /
tinymce /
Delete
Unzip
Name
Size
Permission
Date
Action
langs
[ DIR ]
drwxr-xr-x
2025-07-16 10:19
plugins
[ DIR ]
drwxr-xr-x
2025-07-16 10:19
skins
[ DIR ]
drwxr-xr-x
2025-07-16 10:19
themes
[ DIR ]
drwxr-xr-x
2025-07-16 10:19
utils
[ DIR ]
drwxr-xr-x
2025-07-16 10:19
license.txt
25.82
KB
-rw-r--r--
2025-11-28 07:18
tiny_mce_popup.js
15.61
KB
-rw-r--r--
2025-11-28 07:18
tinymce.min.js
344.92
KB
-rw-r--r--
2025-11-28 07:18
wp-tinymce.js
635.57
KB
-rw-r--r--
2025-11-28 07:18
wp-tinymce.php
1.02
KB
-rw-r--r--
2025-11-28 07:18
Save
Rename
<?php /** * Not used in core since 5.1. * This is a back-compat for plugins that may be using this method of loading directly. */ /** * Disable error reporting * * Set this to error_reporting( -1 ) for debugging. */ error_reporting( 0 ); $basepath = dirname( __FILE__ ); function get_file( $path ) { if ( function_exists( 'realpath' ) ) { $path = realpath( $path ); } if ( ! $path || ! @is_file( $path ) ) { return false; } return @file_get_contents( $path ); } $expires_offset = 31536000; // 1 year header( 'Content-Type: application/javascript; charset=UTF-8' ); header( 'Vary: Accept-Encoding' ); // Handle proxies header( 'Expires: ' . gmdate( 'D, d M Y H:i:s', time() + $expires_offset ) . ' GMT' ); header( "Cache-Control: public, max-age=$expires_offset" ); if ( isset( $_GET['c'] ) && ( $file = get_file( $basepath . '/wp-tinymce.js' ) ) ) { echo $file; } else { // Even further back compat. echo get_file( $basepath . '/tinymce.min.js' ); echo get_file( $basepath . '/plugins/compat3x/plugin.min.js' ); } exit;