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 MoSharePointObjectSync\View; use MoSharePointObjectSync\Wrappers\p..
Decoded Output download
<?php
namespace MoSharePointObjectSync\View;
use MoSharePointObjectSync\Wrappers\pluginConstants;
use MoSharePointObjectSync\Wrappers\wpWrapper;
class appConfig
{
private static $instance;
private static $isliveri;
public static function getView()
{
if (isset(self::$instance)) {
goto NM;
}
$nu = __CLASS__;
self::$instance = new $nu();
self::$isliveri = wpWrapper::mo_sps_is_customer_license_key_verified();
NM:
return self::$instance;
}
public function mo_sps_display__tab_details()
{
echo " <div class="mo-ms-tab-content">\xd
<h1>Configure Microsoft SharePoint Online Application</h1>\xd\xa <div style="width: 70%">\xd
<div>
\xa ";
wpWrapper::mo_sps_check_plugin_state();
$this->mo_sps_display__client_config();
$this->mo_sps_display__cloud_connector_config();
$this->mo_sps_display__sso_config();
echo " </div>
</div>\xd
</div>\xd
";
}
private function mo_sps_display__client_config()
{
$tV = wpWrapper::mo_sps_get_option(pluginConstants::APP_CONFIG);
$MX = !empty($tV["client_id"]) ? $tV["client_id"] : '';
if (isset($tV["client_secret"]) && !empty($tV["client_secret"])) {
goto um;
}
$A3 = '';
goto Pt;
um:
$A3 = wpWrapper::mo_sps_decrypt_data($tV["client_secret"], hash("sha256", $MX));
Pt:
$kn = !empty($tV["tenant_id"]) ? $tV["tenant_id"] : '';
$oZ = !empty($tV["site_url"]) ? $tV["site_url"] : '';
echo " <form class="mo_sps_ajax_submit_form" action="" method="post">\xd\xa <input type="hidden" name="option" id="app_config" value="mo_sps_client_config_option">
<input type="hidden" name="mo_sps_tab" value="app_config">
";
wp_nonce_field("mo_sps_client_config_option");
echo " <div class="mo-ms-tab-content-tile">\xd\xa <div class="mo-ms-tab-content-tile-content">\xd
<span style="font-size: 18px;font-weight: 200;display:flex;">1. Basic App Configuration </span>
\xa <table class="mo-ms-tab-content-app-config-table">
\xa <tr>\xd\xa <td class="left-div"><span>Application ID <span style="color:red;font-weight:bold;">*</span></span></td>
\xa <td class="right-div"><input ";
echo self::$isliveri ? '' : "disabled";
echo " placeholder="Enter Your Application (Client) ID" style="width:75%;" type="text" name="client_id" value="";
echo esc_html($MX);
echo ""></td>\xd
</tr>
<tr>
\xa <td></td>\xd
<td>\xd\xa <b>Note:</b> You can find the <b>Application ID</b> in your Active Directory application's Overview tab. \xd\xa </td>
\xa </tr>
\xd\xa <tr>
<td class="left-div"><span>Client Secrets <span style="color:red;font-weight:bold;">*</span></span></td>
\xa <td class="right-div"><input ";
echo self::$isliveri ? '' : "disabled";
echo " autoComplete="new-password" placeholder="Enter Your Client Secret" style="width:75%;" type="password" name="client_secret" value="";
echo esc_html($A3);
echo ""></td>\xd
</tr>\xd
<tr>\xd\xa <td></td>
\xa <td>\xd
<b>Note:</b> You can find the <b>Client Secret</b> value in your Active Directory application's Certificates & Secrets tab. \xd
</td>\xd
</tr>\xd\xa \xd\xa <tr>
<td class="left-div"><span>Tenant ID <span style="color:red;font-weight:bold;">*</span></span></td>\xd\xa <td class="right-div"><input ";
echo self::$isliveri ? '' : "disabled";
echo " placeholder="Enter Your Directory (Tenant) ID" style="width:75%;" type="text" name="tenant_id" value="";
echo esc_html($kn);
echo ""></td>
</tr>\xd
<tr>
\xa <td></td>
<td>\xd
<b>Note:</b> You can find the <b>Tenant ID</b> in your Active Directory application's Overview tab. \xd\xa </td>
\xa </tr>
\xa
\xa <tr>\xd\xa <td class="left-div"><span>SharePoint Site URL</span></td>\xd\xa <td class="right-div"><input ";
echo self::$isliveri ? '' : "disabled";
echo " placeholder="https://<tenant-name>.sharepoint.com/sites/{site_name}" style="width:75%;" type="text" name="site_url" value="";
echo esc_html($oZ);
echo ""></td>
\xa </tr>\xd\xa <tr>\xd\xa <td></td>
\xa <td>
\xa <b>Note:</b> Enter here the <b>url of the site</b>, which documents you want to fetch.
</td>
\xa </tr>
\xa\xd\xa <tr>\xd\xa <td></br></td>\xd\xa </tr>\xd\xa <tr>
<td></td>\xd
<td>\xd
<div style="display: flex;justify-content:flex-start;align-items:center;">
<div style="display: flex;margin:1px;">\xd
<input ";
echo self::$isliveri ? '' : "disabled";
echo " style="height:30px;" type="submit" id="saveButton" ";
echo self::$isliveri ? "class='mo-ms-tab-content-button'" : "class='mo-ms-tab-content-button__disabled'";
echo " value="Save">
\xa </div>
\xa <div style="margin:10px;">\xd\xa <input ";
echo self::$isliveri ? '' : "disabled";
echo " style="height:30px;" id="view_attributes" type="button" ";
echo self::$isliveri ? "class='mo-ms-tab-content-button'" : "class='mo-ms-tab-content-button__disabled'";
echo " value="Test Connection" onclick="mo_sps_show_test_connection()">
\xa </div>\xd
</div>
</td>
\xa </tr>
\xa </table>\xd\xa </div>
\xa </div>\xd
</form>
<script>\xd\xa function mo_sps_show_test_connection(){\xd\xa document.getElementById("app_config").value = "mo_sps_app_test_config_option";\xd
var myWindow = window.open("";
echo esc_url_raw($this->mo_sps_get_test_url());
echo "", "TEST Connection", "scrollbars=1 width=800, height=600");\xd
}
\xa </script>
\xa ";
}
private function mo_sps_display__cloud_connector_config()
{
$Yw = wpWrapper::mo_sps_get_option(pluginConstants::CLOUD_CONNECTOR);
$CI = wpWrapper::mo_sps_get_option(pluginConstants::ONEDRIVE_UPN);
echo " <form class="mo_sps_ajax_submit_form" action="" method="post">
\xa <input type="hidden" name="option" id="app_config" value="mo_sps_cloud_connector_config_option">\xd\xa <input type="hidden" name="mo_sps_tab" value="app_config">
\xa ";
wp_nonce_field("mo_sps_cloud_connector_config_option");
echo " <div class="mo-ms-tab-content-tile">
\xa <div class="mo-ms-tab-content-tile-content">\xd\xa <span style="font-size: 18px;font-weight: 200;display:flex;">2. Cloud Connector Configuration </span>\xd\xa <table class="mo-ms-tab-content-app-config-table">
\xa <colgroup>\xd\xa <col span="1" style="width: 40%;">
\xa <col span="1" style="width: 60%;">
\xa </colgroup>
\xa <tr>\xd\xa <td>Select cloud connector from the dropdown given:</td>
\xa <td>
<select id="mo_sps_cloud_selector" name="cloud_connector" style="width:80%">
<option ";
echo empty($Yw) || $Yw === "sharepoint" ? "selected" : '';
echo " value="sharepoint">SharePoint</option>\xd\xa <option ";
echo $Yw === "onedrive" ? "selected" : '';
echo " value="onedrive">Personal OneDrive</option>
</select>
\xa </td>\xd
\xd
</tr>
\xa <tr id="mo_sps_upn_block" style="";
echo $Yw === "onedrive" ? '' : "display:none;";
echo "">
<td><span> Enter User Principle Name / Object ID <span style="color:red;font-weight:bold;">*</span></span></td>\xd\xa <td><input ";
echo self::$isliveri ? '' : "disabled";
echo " placeholder="Enter UserPrincipalName/Object ID of User" style="width:80%;" type="text" name="upn_id" value="";
echo esc_html($CI);
echo ""></td>
\xa </tr>
<tr>
<td>\xd
<div style="display: flex;justify-content:flex-start;align-items:center;">\xd
<div style="display: flex;margin:1px;">
\xa <input ";
echo self::$isliveri ? '' : "disabled";
echo " style="height:30px;" type="submit" id="saveButton" ";
echo self::$isliveri ? "class='mo-ms-tab-content-button'" : "class='mo-ms-tab-content-button__disabled'";
echo " value="Save">
</div>
</div>\xd\xa </td>\xd
<td></td>
\xa </tr>
\xa </table>\xd\xa </div>
\xa </div>\xd
</form>\xd
<script>
\xa jQuery(document).on('change',"#mo_sps_cloud_selector",function(e){\xd\xa if(e.target.value === 'onedrive'){
jQuery('#mo_sps_upn_block').show();
\xa }else{\xd
jQuery('#mo_sps_upn_block').hide();\xd
}\xd\xa \xd\xa });\xd\xa </script>\xd\xa\xd\xa ";
}
private function mo_sps_display__sso_config()
{
}
private function mo_sps_get_test_url()
{
return admin_url("?option=mo_sps_test_connection");
}
}
?>
Did this file decode correctly?
Original Code
<?php
namespace MoSharePointObjectSync\View;
use MoSharePointObjectSync\Wrappers\pluginConstants;
use MoSharePointObjectSync\Wrappers\wpWrapper;
class appConfig
{
private static $instance;
private static $isliveri;
public static function getView()
{
if (isset(self::$instance)) {
goto NM;
}
$nu = __CLASS__;
self::$instance = new $nu();
self::$isliveri = wpWrapper::mo_sps_is_customer_license_key_verified();
NM:
return self::$instance;
}
public function mo_sps_display__tab_details()
{
echo "\40\40\40\40\x20\x20\x20\x20\x3c\x64\151\x76\40\143\154\141\163\163\75\x22\x6d\157\x2d\155\x73\55\x74\141\142\55\143\157\156\x74\x65\x6e\164\x22\x3e\xd\12\40\x20\x20\40\x20\40\x20\x20\x20\40\40\40\x3c\150\61\76\x43\x6f\156\146\151\147\x75\x72\x65\x20\x4d\x69\x63\162\157\163\x6f\146\x74\40\123\x68\x61\162\x65\120\x6f\x69\156\x74\40\117\x6e\x6c\151\x6e\x65\40\101\x70\160\154\151\143\x61\x74\151\x6f\156\x3c\x2f\x68\61\x3e\xd\xa\40\x20\x20\x20\40\40\x20\x20\40\x20\x20\40\x3c\x64\151\x76\x20\x73\164\x79\154\x65\x3d\x22\167\151\144\x74\150\x3a\x20\67\60\45\x22\x3e\xd\12\40\x20\x20\x20\x20\40\x20\x20\x20\40\40\x20\x20\x20\40\x20\74\144\151\x76\x3e\15\xa\x20\40\x20\x20\40\40\x20\x20\x20\40\40\x20\x20\40\x20\40\40\x20\40\x20";
wpWrapper::mo_sps_check_plugin_state();
$this->mo_sps_display__client_config();
$this->mo_sps_display__cloud_connector_config();
$this->mo_sps_display__sso_config();
echo "\40\40\x20\40\40\40\40\x20\40\40\40\x20\40\40\x20\40\74\57\144\151\166\x3e\15\12\x20\40\x20\x20\x20\x20\x20\40\40\x20\x20\40\x3c\x2f\144\x69\166\x3e\xd\12\40\40\40\40\40\x20\40\40\x3c\57\144\x69\166\76\xd\12\40\x20\40\x20\40\40\x20\40";
}
private function mo_sps_display__client_config()
{
$tV = wpWrapper::mo_sps_get_option(pluginConstants::APP_CONFIG);
$MX = !empty($tV["\143\x6c\151\145\156\164\137\x69\x64"]) ? $tV["\143\x6c\151\x65\156\x74\137\x69\144"] : '';
if (isset($tV["\143\154\x69\145\x6e\164\x5f\x73\145\143\x72\145\164"]) && !empty($tV["\x63\154\151\x65\x6e\x74\137\163\x65\x63\x72\x65\164"])) {
goto um;
}
$A3 = '';
goto Pt;
um:
$A3 = wpWrapper::mo_sps_decrypt_data($tV["\143\x6c\x69\145\156\164\137\x73\x65\143\x72\x65\164"], hash("\163\x68\x61\62\65\66", $MX));
Pt:
$kn = !empty($tV["\164\145\x6e\x61\156\164\x5f\x69\x64"]) ? $tV["\x74\145\x6e\141\x6e\x74\137\151\144"] : '';
$oZ = !empty($tV["\163\x69\164\145\x5f\165\162\x6c"]) ? $tV["\x73\x69\164\x65\x5f\165\162\154"] : '';
echo "\40\x20\40\40\40\40\40\40\74\146\x6f\162\x6d\x20\143\154\141\x73\163\x3d\42\155\157\x5f\x73\160\x73\x5f\x61\152\141\x78\137\163\165\142\x6d\151\164\x5f\x66\157\x72\x6d\x22\x20\x61\143\164\151\157\x6e\75\x22\x22\x20\155\x65\164\150\157\x64\x3d\x22\160\157\163\164\42\76\xd\xa\x20\x20\40\40\x20\x20\40\x20\40\40\40\x20\x3c\151\x6e\160\x75\164\40\164\x79\x70\145\75\x22\x68\x69\144\x64\x65\156\x22\x20\156\141\x6d\145\x3d\42\x6f\160\x74\151\x6f\156\42\x20\x69\x64\x3d\42\141\160\x70\137\143\157\156\146\x69\x67\x22\x20\x76\x61\154\165\145\x3d\42\155\x6f\137\163\160\x73\137\143\154\x69\145\156\x74\x5f\x63\157\x6e\x66\x69\147\x5f\157\x70\164\x69\x6f\x6e\42\x3e\15\12\x20\40\40\40\x20\x20\x20\x20\40\x20\x20\x20\74\151\156\x70\165\164\x20\164\x79\x70\145\x3d\42\x68\151\x64\x64\x65\x6e\x22\x20\156\x61\x6d\145\75\42\x6d\x6f\137\x73\x70\163\x5f\164\141\x62\42\40\166\141\x6c\165\x65\75\42\x61\x70\x70\137\143\157\x6e\x66\151\147\x22\76\15\12\x20\40\x20\40\x20\x20\x20\x20\x20\40\40\40";
wp_nonce_field("\x6d\x6f\137\x73\x70\163\137\x63\154\x69\145\156\x74\137\x63\157\156\x66\151\x67\137\x6f\x70\164\x69\157\156");
echo "\x20\x20\x20\x20\x20\x20\x20\x20\x20\40\x20\x20\x3c\144\x69\166\x20\x63\x6c\x61\163\x73\75\42\x6d\x6f\55\155\x73\55\164\x61\x62\55\x63\157\156\x74\x65\x6e\164\x2d\164\x69\x6c\145\x22\x3e\xd\xa\x20\x20\x20\x20\40\40\x20\x20\x20\40\40\40\x20\40\40\40\74\x64\151\x76\40\143\x6c\x61\163\x73\x3d\x22\x6d\157\x2d\x6d\x73\x2d\x74\x61\x62\55\x63\x6f\156\x74\145\156\x74\x2d\x74\x69\x6c\x65\55\x63\x6f\x6e\164\x65\x6e\x74\x22\76\xd\12\x20\40\40\x20\40\40\x20\x20\x20\40\40\40\x20\x20\x20\x20\40\40\x20\x20\74\x73\160\x61\x6e\x20\163\164\171\x6c\x65\x3d\42\x66\157\156\x74\55\163\x69\x7a\145\72\40\x31\70\x70\x78\x3b\146\x6f\156\x74\55\167\145\151\x67\150\164\x3a\40\62\x30\x30\x3b\144\151\x73\x70\154\x61\171\72\x66\154\145\170\73\x22\x3e\61\56\40\x42\141\x73\x69\x63\x20\101\x70\x70\40\x43\157\x6e\146\x69\147\165\x72\x61\164\x69\157\x6e\x20\x3c\57\x73\x70\x61\156\76\15\xa\40\40\40\x20\x20\40\x20\40\x20\40\x20\x20\40\40\40\40\x20\40\x20\40\74\164\141\142\x6c\x65\x20\143\154\x61\x73\x73\75\42\x6d\x6f\x2d\155\163\x2d\x74\141\x62\x2d\143\x6f\x6e\164\x65\156\164\55\141\x70\160\55\x63\157\x6e\x66\151\x67\55\164\x61\142\x6c\x65\42\x3e\15\xa\40\40\x20\x20\x20\40\x20\40\x20\40\40\x20\x20\40\40\x20\40\x20\40\40\x20\x20\x20\40\x3c\x74\162\76\xd\xa\x20\x20\x20\x20\40\x20\x20\40\x20\x20\40\40\x20\x20\x20\40\40\x20\x20\x20\x20\40\40\x20\40\x20\x20\x20\74\x74\144\40\x63\x6c\x61\163\x73\x3d\x22\x6c\145\x66\x74\55\x64\151\x76\42\76\74\x73\x70\141\x6e\x3e\x41\160\160\x6c\151\143\141\164\151\157\x6e\x20\111\x44\40\74\x73\x70\141\156\40\x73\164\x79\154\145\75\42\x63\157\x6c\x6f\162\72\162\x65\144\73\146\x6f\156\x74\55\x77\145\x69\x67\150\164\x3a\x62\157\154\x64\x3b\42\x3e\52\74\57\x73\x70\x61\156\76\74\x2f\x73\x70\x61\156\76\x3c\57\164\x64\76\15\xa\40\40\x20\x20\x20\x20\x20\40\40\40\x20\40\40\x20\x20\40\40\40\40\x20\x20\40\x20\40\x20\x20\40\40\x3c\164\x64\x20\143\154\141\x73\x73\x3d\x22\x72\x69\147\150\164\x2d\x64\x69\166\x22\x3e\x3c\x69\x6e\x70\x75\164\40";
echo self::$isliveri ? '' : "\x64\x69\x73\141\x62\154\145\144";
echo "\40\x70\154\141\x63\x65\150\x6f\x6c\x64\145\162\75\42\105\x6e\164\145\x72\x20\131\x6f\165\162\40\x41\x70\160\x6c\151\x63\x61\164\151\157\156\40\50\103\x6c\151\x65\x6e\164\51\x20\111\x44\x22\x20\x73\x74\x79\154\x65\75\x22\x77\x69\x64\x74\150\72\x37\x35\x25\x3b\x22\x20\x74\x79\x70\x65\x3d\42\164\x65\170\x74\42\x20\156\x61\x6d\145\x3d\x22\143\154\151\x65\x6e\164\x5f\x69\x64\42\40\166\141\x6c\x75\x65\75\x22";
echo esc_html($MX);
echo "\42\x3e\74\57\x74\x64\76\xd\12\x20\40\x20\x20\x20\40\40\40\40\x20\40\x20\40\x20\40\40\40\x20\x20\40\x20\x20\x20\40\x3c\57\x74\162\x3e\15\12\x20\x20\x20\40\40\x20\x20\40\x20\40\40\x20\40\40\40\40\40\40\x20\40\40\40\x20\x20\x3c\164\162\x3e\15\xa\x20\40\x20\x20\x20\x20\x20\x20\x20\40\40\x20\40\x20\40\40\40\x20\40\40\40\x20\x20\40\x20\40\x20\40\x3c\x74\x64\x3e\x3c\57\x74\144\x3e\xd\12\x20\x20\40\x20\x20\x20\40\x20\40\x20\40\40\40\40\40\40\40\x20\x20\x20\40\40\40\x20\40\40\x20\40\74\x74\x64\76\xd\xa\x20\40\40\40\40\x20\x20\x20\x20\x20\x20\x20\x20\40\x20\x20\40\40\x20\40\x20\x20\x20\x20\x20\x20\x20\x20\x20\40\40\x20\x3c\x62\76\116\x6f\x74\145\72\74\x2f\x62\x3e\40\x59\157\x75\40\x63\141\x6e\x20\146\x69\x6e\x64\x20\x74\150\x65\40\74\142\76\x41\x70\x70\x6c\x69\x63\x61\164\151\x6f\156\x20\x49\104\x3c\57\142\76\x20\151\156\40\171\x6f\x75\x72\x20\101\x63\x74\x69\x76\145\x20\104\151\162\x65\143\164\x6f\x72\x79\40\141\x70\160\154\x69\x63\x61\164\151\x6f\156\47\163\x20\x4f\x76\145\162\x76\x69\x65\167\x20\x74\141\x62\x2e\40\xd\xa\x20\40\x20\40\x20\40\40\40\40\40\40\x20\x20\x20\x20\40\x20\40\x20\x20\40\x20\x20\x20\40\40\40\x20\74\x2f\x74\144\76\15\xa\x20\x20\x20\40\x20\40\x20\40\40\40\x20\40\x20\40\x20\40\40\40\40\40\40\x20\40\x20\x3c\57\x74\x72\76\15\12\40\x20\x20\40\x20\x20\40\40\40\x20\x20\40\40\40\40\x20\x20\x20\x20\x20\40\40\40\xd\xa\40\40\40\x20\40\x20\x20\40\x20\x20\40\x20\40\40\40\40\x20\x20\x20\x20\40\40\x20\x20\x3c\164\162\x3e\15\12\x20\40\40\40\40\40\40\40\40\x20\x20\x20\x20\40\x20\x20\x20\40\40\x20\x20\40\x20\x20\x20\x20\40\40\74\164\144\40\143\x6c\x61\163\163\75\42\x6c\x65\x66\164\x2d\144\x69\x76\x22\x3e\74\163\x70\x61\156\x3e\x43\154\151\x65\x6e\x74\40\123\x65\x63\x72\x65\x74\163\40\74\163\x70\141\156\40\163\x74\x79\154\x65\75\42\x63\x6f\154\x6f\x72\72\162\145\144\73\146\x6f\156\x74\x2d\x77\x65\151\147\150\x74\72\142\157\154\144\73\x22\x3e\x2a\x3c\57\x73\160\141\156\x3e\x3c\57\163\x70\x61\x6e\x3e\x3c\x2f\x74\x64\76\15\xa\40\x20\x20\x20\x20\40\x20\40\x20\x20\x20\40\x20\40\40\x20\x20\40\x20\x20\x20\x20\40\x20\x20\x20\40\40\x3c\164\144\x20\143\x6c\141\x73\x73\x3d\x22\x72\151\x67\150\x74\x2d\x64\151\x76\42\76\x3c\x69\156\160\165\164\40";
echo self::$isliveri ? '' : "\x64\x69\163\141\x62\x6c\x65\144";
echo "\x20\141\165\164\x6f\103\157\x6d\160\154\x65\x74\145\75\42\156\145\x77\55\160\x61\x73\x73\167\157\x72\x64\x22\x20\x70\154\x61\x63\145\x68\157\x6c\x64\x65\162\75\42\x45\x6e\164\145\162\40\131\x6f\165\162\40\103\x6c\151\x65\156\164\x20\123\x65\143\162\x65\x74\x22\x20\x73\164\171\x6c\145\75\42\x77\x69\x64\164\150\x3a\67\65\45\x3b\42\40\x74\x79\x70\145\75\x22\x70\141\x73\163\167\157\162\x64\42\x20\x6e\x61\155\x65\75\x22\143\154\151\x65\156\x74\x5f\x73\x65\x63\162\145\x74\x22\x20\x76\x61\154\x75\x65\75\x22";
echo esc_html($A3);
echo "\x22\76\74\57\164\144\x3e\xd\12\x20\40\40\40\40\40\x20\40\40\x20\x20\40\40\40\x20\x20\x20\x20\x20\40\40\x20\x20\x20\74\x2f\164\162\x3e\xd\12\40\40\x20\40\x20\x20\40\x20\x20\40\x20\40\40\40\40\40\40\40\40\40\x20\x20\x20\40\x3c\164\x72\76\xd\xa\40\x20\x20\x20\40\x20\40\x20\x20\x20\x20\x20\x20\x20\x20\x20\40\40\x20\40\x20\40\x20\x20\x20\40\40\x20\74\164\x64\x3e\74\57\164\144\76\15\xa\x20\x20\40\40\40\x20\x20\x20\x20\40\40\40\40\40\40\40\x20\40\x20\x20\40\40\x20\40\40\40\x20\40\74\x74\x64\76\xd\12\40\x20\40\x20\x20\40\40\40\x20\40\40\40\x20\40\x20\40\x20\40\40\x20\40\40\40\x20\40\40\x20\x20\40\x20\40\40\74\x62\76\116\157\x74\x65\72\74\57\x62\x3e\x20\131\157\x75\x20\x63\141\x6e\x20\x66\151\156\144\40\x74\150\145\40\74\x62\76\x43\x6c\151\145\x6e\x74\40\123\145\x63\x72\145\x74\x3c\57\142\x3e\40\166\x61\154\x75\145\x20\151\x6e\x20\171\157\165\x72\x20\101\x63\x74\x69\166\x65\x20\x44\x69\162\145\x63\164\x6f\x72\x79\40\141\x70\x70\x6c\151\x63\x61\164\151\x6f\x6e\47\163\40\x43\x65\162\164\151\146\151\x63\x61\x74\x65\163\x20\x26\40\123\x65\x63\162\145\164\163\x20\x74\141\x62\56\x20\xd\12\40\40\40\x20\40\40\40\x20\40\x20\x20\x20\x20\x20\x20\40\40\40\40\40\x20\x20\x20\x20\x20\x20\40\x20\74\x2f\164\144\x3e\xd\12\x20\x20\40\40\40\40\40\x20\40\40\x20\40\x20\40\40\x20\x20\40\x20\40\40\x20\x20\40\74\57\164\162\76\xd\xa\40\40\x20\40\x20\x20\x20\x20\40\x20\x20\40\40\x20\x20\40\40\40\x20\40\x20\40\xd\xa\40\40\x20\40\x20\x20\40\40\40\x20\40\x20\40\40\40\40\40\x20\x20\40\x20\x20\x20\40\x3c\164\162\x3e\15\12\x20\40\40\x20\40\x20\40\x20\40\40\x20\x20\40\40\x20\40\40\40\x20\x20\40\40\40\40\x20\x20\x20\40\x3c\164\x64\40\143\x6c\x61\163\x73\x3d\42\x6c\145\146\x74\55\144\x69\x76\42\76\x3c\x73\x70\141\156\x3e\x54\145\x6e\x61\x6e\164\x20\x49\104\x20\x3c\163\160\x61\156\x20\163\164\x79\154\145\75\x22\x63\157\154\157\162\72\162\x65\x64\x3b\146\x6f\x6e\164\x2d\167\x65\151\x67\x68\164\72\142\157\x6c\x64\x3b\42\x3e\x2a\x3c\57\163\x70\141\156\76\x3c\57\x73\160\141\x6e\76\x3c\57\164\x64\x3e\xd\xa\x20\x20\x20\x20\x20\40\40\x20\x20\40\40\x20\40\40\x20\40\x20\40\x20\x20\x20\x20\40\40\40\40\40\40\x3c\164\x64\40\143\x6c\141\x73\x73\75\x22\x72\151\x67\x68\x74\x2d\144\x69\166\x22\76\74\151\156\x70\165\164\x20";
echo self::$isliveri ? '' : "\144\x69\163\141\142\x6c\145\144";
echo "\40\160\x6c\x61\x63\x65\150\157\x6c\x64\145\162\x3d\x22\x45\156\x74\x65\162\x20\x59\x6f\x75\162\40\104\151\162\x65\x63\164\157\162\x79\x20\50\124\145\156\x61\x6e\x74\x29\40\x49\104\42\x20\x73\x74\x79\154\145\x3d\x22\167\x69\x64\164\x68\x3a\x37\x35\45\x3b\42\x20\x74\171\160\x65\75\42\164\x65\170\164\42\x20\156\x61\155\145\x3d\42\164\x65\x6e\x61\156\x74\137\x69\144\x22\40\x76\x61\154\165\145\75\x22";
echo esc_html($kn);
echo "\x22\x3e\74\57\164\144\76\15\12\40\40\40\40\x20\x20\x20\40\x20\40\40\x20\x20\x20\x20\x20\40\40\x20\40\x20\40\40\40\74\x2f\164\162\76\xd\12\40\40\40\x20\40\40\40\x20\x20\x20\x20\40\x20\40\40\40\x20\40\x20\x20\40\40\40\40\x3c\x74\x72\x3e\15\xa\x20\x20\40\x20\40\40\40\x20\x20\40\x20\x20\x20\40\x20\x20\x20\x20\40\40\x20\x20\x20\40\40\x20\40\40\x3c\164\144\x3e\x3c\x2f\164\x64\76\15\12\x20\40\40\40\40\x20\x20\x20\40\x20\40\40\x20\x20\x20\40\x20\x20\x20\40\x20\x20\40\40\x20\40\40\x20\x3c\x74\x64\76\xd\12\40\40\x20\x20\40\40\40\x20\40\x20\x20\40\x20\40\40\x20\x20\x20\40\40\x20\40\x20\40\40\x20\40\x20\x20\40\40\40\x3c\x62\x3e\x4e\x6f\164\x65\x3a\x3c\x2f\142\x3e\x20\x59\157\x75\40\x63\x61\156\40\146\x69\x6e\144\x20\164\x68\145\40\x3c\x62\x3e\x54\x65\156\141\x6e\164\40\x49\104\74\x2f\x62\76\x20\x69\x6e\x20\x79\157\165\162\40\x41\x63\164\x69\166\x65\x20\104\x69\162\145\143\x74\157\x72\171\40\x61\x70\160\154\x69\x63\x61\164\151\x6f\156\x27\x73\40\117\166\145\x72\166\151\145\x77\x20\164\x61\x62\x2e\x20\xd\xa\x20\x20\x20\x20\x20\x20\40\x20\40\40\x20\40\x20\x20\x20\x20\40\40\x20\x20\40\40\x20\40\40\40\x20\x20\74\57\164\x64\x3e\15\xa\x20\40\40\40\40\40\x20\x20\40\40\x20\40\x20\x20\40\40\40\40\40\40\x20\40\x20\40\x3c\x2f\x74\162\76\15\xa\40\40\40\x20\40\40\40\x20\40\40\x20\x20\x20\40\40\x20\x20\40\x20\40\40\40\x20\40\15\xa\40\x20\x20\40\40\x20\x20\40\x20\40\40\40\x20\x20\40\40\40\x20\40\40\x20\x20\x20\40\74\x74\162\76\xd\xa\40\x20\40\x20\40\40\x20\40\x20\40\40\40\x20\40\x20\40\40\x20\x20\x20\40\40\x20\x20\40\x20\x20\x20\74\164\144\x20\143\154\141\x73\x73\x3d\42\154\145\x66\x74\x2d\144\x69\166\42\x3e\x3c\163\160\x61\x6e\76\x53\150\x61\x72\x65\x50\x6f\151\156\x74\40\x53\x69\164\145\40\125\122\x4c\x3c\57\163\x70\141\x6e\76\74\57\164\144\x3e\xd\xa\x20\40\x20\x20\40\40\x20\40\x20\40\40\40\x20\x20\x20\40\40\40\x20\x20\x20\x20\40\40\x20\x20\x20\x20\x3c\164\x64\x20\x63\154\141\163\x73\75\42\162\151\147\x68\x74\x2d\144\x69\x76\x22\x3e\x3c\151\x6e\x70\x75\164\x20";
echo self::$isliveri ? '' : "\144\x69\x73\x61\142\x6c\x65\144";
echo "\x20\160\x6c\141\143\145\x68\x6f\154\x64\x65\162\75\42\150\x74\x74\160\x73\72\x2f\57\74\164\x65\156\x61\x6e\164\x2d\156\141\x6d\145\76\x2e\163\150\x61\162\x65\x70\x6f\x69\156\x74\x2e\143\157\155\x2f\x73\x69\x74\x65\x73\x2f\173\x73\151\x74\x65\137\156\141\155\145\x7d\x22\x20\x73\x74\171\x6c\x65\75\x22\167\x69\144\x74\150\72\67\x35\45\x3b\42\40\164\171\x70\145\x3d\42\x74\145\x78\x74\x22\40\156\x61\155\145\75\x22\x73\151\164\145\x5f\x75\162\x6c\x22\40\166\141\154\x75\145\x3d\42";
echo esc_html($oZ);
echo "\42\x3e\74\57\x74\144\76\15\xa\40\40\x20\x20\40\x20\x20\x20\x20\40\40\40\x20\x20\40\40\x20\x20\40\x20\40\40\40\40\x3c\x2f\164\162\76\xd\xa\40\40\x20\40\x20\40\x20\40\x20\x20\x20\40\40\x20\40\40\40\x20\40\x20\40\40\x20\40\74\x74\162\76\xd\xa\x20\40\40\x20\x20\40\x20\x20\40\40\x20\x20\x20\40\40\x20\x20\40\40\40\40\x20\x20\40\40\40\x20\40\x3c\x74\x64\x3e\x3c\x2f\164\x64\76\15\xa\40\x20\x20\x20\40\x20\x20\x20\x20\40\40\40\40\40\40\x20\x20\40\x20\40\40\x20\x20\x20\40\40\x20\40\x3c\164\144\x3e\15\xa\40\x20\40\40\40\40\40\x20\x20\40\x20\40\x20\x20\x20\x20\x20\40\40\40\x20\40\40\40\40\x20\40\x20\x20\40\x20\x20\x3c\x62\x3e\116\157\164\x65\x3a\74\57\x62\x3e\40\40\105\x6e\164\x65\162\40\x68\145\x72\x65\40\x74\x68\x65\40\74\142\76\x75\x72\x6c\x20\157\x66\40\164\x68\x65\40\x73\x69\x74\145\x3c\x2f\x62\x3e\x2c\x20\x77\x68\x69\x63\150\x20\x64\157\x63\x75\155\145\x6e\x74\x73\40\x79\157\165\40\x77\141\156\x74\x20\164\x6f\x20\x66\145\164\x63\x68\56\15\12\x20\40\x20\x20\40\40\40\x20\40\x20\40\x20\x20\40\40\40\x20\x20\x20\40\x20\x20\40\40\x20\x20\40\x20\x3c\57\164\x64\76\15\xa\x20\x20\x20\40\40\40\40\x20\40\40\40\40\40\40\x20\40\40\x20\x20\x20\40\x20\40\x20\74\x2f\164\162\76\15\xa\xd\xa\40\x20\40\40\x20\x20\40\x20\40\x20\40\40\40\40\40\x20\40\x20\x20\x20\x20\x20\x20\40\74\164\x72\x3e\xd\xa\40\40\40\40\x20\40\x20\x20\40\x20\x20\40\x20\x20\40\40\x20\x20\40\x20\40\x20\x20\x20\x20\x20\40\40\74\164\x64\x3e\x3c\57\x62\x72\x3e\74\57\x74\x64\x3e\xd\xa\40\x20\x20\x20\40\x20\40\40\x20\40\x20\x20\40\x20\x20\x20\x20\x20\x20\40\40\40\40\40\x3c\57\164\x72\76\xd\xa\x20\40\x20\x20\40\40\40\40\40\40\40\x20\x20\x20\40\40\40\x20\40\40\40\40\x20\40\x3c\164\162\76\15\12\40\x20\40\x20\40\x20\40\x20\x20\x20\40\40\x20\40\40\40\40\40\40\x20\40\x20\x20\40\x20\x20\x20\40\74\164\144\x3e\x3c\x2f\164\144\76\xd\12\40\x20\x20\40\40\x20\40\x20\40\40\x20\x20\40\x20\x20\x20\x20\x20\40\40\x20\x20\40\40\40\40\x20\40\x3c\x74\x64\76\xd\12\40\40\x20\x20\x20\40\40\40\x20\x20\40\40\x20\40\40\x20\x20\x20\x20\40\40\x20\x20\x20\40\x20\x20\40\x20\x20\x20\40\x3c\x64\151\x76\x20\163\164\x79\x6c\x65\75\42\144\151\163\160\154\x61\171\x3a\x20\x66\154\145\x78\73\x6a\x75\163\164\151\146\171\55\143\x6f\156\164\x65\x6e\x74\72\146\x6c\145\170\55\163\164\141\x72\x74\x3b\x61\154\x69\147\x6e\x2d\x69\164\145\155\x73\72\143\145\156\x74\145\x72\73\42\76\15\12\40\40\x20\x20\40\x20\40\40\x20\x20\40\40\x20\40\x20\x20\40\40\40\40\40\x20\40\40\40\x20\x20\x20\x20\x20\x20\40\40\40\x20\x20\x3c\x64\x69\x76\40\163\164\171\154\145\75\x22\x64\151\163\x70\154\x61\x79\x3a\40\x66\x6c\x65\170\x3b\x6d\141\162\x67\151\156\x3a\x31\x70\x78\73\42\76\xd\12\x20\x20\40\x20\40\x20\40\40\x20\x20\x20\40\40\x20\x20\40\x20\x20\40\40\x20\40\40\40\x20\x20\x20\40\40\40\40\40\x20\40\40\x20\x20\40\x20\x20\74\151\x6e\160\x75\164\x20";
echo self::$isliveri ? '' : "\x64\151\x73\141\x62\154\145\144";
echo "\x20\163\x74\171\154\145\x3d\42\150\145\x69\x67\150\x74\72\x33\60\160\x78\x3b\42\x20\x74\171\x70\145\75\x22\x73\165\x62\x6d\151\x74\x22\40\x69\x64\x3d\42\163\141\x76\145\x42\165\x74\164\157\x6e\42\40";
echo self::$isliveri ? "\143\x6c\141\x73\163\x3d\x27\x6d\x6f\55\x6d\163\x2d\x74\x61\x62\x2d\x63\157\x6e\x74\145\156\x74\55\x62\x75\164\x74\x6f\x6e\47" : "\143\154\x61\163\163\x3d\x27\155\x6f\x2d\155\x73\55\x74\141\x62\x2d\x63\x6f\x6e\x74\145\x6e\164\55\x62\165\164\x74\x6f\x6e\137\x5f\144\151\x73\x61\x62\154\145\144\x27";
echo "\x20\166\141\154\165\145\75\42\123\141\x76\x65\42\76\15\xa\40\40\x20\40\40\x20\40\40\40\40\x20\40\x20\x20\x20\40\x20\40\40\x20\40\x20\x20\x20\40\40\40\x20\x20\40\40\40\x20\x20\40\x20\74\57\x64\151\x76\76\15\xa\x20\x20\x20\x20\40\40\x20\x20\x20\40\40\x20\x20\x20\x20\40\x20\40\x20\40\40\40\x20\x20\40\x20\x20\40\x20\x20\x20\40\40\x20\x20\x20\74\144\x69\166\x20\x73\x74\171\x6c\x65\75\x22\155\141\x72\147\151\156\72\x31\60\x70\x78\73\42\76\xd\xa\x20\40\x20\40\40\x20\x20\40\x20\40\x20\40\x20\40\x20\x20\x20\x20\40\x20\x20\x20\x20\x20\40\40\x20\40\40\40\40\x20\x20\40\40\40\x20\40\40\40\x3c\151\156\160\x75\164\40";
echo self::$isliveri ? '' : "\144\151\163\x61\142\x6c\145\144";
echo "\40\x73\164\x79\x6c\x65\75\42\150\x65\x69\147\x68\164\72\63\x30\160\x78\x3b\x22\40\151\x64\x3d\42\166\151\145\167\x5f\141\164\x74\x72\151\142\165\164\145\163\x22\x20\x74\x79\160\145\x3d\42\142\165\164\164\157\156\42\40";
echo self::$isliveri ? "\143\154\x61\163\163\x3d\x27\x6d\x6f\x2d\x6d\x73\x2d\164\141\142\55\143\x6f\x6e\x74\x65\x6e\164\x2d\142\x75\164\164\157\x6e\x27" : "\x63\x6c\141\x73\163\x3d\x27\155\x6f\x2d\x6d\x73\x2d\164\141\142\x2d\143\157\156\x74\x65\x6e\164\x2d\142\x75\164\164\157\x6e\x5f\137\x64\x69\x73\x61\x62\154\145\x64\47";
echo "\x20\x76\x61\154\x75\145\75\x22\x54\145\163\164\40\x43\157\156\156\145\x63\164\151\157\156\x22\x20\157\156\143\154\151\x63\153\x3d\42\x6d\157\x5f\163\x70\163\x5f\x73\150\157\167\x5f\164\145\163\x74\137\x63\x6f\x6e\x6e\145\143\x74\x69\x6f\x6e\50\x29\x22\x3e\15\xa\x20\x20\x20\40\x20\40\x20\40\x20\x20\x20\x20\x20\x20\40\40\x20\40\40\40\40\x20\x20\40\x20\x20\40\x20\x20\x20\40\x20\40\x20\x20\40\74\x2f\144\x69\166\x3e\xd\12\x20\40\x20\40\x20\x20\x20\40\x20\40\x20\40\x20\x20\x20\x20\40\x20\x20\40\x20\x20\40\40\40\40\40\x20\40\x20\x20\x20\x3c\x2f\x64\151\166\76\15\12\x20\40\40\x20\x20\x20\x20\x20\40\x20\x20\40\40\x20\x20\40\x20\40\40\x20\40\40\40\x20\x20\40\40\40\74\x2f\x74\144\76\15\xa\40\x20\40\x20\40\40\40\x20\x20\40\40\40\x20\x20\x20\x20\40\40\x20\x20\40\x20\x20\40\74\57\x74\x72\76\15\12\15\xa\x20\x20\x20\x20\40\40\x20\x20\x20\40\x20\x20\x20\40\40\40\x20\40\40\40\x3c\x2f\164\141\x62\154\145\x3e\xd\xa\x20\40\40\40\40\x20\40\x20\40\40\x20\40\x20\x20\x20\40\x3c\57\x64\x69\x76\x3e\15\xa\x20\x20\x20\x20\x20\x20\x20\40\x20\40\40\40\74\57\x64\x69\x76\76\xd\12\40\x20\x20\x20\x20\x20\40\40\74\x2f\146\x6f\162\155\76\15\12\40\40\x20\40\x20\40\40\x20\74\x73\143\162\151\x70\164\76\xd\xa\40\40\x20\40\x20\40\40\40\40\40\40\40\146\x75\156\143\164\x69\x6f\x6e\x20\155\x6f\x5f\x73\160\163\x5f\x73\x68\157\167\137\164\145\x73\164\137\143\157\x6e\156\145\x63\x74\x69\x6f\156\50\x29\173\xd\xa\40\40\x20\40\40\x20\x20\40\40\x20\x20\x20\x20\x20\x20\40\144\157\143\165\x6d\x65\x6e\164\x2e\147\x65\164\x45\154\145\x6d\145\156\x74\102\171\111\x64\50\x22\141\160\160\x5f\x63\x6f\156\146\151\147\42\51\56\166\141\154\165\145\40\75\x20\x22\x6d\157\137\x73\x70\x73\137\141\x70\160\x5f\x74\145\x73\x74\x5f\143\157\156\x66\x69\x67\137\x6f\160\x74\x69\157\156\42\73\xd\12\x20\x20\40\40\x20\40\x20\40\x20\40\x20\x20\x20\40\x20\x20\x76\x61\162\40\x6d\171\x57\151\x6e\144\157\167\40\75\40\167\151\x6e\x64\x6f\167\56\157\160\x65\x6e\x28\x22";
echo esc_url_raw($this->mo_sps_get_test_url());
echo "\42\x2c\x20\x22\124\105\123\x54\40\103\x6f\x6e\156\x65\143\164\151\157\156\x22\54\40\x22\x73\143\x72\157\x6c\x6c\142\x61\162\x73\x3d\61\x20\x77\x69\144\164\150\75\70\60\x30\54\x20\150\x65\x69\x67\150\x74\x3d\66\60\60\42\51\x3b\xd\12\40\x20\40\40\x20\40\x20\x20\x20\40\40\x20\x7d\15\xa\40\40\x20\x20\40\40\x20\40\x3c\57\x73\x63\x72\x69\x70\x74\76\15\xa\x20\x20\40\x20\x20\x20\x20\x20";
}
private function mo_sps_display__cloud_connector_config()
{
$Yw = wpWrapper::mo_sps_get_option(pluginConstants::CLOUD_CONNECTOR);
$CI = wpWrapper::mo_sps_get_option(pluginConstants::ONEDRIVE_UPN);
echo "\40\x20\40\x20\x20\40\40\40\74\x66\x6f\x72\x6d\40\x63\x6c\141\163\163\x3d\42\x6d\x6f\137\x73\x70\163\137\x61\x6a\141\x78\137\163\x75\142\x6d\x69\164\x5f\x66\x6f\162\155\x22\40\141\x63\164\x69\x6f\156\x3d\x22\x22\x20\155\145\164\150\x6f\x64\75\42\160\157\x73\x74\42\76\15\xa\x20\40\x20\x20\x20\x20\x20\x20\x20\x20\40\x20\x3c\151\156\x70\165\x74\40\x74\x79\x70\145\x3d\42\x68\151\x64\x64\x65\x6e\x22\40\x6e\x61\x6d\x65\x3d\42\x6f\160\164\151\157\x6e\x22\40\x69\144\75\x22\141\x70\x70\137\143\157\156\x66\x69\147\x22\40\166\141\154\x75\145\x3d\42\x6d\157\x5f\x73\160\x73\137\x63\154\157\165\x64\x5f\x63\x6f\156\x6e\145\143\164\157\162\137\x63\157\x6e\146\151\147\137\x6f\160\164\x69\157\x6e\x22\76\xd\xa\x20\x20\x20\x20\x20\x20\40\x20\x20\40\x20\40\74\x69\156\x70\165\164\40\x74\x79\x70\145\x3d\42\150\151\x64\144\145\156\42\40\156\141\155\145\75\x22\x6d\x6f\137\163\160\163\137\x74\141\x62\42\x20\166\141\154\x75\145\x3d\x22\141\x70\160\x5f\x63\x6f\156\146\151\147\42\76\15\xa\40\x20\x20\40\x20\x20\40\x20\40\x20\40\40";
wp_nonce_field("\x6d\x6f\x5f\163\x70\x73\x5f\143\154\x6f\x75\x64\x5f\x63\157\156\156\x65\x63\164\157\x72\x5f\143\x6f\x6e\x66\151\147\x5f\x6f\160\x74\x69\157\x6e");
echo "\40\40\40\x20\x20\40\40\40\x20\x20\x20\x20\74\144\x69\166\x20\143\x6c\x61\163\163\75\42\x6d\157\55\155\x73\55\x74\141\x62\x2d\x63\x6f\x6e\x74\145\x6e\164\55\x74\x69\x6c\x65\x22\x3e\15\xa\40\x20\x20\x20\x20\x20\40\x20\x20\x20\x20\x20\x20\40\x20\40\x3c\144\x69\166\x20\x63\x6c\x61\163\x73\x3d\42\155\157\x2d\x6d\x73\55\164\141\142\x2d\143\x6f\156\x74\145\x6e\x74\55\164\x69\154\x65\55\143\x6f\x6e\x74\145\156\164\x22\x3e\xd\xa\x20\x20\40\40\x20\x20\x20\x20\40\40\x20\40\x20\x20\x20\40\x20\x20\x20\40\74\163\x70\141\156\40\x73\x74\171\154\x65\75\42\x66\x6f\156\164\55\163\151\172\x65\x3a\40\x31\70\160\x78\x3b\146\157\156\164\55\x77\145\151\147\150\x74\72\40\62\x30\x30\73\x64\151\x73\160\154\x61\171\72\x66\x6c\145\170\73\42\76\x32\56\x20\x43\x6c\157\x75\x64\40\x43\157\156\x6e\x65\143\164\x6f\162\x20\103\157\x6e\x66\151\x67\165\x72\x61\164\151\x6f\x6e\40\x3c\57\163\x70\141\156\x3e\xd\xa\x20\x20\40\40\x20\40\x20\x20\x20\40\40\x20\x20\x20\x20\40\40\x20\40\x20\74\164\x61\x62\154\x65\x20\143\154\x61\x73\x73\x3d\x22\155\157\55\x6d\163\55\x74\x61\x62\55\x63\157\x6e\x74\145\x6e\164\x2d\x61\x70\x70\x2d\x63\157\x6e\146\151\147\x2d\x74\141\x62\x6c\145\x22\x3e\15\xa\x20\x20\40\x20\40\40\40\x20\x20\40\x20\40\40\x20\x20\x20\x20\x20\40\40\x3c\143\157\154\147\x72\157\165\160\76\xd\xa\x20\40\40\40\x20\x20\x20\40\40\x20\40\40\40\40\40\40\x20\40\x20\40\40\x20\40\40\74\x63\157\x6c\x20\x73\x70\x61\x6e\x3d\42\61\x22\40\x73\164\171\x6c\x65\75\x22\x77\x69\x64\164\x68\x3a\40\x34\x30\x25\73\x22\76\15\xa\x20\40\40\40\40\x20\40\40\x20\40\x20\40\x20\40\40\x20\x20\40\40\x20\x20\40\x20\40\74\x63\x6f\x6c\40\163\x70\x61\x6e\75\x22\x31\42\x20\163\164\171\154\145\x3d\x22\x77\x69\144\164\x68\72\40\x36\60\45\x3b\42\76\15\xa\x20\40\40\40\x20\x20\40\40\40\x20\40\40\x20\40\x20\40\40\x20\x20\x20\x3c\x2f\143\x6f\154\147\x72\157\165\x70\x3e\15\xa\x20\x20\40\x20\x20\40\40\40\40\x20\40\x20\x20\x20\40\x20\x20\40\40\40\x20\x20\x20\x20\x3c\x74\162\76\xd\xa\x20\x20\40\x20\40\40\40\x20\x20\40\40\40\x20\x20\40\40\40\x20\40\x20\x20\40\x20\40\40\x20\x20\40\74\x74\x64\76\x53\145\154\145\x63\164\40\x63\x6c\157\x75\x64\x20\x63\157\x6e\x6e\x65\143\164\x6f\x72\40\x66\162\x6f\x6d\40\x74\x68\x65\x20\144\x72\x6f\160\x64\x6f\167\x6e\x20\147\151\166\145\x6e\x3a\74\x2f\x74\144\x3e\15\xa\x20\x20\x20\x20\x20\x20\x20\40\40\x20\x20\40\40\x20\40\40\40\40\x20\40\x20\40\x20\40\x20\40\40\40\74\164\144\76\15\12\40\x20\x20\x20\x20\x20\x20\x20\x20\40\40\40\x20\x20\40\40\40\x20\40\x20\40\40\x20\x20\x20\x20\x20\40\40\x20\x20\x20\74\163\145\x6c\145\x63\x74\x20\x69\144\75\x22\x6d\x6f\137\163\x70\163\137\x63\154\x6f\165\x64\137\163\x65\x6c\145\x63\x74\157\162\42\40\156\x61\x6d\145\x3d\x22\143\x6c\157\x75\x64\137\x63\157\x6e\x6e\145\143\x74\157\162\42\40\x73\164\x79\x6c\145\x3d\x22\x77\151\144\164\x68\x3a\70\60\45\42\76\15\12\x20\40\40\x20\x20\40\40\x20\x20\x20\x20\x20\x20\x20\40\40\x20\x20\x20\x20\x20\x20\40\x20\x20\40\x20\40\40\x20\40\40\x20\x20\x20\x20\74\x6f\160\164\x69\x6f\156\x20";
echo empty($Yw) || $Yw === "\x73\150\141\162\x65\x70\157\151\156\164" ? "\163\x65\154\x65\x63\164\145\x64" : '';
echo "\x20\166\x61\154\165\x65\x3d\x22\163\x68\141\162\145\x70\x6f\151\x6e\164\x22\x3e\x53\150\x61\162\145\x50\x6f\x69\x6e\x74\x3c\x2f\157\x70\164\x69\157\156\x3e\xd\xa\x20\40\40\x20\40\40\x20\x20\40\40\40\40\x20\x20\40\40\40\40\40\40\40\40\x20\x20\40\x20\40\x20\40\40\x20\x20\x20\40\40\40\x3c\x6f\x70\164\x69\x6f\156\40";
echo $Yw === "\157\156\145\x64\162\x69\x76\x65" ? "\x73\145\x6c\145\x63\x74\145\x64" : '';
echo "\40\x76\x61\x6c\165\x65\x3d\x22\157\156\x65\144\x72\x69\166\x65\42\76\x50\145\x72\163\157\x6e\x61\154\40\x4f\156\x65\x44\x72\151\166\145\x3c\x2f\x6f\160\x74\x69\x6f\x6e\x3e\15\12\40\x20\40\x20\40\40\x20\40\40\40\40\40\x20\40\40\40\x20\40\x20\x20\x20\40\x20\40\x20\x20\x20\x20\x20\x20\40\x20\x3c\57\163\x65\154\x65\143\164\76\15\xa\40\x20\x20\40\x20\x20\x20\40\x20\40\x20\x20\x20\40\x20\40\x20\40\x20\40\40\x20\40\40\x20\40\x20\40\74\57\164\144\76\xd\12\xd\12\x20\x20\40\40\40\40\40\40\x20\x20\40\x20\x20\40\40\40\x20\40\40\40\40\x20\40\x20\74\57\164\x72\x3e\15\xa\x20\x20\x20\x20\x20\40\40\x20\x20\x20\40\x20\x20\x20\40\x20\x20\x20\x20\40\x20\x20\x20\x20\74\x74\162\x20\151\x64\x3d\x22\x6d\157\137\x73\x70\x73\137\x75\x70\x6e\137\x62\x6c\157\143\153\42\x20\163\x74\171\154\x65\75\x22";
echo $Yw === "\x6f\x6e\x65\144\162\151\166\145" ? '' : "\x64\151\x73\x70\x6c\x61\x79\x3a\x6e\157\156\x65\x3b";
echo "\42\x3e\15\12\x20\x20\40\x20\40\x20\40\40\40\40\x20\40\x20\40\40\x20\40\x20\40\x20\40\40\40\x20\x20\x20\40\40\x20\x20\40\40\74\x74\x64\76\74\163\x70\141\156\76\x20\105\x6e\x74\x65\x72\x20\x55\x73\145\162\x20\120\162\x69\156\143\151\160\154\x65\40\116\141\x6d\145\40\57\x20\x4f\142\x6a\x65\143\164\x20\111\104\x20\x3c\163\x70\x61\156\40\163\x74\171\x6c\x65\75\42\x63\157\154\157\x72\x3a\x72\145\144\x3b\146\157\x6e\x74\x2d\x77\x65\151\147\150\x74\72\x62\157\154\144\x3b\x22\x3e\x2a\74\x2f\163\160\x61\156\76\74\x2f\x73\160\x61\156\76\74\x2f\x74\144\x3e\xd\xa\40\x20\40\x20\40\x20\40\x20\40\40\40\40\x20\x20\40\40\x20\x20\40\40\x20\x20\40\40\40\x20\x20\x20\40\40\40\x20\x3c\164\x64\x3e\x3c\151\x6e\x70\165\x74\40";
echo self::$isliveri ? '' : "\144\151\x73\141\142\154\x65\144";
echo "\x20\160\154\141\143\x65\x68\x6f\154\144\x65\x72\x3d\42\x45\156\x74\145\162\40\x55\163\x65\x72\120\162\x69\156\143\x69\x70\x61\x6c\x4e\141\x6d\x65\57\x4f\142\152\145\x63\x74\x20\111\104\40\157\146\x20\125\x73\145\x72\42\40\163\164\171\154\145\x3d\42\x77\151\x64\x74\150\x3a\x38\60\45\x3b\42\40\x74\x79\160\x65\x3d\x22\x74\x65\170\164\42\x20\x6e\x61\155\x65\75\x22\165\x70\156\137\151\x64\x22\40\166\141\x6c\165\145\75\42";
echo esc_html($CI);
echo "\42\x3e\x3c\x2f\x74\x64\x3e\15\xa\x20\x20\x20\x20\x20\40\x20\40\40\40\40\40\40\40\40\x20\40\40\40\x20\x20\x20\40\x20\x3c\57\x74\x72\x3e\15\12\x20\40\x20\x20\40\x20\40\40\40\x20\x20\x20\x20\40\x20\40\x20\x20\x20\x20\x20\40\x20\x20\74\164\162\76\15\12\40\x20\x20\40\x20\x20\x20\40\x20\x20\40\x20\40\40\x20\40\40\40\40\40\40\x20\40\40\x20\40\40\x20\74\164\144\76\xd\12\x20\x20\x20\x20\x20\40\x20\40\x20\40\x20\40\x20\40\40\x20\x20\40\40\40\40\40\40\x20\x20\x20\x20\x20\40\40\x20\40\x3c\144\151\x76\40\x73\164\171\x6c\145\75\x22\x64\x69\x73\x70\154\141\171\x3a\40\146\154\x65\170\x3b\152\165\x73\164\x69\146\171\55\x63\x6f\x6e\164\x65\156\164\72\146\x6c\x65\x78\55\163\164\x61\x72\164\x3b\x61\154\151\147\156\x2d\151\x74\x65\x6d\x73\x3a\143\145\x6e\x74\x65\162\x3b\42\76\xd\12\40\40\x20\x20\40\40\x20\x20\x20\40\x20\x20\x20\x20\x20\x20\x20\40\x20\x20\40\x20\x20\40\x20\40\x20\40\x20\40\40\x20\x20\x20\x20\40\x3c\144\x69\166\x20\x73\164\171\154\145\x3d\x22\x64\x69\x73\160\154\x61\171\72\40\x66\x6c\145\x78\73\155\x61\162\147\x69\156\x3a\61\x70\x78\73\42\76\15\xa\40\x20\x20\x20\40\40\40\x20\40\x20\40\x20\40\40\40\x20\40\x20\x20\x20\x20\40\x20\40\40\x20\40\x20\x20\x20\40\x20\x20\40\x20\40\x20\40\x20\x20\74\x69\x6e\160\165\164\40";
echo self::$isliveri ? '' : "\x64\x69\163\x61\x62\154\145\x64";
echo "\x20\163\164\171\x6c\145\x3d\x22\150\145\151\x67\150\x74\x3a\63\60\x70\170\x3b\42\40\164\x79\x70\x65\x3d\42\x73\165\142\155\151\164\x22\x20\x69\x64\75\x22\163\x61\x76\145\x42\165\164\164\157\156\42\40";
echo self::$isliveri ? "\143\154\x61\x73\163\75\x27\x6d\157\x2d\155\163\x2d\x74\x61\142\x2d\x63\x6f\x6e\164\x65\156\x74\x2d\x62\165\x74\x74\x6f\x6e\x27" : "\x63\154\x61\163\x73\75\x27\x6d\157\55\155\163\55\164\x61\x62\55\143\157\156\164\145\156\x74\x2d\142\x75\164\x74\x6f\x6e\137\137\144\151\163\x61\142\154\x65\x64\x27";
echo "\x20\x76\141\154\x75\145\75\42\x53\x61\166\x65\x22\76\15\12\x20\40\x20\40\40\40\40\40\x20\x20\40\40\40\x20\x20\x20\x20\40\40\40\40\x20\x20\x20\x20\40\40\40\x20\x20\x20\x20\x20\x20\40\x20\x3c\57\144\151\166\76\15\12\x20\40\x20\40\x20\40\40\x20\x20\x20\x20\x20\40\40\x20\x20\x20\40\40\40\x20\40\40\40\x20\40\40\x20\40\40\x20\x20\x3c\57\x64\x69\x76\x3e\xd\xa\x20\x20\x20\40\x20\40\x20\x20\x20\40\40\x20\40\40\40\x20\x20\40\40\x20\x20\x20\40\x20\x20\x20\40\x20\74\x2f\164\x64\76\xd\12\x20\x20\x20\x20\x20\40\40\40\40\40\40\x20\40\x20\40\40\40\40\x20\x20\x20\x20\x20\40\40\x20\40\40\x3c\164\144\76\x3c\57\x74\144\76\15\12\15\xa\40\40\x20\x20\x20\x20\x20\40\x20\40\x20\x20\40\40\40\x20\40\x20\40\40\40\40\x20\x20\74\57\164\162\x3e\15\12\15\xa\40\x20\x20\40\x20\x20\x20\40\40\40\40\40\x20\40\40\x20\x20\x20\40\40\x3c\57\164\141\x62\x6c\145\x3e\xd\xa\40\40\40\40\x20\x20\40\40\40\40\x20\x20\x20\40\40\x20\74\x2f\144\x69\x76\76\15\xa\40\x20\40\40\x20\40\x20\x20\x20\40\40\x20\74\x2f\x64\151\x76\76\xd\12\x20\x20\x20\40\40\x20\x20\40\74\x2f\x66\x6f\x72\155\76\xd\12\x20\40\40\x20\40\x20\x20\x20\74\x73\x63\x72\151\160\164\x3e\15\xa\x20\40\x20\x20\40\x20\x20\40\40\40\40\40\152\x51\x75\x65\x72\171\50\144\157\x63\165\x6d\145\156\164\51\x2e\x6f\156\50\47\x63\x68\x61\156\147\x65\x27\x2c\x22\x23\x6d\x6f\x5f\x73\160\x73\137\143\154\x6f\x75\x64\137\163\x65\x6c\145\143\164\x6f\162\x22\x2c\x66\165\x6e\x63\164\x69\x6f\156\x28\145\x29\x7b\xd\xa\x20\x20\40\x20\40\x20\x20\x20\40\x20\x20\40\x20\x20\x20\x20\151\146\50\x65\56\x74\141\162\147\x65\164\x2e\166\141\x6c\x75\145\40\x3d\x3d\x3d\40\x27\x6f\x6e\145\144\162\x69\166\x65\47\x29\x7b\15\12\40\x20\40\x20\x20\x20\40\40\40\x20\x20\40\x20\40\x20\40\x20\40\40\40\x6a\x51\x75\145\x72\171\50\47\43\x6d\x6f\137\163\160\x73\x5f\165\160\x6e\137\x62\154\x6f\x63\153\x27\51\x2e\x73\x68\157\167\x28\x29\x3b\15\xa\x20\x20\40\x20\x20\40\40\40\x20\40\40\40\x20\40\x20\40\x7d\x65\x6c\163\145\173\xd\12\x20\x20\40\x20\x20\x20\40\40\x20\40\x20\40\x20\40\x20\x20\40\x20\x20\x20\x6a\121\x75\145\162\x79\x28\47\43\x6d\157\137\x73\160\x73\x5f\165\x70\x6e\137\x62\154\157\143\x6b\x27\51\56\x68\151\x64\145\50\x29\73\xd\12\x20\x20\40\40\40\40\x20\40\40\40\40\40\x20\x20\x20\x20\175\xd\xa\x20\x20\40\x20\x20\40\x20\x20\x20\x20\x20\40\40\40\x20\40\xd\xa\40\x20\x20\40\x20\40\x20\40\x20\40\x20\x20\175\x29\x3b\xd\xa\40\40\40\x20\x20\x20\40\40\74\57\163\x63\x72\x69\x70\164\x3e\xd\xa\xd\xa\40\x20\x20\40\x20\40\40\x20";
}
private function mo_sps_display__sso_config()
{
}
private function mo_sps_get_test_url()
{
return admin_url("\x3f\157\x70\164\x69\157\x6e\75\x6d\x6f\137\163\160\163\x5f\164\145\x73\x74\x5f\x63\157\x6e\156\x65\x63\x74\151\157\x6e");
}
}
Function Calls
None |
Stats
MD5 | e122ca709610242c0adddaeaa07dc261 |
Eval Count | 0 |
Decode Time | 85 ms |