| Server IP : 202.61.199.114 / Your IP : 216.73.217.139 Web Server : nginx/1.22.1 System : Linux de.arni-solutions.de 6.1.0-49-amd64 #1 SMP PREEMPT_DYNAMIC Debian 6.1.174-1 (2026-05-26) x86_64 User : web20 ( 1018) PHP Version : 8.4.23 Disable Function : NONE MySQL : OFF | cURL : ON | WGET : ON | Perl : ON | Python : OFF | Sudo : ON | Pkexec : ON Directory : /var/www/clients/client2/web20/web/wp-content/plugins/redirection/actions/ |
Upload File : |
<?php
class Pass_Action extends Red_Action {
public function process_external( $url ) {
echo @wp_remote_fopen( $url );
}
/**
* This is deprecated and will be removed in a future version
*/
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 process_before( $code, $target ) {
// External target
if ( $this->is_external( $target ) ) {
$this->process_external( $target );
exit();
}
return $this->process_internal( $target );
}
public function needs_target() {
return true;
}
}