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.144.70.25
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 /
js /
tinymce /
Delete
Unzip
Name
Size
Permission
Date
Action
langs
[ DIR ]
drwxr-x---
2025-05-12 07:42
plugins
[ DIR ]
drwxr-x---
2025-05-13 13:54
skins
[ DIR ]
drwxr-x---
2025-05-12 07:42
themes
[ DIR ]
drwxr-x---
2025-05-12 07:42
utils
[ DIR ]
drwxr-x---
2025-05-12 07:42
license.txt
25.82
KB
-rw-r-----
2017-05-08 05:32
tiny_mce_popup.js
15.61
KB
-rw-r-----
2017-09-26 21:15
tinymce.min.js
357
KB
-rw-r-----
2020-11-10 10:44
wp-tinymce.js
655.7
KB
-rw-r--r--
2025-04-15 17:44
wp-tinymce.php
1.02
KB
-rw-r-----
2020-02-06 06:33
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 = __DIR__; 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" ); $file = get_file( $basepath . '/wp-tinymce.js' ); if ( isset( $_GET['c'] ) && $file ) { echo $file; } else { // Even further back compat. echo get_file( $basepath . '/tinymce.min.js' ); echo get_file( $basepath . '/plugins/compat3x/plugin.min.js' ); } exit;