Advertisement
Guest User

Untitled

a guest
Feb 2nd, 2014
93
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 3.57 KB | None | 0 0
  1. <?php
  2. /**
  3. *
  4. * @ This file is created by deZender.Net
  5. * @ deZender (PHP5 Decoder for ionCube Encoder)
  6. *
  7. * @ Version : 1.1.6.0
  8. * @ Author : DeZender
  9. * @ Release on : 02.06.2013
  10. * @ Official site : http://DeZender.Net
  11. *
  12. */
  13.  
  14. session_start("ishop");
  15. ob_start();
  16. require "inc/security.php";
  17. require "inc/func.cms.php";
  18. require "inc/config.inc.php";
  19. $domain = $_SERVER["SERVER_NAME"];
  20. $ch = curl_init();
  21. curl_setopt($ch, CURLOPT_URL, "http://darkdev.eu/licenta.php");
  22. curl_setopt($ch, CURLOPT_HEADER, false);
  23. curl_setopt($ch, CURLOPT_POST, true);
  24. curl_setopt($ch, CURLOPT_RETURNTRANSFER, true);
  25. curl_setopt($ch, CURLOPT_POSTFIELDS, array("id" => "3", "ip" => "" . $server . "", "domain" => "" . $domain . "", "user_key" => "3", "submit" => "Send"));
  26. $result = curl_exec($ch);
  27. echo '' . $result;
  28. curl_close($ch);
  29. if (empty($result))
  30. {
  31. echo "<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Transitional//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd\">\r
  32. <html xmlns=\"http://www.w3.org/1999/xhtml\">\r
  33. \r
  34. <head>\r
  35. <meta http-equiv=\"Content-Type\" content=\"text/html; charset=utf-8\" />\r
  36. <title>";
  37. echo $titlu;
  38. echo "</title>\r
  39. ";
  40. echo "<s";
  41. echo "cript type=\"text/javascript\" src=\"js/unitip.js\"></script>\r
  42. <link href=\"css/unitip.css\" rel=\"stylesheet\" type=\"text/css\" /> \r
  43. <link href=\"css/devilium.css\" rel=\"stylesheet\" type=\"text/css\" /> \r
  44. <link rel=\"icon\" type=\"image/png\" href=\"images/fav.png\">\r
  45. <link href='http://fonts.googleapis.com/css?family=Changa+One|Droid+Sans|Kavoon' rel='stylesheet' type='text/css'>\r
  46. ";
  47. echo "<s";
  48. echo "cript type=\"text/javascript\" src=\"jquery/jquery-1.9.1.min.js\"></script>\r
  49. ";
  50. echo "<s";
  51. echo "cript type=\"text/javascript\" src=\"javascript/jquery.min.js\"></script>\r
  52. ";
  53. echo "<s";
  54. echo "tyle type=\"text/css\">\r
  55. <!--\r
  56. body{\r
  57. background: url(images/";
  58. echo $selectedBg;
  59. echo ") no-repeat;\r
  60. margin-left: 0px;\r
  61. margin-top: 0px;\r
  62. margin-right: 77px;\r
  63. margin-bottom: 0px;\r
  64. background-repeat: no-repeat;\r
  65. background-position:center top;\r
  66. background-color: #000000;\r
  67. }\r
  68. -->\r
  69. </style>\r
  70. </head>\r
  71. <body>\r
  72. \r
  73. <table width=\"740\" border=\"0\" align=\"center\" cellpadding=\"0\" cellspacing=\"0\">\r
  74. <tr>\r
  75. <td height=\"57\" colspan=\"2\" background=\"images/top.png\">\r
  76. \r
  77. ";
  78. if (!isset($_SESSION["is_user"]))
  79. {
  80. if (!isset($_SESSION["is_pass"]))
  81. {
  82. login();
  83. echo " <form action=\"\" method=\"POST\">\r
  84. <table width=\"55%\" border=\"0\" align=\"right\" cellpadding=\"1\" cellspacing=\"1\">\r
  85. <tr>\r
  86. <td width=\"35%\"><input name=\"user\" type=\"text\" class=\"login\" id=\"user\" maxlength=\"16\" /></td>\r
  87. <td width=\"34%\"><input name=\"pass\" type=\"password\" class=\"login\" id=\"pass\" maxlength=\"16\" /></td>\r
  88. <td width=\"31%\"><input name=\"logina\" type=\"submit\" class=\"sub";
  89. echo "mit\" id=\"logina\" value=\"LOGIN\" /></td>\r
  90. </tr>\r
  91. \r
  92. </table></form>\r
  93. ";
  94. }
  95. }
  96. else
  97. {
  98. $is_user = $_SESSION["is_user"];
  99. $acc = mysql_fetch_object(mysql_query("Select * from " . $account_db . ('' . ".account where login='" . $is_user . "'")));
  100. echo " <table width=\"35%\" border=\"0\" align=\"right\" cellpadding=\"0\" cellspacing=\"0\">\r
  101. <tr>\r
  102. <td>Bun venit, <b>";
  103. echo $is_user;
  104. echo "</b>.[<a href=\"index.php?page=logout\" onclick=\"load()\" class=\"link_cat\"> &rarr; Iesire </a>]</td>\r
  105. </tr>\r
  106. </table>\r
  107. \r
  108. ";
  109. .......................................................
  110. .............................
  111. ............
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement