Find this useful? Enter your email to receive occasional updates for securing PHP code.
Signing you up...
Thank you for signing up!
PHP Decode
<?php namespace Drupal\miniorange_saml; use Drupal\miniorange_saml\MiniorangeSAMLC..
Decoded Output download
<?php
namespace Drupal\miniorange_saml;
use Drupal\miniorange_saml\MiniorangeSAMLConstants;
use GuzzleHttp\Exception\RequestException;
class MiniorangeSAMLCustomer
{
public $email;
public $phone;
public $customerKey;
public $transactionId;
public $password;
public $otpToken;
private $defaultCustomerId;
private $defaultCustomerApiKey;
public function __construct($uH, $Tv, $SZ, $r3)
{
$this->email = $uH;
$this->phone = $Tv;
$this->password = $SZ;
$this->otpToken = $r3;
$this->defaultCustomerId = "16555";
$this->defaultCustomerApiKey = "fFd2XcvTGDemZvbw1bcUesNJWEqKbbUq";
}
public function checkCustomer()
{
if (Utilities::isCurlInstalled()) {
goto tT;
}
return json_encode(array("status" => "CURL_ERROR", "statusMessage" => "<a href="http://php.net/manual/en/curl.installation.php">PHP cURL extension</a> is not installed or disabled."));
tT:
$hd = MiniorangeSAMLConstants::BASE_URL . "/moas/rest/customer/check-if-exists";
$uH = $this->email;
$OI = array("email" => $uH);
$TP = json_encode($OI);
try {
$rO = \Drupal::httpClient()->request("POST", $hd, ["body" => $TP, "allow_redirects" => TRUE, "http_errors" => FALSE, "decode_content" => true, "verify" => FALSE, "headers" => array("Content-Type" => "application/json", "Authorization" => "Basic")]);
return $rO->getBody()->getContents();
} catch (RequestException $dp) {
\Drupal::logger("miniorange_saml")->notice("Error at %method of %file: %error", array("%method" => "checkCustomer", "%file" => "customer_setup.php", "%error" => $dp->getMessage()));
}
}
public function getCustomerKeys()
{
if (Utilities::isCurlInstalled()) {
goto D5;
}
return json_encode(array("apiKey" => "CURL_ERROR", "token" => "<a href="http://php.net/manual/en/curl.installation.php">PHP cURL extension</a> is not installed or disabled."));
D5:
$hd = MiniorangeSAMLConstants::BASE_URL . "/moas/rest/customer/key";
$uH = $this->email;
$SZ = $this->password;
$OI = array("email" => $uH, "password" => $SZ);
$g4 = json_encode($OI);
try {
$rO = \Drupal::httpClient()->request("POST", $hd, ["body" => $g4, "allow_redirects" => TRUE, "http_errors" => FALSE, "decode_content" => true, "verify" => FALSE, "headers" => array("Content-Type" => "application/json", "Authorization" => "Basic")]);
return $rO->getBody()->getContents();
} catch (RequestException $dp) {
\Drupal::logger("miniorange_saml")->notice("Error at %method of %file: %error", array("%method" => "checkCustomer", "%file" => "customer_setup.php", "%error" => $dp->getMessage()));
}
}
function verifyLicense($Fo)
{
$hd = MiniorangeSAMLConstants::BASE_URL . "/moas/api/backupcode/verify";
$z9 = \Drupal::config("miniorange_saml.settings")->get("miniorange_saml_customer_id");
$ft = \Drupal::config("miniorange_saml.settings")->get("miniorange_saml_customer_api_key");
global $base_url;
$qw = round(microtime(true) * 1000);
$EA = $z9 . number_format($qw, 0, '', '') . $ft;
$SA = hash("sha512", $EA);
$BZ = "Customer-Key: " . $z9;
$em = "Timestamp: " . number_format($qw, 0, '', '');
$gu = "Authorization: " . $SA;
$OI = '';
$OI = array("code" => $Fo, "customerKey" => $z9, "additionalFields" => array("field1" => $base_url));
$g4 = json_encode($OI);
try {
$rO = \Drupal::httpClient()->request("POST", $hd, ["body" => $g4, "allow_redirects" => TRUE, "http_errors" => FALSE, "decode_content" => true, "verify" => FALSE, "headers" => array("Content-Type" => "application/json", "Customer-Key" => $z9, "Timestamp" => $qw, "Authorization" => $SA)]);
return $rO->getBody()->getContents();
} catch (RequestException $dp) {
\Drupal::logger("miniorange_saml")->notice("Error at %method of %file: %error", array("%method" => "checkCustomer", "%file" => "customer_setup.php", "%error" => $dp->getMessage()));
}
}
function updateStatus()
{
$hd = MiniorangeSAMLConstants::BASE_URL . "/moas/api/backupcode/updatestatus";
$z9 = \Drupal::config("miniorange_saml.settings")->get("miniorange_saml_customer_id");
$ft = \Drupal::config("miniorange_saml.settings")->get("miniorange_saml_customer_api_key");
$qw = round(microtime(true) * 1000);
$EA = $z9 . number_format($qw, 0, '', '') . $ft;
$SA = hash("sha512", $EA);
$BZ = "Customer-Key: " . $z9;
$em = "Timestamp: " . number_format($qw, 0, '', '');
$gu = "Authorization: " . $SA;
$Tg = \Drupal::config("miniorange_saml.settings")->get("miniorange_saml_customer_admin_token");
$Fo = AESEncryption::decrypt_data(\Drupal::config("miniorange_saml.settings")->get("miniorange_saml_license_key"), $Tg);
$OI = array("code" => $Fo, "customerKey" => $z9);
$g4 = json_encode($OI);
try {
$rO = \Drupal::httpClient()->request("POST", $hd, ["body" => $g4, "allow_redirects" => TRUE, "http_errors" => FALSE, "decode_content" => true, "verify" => FALSE, "headers" => array("Content-Type" => "application/json", "Customer-Key" => $z9, "Timestamp" => $qw, "Authorization" => $SA)]);
return $rO->getBody()->getContents();
} catch (RequestException $dp) {
echo "Request Error:" . $dp->getMessage();
}
}
function ccl()
{
$hd = MiniorangeSAMLConstants::BASE_URL . "/moas/rest/customer/license";
$z9 = \Drupal::config("miniorange_saml.settings")->get("miniorange_saml_customer_id");
$ft = \Drupal::config("miniorange_saml.settings")->get("miniorange_saml_customer_api_key");
$qw = round(microtime(TRUE) * 1000);
$EA = $z9 . number_format($qw, 0, '', '') . $ft;
$SA = hash("sha512", $EA);
$BZ = "Customer-Key: " . $z9;
$em = "Timestamp: " . number_format($qw, 0, '', '');
$gu = "Authorization: " . $SA;
$OI = array("customerId" => $z9, "applicationName" => Utilities::getSamlRequestPlanName());
$g4 = json_encode($OI);
try {
$rO = \Drupal::httpClient()->request("POST", $hd, ["body" => $g4, "allow_redirects" => TRUE, "http_errors" => FALSE, "decode_content" => true, "verify" => FALSE, "headers" => array("Content-Type" => "application/json", "Customer-Key" => $z9, "Timestamp" => $qw, "Authorization" => $SA)]);
return $rO->getBody()->getContents();
} catch (RequestException $dp) {
echo "Request Error:" . $dp->getMessage();
}
}
}
?>
Did this file decode correctly?
Original Code
<?php
namespace Drupal\miniorange_saml;
use Drupal\miniorange_saml\MiniorangeSAMLConstants;
use GuzzleHttp\Exception\RequestException;
class MiniorangeSAMLCustomer
{
public $email;
public $phone;
public $customerKey;
public $transactionId;
public $password;
public $otpToken;
private $defaultCustomerId;
private $defaultCustomerApiKey;
public function __construct($uH, $Tv, $SZ, $r3)
{
$this->email = $uH;
$this->phone = $Tv;
$this->password = $SZ;
$this->otpToken = $r3;
$this->defaultCustomerId = "\x31\x36\x35\65\65";
$this->defaultCustomerApiKey = "\x66\x46\144\62\130\x63\166\x54\x47\x44\145\x6d\132\x76\142\x77\x31\x62\x63\125\145\163\x4e\x4a\127\105\x71\113\x62\x62\125\161";
}
public function checkCustomer()
{
if (Utilities::isCurlInstalled()) {
goto tT;
}
return json_encode(array("\163\164\141\164\x75\163" => "\103\x55\122\114\137\105\x52\122\x4f\x52", "\x73\164\141\164\x75\x73\115\x65\163\x73\x61\147\145" => "\74\141\x20\x68\162\145\x66\x3d\x22\x68\x74\164\x70\72\x2f\57\160\150\160\56\x6e\145\164\x2f\155\x61\x6e\165\x61\154\x2f\145\x6e\x2f\x63\165\162\x6c\x2e\151\156\163\164\x61\154\x6c\x61\164\x69\x6f\156\x2e\160\150\160\42\76\x50\110\x50\x20\143\125\x52\x4c\40\x65\170\164\x65\x6e\x73\x69\x6f\x6e\74\x2f\x61\x3e\40\x69\x73\40\156\157\x74\40\151\x6e\x73\164\x61\x6c\154\x65\x64\40\x6f\162\40\x64\151\163\141\142\x6c\x65\144\56"));
tT:
$hd = MiniorangeSAMLConstants::BASE_URL . "\57\155\157\x61\x73\x2f\162\145\x73\164\57\x63\x75\x73\x74\157\x6d\x65\x72\x2f\143\x68\145\x63\153\x2d\x69\x66\55\145\x78\x69\x73\164\x73";
$uH = $this->email;
$OI = array("\x65\155\141\151\x6c" => $uH);
$TP = json_encode($OI);
try {
$rO = \Drupal::httpClient()->request("\x50\x4f\123\124", $hd, ["\x62\x6f\144\x79" => $TP, "\x61\x6c\x6c\157\167\137\162\x65\x64\151\x72\x65\x63\164\163" => TRUE, "\x68\x74\164\x70\x5f\145\x72\162\x6f\x72\163" => FALSE, "\x64\145\143\157\144\x65\137\x63\x6f\x6e\164\x65\x6e\x74" => true, "\x76\145\162\x69\146\x79" => FALSE, "\x68\145\141\x64\145\162\x73" => array("\103\x6f\156\x74\145\x6e\x74\55\124\x79\160\145" => "\141\160\x70\154\x69\x63\141\x74\151\157\x6e\x2f\x6a\163\x6f\x6e", "\101\x75\x74\x68\x6f\162\151\x7a\141\164\151\x6f\x6e" => "\x42\x61\163\x69\143")]);
return $rO->getBody()->getContents();
} catch (RequestException $dp) {
\Drupal::logger("\x6d\x69\x6e\151\157\162\x61\x6e\147\x65\137\x73\x61\155\154")->notice("\105\162\162\x6f\x72\40\141\x74\40\x25\155\145\164\150\x6f\x64\x20\x6f\146\x20\x25\x66\151\x6c\145\72\x20\x25\145\162\x72\x6f\162", array("\45\155\x65\x74\x68\157\x64" => "\143\150\145\x63\x6b\x43\x75\x73\164\157\155\x65\162", "\45\x66\x69\154\145" => "\143\x75\x73\164\157\155\145\162\x5f\163\x65\164\165\160\x2e\160\x68\160", "\x25\145\x72\162\157\x72" => $dp->getMessage()));
}
}
public function getCustomerKeys()
{
if (Utilities::isCurlInstalled()) {
goto D5;
}
return json_encode(array("\141\160\151\x4b\x65\171" => "\x43\x55\x52\x4c\x5f\105\122\122\117\x52", "\164\x6f\x6b\x65\x6e" => "\74\141\40\150\x72\x65\146\x3d\42\x68\x74\164\160\72\x2f\57\x70\150\160\56\x6e\145\164\x2f\155\x61\x6e\x75\141\154\x2f\x65\156\57\143\165\162\154\x2e\151\x6e\163\x74\x61\154\x6c\x61\x74\151\157\x6e\56\160\x68\160\42\76\120\x48\x50\40\143\125\122\x4c\40\x65\170\164\145\156\163\x69\x6f\x6e\74\57\141\x3e\40\151\x73\x20\x6e\x6f\164\40\x69\x6e\x73\164\141\154\154\x65\144\40\x6f\x72\40\x64\151\163\x61\x62\154\145\x64\56"));
D5:
$hd = MiniorangeSAMLConstants::BASE_URL . "\57\155\157\x61\x73\57\x72\x65\163\x74\x2f\143\x75\x73\164\x6f\x6d\145\162\x2f\x6b\145\171";
$uH = $this->email;
$SZ = $this->password;
$OI = array("\145\155\x61\151\154" => $uH, "\x70\141\x73\x73\x77\x6f\162\x64" => $SZ);
$g4 = json_encode($OI);
try {
$rO = \Drupal::httpClient()->request("\120\x4f\123\124", $hd, ["\142\x6f\x64\171" => $g4, "\141\x6c\154\x6f\167\x5f\x72\145\x64\x69\162\145\x63\x74\x73" => TRUE, "\150\x74\x74\x70\x5f\x65\x72\162\157\162\163" => FALSE, "\x64\x65\143\x6f\x64\x65\x5f\143\x6f\156\x74\x65\156\x74" => true, "\x76\x65\x72\151\146\x79" => FALSE, "\150\x65\141\144\145\x72\163" => array("\x43\x6f\x6e\164\x65\156\164\x2d\124\x79\160\x65" => "\141\x70\160\x6c\x69\x63\x61\164\151\x6f\156\57\152\163\x6f\x6e", "\101\165\164\150\x6f\x72\x69\172\x61\x74\151\x6f\156" => "\102\x61\163\151\x63")]);
return $rO->getBody()->getContents();
} catch (RequestException $dp) {
\Drupal::logger("\155\151\156\151\157\x72\x61\x6e\x67\x65\137\163\141\155\x6c")->notice("\105\162\162\x6f\x72\40\x61\x74\40\x25\155\145\x74\x68\x6f\x64\40\157\x66\x20\x25\146\151\x6c\x65\72\x20\45\x65\x72\x72\157\x72", array("\x25\x6d\145\x74\x68\157\144" => "\143\x68\145\143\153\x43\x75\x73\x74\x6f\155\145\x72", "\45\x66\151\x6c\x65" => "\143\165\x73\x74\x6f\155\x65\162\137\x73\145\164\165\x70\x2e\x70\x68\160", "\45\x65\x72\x72\157\x72" => $dp->getMessage()));
}
}
function verifyLicense($Fo)
{
$hd = MiniorangeSAMLConstants::BASE_URL . "\57\155\x6f\141\x73\x2f\141\160\x69\x2f\x62\x61\143\x6b\165\x70\x63\157\x64\x65\57\x76\x65\162\x69\146\171";
$z9 = \Drupal::config("\x6d\x69\156\x69\x6f\x72\x61\x6e\147\145\137\163\x61\155\154\56\x73\x65\x74\164\151\x6e\x67\x73")->get("\155\x69\x6e\x69\157\162\x61\x6e\147\x65\x5f\163\141\155\x6c\x5f\x63\165\163\x74\157\x6d\x65\162\137\151\x64");
$ft = \Drupal::config("\x6d\151\156\151\157\162\x61\x6e\x67\x65\x5f\x73\x61\x6d\x6c\56\163\x65\164\164\x69\x6e\x67\x73")->get("\x6d\x69\x6e\151\x6f\162\x61\156\x67\145\x5f\163\141\x6d\x6c\137\x63\x75\163\x74\157\155\145\162\x5f\x61\160\151\137\153\x65\171");
global $base_url;
$qw = round(microtime(true) * 1000);
$EA = $z9 . number_format($qw, 0, '', '') . $ft;
$SA = hash("\163\150\141\x35\x31\62", $EA);
$BZ = "\103\165\163\x74\x6f\155\x65\162\55\x4b\145\171\x3a\x20" . $z9;
$em = "\x54\x69\155\145\163\x74\141\155\x70\72\x20" . number_format($qw, 0, '', '');
$gu = "\101\x75\164\150\157\162\x69\x7a\141\164\x69\157\156\x3a\x20" . $SA;
$OI = '';
$OI = array("\x63\157\x64\x65" => $Fo, "\143\x75\163\164\157\155\x65\x72\113\145\171" => $z9, "\x61\144\x64\151\164\x69\x6f\156\x61\x6c\106\151\145\154\144\163" => array("\x66\151\145\154\x64\61" => $base_url));
$g4 = json_encode($OI);
try {
$rO = \Drupal::httpClient()->request("\120\x4f\123\124", $hd, ["\x62\x6f\144\x79" => $g4, "\141\x6c\154\157\x77\x5f\x72\145\x64\x69\x72\x65\x63\164\x73" => TRUE, "\x68\x74\x74\160\x5f\x65\x72\162\157\162\163" => FALSE, "\x64\x65\143\x6f\x64\x65\x5f\143\x6f\x6e\164\145\x6e\x74" => true, "\166\x65\x72\x69\x66\171" => FALSE, "\150\x65\141\144\x65\x72\x73" => array("\103\157\156\164\145\156\x74\x2d\124\171\x70\x65" => "\x61\x70\x70\154\x69\x63\141\x74\x69\x6f\156\57\x6a\163\157\x6e", "\103\x75\x73\164\157\x6d\x65\162\55\x4b\145\171" => $z9, "\124\x69\155\x65\163\164\x61\155\160" => $qw, "\x41\x75\x74\x68\157\x72\151\x7a\x61\164\x69\157\156" => $SA)]);
return $rO->getBody()->getContents();
} catch (RequestException $dp) {
\Drupal::logger("\155\151\156\151\x6f\162\x61\x6e\x67\x65\x5f\163\x61\155\x6c")->notice("\x45\x72\x72\x6f\x72\x20\x61\x74\40\45\155\x65\164\150\157\x64\40\x6f\146\x20\45\x66\x69\x6c\145\x3a\x20\45\145\162\x72\x6f\162", array("\x25\x6d\x65\164\150\157\144" => "\x63\150\x65\x63\x6b\103\165\163\164\157\155\145\x72", "\45\146\x69\x6c\x65" => "\143\165\x73\x74\157\155\x65\162\x5f\x73\x65\x74\x75\160\x2e\x70\150\160", "\x25\x65\x72\162\x6f\162" => $dp->getMessage()));
}
}
function updateStatus()
{
$hd = MiniorangeSAMLConstants::BASE_URL . "\57\x6d\157\x61\163\x2f\141\x70\151\x2f\x62\x61\x63\153\165\x70\143\x6f\144\x65\x2f\x75\160\144\x61\164\145\x73\164\x61\x74\x75\163";
$z9 = \Drupal::config("\155\x69\156\151\x6f\x72\x61\x6e\x67\145\137\x73\141\155\x6c\x2e\x73\x65\164\x74\151\156\147\x73")->get("\155\151\x6e\151\157\x72\x61\x6e\x67\x65\x5f\163\x61\x6d\x6c\x5f\x63\165\x73\x74\157\x6d\145\x72\x5f\151\144");
$ft = \Drupal::config("\155\151\156\x69\157\x72\x61\156\147\x65\137\163\141\155\x6c\x2e\163\145\x74\164\x69\156\147\x73")->get("\x6d\x69\156\151\157\162\x61\156\x67\x65\x5f\163\141\x6d\154\137\143\165\x73\164\157\x6d\145\x72\x5f\141\160\x69\137\153\145\171");
$qw = round(microtime(true) * 1000);
$EA = $z9 . number_format($qw, 0, '', '') . $ft;
$SA = hash("\x73\150\141\x35\x31\62", $EA);
$BZ = "\103\165\163\x74\x6f\155\x65\162\x2d\x4b\145\x79\72\40" . $z9;
$em = "\x54\151\x6d\x65\163\x74\141\155\160\72\x20" . number_format($qw, 0, '', '');
$gu = "\101\165\x74\150\157\x72\151\172\x61\164\151\157\x6e\72\x20" . $SA;
$Tg = \Drupal::config("\x6d\151\x6e\151\x6f\x72\x61\156\147\x65\137\x73\141\155\x6c\x2e\163\x65\164\x74\x69\x6e\x67\x73")->get("\x6d\x69\156\x69\x6f\162\141\156\147\145\137\163\141\155\x6c\137\x63\x75\x73\164\x6f\155\145\x72\137\141\144\155\x69\156\x5f\x74\x6f\153\x65\156");
$Fo = AESEncryption::decrypt_data(\Drupal::config("\155\151\156\x69\157\x72\x61\x6e\147\145\x5f\x73\x61\x6d\154\56\163\145\164\x74\x69\x6e\147\163")->get("\x6d\151\x6e\151\157\x72\141\x6e\x67\145\137\x73\141\155\154\x5f\x6c\x69\x63\145\x6e\163\x65\x5f\153\x65\171"), $Tg);
$OI = array("\143\x6f\144\x65" => $Fo, "\x63\x75\163\x74\157\x6d\145\x72\113\145\171" => $z9);
$g4 = json_encode($OI);
try {
$rO = \Drupal::httpClient()->request("\120\x4f\123\124", $hd, ["\142\157\144\171" => $g4, "\141\154\154\x6f\x77\137\x72\145\144\x69\x72\145\143\164\163" => TRUE, "\x68\164\x74\x70\x5f\145\162\162\157\162\x73" => FALSE, "\x64\145\x63\x6f\144\x65\x5f\x63\157\x6e\164\x65\156\x74" => true, "\166\145\x72\151\x66\171" => FALSE, "\x68\x65\x61\144\145\162\163" => array("\x43\x6f\156\164\145\156\x74\x2d\x54\171\x70\x65" => "\141\160\x70\x6c\151\x63\141\164\x69\157\156\x2f\x6a\163\x6f\156", "\x43\x75\x73\x74\157\155\145\162\x2d\x4b\145\x79" => $z9, "\124\x69\155\145\163\x74\141\155\160" => $qw, "\x41\165\164\x68\x6f\x72\x69\172\x61\164\151\x6f\156" => $SA)]);
return $rO->getBody()->getContents();
} catch (RequestException $dp) {
echo "\x52\x65\161\165\145\x73\x74\40\105\x72\162\x6f\162\x3a" . $dp->getMessage();
}
}
function ccl()
{
$hd = MiniorangeSAMLConstants::BASE_URL . "\57\155\x6f\x61\x73\57\162\145\x73\164\x2f\x63\x75\x73\x74\x6f\155\145\x72\57\x6c\151\x63\145\x6e\163\x65";
$z9 = \Drupal::config("\155\x69\156\151\157\x72\x61\156\147\x65\x5f\163\141\155\154\x2e\163\x65\x74\x74\x69\x6e\x67\x73")->get("\155\x69\x6e\151\x6f\x72\141\156\x67\x65\x5f\163\141\x6d\x6c\x5f\x63\165\x73\164\157\x6d\145\x72\137\151\144");
$ft = \Drupal::config("\155\x69\156\x69\157\162\141\x6e\x67\145\137\163\x61\155\154\56\x73\145\164\164\151\x6e\x67\163")->get("\155\151\156\151\x6f\x72\141\156\147\x65\137\163\x61\x6d\x6c\x5f\143\x75\x73\x74\157\x6d\x65\x72\137\141\x70\151\137\153\x65\x79");
$qw = round(microtime(TRUE) * 1000);
$EA = $z9 . number_format($qw, 0, '', '') . $ft;
$SA = hash("\163\x68\141\x35\x31\62", $EA);
$BZ = "\x43\x75\163\164\157\x6d\x65\x72\x2d\x4b\x65\x79\72\40" . $z9;
$em = "\x54\x69\x6d\x65\x73\x74\x61\x6d\x70\x3a\x20" . number_format($qw, 0, '', '');
$gu = "\101\165\164\150\x6f\162\x69\172\x61\164\x69\157\x6e\72\x20" . $SA;
$OI = array("\143\x75\163\x74\x6f\155\145\x72\111\144" => $z9, "\x61\x70\x70\x6c\x69\x63\141\x74\151\x6f\156\116\141\155\x65" => Utilities::getSamlRequestPlanName());
$g4 = json_encode($OI);
try {
$rO = \Drupal::httpClient()->request("\x50\x4f\x53\x54", $hd, ["\142\157\144\x79" => $g4, "\x61\x6c\154\157\x77\137\x72\x65\x64\151\x72\145\x63\x74\163" => TRUE, "\150\164\x74\x70\137\145\162\162\157\x72\163" => FALSE, "\x64\145\x63\x6f\144\145\137\x63\x6f\156\x74\145\x6e\164" => true, "\166\x65\162\151\146\x79" => FALSE, "\150\x65\x61\x64\x65\162\163" => array("\103\157\x6e\164\145\156\164\x2d\x54\x79\160\x65" => "\x61\160\x70\x6c\x69\143\141\x74\x69\x6f\x6e\x2f\x6a\x73\157\x6e", "\x43\165\163\164\157\x6d\145\x72\55\x4b\145\171" => $z9, "\124\x69\x6d\145\163\164\x61\155\160" => $qw, "\x41\x75\x74\x68\x6f\x72\x69\172\141\164\151\157\156" => $SA)]);
return $rO->getBody()->getContents();
} catch (RequestException $dp) {
echo "\x52\x65\161\x75\x65\x73\x74\40\x45\162\162\157\x72\x3a" . $dp->getMessage();
}
}
}
Function Calls
None |
Stats
MD5 | 416e9298ffa8b182a34d54be0dde76fb |
Eval Count | 0 |
Decode Time | 75 ms |