[ Avaa Bypassed ]




Upload:

Command:

hmhc3928@3.133.124.80: ~ $
<?php
/**
 * The PHPInfo tab contents.
 *
 * @package Health Check
 */

// Make sure the file is not directly accessible.
if ( ! defined( 'ABSPATH' ) ) {
	die( 'We\'re sorry, but you can not directly access this file.' );
}
?>

<div class="health-check-body">

<h2>
	<?php esc_html_e( 'Extended PHP Information', 'health-check' ); ?>
</h2>

<?php
if ( ! function_exists( 'phpinfo' ) ) {
	?>

	<div class="notice notice-error inline">
		<p>
			<?php esc_html_e( 'The phpinfo() function has been disabled by your host. Please contact the host if you need more information about your setup.', 'health-check' ); ?>
		</p>
	</div>

	<?php
} else {
	ob_start();
	phpinfo();
	$phpinfo_raw = ob_get_clean();

	// Extract the body of the `phpinfo()` call, to avoid all the styles they introduce.
	preg_match_all( '/<body[^>]*>(.*)<\/body>/siU', $phpinfo_raw, $phpinfo );

	// Extract the styles `phpinfo()` creates for this page.
	preg_match_all( '/<style[^>]*>(.*)<\/style>/siU', $phpinfo_raw, $styles );

	// We remove various styles that break the visual flow of wp-admin.
	$remove_patterns = array(
		"/a:.+?\n/si",
		"/body.+?\n/si",
	);

	// Output the styles as an inline style block.
	if ( isset( $styles[1][0] ) ) {
		$styles = preg_replace( $remove_patterns, '', $styles[1][0] );

		echo '<style type="text/css">' . $styles . '</style>';
	}

	// Output the actual phpinfo data.
	if ( isset( $phpinfo[1][0] ) ) {
		echo $phpinfo[1][0];
	}
	?>

	<?php
}
?>
</div>

Filemanager

Name Type Size Permission Actions
debug-data.php File 3.74 KB 0644
phpinfo.php File 1.43 KB 0644
screenshots.php File 3.46 KB 0644
site-health-header.php File 1.43 KB 0644
site-status.php File 1.14 KB 0644
tools.php File 2.21 KB 0644
troubleshoot.php File 1.67 KB 0644