403Webshell
Server IP : 210.245.233.93  /  Your IP : 216.73.216.226
Web Server : Apache/2.2.15 (CentOS)
System : Linux webserver2.onesolution.com.hk 2.6.32-754.35.1.el6.x86_64 #1 SMP Sat Nov 7 12:42:14 UTC 2020 x86_64
User : apache ( 48)
PHP Version : 5.3.3
Disable Function : exec, shell_exec, system, passthru, popen, proc_open, pcntl_exec
MySQL : ON  |  cURL : ON  |  WGET : ON  |  Perl : ON  |  Python : ON  |  Sudo : ON  |  Pkexec : ON
Directory :  /var/www/(Del)hsihk.com/wp-content/plugins/backupbuddy/controllers/ajax/

Upload File :
current_dir [ Writeable ] document_root [ Writeable ]

 

Command :


[ Back ]     

Current File : /var/www/(Del)hsihk.com/wp-content/plugins/backupbuddy/controllers/ajax/php_max_runtime_test.php
<?php
if ( ! is_admin() ) { die( 'Access denied.' ); }
// Tests ACTUAL PHP maximum runtime.
/*	php_max_runtime_test()
*	
*	Tests the ACTUAL PHP maximum runtime of the server by echoing and logging to the status log the seconds elapsed.
*	
*	@param		int		$stop_time_limit		Time after which the test will stop if it is still running.
*	@return		null
*/


$stop_time_limit = 240;
pb_backupbuddy::set_greedy_script_limits(); // Crank it up for the test!

$m = "# Starting BackupBuddy PHP Max Execution Time Tester. Determines what your ACTUAL limit is (usually shorter than the server reports so now you can find out the truth!). Stopping test if it gets to `{$stop_time_limit}` seconds. When your browser stops loading this page then the script has most likely timed out at your actual PHP limit.";
pb_backupbuddy::status( 'details', $m );
echo $m . "<br>\n";

$t = 0; // Time = 0;
while( $t < $stop_time_limit ) {
	
	pb_backupbuddy::status( 'details', 'Max PHP Execution Time Test status: ' . $t );
	echo $t . "<br>\n";
	//sleep( 1 );
	$now = time(); while ( time() < ( $now + 1 ) ) { true; }
	flush();
	$t++;
	
}

$m = '# Ending BackupBuddy PHP Max Execution Time The test was stopped as the test time limit of ' . $stop_time_limit . ' seconds.';
pb_backupbuddy::status( 'details', $m );
echo $m . "<br>\n";
die();

Youez - 2016 - github.com/yon3zu
LinuXploit