403Webshell
Server IP : 15.235.198.142  /  Your IP : 216.73.216.81
Web Server : Apache/2.4.58 (Ubuntu)
System : Linux ballsack 6.8.0-45-generic #45-Ubuntu SMP PREEMPT_DYNAMIC Fri Aug 30 12:02:04 UTC 2024 x86_64
User : www-data ( 33)
PHP Version : 8.3.6
Disable Function : NONE
MySQL : OFF  |  cURL : ON  |  WGET : ON  |  Perl : ON  |  Python : OFF  |  Sudo : ON  |  Pkexec : OFF
Directory :  /var/www/rhodeworks/wp-content/plugins/bulletproof-security/

Upload File :
current_dir [ Writeable ] document_root [ Writeable ]

 

Command :


[ Back ]     

Current File : /var/www/rhodeworks/wp-content/plugins/bulletproof-security/404.php
<!-- BEGIN COPY CODE - BPS Error logging code -->

<?php 
// Copy this Security Log logging code from BEGIN COPY CODE above to END COPY CODE below and paste it right after <?php get_header(); > in
// your Theme's 404.php template file located in your themes folder /wp-content/themes/your-theme-folder-name/404.php.
$bpsProLog = WP_CONTENT_DIR . '/bps-backup/logs/http_error_log.txt';
$hostname = gethostbyaddr($_SERVER['REMOTE_ADDR']);
$timeNow = time();
$gmt_offset = get_option( 'gmt_offset' ) * 3600;

	$GDPR_Options = get_option('bulletproof_security_options_gdpr');
	
	if ( isset($GDPR_Options['bps_gdpr_on_off']) && $GDPR_Options['bps_gdpr_on_off'] != 'On' ) {
	
		$bpsPro_remote_addr = false;
		
		if ( array_key_exists('REMOTE_ADDR', $_SERVER) ) {
			$bpsPro_remote_addr = $_SERVER['REMOTE_ADDR'];
		}	
		
		$bpsPro_http_client_ip = false;
		
		if ( array_key_exists('HTTP_CLIENT_IP', $_SERVER) ) {
			$bpsPro_http_client_ip = $_SERVER['HTTP_CLIENT_IP'];
		}
		
		$bpsPro_http_forwarded = false;
		
		if ( array_key_exists('HTTP_FORWARDED', $_SERVER) ) {
			$bpsPro_http_forwarded = $_SERVER['HTTP_FORWARDED'];
		}
		
		$bpsPro_http_x_forwarded_for = false;
		
		if ( array_key_exists('HTTP_X_FORWARDED_FOR', $_SERVER) ) {
			$bpsPro_http_x_forwarded_for = $_SERVER['HTTP_X_FORWARDED_FOR'];
		}			
		
		$bpsPro_http_x_cluster_client_ip = false;
		
		if ( array_key_exists('HTTP_X_CLUSTER_CLIENT_IP', $_SERVER) ) {
			$bpsPro_http_x_cluster_client_ip = $_SERVER['HTTP_X_CLUSTER_CLIENT_IP'];
		}	
		
		$bpsPro_http_referrer = false;
		
		if ( array_key_exists('HTTP_REFERER', $_SERVER) ) {
			$bpsPro_http_referrer = $_SERVER['HTTP_REFERER'];
		}	
		
		$bpsPro_http_user_agent = false;
		
		if ( array_key_exists('HTTP_USER_AGENT', $_SERVER) ) {
			$bpsPro_http_user_agent = $_SERVER['HTTP_USER_AGENT'];
		}	

	} else {
		
		$bpsPro_remote_addr = 'GDPR Compliance On';
		$bpsPro_http_client_ip = 'GDPR Compliance On';
		$bpsPro_http_forwarded = 'GDPR Compliance On';		
		$bpsPro_http_x_forwarded_for = 'GDPR Compliance On';	
		$bpsPro_http_x_cluster_client_ip = 'GDPR Compliance On';		
		
		$bpsPro_http_referrer = false;
		
		if ( array_key_exists('HTTP_REFERER', $_SERVER) ) {
			$bpsPro_http_referrer = $_SERVER['HTTP_REFERER'];
		}
		
		$bpsPro_http_user_agent = false;
		
		if ( array_key_exists('HTTP_USER_AGENT', $_SERVER) ) {
			$bpsPro_http_user_agent = $_SERVER['HTTP_USER_AGENT'];
		}	
	}

	$post_limit = get_option('bulletproof_security_options_sec_log_post_limit'); 
	$query_string = parse_url($_SERVER['REQUEST_URI'], PHP_URL_QUERY);

	if ( $post_limit['bps_security_log_post_none'] == '1' ) {
		$request_body = file_get_contents( 'php://input', false, NULL, 0, 5 );
	
	} else {
	
		if ( $post_limit['bps_security_log_post_limit'] == '1' ) {
			$request_body = file_get_contents( 'php://input', false, NULL, 0, 500 );
		} else {
			$request_body = file_get_contents( 'php://input', false, NULL, 0, 250000 ); // roughly 250KB Max Limit
		}
	}

	if ( ! get_option( 'gmt_offset' ) ) {
		$timestamp = date("F j, Y g:i a", time() );
	} else {
		$timestamp = date_i18n(get_option('date_format'), strtotime("11/15-1976")) . ' - ' . date_i18n(get_option('time_format'), $timeNow + $gmt_offset);
	}

	$event = 'The server has not found anything matching the Request-URI.';
	$solution = 'N/A - 404 Not Found';	

	if ( ! empty($request_body) ) {

		if ( $post_limit['bps_security_log_post_none'] == '1' ) {
			$request_body = 'BPS Security Log option set to: Do Not Log POST Request Body Data';
		}

		$log_contents = "\r\n" . '[404 POST Not Found Request: ' . $timestamp . ']' . "\r\n" . 'BPS: ' . $bps_version . "\r\n" . 'WP: ' . $wp_version . "\r\n" . 'Event Code: ' . $event . "\r\n" . 'Solution: ' . $solution . "\r\n" . 'REMOTE_ADDR: '.$bpsPro_remote_addr . "\r\n" . 'Host Name: ' . $hostname . "\r\n" . 'SERVER_PROTOCOL: ' . $_SERVER['SERVER_PROTOCOL'] . "\r\n" . 'HTTP_CLIENT_IP: ' . $bpsPro_http_client_ip . "\r\n" . 'HTTP_FORWARDED: ' . $bpsPro_http_forwarded . "\r\n" . 'HTTP_X_FORWARDED_FOR: ' . $bpsPro_http_x_forwarded_for . "\r\n" . 'HTTP_X_CLUSTER_CLIENT_IP: ' . $bpsPro_http_x_cluster_client_ip."\r\n" . 'REQUEST_METHOD: POST'."\r\n" . 'HTTP_REFERER: '.$bpsPro_http_referrer."\r\n" . 'REQUEST_URI: '.$_SERVER['REQUEST_URI']."\r\n" . 'QUERY_STRING: '.$query_string. "\r\n" . 'HTTP_USER_AGENT: '.$bpsPro_http_user_agent . "\r\n" . 'REQUEST BODY: ' . $request_body . "\r\n";

		if ( is_writable( $bpsProLog ) ) {
	
			if ( ! $handle = fopen( $bpsProLog, 'a' ) ) {
				 exit;
			}
		
			if ( fwrite( $handle, $log_contents) === false ) {
				exit;
			}
	
		fclose($handle);
		}
	}
	
	if ( empty($request_body) ) {

		$log_contents = "\r\n" . '[404 GET Not Found Request: ' . $timestamp . ']' . "\r\n" . 'BPS: ' . $bps_version . "\r\n" . 'WP: ' . $wp_version . "\r\n" . 'Event Code: ' . $event . "\r\n" . 'Solution: ' . $solution . "\r\n" . 'REMOTE_ADDR: '.$bpsPro_remote_addr . "\r\n" . 'Host Name: ' . $hostname . "\r\n" . 'SERVER_PROTOCOL: ' . $_SERVER['SERVER_PROTOCOL'] . "\r\n" . 'HTTP_CLIENT_IP: ' . $bpsPro_http_client_ip . "\r\n" . 'HTTP_FORWARDED: ' . $bpsPro_http_forwarded . "\r\n" . 'HTTP_X_FORWARDED_FOR: ' . $bpsPro_http_x_forwarded_for . "\r\n" . 'HTTP_X_CLUSTER_CLIENT_IP: ' . $bpsPro_http_x_cluster_client_ip."\r\n" . 'REQUEST_METHOD: '.$_SERVER['REQUEST_METHOD']."\r\n" . 'HTTP_REFERER: '.$bpsPro_http_referrer."\r\n" . 'REQUEST_URI: '.$_SERVER['REQUEST_URI']."\r\n" . 'QUERY_STRING: '.$query_string."\r\n" . 'HTTP_USER_AGENT: '.$bpsPro_http_user_agent."\r\n";

		if ( is_writable( $bpsProLog ) ) {
	
			if ( ! $handle = fopen( $bpsProLog, 'a' ) ) {
				 exit;
			}
		
			if ( fwrite( $handle, $log_contents) === false ) {
				exit;
			}
	
		fclose($handle);
		}
	}
?>
<!-- END COPY CODE - BPS Error logging code -->

Youez - 2016 - github.com/yon3zu
LinuXploit