Advertisement
Guest User

Untitled

a guest
Jul 10th, 2016
291
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.82 KB | None | 0 0
  1. <?php
  2. /**
  3. *
  4. * @ This file is created by deZender.Net
  5. * @ deZender (PHP5 Decoder for ionCube Loader)
  6. *
  7. * @ Version : 2.0.0.4
  8. * @ Author : DeZender
  9. * @ Release on : 21.10.2015
  10. * @ Official site : http://DeZender.Net
  11. *
  12. */
  13.  
  14. $title = "Home";
  15. $page = "index";
  16. $return = TRUE;
  17. require "./configuration.php";
  18. include "./include.php";
  19. $returned = @obfuscated_2d0127230d1835120a0a19383e3d062e0e3e24232901();
  20. if (@array_pop($returned) != @sha1("harper"))
  21. {
  22. exit("License Error. Contact SWIFT Panel for support.");
  23. }
  24. $rows = obfuscated_23310134123c071d5c5c3d0b2939093e302909232d01("SELECT * FROM `client` WHERE `clientid` = '" . $_SESSION["clientid"] . "' LIMIT 1");
  25. $result1 = obfuscated_2818403e051b2f1633152108161a280121390a060422("SELECT `serverid`, `ipid`, `name`, `game`, `status`, `online`, `slots`, `type`, `port` FROM `server` WHERE `clientid` = '" . $_SESSION["clientid"] . "' ORDER BY `serverid`");
  26. $servers = array();
  27. while ($rows1 = mysql_num_rows($result1))
  28. {
  29. if (!empty($rows1["ipid"]))
  30. {
  31. $rows2 = obfuscated_23310134123c071d5c5c3d0b2939093e302909232d01("SELECT `ip` FROM `ip` WHERE `ipid` = '" . $rows1["ipid"] . "' LIMIT 1");
  32. $rows1 = array_merge($rows1, $rows2);
  33. }
  34. array_push($servers, $rows1);
  35. continue;
  36. }
  37. $smarty->display("header.tpl");
  38. $smarty->assign("client", array("first_name" => $rows["firstname"], "last_name" => $rows["lastname"], "email" => $rows["email"], "servers" => obfuscated_5b242c19320a2d2711262c0319382e063c1f311a3501("SELECT `serverid` FROM `server` WHERE `clientid` = '" . $_SESSION["clientid"] . "'")));
  39. $smarty->assign("servers", $servers);
  40. $smarty->display("index.tpl");
  41. if (BRANDING)
  42. {
  43. echo "<br /><div align='center'>Powered By <a href='http://www.swiftpanel.com' style='font-weight:bold;' target='_blank'>SWIFT Panel</a></div>";
  44. }
  45. $smarty->display("footer.tpl");
  46.  
  47.  
  48. ?>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement