| Server IP : 172.67.201.108 / Your IP : 216.73.216.69 Web Server : Apache/2.4.68 (Amazon Linux) OpenSSL/3.5.5 System : Linux ip-172-31-69-123.ec2.internal 6.1.176-223.369.amzn2023.x86_64 #1 SMP PREEMPT_DYNAMIC Fri Jul 24 13:34:27 UTC 2026 x86_64 User : ec2-user ( 1000) PHP Version : 8.4.23 Disable Function : NONE MySQL : OFF | cURL : ON | WGET : ON | Perl : ON | Python : OFF | Sudo : ON | Pkexec : ON Directory : /home/home2/mommybites/wp-content/plugins/redirection_bak/actions/ |
Upload File : |
<?php
class Pass_Action extends Red_Action {
public function process_external( $url ) {
echo @wp_remote_fopen( $url );
}
public function process_file( $url ) {
$parts = explode( '?', substr( $url, 7 ) );
if ( count( $parts ) > 1 ) {
// Put parameters into the environment
$args = explode( '&', $parts[1] );
if ( count( $args ) > 0 ) {
foreach ( $args as $arg ) {
$tmp = explode( '=', $arg );
if ( count( $tmp ) === 1 ) {
$_GET[ $arg ] = '';
} else {
$_GET[ $tmp[0] ] = $tmp[1];
}
}
}
}
@include $parts[0];
}
public function process_internal( $target ) {
// Another URL on the server
$_SERVER['REQUEST_URI'] = $target;
if ( strpos( $target, '?' ) ) {
$_SERVER['QUERY_STRING'] = substr( $target, strpos( $target, '?' ) + 1 );
parse_str( $_SERVER['QUERY_STRING'], $_GET );
}
return true;
}
public function is_external( $target ) {
return substr( $target, 0, 7 ) === 'http://' || substr( $target, 0, 8 ) === 'https://';
}
public function is_file( $target ) {
return substr( $target, 0, 7 ) === 'file://';
}
public function process_before( $code, $target ) {
// External target
if ( $this->is_external( $target ) ) {
$this->process_external( $target );
exit();
}
// file:// targetw
if ( $this->is_file( $target ) ) {
if ( defined( 'REDIRECTION_SUPPORT_PASS_FILE' ) && REDIRECTION_SUPPORT_PASS_FILE ) {
$this->process_file( $target );
exit();
}
return;
}
return $this->process_internal( $target );
}
}