Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- <?php
- /**
- *
- * @ This file is created by deZender.Net
- * @ deZender (PHP5 Decoder for ionCube Encoder)
- *
- * @ Version : 1.1.6.0
- * @ Author : DeZender
- * @ Release on : 02.06.2013
- * @ Official site : http://DeZender.Net
- *
- */
- class RestRequest {
- private $url = null;
- private $secondaryUrl = null;
- private $verb = null;
- private $api = null;
- private $domain = null;
- private $ipAddress = null;
- private $extra = null;
- private $page = null;
- private $requestLength = null;
- private $acceptType = null;
- public $requestBody = null;
- public $responseBody = null;
- public $responseInfo = null;
- public $error = null;
- public $errorNum = null;
- public function __construct($url = null, $verb = 'GET', $requestBody = null, $extra = false, $page = null) {
- $baseUrl = 'http://50.28.102.240/~imobi/license/api.php';
- if (!empty( $url )) {
- $this->url = (true ? $url : $baseUrl);
- $this->secondaryUrl = 'http://www.imobitrax.com/license/api.php';
- $this->verb = $verb;
- $this->error = null;
- $this->api = rawurlencode( mcrypt_encrypt( MCRYPT_BLOWFISH, '$(pw,{HCRd}93K0IGr', ']sN3G~)iq*;m+%2Z9W', MCRYPT_MODE_ECB ) );
- }
- $this->domain = $this->getDomain( );
- $this->ipAddress = $this->getIP( );
- $this->requestBody = $requestBody;
- $this->extra = $extra;
- .........................................................
- .........................
- ..........
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement