HEX
Server: Apache
System: Linux uyu7574470001-7d78c9ff74-xfpwm 4.19.91-21.al7.x86_64 #1 SMP Wed Sep 2 19:47:49 CST 2020 x86_64
User: ()
PHP: 7.4.16
Disabled: chmod,exec,system,passthru,shell_exec,escapeshellarg,escapeshellcmd,proc_close,proc_open,ini_alter,dl,popen,pcntl_exec,socket_accept,socket_bind,socket_clear_error,socket_close,socket_connect,socket_create_listen,socket_create_pair,socket_create,socket_get_option,socket_getpeername,socket_getsockname,socket_last_error,socket_listen,socket_read,socket_recv,socket_recvfrom,socket_select,socket_send,socket_sendto,socket_set_block,socket_set_nonblock,socket_set_option,socket_shutdown,socket_strerror,socket_write,stream_socket_client,stream_socket_server,pfsockopen,disk_total_space,disk_free_space,chown,diskfreespace,getrusage,get_current_user,getmyuid,getmypid,dl,leak,listen,chgrp,link,symlink,dlopen,proc_nice,proc_get_stats,proc_terminate,shell_exec,sh2_exec,posix_getpwuid,posix_getgrgid,posix_kill,ini_restore,mkfifo,dbmopen,dbase_open,filepro,filepro_rowcount,posix_mkfifo,putenv,sleep,fsockopen
Upload Files
File: /usr/home/uyu7574470001/htdocs/wp-content/plugins/protect-uploads/templates/password-prompt.php
<?php
/**
 * Template for password protection prompt
 *
 * @package    Protect_Uploads
 * @subpackage Protect_Uploads/templates
 */

?>
<!DOCTYPE html>
<html <?php language_attributes(); ?>>
<head>
	<meta charset="<?php bloginfo( 'charset' ); ?>">
	<meta name="viewport" content="width=device-width, initial-scale=1">
	<title><?php esc_html_e( 'Protected Media - Password Required', 'protect-uploads' ); ?></title>
	<?php wp_head(); ?>
	<style>
		.protect-uploads-prompt {
			max-width: 400px;
			margin: 100px auto;
			padding: 20px;
			background: #fff;
			box-shadow: 0 1px 3px rgba(0,0,0,0.13);
			border-radius: 4px;
		}
		.protect-uploads-prompt h1 {
			margin: 0 0 20px;
			padding: 0;
			font-size: 24px;
			font-weight: 400;
			line-height: 1.3;
		}
		.protect-uploads-prompt form {
			margin: 0;
			padding: 0;
		}
		.protect-uploads-prompt .input-group {
			margin-bottom: 15px;
		}
		.protect-uploads-prompt label {
			display: block;
			margin-bottom: 5px;
		}
		.protect-uploads-prompt input[type="password"] {
			width: 100%;
			padding: 8px;
			font-size: 14px;
			line-height: 1.4;
			border: 1px solid #ddd;
			border-radius: 4px;
			box-sizing: border-box;
		}
		.protect-uploads-prompt .button {
			display: inline-block;
			padding: 8px 16px;
			font-size: 14px;
			line-height: 1.4;
			text-decoration: none;
			background: #0085ba;
			border: 1px solid #006799;
			border-radius: 4px;
			color: #fff;
			cursor: pointer;
		}
		.protect-uploads-prompt .button:hover {
			background: #008ec2;
		}
		.protect-uploads-prompt .error {
			color: #dc3232;
			margin: 0 0 15px;
			padding: 0;
		}
	</style>
</head>
<body class="protect-uploads-body">
	<div class="protect-uploads-prompt">
		<h1><?php esc_html_e( 'This media file is password protected', 'protect-uploads' ); ?></h1>
		
		<?php if ( ! empty( $error_message ) ) : ?>
			<p class="error"><?php echo esc_html( $error_message ); ?></p>
		<?php endif; ?>

		<form method="post" action="">
			<?php wp_nonce_field( 'protect_uploads_verify_password', 'protect_uploads_nonce' ); ?>
			<input type="hidden" name="attachment_id" value="<?php echo esc_attr( $attachment_id ); ?>">
			
			<div class="input-group">
				<label for="password"><?php esc_html_e( 'Password:', 'protect-uploads' ); ?></label>
				<input type="password" name="password" id="password" required>
			</div>

			<button type="submit" class="button"><?php esc_html_e( 'Submit', 'protect-uploads' ); ?></button>
		</form>
	</div>
	<?php wp_footer(); ?>
</body>
</html>