HEX
Server: Apache/2.4.52 (Ubuntu)
System: Linux WebLive 5.15.0-79-generic #86-Ubuntu SMP Mon Jul 10 16:07:21 UTC 2023 x86_64
User: ubuntu (1000)
PHP: 7.4.33
Disabled: pcntl_alarm,pcntl_fork,pcntl_waitpid,pcntl_wait,pcntl_wifexited,pcntl_wifstopped,pcntl_wifsignaled,pcntl_wifcontinued,pcntl_wexitstatus,pcntl_wtermsig,pcntl_wstopsig,pcntl_signal,pcntl_signal_get_handler,pcntl_signal_dispatch,pcntl_get_last_error,pcntl_strerror,pcntl_sigprocmask,pcntl_sigwaitinfo,pcntl_sigtimedwait,pcntl_exec,pcntl_getpriority,pcntl_setpriority,pcntl_async_signals,pcntl_unshare,
Upload Files
File: /var/www/html/wpamazingsecret/wp-content/plugins_/pixelyoursite/includes/views/html-report.php
<?php

namespace PixelYourSite;

if ( ! defined( 'ABSPATH' ) ) {
	exit; // Exit if accessed directly.
}

?>

<div class="wrap" id="pys">
	<h1><?php _e( 'PixelYourSite', 'pys' ); ?></h1>
	<div class="container">
		<div class="row">
			<div class="col">

				<h2 class="section-title">System Report</h2>

				<?php foreach ( get_system_report_data() as $section_name => $section_report ) : ?>

				<div class="card card-static">
					<div class="card-header">
						<?php esc_html_e( $section_name ); ?>
					</div>
					<div class="card-body">
						<table class="table system-report">
							<tbody>

							<?php foreach ( $section_report as $name => $value ) : ?>

								<tr>
									<td style="width: 50%;"><?php echo $name; ?></td>
									<td style="width: 50%;"><?php echo $value; ?></td>
								</tr>

							<?php endforeach; ?>

							</tbody>
						</table>
					</div>
				</div>

				<?php endforeach; ?>

			</div>
		</div>

		<hr>
		<div class="row justify-content-center">
			<div class="col-4">
				<form method="post">
					<?php wp_nonce_field( 'pys_download_system_report_nonce' ); ?>
					<input type="hidden" name="pys_action" value="download_system_report"/>
					<button type="submit" class="btn btn-block btn-sm btn-primary">Download System Report</button>
				</form>
			</div>
		</div>
	</div>
</div>