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 /** * Plugin Name: MiniOrange Session Manager * Description: Monitors user acti..

Decoded Output download

<?php 
/** 
 * Plugin Name: MiniOrange Session Manager 
 * Description: Monitors user activity, shows a logout warning popup if idle, and manages session expiration. 
 * Version: 1.0 
 * Author: miniOrange 
 */ 
 
 
require_once plugin_dir_path(__FILE__) . "src/view/mosm-plugin-main.php"; 
require_once plugin_dir_path(__FILE__) . "src/wrappers/mosm-wrapper.php"; 
register_activation_hook(__FILE__, "mosm_plugin_activate"); 
register_deactivation_hook(__FILE__, "mosm_plugin_deactivate"); 
function mosm_plugin_activate() 
{ 
    new MOSM_Plugin_Main(); 
    if (!empty(MOSM_Wrapper::mosm_get_option("mosm_idle_timeout"))) { 
        goto jV; 
    } 
    MOSM_Wrapper::mosm_update_option("mosm_idle_timeout", 1800); 
    jV: 
    if (!empty(MOSM_Wrapper::mosm_get_option("mosm_popup_warning_time"))) { 
        goto Ys; 
    } 
    MOSM_Wrapper::mosm_update_option("mosm_popup_warning_time", 300); 
    Ys: 
    if (!empty(MOSM_Wrapper::mosm_get_option("mosm_popup_message"))) { 
        goto Lb; 
    } 
    MOSM_Wrapper::mosm_update_option("mosm_popup_message", "Your session is about to expire."); 
    Lb: 
    if (!empty(MOSM_Wrapper::mosm_get_option("mosm_extend_button_text"))) { 
        goto wM; 
    } 
    MOSM_Wrapper::mosm_update_option("mosm_extend_button_text", "Extend"); 
    wM: 
    if (!empty(MOSM_Wrapper::mosm_get_option("mosm_extend_time"))) { 
        goto Tr; 
    } 
    MOSM_Wrapper::mosm_update_option("mosm_extend_time", 1800); 
    Tr: 
    if (!empty(MOSM_Wrapper::mosm_get_option("mosm_expired_message"))) { 
        goto Ei; 
    } 
    MOSM_Wrapper::mosm_update_option("mosm_expired_message", "Your session has expired."); 
    Ei: 
    if (!empty(MOSM_Wrapper::mosm_get_option("mosm_login_button_text"))) { 
        goto vI; 
    } 
    MOSM_Wrapper::mosm_update_option("mosm_login_button_text", "Login"); 
    vI: 
} 
function mosm_plugin_deactivate() 
{ 
    MOSM_Wrapper::mosm_delete_option("mosm_idle_timeout"); 
    MOSM_Wrapper::mosm_delete_option("mosm_popup_warning_time"); 
    MOSM_Wrapper::mosm_delete_option("mosm_popup_message"); 
    MOSM_Wrapper::mosm_delete_option("mosm_extend_button_text"); 
    MOSM_Wrapper::mosm_delete_option("mosm_extend_time"); 
    MOSM_Wrapper::mosm_delete_option("mosm_expired_message"); 
    MOSM_Wrapper::mosm_delete_option("mosm_login_button_text"); 
} 
function mosm_add_menu_page() 
{ 
    $oc = new MOSM_Plugin_Main(); 
    add_menu_page("miniOrange Session Manager", "Session Manager", "manage_options", "mosm-session-settings", array($oc, "mosm_render_settings_page"), "dashicons-clock", 80); 
} 
add_action("admin_menu", "mosm_add_menu_page"); 
function mosm_load_common_assets($s6) 
{ 
    $Qn = MOSM_Wrapper::mosm_is_customer_license_key_verified(); 
    if (!$Qn) { 
        goto A5; 
    } 
    wp_enqueue_style("mosm-popup-css", plugin_dir_url(__FILE__) . "css/popup-styles.css"); 
    wp_enqueue_script("mosm-idle-script", plugin_dir_url(__FILE__) . "js/mosm-idle-script.js", array("jquery"), null, true); 
    wp_localize_script("mosm-idle-script", "mosm_idle_data", array("ajax_url" => admin_url("admin-ajax.php"), "login_url" => wp_login_url(), "timeout" => (int) MOSM_Wrapper::mosm_get_option("mosm_idle_timeout", 1800), "warning_time" => (int) MOSM_Wrapper::mosm_get_option("mosm_popup_warning_time", 300), "popup_message" => MOSM_Wrapper::mosm_get_option("mosm_popup_message", "Your session is about to expire in {time} minutes."), "extend_button_text" => MOSM_Wrapper::mosm_get_option("mosm_extend_button_text", "Extend"), "extend_time" => (int) MOSM_Wrapper::mosm_get_option("mosm_extend_time", 1800), "expired_message" => MOSM_Wrapper::mosm_get_option("mosm_expired_message", "Your session has expired."), "login_button_text" => MOSM_Wrapper::mosm_get_option("mosm_login_button_text", "Login"))); 
    A5: 
    if (!$s6) { 
        goto qy; 
    } 
    wp_enqueue_style("mosm-settings-css", plugin_dir_url(__FILE__) . "css/settings-styles.css"); 
    qy: 
} 
function mosm_enqueue_global_assets($sV) 
{ 
    if (!is_user_logged_in()) { 
        goto Wl; 
    } 
    mosm_load_common_assets(false); 
    Wl: 
} 
MOSM_Wrapper::mosm_add_action("wp_enqueue_scripts", '', "mosm_enqueue_global_assets"); 
function mosm_enqueue_admin_assets($sV) 
{ 
    if (!is_user_logged_in()) { 
        goto oy; 
    } 
    mosm_load_common_assets(true); 
    oy: 
} 
MOSM_Wrapper::mosm_add_action("admin_enqueue_scripts", '', "mosm_enqueue_admin_assets"); 
function mosm_register_popup_form() 
{ 
    if (!(strpos($_SERVER["REQUEST_URI"], "/wp-json/") !== false || defined("DOING_AJAX") && DOING_AJAX || defined("REST_REQUEST") && REST_REQUEST)) { 
        goto Ym; 
    } 
    return; 
    Ym: 
    add_filter("wp_auth_check_load", function ($Db, $Ix) { 
        return false; 
    }, 10, 2); 
    if (!is_user_logged_in()) { 
        goto t6; 
    } 
    $Oz = MOSM_Wrapper::mosm_get_option("mosm_popup_message"); 
    $zQ = MOSM_Wrapper::mosm_get_option("mosm_extend_button_text", "Extend"); 
    $L7 = MOSM_Wrapper::mosm_get_option("mosm_expired_message", "Your session has expired."); 
    $Ua = MOSM_Wrapper::mosm_get_option("mosm_login_button_text", "Login"); 
    echo "\x9\x9<div id="mosm_session_popup" class="mosm-flex mosm-popup-overlay" style="display: none;">\xd\xa\x9\x9\x9<div class="mosm-popup-content">\xd
	\x9\x9	<h2>Extend Session</h2>
\xa	\x9	\x9<p id="mosm_popup_message">"; 
    echo esc_html($Oz); 
    echo "</p>
\x9	\x9\x9<div class="mosm-flex mosm-btn-div">\xd\xa	\x9	\x9\x9<button id="mosm_extend_session_btn" class="mosm-popup-btns">"; 
    echo esc_html($zQ); 
    echo "</button>\xd
				\x9<button id="mosm_close_btn" class="mosm-popup-btns">Close</button>\xd
\x9		\x9</div>
\xa\x9\x9\x9</div>\xd\xa\x9	</div>
\xa\x9\x9<div id="mosm_expire_popup" class="mosm-flex mosm-popup-overlay" style="display: none;">\xd\xa	\x9	<div class="mosm-popup-content">\xd
\x9			<h2>Session Expired</h2>
\xa	\x9		<p id="mosm_expire_message">"; 
    echo esc_html($L7); 
    echo "</p>
\xa		\x9\x9<div class="mosm-flex mosm-btn-div">
\xa				\x9<button id="mosm_login_session_btn" class="mosm-popup-btns">"; 
    echo esc_html($Ua); 
    echo "</button>\xd
\x9	\x9	</div>\xd\xa\x9\x9\x9</div>
		</div>
\xa	\x9"; 
    t6: 
} 
MOSM_Wrapper::mosm_add_action("init", '', "mosm_register_popup_form"); 
function mosm_terminate_session() 
{ 
    wp_destroy_current_session(); 
    wp_clear_auth_cookie(); 
    wp_set_current_user(0); 
} 
add_action("wp_ajax_terminate_session", "mosm_terminate_session"); 
 ?>

Did this file decode correctly?

Original Code

<?php
/**
 * Plugin Name: MiniOrange Session Manager
 * Description: Monitors user activity, shows a logout warning popup if idle, and manages session expiration.
 * Version: 1.0
 * Author: miniOrange
 */


require_once plugin_dir_path(__FILE__) . "\x73\x72\143\x2f\x76\151\145\167\x2f\155\157\x73\x6d\x2d\x70\x6c\x75\x67\x69\x6e\55\x6d\x61\151\x6e\56\x70\x68\x70";
require_once plugin_dir_path(__FILE__) . "\x73\x72\143\57\167\162\x61\x70\160\x65\x72\163\x2f\x6d\157\163\155\x2d\167\x72\x61\x70\160\x65\162\56\x70\x68\160";
register_activation_hook(__FILE__, "\x6d\157\163\155\137\160\154\x75\147\x69\156\x5f\x61\x63\x74\x69\x76\x61\164\x65");
register_deactivation_hook(__FILE__, "\x6d\157\163\155\x5f\160\x6c\165\x67\x69\156\137\144\145\141\x63\164\x69\166\x61\x74\145");
function mosm_plugin_activate()
{
    new MOSM_Plugin_Main();
    if (!empty(MOSM_Wrapper::mosm_get_option("\155\157\163\155\137\x69\x64\154\x65\x5f\x74\x69\x6d\x65\x6f\165\x74"))) {
        goto jV;
    }
    MOSM_Wrapper::mosm_update_option("\x6d\x6f\x73\x6d\x5f\x69\144\154\x65\x5f\164\151\x6d\x65\x6f\165\164", 1800);
    jV:
    if (!empty(MOSM_Wrapper::mosm_get_option("\x6d\157\163\x6d\x5f\x70\157\x70\x75\160\137\167\x61\x72\156\x69\x6e\147\137\164\x69\155\x65"))) {
        goto Ys;
    }
    MOSM_Wrapper::mosm_update_option("\155\157\163\155\x5f\x70\x6f\x70\x75\160\137\167\141\x72\x6e\x69\156\x67\x5f\164\x69\x6d\x65", 300);
    Ys:
    if (!empty(MOSM_Wrapper::mosm_get_option("\x6d\x6f\163\x6d\137\x70\157\160\165\160\x5f\x6d\x65\163\x73\x61\x67\145"))) {
        goto Lb;
    }
    MOSM_Wrapper::mosm_update_option("\x6d\157\x73\155\137\x70\x6f\x70\165\x70\x5f\155\x65\163\x73\x61\147\x65", "\131\x6f\x75\162\x20\x73\145\x73\x73\x69\x6f\156\40\151\163\40\141\142\157\165\164\x20\164\x6f\x20\x65\170\x70\x69\162\x65\56");
    Lb:
    if (!empty(MOSM_Wrapper::mosm_get_option("\155\157\163\x6d\x5f\145\x78\x74\145\156\144\x5f\x62\x75\x74\164\157\x6e\x5f\x74\x65\x78\x74"))) {
        goto wM;
    }
    MOSM_Wrapper::mosm_update_option("\155\157\163\155\x5f\145\x78\x74\x65\x6e\x64\137\x62\165\164\x74\x6f\x6e\137\x74\x65\170\164", "\105\x78\164\145\156\x64");
    wM:
    if (!empty(MOSM_Wrapper::mosm_get_option("\155\157\x73\x6d\137\x65\x78\x74\x65\156\144\x5f\164\x69\155\x65"))) {
        goto Tr;
    }
    MOSM_Wrapper::mosm_update_option("\x6d\157\163\155\x5f\145\170\164\x65\156\x64\x5f\x74\151\155\145", 1800);
    Tr:
    if (!empty(MOSM_Wrapper::mosm_get_option("\x6d\157\163\155\x5f\x65\x78\x70\x69\x72\145\144\137\155\x65\163\x73\141\x67\145"))) {
        goto Ei;
    }
    MOSM_Wrapper::mosm_update_option("\155\157\163\x6d\137\145\x78\160\151\162\145\144\x5f\155\x65\x73\163\x61\x67\145", "\131\x6f\165\x72\40\163\145\163\163\x69\x6f\156\40\150\x61\163\40\145\170\x70\x69\162\145\x64\56");
    Ei:
    if (!empty(MOSM_Wrapper::mosm_get_option("\x6d\157\x73\x6d\137\x6c\x6f\x67\151\156\137\x62\x75\x74\x74\x6f\x6e\x5f\x74\x65\x78\164"))) {
        goto vI;
    }
    MOSM_Wrapper::mosm_update_option("\155\x6f\x73\x6d\x5f\x6c\157\147\x69\156\x5f\142\165\x74\x74\157\156\x5f\x74\x65\x78\164", "\x4c\x6f\147\x69\x6e");
    vI:
}
function mosm_plugin_deactivate()
{
    MOSM_Wrapper::mosm_delete_option("\x6d\x6f\163\155\x5f\151\144\x6c\x65\x5f\164\x69\x6d\145\157\165\x74");
    MOSM_Wrapper::mosm_delete_option("\x6d\157\x73\x6d\x5f\160\157\x70\165\160\137\167\141\162\x6e\x69\x6e\x67\137\x74\151\x6d\145");
    MOSM_Wrapper::mosm_delete_option("\x6d\x6f\x73\155\137\160\157\160\165\160\137\155\145\x73\163\141\147\x65");
    MOSM_Wrapper::mosm_delete_option("\x6d\157\x73\x6d\x5f\145\170\x74\145\x6e\144\137\142\165\x74\164\x6f\x6e\x5f\164\x65\170\x74");
    MOSM_Wrapper::mosm_delete_option("\x6d\157\163\x6d\137\145\170\164\x65\156\x64\137\164\151\155\145");
    MOSM_Wrapper::mosm_delete_option("\155\x6f\x73\x6d\137\145\x78\160\151\162\145\x64\137\155\145\x73\x73\x61\147\x65");
    MOSM_Wrapper::mosm_delete_option("\x6d\x6f\163\x6d\137\154\x6f\x67\x69\x6e\x5f\142\165\x74\164\x6f\156\x5f\x74\145\170\164");
}
function mosm_add_menu_page()
{
    $oc = new MOSM_Plugin_Main();
    add_menu_page("\155\x69\156\151\117\x72\x61\156\147\x65\x20\x53\145\x73\x73\x69\157\x6e\40\115\x61\156\141\x67\145\162", "\x53\x65\x73\x73\x69\157\x6e\x20\x4d\x61\x6e\141\x67\145\162", "\x6d\141\156\141\x67\x65\x5f\x6f\160\164\151\x6f\x6e\x73", "\x6d\x6f\x73\155\55\163\x65\x73\163\151\x6f\156\55\x73\145\164\x74\x69\x6e\147\x73", array($oc, "\x6d\x6f\x73\155\x5f\162\x65\x6e\144\145\162\x5f\163\x65\x74\x74\x69\156\147\163\137\x70\141\147\x65"), "\144\x61\x73\x68\151\x63\157\156\163\x2d\x63\x6c\157\x63\153", 80);
}
add_action("\141\144\155\151\156\x5f\155\x65\x6e\x75", "\155\x6f\163\155\x5f\x61\x64\x64\137\x6d\145\x6e\x75\137\160\x61\147\145");
function mosm_load_common_assets($s6)
{
    $Qn = MOSM_Wrapper::mosm_is_customer_license_key_verified();
    if (!$Qn) {
        goto A5;
    }
    wp_enqueue_style("\155\157\x73\x6d\x2d\160\x6f\x70\x75\x70\x2d\143\163\163", plugin_dir_url(__FILE__) . "\x63\x73\163\57\x70\157\x70\165\x70\55\163\x74\x79\x6c\145\163\x2e\x63\163\163");
    wp_enqueue_script("\155\157\163\155\55\x69\x64\x6c\x65\x2d\x73\143\162\151\160\164", plugin_dir_url(__FILE__) . "\152\163\57\155\157\x73\155\55\151\144\154\145\55\x73\x63\x72\x69\x70\164\x2e\x6a\x73", array("\x6a\161\x75\145\162\x79"), null, true);
    wp_localize_script("\x6d\157\x73\x6d\55\151\144\154\x65\55\x73\x63\162\151\160\164", "\155\x6f\163\x6d\137\151\x64\154\145\x5f\144\x61\x74\x61", array("\x61\152\141\x78\x5f\x75\x72\x6c" => admin_url("\x61\144\155\151\156\x2d\141\152\141\x78\x2e\160\150\x70"), "\154\157\147\151\156\x5f\x75\x72\x6c" => wp_login_url(), "\x74\151\155\145\x6f\165\x74" => (int) MOSM_Wrapper::mosm_get_option("\x6d\157\x73\x6d\x5f\151\x64\x6c\x65\x5f\164\151\155\x65\157\165\x74", 1800), "\x77\141\162\156\x69\x6e\x67\137\164\151\155\x65" => (int) MOSM_Wrapper::mosm_get_option("\155\157\163\155\137\160\x6f\x70\165\x70\x5f\167\x61\162\x6e\151\156\147\137\164\x69\x6d\145", 300), "\x70\x6f\x70\165\x70\x5f\155\x65\x73\163\x61\x67\145" => MOSM_Wrapper::mosm_get_option("\x6d\157\x73\155\x5f\x70\157\x70\165\160\137\155\145\x73\163\141\x67\145", "\131\157\165\x72\40\163\x65\x73\163\x69\x6f\156\40\151\x73\x20\141\x62\x6f\165\x74\x20\x74\x6f\40\x65\170\160\151\162\x65\40\x69\x6e\40\x7b\x74\x69\x6d\x65\175\x20\x6d\x69\x6e\x75\164\x65\x73\x2e"), "\x65\170\164\x65\x6e\x64\137\x62\165\x74\x74\x6f\156\x5f\164\145\x78\x74" => MOSM_Wrapper::mosm_get_option("\155\157\163\x6d\x5f\145\170\164\x65\156\x64\137\x62\165\x74\164\157\156\137\164\x65\x78\164", "\x45\170\x74\x65\x6e\144"), "\145\x78\x74\145\x6e\x64\137\164\x69\x6d\145" => (int) MOSM_Wrapper::mosm_get_option("\x6d\157\163\155\x5f\x65\x78\164\x65\x6e\144\137\164\x69\x6d\145", 1800), "\145\x78\160\x69\162\145\144\x5f\x6d\x65\x73\163\141\147\x65" => MOSM_Wrapper::mosm_get_option("\155\x6f\x73\155\x5f\145\170\x70\x69\x72\x65\144\x5f\155\x65\163\163\141\147\x65", "\x59\157\165\x72\x20\x73\145\x73\163\151\x6f\156\40\150\x61\x73\x20\x65\x78\160\x69\162\145\x64\x2e"), "\154\x6f\x67\x69\156\x5f\x62\165\164\x74\x6f\x6e\137\x74\x65\x78\x74" => MOSM_Wrapper::mosm_get_option("\x6d\x6f\x73\x6d\137\x6c\x6f\147\x69\156\x5f\x62\165\164\164\x6f\156\x5f\x74\145\x78\x74", "\114\157\x67\x69\156")));
    A5:
    if (!$s6) {
        goto qy;
    }
    wp_enqueue_style("\155\157\163\x6d\x2d\163\x65\x74\x74\x69\156\147\163\x2d\143\163\163", plugin_dir_url(__FILE__) . "\x63\163\163\57\163\145\164\x74\x69\x6e\147\163\55\x73\164\171\154\x65\x73\x2e\143\163\163");
    qy:
}
function mosm_enqueue_global_assets($sV)
{
    if (!is_user_logged_in()) {
        goto Wl;
    }
    mosm_load_common_assets(false);
    Wl:
}
MOSM_Wrapper::mosm_add_action("\x77\160\x5f\x65\x6e\161\165\x65\165\x65\x5f\163\143\x72\x69\160\164\x73", '', "\155\x6f\163\155\137\145\156\x71\x75\x65\x75\x65\137\147\x6c\x6f\x62\x61\x6c\x5f\x61\x73\163\145\x74\x73");
function mosm_enqueue_admin_assets($sV)
{
    if (!is_user_logged_in()) {
        goto oy;
    }
    mosm_load_common_assets(true);
    oy:
}
MOSM_Wrapper::mosm_add_action("\141\x64\155\151\x6e\137\145\156\x71\165\x65\165\x65\x5f\163\143\162\x69\x70\164\x73", '', "\x6d\x6f\163\155\137\145\x6e\x71\x75\x65\x75\145\137\141\144\x6d\151\x6e\137\x61\163\163\145\x74\163");
function mosm_register_popup_form()
{
    if (!(strpos($_SERVER["\x52\105\121\125\105\x53\x54\137\125\122\x49"], "\x2f\x77\x70\x2d\152\163\x6f\x6e\x2f") !== false || defined("\104\x4f\111\116\107\137\101\x4a\x41\130") && DOING_AJAX || defined("\x52\105\x53\124\x5f\122\x45\121\x55\x45\123\x54") && REST_REQUEST)) {
        goto Ym;
    }
    return;
    Ym:
    add_filter("\x77\x70\137\x61\165\x74\x68\x5f\x63\x68\x65\143\x6b\137\154\157\x61\x64", function ($Db, $Ix) {
        return false;
    }, 10, 2);
    if (!is_user_logged_in()) {
        goto t6;
    }
    $Oz = MOSM_Wrapper::mosm_get_option("\155\x6f\163\x6d\137\x70\157\x70\165\x70\x5f\155\145\163\x73\x61\147\x65");
    $zQ = MOSM_Wrapper::mosm_get_option("\155\x6f\163\x6d\137\x65\170\164\145\x6e\x64\137\x62\x75\164\164\x6f\x6e\137\164\145\170\164", "\105\x78\164\145\156\144");
    $L7 = MOSM_Wrapper::mosm_get_option("\x6d\x6f\x73\155\137\x65\x78\160\x69\162\x65\144\137\155\145\163\163\141\147\145", "\131\x6f\x75\162\40\x73\145\x73\163\151\157\x6e\x20\150\x61\x73\40\x65\170\160\x69\162\145\x64\56");
    $Ua = MOSM_Wrapper::mosm_get_option("\x6d\x6f\x73\155\x5f\x6c\x6f\x67\x69\156\137\x62\x75\164\164\x6f\156\137\164\x65\170\164", "\114\x6f\x67\151\156");
    echo "\x9\x9\x3c\144\151\166\40\x69\x64\x3d\42\x6d\x6f\163\155\x5f\163\145\163\163\x69\x6f\156\x5f\160\157\160\x75\160\x22\x20\143\x6c\x61\163\163\x3d\x22\155\x6f\x73\155\55\x66\154\x65\x78\x20\155\157\163\155\x2d\160\157\160\165\x70\55\157\166\145\x72\154\x61\171\x22\x20\163\x74\x79\x6c\145\x3d\x22\144\151\x73\160\x6c\141\x79\72\x20\156\x6f\x6e\x65\73\x22\x3e\xd\xa\x9\x9\x9\74\x64\x69\x76\x20\143\154\x61\163\x73\x3d\42\155\x6f\x73\155\x2d\160\x6f\160\165\x70\55\x63\x6f\x6e\164\x65\x6e\x74\x22\x3e\xd\12\11\x9\x9\11\74\x68\x32\76\105\x78\164\x65\x6e\x64\40\x53\x65\x73\x73\x69\157\156\74\57\x68\x32\76\15\xa\11\x9\11\x9\x3c\160\x20\151\x64\x3d\42\155\x6f\163\x6d\x5f\160\x6f\x70\x75\160\137\x6d\145\x73\x73\141\x67\145\42\x3e";
    echo esc_html($Oz);
    echo "\74\57\160\76\15\12\x9\11\x9\x9\x3c\144\x69\166\40\143\x6c\141\x73\163\x3d\42\155\x6f\x73\x6d\55\146\154\x65\x78\x20\155\x6f\163\x6d\x2d\142\164\x6e\x2d\x64\x69\x76\42\x3e\xd\xa\11\x9\11\x9\x9\x3c\142\165\x74\x74\x6f\x6e\40\x69\144\75\42\x6d\x6f\x73\x6d\137\x65\170\164\145\x6e\x64\x5f\x73\x65\163\x73\x69\157\x6e\137\x62\x74\156\x22\x20\143\154\x61\163\x73\x3d\42\x6d\x6f\x73\x6d\x2d\x70\157\x70\x75\x70\x2d\x62\x74\x6e\163\x22\76";
    echo esc_html($zQ);
    echo "\74\57\x62\165\164\164\x6f\156\x3e\xd\12\11\11\11\11\x9\x3c\x62\165\164\164\157\x6e\x20\151\144\x3d\42\155\x6f\163\155\137\x63\x6c\157\163\145\x5f\142\x74\x6e\x22\x20\143\x6c\141\163\163\75\42\155\x6f\x73\155\x2d\x70\x6f\x70\165\160\55\x62\x74\x6e\163\x22\x3e\103\154\x6f\163\145\x3c\57\x62\x75\x74\x74\x6f\x6e\76\xd\12\x9\11\11\x9\74\x2f\x64\x69\166\76\15\xa\x9\x9\x9\74\x2f\x64\151\166\76\xd\xa\x9\11\x3c\x2f\x64\151\x76\x3e\15\xa\x9\x9\74\x64\x69\x76\x20\151\x64\75\x22\155\157\163\x6d\x5f\x65\x78\160\x69\162\x65\137\x70\157\160\165\160\x22\40\x63\154\x61\163\x73\x3d\x22\155\157\x73\x6d\55\146\x6c\145\x78\x20\x6d\x6f\163\155\55\x70\157\160\165\x70\x2d\x6f\166\x65\x72\154\x61\x79\42\40\163\x74\171\x6c\x65\75\42\144\151\163\x70\154\x61\x79\x3a\x20\x6e\x6f\x6e\x65\x3b\42\x3e\xd\xa\11\x9\11\x3c\x64\151\x76\40\143\x6c\x61\x73\x73\75\x22\155\157\x73\155\x2d\x70\157\x70\165\160\x2d\143\157\156\164\x65\156\164\42\x3e\xd\12\x9\11\11\11\x3c\x68\x32\76\x53\145\x73\163\x69\x6f\x6e\40\x45\170\x70\x69\x72\145\x64\74\57\150\x32\x3e\15\xa\11\x9\11\11\74\160\x20\151\144\x3d\42\155\157\x73\155\x5f\145\x78\x70\151\162\145\x5f\x6d\145\x73\x73\141\x67\145\x22\76";
    echo esc_html($L7);
    echo "\x3c\x2f\160\x3e\15\xa\11\11\x9\x9\x3c\x64\x69\x76\40\143\154\x61\163\x73\x3d\x22\155\x6f\163\x6d\55\x66\x6c\145\x78\40\155\x6f\x73\x6d\55\x62\x74\x6e\55\x64\151\x76\x22\76\15\xa\11\11\11\11\x9\x3c\x62\x75\x74\164\x6f\x6e\40\151\144\x3d\42\155\157\x73\x6d\x5f\x6c\x6f\147\151\x6e\x5f\x73\x65\163\163\151\157\156\x5f\142\x74\x6e\42\x20\143\x6c\x61\x73\163\75\42\155\157\x73\155\55\160\x6f\x70\165\160\55\x62\x74\x6e\163\42\x3e";
    echo esc_html($Ua);
    echo "\x3c\x2f\142\165\x74\x74\x6f\x6e\76\xd\12\x9\11\x9\11\x3c\57\x64\x69\x76\x3e\xd\xa\x9\x9\x9\x3c\57\x64\x69\166\76\15\12\11\11\x3c\57\144\x69\x76\76\15\xa\11\x9";
    t6:
}
MOSM_Wrapper::mosm_add_action("\x69\x6e\x69\164", '', "\155\x6f\163\155\x5f\162\x65\x67\x69\x73\x74\x65\162\137\x70\x6f\x70\165\160\x5f\x66\x6f\162\x6d");
function mosm_terminate_session()
{
    wp_destroy_current_session();
    wp_clear_auth_cookie();
    wp_set_current_user(0);
}
add_action("\167\x70\137\141\x6a\141\x78\x5f\164\x65\162\155\x69\x6e\x61\x74\145\x5f\x73\x65\163\x73\151\157\156", "\155\157\x73\155\137\164\145\x72\155\151\x6e\x61\164\x65\x5f\163\x65\x73\163\151\x6f\x6e");

Function Calls

None

Variables

None

Stats

MD5 bc691523c54b594830d896239aed70c2
Eval Count 0
Decode Time 56 ms