Guest User

Untitled

a guest
Dec 14th, 2018
232
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.67 KB | None | 0 0
  1. <?php
  2. /*
  3. *
  4. * @ This file is created by http://DeZender.Net
  5. * @ deZender (PHP5 Decoder for ionCube Encoder)
  6. *
  7. * @ Version : 3.5.0.0
  8. * @ Author : DeZender
  9. * @ Release on : 22.06.2018
  10. * @ Official site : http://DeZender.Net
  11. *
  12. */
  13.  
  14. session_name('seadmin');
  15. session_start();
  16. require_once 'includes/System.class.php';
  17. $loginSys = new LoginSystem();
  18. $nodo_administrador = $_SESSION['nodousername'];
  19. $useradmin = $_SESSION['username'];
  20. $idadmin = $_SESSION['idusername'];
  21.  
  22. if (!$loginSys->isLoggedIn()) {
  23. header('Location: login.php');
  24.  
  25. exit();
  26. }
  27.  
  28. if (0 < $_SESSION['nivelusername']) {
  29. 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";
  30.  
  31. exit();
  32. }
  33.  
  34. 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";
  35. require_once 'includes/class.sql.php';
  36. $db = db::getInstancia();
  37. $licencia = _obfuscated_0D38155B0A12041D060D3D2E2C5C1A1D221201362A0E22_($userlic, $passlic, 'estado');
  38. $result = $db->dameQuery("SELECT count(*) as total from usuarios where estado!='RETIRADO'");
  39. $data = mysql_fetch_assoc($result);
  40. ..............................................................................
  41. ..................................
  42. ...........
Advertisement
Add Comment
Please, Sign In to add comment