Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- <?php
- /*
- *
- * @ This file is created by http://DeZender.Net
- * @ deZender (PHP5 Decoder for ionCube Encoder)
- *
- * @ Version : 3.5.0.0
- * @ Author : DeZender
- * @ Release on : 22.06.2018
- * @ Official site : http://DeZender.Net
- *
- */
- session_name('seadmin');
- session_start();
- require_once 'includes/System.class.php';
- $loginSys = new LoginSystem();
- $nodo_administrador = $_SESSION['nodousername'];
- $useradmin = $_SESSION['username'];
- $idadmin = $_SESSION['idusername'];
- if (!$loginSys->isLoggedIn()) {
- header('Location: login.php');
- exit();
- }
- if (0 < $_SESSION['nivelusername']) {
- echo "\n<div class=\"callout callout-danger\">\n<h4><span class=\"glyphicon glyphicon-exclamation-sign\" aria-hidden=\"true\"></span> Acceso Denegado</h4>\nUsted no cuenta con los permisos necesarios para realizar estas funciones.\n</div>\n<div style=\"font-size: 24em;opacity: 0.6; text-align:center; color:#EBEBEB\">\n<span class=\"glyphicon glyphicon-ban-circle\" aria-hidden=\"true\"></span>\n</div>\n";
- exit();
- }
- echo "<!doctype html>\n<html>\n<head>\n<meta charset=\"UTF-8\">\n<title>Documento sin tÃtulo</title>\n<script>\nif ( typeof History.Adapter=='undefined' ) {\nwindow.location=\"index.php\";\n}\n</script>\n</head>\n\n<body>\n";
- require_once 'includes/class.sql.php';
- $db = db::getInstancia();
- $licencia = _obfuscated_0D38155B0A12041D060D3D2E2C5C1A1D221201362A0E22_($userlic, $passlic, 'estado');
- $result = $db->dameQuery("SELECT count(*) as total from usuarios where estado!='RETIRADO'");
- $data = mysql_fetch_assoc($result);
- ..............................................................................
- ..................................
- ...........
Advertisement
Add Comment
Please, Sign In to add comment